/* ====================================================================
Banner Styling
-------------------------------------------------------------------- */
#banneroutside{/*used to create purple bottom border*/
background-color: #6699CC;
color:white;
margin:0px;
padding:0px;
border-bottom: 3px solid #6699CC;

}

#banner{/* Formatting for the banner at the top of the page */
background-color: #6699CC;
color:white;
width: 100%;
padding:2px 0 2px 0;
/*padding-top: 1em; /* to allow for nav menu */
border-bottom: 3px solid #FAE7AB;
margin: 0;

}

#logo h1{
margin: 0;
padding:0 0 0 5px;
color: #fff;
background-color: transparent;
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: .8em;
font-weight: 600;
font-style: italic;
} 

#logo h1.bigger{ 
margin:0;
padding-top:0;
padding-bottom:0;
color: #fff;
background-color: transparent;
font-family: Arial, Helvetica, sans-serif;
font-size: 1.3em;
font-weight: 900;
font-style: normal;
}

#topnav{
text-align:right;
padding:0 5px 0 0;
font-size: 0.7em;


	}

#topnav ul {
margin-left: 0;
margin-bottom:0px;
padding-left: 0;
display: inline;
border: none;
} 
#topnav ul li {
margin-left: 0;
padding-left: 2px;
border: none;
list-style: none;
display: inline;
} 
#topnav a{
	  text-decoration:none;
      font-weight:300;
	  color: white;

	
}

#topnav a:link{
  color: white;
}

#topnav a:hover{
  color: #6699CC;

background: white;
}

#topnav a:visited{
  color: white;

  }



#search{
margin: 0 0 0 0;
/*(clear:right;*/
color: #ccc;
background-color: transparent;
text-align:right;
font-size: 0.7em;
padding: 0 0 1px 0;

/**** the padding above matches the nav menu (right) and gives 20px bottom padding too */
/**** I made it 20px to show you that this controls the entire div bottom padding *****/
}	
#search form{
	padding:0;
	margin:0;
}



/* ====================================================================
box layout
-------------------------------------------------------------------- */
#banner .columns-float
	{
	float				: left;
	width				: 99%;
	}
/* the relative positioning is required by IEs 5 + 6 (PC) - NN4 crashes if it sees them while other browsers don't seem to mind - hence the Caio hack */
#banner .column-one
	{
	width				: 70%;
	float				: left;
	}
#banner .column-two
	{
	width				: 30%;
	float				: right;
	}
#banner .box-footer
	{
	clear				: both;
	}
/* ====================================================================
box-clear requires all sorts of hackery because of the way the 
different browsers cope with clearing floats
see [#   #]
-------------------------------------------------------------------- */
.box-clear { clear: both; line-height: 0px; font-size: 1px; }
/* IE5 (mac) dealt with, now reset font-size for Geckos,
turn off for IE5 (PC) + OmniWeb and back on for IE6 (PC)
see [http://www.fu2k.org/alex/css/test/OmniWebInlineHack.mhtml] */
/*\*/
 .box-clear { font-size: medium; }
 .fake.box-clear { display: none; }
/* */
/* Turn off for Opera 6 and below */
html>body div.box-clear { display: none; }
/* And turn it back on again for good honest browsers
see [http://www.albin.net/CSS/OwenHack.html] */
head:first-child+body div.box-clear { display: block; }
/* ====================================================================
nn4clear is as its name suggests, only required for NN4 compatibility
If you don't need that you can remove both this rule and the
relevant div from the html
-------------------------------------------------------------------- */
.nn4clear { clear: both; line-height: 0px; font-size: 1px; }
/*/*/ .nn4clear { display: none; } /* */
/* ====================================================================
box styling
-------------------------------------------------------------------- */
#banner .box-wrap
	{
	padding				: 0px;
background-color: transparent;
color:white;
	}
banner .box-header
	{
	margin				: 0px;
	padding				: 12px;
background-color: transparent;
color:white;
	border				: none;
	}
#banner .box-footer
	{
	margin				: 0px;
	padding				: 0px;
background-color: transparent;
color:white;
	border				: none;
	}
#banner .column-one-content
	{
background-color: transparent;
color:white;
	}
#banner .column-two-content
	{
background-color: transparent;
color:white;
	}
#banner .column-three-content
	{
background-color: transparent;
color:white;
	}
#banner .column-one-content, #banner .column-two-content, #banner .column-three-content
	{
	margin				: 0px;
	padding				: 0px;
	border				: none;
	}
/* CSS HACK:  position:relative needed by IE6 otherwise the header and col 2 don't show up on initial rendering - they're there but you have to minimise the window or switch to another app and back to see the full effect. But IE5(pc) doesn't like it. And nor does NN4.
NB. the use of pos:rel has to go way beyond skin-deep - any nested element that needs a background colour appears to require to be be relatively positioned */ 
/*/*/
.box-wrap,  .columns-float, .column-one,  .column-two, .column-three, h2
	{ p\osition: relative; }
/* */