/*
	Use this file to set the colors required for the current organization
*/

/* Set the body background and default text color */
body
{
	background-color: #211A4A;
	color: White;
}
/* Default text color, should be same as that defined above */
TD,P,B,DIV.dTx{
	color: White;
}
/* Default colors for all links */
A{
	color: #ADD8E6;
}
/* Color of text that appears within form fields */
INPUT{
	color: #211A4A;
}
/* Don't touch this. Only required if you want a border to show up around forms */
.regCell,.regCellBottom{
	border-left: none;
	border-top: none;
	border-right: none;
}
.regCellBottom{
	border-bottom: none;;
}
/* Error text color */
.error{color:#CC0000}
/* Text color for questions in a poll */
.qCls{
	color: #FF8C00;
}
/* Text color for answers in a poll */
.ansCls{
	color: Green;
}
/* Top navigation link colors. The background-color should be set to the same as that 
for the body above. The color should be set to whatever color the separators should be */
#hnav
{
	background-color: #211A4A;
	color: White;
}
/* What the active link color should be for top nav links */
#hnav a
{
	color: #fff;
}
/* Inactive link color */
#hnav a.linkOff {
	color: #F5EEAE;
}
/* top navigation link colors for when your mouse hovers over a link. 
Usually the same as the inactive link color */
#hnav a:hover
{
	color: #F5EEAE;
}
/* What the active link color should be for side navigation links. The border-bottom
should be set to whatever the body background color is. The color defined here is for
what the active side navigation link color should be */
#vnav ul li a
{
	color: #fff;
	border-bottom: solid 1px #211A4A;
}
/* Inactive side navigation link color */
#vnav ul li a.linkOff {
	color: #FFCC00;
}
/* top navigation link colors for when your mouse hovers over a link. 
Usually the same as the inactive link color */
#vnav ul li a:hover
{
	color: #FFCC00;
}
