.menu {
	margin: 0;
	padding: 1px;
	width: 275px;
	list-style: none;
}

.menu ul {
    margin: 0;
    padding: 1px;
    width: 269px;
    list-style: none;
	display: none;
	position: absolute;
	top: 4px;
	left: 269px;
}

.menu li {
	position: relative;
}

.menu li a {
	display: block;
	padding: 3px 4px 3px 4px;
	text-decoration: none;
	border: 1px solid transparent;
	margin: 0;
}

* html .menu li a {
	border-width: 0;
	margin: 1px;
}

.menu a:hover, .menu a.highlighted:hover, .menu a:focus {
	margin: 0;
    filter: alpha(opacity=50);
    -moz-opacity:.5;
    opacity:.5;
}

.menu a.highlighted {
	margin: 0;
    filter: alpha(opacity=30);
    -moz-opacity:.3;
    opacity:.3;
}

/*
 If you want per-item background images in your menu items, here's how to do it.
 1) Assign a unique ID tag to each link in your menu, like so: <a id="xyz" href="#">
 2) Copy and paste these next lines for each link you want to have an image:
    .menuBlue a#xyz {
      background-image: url(out.gif);
    }
    .menuBlue a#xyz:hover, .menuBlue a.highlighted#xyz, .menuBlue a:focus {
     background-image: url(over.gif);
    }
*/


.menu a .subind {
	float: right;
	padding-top: 4px;
}

/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *:first-child+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/
*:first-child+html .menu li {
	float: left;
	width: 100%;
}

* html #menu li {
	float: left;
	height: 1%;
}

* html #menu a {
	height: 1%;
}
/* End Hacks */