body
{
	/*ie nedds these*/
	margin:0px;
	padding:0px;
	/*align center for IE*/
	text-align:left;	
}
/*
	make text more visible
*/



/* Neutralize styling:  */
* {
        margin: 0;
        padding: 0;
}


div
{
	text-align:left;
	line-height:1.2em;
}

/*we use container DIV  to center #content and #navigation in the page*/
#container1
{
	/*our page width*/
	width:100%;
	/*center relative div*/
	margin:auto auto;
	/*make space for the header*/
	margin-top:180px;
}

.table_center
{
align:center;	
margin: 0 auto;
	
}

#content1
{
	/*  we substracted navigation width from page width and got 800px*/
	width:100%;
	height:auto;
	/* have a minimum height, this does not work in IE*/
	min-height:300px;
	/* use float to inverse position with navigation DIV*/
	/*color section for identification*/
	/*background:#c0c0c0;*/
}

/*
	internet explorer min-height fix 
	can be removed if you don't need a minimum height
	in this way your CSS will be clean from hacks
*/
* html #content1
{
	height:700px;
}


#header1
{
	/* postion absolute so we can place our div anywhere on the page, in this case the first div*/
	position:absolute;
	/*our page width*/
	width:100%;
	/*center absolute  div*/
	/*put div on the center of the page*/
	/*move div 50% right to put it in the center of the page*/
	/*pu the div fist on the page*/
	top:0px;
	height:200px;
	/*color section for identification*/
	/*background:#f9acac;*/
}

