@charset "utf-8";
/* CSS Document */

/* 
	--------------------------------------------------------------------
	This section defines the styles for HTML elements regardless of the 
	DIV they are located in
   -------------------------------------------------------------------- 
*/

* {
	margin:0;
	padding:0;
}

body {
	background-color:#3a3a3a;
	text-align:center;
}

.cproctor h1 {
	padding:10px;
	
	font-family: "Century Gothic", Arial, "Microsoft Sans Serif";
	font-size: 18px;
	font-weight:bold;
	
	text-decoration:underline;
}

.cproctor h2 {
	margin-left:-2px;
	padding-top: 10px;
	padding-left: 10px;
	width: 150px;
	height:30px;
	
	background-color: #3a3a3a;
	
	border: 2px solid #999;
	border-left:none;
	
	font-family:"Century Gothic", Arial, "Microsoft Sans Serif";
	font-size:16px;
	font-weight:bold;
	color:#FFF;
}

.cproctor h3 {
	font-family:Arial, Helvetica, sans-serif;
	font-size:13px;
	font-weight:bold;
	padding-left: 55px;
	
	text-decoration:underline;
}

.cproctor p {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	
	line-height: 1.5em;
	
	padding: 15px;
	text-align:justify;
}

/*  -------------------------------------------------------------------- 
						End of HTML elements	
    -------------------------------------------------------------------- 
*/


/*  This element will be our root element... all content will be contained
	inside of here 
*/
.cproctor #container {
	width: 790px;
	
	margin:0 auto;
	border:2px solid #999;
	border-top:none;
	border-bottom:none;
	
	padding-bottom:10px;
	
	background-color:#FFF;
	
	text-align:left;
}

.cproctor #header {
	width: 100%;
	height:75px;
	border:2px solid #CCC;
	border-bottom:none;
	background-color:#FFF;
	margin:0 auto;
}

.cproctor #logo_area {
	width:790px;
	height:75px;
	
	margin-top:10px;
	text-align:left;
}

.clear_float {
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

.cproctor a {
	cursor:pointer;
}

/*  -------------------------------------------------------------------- 
	This section will format the navigation menu, which is just a styled
	unordered list.
    -------------------------------------------------------------------- 
*/

.cproctor #nav_bar {
	/* Dimensions the nav bar */
	width:100%;		/* This will span the entire page */
	height: 32px;	
	
	/* Set the BG color... use a lighter color */
	background-color:#FFFFCC;
	
	/* Puts a nice, light border on the span */
	border: 2px solid #CCC;
}


/* Styles the unordered list we'll use as our navigation bar */
.cproctor #nav_bar ul {
	/* We want the nav menu to only be within 775px window */
	width: 775px;
	
	/* Centers text in the nav bar */
	margin:0 auto;
	
	/* Eliminates the bullets caused by the list */
	list-style:none;
}


/* Styles the list items... or cells */
.cproctor #nav_bar li {
	/* Sets the width of each individual cell */
	width:95px;
	height: 20px;
	
	/* Float the items to the left... causing them to go horizontal */
	float:left;
}	

.cproctor #nav_bar li.searchbox {
	width:250px;
	
	padding-top:7px;

	float:right;
}

/* Styles the links */
.cproctor #nav_bar a {
	width:95px;
	height:24px;
	
	/* This will force the text near the center of cell */
	padding-top: 8px;
	
	/* This block sets all the text properties... */
	font-family:"Century Gothic", Arial, "Microsoft Sans Serif";
	font-size:14px;
	text-decoration:none;	/* Eliminates the underline from links */
	text-align:center;		/* Centers text in cell */
	
	/* Sets the text color to black */
	color:#000;
	
	display:block;	
}

.cproctor #nav_bar a.current_page {
	height:26px;
	
	font-weight:bold;
	
	background-color:#FFF;
}

/* Styles text when mouse is over link */
.cproctor #nav_bar a:hover {
	background-color:#FFF;
}

.cproctor #nav_bar a:active {
	font-weight:bold;
	text-decoration:underline;
}

/* Styles the search button located on the nav bar */
.cproctor #nav_bar input.submit {
	/* Dimensions the button */
	width:70px;
	
	/* Sets the text properties for the button */
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	border:1px solid #CCC;
	
}


/* Styles the search textbox on the nav bar */
.cproctor #nav_bar input.text {
	/* Dimensions text box */
	width:125px;
	
	/* Seperates the textbox from button on right */
	margin-right: 10px;
	
	/* Adds a border to the box */
	border:1px solid #333;
}

.cproctor #footer {
	width:790px;
	
	margin:0 auto;
}

.cproctor #footer p {
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	
	text-align:center;
	
	color:#FFF;
}
	