
/*+++++++See styleguide.cfm to see styles in action+++++++*/


/*Basic Site Settings*/

body
{
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 12px;
background-color: #E1DFE0;
padding:0px; 
max-width : 1024px; 
margin-left:auto; 
margin-right:auto; 
} 

.clear:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.clear { display: inline-block; }

table, td, tr{
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 12px;
}

h1
{

	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #990033;
	
}

h2
{
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	
}

h3
{

	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	
	padding-bottom: 4px;
	padding-top: 8px;
	
}

/* Use this for Page Header/Title */

h4{
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #003366;
	border-bottom: 1px dashed #999999;
	padding-bottom: 4px;
	padding-top: 8px;
	
}



a:link{
	text-decoration: none;
	color: #0056CC;
}
a:visited{
	text-decoration: none;
	color: #0056CC;
}

a:hover{
	color: Black;
}

a:active{
	text-decoration: none;
	color: #0056CC;
}

.footer {

 padding: 5px;
 background-color: #808285;
 color: #FFFFFF;
 font-size: 10px;
 }
 
.footer a {
font-size: 12px;
color: #FFFFFF;
}
 
.main_header{
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #003366;
	padding-bottom: 4px;
	padding-top: 8px;
	
}

.main_header a{
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #00F;
	padding-bottom: 4px;
	padding-top: 8px;
	
} 
 
 
/*  end basic site settings */


/*Use for a callout - wrap content in <fieldset></fieldset>; wrap title in <legend></legend>*/

fieldset {
	border:1px solid #F5F5F5;
	border-left-color:#DDD;
	border-top-color:#DDD;
	padding: 10px;
	max-width : 1024px;
}

legend {
	color:#003366;
	font-weight:bold;
	padding:5px 10px;
	font-size: 14px;
}

/* end callout */

/*the basic navy color*/
.navy
{ 
color: #003366;
}

/*the basic light blue color*/
.lightBlue
{
color: #006699;
}

/*the basic dark grey color*/
.darkGray
{
color: #808285;
}

/*the basic light grey color*/
.lightGray
{
color: #EFE7EF;
}

/*Use for light grey background header*/

.TitleHeaders{
	border: 1px solid #B8BEC9;
	margin: 1px;
	padding: 4px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	background-color: #cdd3db;
}

/*End light grey background*/


/*Use for light grey background header*/

.FeatureHeaders{
	border: 1px solid #B8BEC9;
	margin: 1px;
	padding: 4px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #990033;
	background-color: #cdd3db;
}

/*End light grey background*/


/*Creates the Navigation Menu*/ 
 
 
 ul.makeMenu, ul.makeMenu ul {
  width: 172px;                 /* sets the size of the menu blocks */
/* border: 1px solid #000000;      /* puts a black border around the menu blocks */
 background-color: #ffffff;      /* makes the menu blocks mint green - a bg-color MUST be included for IE to work properly! */
  padding-left: 0px;           /* stops the usual indent from ul */
  cursor: default;             /* gives an arrow cursor */
  margin-left: 0px; 			 /* Opera 7 final's margin and margin-box model cause problems */
}
ul.makeMenu li {
  list-style-type: none;
         /* removes the bullet points */
  margin: 0px;                 /* Opera 7 puts large spacings between li elements */
 /* position: relative; */       /* makes the menu blocks be positioned relative to their parent menu item
                                 /* the lack of offset makes these appear normal, but it will make a difference
                                 /* to the absolutely positioned child blocks */
                      /* sets the default font colour to white */
					  
  border-bottom: 1px solid #a5a3a4;
  /*border-right: 1px solid White;*/
    
  background-color: #cfccce; 
    
  	font-family:Verdana, Arial, Helvetica, sans-serif; padding:5px 0px 5px 5px;/*'padding-top' 'padding-right' 'padding-bottom' 'padding-left'*/
  	font-size:10px;
  	font-weight:bold;
  	vertical-align:middle;
	border-top: 1px solid White;
	border-left: 1px solid #a5a3a4;
	padding-bottom: 4px;
}
ul.makeMenu li > ul {          /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
  display: none;               /* hides child menu blocks - one of the most important declarations */
  position: absolute;          /* make child blocks hover without leaving space for them */
  top: -1px;
                   /* position slightly lower than the parent menu item */
  left: 171px;                   /* this must not be more than the width of the parent block, or the mouse will
                                  have to move off the element to move between blocks, and the menu will close */
}
ul.makeMenu li:hover, ul.makeMenu li.CSStoHighlight {
  background-color: #eae7e9;      /* gives the active menu items a yellow background */
  color: #000000;                 /* makes the active menu item text black */ 
}
ul.makeMenu ul.CSStoShow {     /* must not be combined with the next rule or IE gets confused */
  display: block;              /* specially to go with the className changes in the behaviour file */
}
ul.makeMenu li:hover > ul {    /* one of the most important declarations - the browser must detect hovering over arbitrary elements
                                  the > targets only the child ul, not any child uls of that child ul */
  display: block;              /* makes the child block visible - one of the most important declarations */
}
/* and some link styles */
ul.makeMenu li a { color: #666465; display: block; width: 100%; text-decoration: none; }
ul.makeMenu li a:hover, ul.makeMenu li a.CSStoHighLink { color: #003366; }
ul.makeMenu li:hover > a { color: #003366; } /* supports links in branch headings - must not be display: block; */
ul.makeMenu li:visited > a { color: #666465; }

ul.makeMenu li.noHighlight {
  background-color: #cfccce;      /* gives the active menu items a yellow background */
  color: #000000;                 /* makes the active menu item text black */ 
}

ul.makeMenu li.menuSubHeader   	{	background-color:#336699; 	}
ul.makeMenu li.menuSubHeader a	{	color:#cccccc; }
ul.makeMenu li.menuSubItem		{	background-color:#99ccff; color:#333333    }
ul.makeMenu li.menuSubItem a	{	color:#333333    }


/*Creates the Navigation Menu*/

.bigText {
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #003366;
	}
	
.padleft {
margin-left: 10px;
}
.padleft2 {
margin-left: 20px;
}
.adspaceContainer  	{ margin:30px 0px 10px 0px;  }
.adspace 			{ margin:0px 0px 10px 0px; }
.leaderboard		{  }
.underwriter		{  }



