@charset "UTF-8";

.TabbedPanelsContentGroup a:link {font-family: Tahoma, Verdana, Arial, sans-serif; color: #001063; font-weight: bold; font-size: 100%; text-decoration: underline;}
.TabbedPanelsContentGroup a:visited {font-family: Tahoma, Verdana, Arial, sans-serif; color: #001063; font-weight: bold; font-size: 100%; text-decoration: underline;}
.TabbedPanelsContentGroup a:active {font-family: Tahoma, Verdana, Arial, sans-serif; color: #001063; font-weight: bold; font-size: 100%; text-decoration: underline;}
.TabbedPanelsContentGroup a:hover {font-family: Tahoma, Verdana, Arial, sans-serif; color: #001063; font-weight: bold; font-size: 100%; text-decoration: none;}

#ODmessages a:link {font-family: Tahoma, Verdana, Arial, sans-serif; color: #00968f; font-weight: bold; font-size: 100%; text-decoration: underline;}
#ODmessages a:visited {font-family: Tahoma, Verdana, Arial, sans-serif; color: #00968f; font-weight: bold; font-size: 100%; text-decoration: underline;}
#ODmessages a:active {font-family: Tahoma, Verdana, Arial, sans-serif; color: #00968f; font-weight: bold; font-size: 100%; text-decoration: underline;}
#ODmessages a:hover {font-family: Tahoma, Verdana, Arial, sans-serif; color: #00968f; font-weight: bold; font-size: 100%; text-decoration: none;}

/* SpryTabbedPanels.css - Revision: Spry Preview Release 1.4 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* Horizontal Tabbed Panels
 *
 * The default style for a TabbedPanels widget places all tab buttons
 * (left aligned) above the content panel.
 */

/* This is the selector for the main TabbedPanels container. For our
 * default style, this container does not contribute anything visually,
 * but it is floated left to make sure that any floating or clearing done
 * with any of its child elements are contained completely within the
 * TabbedPanels container, to minimize any impact or undesireable
 * interaction with other floated elements on the page that may be used
 * for layout.
 *
 * If you want to constrain the width of the TabbedPanels widget, set a
 * width on the TabbedPanels container. By default, the TabbedPanels widget
 * expands horizontally to fill up available space.
 *
 * The name of the class ("TabbedPanels") used in this selector is not
 * necessary to make the widget function. You can use any class name you
 * want to style the TabbedPanels container.
 */

.TabbedPanels { 
	position: relative;
	margin: 0;
	padding: 0;
	font-size: 0.85em;
	color: #001063;
/*	float: left; */
	width: 713px; /* IE Hack to force proper layout when preceded by a paragraph. (hasLayout Bug)*/
	background: url(../images/bg_tabFiller.png) no-repeat; /* Alignment issue to still resolve */
	background-position: 0px 10px;
}

/* This is the selector for the TabGroup. The TabGroup container houses
 * all of the tab buttons for each tabbed panel in the widget. This container
 * does not contribute anything visually to the look of the widget for our
 * default style.
 *
 * The name of the class ("TabbedPanelsTabGroup") used in this selector is not
 * necessary to make the widget function. You can use any class name you
 * want to style the TabGroup container.
 */
.TabbedPanelsTabGroup {
	margin: 0px;
	padding: 0px;
}

.TabbedPanelsTabGroup p {
	margin-top: 2px;
	margin-bottom: 0px;
	margin-right: auto;
	margin-left: auto;
}

/* This is the selector for the TabbedPanelsTab. This container houses
 * the title for the panel. This is also the tab "button" that the user clicks
 * on to activate the corresponding content panel so that it appears on top
 * of the other tabbed panels contained in the widget.
 *
 * For our default style, each tab is positioned relatively 1 pixel down from
 * where it wold normally render. This allows each tab to overlap the content
 * panel that renders below it. Each tab is rendered with a 1 pixel bottom
 * border that has a color that matches the top border of the current content
 * panel. This gives the appearance that the tab is being drawn behind the
 * content panel.
 *
 * The name of the class ("TabbedPanelsTab") used in this selector is not
 * necessary to make the widget function. You can use any class name you want
 * to style this tab container.
 */
.TabbedPanelsTab {
	position: relative;
	float: left; 
	width: 140px;
	height: 21px;
	color: #001063;
	font-weight: bold;
	text-align: center;
	background-image: url(../images/tab_Widget_notActive.png);
	background-repeat: no-repeat;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
}

/* This selector is an example of how to change the appearnce of a tab button
 * container as the mouse enters it. The class "TabbedPanelsTabHover" is
 * programatically added and removed from the tab element as the mouse enters
 * and exits the container.
 */
/* .TabbedPanelsTabHover {
	background-color: #CCC;
} */

/* This selector is an example of how to change the appearance of a tab button
 * container after the user has clicked on it to activate a content panel.
 * The class "TabbedPanelsTabSelected" is programatically added and removed
 * from the tab element as the user clicks on the tab button containers in
 * the widget.
 *
 * As mentioned above, for our default style, tab buttons are positioned
 * 1 pixel down from where it would normally render. When the tab button is
 * selected, we change its bottom border to match the background color of the
 * content panel so that it looks like the tab is part of the content panel.
 */
.TabbedPanelsTabSelected {
	color: #001063;
	background-image: url(../images/tab_Widget_Active.png);
	background-repeat: no-repeat;
	height: 21px;
}

/* This is the selector for the ContentGroup. The ContentGroup container houses
 * all of the content panels for each tabbed panel in the widget. For our
 * default style, this container provides the background color and borders that
 * surround the content.
 *
 * The name of the class ("TabbedPanelsContentGroup") used in this selector is
 * not necessary to make the widget function. You can use any class name you
 * want to style the ContentGroup container.
 */
.TabbedPanelsContentGroup {
	position: relative;
	padding: 10px;
	text-align: left;
	clear: both;
	height: 179px;
	border-left: solid 1px #00285e;
	border-right: solid 1px #00285e;
	border-bottom: solid 1px #00285e;
    background-color: #e8f2fc; 
}

/* This is the selector for the Content panel. The Content panel holds the
 * content for a single tabbed panel. For our default style, this container
 * provides some padding, so that the content is not pushed up against the
 * widget borders.
 *
 * The name of the class ("TabbedPanelsContent") used in this selector is
 * not necessary to make the widget function. You can use any class name you
 * want to style the Content container.
 */
.TabbedPanelsContent {
}

/* This selector is an example of how to change the appearnce of the currently
 * active container panel. The class "TabbedPanelsContentVisible" is
 * programatically added and removed from the content element as the panel
 * is activated/deactivated.
 */
.TabbedPanelsContentVisible {
}

  /* ////////////////////////////////////// */
 /*   Booking Engine Container Formatting  */
/* ////////////////////////////////////// */

/*   Trip Selector (Radio Buttons)  */

#tripSelect {
	position: relative;
	float: left;
	top: 5px;
	width: 92px;
	height: 80px;
}

#radioContainerRoundTrip {
	position: relative;
	margin-top: -5px;
}

#radioContainerOneWay {
	position: relative;
	margin-top: 21px;
}

.radioContainerTripSelect {
	height: 30px;
}

/*
.dottedRightBorder {
	margin: 0;
	padding: 0;
	border-right: 1px dotted #525a64;
}
*/

.dottedRightBorder {  /* IE Hack (since IE doesn't recognize "dotted" borders) */
	border-right: none;
	background: url(../images/rule_dottedVert.png) right;
	background-repeat: no-repeat;
}
/*   Origin & Destination Fields  */

#originDestination {
	position: relative;
	float: left;
	width: 237px;
	height: 80px;
	top: 5px;
	left: 13px;
}
.textFields_originDestination {
	border: 1px solid #00285e;
	margin-top: 3px;
	margin-bottom: 3px;
	width: 220px;
}

/*   Departing & Returning Date Fields  */

#departReturnDates {
	position: relative;
	float: left;
	width: 137px;
	height: 80px;
	top: 5px;
	left: 26px;
}
.textFields_departReturnDates {
	border: 1px solid #00285e;
	margin-top: 3px;
	margin-bottom: 3px;
	margin-right: 4px;
	width: 40px;
}

/*   Guest Selection  */

#guestSelectionCol1 {
	position: relative;
	float: left;
	width: 98px;
	height: 80px;
	top: 5px;
	left: 38px;
}
#guestSelectionCol2 {
	position: relative;
	float: left;
	height: 80px;
	top: 5px;
	left: 50px;
}
#groups {
	margin-top: 5px;
	margin-left: -3px;
	text-align: center;
}
.listMenus_Guests {
	border: 1px solid #00285e;
	margin-top: 3px;
	margin-bottom: 3px;
	width: 77px;
}

div#guestSelectionCol1 select#adults {width: 85px;}
div#guestSelectionCol1 select#children {width: 85px;}
div#guestSelectionCol2 select#infants {width: 75px;}

/*   Dohop, UMs, Special Needs, Promo Codes & Optional O/D Messages  */

#ODmessages {
	position: absolute;
	top: 95px;
	left: 10px;
	width: 690px;
	height: 47px;
	color: #00968f;
        overflow: auto;
}

#dohop {
	position: absolute;
	/*top: 110px; Based on pre-message height */
	top: 146px;
	left: 10px;
}

#promocode {
	position: absolute;
	left: 10px;
/*  top: 106px; Based on pre-message height */
	top: 142px;
	padding: 4px 0;
}

#enterPromo { 
	background-color: #ffffff;
	font-weight: bold;
	padding: 10px; 
	border: 2px solid #00285e; 
	position: absolute; 
	width: auto; 
	top: 163px; 
	visibility: hidden;
}

.hidestuff {
	display: block;
	margin-top: 2px;
	clear: both;
}

#enterPromo p {
	margin: 0 5px 10px 0;
}

.couponCode {
	position: relative;
	float: left;
}

.req_promoCode {
	color: #00968f;
	font-size: 85%;
}

/* To be displayed only when a promo code has been entered*/
#promoMessage {
	position: absolute;
	color: #00968f;
	font-weight: bold;
	left: 290px;
	top: 144px;
	padding: 4px;
/*	border: 1px solid #00FF00; */
}

#umSpecialNeeds {
	position: absolute;
	width: 590px;
	/*top: 135px; Based on pre-message height */
	top: 167px;
	left: 10px;
}

/* Flight Type */

#flightTypeContainer {
	position: absolute;
	width: auto;
	left: 357px;
	bottom: 31px;
/*	border: 1px solid #FF0000; */
        display: none;
}

#flightTypeContainer_FR {
	position: absolute;
	width: auto;
	left: 390px;
	bottom: 35px;
/*	border: 1px solid #FF0000; */
        display: none;
}

.listMenus_flightType_EN {
	border: 1px solid #00285e;
	margin-top: 3px;
	margin-bottom: 3px;
	width: 175px;
}

.listMenus_flightType_FR {
	border: 1px solid #00285e;
	margin-top: 3px;
	margin-bottom: 3px;
	width: 248px;
}

/*   Button Formatting  */

#getFlights {
	position: absolute;
	right: 10px;
	bottom: 10px;
}

#getFlights_FR {
	position: absolute;
	right: 8px;
	bottom: 5px;
}

.buttonGetFlights {
-moz-border-radius:5px 5px 5px 5px;
background:url("https://staging.westjet.com/images/bg-btn-yellow.png") repeat-x scroll 0 0 #ffcc33;
border:1px solid #fdda73;
color:#333333;
display:block;
font:bold 14px Helvetica,Arial,Sans-serif;
outline:medium none;
padding:8px 10px;
text-align:center;
text-decoration:none;
text-shadow:0 1px 0 #fdda73;
cursor: pointer;
width: 100px;
}

.buttonGetFlights_FR {
-moz-border-radius:5px 5px 5px 5px;
background:url("https://staging.westjet.com/images/bg-btn-yellow.png") repeat-x scroll 0 0 #ffcc33;
border:1px solid #fdda73;
color:#333333;
display:block;
font:bold 14px Helvetica,Arial,Sans-serif;
outline:medium none;
padding:8px 10px;
text-align:center;
text-decoration:none;
text-shadow:0 1px 0 #fdda73;
cursor: pointer;
width: 140px;
}

#travelTools_col1 {
	position: relative;
	float: left;
	margin-right: 20px;
    width: auto;
	height: 230px;
/*	border: 1px solid #000; */
}

#travelTools_col2 {
	position: relative;
	float: left;
	margin-left: 0;
    width: auto;
	height: 230px;
/*	border: 1px solid #000; */
}