@CHARSET "ISO-8859-1";
.ddsmoothmenu{
	width: 100%;
  height: auto;
  background-color: #4b5969; /* Old browsers */
  background-repeat: repeat-x; /* Repeat the gradient */
  background-image: -moz-linear-gradient(top, #6a7386 0%, #4b5969 100%); /* FF3.6+ */
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#6a7386), color-stop(100%,#4b5969)); /* Chrome,Safari4+ */
  background-image: -webkit-linear-gradient(top, #6a7386 0%,#4b5969 100%); /* Chrome 10+,Safari 5.1+ */
  background-image: -ms-linear-gradient(top, #6a7386 0%,#4b5969 100%); /* IE10+ */
  background-image: -o-linear-gradient(top, #6a7386 0%,#4b5969 100%); /* Opera 11.10+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6a7386', endColorstr='#4b5969',GradientType=0 ); /* IE6-9 */
  background-image: linear-gradient(top, #6a7386 0%,#4b5969 100%); /* W3C */
  border: 1px solid #4b5969;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
  margin-top: -10px;
}

.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;
}

/*Top level menu link items style*/
.ddsmoothmenu ul li a{
	display: block;
	padding: 3px 15px;
	clear: both;
	font-weight: normal;
	line-height: 18px;
	color: #ffffff;
	white-space: nowrap;
	margin: 0;
  padding-top:    11px;
  padding-bottom: 11px;
  border-left: 1px solid #6a7386;
  border-right: 1px solid #4b5969;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}

* 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{

}

.ddsmoothmenu ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
	color: #ffffff;
  	text-decoration: none;
	background-color: #80889c;
}


.ddsmoothmenu ul li a:hover{
	color: #ffffff;
  	text-decoration: none;
	background-color: #80889c;
}
	
/*1st sub level menu*/
.ddsmoothmenu ul li ul{
position: absolute;
left: 0;
display: none; /*collapse all sub menus to begin with*/
visibility: hidden;
	min-width: 160px;
	padding: 4px 0;
	margin: 1px 0 0;
	list-style: none;
	background-color: #ffffff;
	border: 1px solid #ccc;
	border: 1px solid rgba(0, 0, 0, 0.2);
	*border-right-width: 2px;
	*border-bottom-width: 2px;
	-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius: 5px;
	-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
		-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
		box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
	-webkit-background-clip: padding-box;
		-moz-background-clip: padding;
		background-clip: padding-box;
	
	
}

/*Sub level menu list items (undo style from Top level List Items)*/
.ddsmoothmenu ul li ul li{
	display: list-item;
	float: none;
	bakcground: #FEFEFE;
	border-color: #ccc;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.ddsmoothmenu ul li ul li ul{
	top: 0;
	border-color: #ccc;
}

/* Sub level menu links style */
.ddsmoothmenu ul li ul li a{
	display: block;
	padding: 3px 15px;
	clear: both;
	font-weight: normal;
	line-height: 18px;
	color: #333333;
	white-space: nowrap;
	border: none;
}

/* Holly Hack for IE \*/
* html .ddsmoothmenu{height: 1%;} /*Holly Hack for IE7 and below*/


/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass{
	margin-left: 10px;
	margin-right: -4px;
}

.rightarrowclass{
	position: absolute;
	top: 5px;
	right: 3px;
}
a:hover .rightarrowclass, a.selected  .rightarrowclass {
	/*background-image: url("../img/glyphicons-halflings-white.png");*/	
}

/* ######### 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;
}