﻿/*****************************************************
 * File Name: SiteMap.css
 * Created By: Ken Goodson
 * Date Created: 04/21/2008
 * 
 * Summary:
 * This is a Cascading Style Sheet that controls the 
 * styles of a web page.  This file specifically 
 * controls the look of the sitemap.  Copied from interior.css
 * and modified for the sitemap.
 *
 *
 * Revisions:
 * Modified By      Date        Comments
 * -----------      ----        --------
 * 
 *****************************************************/
body 
{
    background-image:url("../../images/faded-lines.jpg");
    background-repeat:repeat-x; 
}

html
{
    /*FireFox property to force scroll bars to be visable*/
    overflow:-moz-scrollbars-vertical;
    /*IE property to force scroll bars to be visable*/
    overflow:scroll;
}

html,body
{
    margin-top:0px;
}

table
{
    padding:0px;
    border-collapse:collapse;
}

td > *
{
    overflow:hidden;
}     

#contentArea
{
    width:988px;
    border:0px;
    margin-left:auto;
    margin-right:auto;
    padding:0px;    
    background-image:url("../../images/sidebar-background.jpg");
}
/* specific for GulfCrossing Sitemap */
#bottomLeft
{
    height:436px;       
    background-image:url("../../images/man-on-pipe.jpg");
    background-repeat:no-repeat;
    background-position:center bottom; 
}

#navigation
{
    width:240px;
    margin:0px;
    border:0px;
    padding:0px 15px;
    background-image:url("../../images/sidebar-background.jpg");
    vertical-align:top; 
}

/* #news
{
    width:240px;
    margin:0px;
    border:0px;
    padding:0px 0px;
    background-image:url("images/sidebar-background.jpg");
    vertical-align:top;
}  */

#content
{
    width:718px;
    background-color:White;
    vertical-align:top;
    padding-top:10px;           
}

#contentDiv
{
    width:708px;
    margin-right:10px;
    overflow:hidden;
}

#footer
{
    border:0px;
    width: 988px;
    height: 62px;
    margin-left: auto;
    margin-right: auto;
    margin-top:-10px;
    background-image: url(../../images/menu-bar-bottom-secondary.jpg);
    background-position: bottom; 
    background-repeat: no-repeat;
}
#pageControl
{
    text-align:center;
    margin:0px auto;    
}

iframe
{
    height:800px;
    width:695px;
    border:none;
}
/**/

/*site map list section*/

/*Style for the words "Site Map"*/
ul.siteMap
{
	color:black;
	/* added to keep fonts alike 5/21/2008 */
	font-family:Verdana, Arial, Helvetica, sans-serif;
    font-size:13px;
    text-align:justify;		
}

/*selects and styles the first level after the Home item*/
ul.siteMap ul li
{
	list-style-image:url("../../images/bu-arrow-box.jpg");
	list-style-type:none;
}

/*styles text in the first level after the Home item*/
ul.siteMap ul li a
{
	text-transform:uppercase;
}

/*styles the second level after the Home item*/
ul.siteMap ul ul li
{
	list-style-image:none;
	list-style-type:disc;
}

/*styles text in the second level after the Home item*/
ul.siteMap ul ul li a
{
	text-transform:none;
}
/*styles the third level after the Home item*/
ul.siteMap ul ul li li
{
	list-style-image:none;
	list-style-type:square;
}
/*End site map section*/
