﻿/* Define the body style 
body {
    font-family:Arial;
}*/

#menunavigation {
	float:left;
	width: 180px;             /* LC width */
 	margin-left: -180px;  /*   navigation width */
/*	padding: 0px 0 0 10px;          LC padding */
/*	right: 180px;              LC fullwidth + CC padding */
/*
	background-color:lightblue;
	margin-top:-30px;
	clear:both;
	margin-top:-40px;
*/
	
}
		
/* We remove the margin, padding, and list style of UL and LI components */
.menuwrapper ul, .menuwrapper ul li{
    font-size:16px;
    margin:0;
    padding:0;
    list-style:none;
}

/* We apply background color and border bottom white and width to 150px */
.menuwrapper ul li{
    background-color:#7f95db;
    border-bottom:solid 1px white;
    width:150px;
	cursor:pointer;
	height:30px;
    background-color:pink;
}

/* 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:#6679e9;
    position:relative;
}

/* We apply the link style */
.menuwrapper ul a li{
/*
*/ 
    padding:5px 15px;
   color:#ffffff;
	font-weight:bold;
    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:150px;
    top:0px;
    display:block;
}

/* 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 a li{
    color:#454444;
    display:inline-block;
    width:120px;
}

/**** 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;
    left:150px;
    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{
    background:#86d3fa;
}

/* 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{
    background:#358ebc;
}

/* 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;
}

.menuwrapper #register
{
	font-size:20px;
	background:blue;
/*
	padding-top:15px;
	color:#00F;
*/
}

#menunavigation  a
{
	padding-top:20px;
}

.nav_button
{
	float:left;
	height: 30px;
    width: 160px;
	display:block;
    border-bottom:2px solid white;
	display:block;
	font-size:16px;
	color:blue;
	padding:5px 0 5px 15px;
/*
    background-color: #BCD2EE;
    border-radius: 40px;
   position: relative;
    transform: translateY(-50%);
*/
}

.norm_nav
{
    background-color: lightblue;
}

.reg_nav
{
	font-size:26px;
	background:blue;
	color:white;
}

.reg_nav_gala
{
	font-size:18px;
	background:blue;
	color:gold;
}

.system_nav
{
    background-color: orange;
}
