@charset "UTF-8";

/* GENERAL ELEMENTS */

* {margin:0;padding:0;} 


body {
	margin: 0; padding: 0;
	font-family: Lucida Grande,Lucida Sans,Verdana,Georgia,Helvetica,Arial;
	font-style: normal;
	background: #E0E5E8;
	color: #000;
	font-size: 12px;
}

html, body, #wrap {height: 100%;}

body > #wrap {height: auto; min-height: 100%;}



img {
	border: 0;
}

a {
	text-decoration: none;
	color: #005789;
}

a:hover {
	background: #e0e5e8;
	color: #005789;
}

div, form, input, p, h3, img {
	margin: 0; padding: 0;
}



#container {
	width: 980px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

/* HEADER STYLES */
#header {
	padding: 0;
} 
#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: 0 0 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

/* BUFFER STYLES */

#buffer {
	clear:both;
}
#buffertext {
	
	border-bottom:10px solid #E0E5E8;
}

/* SIDEBAR STYLES */
#sidebar {
	float: right; /* since this element is floated, a width must be given */
	width: 276px; /* 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: #EBEBEB;  /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 20px;
}

#sidebarstate {
	float: right; /* since this element is floated, a width must be given */
	width: 350px; /* 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: #EBEBEB;  /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px;
}

#item {
	/* background: #F3F1E5;
	border-top: 1px solid #d8d5d2;
	border-bottom: 5px solid #fff;
	color: #282828;
	padding: 10px 0;
	margin-top: 3px;*/

}

#item .basic {
	background: #f9f8f1;
	color: #282828;
	border-top: 1px solid #d0d0d0;
	border-bottom: 1px solid #e8e6e2;
	font-size: 9px;
	line-height: 11px;
	margin-bottom: 4px;
	padding: 10px 0px;
	display: block;
	}

#item .resourceitem a {
	background: #f9f8f1;
	color: #282828;
	border-top: 1px solid #d0d0d0;
	border-bottom: 1px solid #e8e6e2;
	font-size: 9px;
	line-height: 11px;
	margin-bottom: 4px;
	padding: 10px 0px;
	display: block;
	}

#item .resourceitem a:hover {
	background: #e0e5e8;
	color: #000;
	text-decoration: none;
	}

#item .resourceitem a .date {
	display: block;
	color: #736E65;
	font-size: 9px;
	margin-left: 12px;
	line-height: 15px;
	padding-top: 1px;
	}

#item .resourceitem a:visited .date {
	display: block;
	color: #a0a0a0;
	font-size: 9px;
	margin-left: 12px;
	line-height: 15px;
	padding-top: 1px;
	}

#item .resourceitem a:hover .date {
	display: block;
	color: #736E65;
	font-size: 9px;
	margin-left: 12px;
	line-height: 15px;
	padding-top: 1px;
	}

#item .resourceitem a .title {
	display: block;
	color: #282828;
	font-weight: bold;
	font-size: 10px;
	line-height: 13px;
	margin-left: 12px;
	padding: 1px 0px 1px 0px;
	}

#item .resourceitem a:visited .title {
	display: block;
	color: #a0a0a0;
	font-weight: bold;
	font-size: 10px;
	line-height: 13px;
	margin-left: 12px;
	padding: 1px 0px 1px 0px;
	}

#item .resourceitem a:hover .title {
	display: block;
	color: #000;
	font-weight: bold;
	font-size: 10px;
	line-height: 13px;
	margin-left: 12px;
	padding: 1px 0px 1px 0px;
	}





/* MAIN CONTENT STYLES */
#mainContent {
	margin: 0 327px 0px 0; /* the right margin on this div element creates the column down the right 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: 30px 20px 30px 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 

#mainContentstate {
	margin: 0; /* the right margin on this div element creates the column down the right 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: 30px 10px 30px 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 

/* FOOTER STYLES */
#main {padding-bottom: 150px;}  /* must be same height as the footer */

#footer {position: relative;
	margin-top: -150px; /* negative value of footer height */
	height: 150px;
	clear:both;
	background:#8B9414} 
	
#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 20px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color: #FFF;
}

#footer a {
	color: #ffffff;
}

#foot {
	width: 980px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

/* CLEAR FIX*/
.clearfix:after {content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;}
.clearfix {display: inline-block;}
/* Hides from IE-mac \*/
* html .clearfix { height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */

/* FLOAT */
.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;
}
.name {
	font-weight: bold;
}