/* this is the main UL element*/
.menuMain{
	visibility:hidden;
	margin:0;
	padding:0;
	list-style:none;
	border-bottom:1px solid #444;
}

.menuMain li.first {
	width:65px !important;
	margin-left: 10px;
}

.menuMain li a.first {
	border-left: 0px !important;
}

/* these are the inner menus*/
.menuMain ul{
	margin:0;
	padding:0;
	border-top:1px solid #444;
	list-style:none;
}

/* these are all the LIs in the menu*/
.menuMain li{
	margin:0;
	padding:5px;
	width:100px;
	cursor:pointer;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.menuMain a {
	text-decoration:none;
	color:#FFF;
	width:100%;
}

.menuMain a:hover{
	/*text-decoration:underline;*/
	color: #829bb3;
	background-color: #fff;
}

/* these are the LIs that only belong to submenu*/
.menuMain ul li{
	border:1px solid #444;
	/*background: url(menu.png) top left repeat;*/
	background-color: #829bb3;
	/*height: 16px;*/
	width: 150px;
	border-top:0;
	margin-left:-1px;
}

.menuMain ul li.first {
	width: 150px !important;
	margin-left: -1px;
}


/* these are the LIs that contains a submenu*/
.menuMain li.parent{
	padding-left:20px;
	width:100px;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselves*/
.menuMain ul li.parent{
	padding:5px;
	width:120px;
}