@charset "utf-8";
/* CSS Document */

A {
	text-decoration: none;
}
A:hover {
	text-decoration: underline;
	color:#CC0000;
}
:link { color:#008EB8 }
:visited { color:#993300 }
:active { color:#CC0000 }

.search input {
	background:#028CBA;
	color:#FFD900;
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	font-style: normal;
	font-weight: normal;
	border: 1px solid #028CBA;
	cursor:pointer;
}
li {
	margin-bottom: 6px;
	margin-top: 6px;
}
body{
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	font-style: normal;
}
.normal {
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	font-style: normal;
	font-weight: normal;
	color: #566887;
	line-height: normal;
	margin: 10px;
}
.subheading {
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	font-style: normal;
	font-weight: bold;
	color: #566887;
	margin: 10px;
}
.pageheading {
	font-family: Arial, Helvetica, sans-serif;
	font-size: medium;
	font-style: normal;
	font-weight: bold;
	color: #566887;
	margin: 10px;
}
.pagemenu {
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	font-style: normal;
	font-weight: bold;
	margin: 10px;
}
ul.disc {
	list-style-type: disc;
	font-size: small;
	color: #566887;
}
td.bg{
	background-image:url(images/leftnavbg.jpg);
	background-repeat:no-repeat;
}
.smalltext {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 8pt;
	font-style: normal;
	font-weight: bold;
	color: #007B9F;
}
.greybg {
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	font-style: normal;
	font-weight: normal;
	background-color: #EAEAEA;
	text-align: left;
}
.darkgreybg {
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	font-style: normal;
	font-weight: normal;
	background-color: #DDDDDD;
	text-align: left;
}
/**************** Menu coding *****************/

/**Side menu**/
#Hmenu {
width: 172px;
background: ;
font-size: small;
font-family: Arial, Helvetica, sans-serif;
font-style: normal;
font-weight: bold;
}
#Hmenu ul {
list-style: none;
margin: 0;
padding: 0;
}
#Hmenu a {
color: #DFE4EC;
display: block;
margin: 0;
padding: 7px;
text-decoration: none;
border-top-width: 0px;
border-right-width: 0px;
border-bottom-width: 1px;
border-left-width: 0px;
border-bottom-style: solid;
border-bottom-color: #DDDDDD;
}
#Hmenu a:hover {
color: #FFFFFF;
background: #96A7BA;
cursor: pointer;
}
#Hmenu li {
position: relative;
margin-bottom: 0px;
margin-top: 0px;
}
#Hmenu ul ul ul {
position: absolute;
top: 0;
left: 100%;
width: 100%;
}
div#Hmenu ul ul ul,
div#Hmenu ul ul li:hover ul ul{
display: none;
background: #3993B8;
}
div#Hmenu ul ul li:hover ul,
div#Hmenu ul ul ul li:hover ul
{display: block;}

/**Top menu**/
#Vmenu {
font-family: Arial, Helvetica, sans-serif;
font-size: small;
font-style: normal;
font-weight: normal;
width: 100%;
text-align: center;
float:left;
}
#Vmenu ul {
list-style: none;
margin: 0;
padding: 0;
width: 9em;
float: left;
border-right-width: 1px;
border-right-style: solid;
border-right-color: #DDDDDD;
}
#Vmenu a {
color: #008EB8;
display: block;
margin: 0;
text-decoration: none;
padding:6px 5px;
white-space:normal;
}
#Vmenu a:hover {
color: #CC0000;
cursor: pointer;
}
#Vmenu li {
position: relative;
margin-bottom: 0px;
margin-top: 0px;
}
#Vmenu ul ul ul {
text-align: left;
position: absolute;
top: 100%;
left: 0;
width: 100%;
z-index: 500;
}
div#Vmenu ul ul ul,
div#Vmenu ul ul li:hover ul ul{
display: none;
background-color: #FFFFFF;
}
div#Vmenu ul ul li:hover ul,
div#Vmenu ul ul ul li:hover ul{
display: block;
border: 1px solid #CCCCCC;
}
.navtreehead {
	font-family: Arial, Helvetica, sans-serif;
	font-size: x-small;
	font-style: normal;
	font-weight: normal;
	color: #008EB8;
	line-height: normal;
	margin-left: 10px;
}
.navtree {
	font-family: Arial, Helvetica, sans-serif;
	font-size: x-small;
	font-style: normal;
	font-weight: normal;
	color: #777777;
	line-height: normal;
}
.plain {
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	font-style: normal;
	font-weight: normal;
	color: #000000;
	line-height: normal;
}
.blacktext {
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	font-style: normal;
	font-weight: normal;
	color: #000000;
	line-height: normal;
	margin: 10px;
}

/************** Pop up Balloons ***************/
.balloon{
	position: relative;
	z-index: 0;
}

.balloon span{
	position: absolute;
	background: #DFE4EC;
	padding: 5px;
	border: 1px dotted black;
	display: none;
	color: black;
	text-decoration: none;
	height: auto;
	width: 450px;
	text-align: left;
	z-index: 1;
}

.balloon:hover span{ 
	display: block;
	top: 0;
	left: 180px; /*offset position horizontally */
}