/* B:Navigation */
#navigation {
	margin: 0px 180px 0px 21px;
	padding: 6px 0px 0px 0px;
	height: 70px;
	color: #CD9F3D;
	font-size: smaller;
	font-weight: bold;
}
#navigation ul{				/* menu list container */
	list-style-type: none;		/* disable the display of the list item bullets */
   	margin: 0px;			/* space around the list container */
   	padding: 0px;			/* space within the list container */
	position: static;		/* need this so that the z-index stuff works correctly */
   	z-index: 20;			/* push the menu up in the layer order a bit so it isn't hidden behind anything */
}

#navigation  ul li {
	margin: 0px;			/* spacing between main menu items */
   	padding: 0px;			/* padding within main menu items */
	text-align: left;
	float: left;			/* this is to allow for the horizontal main menu */
	padding: 1px 0px 0px 20px;
	background: url("../images/dividers.gif") no-repeat top left;
}

#navigation a,
#navigation span {
	display:block;
	text-decoration: none;
	color: #666;
	font-weight: bold;
}

#navigation a:hover {
	color: #CD9F3D;
}

/* E:navigation */
#popitmenu {
    position:absolute;
    left:200px;
    background-color: white;
    font-weight:bold;
    line-height: 18px;
    z-index: 100;
    visibility: hidden;
}
#popitmenu div {
    background-color: #DBDBDB; /*gray;*/
}
#popitmenu a {
    text-decoration: none;
    padding-left: 6px;
    color: #565656;
    display: block;
    font-family: Verdana, Helvetica;
	font-size: smaller;
}
                                                                                                                             
#popitmenu a:hover {
    background-color: white; /*#C0D9E0;*/
    color:#CD9F3D; /*#E45E1F;*/
}

