﻿/* ---------------------------------------------------------------------------------

	File: 			layout.css
	Author: 		Walter Botich
	Created: 		01/07/08
	Modified:		10/06/08
	Description: 	Sets default layout for the site
					Included as part of screen.css

---------------------------------------------------------------------------------- */

/* GLOBALS ----------------------------------------------------------------------- */
body {
    margin: 0 auto;
    text-align: center;
    background: #5c5c5c url("../../../images/bg-body.gif") no-repeat top;
}

#popup {
    font-size: 1em;
    background: #5c5c5c;
}

/* Generic container */
.container {
    margin: 0;
}

/* Generic hide/show classes */
.hide {
    display: none;  
}
.show {
    display: inline;   
}

/* Force parent element to enclose any floated divs it contains */
.enclose-floats {
        /* IE fix because it does not recognize ':after' */
        zoom: 1;
    }
    .enclose-floats:after {
        content: ".";
        display: block;
        height: 0;
        clear: both;
        visibility: hidden;
    }

/* Columns */
.two-column, .three-column, .four-column {
    /* IE 5.5/6 bug fix */
    display: inline;
    /* end bug fix */
    float: left;
    margin: 0 20px 0 0 !important;
}
    /* 2 column layout */
    .two-column {
        width: 45%;
    }
    /* 3 column layout */
    .three-column {
        width: 30%;
    }
    /* 4 column layout */
    .four-column {
        width: 22%;
    }

/* Scrollable region */
.scroll-vert {
    margin: 1em 0 !important;
    overflow: auto;
    /* IE bug fix */
    /*#padding-right: 16px; */
    overflow-x: hidden;
    overflow-y: scroll;
    /* end bug fix */
    background: #ffffff;
    border: 1px solid #cccccc;
}

/* Multi media classes */
.video-viewer, .map-viewer, .interactive-viewer {
    margin: 1em 0;
    background: #000000;
    border: 1px solid #cccccc;
}
    .video-viewer {
        width: 332px;
        height: 290px;
    }
    .map-viewer {
        width: 750px;
        height: 500px;
    }
    .interactive-viewer {
        width: 680px;
        height: 200px;
        margin: 5px;
    }
	
/* Content only visible to screen readers */
.screen-reader-only { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* UNIQUE PAGE CONTAINERS ----------------------------------------------------------- */

/* Can be used as the "root" container */
#page {
    margin: 0 auto;
    width: 950px;
    text-align: left;
    background: #ffffff;
}
    
/* Header content */
#header {
    position: relative;
}
    #header h1 {
        display: none;
    }

/* Navigation menus */
#nav-horz {
    clear: both;
    float: left;
    width: 100%;
    margin-bottom: 10px;
    background: url("../../../images/bg-sign_bar.jpg") repeat-x top;
}
    #nav-horz ul {
        margin: 0;
        padding: 0 20px 0;
    }
        #nav-horz ul li {
            display: inline;
            float: left;
            margin: 0;
            padding: 0;
        }
        #nav-horz ul li.search {
            padding: 7px 5px 7px 10px;
            background: url("../../../images/bg-nav.jpg") repeat-x top;
        }
        #nav-horz ul li.admin {
            padding: 12px 15px;
            background: url("../../../images/bg-nav.jpg") repeat-x top;
            border-right: 2px solid #8294aa;
        }
            #nav-horz ul li.admin a {
                text-decoration: none;
                text-transform: uppercase;
                color: #ffffff;
            }
            #nav-horz ul li.admin a:hover, #nav-horz ul li.admin a.selected {
                color: #ffce29;
            }
        
#nav-vert {
       float: left;
       width: 220px;
       margin: 5px;
}
    #nav-vert ul {
        margin: 0;
        font-size: .85em;
    }
        #nav-vert ul li {
            margin: 0 0 .25em 0;
            padding: 0;
            list-style-type: none;
            background: #cdcdcd url("../../../images/bg-nav_vert.gif") repeat-x top;
            border: 1px solid #c0c0c0;
        }
        #nav-vert ul li a {
            display: block;
            /* IE 6 bug fix */
            height: 1%;
            /* end bug fix */
            padding: 5px;
            font-weight: bold;
            color: #333333;
            text-align: right;
            text-decoration: none;
            text-transform: uppercase;
            
        }
            #nav-vert ul li a:hover, #nav-vert ul li a.selected {
                color: #000000;
                background: #ffce29;
            }
            #nav-vert ul li a img {
                margin-left: 4px;
                vertical-align: middle;   
            }
     
     /* Tier 3 navigation */
     #nav-vert ul ul {
        font-size: 1em;
    }   
        #nav-vert ul li ul li {
            margin: 0;
            background: #e1dfdf;
            border: none;
        
        }
        #nav-vert ul li ul li a {
            padding-right: 24px;
            text-transform: none;
            color: #666666;
        }
        
        /* Tier 4 navigation */
        #nav-vert ul li ul li ul li {
            background: #efefef;
        }
        #nav-vert ul li ul li ul li a {
            padding-right: 45px;
            font-weight: normal;   
        }

/* Main content */
#content {
    margin: 10px;
}
#content table th a { font-size: .8em; color: #ffffff; }
#content #dashboard { padding: .5em; text-align: center; background: #fee799; }
#content #dashboard h3 { font-size: 1.4em; color: #666666; }
#content #charts { text-align: center; }
#content.stand-alone, #content .stand-alone {
    margin: 0 3em;
}
    #content .stand-alone h2 {
        text-transform: uppercase;   
    }
    
/* Footer content */
#footer {
    clear: both;
    padding: .75em;
    font-size: .9em;
    color: #ffffff;
    background: #333333;
}
    #footer ul {
        margin: 0;
    }
        #footer ul li {
            display: inline;
            margin: 0 1em 0 0;
            padding: 0;
        }
        #footer a {
            color: #ffffff;
        }

/* ADDITIONAL CLASSES --------------------------------------------------------------- */

/* Path information */
.breadcrumbs {
	margin-bottom: .5em;
	font-size: .85em;
}

/* Login section */
.login {
    width: 35%;
    margin: 1em auto;
}
.logout {
    position: absolute;
    z-index: 1;
    top: 5px;
    left: 0px;
    width: 930px;
    padding: .5em 0;
    font-size: .9em;
    color: #666666;
    text-align: right;
}

/* Search section */
.search {
    
}

/* Used to correct formatting issue in Contribute edit mode */
/* The left-most column on the homepage needs a width so that an ad correctly displays under the flight status */
.left-column {
    width: 230px;   
}

/* Body text section */
.section {
    float: left;  
    margin: 5px 5px 5px 10px;
}
    /* used on all sub pages */
    .section.full {
        width: 685px;
    }
    /* used only on home page */
    .section.home {
        width: 440px;
    }
    .section h2 {
        text-transform: uppercase;   
    }

/* ID for body content section editable by Contribute */
#contribute {
    margin: 1em 0;
}
    #contribute img {
        float: left;
        margin: .2em .6em .2em 0;
    }

/* ID for iCims Recruiter information iframe */
#icims {
    overflow: auto;
    width: 100%;
    height: 775px;
}

/* For event viewer section of pages */
/* Used so that the loading status shows inside of the event viewer box */
/* Not put in .module because of rendering issues with IE6 */
#events {
    position: relative;
}

/* For modules in popup windows */
#popup .module {
    width: 775px;
    height: 575px;
    margin: 0 auto;
}

/* For modules that are listings of events */
#events .module {
    width: 100%;
    margin: 0;
    font-size: 1em;
}
    #events .module h3 {
        font-size: .9em;   
    }
    #events .module .module-content select {
        margin: 0;   
    }
    #events .module .module-content .empty-message {
        font-weight: bold;
        vertical-align: top;
    }
/* For modules on section pages */
.section .module {
    margin: 0 0 5px 15px;
}
/* Default module styling */
.module {  
    width: 220px;
    margin: 5px;
    font-size: .8em;
    text-align: left;
    background-color: #e6e6e6;
    border: 1px solid #8c8d8e;
    border-bottom: 5px solid #002147;
}
    .module.featured {
        background-image: url("../../../images/bg-module_featured.gif");
        background-position: left top;
        background-repeat: no-repeat;
    }
    .module .module-content {
        margin: 1em;
    }
    .module h3 {
        padding: .25em .5em;
        font-size: 1.2em;
        text-transform: uppercase;
        color: #ffffff;
        background: #1247a7 url("../../../images/bg-module.jpg") repeat-x top;
    }
        .module h3 img {
            margin-right: 10px;
            vertical-align: middle;
            border: 1px solid #000000;
        }

.weather {
    position: absolute;
    z-index: 1;
    top: 135px;
    left: 0px;
    width: 930px;
    font-size: .9em;
    color: #666666;
    text-align: right;
}
    .weather img {
        vertical-align: middle;   
    }

.ads {
    width: 220px;
    margin: 5px 6px;
}

/* Event details in a scrollable region */
.details {
    width: 225px;
    height: 440px;
}
    .details h4 {
        padding: .4em .35em;
        font-size: 1em;
        color: #a47f03;
        background: #fee799 url("../../../images/bg-gold_gradient.gif") repeat-x bottom;
        border-bottom: 1px solid #cccccc;
    }
    .details label {
        margin: 0px;
        font-size: 1em;
        color: #787878;
    }
    .details p, .details ul {
        font-size: .85em;
    }
        .details p {
            margin: 0 0 .5em;
        }
        .details ul {
            margin-top: -.75em;   
        }
    .details .gallery {
        margin: 0 0 0 35px;
    }
        .details .gallery img {
            padding: 0 15px 15px 0;
        }

/* Legend for calendar information */
table.legend {
    width: 100%;
    border-collapse: collapse;
}
    table.legend tr th, table.legend tr td {
        padding: .3em .5em;   
    }
        table.legend tr th {
            font-weight: bold;
            color: #a47f03;
            background: #fee799 url("../../../images/bg-gold_gradient.gif") repeat-x bottom;
            border-bottom: 1px solid #cccccc;
        }
        table.legend tr td {
            font-size: .9em   
        }

/* Flight status display information */ 
#flights {
    /* Used so that the loading status shows inside of the flight status box */
    position: relative;
}
    #flights div {
        margin: 0 !important;   
    }
    #flights table {
        width: 100%;
        border-collapse: collapse;
        border-width: 0;
    }
        #flights table tr.alternate{
            background: #efefef;
        }
            #flights table tr th, #flights table tr td {                
                vertical-align: middle;
            }
            #flights table th.airline, #flights table th.city, 
            #flights table td.airline, #flights table td.city {
                width: 130px;
                border-left-width: 0;
            }
            #flights table td.airline {
                text-align: center;
            }
            #flights table th.flight, #flights table th.sta, #flights table th.eta, #flights table th.std, #flights table th.etd,
            #flights table td.flight, #flights table td.sta, #flights table td.eta, #flights table td.std, #flights table td.etd {
                width: 80px; 
            }
            #flights table th.gate, 
            #flights table td.gate {
                width: 60px;   
            }
            #flights table th.status,
            #flights table td.status {
                font-weight: bold;
                border-right-width: 0;
            }
            
            #flights table tr th {
                padding: 3px 5px 0px 5px;
                font-weight: bold;
                background: #fee799 url("../../../images/bg-gold_gradient.gif") repeat-x bottom;
                border-width: 0 1px 0 1px;
                border-style: solid;
                border-color: #cccccc;
            }
            #flights table tr td {		        
		        padding: 7px 5px;
		        font-size: .9em;
		        border: 1px solid #cccccc;
            }
            #flights table tr td.grouping {
                font-weight: bold;
                color: #666666;
                background: #fee799;
                border-left-width: 0;
            }
    #flights table th.airline input, #flights table th.city input{
        width: 124px;
    }
    #flights table th.flight input {
        width: 74px; 
    }
    #flights input.filtered {
        padding: 2px;
        font-weight: bold;
        color: #cc6600;
        border: 1px solid #ff6600;
    }
    #flights table a {
        color: #3333FF;   
    }
    #flights .flights {
        height: 350px;
        width: 747px;
        border-width: 0;
    }

/* ToolTip hover window */
.tooltip {
	margin: 0;
	padding: .5em 1em;
	font-size: .85em;
	color: #333333;
    border: 1px solid #ffce29;
    background-color: #fdefbd;
}
    .tooltip h5 {
        color: #666666;
    }
    .tooltip label {
        margin: 0;   
    }

/* Redefine the default tab styling */
    #flights .ajax__tab_xp .ajax__tab_body {
        padding: 0;
    }
        #flights .ajax__tab_xp .ajax__tab_active .ajax__tab_tab {
            background: url("../../../images/bg-tab_active.gif") repeat-x;   
        }
        #flights .ajax__tab_xp .ajax__tab_active .ajax__tab_inner {
            background: url("../../../images/bg-tab_active_left.gif") no-repeat; 
        }
        #flights .ajax__tab_xp .ajax__tab_active .ajax__tab_outer {
            background: url("../../../images/bg-tab_active_right.gif") no-repeat right; 
        }
        
/* Styling for accordion control */
.accordion-header, .accordion-header-selected {
    cursor: pointer;
    margin: 5px 0 0 0;
    padding: .5em;
    font-size: .9em;
}
    .accordion-header {   
        background: #ffffff url("../../../images/bg-gray_gradient.gif") repeat-x top;
        border: 1px solid #999999;
    }
    .accordion-header-selected {
        background: #fee799 url("../../../images/bg-gold_gradient.gif") repeat-x bottom;
        border-width: 1px 1px 0px 1px;
        border-style: solid;
        border-color: #999999;
    }
        .accordion-header table, .accordion-header-selected table {
            width: 100%;
        }
            .accordion-header table td, .accordion-header-selected table td {
                padding: 0 .25em 0 .25em;
                vertical-align: top;   
            }
.accordion-content {
    padding: .5em 1em;
    background: #fdefbd;
    border: 1px solid #999999;
}
    .accordion-content .details {
        height: 1%;
        width: auto;
    }

/* Status indicator class while information loads */
/* Parent container must have "position: relative;" */
.loading {
    position: absolute;
    z-index: 20000;
    top: 30px;
    left: 44%;
    right: 44%;
    padding: 20px 0;
    text-align: center;
    border: 5px solid #cccccc;
}
    #flights .loading {
        top: 100px;   
    }

/* background for all modal dialogs */
.modal-background {
    background-color: #dadada;
    filter: alpha(opacity=70);
    opacity: 0.7;
}

.image-viewer {
    margin: 1em;
    color: #ffffff;
}
    .image-viewer img {
        border: 1px solid #ffffff !important;
    }
    
    .image-viewer label {
        color: #ffffff;
    }
    
.groupheader { background: #013066; color: #ffffff; padding: 4px; margin-top: 10px; margin-bottom: 5px; font-weight: bold;}



.form-readonly {
    background-color: #ffffff;
}
    .form-readonly label {
        background-color: #ffffff;
        padding: .1em .1em;
        margin: 0 0 .2em 0;
        float: left;
        text-align: left;
    }
    .form-readonly label.description {
        font-weight: bold;
        width: 120px;
        clear: both;
    }
    .form-readonly label.value {
        width: 190px;
        background-color: #ffffff;
        height: 18px;
    }
    
.form_two-column {
    /* IE 5.5/6 bug fix */
    display: inline;
    /* end bug fix */
    float: left;
    margin: 0 20px 0 0 !important;
    width: 47%;
}

.scrollList {
    height: 275px; 
    overflow-y: scroll;
    padding-left: 5px;
    text-align:left;
}

.day_container {
    position: relative;
}

.day_community, .day_board, .day_media, .day_airport, .day_report, .day_opportunity, .day_gallery {
    cursor: pointer;
    height: 8px;
    width: 69px;
    margin: 0 -.25em 2px;
    position: relative;
}

.day_community.last, .day_board.last, .day_media.last, .day_airport.last, .day_report.last, .day_opportunity.last, .day_gallery.last {
    background-image: url("../images/icn6-event-end.gif"); background-repeat: no-repeat; background-position: 62px 1px;
}

.day_community img, .day_board img, .day_media img, .day_airport img, .day_report img, .day_opportunity img, .day_gallery img {
    position: absolute;
    top: -1px !important;
    left: 1px !important;
}

.day_community {
    background-color: #3a8581;
}
.day_board {
    background-color: #3b1465;
}
.day_media {
    background-color: #002347;
}
.day_airport {
    background-color: #692415;
}
.day_report {
    background-color: #b58d07;
}
.day_opportunity {
    background-color: #054801;
}
.day_gallery {
    background-color: #e16e1d;
}

.position_1 {
    position: absolute;
    top: 0;
    left: 0;
}
.position_2 {
    position: absolute;
    top: 10px;
    left: 0;
}
.position_3 {
    position: absolute;
    top: 20px;
    left: 0;
}
.position_4 {
    position: absolute;
    top: 30px;
    left: 0;
}
/*
.position_5 {
    position: absolute;
    top: 40px;
    left: 0;
}
*/
.position_more {
    position: absolute;
    bottom: 1px;
    left: 0;
    text-align: right;
    float: right;
    width: 69px;
    margin: -6px -.50em 2px;
}
    .position_more a {
        cursor: pointer;
    }


    
