﻿@charset "utf-8";
body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: left; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #333366;
	font-family: "Times New Roman", Times, serif;
	font-size: 100%;
}

.left {
    text-align: left;
}
.right {
    text-align: right;
}
.center {
    text-align: center;
}
table.center {
    margin-left: auto;
    margin-right: auto;
}
.top {
    vertical-align: top;
}
.middle {
    vertical-align: middle;
}
.bottom {
    vertical-align: bottom;
}
.clear {
    clear: both;
}
.float-left {
    float: left;
}
.float-right {
    float: right;
}
.strong, .b, .bold {
    font-weight: bold;
}
.em .i, italic {
    font-style: italic;
}
.third {
    width: 33%;
}
.half {
    width: 45%;
}
.quarter {
    width: 25%;
}
.hundred {
    width: 100%;
}
.alert {background-color:#FFFF00;}

/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
.v3 #container {
	width: 955px;  /* this width will create a container that will fit in an 1024px browser window if text is left at browser default font sizes */
	background: white;
	margin: 0; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #C5F0FE;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".v3 #sidebar1 p" rule.
*/
.v3 #sidebar1 {
	width:148px;
	padding:0px;
	margin:0px;
	background-image:url(../images/v3/vac/sidebar_repeat.png);
	background-position:right;
	background-repeat:repeat-y;
	float:left;
}
    
.v3 #sidebar_menu {
	background-image:url(../images/v3/vac/sidebar_top.png);
	background-repeat:no-repeat;
    background-position: top left;
    /*margin-top: -18px;*/
	width:148px;	

}

.v3 .sidebar-nav {
    padding-top:300px;
    font-family: Helvetica, Arial, sans-serif; color: white; font-size: 11px; width: 138px; overflow-wrap:normal; 
}

.v3 .sidebar-nav a {
        text-decoration: none;
        color: white;
    }

        .v3 .sidebar-nav a:hover {
            text-decoration: underline;
        }
    .v3 #sidebar_menu ul {
        margin: 0;
        padding-left: 5px;
        padding-right: 5px;
        width: 135px;
    }
    .v3  #sidebar_menu ul li {
        list-style: none;
        font-weight: bold;
        padding-bottom: 1em;
        font-size: 11px;
    }
        .v3 #sidebar_menu ul li ul {
            margin-left: 1em;
            
        }
        .v3 #sidebar_menu ul li ul li {
            list-style:circle;
            font-weight: normal;
            font-size: 10px;
        }
            .v3 #sidebar_menu ul li ul li ul li {
                padding-bottom: 0;
            }

.v3 #sidebar_picture {
	background-image:url(../images/v3/vac/sidebar_bottom_usa_hawaii.png);
	background-repeat:no-repeat;
	width:148px;
	height:120px;
	margin:0;
}



/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
.v3 .col2 {
	padding:0px;
	margin-left: 148px;
}
.v3 #header {
	background-image:url(../images/v3/header.png);
	background-repeat:no-repeat;
	height: 118px;
	width: 807px;
}
.v3 #header-print {
    display: none;
}
.v3 #nameplate_left {
	height:inherit;
	margin: 0 auto;
	padding-top: 55px;
	padding-left: 138px;
	padding-right:0px;
	padding-bottom:0px;
	text-align:center;
	color:white;
	word-spacing: .2em;
}
.v3 #nameplate_left h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.v3 #nameplate_left a {
	color:white;
	font-size:20px;
	font-weight:bold;
	text-decoration:none;
}
.v3 #nameplate_left a:hover {
	text-decoration:underline;
}

.v3 #mainContent {
	background-image:url(../images/v3/content_upper_left.png);
	background-repeat:no-repeat;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.content {
	margin: 0px;
	padding: 0px;
	color: #333366;
}
.v3 #mainContent a {
	text-decoration: underline;
}
.v3 #mainContent a:link {
	color: #0389B4;
}
.v3 #mainContent a:hover {
	color: #FFFFFF;
	background-color: #0389B4;
}
.v3 #mainContent a:visited {
	color: #0399CB;
}
.v3 #mainContent a:active {
	color: #03B3A3;
}
.v3 #mainContent label {
	color: #0389B4;
	text-align: right;
}
.v3 #mainContent .data-table table tr:nth-child(even) {
    background-color:#EEEEFF;
}
.v3 #mainContent .data-table table tr:hover {
    background-color:#E2F8FE;
}
.v3 #mainContent h1 {
	margin: 0 auto;
	padding-top:1em;
	padding-bottom:1em;
/*	padding-left:105px; */
	text-align:center;
	font-size:28px;
	font-weight: bold;
	color: #03769B;
}

.prompt {
	text-align: left;
	font-size: smaller;
}
.v3 #mainContent legend {
	color: #FFFFFF;
	background-color: #0389B4;
	font-weight: bold;
	text-transform: uppercase;
	padding-right: 5px;
	padding-left: 5px;
}
.v3 #mainContent th {
	font-weight: bold;
	color: #003333;
	background-color: #0389B4;
}
.v3 #mainContent fieldset {
	border: thin solid #0389B4;
	margin-top: 10px;
	background-color: #E2F8FE;
}
.v3 #mainContent .specialists {
	font-size: small;
}
.v3 #mainContent .specialists table {
	border: medium groove #0389B4;
}
.v3 #mainContent .specialists th {
	font-size: medium;
	font-weight: bold;
	color: #FFFFFF;
	background-color: #0389B4;
}
.v3 #mainContent .specialists tr {
	display: table-row;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #C0C0C0;
}
.v3 #mainContent .specialists td {
	padding: 5px;
	vertical-align: top;
	border-bottom-width: thin;
	border-bottom-style: ridge;
	border-bottom-color: #CCCCCC;
}
.v3 #mainContent .input {
}
    .v3 #mainContent .input p {
        padding-left: 3em;
        padding-top: 1em;
    }
    .v3 #mainContent .input ul {
    }

.v3 #mainContent .list-horizontal ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.v3 #mainContent .list-horizontal li {
    display: block;
    float: left;

}

.v3 #mainContent .input .submit-button { background-color:#333366; color:#FFFFFF; padding: 5px; text-decoration:none; 
				  -moz-border-radius: 5px;
   				  -webkit-border-radius: 5px;
    			  -khtml-border-radius: 5px;
    			  border-radius: 5px;}
.v3 #mainContent .input .submit-button:hover { background-color: #0389B4; }
.v3 .quotation {
	font-style: oblique;
	text-align: center;
	}

.v3 .highlight {
    background-color: #0389B4; color: white; font-weight: bold;
}

.v3 #footer { 
    /*padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */*/
}

.v3 #footer-logos {
    height: 70px;
    margin-bottom: 10px;
    border-bottom: 2px solid #003366;
}
.v3 #footer-left-logo {
    float:left;
    margin-left: 75px;
}
.v3 #footer-copyright {
}
.v3 #footer-right-logo {
    float:right;
    margin-right: 75px;
}

.v3 #footer .footer-office {   
    width:33%;
    float:left;
    margin-bottom: 20px;
}
.v3 #footer .footer-office .office-name {
    color:#03B3A3;
    }
.v3 #footer .footer-office .office-phone {
        font-weight: bold;
    }
.v3 #footer a:link {
	color: #0389B4;
}
.v3 #footer a:hover {
    color: #FFFFFF;
    background-color: #0389B4;
}


    .v3 #footer #footer-logo {
        width: 700px;
    }
    .v3 #footer #footer-logo table {
        background-color: pink;
        border-collapse:collapse;
    }
    .v3 #footer #footer-offices {
        width: 100%;
    }

    .v3 #footer #footer-offices table td {
        width: 33%;
    }
    .v3 #footer #footer-office office-name {
    }
    .v3 #footer #footer-office office-phone {
        font-weight: bold;
    }
    

/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
/* ==========================================================================================================================================
   CORPORATE TRAVEL SECTION
   ===========================================================================================================================================*/
.v3.corp #sidebar1 {
	background-image:url(../images/v3/corp/sidebar_repeat.png);
}
.v3.corp #sidebar_menu {
	background-image:url(../images/v3/corp/sidebar_top.png);
}
.v3.corp #sidebar_picture {
	background-image:url(../images/v3/corp/sidebar_bottom_travelers.png);
}
/* ==========================================================================================================================================
   TRAVEL INFORMATION SECTION
   ===========================================================================================================================================*/
.v3.info #sidebar1 {
	background-image:url(../images/v3/info/sidebar_repeat.png);
}
.v3.info #sidebar_menu {
	background-image:url(../images/v3/info/sidebar_top.png);
	color:white;
}
.v3.info #sidebar_picture {
	background-image:url(../images/v3/info/sidebar_bottom_operators.png);
}
/* ==========================================================================================================================================
   VACATION TRAVEL SECTION
   ===========================================================================================================================================*/
.v3 .vac #sidebar1 {
	background-image:url(../images/v3/vac/sidebar_repeat.png);
}
.v3 .vac #sidebar_menu {
	background-image:url(../images/v3/vac/sidebar_top.png);
}
.v3 .vac #sidebar_picture {
	background-image:url(../images/v3/vac/sidebar_bottom_caribbean.png);
}
/* ===========================================================================================================================================
   BOOKING BUTTONS
   =========================================================================================================================================== */
.bookingbuttons {
	margin-left: auto;
	margin-right: auto;
	min-height: 200px;
	text-align:center;
	display:block;
}
.tworows {
	height: 400px;
}
.bookingbuttons table {
	margin-left: auto;
	margin-right: auto;
	text-align:center;
}
.bookingbuttons table tr { height: 200px }

.bookingbuttons table tr td.bookleft,
.bookingbuttons #bookleft {
	background-image:url(../images/BookingButton/Booking_surround2_left.png);
	background-repeat:no-repeat;
	background-position: right top;
	width: 11px;
}
.bookingbuttons table tr td.bookmiddle,
.bookingbuttons #bookmiddle {
	background-image:url(../images/BookingButton/Booking_surround2_middle.png);
	background-repeat:repeat-x;
	background-position: center top;
}
.bookingbuttons table tr td.bookmiddle span,
.bookingbuttons #bookmiddle span{
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14px;
	font-style: italic;
	font-weight: bold;
	color: #FFF;
	text-align: center;
	padding-left: 10px;
	padding-right: 10px;
}
.bookingbuttons table tr td.bookmiddle img,
.bookingbuttons #bookmiddle img {
	margin-left: 10px;
	margin-right: 10px;
}
.bookingbuttons table tr td.bookright,
.bookingbuttons #bookright {
	background-image:url(../images/BookingButton/Booking_surround2_right.png);
	background-repeat:no-repeat;
	background-position: left top;
	width: 11px;
}
.bookingbuttons.narrow {
	width: 250px;	
	height: auto;
}
.bookingbuttons.narrow #top {
	background-image:url(../images/BookingButton/booking_surround250_top.png);
	background-repeat:no-repeat;
	height: 30px;
}
.bookingbuttons.narrow #middle {
	background-image:url(../images/BookingButton/booking_surround250_middle.png);
	background-repeat: repeat-y;
}
.bookingbuttons.narrow #bottom {
	background-image:url(../images/BookingButton/booking_surround250_bottom.png);
	background-repeat:no-repeat;
	height: 30px;
}

.bookingbuttons.wide {
	width: 600px;
	height: auto;
}
.bookingbuttons.wide #top {
	background-image:url(../images/BookingButton/booking_surround500_top.png);
	background-repeat:no-repeat;
	height: 30px;
}
.bookingbuttons.wide #middle {
	background-image:url(../images/BookingButton/booking_surround500_middle.png);
	background-repeat: repeat-y;
}
.bookingbuttons.wide #bottom {
	background-image:url(../images/BookingButton/booking_surround500_bottom.png);
	background-repeat:no-repeat;
	height: 30px;
}
#autoEurope {
    background-image: url(../images/BookingButton/plain/auto_europe.jpg);
    background-repeat:no-repeat;
}
    #autoEurope:hover {
        background-image: url(../images/BookingButton/plain/auto_europe_over.jpg);
    }
#beaches {
	background-image:url(../images/BookingButton/plain/beaches.png);
	background-repeat: no-repeat;
}
#beaches:hover {
	background-image:url(../images/BookingButton/plain/beaches_over.png);
}
#carnival {
	background-image:url(../images/BookingButton/plain/carnival.png);
	background-repeat: no-repeat;
}
#carnival:hover {
	background-image:url(../images/BookingButton/plain/carnival_over.png);
}
#globas{
	background-image:url(../images/BookingButton/plain/globas.png);
	background-repeat: no-repeat;
}
#globas:hover {
	background-image:url(../images/BookingButton/plain/globas_over.png);
}
#gogo {
	background-image:url(../images/BookingButton/plain/gogo.png);
	background-repeat: no-repeat;
}
#gogo:hover {
	background-image:url(../images/BookingButton/plain/gogo_over.png);
}
#inSite_Alaska {
	background-image:url(../images/BookingButton/plain/inSite_alaska.jpg);
	background-repeat: no-repeat;
}
#inSite_Alaska:hover {
	background-image:url(../images/BookingButton/plain/inSite_alaska_over.jpg);
}
#inSite_Caribbean{
	background-image:url(../images/BookingButton/plain/inSite_caribbean.jpg);
	background-repeat: no-repeat;
}
#inSite_Caribbean:hover {
	background-image:url(../images/BookingButton/plain/inSite_caribbean_over.jpg);
}
#inSite_Culinary{
	background-image:url(../images/BookingButton/plain/inSite_culinary.jpg);
	background-repeat: no-repeat;
}
#inSite_Culinary:hover {
	background-image:url(../images/BookingButton/plain/inSite_culinary_over.jpg);
}

#inSite_Euro{
	background-image:url(../images/BookingButton/plain/inSite_europe.jpg);
	background-repeat: no-repeat;
}
#inSite_Euro:hover {
	background-image:url(../images/BookingButton/plain/inSite_europe_over.jpg);
}
#inSite_EuroCruise {
	background-image:url(../images/BookingButton/plain/inSite_europe_cruises.jpg);
	background-repeat: no-repeat;
}
#inSite_EuroCruise:hover {
	background-image:url(../images/BookingButton/plain/inSite_europe_cruises_over.jpg);
}
#inSite_exotic{
	background-image:url(../images/BookingButton/plain/inSite_exoticAfrica.jpg);
	background-repeat: no-repeat;
}
#inSite_exotic:hover {
	background-image:url(../images/BookingButton/plain/inSite_exoticAfrica_over.jpg);
}
#inSite_exoticAsia{
	background-image:url(../images/BookingButton/plain/inSite_exoticAsia.jpg);
	background-repeat: no-repeat;
}
#inSite_exoticAsia:hover {
	background-image:url(../images/BookingButton/plain/inSite_exoticAsia_over.jpg);
}
#inSite_exoticAussie{
	background-image:url(../images/BookingButton/plain/inSite_exoticAussie.jpg);
	background-repeat: no-repeat;
}
#inSite_exoticAussie:hover {
	background-image:url(../images/BookingButton/plain/inSite_exoticAussie_over.jpg);
}
#inSite_exoticMidEast{
	background-image:url(../images/BookingButton/plain/inSite_exoticMidEast.jpg);
	background-repeat: no-repeat;
}
#inSite_exoticMidEast:hover {
	background-image:url(../images/BookingButton/plain/inSite_exoticMidEast_over.jpg);
}
#inSite_luxury{
	background-image:url(../images/BookingButton/plain/inSite_luxury.jpg);
	background-repeat: no-repeat;
}
#inSite_luxury:hover {
	background-image:url(../images/BookingButton/plain/inSite_luxury_over.jpg);
}
#inSite_luxuryGirls{
	background-image:url(../images/BookingButton/plain/inSite_luxuryGirls.jpg);
	background-repeat: no-repeat;
}
#inSite_luxuryGirls:hover {
	background-image:url(../images/BookingButton/plain/inSite_luxuryGirls_over.jpg);
}
#norwegiangetaway{
	background-image:url(../images/BookingButton/plain/norwegian_getaway.jpg);
	background-repeat: no-repeat;
}
#norwegiangetaway:hover{
	background-image:url(../images/BookingButton/plain/norwegian_getaway_over.jpg);
}

#raileurope {
	background-image:url(../images/BookingButton/plain/raileurope.png);
	background-repeat: no-repeat;
}
#raileurope:hover {
	background-image:url(../images/BookingButton/plain/raileurope_over.png);
}

#royalcaribbean {
	background-image:url(../images/BookingButton/plain/royalcaribbean.png);
	background-repeat: no-repeat;
}
#royalcaribbean:hover {
	background-image:url(../images/BookingButton/plain/royalcaribbean_over.png);
}
#sandals {
	background-image:url(../images/BookingButton/plain/sandals.png);
	background-repeat: no-repeat;
}
#sandals:hover {
	background-image:url(../images/BookingButton/plain/sandals_over.png);
}

#sceptre {
	background-image:url(../images/BookingButton/plain/sceptre.png);
	background-repeat: no-repeat;
}
#sceptre:hover {
	background-image:url(../images/BookingButton/plain/sceptre_over.png);
}

#superclubs {
	background-image:url(../images/BookingButton/plain/superclubs.png);
	background-repeat: no-repeat;
}
#superclubs:hover {
	background-image:url(../images/BookingButton/plain/superclubs_over.png);
}
#travel2 {
	background-image:url(../images/BookingButton/plain/travel2.png);
	background-repeat: no-repeat;
}
#travel2:hover {
	background-image:url(../images/BookingButton/plain/travel2_over.png);
}
#travel2_asia {
	background-image:url(../images/BookingButton/plain/travel2_hongkong.jpg);
	background-repeat: no-repeat;
}
#travel2_asia:hover {
	background-image:url(../images/BookingButton/plain/travel2_hongkong_over.jpg);
}
#travel2_honeymoon {
	background-image:url(../images/BookingButton/plain/travel2_honeymoon.jpg);
	background-repeat: no-repeat;
}
#travel2_honeymoon:hover {
	background-image:url(../images/BookingButton/plain/travel2_honeymoon_over.jpg);
}
#viking_asia { /* viking river cruises */
	background-image:url(../images/BookingButton/plain/viking_river_cruises_china.jpg);
	background-repeat: no-repeat;
}
#viking_asia:hover {
	background-image:url(../images/BookingButton/plain/viking_river_cruises_china_over.jpg);
}
#viking_euro { /* viking river cruises */
	background-image:url(../images/BookingButton/plain/viking_river_cruises_euro.jpg);
	background-repeat: no-repeat;
}
#viking_euro:hover {
	background-image:url(../images/BookingButton/plain/viking_river_cruises_euro_over.jpg);
}   
/* --------------------------------------------------------------------------------------
			SPECIALS
---------------------------------------------------------------------------------------*/
.rounded-corners {
     -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    -khtml-border-radius: 20px;
    border-radius: 20px;
}
#specials {width: 725px; border:#999999 thin solid; padding: 10px; background-color: #03B3A3; margin-left: 35px; }
.special-title {font-size: 18px; font-weight: bold; color: #FFFFFF;}
.special-price-block {text-align: right; color: #FFFFFF;}
.special-starting {font-style: italic; font-size: 10px; color:#FFFFFF; }
.special-price { font-size: 24px; font-weight: bold; color:#FFFFFF;}
.special-price-disclaimer { font-size: 10px; color: #FFFFFF;}
.special-body {background-color: #FFFFFF; color:#396C7D; font-size: 12px; }
.special-image { float:left; margin-right: 5px;}
.special-copy {padding-left: 10px; padding-right:10px; text-align: justify; background:#FFFFFF;}
.special-price-valid { color: #B32D03; font-weight: bold; }
.special-fine-print { font-size: 10px; }
.v3 #mainContent #specials .special-button { background-color: #0389B4; color:#FFFFFF; padding: 5px; text-decoration:none; 
				  -moz-border-radius: 5px;
   				  -webkit-border-radius: 5px;
    			  -khtml-border-radius: 5px;
    			  border-radius: 5px;}
.v3 #mainContent #specials .special-button a {color: #FFFFFF; text-decoration: none; }
.v3 #mainContent #specials .special-button a:hover { background-color: #021B54; }

.tell-me-more{background:url(../images/button-tell-me-more.gif); background-repeat: no-repeat; border="0";}
.tell-me-more:hover {background:url(../images/button-tell-me-more_over.gif); }
							  
.tab-disney-cruise-line{background:url(../images/tabs/disney-cruise-line_blue.gif); background-repeat: no-repeat; border="0";}
.tab-disney-cruise-line:hover {background:url(../images/tabs/disney-cruise-line_green.gif); }
.tab-wdw-resort{background:url(../images/tabs/walt-disney-world-resort_blue.gif); background-repeat: no-repeat; border="0";}
.tab-wdw-resort:hover {background:url(../images/tabs/walt-disney-world-resort_green.gif); }
							  
/*-------------------------------------------------------------------------------
        CONTACT US
    ------------------------------------------------------------------------------*/
.v3 #contact-location fieldset {
    background-color: #FFFFFF;
}
.v3 #contact-location label {
    display: inline-block;
    width: 90px;
    margin-left: -100px;
    padding-right: 10px;
}
.v3 #contact-location p {
    margin-left: 100px;
}


#contact-us .Branch {
	font-size: medium;
	font-weight: bolder;
	text-transform: uppercase;
	color: #FFFFFF;
	background-color: #0389B4;
	padding: 15px 5px;
	margin-top: 0px;
	border: none #000033;
	text-align: center;
}
#contact-us .Branch td{
	font-size: medium;
	font-weight: bolder;
	text-transform: uppercase;
	color: #FFFFFF;
	background-color: #026D91;
	padding: 15px 5px;
	margin-top: 0px;
	border: thin solid #000033;
	text-align: center;
}

#contact-us-content .Locations {
	font-family: "Times New Roman", Times, serif;
}
#contact-us-content .Locations th {
	font-size: small;
	font-weight: normal;
	text-transform: none;
	color: #FFFFFF;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #BCEEFE;
}
#contact-us-content .Locations table {
	padding: 0px;
	border: 10px solid #0389B4;
	display: table;
}
#contact-us-content .Locations td {
	padding: 5px;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #BCEEFE;
	font-weight: bold;
	color: #000066;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
#contact-us-content .address {
	font-size: small;
}
/*******************************************************************
 Specialist
 ********************************************************************/
.v3 #specialist-content table {
    border: none;
    border-spacing: 0;
    border-collapse: collapse;   
}
    .v3 #specialist-content table tr td {
        text-align: left;
    }
/********************************************************************
    Travel Info > Airline Customer Service
*********************************************************************/
.v3 #airline-customer-service-content .cs-contacts {
	font-size: small;
}

.v3 #airline-customer-service-content .cs-contacts table {
	border: medium groove #0389B4;
}

.v3 #airline-customer-service-content .cs-contacts th {
	font-size: medium;
	font-weight: bold;
	color: #FFFFFF;
	background-color: #0389B4;
}
.v3 #airline-customer-service-content .cs-contacts tr {
	display: table-row;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #C0C0C0;
}
.v3 #airline-customer-service-content .cs-contacts tr td {
	padding: 5px;
	vertical-align: top;
    text-align: left;
	/*border-bottom-width: thin;
	border-bottom-style: ridge;
	border-bottom-color: #CCCCCC;*/
}
    .v3 #airline-customer-service-content .cs-contacts tr td:nth-child(1) {
        width: 45px;
        vertical-align: top;
    }
    .v3 #airline-customer-service-content .cs-contacts tr td:nth-child(2) {
        width: 262px;
    }
    .v3 #airline-customer-service-content .cs-contacts tr td:nth-child(3) {
        width: 216px;
    }

}
.v3 #airline-customer-service-content .cs-contacts a {
	text-decoration: underline;
}
.v3 #airline-customer-service-content .cs-contacts a:link {
	color: #0389B4;
}
.v3 #airline-customer-service-content .cs-contacts a:hover {
	color: #FFFFFF;
	background-color: #0389B4;
}
.v3 #airline-customer-service-content .cs-contacts a:visited {
	color: #0399CB;
}
.v3 #airline-customer-service-content .cs-contacts a:active {
	color: #03B3A3;
}
.v3 #airline-customer-service-content .airline {
	font-size: medium;
	font-weight: bold;
	color: #0389B4;
	border-top: medium ridge #0389B4;
	border-right: medium none #0389B4;
	border-bottom: medium none #0389B4;
	border-left: medium none #0389B4;
}
/**************************************************************
 Airline Contacts
***********************************************************/
.v3 #airline-contacts-content .contacts {
	font-size: small;
}
.v3 #airline-contacts-content #contact-layout table {
    width: 350px;
    border-spacing: 10px;
    border-collapse: separate;
}
    .v3 #airline-contacts-content #contact-layout table tr td {
        width: 50%;
        vertical-align: top;
    }
.v3 #airline-contacts-content .contacts table {
	/*border: medium groove #0389B4;*/
}
.v3 #airline-contacts-content .contacts th {
	font-size: medium;
	font-weight: bold;
	color: #FFFFFF;
	background-color: #0389B4;
    text-align: center;
}
.v3 #airline-contacts-content .contacts tr {
    border-bottom: solid thin #000000;
}
.v3 #airline-contacts-content .contacts td {
	padding: 5px;
	vertical-align: top;
    text-align: left;
}
/******************************************************
    A-1 Airport Parking Search Form
******************************************************/
.v3 #airport-parking {
    width: 300px;
    margin-left: auto;
    margin-right: auto;
}
.v3 #airport-parking label {
    width: 150px;
    display:inline-block;
}
/******************************************************
    images 
*******************************************************/
img.alignright {
    float: right;
    margin: 0 0 1em 1em;
}
img.alignleft {
    float: left;
    margin: 0 1em 1em 0;
}
img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.flag {height: 56px;}