@charset "utf-8";
/* CSS Document for the Codiac Software Project */

/*Colors Used:

Sidebar Color: #927E5A
Left Nav Buttons: #E5C292
Main Text:	#000000 (Black)
Content Background: #FFFFFF (white)
Maroon (for errors): #5A0000
*/

/*Main body style*/
body 	{
	background:#927E5A; 	/*Sidebar Color*/
	font: 90% Verdana, Arial, Helvetica, sans-serif; 
	margin: 0; 				/*Specify margin as 0 for browsers that do not default to 0*/
	padding: 0; 			/*Specify padding as 0 for browsers that do not default to 0*/
	text-align:	left; 		
	color: #000000;			/*Black*/
}

textarea	{
	font: 90% Verdana, Arial, Helvetica, sans-serif; 
}

h1	{
	text-align: center;
	font-size: 140%;
}

h2, h2 a	{
	text-align: center;
	font-size: 110%;
	color:#927E5A;
}

li	{
	margin-top:7px;
	margin-bottom:7px;
}


/*Style for the div that cntains all the content*/
#container	{
	width:100%;				/*Set to 100% to make the entire content area fluid - stretch to width of window*/ 
	min-width:1070px;		/*Set to the total width of all images that are aligned horizontally in the banner, plus 
							1px to accommodate for Firefox. If there are more than one image in the banner that should 
							align horizontally and this value is less than the combined widths of the images plus one px, 
							the images will be places one below the other if the window is reduced in width*/
}

/*Style for the div that contains the entire banner with all its images and text*/
#bannerDiv	{
	background:#FFFFFF;		/*white*/ 
	height:300px;			/*This is the height of the tallest part of the banner*/
}

/*Style for the area below the banner that contains the entire content area.
The content area has a side bar on the left, created with an image that is repeated only in the y-direction.
On the right, another sidebar is created by setting the right margin to be the width of the right sidebar. The right sidebar's
color is the body background.
*/
#contentArea	{
	margin-bottom:0; 
	margin-top:0px; 
	margin-right:89px;			/*Width of the sidebar on the right*/
	background-image:url(../_images/Sidebar89Brown.jpg); 
	background-position:left; 
	background-repeat:repeat-y; 
	background-color:#FFFFFF;	/*White*/
}


/*Style for the bottom navigation area*/
#bottomNav	{
	font-size: 80%;
}

/*Style for the bottom navigation hyperlinks*/
/*#bottomNav	a{
	color: #927E5A; 	
}*/

/*Style for the webmaster information*/
#webmaster	{
	font-size: 70%;
}

/*Style for the webmaster hyperlinks*/
/*#webmaster	a{
	color: #927E5A; 	
}*/

a{
	color: #927E5A; 	/*Sidebar Color */
}

.leftOffset	{
	margin-left:90px;
}

/*Generic class to set the padding on the left and right of regular content, just to allow for space between
the content on the left of t he element and the right of the element.
*/
.contentPadding	{
	padding-left:20px; 
	padding-right:20px;
	padding-top:10px;
	padding-bottom:10px;
}

/*Style to define the buttons that appear on the left hand navigation area*/
.leftNavButtonDiv	{
	width:100%; 			/*Occupy the full width of the container*/
	margin-top:10px;		/*Set some spacing above the 'button'*/ 
	margin-bottom:10px;		/*Set some spacing below the 'button'*/ 
	background:#E5C292;		/*Left Nav Buttons Color*/ 
	border-style:outset;	/*Create a border around the div that looks like a button that is not pressed*/ 
	border-width:thin;
	text-align: center;
	text-decoration:none; 	/*Remove the underlining*/
	color:#000000;			/*Black*/ 
	font-weight:bold; 
	font-size:90%;
	cursor:pointer;
	padding-top:3px;
	padding-bottom:3px;
	
}

/*Style for the reglar buttons in the website*/
.buttonClass	{
	font-weight:bold; 
	font-size:90%;
	background-color:#E5C292;		/*Left Nav Buttons Color*/ 
	
}

/*Style in forms when no error has occurred*/
.noError	{
	font-weight: normal;
	color: #000000;				/*Black*/
}

/*Style in forms when no error has occurred*/
.error	{
	font-weight: bold;
	color: #5A0000;				/*Maroon*/
}

/*Style for label names on forms */
.formFieldName	{
	font-weight: bold;
}


/*Style for fields in forms that have errors*/
.errorFieldBackground	{
	background-color: #E5C292;		/*Left Nav Buttons Color*/ 
}

/*Style for fields in forms that have NO errors*/
.normalFieldBackground	{
	background-color: #FFFFFF;		/*white*/
}


