/* CSS Document */


body {
	font: 90%/1.4 Verdana, Arial, Helvetica, sans-serif;  /* percent/spacing */
	background-color: #FFFFFF;
	margin: 0;
	padding: 0;
}

ul, ol, dl {
	padding: 0;
	margin-top: 0px;
	margin-bottom: 0px;
}

h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
	margin-bottom: 5px;
	padding-right: 15px;
	padding-left: 15px;
}

p {
	margin-top: 0;
	padding-right: 15px;
	padding-left: 15px;
}

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;
}

a:link {
	color: #FF6600;
	text-decoration: underline; 
}
a:visited {
	color: #FF6600;
	text-decoration: underline;
}
a:hover, a:active, a:focus {
	text-decoration: none;
}

/* ~~this fixed width container surrounds the other divs~~ */
.container {
	width: 960px;
	background: #FFF;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}

.header {
	background: #FFFFFF;
	border-bottom: 1px solid #666;
	padding: 30px 0px 20px 0px;

}

.sidebar1 {
	float: left;
	font-weight: 700;
	width: 180px;
	background: #FFFFFF;
	padding-bottom: 20px;
	border:none;
	padding-top: 20px;
}

.sidebar2 {
	float: right;
	font-weight: 700;
	width: 180px;
	background: #FFFFFF;
	padding-bottom: 20px;
	border:none;
	padding-top: 20px;
}

.content {
	padding: 30px 40px 20px 40px;
	width: 520px;
	float: left;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 0 15px 15px 50px; /* 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. */
}

.content a, .content a:visited { 
	color: #333333;	
	text-decoration: underline; 
	font-weight: bold;
}

ul.nav {
	list-style: none; /* this removes the list marker */
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
}
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 link block properties causing it to fill the whole LI containing it. This causes the entire area to react 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;
	background: #FFFFFF;
}
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: #FFFFFF;
	color: #FF6600;
}

ul.navContact {
	list-style: none; /* this removes the list marker */
	margin-bottom: 0px; /* this creates the space between the navigation on the content below */
}
ul.navContact li {
	border-bottom: 1px solid #666;
	padding: 10px 0px 20px 0px;
}
ul.navContact a, ul.navContact 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 link block properties causing it to fill the whole LI containing it. This causes the entire area to react 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;
	background: #FFFFFF;
}
ul.navContact a:hover, ul.navContact a:active, ul.navContact a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background: #FFFFFF;
	color: #FF6600;
}

.footer {
	padding: 10px 0;
	background: #FFFFFF;
	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: 1px solid #666
	;
}

/* ~~ 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;
}
