body  { margin: 0px; padding: 0px; background: #ffffff; color: #333333; font-size: small; line-height: 1.5em; font-family: verdana, Arial, sans-serif;}
	
/* CONTENT ELEMENTS ======================= */
img         { border: 0; }
p           { margin: 7px 0px 7px 0px; padding: 0px; color: #333333; font-size: small; font-weight: normal; }
h1          { margin: -25px 0px 7px 0px; padding: 0px; color: #496015; font-size: 150%; font-weight: normal; }
h2          { margin: 0px 0px 7px 0px; padding: 0px; color: #333333; font-size: 130%; font-weight: normal; }
h3          { margin: 0px 0px 7px 0px; padding: 0px; color: #333333; font-size: 120%; font-weight: bold; }
h4          { margin: 0px 0px 7px 0px; padding: 0px; color: #333333; font-size: 110%; font-weight: bold; }
h5          { margin: 0px 0px 7px 0px; padding: 0px; color: #333333; font-size: 100%; font-weight: bold; }



/* NAV ELEMENTS ======================= */
a                   { color: #0033CC; text-decoration: none; #0033CC;}
a:visited           { color: #0033CC; text-decoration: none; #0033CC;}
a:hover             { color: #0033CC; text-decoration: none; border-bottom: 1px solid #0033CC; }

a.viewsite          { text-decoration: none; font-size: 80%; border: none; line-height: 1.2em;}
a.viewsite:hover    { color: #0033CC; text-decoration: underline; font-size: 80%; border: none; line-height: 1.2em;}


/* TOPNAV ELEMENTS ======================= */
#navlist
{
padding: 3px 0;
margin: 0;
border-bottom: 1px solid #34460A;
font: bold 100% Verdana, sans-serif;
}

#navlist li
{
list-style: none;
margin: 0;
display: inline;
}

#navlist li a
{
padding: 3px 0.5em;
margin-left: 3px;
border: 1px solid #34460A;
border-bottom: none;
background: url(../images/tabbackground_off.gif);
text-decoration: none;
}

#navlist li a:link { color: #ffffff; }
#navlist li a:visited { color: #ffffff; }

#navlist li a:hover
{
color: #ffffff;
background: url(../images/tabbackground_on.gif);
border-color: #34460A;
text-decoration: underline;
}

#navlist li a#current
{
color: #34460A;
background: #D2DEB9;
border-bottom: 1px solid #D2DEB9;
}


/* SUBTOPNAV ===========================*/
div#subnavcontainer
{
margin: 0;
background-color: #D2DEB9;
border-bottom: solid 1px #34460A;
}

div#subnavcontainer ul
{
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
color: #34460A;
text-align: center;
margin: 0;
padding-bottom: 5px;
padding-top: 5px;
}

div#subnavcontainer ul li
{
display: inline;
margin-left: -4px;
}

div#subnavcontainer ul li a
{
padding: 0px 10px 5px 10px;
color: #34460A;
text-decoration: none;
}

div#subnavcontainer ul li a:hover
{
background-color: #D2DEB9;
border-bottom: solid 1px #D2DEB9;
text-decoration: underline;
color: #34460A;
}

#active a { 
border-left: 1px solid #D2DEB9; 
background-color: #D2DEB9;
border-bottom: solid 1px #D2DEB9;
text-decoration: underline;
color: #34460A;
}



	
/* MASTHEAD LEFT ======================= */
#masthead           { margin: 10px 0px 0px 0px; padding: 0px 0px 10px 0px; background: #ffffff;}
#masthead h1.logo   { margin: 0px; padding: 0px; }
#masthead p         { margin: 5px 5px 5px 5px; padding: 0px 0px 0px 0px; color: #382211; font-weight: bold; line-height: 1.2em; float: right;}
#masthead h3        { margin: 0px 0px 2px 0px; padding: 0px 0px 0px 0px; color: #E8990C;}


/* LEFT COLUMN ======================= */	
#leftcontent {
	position: absolute;
	left:15px;
	top:120px;
	width:175px;
	background:#fff;
	}
	
/* LEFT NAV ======================= */		
#leftnavlist
{
padding: 0;
margin-left: 0;
font: normal 90% Verdana, sans-serif;
border-top: 1px solid #BCC9D7;
background: #F0F3F6;
width:175px;;
}

#leftnavlist li
{
list-style: none;
margin: 0;
text-align: left;
}

#leftnavlist li a
{
display: block;
padding: 2px 4px 4px 2px;
background: #E9EDF1;
border-bottom: 1px solid #BCC9D7;
text-decoration: none;
}

#leftnavlist li a:link { color: #0033CC; }
#leftnavlist li a:visited { color: #0033CC; }

#leftnavlist li a:hover
{
display: block;
padding: 2px 4px 4px 2px;
background: #CED7E0;
border-bottom: 1px solid #BCC9D7;
text-decoration: underline;
}

#leftnavlist li a#current
{
color: #0033CC;
background: white;
border-bottom: 1px solid #BCC9D7;
}

/* LEFT NAV PLAIN ======================= */	

#leftnavlistplain
{
padding-left: 0;
font: normal 90% Verdana, sans-serif;
margin-left: 0;
width: 175px;
}

#leftnavlistplain li
{
list-style: none;
margin: 0;
padding: 4px;
border-bottom: 1px solid #BCC9D7;
}

#navlist li a { text-decoration: none; }


/* CENTER COLUMN ======================= */

	#centercontent {
		background:#fff;
   		margin-left: 100px;
   		margin-right:100px;
		/*
		IE5x PC mis-implements the box model. Because of that we sometimes have
		to perform a little CSS trickery to get pixel-perfect display across browsers.
		The following bit of code was proposed by Tantek Celik, and it preys upon a CSS
		parsing bug in IE5x PC that will prematurly close a style rule when it runs
		into the string "\"}\"". After that string appears in a rule, then, we can override
		previously set attribute values and only browsers without the parse bug will
		recognize the new values. So any of the name-value pairs above this comment
		that we need to override for browsers with correct box-model implementations
		will be listed below.
		
		We use the voice-family property because it is likely to be used very infrequently,
		and where it is used it will be set on the body tag. So the second voice-family value 
		of "inherit" will override our bogus "\"}\"" value and allow the proper value to
		cascade down from the body tag.

		The style rule immediately following this rule offers another chance for CSS2
		aware browsers to pick up the values meant for correct box-model implementations.
		It uses a CSS2 selector that will be ignored by IE5x PC.
		
		Read more at http://www.glish.com/css/hacks.asp
		*/
		
		voice-family: "\"}\"";
		voice-family: inherit;
   		margin-left: 100px;
   		margin-right:100px;
   		margin-top:40px;
		}
	html>body #centercontent {
   		margin-left: 100px;
   		margin-right:100px;
   		margin-top:40px;
		}

/* CENTER COLUMN 2 ======================= */

	#centercontent2 {
		background:#fff;
   		margin-left: 199px;
   		margin-right:50px;
		/*
		IE5x PC mis-implements the box model. Because of that we sometimes have
		to perform a little CSS trickery to get pixel-perfect display across browsers.
		The following bit of code was proposed by Tantek Celik, and it preys upon a CSS
		parsing bug in IE5x PC that will prematurly close a style rule when it runs
		into the string "\"}\"". After that string appears in a rule, then, we can override
		previously set attribute values and only browsers without the parse bug will
		recognize the new values. So any of the name-value pairs above this comment
		that we need to override for browsers with correct box-model implementations
		will be listed below.
		
		We use the voice-family property because it is likely to be used very infrequently,
		and where it is used it will be set on the body tag. So the second voice-family value 
		of "inherit" will override our bogus "\"}\"" value and allow the proper value to
		cascade down from the body tag.

		The style rule immediately following this rule offers another chance for CSS2
		aware browsers to pick up the values meant for correct box-model implementations.
		It uses a CSS2 selector that will be ignored by IE5x PC.
		
		Read more at http://www.glish.com/css/hacks.asp
		*/
		
		voice-family: "\"}\"";
		voice-family: inherit;
   		margin-left: 201px;
   		margin-right:200px;
   		margin-top:40px;
		}
	html>body #centercontent2 {
   		margin-left: 201px;
   		margin-right:200px;
   		margin-top:40px;
		}

/* CENTER COLUMN 3 ======================= */

	#centercontent3 {
		background:#fff;
   		margin-left: 30px;
   		margin-right:330px;
		/*
		IE5x PC mis-implements the box model. Because of that we sometimes have
		to perform a little CSS trickery to get pixel-perfect display across browsers.
		The following bit of code was proposed by Tantek Celik, and it preys upon a CSS
		parsing bug in IE5x PC that will prematurly close a style rule when it runs
		into the string "\"}\"". After that string appears in a rule, then, we can override
		previously set attribute values and only browsers without the parse bug will
		recognize the new values. So any of the name-value pairs above this comment
		that we need to override for browsers with correct box-model implementations
		will be listed below.
		
		We use the voice-family property because it is likely to be used very infrequently,
		and where it is used it will be set on the body tag. So the second voice-family value 
		of "inherit" will override our bogus "\"}\"" value and allow the proper value to
		cascade down from the body tag.

		The style rule immediately following this rule offers another chance for CSS2
		aware browsers to pick up the values meant for correct box-model implementations.
		It uses a CSS2 selector that will be ignored by IE5x PC.
		
		Read more at http://www.glish.com/css/hacks.asp
		*/
		
		voice-family: "\"}\"";
		voice-family: inherit;
   		margin-left: 30px;
   		margin-right:330px;
   		margin-top:40px;
		}
	html>body #centercontent3 {
   		margin-left: 30px;
   		margin-right:330px;
   		margin-top:40px;
		}


/* RIGHT COLUMN ======================= */

	#rightcontent {
		position: absolute;
		right:10px;
		top:135px;
		width:175px;
		font-size: 80%;
		background:#FFFFFF;
		padding: 10px 10px 10px 10px;
		}
		
/* RIGHT COLUMN 2 ======================= */

	#rightcontent2 {
		position: absolute;
		right:10px;
		top:155px;
		width:275px;
		background:#FFFFFF;
		padding: 5px 5px 5px 5px;
		}

/* BOTTOM ======================= */

TABLE.bottom { 
   border-top: 1pt solid #CAD6CE; 
   font-size: 80%;
   background-color: #ffffff;
   width: 90%;
   margin: 50px 0px 10px 10px;
   text-align: center;
}


/* Float content ======================= */

	#floatcontent {
		width:175px;
		margin: 5px 5px 0px 0px;
	        float: left;
	        top: 10px;
		font-size: 80%;
		line-height: 1.3em;
		background:#FFFEE2;
		padding: 4px 4px 4px 4px;
		}
		
/* Float ads ======================= */

	#floatads {
		width:340px;
		margin: 0px 30px 0px 40px;
	        float: left;
	        top: 10px;
		font-size: 80%;
		line-height: 1.3em;
		background:#FFFFFF;
		padding: 0px 0px 0px 0px;
		}

/* Float Calc ======================= */

	#floatcalc {
		width:220px;
		margin: 5px 5px 0px 0px;
	        float: right;
	        top: 10px;
		font-size: 80%;
		line-height: 1.3em;
		background:#FFFFFF;
		padding: 15px 15px 15px 15px;
		}		
		
		
TABLE.calctable { 
  border: 1pt solid #DFE4DE; 
  background-color: #ffffcc;
}

.tablerowodd {  background-color: #E8EEF4; }
.tableroweven {  background-color: #FFFFFF; }
.bold {  font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; color: #444444; font-weight: bold; }
.small {  font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; color: #444444; font-weight: normal; }

BLOCKQUOTE {
	FONT-SIZE: 10pt;
	FONT-FAMILY: Georgia, "Times New Roman", Times, serif;
	color: #000000;
	display: none
}

pre {
	FONT-SIZE: 10pt;
	FONT-FAMILY: Georgia, "Times New Roman", Times, serif;
	color: #000000;
	display: none
}
