@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(189, 22, 29, 0.9);
	display: none;
	left: 0;
	position: absolute;
	top: 100%;
	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:#138834;
}
/* 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:0 0 6px 6px;
	border-bottom:none !important;
}


/**************dropdown menu end********************/
