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


/* ------------------------------Body/Container------------------------------------ */

body {
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color:#787474;
	font-family: Verdana;
	font-size: 11px;
	/*background:url(../images/background-body.jpg);
	background-repeat:repeat-x;*/
	background-color:#40697c;	
	border: 1px none;
}


.ContainerFWHeader { /* this container stretches the 100%, full length of the page */
	display:block;
	width:inherit;
	height:40px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color:#65236d;
	border: 1px none;
}

.ContainerFWFooter { /* this container stretches the 100%, full length of the page */
	display:block;
	width:inherit;
	height:200px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color:#40697c;
	border: 1px none;
}

.ContainerFWBody { /* this is the body wrapper - starts at the bottom of header.php and closes in footer.php. ensures that bofy bg is white */
	display:block;
	position:relative;
	width:100%;
	height:100%;
	background-color:#ffffff;
	border: 5px none #000000;
}

.ContainerHeader { /* centered container: 980px */
	display:block;
	position:relative;
	width: 980px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	border:1px none;
}

.ContainerBody { /* centered container: 980px */
	display:block;
	overflow:hidden;
	position:relative;
	width: 980px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	border:1px none;
}

.ContainerBlank { /* centered container: 980px */
	display:block;
	overflow:hidden;
	position:relative;
	width: 980px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	/*background-color:#333333;*/
	border:1px none;
}

/* ------------------------------Top BG------------------------------------ */

.bgLeft { 
	display:block;
	position:absolute;
	top:40px;
	left:0px;
	width:50%;
	height:90px;
	background-color:#ffffff;
	border:1px none;
}

.bgRight { 
	display:block;
	position:absolute;
	top:40px;
	left:50%;
	width:50%;
	height:90px;
	background-color:#eaeaea;
	background:url(../images/background-top.jpg);
	background-position:left top;
	background-repeat:repeat-x;
	border:1px none;
}


/* ------------------------------Standard------------------------------------ */

.Box {
	display:block;
	overflow:auto;
	position: relative;	
	border: 1px none #000000;
}

.noBox {
	display:block;
	overflow:hidden;
	position: relative;	
	border: 1px none #000000;
}

.flBox {
	display:block;
	overflow:hidden;
	float:left;
	position: relative;	
	border: 1px none #000000;
}

.frBox {
	display:block;
	overflow:auto;
	float:right;
	position: relative;	
	border: 1px none #000000;
}

.abBox {
	position: absolute;
	border: 1px none #000000;
}


.flBoxHideOverflow { /* prevents the overflow when a hyperlink is cicked*/
	display:block;
	overflow:hidden;
	float:left;
	position: relative;	
	border: 1px none #000000;
}

/* ------------------------------Body Boxes------------------------------------ */


/* ---------Left & Right Cols-------- */

.boxLeftMenu {
	display:block;
	overflow:auto;
	float:left;
	position:relative;
	margin-top:30px;
	min-height:500px;
	width:200px;
	/*background-color:#999999;*/
	border: 1px none;
}

.boxRightMenuCol {
	display:block;
	overflow:hidden;
	float:right;
	position:relative;
	margin-top:30px;
	margin-bottom:20px;
	width:190px;
	/*background-color:#999999;*/
	border: 1px none;
}

.boxBodyWide {
	display:block;
	overflow:auto;
	float:left;
	position:relative;
	width:780px;
	/*background-color:#999999;*/
	border: 1px none;
}

/* ---------Body Cols-------- */

.boxHome { 
	display:block;
	position:relative;
	float:left;
	width:570px;
	height:450px;
	/*background-color:#999999;*/
	border:1px none;
}

.boxBody	 { 
	display:block;
	overflow:hidden;
	position:relative;
	float:left;
	width:570px;
	border:1px none;
	margin-bottom:10px;
}















