BODY   {
	background-image: url(../apsc-images/bg-image.jpg);
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center center;

	color: #000000;
	margin-left: 0px;
	margin-right: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	font-family: tahoma, verdana, arial;

}

P   {
font-size:12px/14px;
margin-left: 5px;
margin-right: 5 px;
}
/* was
P   {
font-size:12px/14px;
margin-left: 5px;
margin-right: 5 px;
margin-top: 3px;
margin-bottom: 5px;
}
*/

H1   {
font-family: tahoma, verdana, arial;
font-weight:bold;
font-size:14px;
	color : #660000;
}

H2   {
font-family: tahoma, verdana, arial;
font-weight:bold;
font-size:12px;
	color : #660000;
}

H3   {
font-family: tahoma, verdana, arial;
font-weight:bold;
font-size:11px;
	color : #660000;
}

H4   {
font-family: tahoma, verdana, arial;
font-weight:bold;
font-size:10px;
	color : #660000;
}

P.links   {
font: bold normal 11px
}

A:link {
color: Blue
}     /* unvisited link */

A:visited {
color: Maroon
}  /* visited link */

A:hover    {
color: Blue;
text-decoration:none;
}   /* mouse over link */

A:active {
color: Blue
}   /* selected link */

.medium
{
font-size:13px;
}

.small
{
font-size:11px;
}

.color-table
{
	background-color: #FAF5EB;
	border-style:solid;
	border-color:black;
	border-width:1px;
}

.errors   {
color: Black;
background-color : yellow;
font-weight:bold;
font-size:14px;
}

.required_form
{
color: #000000;
background: #FFE1B3;
}

.errors_form
{
color: #000000;
background: #FFAEFF;
}

/* ------------------------------- */
/*  Controlling the Unordered List - UL and LI */
UL {
font-size:12px/14px;
margin-left: 12px;
padding-left: 15px;
} 

LI   {
margin-bottom: 8px;
}

/*  Controlling the Ordered List - UL and LI */
OL {
margin-left: 12px;
padding-left: 5px;
} 
/* ------------------------------- */

/*
Notes:
- a:hover MUST come after a:link and a:visited in the CSS definition in order to be effective!!
- a:active MUST come after a:hover in the CSS definition in order to be effective!!
- Pseudo-class names are not case-sensitive.
- IE 4 and higher supports the anchor pseudo-class. NN 4.5 and Netscape 6 support the anchor pseudo-class only partially.

- font property: (weight, style, size/leading, font family) i.e. 
	font: medium italic 24pt/30pt Georgia, serif;
	Order must be correct
*/
