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



/***********dropdown menu start***********/

.clear {
	clear: both;
}
ul.cssMenu, ul.cssMenu ul {
	list-style: none;
	margin: 0;
}
/*Style for 1st level menu header*/

ul.cssMenu li {
	position: relative;
	zoom: 1; /*Needed for IE*//*background color of menu header (1st level)*/
	margin: 0;
}
/* Building menu items - for 2nd and more level menu items*/

ul.cssMenu ul {
	background-color: rgba(0, 0, 0, 0.8);
	display: none;
	left: 0;
	position: absolute;
	top: 55px;
	width: 16em;
	z-index: 9999;
}
ul.cssMenu ul li {
	width: 99%;
	margin-left: 0;
	padding: 0;
}
ul.cssMenu ul li a {
	border-right: none;
	padding: 8px 20px;
	border-radius: 0;
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
ul.cssMenu li:hover > ul li a {
	display: block;
}
ul.cssMenu li ul li:hover {
	background: #af5d8b;
}
/* Menu item position for 3rd level and more */

ul.cssMenu ul ul {
	left: 100%;
	top: 0;
}
/* Hover effect for menu*/

ul.cssMenu li:hover > ul {
	display: block;
}
ul.cssMenu li ul li:last-child a {
	border-radius: 0px;
	border-bottom: none !important;
}





/**************dropdown menu end********************/
