@charset "utf-8";

/* CSS Document */



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





 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)*/

        }

/* Building menu items - for 2nd and more level menu items*/

ul.cssMenu ul {

  background-color: rgba(17, 122, 177, 0.9);

  display: none;

  left: 0;

  position: absolute;

  top: 40px;

  width: 16em;

  z-index: 9999;

}



ul.cssMenu ul li {

	width: 99%;

	margin-left:0;

	padding:0;

}

ul.cssMenu ul li a {

  border-bottom: 1px solid #4a708e;

  border-radius: 0;

  border-right: none;

  color: #fff;

  padding: 8px;

}



ul.cssMenu ul li a:hover {

  color: #C51E32;

}



ul.cssMenu li:hover > ul li a {

	display: block;

}

ul.cssMenu li ul li:hover {

	background:none;

}

/* Menu item position for 3rd level and more */

        ul.cssMenu ul ul {

	left: 95%;

	top: 0;

}



ul.cssMenu ul li ul li a {

  border-bottom: 1px solid #4a708e;

  border-radius: 0;

  border-right: none;

  color: #fff;

  padding: 8px;

}

/* Hover effect for menu*/

        ul.cssMenu li:hover > ul {

	display:block;

}





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