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

 
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background-color: #968a70;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: left; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	background-position: 1;
	height: 700px;
}
.twoColFixRt #container {
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	height: 800px;
	background-image:url(SplashPage/MVG-logowback.png);
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.twoColFixRt #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 227px; 
	height:700px;
	background-image:; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 150px 0px 0px 20px
}

.twoColFixRt #sidebar2 {
	float: left; /* since this element is floated, a width must be given */
	position: relative;
	width: 530px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	height:700px;
	background-image:;
	padding: 50px 0px 0px 0px;
}
.twoColFixRt #mainContent { 
	margin: 0 270px 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	text-align: left;
	
} 

.Body12brown {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
	font-weight:300;
	text-justify:distribute;
	text-align:justify;
}


a:link {
	color: #b7eaf9;
	text-decoration: none;
}
a:visited {
	color: #b7eaf9;
	text-decoration: none;
}
a:hover {
	color: #000000;
	text-decoration: underline;
}
a:active {
	text-decoration: none;
}

