@charset "utf-8";
body {
	margin: 0;
	padding: 0;
	color: #333;
	font: 80%/1.4 Verdana, Arial, Helvetica, sans-serif;
	background-color: #333;
}

ul, ol, dl {
	padding: 0;
	margin: 0;
}

h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;
	padding-right: 15px;
	padding-left: 15px;
}
a img {
	border: none;
}

a:link {
	color: #42413C;
	text-decoration: underline;
}

a:visited {
	color: #6E6C64;
	text-decoration: underline;
}

a:hover, a:active, a:focus {
	text-decoration: none;
	background-color: #39C;
}

.container {
	width: 960px;
	background: #FFFFFF;
	margin: 0 auto;
	border-right: 2;
}

.header {
	background-color: #18453B;
	font-size: 56px;
	text-align: center;
	color: #FFF;
	padding-top: 36px;
	padding-bottom: 36px;
	font-weight: bold;
}

.sidebar1 {
	float: left;
	width: 180px;
	padding-bottom: 10px;
	background-color: #999999;
}
.content {
	padding: 10px 0;
	width: 600px;
	float: left;
	/* [disabled]background-color: #FFF; */
}
.sidebar2 {
	float: left;
	width: 180px;
	padding: 10px 0;
	background-color: #999999;
	font-size:small
}
/* ~~ 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; /* this removes the list marker */
	border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
	background-color: #999;
	font-size: x-large;
}
ul.nav li {
	border-bottom: 1px solid #666; /* this creates the button separation */
}
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 5px 5px 5px 15px;
	display: block; /* this gives the anchor block properties so it fills out the whole LI that contains it so that the entire area reacts to a mouse click. */
	width: 160px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
	text-decoration: none;
	color: #000;
	background-color: #999999;
}
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 */
	color: #FFF;
	background-color: #000000;
}
/* ~~ The footer styles ~~ */
.footer {
	padding: 5px 0;
	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 */
	background-color: #18453B;
	font-size: small;
	color: #FFF;
	visibility: visible;
}
/* ~~ 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;
}
