<!--
body {
	background-color: #F4F4F4;
}
/* ~~ Element/tag selectors ~~ */
 /* 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. */
ul, ol, dl {	
	padding: 0;
	margin: 0;
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

/* ~~ The footer ~~ */
.footer {
	background-color: #FFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	text-align: center;
	float: left;
	height: 50px;
	width: 950px;
	padding-top: 20px;
	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 */
	border-top-width: thin;
	border-top-style: solid;
	border-top-color: #666;
}
/* ~~ This fixed width container surrounds all other blocks ~~ */
.container {
 /* the auto value on the sides, coupled with the width, centers the layout */
	width: 950px;
	background-color: #FFFFFF;
	clear: both;
	height: 100%;
	margin:0 auto;
	
}
/* ~~ The header is not given a width. It will extend the full width of your layout. ~~ */
header {
	badkground-color: #FFF;
}

.content {
	width: 950px;
	background-color: #FFFFFF;
	float: left;
	height: 950px;
}



/* Begin Navigation*/

.nav {
	background-color: #FFF;
	height: 40px;
	line-height: 10px;
	float: left;
	width: auto;
}
.nav ul {
	width: 626px;
	padding-left: 224px
}
nav ul li {
	list-style-type: none;
	float: left;
	text-align: center;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
}

/* Style the links inside the navbar */
.nav a {
	float: left;
	display: block;
	
	color: black;
	text-decoration: none;
	font-size: 14px;
	font-family: Arial, Helvetica, sans-serif;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}


 /* Dropdown Button */
.dropbtn {
	background-color: #FFF;
	color: #000;
	font-size: 14px;
	border: none;
	height: 30px;
	text-align: center;
	
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
	float: left;
	display: block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
	display: none;
	position: absolute;
	background-color: #F4F4F0;
	color: black;
	text-decoration: none;
	float: left;
	width: 80px;
	height:50px;
	z-index: 1000;
}

/* Links inside the dropdown */
.dropdown-content a {
	display: block;
	padding-top: 8px;
	padding-right: 5px;
	padding-bottom: 8px;
	padding-left: 5px;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #D1E9D6;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
	background-color: #D1E9D6;
} 
.active {
	background-color: #F4F4F0;
	color: black;
}
.nav a:hover {
	background-color: #D1E9D6;
}
/* end horizontal nav */
	 
-->
/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}
/* ~~ 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 block element as the final element following the last floated block (within the .container) if the footer is removed or taken out of the .container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

/*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly. */
header, section, footer, aside, article, figure {
	display: block;
}
