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

body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	background: #FFF;
	margin: 0;
	padding: 0;
	color: #000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;
	padding-right: 15px;
	padding-left: 15px; 
	text-align: center;
}
a img { border: none; }

 
a:link {
	color: #000;
	text-decoration: underline; }
a:visited {
	color: #FF3527;
	text-decoration: underline;
}
a:hover, a:active, a:focus { text-decoration: none;
}

/* ~~ Surrounds all other divs ~~ */
.container {
	width: 960px;
	background: #FFFFFF;
	margin: 0 auto;  
}

/* ~~ The header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo. ~~ */
.header {
	background: #ADB96E;
}
.hoore {
width: 950px;
text-align: center;
}
 
.sidebar1 {
	float: left;
	width: 180px;
	background: #fff;
	padding-bottom: 10px;
}
.content {
	padding: 10px 0;
	width: 600px;
	float: left;
}
.sidebar2 {
	float: left;
	width: 180px;
	background: #fff;
	padding: 10px 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
.notes {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 16px; 
}

.caption {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 16px; 
text-align: center;
font-weight: normal;
}
/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 0 15px 15px 40px; / 
}

ul.nav {
	list-style: none;  
	border-top: 1px solid #666; 
	margin-bottom: 15px;  
	font-variant: small-caps;
	font-style: bold;
}
ul.nav li {
	border-bottom: 1px solid #666; /* button separation */
}
ul.nav a, ul.nav a:visited { /* selectors grouping  */
	padding: 5px 5px 5px 15px;
	display: block;  
	width: 160px;   
	text-decoration: none;
	background: #F4FFD1;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background: #F4C542;
	color: #FFF;
}

/* ~~ The footer styles ~~ */
.copyright {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	text-decoration: none;
	text-align: center;
}

.footer {
	padding: 10px 0;
	background: #FFFFE6;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
}

/* ~~ Miscellaneous float/clear classes ~~ */
.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. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the .container) if the .footer is removed or taken out of the .container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

