/* -------------------------------------------------------------*/
/* Program:     Style Sheet					*/
/* Copyright:   Larry Blake	 				*/
/*								*/
/* History				 			*/
/* -------							*/
/* -------------------------------------------------------------*/

body {
	background: #70B090;
}

.outside {
	background: .body.background;
}


/* To emphasize a cell, based on current style */

.hilite {
	background: #ffff70;
}


/* Blank */

.blank {
	font-family: Verdana;
	font-weight: normal;
	font-size: 11;
	background: .body.background;
	color: .body.background;
	z-index: 0;
}

/* Tab strip: TABSON is current selection.  TABSOFF is available.  TABSNONE is rest of row. */
/*            TABSOFF_ is available with an overridden style.                               */

.tabson {
	font-weight: bolder;
	font-size: 11;
	text-align: center;
	border-left: 1px solid black;
	border-top: 1px solid black;
	border-right: 1px solid black;

}

.tabsoff {
	font-size: 11;
	background: #ccccf0;
	text-align: center;
	border: 1px solid black;
}

.tabsnone {
	border-bottom: 1px solid black;
}


/* Hidden Link, see variations below */

.hidelink {}



/* General text */

.text {
	font-family: Verdana;
	font-weight: normal;
	font-size: 11;
	color: black;
	background: white;
	z-index: 0;
}


/* Heading, based on current style */

.hdg {
	font-weight: bolder;
	color: navy;
}

/* Message field, based on current style */

.message {
	font-weight: bolder;
	color: red;
}


/* Hidden links */

	a.hidelink {text-decoration: none;}
	a.hidelink:link {color: black;}
	a.hidelink:active {color: red;}
	a.hidelink:visited {color: black;}
	a.hidelink:hover {color: red;}


/* General links */

	a {text-decoration: underline;}
	a:link {color: blue;}
	a:active {color: blue;}
	a:visited {color: blue;}
	a:hover {color: red;}

