/***********************************************/
/* Color Palette			                   */
/***********************************************/

body, h2, h4 {
	color: *333333;						/* light charcoal */
}

h1, h3, h5, label {
 	color: #334d55;						/* not sure? */
}

a:link, a:visited, #breadCrumb, #breadCrumb a {
	color: #005FA9;						/* teal */
}

#siteName, #pageName h2, a.glink, a.glink:visited, #search input {
	color: #111111;  					/* dark charcoal */
}

#utility, #siteInfo, .subglobalNav, .subglobalNav a:link,
    .subglobalNav a:visited, .subglovalNav a:hover {
	color: #919999;						/* medium gray with touch of blue */
}

.admin, a.admin {
	color: red;
}

.highlight {
	color: #000000;						/* true black */
	background-color: yellow;
}

/***********************************************/
/* HTML tag styles                             */
/***********************************************/

/******* hyperlink and anchor tag styles *******/

a:link, a:visited{
	text-decoration: none;
}

a:hover{
	text-decoration: underline;
}

/************** header tag styles **************/

h1{
	font: bold 200% Arial,sans-serif;
	margin: 0px;
	padding: 0px 0px 5px 0px;
}

h2{
	font: bold 150% Arial,sans-serif;
	margin: 0px;
	padding: 0px 0px 0px 0px;
}

h3{
	font: bold 125% Arial,sans-serif;
	margin: 0px;
	padding: 10px 0px 5px 0px;
}

h4{
	font: 100% Arial,sans-serif;
	margin: 0px;
	padding: 0px;
}

h5{
	font: 100% Arial,sans-serif;
	margin: 0px;
	padding: 0px;
}

ul {
	margin-left: 18px;  /* both values needed to achieve consistent cross-browser results */
	padding-left: 0;
}


/********* form and related tag styles *********/

form{
	margin: 0;
	padding: 0;
}

label{
	font: bold 1em Arial,sans-serif;
}
				
input{
	font-family: Arial,sans-serif;
}


body{
	font-family: Arial,sans-serif;
	line-height: 1.166;	
	margin: 0px;
	padding: 0px;
	overflow:scroll;		/* fudge to always keep scrollbar */  
	height:100.01%;			/* fudge to always keep scrollbar */
}


/* table styles                               */

table{
	width:100%;
	padding: 0px 0px 0px 2px;
	border-spacing: 0px;
}

td{
	padding: 2px 2px 2px 0px;
	vertical-align: top;	
}

tr#even{
	background-color: #EEEEEE;
}

tr#odd{
	background-color: #FFFFFF;
}

tr#header{
	padding: 10px 2px 10px 0px;
}

tr#header a{
	display: block;
	color: black;
}

tr#header a:hover{
	background-color: #cadceb;  /* light greyish blue */
	text-decoration: none;
}


/***********************************************/
/* Layout Divs                                 */
/***********************************************/

#masthead{
	position: absolute;
	width: 800px;
	left: 50%;
	margin-left: -400px;
}

#container{
	position:absolute;
	width: 800px;
	left: 50%;
	margin-left: -400px;
	top: 112px;	
	padding: 0px;
}

#maincell {
	float:left;
	clear:left;
	width: 580px;
	padding: 10px;
	background: url(images/maincell_bg1.gif) repeat-x;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
}


.rightcell {
	float:right;
	clear:right;
	width:180px;
}

.rightcell h2 {
	font-size: small;
	margin: 0px;
	padding: 10px 7px 5px 10px;
	background-image: url(images/glbnav_background.gif);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    -webkit-border-top-left-radius: 15px;
    -webkit-border-top-right-radius: 15px;
    -moz-border-radius-topleft: 15px;
    -moz-border-radius-topright: 15px;
}

.rightcell a{
	display:block;
	font-size: 80%;
	padding: 5px 0px 5px 0px;
	border-bottom: 1px solid #DDDDDD;
}

.rightcell_body {
	margin: 0px 0px 20px 0px;
	padding: 0px 10px 0px 10px;
	border: 2px solid #DDDDDD;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    -webkit-border-bottom-left-radius: 15px;
    -webkit-border-bottom-right-radius: 15px;
    -moz-border-radius-bottomleft: 15px;
    -moz-border-radius-bottomright: 15px;
}


/***********************************************/
/* Component Divs                              */
/***********************************************/


.blurb{
	padding: 0px 5px 10px 5px;
	font-size: 80%;
}

.notification{
	padding: 0px 5px 10px 5px;
}


.column-left{
	width: 275px;
	padding-right: 10px;
	display: block;
	float: left;
}

.column-right{
	width: 275px;
	padding-left: 10px;
	display: block;
	float: right;
}

#siteName {
	/*position: absolute;
	top: 14px;
	left: 70px;*/
	padding: 18px 0px 12px 70px;
	font-weight: normal;
}

#siteLogo {
	position: absolute;
	/*display: inline;*/
	top: 10px;
	left: 0px;
}

img {
	border: 0px;	/* overrides Firefox's default border */
}


/************** utility styles *****************/

#utility{
	font-size: 80%;
	position: absolute;
	top: 20px;
	right: 0px;
}

/*#utility a:hover{
	text-decoration: underline;
}*/

/************** pageName styles ****************/

#pageName{
	padding: 0px 0px 14px 5px;
	margin: 0px;
	border-bottom:1px solid #ccd2d2;
}

#pageName h2{
	margin:0px;
	padding: 0px;
}


/************* NAVBAR STYLES ****************/

#globalNav{
	position:relative;
	color: #cccccc;
	padding: 0px 7px 0px 7px;
    height: 30px;
	background-image: url(images/glbnav_background.gif);
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
}

#globalLink {
	position: absolute;
	top: 8px;
	padding: 0px;
	margin: 0px;
	left: 10px;
}

a.glink, a.glink:visited {
  	font-size: small;
	font-weight: bold;
	margin: 0px;
	padding: 2px 5px 4px 5px;
	border-right: 1px solid #8FB8BC;
}

a.glink:hover {
  	background-image: url(images/glblnav_selected.gif);
	text-decoration: none;
}

.subglobalNav {
	position: fixed;
	top: 76px;
	width: 800px;
	left: 50%;
	margin-left: -400px;
	height: 30px;
	padding: 10px 0px 0px 10px;
	vertical-align: bottom;
	/* border: medium double rgb(0,255,255); */
}

.subglobalNav a:link, .subglobalNav a:visited, .subglovalNav a:hover {
	font-size: 80%;
}

#globalNav ul, #globalNav li {
		list-style:none;
		display:inline;
		margin:0;
		padding:0;
		/*	border: medium double rgb(250,0,255); */
}

/* this CSS causes the tree to hover with specificity */
	
#globalNav ul ul, #globalNav li:hover ul ul {
		display:none;
	}

#globalNav li:hover ul, #globalNav li:hover li:hover ul {
		display:inline;
	}		



/*************** search styles *****************/

#search{
	position: absolute;
	top: 9px;
	right: 10px;
	z-index: 101;
}

#search input{
	font-size: 70%;
	margin: 0px 0px 0px 10px;
    padding: 2px 5px 2px 5px;
    border: none;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
 }



/************* breadCrumb styles ***************/

#breadCrumb{
	padding: 5px 0px 5px 0px;
	font-size: 80%;
	font-weight: bold;
}

/************** siteInfo styles ****************/

#siteInfo{
	clear: both;
	font-size: small;
	padding: 10px 10px 10px 10px;
	margin-top: 0px;
	z-index:500;
}

#siteInfo img{
	padding: 4px 4px 4px 0px;
	vertical-align: middle;
}

