.ddsmoothmenu{
font: bold 12px Arial;
color:#646464;
/*background: #414141; /*background of menu bar (default state)*/
width: 100%;
}

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

/*Top level list items*/
.ddsmoothmenu ul li{
position: relative;
display: inline;
border-right:1px solid #afafaf;
float: left;
cursor:pointer;
}

/*Top level menu link items style*/
.ddsmoothmenu ul li a{
	display: block;
	color:#646464;;
	height:40px;
	padding:0 17px 0 17px;
	font-size:12px;
	line-height:40px;
	font-weight:bold;
	font-family:Arial, Helvetica, sans-serif;
	text-decoration: none;
	cursor:pointer;
}
.ddsmoothmenu ul li a:hover{
	background:#d2d2d2; /*background of menu items (default state)*/
}
* html .ddsmoothmenu ul li a{ /*IE6 hack to get sub menu links to behave correctly*/
display: inline-block;
}

/*1st sub level menu*/
.ddsmoothmenu ul li ul{
position: absolute;
left: 0;
display: none; /*collapse all sub menus to begin with*/
visibility: hidden;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.ddsmoothmenu ul li ul li{
border-bottom: 1px solid #afafaf;
border-left: 1px solid #afafaf;
display: list-item;
padding:0;
margin:0;
position:relative;
float:none;
left:-1px;
}
/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.ddsmoothmenu ul li ul li ul{
border-top: 1px solid #afafaf;
margin-top:-1px;
top:0;
}

/* Sub level menu links style */
.ddsmoothmenu ul li ul li a{
font: normal 12px Arial;
padding:5px 0 5px 20px;
text-align:left;
line-height:15px;
height:15px;
margin: 0;
border-top-width: 0;
background:#e6e6e6;
display:block;
}
.ddsmoothmenu ul li ul li a:hover{
	background:#d2d2d2;
}

/* 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;
}


