/* remember that padding is the space inside the div box and margin is the space outside the div box */

body {
    /* font: 100% Verdana, Arial, Helvetica, sans-serif; */
    font-family: Arial, Helvetica, sans-serif;
    background: #000000;
    margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
    padding: 0;
    text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
    color: #000000;
}
.bodyClass #container {
    width: 900px;
    height: 600px;
	
    background: #000000;
    margin: 0;
    border: 0;
    /* text-align: left; /\* this overrides the text-align: center on the body element. *\/ */

    /* align container vertically */
    position: absolute;
    top: 50%;
    margin-top: -300px; /* half height */
	/* align container horizontally */
	left: 50%;
	margin-left: -450px;
}
.bodyClass #mainContent {
    padding: 0;
    margin: 0;
    border: 0;
    aligh: center;
}

.bodyClass #mainContent li {
    line-style:none;
    width: auto;
    height:600px;
    padding:0;
    float:left;
}

/* .bodyClass #container */
#contacts, #contacts * {
    font-size: 9pt;
    color: #bbb;
    text-decoration: none;
}
