@charset "utf-8";
/* CSS Document */

@import url("body.css");
@import url("nav.css");

div#clear {clear:both}

html,body {
    margin:0;
    padding:0;
    height:100%; /* needed for container min-height */
    background:#fff url("../pics/bg_main.gif") repeat-x;
    font:normal 0.85em Arial, Helvetica, sans-serif;
    color:#666;
}

div#container {
    position:relative; /* needed for footer positioning*/
    margin:0 auto; /* center, not in IE5 */
    width:100%;
   
    height:auto !important; /* real browsers */
    height:100%; /* IE6: treaded as min-height*/

    min-height:100%; /* real browsers */
}


div#container_details {
	width:900px;
	margin:auto;
	background-color:#fff;

}

div#header {
	width:900px;
	margin:auto;
    padding:1em;
    background:#ddd;
    border-bottom:6px double gray;
}

div#content {
	width:95%;
	margin:auto;
    padding:1em 1em 15em; /* bottom padding for footer */
}


div#footer {
    position:absolute;
    width:100%;
	margin:auto;
    bottom:0; /* stick to bottom */
	color:#fff;
	font:normal .85em Arial, Helvetica, sans-serif;
    background:#414141;
}

