@charset "utf-8";
/* 2005-03-05: rewrote JS and menu styles */
/* 2003-10-02: dropped @media handheld in favor of @media screen, projection */
/* One of my standard ways to hide CSS from deficient browsers is with @media rules.
   This also prevents mobile devices from attempting CSS they shouldn't */

@media screen, projection {
/* This next rule exploits a parsing bug in MacIE5 so @media rules will be applied on screen*/
.BeNiceToMacIE5 {        /* next 2 lines are known as the "box model hack" */
  font-family: "\"}\"";
  font-family: inherit;
}
/* WinIE5 hoses the selector following a box model hack, 
   so a dummy selector here will resync it */
.resyncWinIE5 {
}
body {
	font-size: 100%;     /* prevent weird scaling in WinIE */

}
.copyright,
.content {
	margin-left: 12em;
	
}
#navbar {
	float: left;
	width: 154px;
	font-size: 95%;
	*width: 160px;
}
/* hide the heading off-screen and don't let it affect list position */
#navbar h2 {
	position: absolute;
	top: -160px;
	left: 0;
	margin: 0;
}

#navbar ul,
#navbar li {
	margin: 0;
	padding: 0;
	list-style: none;
	position: relative;
	overflow: hidden;
	width: 156px; /* main menu's width */
	font-family: "Arial";
	*width: 150px;
	z-index: 1;
}
/* hide from MacIE \*/
div#navbar ul,
div#navbar li {
	overflow: visible;

} /* end hack */

/* default list styles are for the disappearing submenu lists */
#navbar ul {
	/* display: none; */       /* hidden by default */ /* for keyboard access */
	
	border: 0px;
	background-color: #FECD85;
	color: #000;
	font-weight: bold;
	font-size: 0.83em;
	font-family: "Arial" ;
	position: absolute;
	/* left: 11.2em; */           /* sub main menu position width */
	left: 150px;
	*left: 155px;
	top: -1em;
	z-index: 1;
	width:  156px;
}

/* override default for submenu items */
#navbar ul.submenu {
	position: absolute;
	top: 0px;
	padding: 0px;
	width: 0em;
    overflow: hidden; 
}

/* override default for top-level items */
#navbar ul.mainmenu {
	display: block;
	border-color: #000;
	border: none; 	
	position: relative;
	top: 0px;
	left: 0px;
	width: 149px;   /* a little narrower than submenus */
}

/* the default styles for submenu links */
#navbar li a {
	padding: .3em;
	color: #000;
	background-color: #FECD85;
	border: 1px solid #FF6600; 
	display: block;
	margin: 0px; /* submenu top and bottom margin */
	/* border-top: 1px solid #000; */
	text-decoration: none;
	position: relative; /* prevent WinIE weirdness */
}
/* the colors here are the same as links embedded in the content area, but don't have to be */
#navbar li a:link {
	color: #000;
	background-color: #FECD85; /* bg-color in main menu */
	/* border-bottom: 1 solid #FFFF66;  */  /* main menu underline */
}

#navbar li a:visited {
	color: #000;
	background-color: #FECD85;
}
#navbar li a:hover,#navbar li a:active, #navbar li a:focus {
<<<<<<< .mine
	color: #a20000;
=======
	color: #BD0000;
>>>>>>> .r6687
	background-color: #FECD85;
}

/* the main menu link, styled as a 'CSS button' */
#navbar a.mainmenu {
	border: none;
	border-bottom: 1px solid #FF6600; 
	/* padding: .3em 1em .3em .3em; */
	padding: .3em 0.4em 0em .2em;  /* orginal:0.3,1,0,.3---T-L-B-R-------------------------*/ 
	text-decoration: none;
	text-align: left;
	display: block;
	margin: 2px;
	visibility: visible;
	width: 138px;
	*width: 150px;
	background: #FECD85 url(v_arrow.png) -20px 0 no-repeat; 
	color: #000;
/* for mozilla browsers, (optionally) round the top corners to give a 'tab' appearance */
/*  -moz-border-radius-topleft: 1em;
  -moz-border-radius-topright: 1em; */
}

/* submenu indicator (set via JS), except in MacIE \*/
#navbar a.mainmenu.more {
	background-position: 101% .8em;  /*orginal:99%----arrow level--------------------------------------*/
} /* end submenu indicator */

#navbar a.mainmenu:visited {
	color: #003;    /* for top-level links, unvisited and visited are same color */
	background-color: #FECD85; /* for the first item in main menu */
}
#navbar a.mainmenu:hover, #navbar a.mainmenu:active, #navbar a.mainmenu:focus {
<<<<<<< .mine
	color: #a20000;
=======
	color: #BD0000;
>>>>>>> .r6687
	background-color: #FECD85;
	/* border-style: groove; */  /* or inset */
}

#navbar ul.mainmenu li:hover ul.submenu {
	position: absolute;
	top: -1em;
	padding: inherit;
	width: 156px;
    overflow: hidden;
	font-size:1em;
}

#navbar ul.mainmenu li.keyfocus  ul.submenu {
	position: absolute;
	top: -1em;
	padding: inherit;
	width: 156px;
    overflow: hidden;
	font-size:1em;
	*width: 150px;
}

/* hack to prevent excessive spacing in WinIE */
* html #navbar ul.mainmenu li {
	display: inline;
} /* end hack */
/* hack to prevent weird widths in WinIE5 \*/
* html #navbar ul.mainmenu li a {
	height: 1%;
} /* end hack */

} /* end screen rules */

/* print media rules */
@media print {
body {
	padding-top: 0px;
}
div#navbar {
	display: none;
}

} /* end print media rules */