@charset "utf-8";
/* CSS Document */

/* This document is for nav structure only
   Keeping this information isolated makes edits easier
   ADJUST COLORS IN THEME.CSS NOT HERE!! */

/** navbar **/
#navbar{
	float:left;
	position:relative;
	width: 100%;
	margin-left: 0;
	padding: 0; /* DO NOT CHANGE. Add padding or margin to #navbar-inner. */
	z-index:100;
}

#navbar a{
	text-align:inherit;
	white-space:nowrap;
	text-decoration:none;
	display:block;
}

#primary, #secondary{
	float:left; /* This makes the div keep the height of the floated children */
	width:100%;
	padding:3px 0;
}

#primary {
	 height: 24px;
	 }
	 
#secondary {
	 height: 36px;
	 }

#primary li{width:152px; font-size: 13px;} /* Change this value when top level items are added or removed */
#secondary li{width:114px; line-height: 14px;} /* Change this value when top level items are added or removed ie.css contains fix as well */

#navbar ul{ /* Primary and secondary links */
	margin: 0;
	padding: 0;
	text-align: left;
	list-style-type:none;
}

/* Top Level */
#navbar li{
	float:left;
	text-align: center;
	cursor:pointer;
	position: relative;
	margin-top: 4px;
	border-left:2px solid;
	margin-left:-2px; /* Compensate for border */
}


#navbar li.firstchild {
	border:none;
}

/*Sub Menu*/
#navbar li ul{
	position: absolute;
	left:0;
	top:6px; /* total vertical padding of parent li */
	width: 150px;  /*width is based on the containing block */
	margin-top:22px; /* lineheight of parent * number of lines */
}
#navbar li li{
	padding:0;
	margin:0 0 -1px 0;
	text-align:center;
	width:100%;
	background-color:#CCC;
	border:1px solid gray;
	font-size:11px;
	font-weight:normal;
}
#navbar li li b{display:block; padding:2px;}
#navbar li li a{text-align:left; padding:2px;}

/*Sub-sub Menu*/
#navbar li li ul{
	top: -1px;
	left: 100%;  /*to position them to the right of their containing block */
	margin:0;
	z-index:101;
}

/* Hide submenus */
#navbar li ul,
#navbar li:hover li ul {display:none;}

/* Show submenus on hover */
#navbar li:hover ul,
#navbar li li:hover ul {display:block;}