/*  Notes:

see http://www.htmlhelp.com/reference/css/properties.html

#000066 - Dark blue used for content
#CC0000 - Red used for content links, and content header
#006600 - Green used for header, and nav link hover background
#E6E6CD - Tan used for content link hover background

*/

/* default applies to all text */
body {
	font-family: "Comic Sans MS"; 
	font-size: 14px; 
	font-weight: bold; 
	color: #FF6699; 
}

a { 
	font-family: "Comic Sans MS"; 
	font-size: 14px; 
	color: #99CC00; 
	font-weight: bold; 
	text-decoration: none; 
	cursor: hand
}

.ContentSmall { 
	font-family: "Comic Sans MS"; 
	font-size: 10px; 
	color: #FF6699; 
	font-weight: bold
}
.Content { 
	font-family: "Comic Sans MS"; 
	font-size: 14px; 
	color: #FF6699; 
	font-weight: bold
}
.ContentBold { 
	font-family: "Comic Sans MS"; 
	font-size: 14px; 
	color: #FF6699; 
	font-weight: bold
}
.ContentItallics { 
	font-family: "Comic Sans MS"; 
	font-size: 14px; 
	color: #FF6699; 
	font-weight: bold ; 
	font-style: italic
}
.ContentHeader { 
	font-family: "Comic Sans MS"; 
	font-size: 16px; 
	color: #FF6699; 
	font-weight: bold
}
.Header {  
	font-family: "Comic Sans MS"; 
	font-size: 19px; 
	color: #99CC00; 
	font-weight: 400
}
.SmallItalics { 
	font-family: "Comic Sans MS"; 
	font-size: 9px; color: #000066; 
	font-weight: bold ; 
	font-style: italic
}



.ContentLink { 
	font-family: "Comic Sans MS"; 
	font-size: 14px; 
	color: #99CC00; 
	font-weight: bold; 
	text-decoration: none; 
	cursor: hand
}
.ContentLinkBold { 
	font-family: "Comic Sans MS"; 
	font-size: 14px; 
	color: #99CC00; 
	font-weight: bold; 
	text-decoration: none 
}

a:hover { 
	font-family: "Comic Sans MS"; 
	font-size: 14px; 
	color: #FFFFFF; 
	background-color: #FF6699; 
	font-weight: bold ; 
	text-decoration: none 
}

a:hover.ContentLink { 
	font-family: "Comic Sans MS"; 
	font-size: 14px; 
	color: #FFFFFF; 
	background-color: #FF6699; 
	font-weight: bold ; 
	text-decoration: none 
}
a:hover.ContentLinkBold { 
	font-family: "Comic Sans MS"; 
	font-size: 14px; 
	color: #FFFFFF; 
	background-color: #FF6699; 
	font-weight: bold ; 
	text-decoration: none 
}

/* used for input boxes, select boxes, etc... */
.form-input {  
	font-size : 12px;
	font-family : Arial, Helvetica, sans-serif;
	background : #CCCCCC;
	color: #000066;
}
/* used for input boxes, select boxes, etc... 
   which have required values , font = red */
.form-input-req {  
	font-size : 12px;
	font-family : Arial, Helvetica, sans-serif;
	background : #CCCCCC;
	color: #FF0000;
}
/* used for labels for input boxes */
.form-select {
	font-size : 12px;
	font-family : Arial, Helvetica, sans-serif;
	color: #000066;
	background: #FFFFFF; 
}
.form-header {
	text-align : center;
	font-size : 14px;
	font-family : Arial, Helvetica, sans-serif;
	font-weight: bold ; 
	background : #56729C;
	color: #FFFFFF;
}

.table-style {
	border-bottom: solid;
	border-color: #56729C;
}

.table-header {  
	text-align : center;
	font-size : 12px;
	font-family : Arial, Helvetica, sans-serif;
	font-weight: bold ; 
	background : #330066;
	color: #FFFFFF;
}
.table-data {  
	font-size : 11px;
	font-family : Arial, Helvetica, sans-serif;
	background : #CCCCCC;
	color: #330066;
}
