/* Define the body style */
body {
    font-family:Arial;
    font-size:12px;
}

/* We remove the margin, padding, and list style of UL and LI components */
#wrap .container .sidebar1 #sideMenu #menuwrapper ul, #wrap .container .sidebar1 #sideMenu #menuwrapper ul li{
	margin:0;
	padding:0;
	list-style:none;
	font-size: 14px;
}

/* We apply background color and border bottom white and width to 150px */
#wrap .container .sidebar1 #sideMenu #menuwrapper ul li{
	background-color:#28538e;
	border-bottom:solid 1px white;
	width:260px;
	cursor:pointer;
	display: block;
	height: 30px;
}

/* We apply the background hover color when user hover the mouse over of the li component */
#wrap .container .sidebar1 #sideMenu #menuwrapper ul li:hover{
	background-color:#e49600;
	position:relative;
}

/* We apply the link style */
#wrap .container .sidebar1 #sideMenu #menuwrapper ul li a{
    padding:5px 15px;
    color:#ffffff;
    display:inline-block;
    text-decoration:none;
}

/**** SECOND LEVEL MENU ****/
/* We make the position to absolute for flyout menu and hidden the ul until the user hover the parent li item */
#wrap .container .sidebar1 #sideMenu #menuwrapper ul li ul{
    position:absolute;
    display:none;
}

/* When user has hovered the li item, we show the ul list by applying display:block, note: 150px is the individual menu width.  */
#wrap .container .sidebar1 #sideMenu #menuwrapper ul li:hover ul{
	left:260px;
	top:0px;
	display:block;
		z-index: 999;
    position:absolute;
}

/* we apply different background color to 2nd level menu items*/
#wrap .container .sidebar1 #sideMenu #menuwrapper ul li ul li{
	background-color:#28538e;
	display: block;
	white-space: nowrap;
	height: 30px;
	margin-left: 2px;
	border-bottom-width: 1px;
	border-bottom-style: double;
	border-bottom-color: #FFF;
}

/* We change the background color for the level 2 submenu when hovering the menu */
#wrap .container .sidebar1 #sideMenu #menuwrapper ul li:hover ul li:hover{
	background-color:#e49600;
	display: block;
	width: 260px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: white;
}

/* We style the color of level 2 links */
#wrap .container .sidebar1 #sideMenu #menuwrapper ul li ul li a{
	color:#color:#ffffff;;
	display:inherit;
	width:120px;
	float: none;
	height: 20px;
}

#wrap .container .sidebar1 #sideMenu #menuwrapper ul li:hover ul li:hover ul li:hover{
	background-color: #6679e9;
}

/* We change the level 3 link color */
#menuwrapper ul li:hover ul li:hover ul li a{
    color:#ffffff;
}

/* Clear float */
.clear{
    clear:both;
}
