@charset "UTF-8";
/* CSS Document */

/* Menu button */
.menuOut {
	cursor:pointer; 
	margin:2px 2px 0 2px; 
	background-color:#E0EEE0; /* Button background color */
	color:#838B83; /* Text color */
	width:140px; 
	border:1px solid #838B83; /* Border color */
	padding:2px; 
	text-align:center; 
	font-weight:bold;
}
/* Hover menu button */
.menuOver {
	cursor:pointer; 
	margin:2px 2px 0 2px; 
	background-color:#C1CDC1; /* Hover button color */
	color:#838B83; /* Hover text color */
	width:140px; 
	border:1px solid #838B83; /* Hover border color */
	padding:2px; 
	text-align:center; 
	font-weight:bold;
}
/* All sub menu items */
.submenu {
	width:136px; 
	font-family:Verdana; 
	font-size:12px; 
	padding: 0 0 5px 10px; 
	background-color: #F0FFF0; /* Backgrond color for the sub menues */
	margin: 0 2px;
}
/* Sub menu link text */
.submenu a {
	color:#838B83; /* Text color for the sub menues */
	text-decoration:none; 
	font-weight:bold;
}
/* Sub menu hover link text */
.submenu a:hover {
	color:#838B83; /* Hover text color for the sub menues */
	text-decoration:none; 
	font-style:oblique; 
	font-weight:bold;
}

