@charset "utf-8";
/* CSS Document */

h1{
	margin: 0;
	color: #252a62;
	text-transform:uppercase;
	font-weight:bold;
	font-size: 20px;
	font-family: Arial, Helvetica, sans-serif;
}
h2{
	color:#333333;
	font-family:Arial, Helvetica, sans-serif;
	margin: 20px 0 0 0;
	padding: 0;
}
p{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	margin: 10px 3px;
}
p.copyright{
	font-size: 9px;
	color:#666666;
	margin-top: 40px;
}

div.menu{
	width: 82px;
	height: 21px;
	margin: 10px auto;
	padding:0;
	background: url(../images/menu.gif) no-repeat;
}

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background-color: #dde2e8;
	background-image: url(../images/sidebarBG2.jpg);
	background-repeat:repeat-y;
	background-position: left;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
#container { 
	width: 100%;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0; /* the auto margins (in conjunction with a width) center the page */
	padding: 0;
	float: left;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 180px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	height: 400px;
	background-image:url(../images/sidebarBG.jpg);
	background-repeat: no-repeat;
	padding: 40px 10px 15px 10px;
}
#sidebar1 div.separator{
	width: 164px;
	height: 2px;
	margin: 10px auto;
	background-image:url(../images/sideSeparator.gif);
}
#sidebar1 ul{
	padding: 0;
	margin: 0;
}
#sidebar1 ul li, ul li a{
	color:#FFFFFF;
	list-style: none;
	font-size: 11px;
	text-transform:uppercase;
	text-decoration: none;
	margin: 12px 0;
	font-family:Verdana, Arial, Helvetica, sans-serif;
}
#sidebar1 ul li:hover{
	font-weight:bold;
}
#sidebar1 ul li sup{
	color:#FFFF00;
	text-transform: none;
}

#mainContent { 
	margin: 0 0 0 200px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 

#mainContent #header{
	background-color:#FFFFFF;
	background-image: url(../images/shadow1.gif);
	background-repeat: repeat-x;
	background-position: bottom;
	margin: 0;
	padding: 10px;
}

#content{
	margin: 0 0 0 10px;
	width: 600px;
	min-height: 390px;
	padding: 5px;
	background: url(../images/net.jpg) no-repeat;
	/*border-right:3px double #E2EDFC;*/
}
#content ul{
	margin: 0;
	font-size:13px;
}

#content ul li{
	margin: 4px 0;
}
.separator{
	width: 100%;
	height: 1px;
	background-color:#252a62;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}