﻿/*****************************************************
 * File Name: HomePage.css
 * Created By: Michael Walker
 * Date Created: 10/7/2007
 * 
 * Summary:
 * This is a Cascading Style Sheet that controls the 
 * styles of a web page.  This file specifically 
 * controls the look of the Boardwalk Home Page.
 *
 *
 * Revisions:
 * Modified By      Date        Comments
 * -----------      ----        --------
 * Ken Goodson      04/23/2008  Added the a:hover selector to change the cursor
 *                              to a finger pointing when the cursor is over
 *                              any anchor tag on the home page.  This was
 *                              done because IE did not display the pointer
 *                              when the cursor was over the three pipeline
 *                              logo links at the bottom of the home page.
 * Ken Goodson      03/04/2009  Changed the bottom links container (siteLinks)
 *                              style to clear: both which allows the 3 pipeline
 *                              logos to display correctly in FireFox and all others.
 *****************************************************/

html
{
    margin-top:0px;
    /*FireFox property to force scroll bars to be visable*/
    overflow:-moz-scrollbars-vertical;
    /*IE property to force scroll bars to be visable*/
    overflow:scroll;
    
}

body 
{
    background-image:url(../../images/fade-background.jpg);
    background-repeat:repeat-x;
    margin-top:0px;
    
}
/* kg-Added to change cursor when hovering over the icons for the individual pipeline logos */
a:hover
{
    cursor: pointer;
}

#contentArea
{
    width:967px;
    margin:0px auto 5px auto;
    height:235px;
    clear:left;
    background-color:white;
}

#welcome
{
    float:left;
    height:250px;
    width:350px;
    overflow:hidden;
    margin:10px 0px 0px 0px;
    padding: 0px 20px 0px 20px;
    border-right:2px solid #868686;
}

#press
{
    width:530px;
    height:250px;
    padding-right:20px;
    padding-top:10px;
    padding-left:20px;
    overflow:hidden;
    margin:0px 0px 0px 0px; 
}

#siteLinks
{
    clear: both;
    width:967px;
    height:114px;
    background-image:url(../../images/bu-area-fade.jpg);
    margin:5px auto 0px auto;
}

#gulfCrossingLogo
{
    background-image:url(../../images/bu-gulf-crossing.jpg);
    height:114px;
    width:224px;
    float:left;
    margin-left:70px;
}

#gulfSouthLogo
{
    background-image:url(../../images/bu-gulf-south.jpg);
    height:114px;
    width:224px;
    float:left; 
    margin-left:80px;   
}


#texasGasLogo
{
    background-image:url(../../images/bu-texas-gas.jpg);
    height:114px;
    width:224px;
    float:left;  
    margin-left:80px;  
}



#footer
{
    margin:0px auto;
    background-image:url(../../images/menu-bar-bottom.jpg);
    background-repeat:no-repeat;
    width:985px;
    height:53px;
    clear:left;
}
