@charset "UTF-8";


body  {
	font: 100% "Trebuchet MS", Tahoma, Verdana;
	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: #333333;
	background-image: url(../images/bg_gold.gif);
}
div#container {
	position: relative;
	width: 880px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-image: url(../images/montage3.jpg);
	background-color: #FFFFFF;
	background-repeat: no-repeat;
	background-position: 40px 165px;
	border-right-width: 3px;
	border-bottom-width: 3px;
	border-left-width: 3px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #000000;
}


/*HEADER*/
 
div#header {
	height: 125px;
	padding: 0;  /* 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. */
	background-image: url(../images/hdr_logo.gif);
	border-bottom: solid 1px #CCCCCC;
} 
div#header h1 {
	text-indent: -9999px;
	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 */
}
div#header p {
	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 */
	text-indent: -9999px;
}



/*LEADING & LEARNING*/

div#leading {
	background-image:url(../images/badge.gif);
	display: block;
	width: 150px;
	height: 150px;
	margin: 0 10px 0 15px;
}
div#sidebar1 leading a:hover {

}


/*SIDEBAR*/

div#sidebar1 {
	float: right; /* 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 */
	background: #EEEEEE; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px;
	font-size: 80%;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-bottom-style: solid;
	border-left-style: solid;
	border-bottom-color: #CCCCCC;
	border-left-color: #CCCCCC;
}
div#sidebar1 h3 {
	font-family: "Trebuchet MS", Tahoma, Verdana;
	font-size: 13px;
	font-style: normal;
	font-weight: bold;
	color: #990000;
	text-align: center;
	border: 1px solid #CCCCCC;
	letter-spacing: 0.2em;
	background-color: #FFFFFF;
}
div#sidebar1 ul {
	margin: 0;
	padding: 0 0 10px 0;
	font-weight: normal;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
div#sidebar1 li {
	list-style-type: none;
	padding: 0 0 5px 0;
	margin: 0 7px 0 7px;
	border-bottom: solid 1px #cccccc;
}
div#sidebar1 ul a:link {
	display: block;
	color: #996600;
	text-decoration: none;
}
div#sidebar1 ul a:visited {
	text-decoration: none;
	color: #ac9144;
}
div#sidebar1 ul a:hover {
	text-decoration: underline;
}


/*SIDEBAR ADS*/

div#sidebar1 #ads {
	background-color: #FFF;
	border: 2px solid #E8D18B;
	padding: 5px 0px 10px 0px;
	margin-top: 13px;
}
div#sidebar1 #ads a:link {
	display: block;
	color: #039;
	text-decoration: none;
}
div#sidebar1 #ads a:visited {
	text-decoration: none;
	color: #666666;
}
div#sidebar1 #ads a:hover {
	text-decoration: underline;
}




/*SIDEBAR CTS*/

div#sidebar1 #cts {
	background-color:#ECE1CF;
	border: 7px solid #E8D18B;
	padding: 5px 0px 10px 0px;
}
div#sidebar1 #cts a:link {
	display: block;
	color: #000000;
	text-decoration: none;
}
div#sidebar1 #cts a:visited {
	text-decoration: none;
	color: #666666;
}
div#sidebar1 #cts :hover {
	text-decoration: underline;
}

/*MAIN CONTENT*/

div#mainContent {
	margin: 0 250px 470px 0;
	text-indent: -9999px;
}

 
/*FOOTER*/
 
div#footer {
	padding: 5px 10px 5px 20px;
	border: 1px solid #CCCCCC;
	background-color: #F6F1EB;
} 
div#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: 2px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 60%;
	text-align: center;
}

div#footer a:link {
	color: #669;
	text-decoration: underline;
}
div#footer a:visited {
	color: #9090B5;
}
div#footer a:hover {
	text-decoration: none;
}
div#footer a:active {
	text-decoration: none;
}


/*FLOATS*/

.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;
}
