/* CSS Notes Area */

/* Universal Styles */
*
{
	/* required for uniformity */
	margin: 0;
	padding: 0;
	position: relative;
}

/* Basic HTML Styles */
html
{
	width: 100%;
	height: 100%;
}

body
{
	width: 100%; /* Required for IE Compliance */
	height: 100%; /* Required for IE Compliance */
	background-color: #101830;
	color: #B4C6D7;
	font-size: 12pt;
	font-family: arial, helvetica, sans-serif;
}

a
{
  color: #B4C6D7;
}

a:hover
{
}

ul ul, dl dl, ol ol
{
	/* "indent" inner lists */
	margin-left: 1.5em;
}

ul, ol, dl
{
  list-style-position: inside;
}

dd
{
  margin-left: 1.5em;
}

dd dl
{
  margin-left: 0;
}

blockquote
{
	text-indent: 1.5em;
}

img
{
  border: 0;
}

h1, h2, h3, h4, h5
{
  text-align: center;
}