#CenterContainer
{
    margin: 0 auto;
}
#BodyContentContainer
{
    margin: 0 auto;
    width: 1000px;
    background: url(images/ContentBackground.png) repeat-y center;
    text-align: center;
}
#BodyFooterContainer
{
    margin: 0 auto;
    width: 1000px;
    background: url(images/ContentBackground.png) repeat-y center;
    text-align: center;
}
#BodyContentContainerTop
{
    margin: 0 auto;
    width: 1000px;
    background: url(images/ContentTop.png) repeat-y bottom;
}
#BodyContentContainerBottom
{
    margin: 0 auto;
    width: 1000px;
    height: 18px;
    background: url(images/ContentBottom.png);
    background-repeat:no-repeat;
    background-position:top;
}
#popupbox
{
    margin: 0; 
    margin-left: 40%; /* This gets it relatively center on the screen */
    margin-right: 40%; /* This gets it relatively center on the screen */ 
    margin-top: 50px; /* Makes it a little off the top of the screen */
    padding-top: 10px; /*  Make the text not touching the top on the login box */
    width: 350px; /* 40%;For centering it on the screen */
    height: 150px; /* The height of the login box */
    position: absolute; /* Makes sure its absolute so it doesn't dock with everything else */
    background: #FAF0BF; /* Login Box background color. Change this if desired. */
    border: solid #681c18 2px; /* Makes a black border around the login box */
    z-index: 999; /* Makes it on top of everything else */
    font-family: verdana, arial; /* Sets the font */
    visibility: hidden; /* Makes it hidden at first. Very Important.*/
}
#fadeBack
{
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color:#333333;
    position:absolute;
    z-index:998;
    opacity:.40;
    filter:alpha(opacity=40)
}