/* ===========Realsofteck NAVIGATION============== */
.ddsmoothmenu{
	 /*background of menu bar (default state)*/
	font-family: 'Exo', sans-serif;
	font-size:15px;
	font-weight:normal;
	width: 100%;
}

.ddsmoothmenu ul{
z-index:10000;
margin: 0;
padding: 0;
list-style-type: none;
float:right;
}

/*Top level list items*/
.ddsmoothmenu ul li{
position: relative;
display: inline;
float: left;
}

/*Top level menu link items style*/
.ddsmoothmenu ul li a{
display: block;
background:none; /*background of menu items (default state)*/
color:#454545;
padding:0px 5px !important;
height:120px;
margin:0px;
line-height:120px;
text-decoration: none;
text-transform:capitalize;
}
.ddsmoothmenu ul li a .nav-link-help{
	font:normal 11px 'Exo', sans-serif;
	color:#999;
	display:block;
	padding:0 0 0 0;
	margin-top:-5px;
}

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

.ddsmoothmenu ul li a:link, .ddsmoothmenu ul li a:visited{
color:#454545;
}

.ddsmoothmenu ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
	background: #faa21b;
	color: #fff;
	border-bottom:2px solid #996527;
	text-shadow: 1px 0px 1px #666;
/*	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px; */
	behavior: url(PIE.htc);
}

.ddsmoothmenu ul li a:hover{
	background: #fff1dc; /*background of menu items during onmouseover (hover state)*/
	color: #444;
	border-bottom:2px solid #996527;
	/* -webkit-border-radius: 3px;
	-moz-border-radius:  3px;
	border-radius:  3px ;
	behavior: url(PIE.htc); */
	z-index:10000;
	-moz-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    -webkit-transition: all 1s ease-out;
    transition: all 1s ease-out;   
	behavior: url(PIE.htc);
}
	
/*1st sub level menu*/
.ddsmoothmenu ul li ul{
	position: absolute;
	left: 0;
	display: none; /*collapse all sub menus to begin with*/
	visibility: hidden;
	margin-top:0px;
	z-index:10000;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.ddsmoothmenu ul li ul li{
	display: list-item;
	float: none;
	border:1px solid #bbb;
	border-top:none;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.ddsmoothmenu ul li ul li ul{
	top: 0;
	margin:0px 0 0 0;
	z-index:10000;
}

/* Sub level menu links style */
.ddsmoothmenu ul li ul li a{
	font-family: 'Exo', sans-serif;
	font-size:13px;
	font-weight:normal;
	color:#fff;
	width:190px;; /*width of sub menus*/
	height:30px;
	line-height:18px;
	padding:7px !important;
	margin: 0;
	background:#fff;
	border:1px solid #eee;
	border-top-width: 0;
	border-bottom: 1px solid #eee;
	-webkit-border-radius: 0;
	-moz-border-radius:  0;
	border-radius:  0 ;
	behavior: url(PIE.htc);
	z-index:1;
}
.ddsmoothmenu ul li ul li a:hover, .ddsmoothmenu ul li ul li a.selected{
	width:190px; /*width of sub menus*/
	height:30px;
	line-height:18px;
	padding:7px;
	margin: 0;
	background:#fff4e3;
	border:1px solid #ccc;
	border-top-width: 0;
	border-bottom: 1px solid #ccc;
	-webkit-border-radius: 0;
	-moz-border-radius:  0;
	border-radius:  0 ;
	behavior: url(PIE.htc);
	z-index:10000;
}

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


/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass{
	position: absolute;
	top: 22px;
	right: 12px;
	display:none;
}

.rightarrowclass{
	position: absolute;
	top:10px;
	right:8px;
	display:none;
}

/* ######### CSS for shadow added to sub menus  ######### */

.ddshadow{ /*shadow for NON CSS3 capable browsers*/
position: absolute;
left: 0;
top: 0;
width: 0;
height: 0;
background: silver;
}

.toplevelshadow{ /*shadow opacity for NON CSS3 capable browsers. Doesn't work in IE*/
opacity: 0.8;
}