/* ================INSTRUCTIONS=================*/ 
/* By changing the classes below, you can add your own custom banner image and/or custom site title bar. In order for your changes to work though, you MUST include a reference in your HTML pages to both the common CSS file and custom CSS file in that order.

Instructions are provided below for customizing these classes.

/* ================BANNER=======================*/  
/* TO DISPLAY A CUSTOM BANNER IMAGE: 
If you want to display a custom banner, change the "background: url" to point to a local banner, or external, image location.

TO DISPLAY A CUSTOM BANNER COLOR (NO IMAGE): 
If you would rather display a color instead of a banner image, change the "background: url" to point to "" and set the "background-color" to whatever color you wish to display.
NOTE: You can use either hexadecimal color codes (i.e. - #000000) or HTML color names (i.e. - "black"). */ 
.banner { 
        background: url("http://ia.water.usgs.gov/images/5.jpg") 180px 6px no-repeat; 
} 
DIV.bannerColorBand, DIV.banner { 
       background: #118822 url("/images/banners/water_banner4.jpg") 178px 0px no-repeat; 
	   min-width: 150px;
} 
#usgscolorband { 
	background: #006633 url("/images/banners/water_banner4.jpg") 178px 0px no-repeat; 
	min-width: 150px;
} 
/* ================SITE TITLE===================*/ 
/* TO DISPLAY A CUSTOM SITE TITLE BAR: 
The .siteTitle class is specific to the colored site title bar that lies beneath the USGS identifier. To change the color of this bar, set the "background-color" attribute below to the color you wish to display and change the "color" attribute to set the text color.
NOTE: You can use either hexadecimal color codes (i.e. - #000000) or HTML color names (i.e. - "black"). */ 

Div.siteTitle, #pTitle { 
     background-color: #118822; 
     color: #ffffff; 
}

#main_nav{
	background-color:black;
	padding-left:5px;
	padding-top:1px;
	padding-bottom:1px;
	border:0px;
	width:100%;
}

#main_nav a:link, #main_nav a:visited, #main_nav a:hover, #main_nav a:active {
	color: #ffffff;
	text-decoration: none;
	font-weight: bold;
	margin-left: 12px;
	margin-right: 12px;
	line-height: 29px;
}
 
/* =============STANDARD CONTENT===============*/ 
/* TO CHANGE THE TEXT SIZE OF THE CONTENT:
By default, USGS has set the font size to "small" in order to provide a consistent size for content across all pages. If you would prefer not to have a pre-defined font size for your pages, change the "font-size" attributes below to "font-size: 100%;". */
body {
	font-size: small;
}
th, td {
	font-size: small;
}

/*For the 3-column div layout + header & footer*/
body {
    margin: 0px;
    padding: 0px;
}
div#left {
    float: left;
    width: 300px;
	padding-right:10px;
}
div#right {
    float: right;
    width: 300px;
	padding-left:10px;
}
div#middle {
    padding: 0px 300px 5px 320px;
    margin: 0px;
}
div#footer {
    clear: both;
}

#wrapper_test {
	text-align: left;
	margin: 0px auto;
	padding: 0px;
	border:0;
	width: 100%;
	background: url("/path/to/your/background_cols.gif") repeat;
}

#container_test {
	min-width: 1110px;
}

#header_test {
	margin: 0 0 15px 0;
	background: yellow;
}

#side-a_test {
	float: left;
	width: 300px;
	background: yellow;
	min-width: 300px;
}

#side-b_test {
	float: right;
	width: 300px;
	background: green;
	min-width: 300px;
}

#content_test { 
	float: left;
	min-width: 500px;
	background: red;
	padding: 0px 0px 5px 10px;
    margin: 0px;
}

#footer_test {
	clear: both;
}
