/* undohtml.css */
/* (CC) 2004-2005 Tantek Celik. Some Rights Reserved.             */
/*   http://creativecommons.org/licenses/by/2.0                   */
/* This style sheet is licensed under a Creative Commons License. */

/* Purpose: undo some of the default styling of common (X)HTML browsers */


/* link underlines tend to make hypertext less readable, 
   because underlines obscure the shapes of the lower halves of words */
:link,:visited { text-decoration:none }



/* avoid browser default inconsistent heading font-sizes */
/* and pre/code/kbd too */
h1,h2,h3,h4,h5,h6,pre,code,kbd { font-size:1em; }

/* remove the inconsistent (among browsers) default ul,ol padding or margin  */
/* the default spacing on headings does not match nor align with 
   normal interline spacing at all, so let's get rid of it. */
/* zero out the spacing around pre, form, body, html, p, blockquote as well */
/* form elements are oddly inconsistent, and not quite CSS emulatable. */
/*  nonetheless strip their margin and padding as well */
dl,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,body,html,p,blockquote,fieldset,input
{ margin:0; padding:0; }

/* whoever thought blue linked image borders were a good idea? */
a img,:link img,:visited img { border:none }

/* de-italicize address,abbr */
address,abbr { font-style:normal }

/* more varnish stripping as necessary... */

/*********************************************************************/
/*                 GENERAL TEXT AND BACKGROUND COLORS                */
/*********************************************************************/


body {
background: #eceef0 url(images/enviro/background.jpg) repeat-x;
margin: 0px;
padding: 0px;
color: #000;
font: 90%/120% Verdana, Arial, Helvetica, sans-serif;
}

td {
font: 90%/120% Verdana, Arial, Helvetica, sans-serif;
}

input.text { 
	font-size: 1em;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	border : 1px;
	border-color : 7F9DB9;
	border-style : solid;
}


/*********************************************************************/
/*                               LAYOUT                              */
/*********************************************************************/

#mainbody
{
padding: 8px 0 0 0px;
}

#wrapper {
	text-align: left;
	margin: 0px auto;
	padding: 0px;
	border:0;
	width: 771px;
	background: #fff;
}

#header {
	margin: 0px;
	padding:0px;
	background: white;
}

#side-left {
	float: left;
	width: 165px;
	margin: 0px;
	padding: 0px;
}

#content { 
	float: left;
	width: 765px;
	padding: 0px;
	border-top: 4px solid #c70404;
	border-left: 4px solid #c70404;
	border: 7px solid #000;
	border-top: 0px;
	border-bottom: 0px;
}

#footer {
	clear: both;
	padding: 0px 0px;
	width:780px;
	height:142px;
	background: #fff url(images/enviro/footer.gif) no-repeat scroll top left;
}



 
h1 { 
padding: 0 0 0px 0px; font-size: 22px; margin: 0px 0px 0px 10px; font-family: Verdana, Arial, Helvetica, sans-serif; color:#000; 
height:30px;
} 

h2 { 
padding: 0 0 0px 0px; font-size: 18px; margin: 15px 0px 0px 0px; font-family: Verdana, Arial, Helvetica, sans-serif; color:#ba0404;
} 

h3 { 
padding: 0px 0 0px 0px; font-size: 14px; margin: 12px 0px 6px 0px; font-family: Verdana, Arial, Helvetica, sans-serif; color:#f00;
} 

h4 { 
padding: 0px 0 0px 0px; font-size: 12px; margin: 8px 0px 2px 0px; font-family: Verdana, Arial, Helvetica, sans-serif; color:#333;
} 


ul {
margin:10px 0px 0px 30px;
}

li {
padding:1px 0px;
}




#copyright {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 8pt;
text-align : center;
padding-top:5px;
margin-left:0px;
}

#copyright a {
color:#aaaaaa;
}

#copyright a:hover {
color:red;
}

#gotop { 
float: right;
margin:10px 15px 0px 10px;
text-align:center;
font-size: 8pt;
} 
 


/*********************************************************************/
/*                                LINKS                              */
/*********************************************************************/

.cursor {cursor: default;}
.hand {cursor: hand;}

a.index { 
font-size: 12px;
} 

a:link { 
color: #fff;
} 
a:visited { 
color: #fff
} 
a:hover { 
color: #c70404
} 
a:active { 
color:#ffd700 
} 
a.hide { 
display: none 
} 
a.clean { 
text-decoration: none 
} 


 
#content a:link { 
color: #001057;
} 

#content a:visited { 
color: #001057;
} 

#content a:hover { 
color: #c70404;
} 

#content a:active { 
color: #ffd700;
} 


#footerlinks { 
margin-left:50px;
margin-top:30px;
padding-top:0px;
font-size: 12px; 
text-align:center;
font-weight: bold;
color:#aaa;
} 
 
#footerlinks a:link { 
color: #01409e;
} 

#footerlinks a:visited { 
color: #00008b;
} 

#footerlinks a:hover { 
color: #0000ff;
} 

#footerlinks a:active { 
color: #ff0000;
} 



/*********************************************************************/
/*                             MISCELLANEOUS                         */
/*********************************************************************/

acronym { 
color: #666666 
} 
.ucase { 
text-transform: uppercase 
} 
.nobr { 
white-space: nowrap 
} 

.regular { 
font-size: 12px; 
}

.smalltext { 
font-size: 10px; 
line-height:13px;
padding:3px;
} 

.smalltextleft { 
font-size: 10px; 
line-height:13px;
padding:3px;
text-align:left;
} 

.tinytext { 
font-size: 9px; 
}

.indent1 { 
margin-left: 12px;  
} 
.indent2 { 
margin-left: 24px; 
} 
.indent3 { 
margin-left: 36px; 
} 
.indent4 { 
margin-left: 48px; 
} 
.indent5 { 
margin-left: 60px; 
} 

#printheadings{display:none}


/*********************************************************************/
/*                               PRINTING                            */
/*********************************************************************/

@media print 
{ 


/* display the print header */
#printheadings{display:block}

/* turn off navigation and ad bar */
.left-margin {display: none}

img.noprint {display: none}

td.noprint {
display: none
}

.noprint {
display: none
}

#mainbody {
width:640px;
color:#000;
}

td {color:#000;}

h1 {  
page-break-inside: avoid 
} 
h2 { 
page-break-inside: avoid 
} 
h3 { 
page-break-inside: avoid 
} 
h4 { 
page-break-inside: avoid 
} 
h5 { 
page-break-inside: avoid 
} 
h6 { 
page-break-inside: avoid 
} 

td.noprint {
display: none
}
td.body1 {
display: none
}
td.body4 {
display: none
}
td.nav1 {
display: none
}
td.nav2 {
display: none
}
td.nav4 {
display: none
}
td.bottom {
margin-right:600px;
}
td.body2 {
margin-right:600px;
}


blockquote { 

} 
ul { 

} 
ol { 

} 
dl { 

} 

} 

