@charset "UTF-8";
#reservations {
	position: relative;
}

.SlidingPanels {
	width: 630px;
	height: auto;
	position: relative;
	border: 1px solid #E5E5E5;
	background-image: url(../images/assets/bkg_slidebox.jpg);
	background-repeat: repeat-x;
	background-position: bottom;
	font-size: 11px;
	background-color: #FFFFFF;
}


/* This is the selector for the container that holds all of the content panels
 * for the widget. The SlidingPanelsContentGroup container is what gets programtically
 * positioned to create the slide animation. It is also what governs the layout of
 * the panels.
 *
 * By default, the width of the container is the same as its parent, the SlidingPanels
 * container.
 *
 * You can make the panels within the SlidingPanelsContentGroup container layout
 * horizontally by giving the SlidingPanelsContentGroup container a width that is as wide
 * or larget than the sum of the widths of all of the content panels, and then floating
 * the content panels inside the SlidingPanelsContentGroup container so they all appear
 * on the same line. You may also need to float the SlidingPanels and SlidingPanelsContentGroup
 * containers to insure that none of the content panels "leak" outside of the widget.
 *
 * Avoid placing any CSS border, margin, or padding properties on the SlidingPanels
 * container as they can affect the proper positioning and sliding animations of the
 * the container within the widget.
 *
 * The name of the class ("SlidingPanelsContentGroup") used in this selector is not
 * necessary to make the widget function. You can use any class name you want to style the
 * SlidingPanelsContentGroup container.
 */
.SlidingPanelsContentGroup {
	position: relative;
	width: 100%;
	margin: 0px;
	padding: 0px;
	border: none;
}
.SlidingPanelsContent {
	width: 590px;
	height: auto;
	padding: 20px;
}


/* The class used in this selector is programatically added to the SlidingPanels container
 * anytime we are animating between panels. This rule makes sure that *all* content inside
 * the widget is overflow:none to avoid a rendering glitch that occurs in FireFox 1.5 whenever
 * there is an element inside the widget that displays a scrollbar.
 *
 * The class is automatically removed once the animation has stopped so that the overflow
 * properties of the content inside the widget should be restored.
 */
.SlidingPanelsAnimating * {
	overflow: hidden !important;
}

/* The class used in this selector is programatically added to the SlindingPanelsContent
 * container that is currently visible in the view port. The class is automatically removed
 * when the widget switches to a different panel.
 */
.SlidingPanelsCurrentPanel {
}

/* The class used in this selector is programatically added to the SlidingPanels container
 * anytime the SlidingPanels container is given focus. The class is automatically removed
 * once the SlidingPanels container loses focus.
 */
.SlidingPanelsFocused {
}

.p1 {

}
.p2 {

}
.SlidingPanels strong {
	font-weight: bold;
	color: #4373a4;
	font-size: 13px;
}
.SlidingPanels  br {
	margin-bottom: 8px;
}


#TourDetails.SlidingPanels {
	float: left;
}
#TourDetails .SlidingPanelsContentGroup {
	float: left;
	width: 10000px;
}
#TourDetails .SlidingPanelsContent {
	float: left;
}
#ResButton {
	position: absolute;
	bottom: 20px;
	left: 5px;
}

#SlideingPanelsButtons {
	width: 640px;
}
.SlidingPanelsTab {
	display: block;
	float: left;
	font-size: 11px;
	height: 15px;
	text-align: center;
	background-image: url(../images/assets/bkg_topblue.gif);
	background-repeat: repeat-x;
	font-weight: bold;
	color: #FFF;
	margin-right: 5px;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
}
.SlidingPanelsTab a {
	color: #FFF;
	text-decoration: none;
	background-image: url(../images/assets/arrow_bottom.gif);
	background-repeat: no-repeat;
	padding-left: 16px;
	background-position: left;
}
