/*
Theme Name: EzyReader
Author: Siddharth Pauhal
Author URI: https://twitter.com/sidpauhal

Css styling for the navigation menu
*/
.nav{background-color: #2e51a2;
    width: 1060px;
    height: 31px;
    margin: auto;}

.nav ul{z-index:100;	/* margin: 0; */
	list-style-type:none; margin:0; padding:0;
}

/*Top level list items*/
.nav ul li{    position: relative;
    display: inline;
    float: left;
    border-right: solid 1px darkgrey;}

/*Top level menu link items style*/
.nav ul li a{
cursor: pointer;
    float: left;
    display: inline;
    text-align: center;
    padding: 5px;
    text-decoration: none;
    position: relative !important;
    font-weight: 700;
    font-size: 12px;
}

.nav ul li.current-menu-item{background:indianred}
.nav ul li.current-menu-parent{background:indianred}



* html .nav ul li a{ /*IE6 hack to get sub menu links to behave correctly*/
display: inline-block; }

.nav ul li a:link, .nav ul li a:visited{
color:#fff; }

.nav ul li a.selected{ 
/*CSS class that's dynamically added to the currently active menu items' LI A element*/
color:#fff; }

.nav ul li a:hover{
/*background of menu items during onmouseover (hover state)*/
background-color:#118d78;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
	
/*1st sub level menu*/
.nav ul li ul{
position: absolute; left: 0;
margin-left:0px; display: none; /*collapse all sub menus to begin with*/
top:100%;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.nav ul li ul li{display: list-item; }

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.nav ul li ul li ul{top: 0; }

/* Sub level menu links style */
.nav ul li ul li a{
	text-align:left; width: 200px; /*width of sub menus*/
	padding: 6px; margin:0;
	font-size:12px;	border-top: 1px solid #333;	
background-color:indianred;
}

.nav ul li ul li a:hover{}
.nav ul li ul li ul li a{ color:#fff; margin-left:2px;}

.nav ul li ul li ul li a:hover{}

/* Holly Hack for IE \*/
* html .nav{height: 1%;} /*Holly Hack for IE7 and below*/

.nav ul ul ul{ left: 100%; top:0%; }
.nav ul li:hover > ul 	{ visibility: visible; display:block; }