/* 
PUT ; AFTER ALL PROPERTIES
.bcolor is generic definition
input.subcolor I use for submit input boxes.
input by itself is generic definition for all input boxes, 
text and submit.  It is defined many lines below */
.bcolor {background-color: #00ff00}
input.subcolor {background-color: #66ccff}
input.subcw 
{
	background-color: #66ccff;
	width: 23em;  
	/*USE TO MAKE ALL SUBMIT BUTTONS SAME WIDTH */
}
/*input.subcolor {background-color: #ff9900}
I like these 3 best blue-00ccff oranges-ff9900,ffcc00
default is gray-cccccc
red-ff0000, shades-ff3300,ff0033,ff9966,ff6633,ff3333, ff6666
blue-0000FF, shades-0099ff,00ccff,3399ff,33ccff
yellow-FFFF00, shades-FFFF33,FFFF66,ffff99,ffffcc
/*below works! but all inputs, both input text boxes and 
input submit buttons, are this color.  The square around the
radio buttons is also this color and may not be same as 
background color on rest of page.  so be careful using it.
For now, don't use, just go with defaults.
It is used many lines below, but just to define font.
input {background-color: #0000ff} 
select {background-color: #0000ff} */

/*use these classes anywhere with class="whatever" */
.defaults {
text-align: center;
color: black;
font-family: arial;
}

/*p
{
text-align: left;
color: blue;
font-family: arial;
}

/*.center {text-align: center}
p {margin-left: 20px}
p {font-family: "sans serif"}

p
{
text-align: center;
color: black;
font-family: arial;
}
*/

BODY
{
	/* client wants the following: */
	FONT-SIZE: 8pt;
    FONT-FAMILY: Verdana, Arial, sans-serif;
	Color: #000000;
	background-color: #cccccc;
	Margin: 0;
	/*my original
	FONT-SIZE: 12pt;
    FONT-FAMILY: Arial, Verdana, sans-serif;
	Color: #000000;
	bgColor: #e8e8e8;
	leftMargin: 0;
	topMargin: 0;
	don't think I can define below
	link=#ee0000 vLink=#ee0000 alink="#0000FF"
	*/
}
P
{
	/* client wants the following: */
    FONT-SIZE: 8pt;
    FONT-FAMILY: Verdana, Arial, sans-serif;
	text-align: center;
	/*my original
	FONT-SIZE: 12pt;
    FONT-FAMILY: Arial, Verdana, sans-serif;
	Color: #000000;
	text-align: center;
	*/
}
/* below needed to align 0boatt.gif in headadd.php */
P.add 
{
	text-align: right;
}
p.head
{
	font-size: 12pt;
	text-decoration: underline;
	font-weight: bold;
}
/*added some things to below */
TABLE
{
	/* client wants the following: */
    FONT-SIZE: 8pt;
    FONT-FAMILY: Verdana, Arial, sans-serif;
	/*background-color: #cccccc;
	/* above seems unnecessary.  screws up 1staboard
	logo header
	width: 100%;
	not sure you want above. causes buttons to be too
	far apart.  is it needed for anything? yes, set this
	in table.border because you want border to be full 
	width.
	/*background-color: #e8e8e8; not on color chart, 
	use #cccccc 
	/*my original
	FONT-SIZE: 12pt;
    FONT-FAMILY: Arial, Verdana, sans-serif;
	Color: #000000;
	width: 100%;
	background-color: #ffffcc;
	Margin: 0;
	/*css properties differ slightly from inline properties
	border: 3;
	border-color: not bordercolor: 
	border-color: #0000ff; just put all on 1 line like
	border: solid 3 #0000ff;
	background-color: not bgcolor: 
	text-align: center; not align: center; 
	don't think above is same as centering table on page,
	but never verified.
	Margin-left: 0; not leftMargin: 0;
	Margin-top: 0; not topMargin: 0;
	*/
}
table.border
{
/*not used for now, in future, use to define border around
screen.  will only be used on first table of the page
	border: solid 3 #0000ff;
	width: 100%;
*/
}
TH
{
	PADDING-RIGHT: 4px;
    PADDING-LEFT: 4px;
    PADDING-BOTTOM: 4px;
    PADDING-TOP: 4px;
	/* client wants the following: */
	FONT-SIZE: 8pt;
    FONT-FAMILY: Verdana, Arial, sans-serif;
	color: #000000;
	background-color: #bcc28b;
	text-align: center;
	/*my original
	FONT-SIZE: 12pt;
    FONT-FAMILY: Arial, Verdana, sans-serif;
	color: #ffffff;
	background-color: #0000ff;
	*/
}
TH.left
{
	PADDING-RIGHT: 4px;
    PADDING-LEFT: 4px;
    PADDING-BOTTOM: 4px;
    PADDING-TOP: 4px;
	FONT-SIZE: 8pt;
    FONT-FAMILY: Verdana, Arial, sans-serif;
	color: #000000;
	background-color: #bcc28b;
	text-align: left;
}
TR
{
	/* client wants the following: */
    FONT-SIZE: 8pt;
    FONT-FAMILY: Verdana, Arial, sans-serif;
	/*my original
	FONT-SIZE: 12pt;
    FONT-FAMILY: Arial, Verdana, sans-serif;
	Color: #000000;
	bgColor: #e8e8e8;
	leftMargin: 0;
	topMargin: 0;
	*/
}
TD
{
	/* client wants the following: */
    FONT-SIZE: 8pt;
    FONT-FAMILY: Verdana, Arial, sans-serif;
	text-align: center;
	/*my original
	FONT-SIZE: 12pt;
    FONT-FAMILY: Arial, Verdana, sans-serif;
	Color: #000000;
	bgColor: #e8e8e8;
	leftMargin: 0;
	topMargin: 0;
	align: center;
	text-align: center;
	*/
}
TD.addleft
{
    FONT-SIZE: 8pt;
    FONT-FAMILY: Verdana, Arial, sans-serif;
	text-align: left;
}
TD.addright
{
    FONT-SIZE: 8pt;
    FONT-FAMILY: Verdana, Arial, sans-serif;
	text-align: right;
}
TD.addcenter
{
    FONT-SIZE: 8pt;
    FONT-FAMILY: Verdana, Arial, sans-serif;
	text-align: center;
}
TD.subalign
{
	text-align: center;
}
DIV
{
    FONT-SIZE: 8pt;
    FONT-FAMILY: Verdana, Arial, sans-serif;
}
SPAN
{
    FONT-SIZE: 8pt;
    FONT-FAMILY: Verdana, Arial, sans-serif;
}
INPUT
{
	/* client wants the following: */
    FONT-SIZE: 8pt;
    FONT-FAMILY: Verdana, Arial, sans-serif;
	/*my original
	FONT-SIZE: 10pt;
    FONT-FAMILY: Arial, Verdana, sans-serif;
	*/
}
OPTION
{
	/* client wants the following: */
    FONT-SIZE: 8pt;
    FONT-FAMILY: Verdana, Arial, sans-serif;
	/*my original
	FONT-SIZE: 10pt;
    FONT-FAMILY: Arial, Verdana, sans-serif;
	*/
}
SELECT
{
	/* client wants the following: */
    FONT-SIZE: 8pt;
    FONT-FAMILY: Verdana, Arial, sans-serif;
	/*my original
	FONT-SIZE: 10pt;
    FONT-FAMILY: Arial, Verdana, sans-serif;
	*/
}
/* input, option, and select needed on addgc.php so that
everything lines up. For some reason, option boxes not 
using Arial font. */
INPUT.add
{
	FONT-SIZE: 10pt;
    FONT-FAMILY: Arial, Verdana, sans-serif;
}
OPTION.add
{
	FONT-SIZE: 10pt;
    FONT-FAMILY: Arial, Verdana, sans-serif;
}
SELECT.add
{
	FONT-SIZE: 10pt;
    FONT-FAMILY: Arial, Verdana, sans-serif;
}
.textareastandard
{
    FONT-SIZE: 8pt;
    FONT-FAMILY: Verdana, Arial, sans-serif;
}
A
{
    COLOR: #003399;
    FONT-FAMILY: Verdana, Arial, sans-serif;
}
A:visited
{
    COLOR: #6699cc;
}
A:hover
{
}
A.menu_nos
{
    FONT-SIZE: 7pt;
    COLOR: #003399;
    FONT-FAMILY: Verdana, Arial, sans-serif;
}
A.menu_nos:visited
{
    FONT-SIZE: 7pt;
    COLOR: #6699cc;
    FONT-FAMILY: Verdana, Arial, sans-serif;
}
A.blink
{
    FONT-SIZE: 9pt;
    /*COLOR: blue;
	*/
    COLOR: #ccccff;
    FONT-FAMILY: Verdana, Arial, sans-serif;
    TEXT-DECORATION: none;
}
A.blink:hover
{
    FONT-SIZE: 9pt;
    COLOR: white;
    FONT-FAMILY: Verdana, Arial, sans-serif
}
A.blink:visited
{
    FONT-SIZE: 9pt;
    COLOR: #00ccff;
    FONT-FAMILY: Verdana, Arial, sans-serif;
}
A.LoggedIn
{
    FONT-SIZE: 8pt;
    COLOR: #003399;
    FONT-FAMILY: Verdana, Arial, sans-serif;
}
A.LoggedIn:visited
{
    FONT-SIZE: 8pt;
    COLOR: #6699cc;
    FONT-FAMILY: Verdana, Arial, sans-serif;
}
A.Invis
{
    FONT-SIZE: 8pt;
    COLOR: maroon;
    FONT-FAMILY: Verdana, Arial, sans-serif;
}
A.Invis:hover
{
    FONT-SIZE: 8pt;
    COLOR: maroon;
    FONT-FAMILY: Verdana, Arial, sans-serif;
}
A.Invis:visited
{
    FONT-SIZE: 8pt;
    COLOR: maroon;
    FONT-FAMILY: Verdana, Arial, sans-serif;
}

