﻿
/* We remove the margin, padding, and list style of UL and LI components */
#menuwrapper p{
	padding:0px;
	margin:0px;
	height:38px;
	line-height:38px;
	background: #f20000;
}

#menuwrapper p span{
	display:inline-block;
	width:100%;
	text-transform:uppercase;
	color:#fff;
	font-size:16px;
	font-family:"OpenSans_Bold";	
	background:url(../img/icon_mnr.png) no-repeat center left 12px;
	padding-left:40px;
}

#menuwrapper ul{
	width:100%;
	padding:0px;	
	margin:0px;
	border-top:0px;
	background:#0099DA;
}

#menuwrapper ul, #menuwrapper ul li{
    margin:0;
    padding:0;
    list-style:none;
}

#menuwrapper ul li span{
    padding-right:5px;
	color:#91be1e;
}

/* We apply background color and border bottom white and width to 150px */
#menuwrapper ul li{
    width:100%;
	height:38px;
	line-height:38px;
	cursor:pointer;
	border-bottom:1px solid #fff;
}

#menuwrapper ul li.li_ser{
    width:97%;
    height: auto;
    line-height: 20px;
    padding: 10px 5px;
    margin-left: 15px;
}


#menuwrapper ul li.li_ser::before {
  content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: #fff; /* Change the color */
  font-weight: bold; /* If you want it to be bold */
  display: inline-block; /* Needed to add space between the bullet and the text */
  width: 1em; /* Also needed for space (tweak if needed) */
  margin-left: -1em; /* Also needed for space (tweak if needed) */
}

#menuwrapper ul li.li_ser a{
    padding-left: 0px;
}

#menuwrapper ul li:nth-last-child(1){
    border-bottom:0px;
}


/* We apply the background hover color when user hover the mouse over of the li component */
/* for IE < 9 we using class .iehover */
#menuwrapper ul li:hover,
#menuwrapper ul li.iehover{
    position:relative;
	z-index: 1000;
}

#menuwrapper ul li:hover a,
#menuwrapper ul li.iehover a{
	color:#ff0000;
	text-decoration:none;
}


/* We apply the link style */
#menuwrapper ul li a{
	color:#fff;
	font-size:13px;	
	padding-left:15px;
	text-transform:uppercase;
	font-weight:600;	
}

/**** SECOND LEVEL MENU ****/
/* We make the position to absolute for flyout menu and hidden the ul until the user hover the parent li item */
#menuwrapper ul li ul{
    position:absolute;
    display:none;
	background:#0099DA;
}

/* When user has hovered the li item, we show the ul list by applying display:block, note: 150px is the individual menu width.  */
/* for IE < 9 we using class .iehover */
#menuwrapper ul li:hover ul, 
#menuwrapper ul li.iehover ul{
    right:100%;
    top:0px;
    display:block;
}

/* we apply different background color to 2nd level menu items*/
#menuwrapper ul li ul li{
	width:100%;
	margin:0px;
	background:none;
}

/* We change the background color for the level 2 submenu when hovering the menu */
/* for IE < 9 we using class .iehover */
#menuwrapper ul li:hover ul li:hover,
#menuwrapper ul li.iehover ul li.iehover{
    background-position:center;
}

/* We style the color of level 2 links */
#menuwrapper ul li ul li a{
	display:inline-block;
	width:270px;
    color:#fff!important;
}

#menuwrapper ul li ul li a:hover{
    color:#ff0000!important;
}

/**** THIRD LEVEL MENU ****/
/* We need to hide the 3rd menu, when hovering the first level menu */
/* for IE < 9 we using class .iehover */
#menuwrapper ul li:hover ul li ul,
#menuwrapper ul li.iehover ul li ul{
    position:absolute;
    display:none;
}

/* We show the third level menu only when they hover the second level menu parent */
/* for IE < 9 we using class .iehover */
#menuwrapper ul li:hover ul li:hover ul,
#menuwrapper ul li.iehover ul li.iehover ul{
    display:block;
    right:100%;
    top:0;
}

/* We change the background color for the level 3 submenu*/
/* for IE < 9 we using class .iehover */
#menuwrapper ul li:hover ul li:hover ul li,
#menuwrapper ul li.iehover ul li.iehover ul li{
   

}

/* We change the background color for the level 3 submenu when hovering the menu */
/* for IE < 9 we using class .iehover */
#menuwrapper ul li:hover ul li:hover ul li:hover,
#menuwrapper ul li.iehover ul li.iehover ul li.iehover{
     

}

/* We change the level 3 link color */
/* for IE < 9 we using class .iehover */
#menuwrapper ul li:hover ul li:hover ul li a,
#menuwrapper ul li.iehover ul li.iehover ul li a{
    color:#ffffff;
}

/* Clear float */
.clear{
    clear:both;
}