/* CSS Document */

/* Rules */

/*default link styles*/
/* set all links to have underline and grey color */
a,
a:link 
a:active {
   text-decoration: underline;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
   background-color: inherit; 
   color: #666666; 
}

a:visited {
   text-decoration: underline;
   background-color: inherit;
  /* color: #AB7306;                /* a different color can be used for visited links */
}

/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
  /* background-color: #C3D4DF; */
   color: #3366CC;
}

/* set font size for all divs,
this overrides some body rules */

div {
   font-size: 15px;
}

/*-----------------*/
/* Main Page Layout*/

html, body {
background-image:url(../images/bgVert.gif);
background-repeat:repeat-x;
background-position:bottom;
margin-bottom:0px;
height:inherit;
}

div#pageWrapper {
margin: 0 auto;       /* this centers wrapper */
width: 900px;
font-family:Tahoma, Verdana, Arial;
font-size:11px;
color:#333333;
min-height:100%;
/* height:inherit;
overflow:inherit; */
border:#000000 solid 1px;

<!--[if lte IE 6]>
height: 100%;
<![endif]-->

}

div#header {
height:166px;
}

div#body {
padding-top:0px;
vertical-align:top;
}

div#nav {
background-color:#AB7306;
height:23px;
}

div#shoppingCart {
color:#FFFFFF;
line-height:20px;
float:left;
margin-left:10px;
}

div#sidePanel {
padding:20px;
text-align:center;
}

div#mainContent {
padding:10px;
/*text-align:center; */
}

/* Main Content HEADINGS */
div#mainContent h1 {
   font-size: 18px; /* font size for h1 */
   color:#006699;
   margin: 20;
}

div#mainContent h2 {
   color:#006699;
   font-size:12px;
   font-weight:bold;
   margin: 0;
}

div#mainContent h3 {
   color:#FFFFFF;
   font-size:12px;
   font-weight:bold;
   margin: 0;
}

div#mainContent h4 {
   color:#FFFFFF;
   font-size:10px;
   font-weight:bold;
   margin: 0;
}

div#footer {
margin:0 auto;
width: 880px;
background-color:#006699;
font-size:9px;
color:#FFFFFF;
text-align:center;
padding:10px;
}
div#footer a,
div#footer a:link 
div#footer a:active {
   text-decoration: underline;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
   background-color: inherit; 
   color: #FFFFFF; 
}

div#footer a:visited {
   text-decoration: underline;
   background-color: inherit;
   color: #AB7306;                /* a different color can be used for visited links */
}

/* remove underline on hover and change color */

div#footer a:hover {
   text-decoration: none;
   background-color: #C3D4DF;
   color: #999999;
}

/* ProTx Styles for Payment Pages */
.greybar {
	background-color:#EFEFEF;
	background-position:center;
	}
	
.protxnames {
	font:Verdana;
	color:#005AA5;
	font-size:12px;
	font-weight:normal;
	text-align: right;
	vertical-align: top;
	}
	
.subheader {
	margin-left: 85px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11pt;
	line-height: 14px;
	color: #FFFFFF;
	background-color:#005AA5;
}

.errorheader {
	margin-left: 85px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11pt;
	line-height: 14px;
	color: #FFFFFF;
	background-color:#CC0000;
}

.infoheader {
	margin-left: 85px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11pt;
	line-height: 14px;
	color: #FFFFFF;
	background-color:#00CC00;
}
.resourcecontent {
	float: left;
	margin-left: 15px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10pt;
	line-height: 16px;
	color:  #FFFFFF;
}

.tableinput {
	font:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#666666;
	width:600px;
	margin-left:30px;
	}


.tickbullets {
	list-style-image:url(tick.gif);
	font-size: 10pt;
	color: #005AA5;
	}
		
.arrowbullets {
	list-style-image:url(arrow.gif);
	font-size: 10pt;
	color: #005AA5;
	}

.formbullets {
	list-style-image:url(form_bullet.gif);
	font-size: 10pt;
	color: #666666;
	}
.formComponents {
	font:Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
}