
    /* makes div with id 'content' float in the center of the page, horizontally by css, vertically by javascript */
    body {
        margin: 0;
        padding: 0;
        text-align: center; /* Takes care of horizontal alignment in Internet Explorer */
    }
    #splash {
        position: relative; /* Needed for Safari */
        margin: auto; /* Takes care of horizontal alignment in standards compliant browsers */
        width:500px;
        height:522px;
    }

    div#latest_surround {
        background-image: url('../images/latest_b.gif');
        height: 22px;
        width: 500px;
    }

    .latest {
        text-align: left;
        margin-left: 120px; 
        padding-top: 4px; 
    }
    .latest a {
        font-family: Verdana, Arial, Helvetica, sans-serif;
        font-size: 8pt;
        font-style: italic;
        color: #333333;
        text-transform: lowercase;
        text-decoration: none;
    }
	img {
		border:0px;
	}
