@charset "UTF-8";

.row0 {background-color:#fff;}  
.row1 {background-color:#c8c8c8;}  

body  {
	font: 100% Arial, Helvetica, sans-serif;
	font-size:14px;
	background: #333;
	margin: 0; /* 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: 950px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #fff;
	background-image:url(/images/hdr_trafficsigns.jpg);
	background-position:top;
	background-repeat:no-repeat;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 4px solid #222;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

#contact {
position:absolute;
margin:42px 10px 0 700px;
font-size:18px;
}

#tag {
position:absolute;
margin:90px 10px 0 90px;
font-size:18px;
}

h1 {
	margin: 0; 
	padding: 0;
	text-align:left;
}

h3 {
	font-size:16px;
}
 
a:link {
	text-decoration: none;
	color:#FFF;
}
	
a:visited {
	text-decoration: none;
	color:#FFF;
}

a:hover {
	text-decoration: underline;
	color:#fff;
} 


#mainContent a:link {
	text-decoration: none;
	color:#000;
}
	
#mainContent a:visited {
	text-decoration: none;
	color:#000;
}

#mainContent a:hover {
	text-decoration: underline;
	color:#000;
} 



tr em {
	color:#999;
	font-size:16px;
	text-align:left;
}


tr {
	font-size:12px;
	text-align:center;
	background-color: clear;
	background-repeat:no-repeat;

}


#header { 
	
	text-align:right;
	padding: 0 15px 0 0;
	margin: 0;
} 



#topnav { 
	margin: 129px 0 0 0;
	padding: 0 0 6px 0;
	font-size:12px;
} 


#topnav a {
	min-width:70px;
	display:inline-block;
	margin: 0 1px;
	width:70px;
	height:16;
	padding-top:1px;
	text-align:center;
	/*background-color:#999; */
	background-image:url(/images/tab_light.png);
}

#topnav a:hover {
	/*background-color:#585858; */
	background-image:url(/images/tab_dark.png);
	text-decoration:none;
	color:#FFF;
}


 #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 160px; /* 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: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px;
	background: #900;
	height:auto;
	font-size:12px;
}

#sidebar1 p {
margin-left:10px;
}

 #mainContent { 
	margin: 10px 0 0 240px; /* 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. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	color: #000;
	min-height:600px;
} 
 #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#666; 
	font-size:10px;
} 
 #footer p {
	 color:#222;
	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 */
}

#footer a:link {
	text-decoration: none;
	color:#222; }

#footer	a:visited {
	text-decoration: none;
	color:#222; }
	
#footer a:hover {
	text-decoration: underline;
	color:#000; } 

.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;
}