/* CSS Document */
body {
      height: 100%; 
	  /*  background-color: #000;  */
		margin:0;
		padding:0;
		border:0;			/* This removes the border around the viewport in old versions of IE */
		width:100%;
		min-width:800px;		/* Minimum width of layout - remove line if not required */
						/* The min-width property does not work in old versions of Internet Explorer */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	
	}
/* holds all */
/* for index page */
div#container {
		position:relative;	/* This fixes the IE7 overflow hidden bug */
	 	background-color: #000;
		color: #fff;
		clear:both;
		float:left;
		left: 5%;
		width:90%;			/* width of whole page */
		max-width: 950px; 
		/* overflow:hidden;		This chops off any overhanging divs */
		font-family:Verdana, Arial, Helvetica, sans-serif;
		font-size: 100%;
		/* height: 90%;  */
}

/* all other pages */
div#container-p {
		position:relative;	/* This fixes the IE7 overflow hidden bug */
	 	background-color: #ff8;
		color: #000;
		clear:both;
		float:left;
		left: 5%;
		width:90%;			/* width of whole page */
		max-width: 950px; 
				/*overflow:hidden; This chops off any overhanging divs */
		font-family:Verdana, Arial, Helvetica, sans-serif;
		font-size: 100%;
		/* height: 90%;  */
}
					
/* --- left column ------*/
div#contentleft {
	float: left;
	width: 142px; /* for browsers with no escapes at all */
	\width: 148px; /* for IE5/Win */
	w\idth: 142px; /* for good browsers */
	text-align: left;
	/*  margin-left: 10px;  */
	padding-bottom: 10px;
/*	height: 650px; 
	left: 5px;*/
	}	
	

/* --- center column  (main content)---------------- */
div#content  {
	width: auto;
	\width: 85%;
	w\idth: auto;
	/* min-width: 400px;  only NS6, not IE5.5 or NS4 */
	margin-left: 148px; /* T L B R */
	text-align: left;
	padding-top: 0px;
	/* padding-left: 10px;  */
	bottom: auto;
	/*overflow:hidden; This chops off any overhanging divs */
	font-size: 100%;
	}		
