/* CSS Document */


body {
		background-color: #F3F3F3;
			padding:0;
			margin:0;
			text-align: center;
}
		/*	This style is the key to centering 
			Make sure of the following: 
			- Specify the width and height of the div in pixels
			- Positioning must be absolute
			- Left and top should be at 50% (this centers the TL corner of the div)
			- Left and top margins should = NEGATIVE (1/2 the width & height of the div)
		*/

.main {
	font:Verdana, Arial, Helvetica, sans-serif;
	font-size: 8pt;
}

#container {
			width: 1133px;
			height:677px;
			margin-top:10px;
			background-color:#FFFFFF;
			border: 1px solid #999999;
}

#left_top {
			width: 200px;
			height: 650px;
			float: left;
			margin-top: 0px;
			
}

