
.ddsmoothmenu{

font-size:22px;
color:#fff;
width: 1050px;
z-index: 49;
position:relative;

}

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

ul.dropdown > li > a{
}

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

background-repeat:repeat-x; 


}

/*Top level menu link items style*/
.ddsmoothmenu ul li a{
	color:#7c5d4e;
	display: block;
	text-decoration: none;
	padding: 7px 7px 5px 5px;
	margin-top: 0px;
	font-size:13px;
	text-align:center;
	height: 24px;
	
	text-transform: uppercase;
}


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



.ddsmoothmenu ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
/*background: #07067b; /*background of menu items during onmouseover (hover state)*/
	color: #c4232d;
	border-top: 1px solid #09366b;
	padding-top: 4px;
}

/* Top navigation HOVER*/
.ddsmoothmenu ul li a:hover{
	color: #88b12d !important;
}
	
/*1st sub level menu*/
.ddsmoothmenu ul li ul{
	position: absolute;
	left: -15px !important;
	
	/**display: none; /*collapse all sub menus to begin with*/
	visibility: hidden;
	top: 45px !important; 
	padding: 0px;
	padding-top: 8px;
	width: 180px;
	
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: top center;

}

.ddsmoothmenu ul li:hover ul{
	display: block;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.ddsmoothmenu ul li ul li{
	display: list-item;
	float: none;
	width: 100%;
	background-color:  #fff;
	
}


.ddsmoothmenu ul li:hover ul{
	display: block;
}

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

/* Sub level menu links style */
.ddsmoothmenu ul li ul li a{
font-size:16px;
width: 95%; /*width of sub menus*/
padding: 10px;
margin: 0;

text-align:center;
margin-right:0px;
padding-right:0px;
text-transform:lowercase;
text-transform:capitalize;
height: auto;
color: #7c5d4e;
text-align: left;

/*text-indent: 10px;*/
}

.ddsmoothmenu ul li ul li:last-child a{
	border-bottom: none;	
}

.ddsmoothmenu ul li ul li a:hover{
	color:#FFF !important;
	background-color: #C0CB58; 
	
	-webkit-transition: all 0.2;
	-moz-transition: all 0.2;
	-o-transition: all 0.2;
	transition: all 0.2;
}

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


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

.downarrowclass{
	display: none;
}

.rightarrowclass{
position: absolute;
top: 7px;
right: 5px;
}

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

.ddshadow{
position: absolute;
left: 0;
top: 0;
width: 0;
height: 0;

}

.toplevelshadow{ /*shadow opacity. Doesn't work in IE*/
opacity: 0.8;
}


