@charset "UTF-8";
/* CSS Document */

#content {
	min-height:250px;		/*Explanation: For browsers who understand min-height, let them use it.*/
	height:auto !important;	/*IE6 don’t understand the !important directive, so the second line will be only for better browsers.*/
	height:250px;			/*For IE6 the height property works as min-height. So this will be applied by IE6, but not any other browsers, due to the !important directive.*/
	background-color: #FFF;
	font-size: 10pt;
	text-align: left;
	padding: 0px 130px 40px 205px;
	margin: 0px 0px 10px 0px;}
