/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

/*************** Menu Main ***************/

#main_menu {
	text-align: left;
	float: left;
	width: 200px;
/*	height: 100%;*/
}

#main_menu ul {
	margin: 0;
	padding: 20px 20px 0 20px;
	list-style: none;
	line-height: normal;
}

#main_menu li {
	display: inline;
}

#main_menu a {
	display: block;
/*	padding: 2px 4px;*/
	text-decoration: none;
	font-size: 9px;
	font-weight: bold;
	color: #555555;
	text-transform: uppercase;

	background: url(../images/menu_unselected.gif) no-repeat left center;
	margin-bottom: 10px;
	margin-left: 25px;

	text-indent: 10px;
}

#main_menu a:hover {
	font-weight: bold;
	text-decoration: none;
	background: url(../images/menu_selected.gif) no-repeat left center;
}

#main_menu #current a{ /*currently selected tab*/
	font-weight: bold;
	text-decoration: none;
	background: url(../images/menu_selected.gif) no-repeat left center;
}


/*************** Menu Sub ***************/

#sub_menu{
	margin: 0;
	padding: 0;
	width: 100%;
	background: transparent;
}

#sub_menu ul{
	float: left;
	font: bold 11px Verdana;
	margin:0;
	margin-right: 40px; /*margin between first menu item and left browser edge*/
	padding: 0;
	list-style: none;
}

#sub_menu li{
	display: inline;
	margin: 0 2px 0 0;
	padding: 0;
}

#sub_menu a{
	float: left;
	display: block;
	font: bold 12px verdana;
	color: #525252;
	text-decoration: none;
	margin: 0 1px 0 0; /*Margin between each menu item*/
	padding: 5px 20px;
	font-weight: normal; 
}

#sub_menu a:hover{
	color: #525252;
	text-decoration: none;
}

#sub_menu #current a{ /*currently selected tab*/
	font-weight: bold; 
	color: #525252;
}


