@charset "UTF-8";
/* 
	File:			default.css
	Description:	general style definitions.
	ReleaseHistory: 
					20091101: initial version.
	
	
 */
/* General layout tags */
	body {
	margin: 0;
	padding: 0;
	border:0;
	height:100%;
	width:100%;
	text-align: left;
	
	overflow:hidden;
		}
	
	p {
	padding: 0px;
	margin: 0;
	border:0;
	
	}
	
	
		
	
 #main_container {
	/* container with fixed size, floating in the middle of the browser window. */
	border: 0;
	padding: 0;
	margin: 0;
	position: absolute;
	width: 996px;
	height:560px;
	top: 50%;
	left: 50%;
	margin-left: -498px; /* -half of content window width */
	margin-top: -280px; /* half of xontent window height */
	overflow: hidden;
	background-color: #FFFFFF;
	background-image: url(../_img/03_back.png);
	background-repeat: no-repeat;
	color: #000000;
	font-size: 14px;
	font-family: "Century Schoolbook", Century, "Times New Roman", serif;
	z-index: 10;
}

	a:link {
	color: #000000;
	text-decoration: none;
	font-weight: bold;
	}
	a:visited {
	color: #000000;
	font-weight: bold;
	text-decoration: none;
	}
	a:hover {
	color: #00EE00;
	font-weight: bold;
	text-decoration: none;
	}


