﻿/**************** menu coding *****************/
#menu {
/*width: 12em;*/
width: 240px;
padding-top:12px;
position: relative;
float: left;
}

#menu ul {
list-style: none;
margin: 0;
padding: 0;
}

#menu a, #menu a.HasChildrenSelected, #menu a.HasChildren, #menu a.Selected, 
#menu a.Edit, #menu a.Insert, #menu a.MoveUp{
font: bold 11px arial, helvetica, sans-serif;
display: block;
border-bottom: solid 1px #FFFFFF;
padding: 12px 10px 12px 10px;
color: #FFFFFF;

background-repeat: repeat-x;
text-decoration: none;
text-transform: uppercase;
}
#menu a.NotApproved
{
	font-style: italic;
	background-color: #AB0E2E;
}
#menu a.Edit, #menu a.Edit:hover {
color: #000;
background-color: #888;
background-image: url(/Images/page_white_edit.png);
background-repeat: no-repeat;
background-position: left center;
text-indent: 20px;
}

#menu a.Insert, #menu a.Insert:hover {
color: #000;
background-color: #888;
background-image: url(/Images/page_white_add.png);
background-repeat: no-repeat;
background-position: left center;
text-indent: 20px;
}

#menu a.MoveUp, #menu a.MoveUp:hover {
color: #000;
background-color: #888;
background-image: url(/Images/arrow_up.png);
background-repeat: no-repeat;
background-position: left center;
text-indent: 20px;
}
#menu a:hover {
color: #FFFFFF;
background-image: url(/Images/CustomerSpecific/TransparentHover.png);
}
#menu a.Selected{
color: #FFFFFF;
background-image: url(/Images/CustomerSpecific/TransparentHover.png);
}
#menu a.HasChildren{
background-image: url(/Images/Arrow.png);
background-repeat: no-repeat;
background-position: right center;
}
#menu a.HasChildren:hover{
background-image: url(/Images/SelectedArrow.png);
background-repeat: no-repeat;
background-position: right center;
}
#menu a.HasChildrenSelected{
background-image: url(/Images/SelectedArrow.png);
background-repeat: no-repeat;
background-position: right center;
color: #FFFFFF;
}


#menu li {
position: relative;
list-style: none;
z-index: 1;
float:left;
width:100%;
}

#menu ul ul ul {
position: absolute;
top: 1px;
left: 240px; /*IE7 fix - #menu width + padding*/
width: 100%;
}

div#menu ul ul ul,
div#menu ul ul ul ul,
div#menu ul ul ul ul ul,
div#menu ul ul ul ul ul ul
{background-image: url(/Images/ChildrenMenu.png); display: none;}


div#menu ul ul li:hover ul ul,
div#menu ul ul ul li:hover ul ul,
div#menu ul ul ul ul li:hover ul ul,
div#menu ul ul ul ul ul li:hover ul ul
{display: none;}

div#menu ul ul li:hover ul,
div#menu ul ul ul li:hover ul,
div#menu ul ul ul ul li:hover ul,
div#menu ul ul ul ul ul li:hover ul
{display: block;}

div#menu ul ul ul li:hover ul,
div#menu ul ul ul ul li:hover ul,
div#menu ul ul ul ul ul li:hover ul,
div#menu ul ul ul ul ul ul li:hover ul
{display: block;}


