/* CSS for Marvin pages */

a:link{
	text-decoration:none;
	color:black;
}

a:visited{
	text-decoration:none;
	color:gray;
}

a:hover{
	text-decoration:none;
	color:red;
}

body{
	font-family:"Arial";
	font-style:normal;
	font-size:12px;
}
/* Whole Page is 1200 px wide */
#Page
	{
		width: 1200px;
		background-color: #555555;
		margin: 0 auto;
	}
/* Top Bar */
#Top
	{
		width: auto;
		height: 40px;
		background-color: #555555;
	}
/* Content Area */
#Content
	{
		width: 100%;
		margin-left: 0px;
		margin-right: 0px;
		height: auto;
		min-height: 1300px;
		background-color: white;
	}
/* Content Area Layouts */
.content_one_column
	{
		width: auto;
	}

.content_left_column
	{
		width: 180px;
		float: left;
		background-color: white;
	}

.content_center_no_right
	{
		float: left;
		width: 900px;
		height: auto;
		min-height: 600px;
	}

.content_center
	{
		float:left;
		vertical-align:top;
/*		margin-left:190px;
		margin-right: 250px; */
		background-color: white;
		width: 755px;
		height: auto;
		min-height: 600px;

	}

.content_right_column
	{
		float: right;
		width: 230px;
	}

/* Bottom Bar */	
	{
		width: 1080px;
		height: 25px;
		background-color: #555555;
	}



