.navbarContainer {
	float: right;
	position: relative;
	width: 300px;
}

.navbarContainer ul {
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
}

.navbarContainer li {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	border: 0;
}

.navbarContainer li a div {
	height: 30px;
	width: 300px;
	background-repeat: no-repeat;
	background-position: top right;
}

/*
.navbarContainer li a:hover div {
	height: 30px;
	width: 300px;
	background-repeat: no-repeat;
	background-position: bottom right;
}
*/

.navbarContainer img {
	border: 0;
}

.navbarContainer a {
	display: block;
	cursor: pointer;	/* fix for IE, to use hand cursor */

	text-decoration: none;
	text-align: right;
}

/* position the submenus */
.navbarContainer li ul {
	display: none;

	/* offset the submenu to appear a about the midway point of the parent menu item's height */
 	/*position: absolute;
	top: 0;
	left: auto;
	right: 0;
	z-index: 50;
	*/

	color: #000;
	background-color: #fff;
	/*border: 1px solid #ccc;*/
}

/* ...and then place it where it should be when shown */
.navbarContainer li:hover ul {
/*
	right: 100%;
	left: auto;
*/
}

/* display them on hover */
.navbarContainer li:hover>ul {
/*
	display: block;
*/
}