/***************************************************************/
/********************  Master Style Sheet  ********************/
/***** COLOR DEFINITIONS *****/
/*---Type and Background colors set in <BODY> tag ***/
/*---<a> Tag set with same color for Link, Visited & Active 
/*---<a> a:hover defined with different color and background
/********** HTML Tags **********/
/*---<p> intentionally undefined - becomes same size as TEXT defined in <BODY> */
/*---.ITALIC defined as a CLASS for design purposes to avoid using <i> or <em> to maintain ACCESSIBILITY */
/*---.BOLD defined as a CLASS for design purposes to avoid using <b> or <strong> to maintain ACCESSIBILITY */
/*---.ReverseColor defined as a CLASS reverses the colors specified in the <BODY> Tag */
/*---.HeadingBackground defined as a CLASS preserves font color and adds a different color background */
body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: medium;
	font-style: normal;
	font-weight: normal;
	background-color: #000000;
	color: #FFFFFF;
}
h1 {
	font-size: xx-large;
	font-style: normal;
	font-weight: bolder;
 	margin: 0px;
 	padding: 0px;
}
h2 {
	font-size: x-large;
	font-style: normal;
	font-weight: bolder;
 	margin: 0px;
 	padding: 0px;
}
h3 {
	font-size: large;
	font-style: normal;
	font-weight: bold;
 	margin: 0px;
 	padding: 0px;
}
h4 {
	font-size: medium;
	font-style: normal;
	font-weight: bold;
 	margin: 0px;
 	padding: 0px;
}
h5 {
	font-size: small;
	font-style: normal;
	font-weight: bold;
 	margin: 0px;
 	padding: 0px;
}
h6 {
	font-size: x-small;
	font-style: normal;
	font-weight: bold;
 	margin: 0px;
 	padding: 0px;
}
a {
	color: #FFFFFF;
}
a:link {
	text-decoration: underline;
}
a:visited {
	text-decoration: underline;
}
a:hover {
	color: #FF0000;
	background-color: #FFFFFF;
	font-weight: bold;
	text-decoration: underline;
}
a:active {
	text-decoration: underline;
}
ul {
	list-style-position: outside;
	list-style-type: square;
}
ul ul {
	list-style-position: outside;
	list-style-type: disc;
}
ul ul ul {
	list-style-position: outside;
	list-style-type: circle;
}

/* --- CLASSES pertaining (usually) to above HTML Tags --- */
.italic {
	font-style: italic;
}
.bold {
	font-weight: bold;
}
.HeadingBackground {
	background-color: #999999;
	padding: 2px;
}
.ReverseColor {
	color: #000000;
	background-color: #FFFFFF;
}
.copyright {
	font-size: xx-small;
	font-style: normal;
	font-weight: bold;
}
.ImgCaption {
	font-size: x-small;
	font-weight: bold;
}

/*------------ .TableNav1 Class for Navigation Table -----------------*/
.TableNav1 {
	background-position: center center;
	border: medium groove #0000FF;
	font-size: 12px;
	font-weight: bold;
	color: #FF0000;
	background-color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
}
.TableNav1 a:link, .TableNav1 a:visited {
	color: #FFFFFF;
	background-color: #0000FF;
	padding: 3px 5px;
	line-height: 24px;
}
.TableNav1 a:hover {
	color: #0000FF;
	background-color: #FFFFFF;
	padding-top: 3px;
	padding-right: 5px;
	padding-bottom: 3px;
	padding-left: 5px;
	line-height: 24px;
}
.TableNav1 a:active {
	color: #FFFFFF;
	background-color: #0000FF;
	padding: 3px 5px;
	line-height: 24px;
}
.TableNav1Heading {
	font-size: 16px;
	font-weight: bold;
	color: #0000FF;
	background-color: #FFFFFF;
	padding: 3px;
}
/*------------ .TableNav2 Class for Navigation Table -----------------*/
.TableNav2 {
	background-color: #999999;
	padding: 5px;
	border-top-width: 5px;
	border-right-width: 5px;
	border-bottom-width: 5px;
	border-left-width: 5px;
	border-top-style: double;
	border-right-style: double;
	border-bottom-style: double;
	border-left-style: double;
	border-top-color: #CCCCCC;
	border-right-color: #666666;
	border-bottom-color: #666666;
	border-left-color: #CCCCCC;
}
.TableNav2 a:link, .TableNav2 a:visited {
	color: #FFFFFF;
	background-color: #999999;
	padding: 3px 5px;
	font-size: 12px;
	font-style: normal;
	line-height: 24px;
	font-weight: bold;
	text-decoration: underline overline;
}
.TableNav2 a:hover {
	color: #000000;
	background-color: #FFFFFF;
	padding-top: 3px;
	padding-right: 5px;
	padding-bottom: 3px;
	padding-left: 5px;
	font-size: 12px;
	font-style: normal;
	line-height: 24px;
	font-weight: bold;
	text-decoration: underline overline;
}
.TableNav2 a:active {
	color: #FFFFFF;
	background-color: #999999;
	padding: 3px 5px;
	font-size: 12px;
	font-style: normal;
	line-height: 24px;
	font-weight: bold;
	text-decoration: underline overline;
}


/*------------------------ .LinkButton Class for HORIZONTAL navigation ---------------- */
/*-- These only work horizontally - no way to control width to even them up for vertical stack --*/
/*-- These must be contained in a defined width table or otherwise to prevent wrapping!! --*/
/*------------------------ If the text/button wraps, it really LOOKS BAD! ---*/
.LinkButton  a:link, .LinkButton a:visited {
	color: #A62020;
	background-color: #FCE6EA;
	margin-right: 2px;
	padding: 3px 10px 2px 10px;
	font-size: 12px;
	font-style: normal;
	line-height: 26px;
	font-weight: bold;
	text-decoration: none;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-color: #FFFFFF;
	border-right-color: #717171;
	border-bottom-color: #717171;
	border-left-color: #FFFFFF;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
}
.LinkButton  a:hover {
	border-top-color: #717171;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #717171;
}
.LinkButton  a:active {
	border-top-color: #FFFFFF;
	border-right-color: #717171;
	border-bottom-color: #717171;
	border-left-color: #FFFFFF;
}
/*-------------------------- .VertNavTbl Class for VERTICAL Navigation Table -------------------*/
.VertNavTable {
	font-family: Arial, Helvetica, sans-serif;
	border-top-width: 3px;
	border-right-width: 3px;
	border-bottom-width: 3px;
	border-left-width: 3px;
	border-top-style: groove;
	border-right-style: groove;
	border-bottom-style: groove;
	border-left-style: groove;
	border-top-color: #FFFFFF;
	border-right-color: #717171;
	border-bottom-color: #717171;
	border-left-color: #FFFFFF;
}
.VertNavTable a:link, .VertNavTable a:visited  {
	display: block;
	padding: 2px 0px 2px 10px;
	color: #A62020;
	background-color: #FCE6EA;
	font-size: 14px;
	font-weight: normal;
	font-style: normal;
	text-decoration: none;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #FFFFFF;
	border-right-color: #717171;
	border-bottom-color: #717171;
	border-left-color: #FFFFFF;
}
.VertNavTable  a:hover {
	border-top-color: #717171;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #717171;
}
.VertNavTable  a:active {
	border-top-color: #FFFFFF;
	border-right-color: #717171;
	border-bottom-color: #717171;
	border-left-color: #FFFFFF;
}
.ClickOnImg {
	font-size: x-small;
	font-style: italic;
	font-weight: bold;
}
.SmallLinks {
	font-size: x-small;
}
