<style type="text/css">
#menu-container{ 
	padding: 0; 
	border: none;
	position: absolute;
	top: 0;
	left: 0;
	}

#menu{
      list-style:none; 
	margin: 0;
	/* Clear floats */
	float: right;
	width: 100%; 
      height: 30px;
      z-index: 7;
      position: relative; /* Bring the nav above everything else--uncomment if needed. z-index: 0;*/
	}

ul { width: 120px; 
}

ul li ul { width: 227px; 
}

.pull-left li{
	padding:0;
      margin:0;
	position: absolute; 
	list-style: none;
	right:30px;
	width: 155px;
}

#menu li{
	background: #808bb6;
	list-style-type:none; 
	font: bold 11px arial;
	float:left;
	margin: auto;
	position:relative;
	white-space: nowrap;
	}

#menu li a{
	position: relative;	
      display: block;
	margin: auto;
	padding: 3px 0;
      width: 121px; 
	line-height: 27px;
	height: 27px; 
	text-align: center;
	text-decoration: none;
	background: #fef1f7;
	text-shadow: 1px 1px 1px #000;
	border-top-right-radius: 5px 5px;
	border-top-left-radius: 5px 5px;
      -khtml-border-top-right-radius: 5px 5px;  
      -khtml-border-top-left-radius: 5px 5px;
      -webkit-border-top-right-radius: 5px 5px;
      -webkit-border-top-left-radius: 5px 5px
	-moz-border-top-right-radius: 5px 5px;
      -moz-border-top-left-radius: 5px 5px;
background: -webkit-gradient(linear, left top, left bottom, from(#808bb6), to(#ffffd6)); /* for webkit browsers */
background: -moz-linear-gradient(top, #808bb6, #ffffd6); /* for firefox 3.6+ */ 
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#808bb6', endColorstr='#ffffd6'); /* for IE */
}

#menu a{	
	display:block;
	padding:0px;
	color:#fff;
	background: #fef1f7;
	text-decoration:none;
}

#menu a:hover{
	position: relative; 
	color: #ffbbff;  
	background: #808bb6;
	text-decoration:none;
	border-bottom-right-radius: 5px 5px;
	border-bottom-left-radius: 5px 5px; 
      -khtml-border-bottom-right-radius: 5px 5px;  
      -khtml-border-bottom-left-radius: 5px 5px; 
	-webkit-border-bottom-right-radius: 5px 5px;
      -webkit-border-bottom-left-radius: 5px 5px;
      -moz-border-bottom-right-radius: 5px 5px;
      -moz-border-bottom-left-radius: 5px 5px;
}

/*--- DROPDOWN ---*/
#menu ul{
	background:#000; /* Adding a background makes the dropdown work properly in IE7+. Make this as close to your page's background as possible (i.e. white page == white background). */
	background:rgba(0,255,255,0); /* But! Let's make the background fully transparent where we can, we don't actually want to see it if we can help it... */
	margin:auto; 
	width:auto;
	list-style:none;
	position: absolute;    
      left:-9999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#808bb6', endColorstr='#ffffd6'); /* for IE */
}

#menu ul:after {
	content: "";
	clear: both;
	display: block;
}

#menu ul li{
	padding-top: 0px; /* Introducing a padding between the li and the a give the illusion spaced items */
	float: none; 
	background: transparent;
}

#menu ul li a{
padding: 5px 13px 5px 13px;
}

#menu ul a{
	white-space:nowrap; /* Stop text wrapping and creating multi-line dropdown items */	
	width: auto;
 	height: 26px;  
	line-height: 26px;
      position: relative;   
      border-bottom-right-radius: 5px 5px;
	border-bottom-left-radius: 5px 5px; 
      -khtml-border-bottom-right-radius: 5px 5px;  
      -khtml-border-bottom-left-radius: 5px 5px;
	-webkit-border-bottom-right-radius: 5px 5px;
      -webkit-border-bottom-left-radius: 5px 5px
	-moz-border-bottom-right-radius: 5px 5px;
      -moz-border-bottom-left-radius: 5px 5px;
	background: -webkit-gradient(linear, left top, left bottom, from(#ffffd6), to(#808bb6)); /* for webkit browsers */
	background: -moz-linear-gradient(top,  #ffffd6, #808bb6); /* for firefox 3.6+ */ 
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffd6', endColorstr='#808bb6'); /* for IE */
}

#menu li:hover ul{ /* Display the dropdown on hover */
	left:0; /* Bring back on-screen when needed */
	padding-left: 0; 
}

#menu li:hover a{ /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
	text-decoration:none;
	background: -webkit-gradient(linear, left top, left bottom, from(#ffffd6), to(#808bb6)); /* for webkit browsers */
	background: -moz-linear-gradient(top,  #ffffd6, #808bb6); /* for firefox 3.6+ */ 
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffd6',endColorstr='#808bb6'); /* for IE that change submenu color */
}

#menu li:hover ul a{ /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
	text-decoration:none;
	background: -webkit-gradient(linear, left top, left bottom, from(#808bb6), to(#ffffd6)); /* for webkit browsers */
	background: -moz-linear-gradient(top, #808bb6, #ffffd6); /* for firefox 3.6+ */ 
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#808bb6',endColorstr='#ffffd6'); /* for IE that change submenu color */	
}

#menu li:hover ul li a:hover{ /* Here we define the most explicit hover states--what happens when you hover each individual link. */
	background: -webkit-gradient(linear, left top, left bottom, from(#ffffd6), to(#e9cfec)); /* for webkit browsers */ 
	background: -moz-linear-gradient(top, #ffffd6, #e9cfec); /* for firefox 3.6+ */ 
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffd6', endColorstr='#e9cfec'); /* for IE */ faafbe
}

li.ie-shadow1 {
/* For IE 8 */
-moz-box-shadow: 3px 3px 4px #000;
-webkit-box-shadow: 3px 3px 4px #000;
box-shadow: 3px 3px 4px #000;
//-ms-filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000'),
-ms-filter: progid:DXImageTransform.Microsoft.Shadow(Strength=15, Direction=0, Color='#717d7d'),
progid:DXImageTransform.Microsoft.Shadow(Color=#717d7d, Strength=15, Direction=90),
progid:DXImageTransform.Microsoft.Shadow(Color=#717d7d, Strength=15, Direction=180),
progid:DXImageTransform.Microsoft.Shadow(Color=#717d7d, Strength=15, Direction=270);
}
</style>



	