/* General Webware related styles */

/* Webware navigation styles */
.mnuMain {
	width: 125px;
}
.mnuMainItem { /* menu option which results in a new page */
	font-size: 0.9em;
}
.mnuMainItem a {
	margin-top: 4px;
	border: 1px solid #000066;
	display: block; /*needed so that the whole cell is highlighted on mouseover*/
}
.mnuMainItem a:link, .mnuMainItem a:visited, .mnuMainItem a:active {
	background-color : #FFCC00;
	padding: 4px 10px 4px 10px;
	color: #000066;
	text-decoration: none;
}
.mnuMainItem a:hover{
	background-color : #7EA0BC;
	color: #FFCC00;
	text-decoration: none;
}

.mnuMainSub { /* menu option which results in a submenu */
}
.mnuMainSub a {
	display: block; /*needed so that the whole cell is highlighted on mouseover*/
	font-size: 0.9em;
	margin-top: 4px;
	border: 1px solid #000066;
}
.mnuMainSub a:link, .mnuMainSub a:visited, .mnuMainSub a:active {
	color: #000066;
	text-decoration: none;
	padding: 4px 10px;
	background : #FFCC00 url(../images/bg_arrow.gif) no-repeat right;
}
.mnuMainSub a:hover{
	color: #FFCC00;
	text-decoration: none;
	background : #7EA0BC url(../images/bg_arrow_over.gif) no-repeat right;
}

.mnuSub { /* flyout menus */
	position:absolute; visibility:hidden; left:100px; top:100px; width:150px; z-index:1;
	border-top:1px solid #336699;
	color:#336699;
	background:#FFCC00;
}
.mnuSubItem a, .mnuSubSub a { /* menu option which results in a new page */
	display:block; /*needed so that the whole cell is highlighted on mouseover*/
	color:#000033;
	background:#FFCC00;
	text-decoration:none;
	font-size: 0.9em;
}
.mnuSubItem a:link, .mnuSubItem a:visited, .mnuSubItem a:active {
	border-right:1px solid #336699;
	border-bottom:1px solid #336699;
	border-left:1px solid #336699;
	padding:4px 4px;
	color:#336699;
	background:#FFCC00;
	text-decoration:none;
}
.mnuSubItem a:hover{
	border-right:#336699 1px solid;
	border-bottom:#336699 1px solid;
	border-left:#336699 1px solid;
	background:#7EA0BC;
	color:#FFCC00;
	text-decoration:none;
}
.mnuSubSub a:link, .mnuSubSub a:visited, .mnuSubSub a:active{
	border-right:1px solid #336699;
	border-bottom:1px solid #336699;
	border-left:1px solid #336699;
	padding:4px 4px;
	color:#336699;
	background: #FFCC00 url(../images/bg_arrow.gif) no-repeat right;
	text-decoration:none;
}
.mnuSubSub a:hover{
	border-right:#336699 1px solid;
	border-bottom:#336699 1px solid;
	border-left:#336699 1px solid;
	background: #7EA0BC url(../images/bg_arrow_over.gif) no-repeat right;
	color:#FFCC00;
	text-decoration:none;
}
