@charset "iso-8859-1";

 /* begin with generic selectors so that they can be overridden if needed
 * by classes deeper in the stylesheet
 */
.clear
{
	clear: both;
	padding-bottom: 1px;	/* for Gecko-based browsers */
	margin-bottom: -1px;	/* for Gecko-based browsers */
}
.hide
{
	display: none !important;
}
.inside
{
	/* glitch in IE caused by vertical padding in this class, so 0 padding is
	 * set here and those blocks that need the vertical padding must be 
	 * applied to the parent element. the purpose of this class is to provide
	 * horizontal padding without using hacks to get around IE's broken box 
	 * model. so it's okay to apply vertical padding to the parent element, 
	 * just not horizontal padding.
	 */
	padding: 0 1em;
}

/* margin values and font sizes for headings, and margins on paragraphs
 * and lists are not consistent across browser platforms. to achieve a
 * consistent look we need to explicity set these values here. it may
 * seem an odd way to declare the margins like this but you never
 * know what kind of horizontal padding a browser may be using on an
 * element, and I only want to change the vertical padding.
 *
 * pixels are used here, rather than ems, because I want a consistent
 * margin on the different headings. if I use ems, 1em for an h1 element
 * is much larger than 1em on an h6 element. I don't wnat this.
 *
 * salt to taste
 */
ul, ol, dl, p, h1, h2, h3, h4, h5, h6
{
	margin-top: 14px;
	margin-bottom: 14px;
	padding-top: 0;
	padding-bottom: 0;
}


h1
{
	font-size: 20%;
}


h2
{
	font-size: 150%;
	margin: 5px 0px 1px 0px;
	padding: 2px 0px 2px 0px;
}

h3
{
	font-size: 130%;
	margin: 0px;
	padding: 0px;
}
h4
{
	font-size: 120%;
}
h5
{
	font-size: 100%;
}
h6
{
	font-size: 70%;
}

img {
	border: none;
	vertical-align: bottom;
}

/* alter some HTML elements' default style
 */

a, a:link, a:visited, a:active
{
	text-decoration: none;
}

/*
.lin a:link, .lin a:visited, .lin a:active, .lin a {
	border-bottom:1px dotted #004899;	
   text-decoration: none;
}
*/

span.link a:link {
	border-bottom: 1px dotted #004899;	
	text-decoration: none;
}

span.link a:hover  {
	border-bottom: 1px solid #004899;	
	background: Yellow;
	text-decoration: none;
}

span.link a:visited  {
	border-bottom: 1px dotted #004899;	
	color: Navy;
	text-decoration: none;
}


a:hover
{
	text-decoration: underline;
	background: Yellow;
}


a:visited {
	color: Navy;
}

code
{
	font-family: "Courier New", Courier, monospace;
}
label
{
	cursor: pointer;
}
table
{
	font-size: 100%;
}
td, th
{
	vertical-align: top;
}

/* now we craft the core layout of the page. this includes positioning and
 * gutter space. colors and fonts should not come into play at this point.
 * when defining a border, default its color to white which is probably
 * the safest thing to do.
 */
body
{
	margin: 5px 5px;	/* margin instead of padding for the gutterspace around 
	 			   the layout because IE breaks the layout when 
	 			   horizontal padding is applied to the body element.
	 			   % over pixels for that horizontal gutterspace so that
	 			   it automatically goes below 20px on low-res browsers
	 			   to create more space for the content. */
	font-size: 100.1%;	/* resolve some font size issues in some layouts for
				   some browsers. (in other words, i got no clue.) */
}
#pageWrapper
{
	border: solid 1px #fff;
	border-width: 0 1px;
	min-width: 40em;	/* IE doens't understand this property. EMs are used
				   so that as the font size increases, the proportional
				   limitations (min-width) increase with it, rather
				   than creating a middle column that can only fit
				   3 or 4 characters in it. */
	width: auto;
}
* html #pageWrapper
{
	/* \*/
		word-wrap: break-word;
	/* invalid CSS but keeps IE from breaking horribly under narrow viewports */
}

* html #masthead { /* \*/ height: 0.01%; /* holly hack (VERY IMPORTANT) */ }

#masthead
{
	/*border: solid 1px #fff;*/
	border-width: 1px 0;
	padding: 0.5em;
	border-top: 1px solid #fff;
}
#masthead h1
{
	padding: 0;
	margin: 0;
}
#outerColumnContainer
{
	/* reserves space for the left and right columns. you can use either
	 * padding, margins, or borders, depending on your needs. however you
	 * can use the border method to create a background color for both left
	 * and right columns
	 */
	border-left: solid 14em #fff;
	border-right: solid 14em #fff;
}
#innerColumnContainer
{
	border: 1px dashed #F5F5F5;
	border-width: 0 1px;
	margin: 0 -1px;		/* compensate for the borders because of
				   100% width declaration */
	width: 100%;
	z-index: 1;
}
#leftColumn, #middleColumn, #rightColumn, * html #SOWrap
{
	overflow: visible;	/* fix for IE italics bug */
	position: relative;	/* fix some rendering issues */
}
#SOWrap
{
	float: left;
	margin: 0 -1px 0 0;
	width: 100%;
	z-index: 3;
}
#middleColumn
{
	float: right;
	margin: 0 0 0 -1px;
	width: 100%;
	z-index: 5;
}
#leftColumn
{
	float: left;
	margin: 0 1px 0 -14em;
	width: 14em;
	z-index: 4;
}
#rightColumn
{
	float: right;
	width: 14em;
	margin: 0 -14em 0 1px;
	z-index: 2;
}
#footer
{
	border: solid 1px #fff;
	border-width: 1px 0;
	padding: 0.5em;
}

div.fontsize-set
{
	text-align: center;
}
div.fontsize-set img
{
	border-width: 0;
}


/* vertical navigation stuff. */
.vnav
{
	margin: 1em 0;
}

.vnav ul, .vnav ul li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: block;
}

.vnav ul
{
	border: solid 1px #fff;
	border-bottom-width: 0;
}

.vnav ul li
{
	border-bottom: solid 1px #fff;
}

.vnav ul li, .vnav ul li a
{
	margin: 0;
	display: block;
	padding: 0;
	line-height: normal;
}

.vnav ul li a
{
	display: block;
	padding: 2px 5px 3px 5px;
}

.vnav ul li a, .vnav ul li a:link, .vnav ul li a:visited, .vnav ul li a:active, .vnav ul li a:hover
{
	text-decoration: none;
	cursor: pointer;
}

.vnav h3
{
	margin-bottom: 0;
	padding-bottom: 0;
	font-size: 126%;
}

* html .vnav ul li a/* hide from IE5.0/Win & IE5/Mac */
{
	height: 0.01%;
}

* html .vnav ul
{
	position: relative;	/* IE needs this to fix a rendering problem */
}









/* everything below this point is related to the page's "theme" and could be
 * placed in a separate stylesheet to allow for multiple color/font scemes on
 * the layout. you should probably leave a default theme within this stylesheet
 * just to be on the safe side.	
 */
#pageWrapper, #masthead, #innerColumnContainer, #footer, .vnav ul, .vnav ul li, .hnav, .hnav ul li a
{
	border-color: #000;
}
html, body
{
	/* note that both html and body elements are in the selector.
	 * this is because we have margins applied to the body element
	 * and the HTML's background property will show through if
	 * it is ever set. _DO_NOT_ apply a font-size value to the
	 * html or body elements, set it in #pageWrapper.
	 */
	background-color: #FFFFF0;
	color: #000;
	font-family: Verdana, Arial, Geneva, sans-serif;
}
#pageWrapper
{
	font-size: 80%;	/* set your default font size here. */
}
#masthead
{
	background-color: #F6F6EA;
	color: #fff;
}


#outerColumnContainer
{
	border-left-color: #fff;	/* left column background color */
	border-right-color: #fff;	/* right column background color */
	background-color: #fff;		/* set the background color for the middle column here */
}

.vnav ul li a:link, .vnav ul li a:visited, .vnav ul li a:active
{
	text-decoration: none;
	color: #000;
   background: url(../images/toolbar/arrow.png) left top no-repeat;
}

.vnav ul li a:hover
{
	background-color: yellow;
	color: #000;
}

.vnavhome{
	background-color: #FFFFE0;	/* home */
}

.vnavhomeover ul li a:hover
{
	background-color: #ffff00;
}


.vnavyellow{
	background-color: #FFFFE0;	/* products */
}

.vnavyellowover ul li a:hover
{
	background-color: #ffff00;
}


.vnavlightpink{
	background-color: #FFFFE0;	/* companies */
}

.vnavlightpinkover ul li a:hover
{
	background-color: #ffff00;
}


.vnavpink{
	background-color: #FFFFE0;	/* news */
}

.vnavpinkover ul li a:hover
{
	background-color: #ffff00;
}


.vnavlightblue{
	background-color: #FFFFE0;	/* blog */
}

.vnavlightblueover ul li a:hover
{
	background-color: #ffff00;
}


.vnavgreen{
	background-color: #FFFFE0;	/* fun stuff */
}

.vnavgreenover ul li a:hover
{
	background-color: #ffff00;
}



.vnavpurple{
	background-color: #FFFFE0;	/* other */
}

.vnavpurpleover ul li a:hover
{
	background-color: #ffff00;
}



.vnavgrey{
	background-color: #FFFFE0;	/* about us */
}

.vnavgreyover ul li a:hover
{
	background-color: #ffff00;
}



.vnavmedblue{
	background-color: #FFFFE0;	/* contact us */
}

.vnavmedblueover ul li a:hover
{
	background-color: #ffff00;
}



.vnavmedgreen{
	background-color: #FFFFE0;	/* a really long tab */
}

.vnavmedgreenover ul li a:hover
{
	background-color: #ffff00;
}



.vnavlightgrey{
	background-color: #FFFFE0;	/* something */
}

.vnavlightgreyover ul li a:hover
{
	background-color: #ffff00;
}



.vnavseablue{
	background-color: #FFFFE0;	/* last */
}

.vnavseablueover ul li a:hover
{
	background-color: #ffff00;
}






#rightColumn .inside
{
	/* if you apply a font size to just #rightColumn, then its width,
	 * which is specified in EMs, will also be affected. you don't want
	 * that. so apply font size changes to the .inside element which exists
	 * inside underneath all three columns
	 */
	font-size: 90%;
}
#rightColumn .inside .vnav
{
	font-size: 110%;
}
#footer
{
	background-color: #4D94C8;
	color: #000;
	text-align: center;
}

/*
#mastheadRight { 
	float: right; 
	width: 10px; 
	text-align: left; 
}
*/

#mastheadRight p, #mastheadRight form { margin: 0; padding: 0; }

/* notice everything, even the font, is set in pixels. this is
 * key because you need to know, roughly, what the width of this
 * box will be. 140px + 30px = 170px. I set the with of #mastheadRight
 * to 200px just to be safe and that 30px also acts as a right-side 
 * margin.
*/
#mastheadRight input.text { width: 140px; }
#mastheadRight input.button { width: 30px; }
#mastheadRight input { font-size: 12px; border-width: 1px; }
#mastheadRight label span { color: #000; font-weight: bold; }



/******************************************************************************/


#mainActivity 
{
	clear: both;
	width: 50%;
	/* height: 170px; */
	text-align: left;
	background: Fuchsia;
}

#mainActivity .smallList 
{
	width: 25%;
	padding-left: 7px;
	padding-right: 12px;
	float: left;
}

#mainActivity p 
{
	height: 19px;
	margin-bottom: 2px;
	line-height: 19px;
	font-size: 10px;
	color: #b19c9c;
	font-weight: bold;
}

#mainActivity p.listhead 
{
	height: 19px;
	margin-bottom: 0px;
	line-height: 12px;
	font-size: 10px;
	color: #513131;
	font-weight: bold;
	padding-top: 10px;
	border: solid 1px #C7C6C6;
}

div.pageicon {
	text-align: center;
	border: 1px solid #000;
	padding: 4px;
}

div.pageicontitle {
	text-align: center;
   background: #F6F6EA; 
	font-family: Verdana, Arial, Geneva, sans-serif;
   /* background: url(../images/toolbar/shadow.png) left top repeat; */
	padding: 5px;
	/*height: 30px;*/
	/* border: 2px ridge #F5F5F5; */
	border: 1px solid #000;
	margin-bottom: 10px;
}

/*
div.rightpagebox {
	text-align: center;
	border: 1px solid #000;
	padding: 4px;
}

div.rightpageboxtitle {
	text-align: center;
   background-color: #F6F6EA;
	font-size: 90%;
	font-weight: normal;
	font-family: "Comic Sans MS", Verdana, Arial, Geneva, sans-serif;
	letter-spacing: 3px;
   background: url(../images/toolbar/shadow.png) left top repeat;
	padding: 5px;
	border: 2px ridge #F5F5F5;
	margin-bottom: 10px;
}
*/

.boxopen {
	border: 1px solid #000000;
	text-align:left;
	text-indent: 7px;
	font-size: 120%;
	font-family: Verdana, Arial, Geneva, sans-serif;
	font-weight: bold;	
	position: relative;	/* IE needs this to fix a rendering problem */
	margin: 5px 0px 1px 0px;
	padding: 2px 0px 2px 0px;
}

.boxopen a:link, .boxopen a:visited, .boxopen a:active, .boxopen a {
	text-decoration: none;
	background-color: transparent;
}


.boxwithborder {
	padding: 3px;
	margin: 0px;
	background: #F1F9FE;
	border: 1px solid #000000;
	text-align: center; 
	position: relative;	/* IE needs this to fix a rendering problem */
}




table.formarea {
	background: #F1F9FE;
	border-bottom: #7B9EBD 1px solid;
	border-left: #7B9EBD 1px solid;
	border-right: #7B9EBD 1px solid;
	border-top: #7B9EBD 1px solid;
}

td.formarea {
	text-align: left;
	background: #F1F9FE;
	border-bottom: 1px solid; 
	border-right: 1px solid; 
	border-color: Silver;
}

td.formareatop {
	vertical-align: top;
	background: #F1F9FE;
	border-bottom: 1px solid; 
	border-right: 1px solid; 
	border-color: Silver;
}




th.formareaLabel {
	text-align: left;
	background: #FFFAFA;
	border-bottom: 1px solid; 
	border-right: 1px solid; 
	border-color: Silver;
}

th.formareaRight {
	text-align: right;
	background: #F1F9FE;
	border-bottom: 1px solid; 
	border-right: 1px solid; 
	border-color: Silver;
	width: 25%;
}



th.formareaRightKeyFeatures {
	text-align: right;
	background: #FFFFF0;
	border-bottom: 1px solid; 
	border-right: 1px solid; 
	border-color: Silver;
}

th.formareatop {
	vertical-align: top;
	background: #F8F8F9;
	border-bottom: 1px solid; 
	border-right: 1px solid; 
	border-color: Silver;
}

th.formarea {
	background: Scrollbar;
	border-bottom: 1px solid; 
	border-right: 1px solid; 
	border-color: Silver;
	width: 25%;
}





td.formareaKeyFeatures {
	text-align: left;
	background: #FFFFF0;
	border-bottom: 1px solid; 
	border-right: 1px solid; 
	border-color: Silver;
}

td.formareaCenter {
	text-align: center;
	background: #F1F9FE;
	border-bottom: 1px solid; 
	border-right: 1px solid; 
	border-color: Silver;
}

td.formareaCenterGraphic {
	text-align: center;
	background: #F1F9FE;
	border-bottom: 1px solid; 
	border-right: 1px solid; 
	border-color: Silver;
	width: 55px;	
}

td.formareaHilight {
	text-align: center;
	background: InfoBackground;
	border-bottom: 1px solid; 
	border-right: 1px solid; 
	border-color: Silver;
}

td.formareabottom {
	vertical-align: bottom;
	background: #F8F8F9;
	border-bottom: 1px solid; 
	border-right: 1px solid; 
	border-color: Silver;
}

td.formareaCenterWarningLabel {
	text-align: center;
	background: Blue;
	border-bottom: 1px solid; 
	border-right: 1px solid; 
	border-color: Silver;
	color: Yellow;
}





input.smallbutton{
   color: black;
	font-family: Verdana, Arial, Geneva, sans-serif;
	font-weight:normal; 
   font-size: small;
   /* background-color:#E4E7FD; */
   border:1px solid;
}

input.mediumbutton{
   color: black;
	font-family: Verdana, Arial, Geneva, sans-serif;
	font-weight:normal; 
   font-size: small;
   /* background-color:#E4E7FD; */
   border:1px solid;
}


div.float {
  float: left;
	text-align: center;
   width: 33%;
}
  
div.float p {
   text-align: center;
}

div.container {
	text-align: center;
   border:1px solid;
	border-color: #7B9EBD;
	background: #F1F9FE;
}

div.spacer {
  clear: both;
}

acronym {border-bottom : 2px dotted #a1b1c5; cursor : help;}

.select_checklist {
	font-family: "courier new", monospace;
	font-size: small;	
}