body {
	background-color: #FFFFFF;
}

.plc {
	color: #000000;
}

#container {
	width: 850px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #000000;
	color: #FFFFFF;
	font-family: Helvetica, sans-serif;
	background-image:url(../images/background.gif);
	background-repeat: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. */
	background-repeat: repeat-y;
} 

p {
	padding: 0;
	margin:0 0 15px 0;
	line-height: 20px;
	color: #000000;
}


/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".plc #sidebar1 p" rule.
*/

#footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
} 
 #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: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

/* Miscellaneous classes for reuse */
.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;
}

/************************************************
*	Hyperlinks									*
************************************************/

a, a:visited {
	color: #333333;
	text-decoration: none;
	}
	
a:hover {
	text-decoration: underline;
	}
	
/************************************************
*	Header  									*
************************************************/
#header {
	display:none;
	min-height: 130px;
	margin: 0px 0px 10px 0px;
	background-color: #000000;
	}
	
/************************************************
*	Topbar  									*
************************************************/

#topbar {
	display:none;
	background-color:#000000;
	width: 850px;
	color: #666666;
	font-family: Helvetica, Sans-Serif;
	font-size: 11px;
	margin: 0;
	padding: 10px 0px 10px 20px;
	text-align: left;
	}
	
#topbar a {
	color: #333333;
	}
	
#topbar a:hover {
	color: #FFFFFF;
	}
		
/************************************************
*	Content 					     		    * 
************************************************/

#content {
	margin: 0 10px 0 10px;
	width: 610px;
	float: right;
	padding: 0 0 10px 15px;
	font-size: 14px;
}

#contentbase {
	clear:both;
	margin: 10px 0 10px 0;
	padding: 0 0px 6px 0;
	border-top: 1px solid #666666;
}
	
#content h1 {
	clear: both;
	color: #FFFFFF;
	font-size: 20px;
	font-family: Helvetica, Sans-Serif;
	font-weight: bold;
	margin: 0px 0px 10px 0px;
	padding: 6px 0px 6px 3px;
	border-top: 1px solid #666666;
	background-color:#333333;
	}
	
#content h2 {
	clear: both;
	color: #D0EBD3;
	font-size: 16px;
	font-family: Helvetica, Sans-Serif;
	font-weight: bold;
	margin: 0px 0px 10px 0px;
	padding: 6px 0px 6px 3px;
	border-top: 1px solid #666666;
	background-image:url(../images/h2back.gif);
	background-position:top;
	background-repeat:repeat-x;
	background-color:#110e13;
	}
	
#content h3 {
	clear: both;
	color: #009900;
	font-size: 16px;
	font-family: Helvetica, Sans-Serif;
	font-weight: bold;
	padding: 5px 0px 5px 0px;
	margin: 0px 0px 5px 0px;
	border-top: 1px solid #333333;
	}
	
#content h4 {
	clear: both;
	color: #009900;
	font-size: 14px;
	font-family: Helvetica, Sans-Serif;
	font-weight: bold;
	padding: 5px 0px 5px 0px;
	margin: 0px 0px 5px 0px;
	}
	
#content h5 {
	clear: both;
	color: #009900;
	font-size: 14px;
	font-family: Helvetica, Sans-Serif;
	font-weight: bold;
	padding: 5px 0px 5px 0px;
	margin: 15px 0px 5px 0px;
	border-top: 1px solid #666666;
	}
	
#content h6 {
	color: #FFFFFF;
	font-size: 12px;
	font-family: Helvetica, Sans-Serif;
	font-weight: bold;
	padding: 0;
	}
	
/************************************************
*	Left Sidebar 					     	    * 
************************************************/

#l_sidebar {
	float: left;
	width: 185px;
	border-top: 1px solid #666666;
	margin: 0 0 10px 15px;
	}
	
.l_multisidebaractive{
	display: block;
	color: #000000;
	padding: 5px 0px 5px 5px;
	}
	
.l_sidebaractive{
	display: block;
	color: #000000;
	padding: 5px 0px 5px 5px;
	border-bottom: 1px dotted #333333;
	}
	
.ulactive {
	display: block;
	color: #000000;
	font-size: 10px;
	padding: 3px 0px 3px 0px;
	border-bottom: 1px dotted #333333;
	}

/************************************************/
	
#l_sidebar ul {
	list-style: none;
	margin: 0px;
	padding:0;
	font-size: 12px;
	}

#l_sidebar ul li {
	display: inline;
	padding: 0;
	margin: 0px;
	}
	
#l_sidebar ul li a {
	display: block;
	color: #000000;
	text-decoration: none;
	margin: 0px;
	padding: 5px 0px 5px 5px;
	border-bottom: 1px dotted #333333;
	}

#l_sidebar ul li a:hover {
	color: #000000;
	}
	
/************************************************/

#l_sidebar ul ul {
	border-bottom: 1px dotted #333333;
	}

#l_sidebar ul ul li a {
	display: block;
	color: #000000;
	font-size: 11px;
	padding: 3px 0 3px 10px;
	border-bottom: 1px solid #110e13;
	}
	
#l_sidebar ul ul li a:hover {
	color: #000000;
	background-color:#1d1d1d;
	}
	
.sublistactive {
	display: block;
	font-size: 11px;
	padding: 3px 0 3px 10px;
	background-color:#1d1d1d;
	border-bottom: 1px solid #110e13;
	}
	
/************************************************/

#l_sidebar h3{
	font-size: 12px;
	height:15px;
	padding: 0px 0 3px 4px;
	border-bottom: 1px solid #666666;
	background-image:url(../images/h2back.gif);
	background-position:top;
	background-repeat:repeat-x;
	background-color:#110e13;
}
	
/************************************************
*	Boxes					     	    * 
************************************************/

#boxleft{
	float: left;
	width: 295px;
	margin: 0 0 10px 0;
	font-size: 13px;
	}
	
#boxright{
	float: right;
	width: 295px;
	margin: 0 0 10px 0;
	font-size: 13px;
	}
	
#boxleft h4{
	font-size: 20px;
	line-height: 30px;
	font-weight: normal;
	font-style: oblique;
	color:#666666;
	padding: 0 0 0 10px;
	margin: 0 10px 0 0;
	border-left: 8px solid #333333;
	}
	
#boxleft img{
	float: left;
	margin: 0 5px 5px 0;
	}
	
#boxright img{
	float: left;
	margin: 0 5px 5px 0;
	}

#boxleft a{
	color: #0000000;
	}
	
#boxleft a:hover{
	color: #000000;
	text-decoration: none;
	}
	
#boxright a{
	color: #000000;
	}

#boxright a:hover{
	color: #FFFFFF;
	text-decoration: none;
	}
	
	
/************************************************
*	Images					     	    * 
************************************************/

#portrait{
	float: left;
	width: 150px;
	height: 200px;
	margin: 0 10px 0 0;
	background-color: #666666;
	}

#landscape{
	float: left;
	margin: 0 10px 10px 0;
	}

/************************************************
*	News					     	    * 
************************************************/

#newsbox{
	float: left;
	font-size: 13px;
	width: 175px;
	margin-top: 20px;
	background-color:#1d1d1d;
	background-image:url(../images/h2back.gif);
	background-position:top;
	background-repeat:repeat-x;
	padding: 10px 5px 5px 5px;
	border-top: 1px solid #1d1d1d;
	}
	
#newsbox h2 {
	color: #000000;
	font-size: 16px;
	font-weight: bold;
	margin: 0 0 5px 0;
	border:none;
	}
	
#newsbox h4 {
	font-size: 13px;
	padding: 5px 0 5px 0;
	border-top: 1px dotted #000000;
	margin: 0px;
	
	}
	
#newsbox p {
	font-size: 11px;
	padding: 0px;
	margin: 0px;
	}
	
#newsbox a {
	color:#000000;
	font-weight: bold; 
	}
	
/************************************************
*	Footer      								*
************************************************/

#footer {
	clear: both;
	background-color:#000000;
	min-height: 110px;
	width: 850px;
	color: #999999;
	font-family: Helvetica, Sans-Serif;
	font-size: 11px;
	margin: 0px;
	padding: 0px 0px 0px 0px;
	text-align: center;
	background-image: url(../images/footer.gif);
	background-position: bottom;
	background-repeat: no-repeat;
	}
	
#footer p{
	padding: 60px 0 0 0;
}

.footerbright{
	color: #333333;
}
	
#footer a {
	color: #333333;
	text-decoration: none;
	}
	
#footer a:hover {
	color: #000000;
	text-decoration: underline;
	}

