/* 

	Generic style sheet to be used as a starting point when creating a new web site.
	To make it easier for all concerned the following rules should be adhered to.
		1. All entries should be alphabetical (Much easier to find stuff.)
		2. You must document specific styles in classes for example '.className { } '
		3. These specific styles should be in a seperate style sheet called 'classes.css' or similar.
		4. It is best practice to specify a class for each tag you wish to reference with a class.
			EG. td.genericClass { color: #FF0000 } AND div.genericClass { color: #FF0000 } 
		5. Link to a style sheet using the following code.
			<link rel="stylesheet" href="../css/generic.css" type="text/css"> 

*/


/* NORMAL LINK */
a {
	text-decoration: none;
	color: #660066;
}

/* ACTIVE LINK */
a:active {
	text-decoration: underline;
	color: #FF0000;
}

/* FOCUS LINK */
a:focus {
	text-decoration: underline;
	color: #990000;
}

/* HOVER LINK */
a:hover {
	color: #FF6600;
}

/* VISITED LINK */
a:visited {
	color: #9966CC;
}

/* GENERIC STYLE FOR BODY OF DOCUMENT INCLUDING OPTION SCROLLBAR STYLES */
body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color : #000000;
/*
	scrollbar-3d-light-color : #999999;
	scrollbar-arrow-color : #999999;
	scrollbar-base-color : #666666;
	scrollbar-dark-shadow-color : #999999;
	scrollbar-face-color : #666666;
	scrollbar-highlight-color : #999999;
	scrollbar-shadow-color : #999999;
*/
}

/* GENERIC DIV */
div {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
}

/* DEFINITION DESCRIPTION */
dd {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
}

/* DEFINITION LIST */
dl {
}

/* DEFINITION TERM */
dt {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
}

/* form */
form {
}

/* HEADING ONE */
h1 {
}

/* HEADING TWO */
h2 {
}

/* HEADING THREE */
h3 {
}

/* HEADING FOUR */
h4 {
}

/* HEADING FIVE */
h5 {
}

/* HEADING SIX */
h6 {
}

/* HORIZONTAL RULE */
hr {
	height: 1px;
	color: #CCCCCC;
}

/* FORM INPUT */
input {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
}

/* LIST ITEM */
li {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
}

/* ORDERED LIST */
ol {
}

/* PARAGRAPH */
p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
}

/* TABLE */
table {
}

/* TABLE DATA CELL */
td {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
	vertical-align: top;
}

/* TABLE ROW */
tr {
}

/* FORM TEXT AREA */
textarea {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
}

/* UNORDERED LIST */
ul {
}
.headerBG {
	background-color: #660066;
}
.maintext {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	color: #333333;
	white-space: normal;

}
.smalltext {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	color: #333333;
	white-space: normal;

}
.headings {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: bold;
	font-variant: normal;
	color: #660066;

}
.subheading {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #660066;
}
.texthighlights {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #660066;
}
.texthighlights2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #666666;
}
