div.dropdownmenu {
  float:right;
}
.dropdownmenu {
  width: 740px;/*width: 745px;*/
	height: 42px;
	position: relative;

/*	border-right: 1px solid #1AA4DE;*/ 
	font-family: arial, sans-serif;
	margin:0 auto;
}
/* hack to correct IE5.5 faulty box model */
* html .dropdownmenu {
	width: 741px;
	w\idth: 740px;
	
}
/* remove all the bullets, borders and padding from the default list styling */
.dropdownmenu ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}
.dropdownmenu ul ul {
	width: 129px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.dropdownmenu li {
	float: left;
	/*width: 129px;*/
	position: relative;
}
/* style the links for the top level */
.dropdownmenu a, .dropdownmenu a:visited {
	display: block;
	font-size: 12px;
	text-decoration: none;
	color: #fff;
	/*width: 118px;*/
	height: 42px;
	line-height: 39px;
	font-weight: bold;
	text-align:center;
	margin-right:5px;
	margin-left:0px;
	white-space:nowrap;
	padding:0 20px;
}

.dropdownmenu a.home, .dropdownmenu a:vistied.home {
  margin-left:10px;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html .dropdownmenu a, * html .dropdownmenu a:visited {
/*	width: 129px;*/
/*	w\idth: 138px;*/
display: inline-block;
}

.dropdownmenu ul ul {
	visibility: hidden;
	position: absolute;
	height: 0;
	top: 28px;/*top: 31px;*/
	left: 0;
	width: 129px;
	border-top: 0 solid #111;/*border-top: 1px solid #000;*/
}
/* another hack for IE5.5 */
* html .dropdownmenu ul ul {
	top: 27px;/*top: 30px;*/
	t\op: 28px;/*t\op: 31px;*/
}
/* position the third level flyout menu */
.dropdownmenu ul ul ul {
	left: 129px;
	top: -1px;
	width: 129px;
}
/* position the third level flyout menu for a left flyout */
.dropdownmenu ul ul ul.left {
	left: -129px;
}
/* style the table so that it takes no ppart in the layout - required for IE to work */
.dropdownmenu table {
	position: absolute;
	top: 0;
	left: 0;
	border-collapse: collapse;
	;
}
/* style the second level links */
.dropdownmenu ul ul a, .dropdownmenu ul ul a:visited {
	/*background: #111;*/
	background: transparent url(/Portals/_default/Skins/movestar/images/translucent.png);
	color: #FFF;
	height: auto;
	line-height: 1em;
	padding: 5px 10px;
	width: 98px;
	border-bottom:0px solid #111; /* new */
}
/* yet another hack for IE5.5 */
* html .dropdownmenu ul ul a, * html .dropdownmenu ul ul a:visited {
	width: 130px;
	w\idth: 118px;
	background-color: #111;
}
/* style the top level hover */
/*.dropdownmenu a:hover,*/ 
.dropdownmenu ul ul a:hover {
	color: #FFF;
	background: #444;
}

/* This is for IE 6*/

* html .dropdownmenu a:hover.star {
  color: #fff;
  background-image: url(/Portals/_default/Skins/movestar/images/star.gif);
  background-position: left center;
  background-repeat:no-repeat;
  z-index:950;
  /*background-color:#231F20;*/
}

* html .dropdownmenu a:hover.button_hover {
  color: #fff;
  background-image: url(/Portals/_default/Skins/movestar/images/button-hover.jpg);
  _background-image: url(/Portals/_default/Skins/movestar/images/button-ie6-hover.jpg);
  background-position: 5px 0px;
  background-repeat:no-repeat;
  z-index:950;
  /*background-color:#231F20;*/
}


/* This is for IE 6*/
* html .dropdownmenu ul ul a:hover {
  color: #FFF;
  background: #444;
/*  _border-left:1px solid #1AA4DE;*/
}

.dropdownmenu :hover > a.star {
	color: #fff;
  background-image: url(/Portals/_default/Skins/movestar/images/star.gif);
  background-position: left center;
  background-repeat:no-repeat;
    /*background-color:#231F20;*/
}

.dropdownmenu :hover > a.button_hover {
	color: #fff;
  background-image: url(/Portals/_default/Skins/movestar/images/button-hover.jpg);
  _background-image: url(/Portals/_default/Skins/movestar/images/button-ie6-hover.jpg);
  background-position: 5px 0px;
  background-repeat:no-repeat;
    /*background-color:#231F20;*/
}

.dropdownmenu ul ul :hover > a {
	color: #FFF;
	background: #FF093B;
/*	border-left:1px solid #006DBC;*/
	
}



/* make the second level visible when hover on first level list OR link */
.dropdownmenu ul li:hover ul, .dropdownmenu ul a:hover ul {
	visibility: visible;
}
/* keep the third level hidden when you hover on first level list OR link
.dropdownmenu ul:hover ul ul {
	visibility: hidden;
}*/ 
/* make the third level visible when you hover over second level list OR link 
.dropdownmenu ul:hover ul:hover ul {
	visibility: visible;
}*/