/*  menu.php CSS */
/**
 * horizontal navigation (SO)
 */
 #navbar {
 	/*width: 996px;*/
 	text-align: center;
 }
 
/* Targeting both first and second level menus */
ul#nav { 
	width: 100%;
	background-color: #FBF193;
    display: inline-block;
    list-style-type: none; 
    white-space: nowrap;
	position: relative;
	padding: 0px;
}
ul#nav li { 
    float: left; 
    font-family: Open Sans, Helvetica, Arial, sans-serif;  
    font-weight: bold; 
    margin: 0;
	padding: 1px;
}
#nav li a {
	font-family: Open Sans, Helvetica, Arial, sans-serif;
	font-size: 1em;
	color: #A09314;	
    display: block;
    padding: 2px 15px;   /* Top padding  |  Right padding */
    text-decoration: none;
	text-align: center;
}
#nav li a:hover {
	background-color: #A09314;
	color: #FBF193;
}

/* Targeting the first level menu */
#nav {
	top: -15px;
	text-align: left;
	left: 0px;
	height: 25px;	
	/*max-width: 996px;*/
	background: #A09314;	
	display: block;
	z-index: 100;  
}

/* Targeting the second level menu */
#nav li ul {
    color: #333;
    display: none;
    position: absolute; 
}
#nav li ul li {
	text-align: left;
    display: inline-block;
}
#nav li ul li a {
	font-family: Open Sans, Helvetica, Arial, sans-serif;
	font-size: 1em;
    background: #fff;
    line-height: 25px;
    margin: 0;
    padding: 0 20px 0 15px;
}
#nav li ul li a:hover {
    background-color: #A09314;
    color: #FBF193;
}

/* A class of current will be added via jQuery */
#nav li.current > a {
    background: #f7f7f7;
    float:left;
}
/* CSS fallback */
#nav li:hover > ul.child {
    top: 25px;
	left: -40px;
    display: inline-block;
    position: absolute;
    text-align: left;
}
#nav li:hover > ul.grandchild  {
    display: block;
}

/* Main Menu Links values */
a.mainmenu:link
{
	color: #3D80CE;
	font-family: Open Sans, Helvetica, Arial, sans-serif;  
	font-size: 1em;
	font-weight: normal;
	text-align: center;
	text-decoration: none;
}
a.mainmenu:visited
{
	color: #3D80CE;	
	font-family: Open Sans, Helvetica, Arial, sans-serif;  
	font-size: 1em;
	font-weight: normal;	
	text-decoration: none;
}
a.mainmenu:hover
{	
	color: #D31919;
	font-family: Open Sans, Helvetica, Arial, sans-serif;  
	font-size: 1em;
	font-weight: normal;
	text-decoration: none;
}

/* Side Menu Links values */
a.sidemenu:link
{
	color: #3D80CE;
	font-family: Open Sans, Helvetica, Arial, sans-serif;  
	font-size: 1em;
	text-align: left;
	text-decoration: none;
}
a.sidemenu:visited
{
	color: #3D80CE;
	font-family: Open Sans, Helvetica, Arial, sans-serif;  
	font-size: 1em;
	text-decoration: none;
}
a.sidemenu:hover
{	
	color: #A09314;
	font-family: Open Sans, Helvetica, Arial, sans-serif;  
	font-size: 1em;
	text-decoration: none;
}
a.footmenu {
	font-family: Open Sans, Helvetica, Arial, sans-serif;
	color: #A09314;
	text-decoration:none;	
}
a.footmenu:hover {
	color: #A09314;
	text-decoration:none;
}
a.footmenu:visited {
	color: #A09314;
	text-decoration:none;	
}