





/* LAYOUT STYLES */
@charset "utf-8";
body  {
	font-family: Arial, Helvetica, sans-serif;
	font-size:11px;
	background: #FFFFFF;
	background-image:url(/silverton/images/background.jpg);
	background-repeat:repeat-x;
	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: #333;}
	
.layout #wrapper {
	border-right: 1px solid #EEE;
	border-left: 1px solid #EEE;
	border-bottom: 1px solid #EEE;
	width:702px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	background-color:#FFF;}
	
.layout #wrapper a:link, a:visited { 
	color:#666666;
	text-decoration:underline;
	font-weight:normal;} 
	
.layout #container { 
	width: 700px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border-bottom: 1px solid #FFF;
	text-align: left;} /* this overrides the text-align: center on the body element. */ 
	
.layout #banner { 
	height:89px;
	width:700px;
	border:0px;} 
	
.layout #photos { 
	height:150px;
	width:700px;} 
	
.layout #topnav { 
	margin:0px;
	padding:0px;
	height:20px;
	width:700px;} 
	
.layout #topnav ul{
	list-style:none;
	margin:0px;
	padding:0px;}
	
.layout #topnav li {
	display:inline;}
	
.layout #contentbox { 
	float:left;
	width:700px;
	min-height:450px;
	height:auto !important;
	height:450px;
	background-image:url(/silverton/images/contentbox_bgrnd.gif);
	background-repeat:repeat-y;} 
	
/* LEFT COLUMN STYLES */
.layout #leftnav {
	float: right; 
	padding: 0px;
	margin: 0px;	
	width: 160px; 
/*	background-image:url(/silverton/images/leftnav_bgrnd.gif);
	background-repeat:repeat-y;*/}

.layout #leftnav a:link { 
	color:#333333;
	text-decoration:underline;
	font-weight:normal;} 

.layout #leftnav a:visited { 
	color:#333333;
	text-decoration:underline;
	font-weight:normal;} 

.layout #leftnav ul {
	color:#333333;
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	list-style:square;
	padding:0px;
	margin-left:20px;
	margin-top:0px;	}
	
.layout #leftnav li {
	margin-bottom:8px;
	line-height:14px;}

.layout #menuPadding {
	float:right;
	width: 160px; 
	background-image:url(/silverton/images/leftnav_bgrnd.gif);
	background-repeat:repeat-y;}

/* CONTENT BOX STYLES */
.layout #mainContent { 
	padding: 20px 0 20px 30px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	width:450px;
	background-color:#FFF;} 
	
.layout #mainContent h1 { 
	font-size:14px;
	font-weight:bold;
	color:#295b7f;
	padding-top:10px;
	margin-bottom:10px;} 
	
.layout #mainContent h2 { 
	font-size:11px;
	font-weight:bold;
	color:#666;
	margin-bottom:0px;} 

.layout #mainContent ul{
	list-style:square;}
	
.layout #mainContent li{
	margin-left:-25px;}

/* FOOTER STYLES */
.layout #footer { 
	background:#badcf5; 
	width:100%;} 

.layout #footer_text { 
	padding: 5px 10px 5px 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	text-align:right;} 
	
.layout #footer a:link, a:visited { 
	color:#666666;
	text-decoration:underline;
	font-weight:normal;} 

/* TABLE STYLES */
.td_dark{ 
	background:#badcf5; 
	color:#333333;
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	border-top:1px solid #FFF;
	vertical-align:top;} 

.td_light{ 
	background:#EEEEEE; 
	color:#333333;
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	border-top:1px solid #FFF;
	vertical-align:top;} 

/* EXTRA STYLES */
.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: 0px;}
	
.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;}
