/* CSS Document */
#nav {
  position:relative;        /* establish a menu-relative positioning context */
  float:left;                                     /* play nicely with others */
  background-color:#365B61;
  border:medium none;
  color:#FFFFFF;
  font-family:Arial;
  font-size:0.9em;
  font-weight:bold;
  padding:3px;
  text-transform:uppercase;
  vertical-align:middle;
  width: 99%;
  height:20px;
  z-index: 1000;
}
#nav img {
  vertical-align: top;      /* prevent images from being pushed down by text */
}
#nav ul {
  border:medium none;
  list-style-image:none;
  list-style-position:outside;
  list-style-type:none;
  margin:0;
  padding:0;          /* we don't want to view the list as a list */
  line-height:1.5em;           /* globally set the menu's item spacing. note */
}                               /* this must be 1.0 or 1.5 or 2.0 for Mozilla */
#nav li {
  float:left;    /* this creates the side-by-side array of top-level buttons */
  position:relative;    /* create local positioning contexts for each button */
  margin:0;
}
/*======================== TOP LEVEL MENU DEFINITIONS ========================*/
#nav ul li ul {
  display:none;                  /* initially hide the entire list hierarchy */
  padding:1px;
  height:20px;                              /* this is our box border width */
}
#nav ul li a,
#nav ul li a:visited {                    /* unselected top-level menu items */
	display:block;
	float:left;
	text-decoration:none;
	height:20px;
	color: #FFFFFF;
	border:0 none;
  padding:0 5px;
}
#nav ul li:hover a,
#nav ul li a:hover {                        /* selected top-level menu items */
  background-color:#365B61;
  color:#FF9933;
	height:20px;
}
#nav ul li table {
	margin:-1px 0;              /* IE5 needs -1px top and bottom table margins */
	margin:0;               /* re-zero the table margins for everyone but IE5 */
	border-collapse:collapse;      /* IE5 needs this for the sub-menus to work */
	font-size:12px;        /* this sets the base font size for our entire menu */
}
.drop {
	display:block;
	padding:0px 0.33em;	       /* this sets the l/r margins for our menu item */
	margin:0;
	text-align:right;   /* this right alignment goes with the float:left below */
	cursor:pointer;      /* IE tries to switch back to an I-beam, don't let it */
}
.drop span {        /* this simultaneously left and right aligns the text and */
	float:left;       /* the >> in the drop-down menus which link to sub-menus */
}
#nav ul li ul {
	display:none;                  /* initially hide the entire list hierarchy */
	padding:1px;                               /* this is our box border width */
}
/*======================== 2ND LEVEL MENU DEFINITIONS ========================*/
#nav ul li:hover ul,
#nav ul li a:hover ul {                           /* 2nd level drop-down box */
	display:block;
	position:absolute;
	margin:0;
	top:20px;              /* place us just up underneath the top-level images */
	left:0;       /* left-align our drop-down to the previous button border */
	height:auto;      /* the drop-down height will be determiend by line count */
	width:13.5em;
	color:black;                        /* this sets the unselected-text color */
	background:black;         /* this sets our menu color */
}
#nav ul li:hover ul.leftbutton,
#nav ul li a:hover ul.leftbutton {/* our first dropdown should not be skewed */
	left:0px;
}
#nav ul li:hover ul.skinny,
#nav ul li a:hover ul.skinny {             /* 2nd level skinny drop-down box */
	width:8.08333em;   /* with a 12px default font, this is 97px width (97/12) */
}
#nav ul.rightmenu li:hover ul,
#nav ul.rightmenu li a:hover ul {    /* 2nd level neighborhood drop-down box */
	left:auto;
	right:0;         /* nudge the right menu right to line up under the border */
}
* html #nav ul.rightmenu li a:hover ul {         /* IE5/6 needs a tweak here */
	right:-1px;
}
#nav ul li:hover ul li a,
#nav ul li a:hover ul li a {                   /* 2nd level unselected items */
	border:0;
	margin:0;
	padding:0;
	height:auto;
	color:#FF9933;               /* this sets the unselected drop-down text color */
	background:#365B61;       /*#CBB988; this sets the drop-down menu background color */
	width:13.5em;
}
#nav ul li:hover ul li:hover a,
#nav ul li a:hover ul li a:hover {                /* 2nd level selected item */
	color:#FF9933;
	background:#365B61;
}
#nav ul li:hover ul.skinny li a,
#nav ul li a:hover ul.skinny li a,
#nav ul li:hover ul.skinny li a:hover,
#nav ul li a:hover ul.skinny li a:hover {     /* 2nd level un+selected items */
	width:8.08333em;
}
#heading_green h2{
  color:#8CC63F;
  font-size:18px;
}
#banner, #banner p, #banner p img{
  padding: 0;
  margin: 0;
}
#banner{
  background-color: #FFFFFF;
}
p.orange_box{
  background-color: #FFCC33;
  padding: 20px 5px 20px 10px;
  font-weight: bold;
}
.col2 p{
  color: #FFFFFF;
  margin: 0;
}
h1, h2, h3, p{
  font-family: Arial;
}
h1{
  font-size: 1.3em;
}
h2{
  font-size: 1.2em;
  color: #990000;
}
h3{
  font-size: 1em;
}
p, label{
  font-size: 0.9em;
}
/*form layout*/
fieldset {  
  float: left;  
  clear: left;  
  width: 99%;  
  margin: 0 0 1.5em 0;  
  padding: 0;
  border: none;
}
legend {
  margin-left: 1em;
  color: #000000;
  font-weight: bold;
}
fieldset ol {
  padding: 1em 1em 0 1em;
  list-style: none;
}
fieldset li {
  clear: left;
  padding-bottom: 1em;
}
fieldset.submit {  
  float: none;  
  width: auto;  
  border: 0 none #FFF;  
  /*padding-left: 400px;*/
  text-align: right;
}
label {
  /*clear: left;
  float: left;*/  
  width: 150px;  
  margin-right: 1em;  
  text-align: right;
}
form{
  margin-top: 1.5em;
  /*padding-bottom: 35px;*/
  background-color: #CCCC99;
}
input.text, textarea.text{
  width: 300px;
}
input.submit{
  cursor: pointer;
  margin: 0 1em 1em 0;
}
form p.verification{
  margin-left: 11em;
}
img{
border: 0;
}
img.left{
  float:left;
margin: 0 5px 5px 0;
}
img.right{
  float:right;
margin: 0 0 5px 5px;
}
.archive{
  clear: left;
}
.archive h2, .archive p{
  margin-left: 90px;
}
label.error, p.error{
  color: #FF0000;
  width: 100%;
  text-align: left;
}
p.center{
  text-align: center;
}
.qterm { color: #444; background-color: #ee9; font-weight: bold; }
#search{background-color: #CCCC99;text-align:right;}
#search form p label{  
  width: 150px;  
  margin-right: 1em;  
  text-align: right;
  margin-top: 5px;
}
#Login label, #Request_a_complimentary_copy label, #Promotion_Enquiry label, #Forum_Post label{
clear: left;
float: left;
}
#blog_categories h2{
  color: #FFFFFF;
}
#blog_categories a{
  text-decoration: none;
  color: #999999;
}
#features h2, #news h2{
clear: both;
}
.currentpage{
  color: #FF9933;
}
#nav ul li.currentpage a{
  color: #FF9933;
}
#instructions{
  border-top: 1px dashed #000000;
}
.right_col p{
color: #000000;
}