@charset "utf-8";
/* CSS Document */

/*----------------------presentation styles--------------------------*/
body {
	background: #FFFFFF;
}

.twoColLgSide #header {
	background: transparent url (../images/headeraug06.gif) no-repeat;
	height: 200px;
	width: 800px;
	background: #0066CC;
}
.twoColLgSide #container {
	background: #FFFFFF;
	margin: 0px 200px;
}
#mainContent {
	background: #FFFFFF;
	}
#mainContent h1 {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size: 1.4em;
	color:#660066;
	margin: .8em 0 -1em;
	font-weight: bold;
	line-height: 50px;
	}
#mainContent h2 {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.95em;
	margin: .8em 0em -1em;
	color: #3366cc;
	line-height: 3em;
	font-weight: bold;
}
#mainContent p {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size: .95em;
	line-height: 1.4em;
	text-align: justify;
	padding-right: 1.6em;
	padding-left: 1.6em;
	color: #3366cc;
}
#mainContent ul {
	line-height: 1.3em;
	color: #660066;
}
#mainContent address {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.95em;
	line-height: 1.6em;
	text-align: left;
	padding-right: 2em;
	padding-left: 2em;
	color: #3366CC;
	font-style: normal;
	}
#mainContent table, td {
	border: 1 px solid #FFFFFF;
	color: #660066;
	margin: 35px;
	background: #FFCCFF;
	}
#mainContent tr.altRow td {
	background: #ffffff;
}


.twoColLgSide #sidebar {
	padding: 0;
	background: #0066CC;
}
/*-----------------sidebar specific styles--------------*/
/*Note; siebar is 200px wide with no padding*/
#sidebar ul li{
	margin: 0;
	padding: 0;
	}
#sidebar ul a{
	font: .95em/50px Verdana, Arial, Helvetica, sans-serif; 
	color: #fff;
	text-decoration: none;
	margin: 0;
	border-bottom: 1px solid #fff;
	width: 160px;
	padding-left: 40px;
	display: block;
	background: url(../images/main_layout/snowflake_nav.gif) no-repeat left center;
	}
#sidebar ul a.last{
	border-bottom: none;
	} 
#sidebar ul a:hover {
	background-position: -200px 0px;
	color: #003399
	}
#sidebar ul a.current {
	background-position: top right;
	font-weight: bold;
	color: #660066;
	cursor: default;
	}
	

/*-------------------end sidebar specific styles---------*/
#sidebar ul {
	margin: 0;
	list-style: none;
}
.twoColLgSide #footer {
	padding: 0 10px 0 20px;
	background: #FFFFFF;
}
#footer h3 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	color: #3366cc;
	text-align:center;
	line-height: .3em;
	margin-bottom: 1px;
}
#footer p {
	font-size: 0.8em;
	color: #3366cc;
	text-align: justify;
	margin-bottom: 0.5em;
	line-height: 1.2em;
}
#footer a {
	color: 3366cc;
}



/* Layout styles start here */
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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;
}
.twoColLgSide #container {
	width: 780px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColLgSide #header {
	/* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
.twoColLgSide #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColLgSide  #sidebar {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0;
}
.twoColLgSide #mainContent { 
	margin: 0 0 0 250px; /* 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 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.twoColLgSide #footer {
	padding: 2px 10px 2px 20px;
} 
.twoColLgSide #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.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;
}
