@charset "UTF-8";
/* CSS Document */
* { margin: 0; padding:0; }
body {
	font: small/1.5 "Trebuchet MS", Arial, Helvetica, sans-serif;
	background: url(cdw_images/body_bg_grad.jpg) repeat-x;
	margin: 0 0 20px; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #FFF;
}
#container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: url(cdw_images/container_bg.jpg) repeat-y;
	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 {
	background: url(cdw_images/container_bg.jpg) repeat-y;
	padding: 0 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	border-bottom: thin solid #8A0917;
}
#header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	text-indent: -9999px;
	float: left;
	clear: both;
}

#header #dhn_crop2 {
	padding-top: 10px;
	padding-bottom: 0px;
}

#header p {
	text-align: right;
	margin-right: 15px;
	margin-bottom: 10px;
}
#sidebar {
	width: 200px; /* 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: #595241; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 20px 10px 20px 20px;
	float: left;
}
#navsidebarlist { 
	margin: 0;
	padding: 0;
	list-style: none; 
}
#navsidebarlist li { margin: 0 0 .2em 0; }
#navsidebarlist a { 
	display: block;
	color: #8A0917;
	background-color: #ACCFCC;
	width: 9em;
	padding: .2em .8em;
	text-decoration: none;
	}
#navsidebarlist a:hover {
	background-color: #87A4A2;
	color: #8A0917;
}
#mainContent {
	margin: 0 0 0 250px; /* the left margin on this div element creates the column down the left 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. */
	background: transparent;
	background: url(cdw_images/container_bg.jpg) repeat-y;
	padding: 20px 20px 50px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
#mainContent p {
	font-size: 100%;
	line-height: 1.5;
	margin-bottom: 1em;
}
#mainContent h1, #mainContent h2, #mainContent h3 { 
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-weight: normal;
	color: #FFF;
}
#mainContent h1 {
	font-size: 180%;
	margin-bottom: 0.25em;
}
#mainContent h2 {
	font-size: 160%;
	margin-bottom: 0.25em;
	text-align: left;
}
#mainContent h3 {
	font-size: 120%;
	margin-bottom: 0.5em;
}
#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:url(cdw_images/container_bg.jpg) repeat-y;
	border-top: thin solid #8A0917;
}

#navfooter {
	text-align: center;
	padding-top: 10px;
}

/*Fat Erik's Pipelist*/
#navfooterlist {
	list-style: none;
	padding: 0;
	margin: 0;
}

#navfooterlist li {
	display: inline;
	padding: 0;
	margin: 0;
}

#navfooterlist #active #current {
	color: #FFF;
	text-decoration: none;
}

#navfooterlist li a {
	color: #FFF;
	text-decoration: none;
}


#navfooterlist li:before { content: "| "; }
#navfooterlist li:first-child:before { content: ""; }



/*IE workaround*/
/*All IE browsers*/
* html #navfooterlist li {
	border-left: 1px solid black;
	padding: 0 0.4em 0 0.4em;
	margin: 0 0.4em 0 -0.4em;
}

/*Win IE browsers - hide from Mac IE\*/
* html #navfooterlist { height: 1%; }

* html #navfooterlist li {
	display: block;
	float: left;
}

/*End hide*/
/*Mac IE 5*/
* html #navfooterlist li:first-child { border-left: 0; }

#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: 4px 0 10px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: center;
	font-size: x-small;
}
.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;
}

#sidebar h3 { padding-top: 30px; }

#sidebar p {
	font-size: 100%;
	text-align: justify;
}
