FRAMESET {
  framespacing: 0px;
  frameborder: 0px;
  border-style: none;
  border: 0px;
}

FRAME {
  border: 0px;
  border-style: none;
  marginwidth: 5px;
  marginheight: 0px;
}

BODY {
  background: white;
  font-family: Lucida Sans, Verdana, Arial;
  font-size: 16px;
  color: black;
  topmargin: 0px;
  leftmargin: 0px;
  margin: 5px;
}

TABLE {
  font-family: Lucida Sans, Verdana, Arial;
  leftmargin: 0px;
  margin: 0px;
  border: 0px solid;
  border-color: black;
}

INPUT{ /* form input field */
  font-family: Lucida Sans, Verdana, Arial;
}

TEXTAREA{ /* form input field */
  font-family: Lucida Sans, Verdana, Arial;
}

A {
  font-style : normal;
  text-decoration : underline;
  background-color: white;
  color: black;
}

A:VISITED {
  font-style : normal;
  text-decoration : underline;
  background-color: white;
  color: black;
}
       
A:HOVER {
  font-style : normal;
  text-decoration : none;
  background-color: black;
  color: white;
}

/* this is the css for the vertical version */
.vertical ul{ /* main level menu */
	list-style: none;
	padding: 0;
	margin: 0;
	line-height: 1em;
	width: 120px;
}
.vertical li a{ /* list items */
	display: block;
	width: 120px;
	/* height: 1em; to force single line height entries */
	padding: .5em 5px;
	font-weight : bold;     
}
.vertical li{ /* needed for IE */
	display: inline;
}
.vertical li ul{ /* second level menu */
	position: absolute;
	margin-top: -1px; /* compensate for line height and list padding: -2em when at same height as initiating list element */
	margin-left: 60px; /* list width + padding + 1 when no overlap */
	width: 130px; /* list width + padding to make border fit cells */
}

/* colors for menu */
.camelot li a{
	background-color: white;
	color: black;
	text-decoration : none;
}
.camelot li a:hover{
	background-color: black;
	color: white;
	border: 0px solid;
	border-top: 0px solid;
	border-color: black;
	text-decoration : none;
}
.camelot li a:active{
	background-color: black;
	color: white;
	border: 0px solid;
	border-top: 0px solid;
	border-color: white;
	text-decoration : none;
}
.camelot ul{ /* main level menu */
	border: 0px solid;
	border-top: 0px solid;
	border-color: white;
}
.camelot li ul { /* second level menu */
	border: 1px solid;
	border-top: 1px solid;
	border-color: black;
}


/*this is the css for the horizontal version*/
.horizontal ul{
	list-style-type: none;
	padding: 0px;
	border-left: 0px solid;
	display: block;
	height: 1.4em;
}

.horizontal li{
	float: left;
	display: inline;
}

.horizontal li a{
	text-decoration: none;
	height: 1.2em;
	float: left;
	display: block;
	width: 80px;
	padding: .25em 5px;
	border: 0px solid;
	border-left: none;
}

.horizontal li li a{
	border-top: none;
	border-left: 0px solid;
}

.horizontal li ul{
	position: absolute; 
	margin-top: 1.3em;
	margin-left: -1px;
	width: 82px;
	border: none;
	display: block;
	height: auto;
	border-top: 0px solid;
}

.horizontal li li ul{
	position: absolute;
	margin-top: .1em;
	margin-left: 80px;
}

.horizontal li ul li a{
width: 80px;
}

/*This section makes the menu not work in non-javascript enabled browsers by not showing the menu by default-This can be worked around by making top level links point to a sitemap*/
/*Not sure if I recommend this or not*/
.inaccesible li ul{
	display: none;
}

/*Arrow code - looks like <a class="haschild" href="#">Text <span>Arrow</span></a> can be turned on/off with arrow class*/
.arrow a span{
	padding-left: 1em;
	font-size: 85%;  
}
.arrow a:hover span{
	padding-left: 2em;
}
.arrow a span.noshow{
	visibility: hidden;
}
/*Plus code*/
.plus a span{
	padding-left: .5em;
}