/*
	NS4 doesn't do well with added colors because of the extra padding added inside each
	block element. So colors are imported. This theme file will, thus, contain mostly
	font stuff.
 */
@import "colors.css";

/*  ~~~~~~~FOR OLD BROWSERS~~~~~~~  */

div#oldbrowser
{
	display: none;	/* hide the standards compliant warning - this isn't a catch all, but works for old browsers */
}
div#headertext
{
	display: none;	/* hide the header text so that the header logo shows instead */
}
#oldbrowser
{
	text-align: center;
}


/*  ~~~~~~~SIMPLE~~~~~~~  */

div
{
	/* this is for netscape 4's sake */
	padding: 0;
	margin: 0;
}
body
{
	margin: 0;
	/*height: 100%;*/
	padding: 20px;
}
h1
{
	font-size: 120%;
	text-decoration: bold;
	font-family: verdana;
	text-align: left;
	margin-top: 0px;
}
h2
{
	font-size: 110%;
	text-decoration: bold;
	font-family: verdana;
	text-align: left;
	margin-top: 0px;
}
h3
{
	font-size: 90%;
	text-decoration: bold;
	font-family: verdana;
	text-align: left;
	margin-top: 0px;
}
p
{
	font-size: 80%;
	font-family: verdana;
	text-align: left;
}
.plain
{
	font-family: verdana;
	font-size: 80%;
}
a
{
	text-decoration: underline;
}
img
{
	border: solid 1px #000;	/* add border to all images */
}
a img
{
	border-width: 0;	/* remove the border around linked images. <img border="0" ..../> is invalid in XHTML 1.1 */
}
.header
{
	border: solid 1px #000;
	height: 100px;
}
.footer
{
	font-size: 70%;
	font-family: verdana;
	text-align: center;
	border: solid 1px #000;
}
.logo
{
	height: 100px;
	width: 100%;
}
.hide
{
	display: none;
}
.main
{
	padding: 5px;
	border: solid 1px #000;
	overflow: hidden;
}
.container
{
	border: solid 1px #000;
	margin-bottom: 20px;
}

/*  ~~~~~~~TOP MENU~~~~~~~  */

.hnav
{
	text-align: center;
	border: solid 1px #000;
	font-family: verdana, helvetica, sans-serif;
	font-weight: bold;
	font-size: 70%;
}
.hnav, .hnav ul li a
{
	/* need to middor veritcal padding on .hnav and child anchor elements
	 * because the anchors are _not_ block elements. since they are not
	 * block elements web browsers will not expand .hnav to contain them
	 * even with the extra padding. by applying the same padding to both
	 * the parent .hnav _looks_ like its containing the child anchor
	 * elements. 
	 */
	padding-top: 3px;
	padding-bottom: 4px;
}
.hnav ul, .hnav ul li
{
	display: inline;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.hnav ul li a
{
	margin: 0 -5px 0 0;
	padding-left: 10px;
	padding-right: 10px;	/* short-hand padding attribute would overwrite
				   top/bottom padding set in a previous rule */
	border-left: solid 1px #000;
	border-right: solid 1px #000;
	white-space: nowrap;
}
.hnav ul li a:link, .hnav ul li a:visited, .hnav ul li a:active, .hnav ul li a:hover
{
	text-decoration: none;
}
* html .hnav ul li, * html .hnav ul li a
{
	width: 1%; /* IE/Mac needs this */
	display: inline-block;	/* IE/Mac needs this */
	/* \*/
		width: auto;
		display: inline; 
	/* reset above hack */
}
* html .hnav, * html .hnav ul a
{
	/* \*/ height: 0.01%; /* hasLayout hack to fix render bugs in IE/Win. 
				 IE/Mac will ignore this rule. */
}
* html .HNAV
{
	padding: 0;	/* IE5/Win will resize #hnav to fit the heights of its
			   inline children that have vertical padding. So this
			   incorrect case selector hack will be applied only by
			   IE 5.x/Win */
}


/*  ~~~~~~~SIMPLE TOP MENU FOR IE 4/5.0/NS4 ~~~~~~~  */

.hnav
{
	white-space: nowrap;
	margin: 0;
	color: #000;
	padding: 3px 0 4px 0;
}
.hnav ul
{
	text-align: center;
	list-style-type: none;
	line-height: normal;
	margin: 0;
	padding: 0;
}
.hnav ul li
{
	display: inline;
	white-space: nowrap;
	/*/*/ /*/display: none;/*  */
}

/*  ~~~~~~~SIDE MENU~~~~~~~  */

.vnav ul, .vnav ul li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: block;
}
.vnav ul
{
	border: solid 1px #000;
	border-bottom-width: 0;
}
.vnav ul li
{
	border-bottom: solid 1px #000;
}
.vnav ul li a
{
	display: block;
	text-decoration: none;
	padding: 2px 10px;
}
/* Hide from IE-mac \*/
* html .vnav ul li a/* hide from IE 5.0 */ {height: 1%;}
/* End hide */
.vnav
{
	font-family: verdana, helvetica, sans-serif;
	font-weight: bold;
	font-size: 70%;
	line-height: 140%; /* Mozilla suffers from a rounding problem, 
						  this value may have to be tweaked if you 
						  change the font family or size 
						*/
	/*/*/ /*/line-height: 120%;/* NS4 Adds too much space, so lower it */
}