.navbar ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 181px; /* Width of Menu Items */
	border-bottom: 1px solid #ccc;
	}

.navbar ul li {
	position: relative;
	}
	
.navbar li ul {
	position: absolute;
	left: 180px; /* Set 1px less than menu width */
	top: 0;
        z-index: 1;
	display: none;
	}

/* Styles for Menu Items */
.navbar ul li a {
	display: block;
	text-decoration: none;
	color: #333333;
	background: #c8fbf6; /* IE6 Bug */
	padding: 5px;
	border: 1px solid #ccc;
	border-bottom: 0;
	}

/* Fix IE. Hide from IE Mac \*/
* html .navbar ul li { float: left; height: 1%; }
* html .navbar ul li a { height: 1%; }
/* End */

.navbar ul li a:hover { color: #004488; background: #f9f9f9; } /* Hover Styles */
		
.navbar li ul li a { padding: 2px 5px; } /* Sub Menu Styles */
		
li:hover ul, li.over ul { display: block; } /* The magic */

/* Fix IE by hiding the flaky sub-menu: \*/
* html li:hover ul, li.over ul { display: none; } /* The magic */
/* End of fix */
