﻿@import url(https://fonts.googleapis.com/css?family=Lato' rel='stylesheet);
/* We remove the margin, padding, and list style of UL and LI components */
#menuwrapper ul, #menuwrapper ul li{
    margin:0;
    padding:0;
    list-style:none;
}

/* We apply background color and border bottom white and width to 150px */
#menuwrapper ul li{
    background-color:#FF7800;
    border-top: solid 1px #990000;
    width: 250px;
	cursor: pointer;	
}

/* 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{
    background-color:#990100;
    position: relative;
	color: #FF7101;
}

/* We apply the link style */
#menuwrapper ul li a{
    padding: 12px 15px;
    color: #fff;
	font-size: 14px;
	letter-spacing: 0.8px;
	font-family: 'Lato', sans-serif;
    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 */
#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.  */
/* for IE < 9 we using class .iehover */
#menuwrapper ul li:hover ul, 
#menuwrapper ul li.iehover ul{
    left:250px;
    top: 0px;
    display: block;
}
.arrow {
	float: left;
	max-width: 8px;
	margin-right: 10px;
	margin-top: 2px;
}
/* we apply different background color to 2nd level menu items*/
#menuwrapper ul li ul li{
    background-color: #cae25a;
}

/* 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-color: #b1b536;
}

/* We style the color of level 2 links */
#menuwrapper ul li ul li a {
    color: #000;
    display: inline-block;
    width: 240px;
	font-size: 13px;
    position: relative !important;
    z-index: 999 !important;
}