.ddsmoothmenu {
	float:right;
	height:36px;
	margin:30px 20px 0 0;
}
.ddsmoothmenu ul {
	list-style:none;
	margin:0px;
	padding:0px;
}
/*Top level list items*/
.ddsmoothmenu ul li {
	display: inline;
	float: left;
	height:36px;
	margin:0 2px 0 0;
	box-shadow:0 1px 3px #054662;
	overflow:hidden;
	border-radius:3px;
}
/*Top level menu link items style*/
.ddsmoothmenu ul li a {
	display:block;
	color:#444;
	font-size:13px;
	text-transform:uppercase;
	font-weight:bold;
	line-height:36px;
	height:36px;
	border-radius:3px;
	text-decoration:none;
	text-shadow:1px 1px 1px #dedede;
	padding:0 18px;
	background:#e9e9e9;
	box-shadow:0 1px 1px #FFFFFF inset;
	background-repeat:no-repeat;
	background-image:-webkit-linear-gradient(
        top left,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.2) 37%,
        rgba(255, 255, 255, 0.8) 45%,
        rgba(255, 255, 255, 0.0) 50%
    ),
	-webkit-linear-gradient(  #e9e9e9, #b9b9b9  );
	background-image:-moz-linear-gradient(
        0 0,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.2) 37%,
        rgba(255, 255, 255, 0.8) 45%,
        rgba(255, 255, 255, 0.0) 50%
    ),
	-moz-linear-gradient(  #e9e9e9, #b9b9b9  );
	background-image:-o-linear-gradient(
        0 0,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.2) 37%,
        rgba(255, 255, 255, 0.8) 45%,
        rgba(255, 255, 255, 0.0) 50%
    ),
	-o-linear-gradient(  #e9e9e9, #b9b9b9  );
	background-image:linear-gradient(
        0 0,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.2) 37%,
        rgba(255, 255, 255, 0.8) 45%,
        rgba(255, 255, 255, 0.0) 50%
    ),
	linear-gradient(  #e9e9e9, #b9b9b9  );
	background-position:-100px -100px, 0 0;
	-moz-background-size:250% 250%, 100% 100%;
	background-size:250% 250%, 100% 100%;
	-webkit-transition:background-position 0s ease;
	-moz-transition:background-position 0s ease;       
	-o-transition:background-position 0s ease;
	transition:background-position 0s ease;
}
.ddsmoothmenu ul li a:hover {
	background-position:0 0, 0 0;
	-webkit-transition-duration:0.5s;
	-moz-transition-duration:0.5s;
	transition-duration:0.5s;
}
.ddsmoothmenu ul li.current_page_item a, .ddsmoothmenu ul li.current_page_item a {
	background:#c4d558;
	box-shadow:0 1px 1px #fff inset;
	background-repeat:no-repeat;
	background-image:-webkit-linear-gradient(
        top left,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.2) 37%,
        rgba(255, 255, 255, 0.8) 45%,
        rgba(255, 255, 255, 0.0) 50%
    ),
	-webkit-linear-gradient(  #c4d558, #8faa17  );
	background-image:-moz-linear-gradient(
        0 0,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.2) 37%,
        rgba(255, 255, 255, 0.8) 45%,
        rgba(255, 255, 255, 0.0) 50%
    ),
	-moz-linear-gradient(  #c4d558, #8faa17  );
	background-image:-o-linear-gradient(
        0 0,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.2) 37%,
        rgba(255, 255, 255, 0.8) 45%,
        rgba(255, 255, 255, 0.0) 50%
    ),
	-o-linear-gradient(  #c4d558, #8faa17  );
	background-image:linear-gradient(
        0 0,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.2) 37%,
        rgba(255, 255, 255, 0.8) 45%,
        rgba(255, 255, 255, 0.0) 50%
    ),
	linear-gradient(  #c4d558, #8faa17  );
	background-position:-100px -100px, 0 0;
	-moz-background-size:250% 250%, 100% 100%;
	background-size:250% 250%, 100% 100%;
	-webkit-transition:background-position 0s ease;
	-moz-transition:background-position 0s ease;       
	-o-transition:background-position 0s ease;
	transition:background-position 0s ease;
}
.ddsmoothmenu ul li.current_page_item a:hover, .ddsmoothmenu ul li.current_page_item a:hover {
	background-position:0 0, 0 0;
	-webkit-transition-duration:0.5s;
	-moz-transition-duration:0.5s;
	transition-duration:0.5s;
}
* 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: 444;
}
.ddsmoothmenu ul li a.selected { /*CSS class that's dynamically added to the currently active menu items' LI A element*/
}
.ddsmoothmenu ul li a:hover {
}
/*1st sub level menu*/
.ddsmoothmenu ul li ul {
	position: absolute;
	left: 0;
	display: none; /*collapse all sub menus to begin with*/
	visibility: hidden;
	z-index:999999999;
}
/*Sub level menu list items (undo style from Top level List Items)*/
.ddsmoothmenu ul li ul li {
	display: list-item;
	float: none;
	margin:5px 0 0 0;
}
/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.ddsmoothmenu ul li ul li ul {
	top: 0;
}
/* Sub level menu links style */
.ddsmoothmenu ul li ul li a {
	width: 170px; /*width of sub menus*/
	margin: 0;
}
/* Holly Hack for IE \*/
* html .ddsmoothmenu {
	height: 1%;
} /*Holly Hack for IE7 and below*/
/* ######### CSS for shadow added to sub menus  ######### */

.ddshadow { /*shadow for NON CSS3 capable browsers*/
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 0;
}
.toplevelshadow { /*shadow opacity for NON CSS3 capable browsers. Doesn't work in IE*/
	opacity: 0.8;
}
