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

/* this is the main UL element*/

.dropdown{
	margin:0;
	padding:0;
	list-style:none;

}

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0;
	list-style:none;	
}

/* these are all the LIs in the menu*/
.main_b{
	text-align:center;
	width:120px;
	padding:20px 0px 0px 0px;
	}
.dropdown ul.sub li{
	margin:0;
	width:246px;
	cursor:pointer;
	text-align:left;
	
}

.dropdown ul.sub{

		background-color:#a3d883;
	
	}
.dropdown ul.sub a{
	
	width:236px;
	color:#003932;
	height:17px;
	padding-top:1px;
	padding-bottom:1px;
	font-size:12px;
	font-weight:bold;
	display:block;
	padding-left:10px;
	border-bottom:1px solid #65b313;
}

.dropdown ul.sub a:hover{
	background-color:#19582a;
	color:#bde7b3;
	}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a{
	text-decoration:none;

}

.dropdown a:hover{
	
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{

	margin-left:-1px;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu{
	padding-left:0px;
	width:120px;
	_width:100px;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown ul li.submenu{
	padding:0px;
	width:120px;
	_width:100px;
}

.dropdown .sub{

	}
	
	