/* CSS Document */
/* My Menu */
/*--TOP LEVEL--*/
ul.topnav {
	list-style: none;
	margin: 0 0 0 0;
	float: left;
	width: 680px;
	background: rgb(115, 115, 115);
	font-size: 11px;
	font-weight:bold;
}
ul.topnav li {
	float: left;
	position: relative; /*--Declare X and Y axis base for sub navigation--*/
	text-align:center;
}
ul.topnav li a{
	float: left;
	padding:5px 0 5px 0;
	color: #fff;
	display: block;
	text-decoration: none;
	width:97px; /* 85 */
}
ul.topnav li a:hover{
	background: rgb(170, 0, 0);
}
ul.topnav li.subhover { /*--Hover effect for trigger--*/
	background: rgb(170, 0, 0);
	cursor: pointer; 
} 
/*--SUB LEVEL--*/
ul.topnav li ul.subnav {
	float: left;
	list-style: none;
	position: absolute; /*--Important - Keeps subnav from affecting main navigation flow--*/
	left: 0; top: 23px;
	background: rgb(0, 161, 228);
	margin: 0; padding: 0;
	display: none;
	width: 140px;
}
ul.topnav li ul.subnav li{
	margin: 0; 
	padding: 0;
	width: 100%;
	clear: both;
	text-align:left;
}
ul.topnav li ul.subnav li a {
	float: left;
	padding: 5px 0 5px 10px;
	width: 100%;
	background: rgb(170, 0, 0);
}
ul.topnav li ul.subnav li a:hover { /*--Hover effect for subnav links--*/
	background: rgb(33, 33, 33);
}

/* TOOLTIP */
.tooltip {
	display:none;
	height:15px;
	width:80px;
	padding:5px;
	color:#fff;	
	background:#000;
	text-align:center;
	font-weight:bold;
}

/* My Modal */
.simplemodal {display:none;}
.simplemodal-title {background:rgb(158, 207, 228);color:rgb(0, 161, 228);font-size:14px;font-weight:bold;padding:5px;}
.simplemodal-data {color:#000;}
#simplemodal-overlay {background-color:#000;}
#simplemodal-container {background-color:#fff; border:6px solid rgb(89, 89, 89); padding:0px;}
#simplemodal-container a.modalCloseImg {background:url(../images/x.png) no-repeat;width:25px;height:29px;display:inline;z-index:3200;position:absolute;top:-15px;right:-18px;cursor:pointer;}