html {
	background-color: white;
}
body {
	background-color: white;
}
html, body, ol, ul, li, dl, dt, dd, img {
	margin: 0; 
	padding: 0;
	border: 0;
	font-size: 10pt;
}

p, ol, ul, dl { margin: 0.5em 0 1em 0; }

ol, ul, dl {
	margin-left: 1.5em;
}

h1, h2, h3, h4, h5, h6
{
	font-family: serif;
	font-weight: bold;
	margin: 0.25em 0 0.5em 0;
	color: #009;
}
h1 { font-size: 2.4em; }
h2 { font-size: 1.8em; }
h3 { font-size: 1.4em; }
h4 { font-size: 1.2em; }
h5 { font-size: 1.1em; }
h6 { font-size: 1em; }

blockquote { margin: 0 0 1em 3em; }

.note
{
	font-size: smaller;
	font-style: italic;
}

.floatLeft
{
	float: left;
	clear: left;
	margin: 0 1em 0.5 0;
}

a.button
{
	display: block;
	padding: 4px 0 4px 0;
	width: 96%;
	margin: 0 auto 0 auto;
	text-align: center;
	background-color: #B00;
	border-color: #E00 #900 #900 #E00;
	border-width: 3px;
	border-style: outset;
	color: white;
	font-family: serif;
	font-size: 16px;
	font-weight: normal;
	text-decoration: none;
}
a.button:hover
{
	background-color: #900;
	border-color: #B00 #600 #600 #B00;
	cursor: pointer;
}
a#current { background-color: #0066cc; }

a#current:hover
{
	background-color: #f33;
	cursor:default;
}

/* Overall Structure */
body {
	font-family: sans-serif;
	padding: 0 340px; /* the critical side padding that sets the natural min-width! */ 
	color: #000; 
	font-size: 100.01%; /* this body font-size fixes an IE bug and maintains x-browser uniformity */ 
	text-align: center; /* centers the #sizer element in IE5.x/win */
}

#sizer {
	margin: 0 auto; /* centers #sizer in standard browsers */
	padding: 0;
	width: 60%; /* this value controls liquidity; 0% = full rigid, 100% = full liquid */
	text-align: left; /* resets the default text alignment for the page */
	max-width: 240px;
}

#expander { /* Any % height here causes IE to lose the neg right margin */
	margin: 0 -335px; /* neg side margin values should be < or = to side body padding */
	min-width: 670px; /* This prevents Safari from losing the negative margins in narrow windows */ 
	position: relative; /* makes #expander visible outside #sizer in IEwin */
} 

/*\*/
* html #expander {height: 0;} 
/* #expander must have "height: 0" in IEwin bug fixing */

/* The above is a modified Holly hack for #expander, with zero substituted for the 
usual 1% height value. Any % value on this element causes a horrendous IE bug! */ 


#wrapper1 {
	position: relative;
	font-size: 10pt; /* set global font-size here */ 
	border: 3px solid #da5;
	border-width: 4px 3px;
} /* this positioning may be needed for IEwin if page is to contain positioned elements */

#wrapper2 {  
	position: relative; /* extra insurance against bugs in IEwin */
}


/****************** Main Page Structure *****************/

/* To modify the side column widths and the col divider widths, the values that are 
marked "critical" and also refer to the desired mod MUST be changed as a group. */


.outer {
	border-left: 2px solid #da5; /*** Critical left divider dimension value ***/
	border-right: 2px solid #da5; /*** Critical right divider dimension value ***/
	margin-left: 170px;    /*** Critical left col width value ***/
	margin-right: 160px;    /*** Critical right col width value ***/
}

.float-wrap {
	float: left;
	width: 100%;
}

.center {
	float: right;
	width: 100%;
}

.left {
	float: left;
	position: relative; /* Needed for IE/win */
	width: 170px;    /*** Critical left col width value ***/
	margin-left: -172px;    /*** Critical left col width value ***/ /*** Critical left divider dimension value ***/
}

.right {
	float: right; 
	position: relative; /* Needed for IE/win */
	width: 160px;    /*** Critical right col width value ***/
	margin-right: -162px;    /*** Critical right col width value ***/ /*** Critical right divider dimension value ***/
	margin-left: 2px;   /*** Critical right divider dimension value ***/
}

.centerbox {
	text-align: left;
	overflow: visible;
	width: 100%;
	min-height: 500px;
}

.container-left {color: #000;}

.container-right {color: #000;} /* makes room for the froggy */


/*************** Header and Footer elements *****************/

.header
{
	width: 100%;
	background-color: ;
	color: #000;
	padding: 5px 0;
	height: 210px;
	background-repeat: no-repeat;
	background-image: url('../images/statcarelogowithnum.jpg');
	background-position: 50px 5px;
} 

.header h1
{
	font-size: 28px;
	color: white;
	margin: 20px 0px 0 180px;
	font-family: san-serif;
	letter-spacing: 0.05em;
}

.footer {
	width: 100%;
	clear: both;
	padding: 5px 0 15px;
	position: relative;
}

.footer hr {
	color: #900;
	margin: 0;
	background: #900;
	height: 5px;
}


/************** Spacing Controls for various column contents ***************/

.textpadder {padding: 6px;}

/************** Generic Rules *************/

a {color: #000; vertical-align: bottom;}

p { margin: 0 0 .8em 0; }

.alignright {margin: 0 10px 10px 0; text-align: right;}

.small {font-size: .8em;}


/************** Special Fixes *************/

.outer {word-wrap: break-word;}
/* Prevents long urls from breaking layout in IE, must 
be hidden in a conditional comment for CSS to validate */

img {
	max-width: 100%;
	max-height: 100%;
} 
/* prevents oversize images from breaking layout in browsers that support max-width */

/* \*/
* html #wrapper1,
* html #wrapper2,
* html .outer a, 
* html .container-left, 
* html .container-right,
* html .outer,
* html h2,
* html .sidenav li a 
{height: 1%;}
/* Holly hack */


/*** Variance fixes for IEwin ***/

/*\*/
* html .outer p {margin-right: -6px;}
/* */


/**************** Utility Rules *******************/

/*\*/ /*/
.sidenav a:hover {position: relative;}
/* this fixes an IEmac hover bug in the left column, hidden from other browsers */


.brclear { /* Use a break with this class to clear float containers */
	clear:both;
	height:0;
	margin:0;
	font-size: 1px;
	line-height: 0;
}

.clicker {
	display: block;
	text-align: center; 
	padding: 3px; 
	background: #833; 
	cursor: pointer;   
}

.hide {display: none;}