@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-top:20px;
	width:205px;
	padding-bottom:10px;
	cursor:pointer;
	text-align:center;

}

.dropdown ul.sub{
	
		background-color:#1a181d;
		padding-top:10px;
		padding-bottom:10px;


		
		
	}
.dropdown ul.sub a{
	width:205px;

	color:#fff;
	height:20px;
	font-size:16px;
	font-weight:bold;
}

.dropdown ul.sub a:hover{
	text-decoration:underline;
	}

/* 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{
	margin-top:20px;
	!margin-top:-15px;
	}
	
	