/* 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 {
	background-color: #000000;
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
}	

/* Body Text Definition */
.bodytext {font-size: 8pt; color: #FFFFE6; font-family: Arial, Helvetica, sans-serif;}
.bodytext a:link {font-weight:bold; font-size: 8pt; color: #FFFF99}
.bodytext a:visited {color: #FFFFC9}
.bodytext a:hover {background: #000000; color: #FFFF99}
.bodytext a:active {color: #FFCC33}

/* Big Text Definition */
.bigtext {padding-left: 5px; padding-right: 5px; padding-top: 10px; font-size: 10pt; color: #FFFF99;  font-family: Arial, Helvetica, sans-serif;}
.bigtext a:link {font-weight:bold; font-size: 10pt; color: #FFFF99}
.bigtext a:visited {color: #FFFFC9}
.bigtext a:hover {background: #000000; color: #FFFF99}
.bigtext a:active {color: #FFCC33}

/* Deschead Definition */
.deschead {padding-left: 5px; padding-right: 5px; font-size: 12pt; color: #FFFF99; font-family: Georgia, "Times New Roman", Times, serif;}
.deschead a:link {color: #FFFF99}
.deschead a:visited { color: #FFFF99}
.deschead a:hover {background: #000000; color: #FFFF99}
.deschead a:active {color: #FFCC33}

/* Desctext Definition */
.desctext {padding-left: 5px; padding-right: 5px; font-size: 8pt; color: #FFFFE6; font-family: Arial, Helvetica, sans-serif;}
.desctext a:link {font-weight:bold; font-size: 8pt; color: #FFFF99}
.desctext a:visited {color: #FFFFC9}
.desctext a:hover {background: #000000; color: #FFFF99}
.desctext a:active {color: #FFCC33}


/* Info Text Definition */
.infotext {font-size: 12pt; color: #FFFF99;  font-family: Arial, Helvetica, sans-serif;}
.infotext a:link { font-size: 12pt; color: #FFFF99}
.infotext a:visited {color: #FFFFC9}
.infotext a:hover {background: #000000; color: #FFFF99}
.infotext a:active {color: #FFCC33}

/* Subscription Text Definition */
.subtext {font-size: 8pt; color: #FFFF99;  font-family: Arial, Helvetica, sans-serif;}
.subtext a:link {font-weight:bold; font-size: 8pt; color: #FFFF99}
.subtext a:visited {color: #FFFFC9}
.subtext a:hover {background: #000000; color: #FFFF99}
.subtext a:active {color: #FFCC33}

/* Title Bar Definition */
.titletext {font-size: 12pt; color: #FFFF99; font-family: Georgia, "Times New Roman", Times, serif;}
.titletext a:link {color: #FFFF99}
.titletext a:visited { color: #FFFF99}
.titletext a:hover {background: #000000; color: #FFFF99}
.titletext a:active {color: #FFCC33}

.pagetitle {font-size: 16pt; color: #FFFF99; font-family: Georgia, "Times New Roman", Times, serif}


img.floatLeft { float: left; 
margin-top: 0px;
margin-bottom: 10px;
margin-left: 10px;
margin-right: 10px; 
	filter:alpha(opacity=100);   
	-moz-opacity: 1.0;   
	opacity: 1.0;
}

img.floatRight { float: right; 
margin-top: 0px;
margin-bottom: 10px;
margin-left: 10px;
	filter:alpha(opacity=100);   
	-moz-opacity: 1.0;   
	opacity: 1.0;
background-color: #000000;
	} 

iframe{ background-color:#000000}
	

.contentarea {
	background-color: #000000;
	filter:alpha(opacity=90);   
	-moz-opacity: .90;   
	opacity: .90;
}



.copyright,
.content {
	  	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	z-index: 2;
}
#navbar {
	float: left;
	width: 10em;
	font-size: 100%;
	position: static;
}

/* hide the heading off-screen and don't let it affect list position */
#navbar h2 {
	position: absolute;
	top: 10em;
	left: 0;
	margin: 0;
	
}
#navbar ul,
#navbar li {
	margin: 0;
	padding: 0;
	list-style: none;
	position: relative;
	overflow: hidden;
	
}
/* 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 */
/*	border: 1px solid #009; */
/* color: #FFFFFF; */
	position: absolute;
	left: 10.7em;           /* nav menu l/r scott */
	top: .3em; /* nav menu u/d scott */
	z-index: 1; 
	width: 12em; /* nav menu width scott*/
	font-size: 11px;
}
/* override default for top-level items */
#navbar ul.mainmenu {
	display: block;
/*	border-color: #ccc; */
	position: absolute;
	top: 5.2em;
	left: -.5em; /* main menu l/r scott*/
	width: 9.6em; /* main menu width scott*/
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
}

/* the default styles for submenu links */
#navbar li a {
	padding: .3em;
	color: #000;
	display: block;
	margin: 0;
/*	border-top: 1px solid #009; */
	text-decoration: none;
	position: relative; /* prevent WinIE weirdness */
	background-color: #666600; 
	
}
/* the colors here are the same as links embedded in the content area, but don't have to be */
#navbar li a:link {
	color: #FFFF99;
	filter:alpha(opacity=96);   
	-moz-opacity: .96;   
	opacity: .96;
}
#navbar li a:visited {
	color: #FFFF66;
}
#navbar li a:hover {
	color: #fff;
	background-color: #000000;
}

/* the main menu link, styled as a 'CSS button' */
#navbar a.mainmenu {
	/* border: 1px solid #ccc; */
	padding: .3em .7em .3em .1em;
	text-decoration: none;
	margin: 0;
	visibility: visible;
	background: none;
/*	background: url(../v_arrow.png) -20px 0 no-repeat; */
		text-align: right;
/* 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: 99% .8em;
} /* end submenu indicator */

#navbar a.mainmenu:visited {
	color: #FFFFFF;
  /* for top-level links, unvisited and visited are same color */
}
#navbar a.mainmenu:hover {
	
	/* color: #fff; */
	background-color: #000000;
	filter:alpha(opacity=90);   
	-moz-opacity: .90;   
	opacity: .90;
	/* color: #FFFFFF; */
	/* border-style: groove; */
	/* font-family: Verdana, Arial, Helvetica, sans-serif; */ 
}



/* 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: 0;
}
div#navbar {
	display: none;
}

} /* end print media rules */
