/*************************************************************
Website master style sheet

When defining styles, for consistency,
use a similar order for definitions.

1. Display & Positioning (display, position, left, etc.)
2. Box model items (margin, padding, border, etc.)
3. Sizes (width, height) *Don't forget the box model hack
4. Appearance items (background, font, color, etc.)

If you want to apply scrollbar styles, here they are...

E2E2E2 = Pantone Cool Gray 1
D6D7D9 = Pantone Cool Gray 2
C9CACB = Pantone Cool Gray 3
BDBEC0 = Pantone Cool Gray 4
B2B3B5 = Pantone Cool Gray 5
B0B1B3 = Pantone Cool Gray 6
9FA0A4 = Pantone Cool Gray 7
929497 = Pantone Cool Gray 8
848589 = Pantone Cool Gray 9
707277 = Pantone Cool Gray 10
626469 = Pantone Cool Gray 11

scrollbar-face-color: #C9CACB; 
scrollbar-shadow-color: #C9CACB; 
scrollbar-highlight-color: #C9CACB;
scrollbar-3dlight-color: #E2E2E2; 
scrollbar-darkshadow-color: #B0B1B3; 
scrollbar-track-color: #E2E2E2;
scrollbar-arrow-color: #848589; 

*************************************************************/

/*************************************************************
General site wide styles
*************************************************************/

html, body 
{

	padding: 0;
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	min-height: 100%;
    height: 100%;
    margin: 0;
    padding:0;
    width:100%;
}

img 
{
	border: 0;
}

p 
{
	margin: 0;
	padding: 0;
	color:Black;
	font: 12px Verdana, Arial, Helvetica, sans-serif;
}

h1 
{
	margin-top: 1em;
	margin-bottom: 1em;
	font: bold 14px Verdana, Arial, Helvetica, sans-serif;
	color: #003D79;
}

.hide 
{
	display: none;
}

/*************************************************************
Form styles
*************************************************************/

input 
{
}

textarea 
{
	font: 12px Arial, Helvetica, sans-serif;
}

select, option 
{
}

/*************************************************************
Master div - contains all other site divs
*************************************************************/

#container 
{
	/*border-right: 1px solid #0F4781;*/
	width: 760px;
	height: 100%;
	min-height: 100%; 
	height: auto !important;
	position: relative;
    
}

/*************************************************************
Utility navigation
*************************************************************/

#nav_utility 
{
	padding-top: 5px;
	padding-left: 5px;
	width: 760px;
	height: 26px;
	voice-family: "\"}\"";
	voice-family: inherit;
	width: 755px;
	height: 21px;
	background: #0F4781 url(/images/bg_utility.gif) repeat-x bottom;
	font: 10px Arial, Helvetica, sans-serif;
	color: #fff;
}

#nav_utility a 
{
	color: #fff;
	text-decoration: none;
}

#nav_utility a:visited 
{
	color: #fff;
	text-decoration: none;
}

#nav_utility a:hover 
{
	color: #fff;
	text-decoration: underline;
}

/*************************************************************
Site footer - contains copyright and misc links
*************************************************************/

#footer 
{
	position: relative;
	clear: both;
	width: 760px;
	background: #FAFAFA url(/images/bg_dash_horizontal.gif) repeat-x;
	font: 10px Arial, Helvetica, sans-serif;
	color: #003066;
	text-align: right;
}

#footer p 
{
	display: block;
	padding: 8px;
	background: url(/images/bg_dash_horizontal.gif) repeat-x bottom;
}

#footer a 
{
	color: #003066;
}