@charset "utf-8";
/* CSS Document */
@import url("body.css");

a {color:#0e76bc; text-decoration:none}
a:hover {color:#bf1e2e}

html,body {
    margin:0;
    padding:0;
    height:100%; /* needed for container min-height */
	background:url(../pics/mainBg.png) repeat-x;
    font:normal .85em calibri, Verdana, Arial, Helvetica, sans-serif;
}

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

div#mainContainer {
	width:980px;
	margin:auto;
}

div#header {
    padding:0em;
}

div#content {
    padding:1em 0em 5.9em; /* bottom padding for footer */
	background:url(../pics/bg_mainBody.png) repeat-x;
}

div#footer {
    position:absolute;
    width:100%;
    bottom:0; /* stick to bottom */
	background:url(../pics/bg_footer.png) repeat-x;
	height:70px
}

