.ddsmoothmenu {
	/* width: 100%; */
	width: auto;
	font-family:"geared_slabthin", Arial, Helvetica, sans-serif;
	font-size: 24px;
	font-size: 1.5rem;
	line-height: 1;
	font-weight: normal;
	float:right;
	border-top:2px solid #ebeaea;
	border-bottom:2px solid #ebeaea;
	padding:10px 0 0px 0;
	clear:right; /* NEW */
}

.ddsmoothmenu ul {
	z-index:100;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

/*Top level list items*/
.ddsmoothmenu ul li {
	position: relative;
	display: inline;
	float: left;
	margin:0;
	padding-left:7px;
	background-image:url(../SiteImages/icon_plus_topnav.png);
	background-position:top left;
	background-repeat:no-repeat;
}

/*Top level menu link items style*/
.ddsmoothmenu ul li a {
	display: block; /*background of menu items (default state)*/
	color: #ccc; /*not sure what this color is for*/
	text-decoration: none;
	text-transform: uppercase;
	padding-top: 0px;
	padding-right: 7px;
	padding-bottom: 5px;
	padding-left: 10px;
	text-align: center;
	/* width: 132px; */
	width:auto;
	font-weight: normal;
	white-space:nowrap; /* NEW */
}

.ddsmoothmenu ul li:last-child a {
	background-image:url(../SiteImages/icon_plus_topnav.png);
	background-position:top right;
	background-repeat:no-repeat;
	padding-right:14px;
}

* 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: #594645; /* Top Level Links color */
}

.ddsmoothmenu ul li a.selected, .ddsmoothmenu ul li a.pageselected { /*CSS class that's dynamically added to the currently active menu items' LI A element*/
	color: #d6ba8c;
}

.ddsmoothmenu ul li a:hover {
	color: #d6ba8c; /* Top Level Links hover color */
}
	
/*1st sub level menu*/
.ddsmoothmenu ul li ul {
	position: absolute;
	left: 0;
	display: none; /*collapse all sub menus to begin with*/
	visibility: hidden;
	-moz-box-shadow: 0px 4px 4px #666;
	-webkit-box-shadow: 0px 4px 4px #666;
	box-shadow: 0px 4px 4px #666;
	background-color: #fff;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.ddsmoothmenu ul li ul li {
	display: list-item;
	float: none;
	background-image:none; /*gets rid of the icons*/
	padding-left:0px;
	padding-right:0px;
}

/*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: 112px;
	margin: 0;
	border-bottom-width: 1px;
	font-family:"OpenSansCondensedLight", Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-size: .875rem;
	font-style: normal;
	line-height: 1;
	font-weight: normal;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	border-bottom-style: solid;
	border-bottom-color: #f2f2f2;
	text-align: center;
	background-image:none !important; /*gets rid of the icons*/
}

.ddsmoothmenu ul li ul li:last-child a {
	background-image:none;
	padding-right:5px;
}


.ddsmoothmenu ul li ul li a:hover {
	background-color: #333333;
}


/* 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: 12px;
	right: 7px;
}

.rightarrowclass {
	position: absolute;
	top: 6px;
	right: 5px;
}

/* ######### 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;
}