/* USE THIS CSS FILE FOR MENUS AND FORMS ETC. */

/*-------------------------------------------------------------------------------- FORM ELEMENTS --*/

.form_style {
	font-family : 				verdana, Geneva, verdana, Helvetica, sans-serif;
	font-size : 				10px;
	font-style : 				normal;
	border : 					1px solid #78A4A4;
	width:						150px;
}

/*-------------------------------------------------------------------------------- MENU ELEMENTS --*/
.rightColumn {
	padding:					0 20px 0 20px;
}

a.leftNav {
	font-family : 				verdana; 
	color: 						#ffffff;
	font-size : 				10px; 
	text-decoration : 			none; 
	text-align: 				right;
	text-transform:				none;
}

a.leftNav:hover {
	color: 						#ffffff; 
	text-decoration : 			none; 
	text-align:					right;
	font-weight:				normal;
}
a.leftNav:visited {
	color: 						#ffffff; 
	text-decoration : 			none; 
	text-align:					right;
	font-weight:				normal;
}


.leftNavSubActive {
	font-family: 				verdana; 
	color: 						#ffffff; 
	text-decoration : 			none; 
	line-height: 				8pt;
	
}

a.leftNavSub {
	font-family: 				verdana; 
	color: 						#ffffff; 
	text-decoration: 			none; 
	line-height: 				8pt;
}
.leftNavPadding {
	padding-top:				4px;
	padding-bottom:				4px;

	
}

/*-------------------------------------------------------------------------------- TOOL TIPS --*/

a.info{
    position:					relative; /*this is the key*/
    z-index:					24; 
	background-color:			#D2E2E3;
    color:						#666;
    text-decoration:			none;
}

a.info:visited{
	background-color:			#D2E2E3;
    color:						#666;
    text-decoration:			none;
}

a.info:hover{
	z-index:					25; 
	background-color:			#e1e1e1;
    text-decoration:			none;
    color:						#666;
}

a.info span{
	display: 					none;
    text-decoration:			none;
    color:						#666;
}

a.info:hover span{ /*the span will display just on :hover state*/
    display:					block;
    position:					absolute;
    top:						20px; 
	left:						2px; 
	width:						320px;
    border: 					1px solid #78A4A4;
    background-color:			#D2E2E3;
    color:						#5A5A5A;
    padding: 					6px;
	margin-right: 				0px;
    text-decoration:			none;
}