﻿<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
	<title>Live The Dream | tab panel css</title>

	<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />

	<link rel="stylesheet" href="/assets/templates/default/site.css" type="text/css" media="screen" />
        <base href="http://www.livethedream.com/" />

<!--[if lte IE 6]>

  <style type="text/css" media="screen, tv, projection">
        body { behavior: url(assets/js/csshover.htc); } /* hover:anything support */
        #content { margin-left: 22px; } /* to avoid the BMH */
        a,  a:link { border-bottom-style: solid } /* becuase IE just doesn't dot */
  </style>

  <script type="text/javascript" src="assets/js/sleight.js"></script>

<![endif]-->

        </head>
<body>

<div id="page">


<div id="header">
	<div id="search"><a name="search"></a>
		<!-- if you wanted a site search, this would be a good place -->
	</div>
	<h1><a href="index.html" title="Live The Dream">Live The Dream</a></h1>
</div>
<!-- close #header -->

	<div id="content">

		<div class="post">
			<h3 id="post-"></h3>
				<quickedit:content />@charset "UTF-8";

/* 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 {
	margin: 0px;
	padding: 0px;
	float: left;
	clear: none;
	width: 100%; /* IE Hack to force proper layout when preceded by a paragraph. (hasLayout Bug)*/
}

/* 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;
}

/* 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;
	top: 1px;
	float: left;
	padding: 4px 10px;
	margin: 0px 1px 0px 0px;
	font: 12px sans-serif;
	background:url(../assets/images/tab_bg.jpg);
	list-style: none;
	border-left: solid 1px #CCC;
	border-bottom: solid 1px #999;
	border-top: solid 1px #999;
	border-right: solid 1px #999;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	z-index:1;
}

/* 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:url(../assets/images/tab_bg_hover.jpg);
}

/* 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 {
	background:url(../images/tab_bg_hover.jpg);
	border-bottom: 1px solid #fff;
}

/* This selector is an example of how to make a link inside of a tab button
 * look like normal text. Users may want to use links inside of a tab button
 * so that when it gets focus, the text *inside* the tab button gets a focus
 * ring around it, instead of the focus ring around the entire tab.
 */
.TabbedPanelsTab a {
	color: black;
	text-decoration: none;
}

/* 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 {
	clear: both;
	border-left: solid 1px #CCC;
	border-bottom: solid 1px #CCC;
	border-top: solid 1px #999;
	border-right: solid 1px #999;
	background-color: #fff;
}

/* 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 {
	padding: 15px;
}

/* 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 {
}

a, a:link {
border-bottom-style:none;
}
		</div>
		<!-- close .post (main column content) -->

	</div>
	<!-- close #content -->

	<div id="sidebar">
		<ul>
			<li id="dropmenu"><a name="dropmenu"></a><h2>Pages:</h2>
			<ul><li><a href="/minimal-base.html" title="MODx CMS Install Success" >Base Install</a></li>
<li><a href="/RentalBookingProcedure.html" title="Rent Villas and Bungalows Online for Accommodation in Koh Samui" >Rent Villas and Bungalows Online for Accommodation in Koh Samui</a></li>
<li><a href="http://www.livethedream.com/" title="Koh Samui Villas, Resorts and Boutique Hotels | Thailand" >Koh Samui Villas, Resorts and Boutique Hotels | Thailand</a></li>
<li><a href="/villa_detail.html" title="villa_detail" >villa_detail</a></li>
<li><a href="/send_to_friend.html" title="send_to_friend" >send_to_friend</a></li>
<li><a href="/add_to_favorites.html" title="add_to_favorites" >add_to_favorites</a></li>
<li><a href="/term_of_use.html" title="Term of Use: Luxury Villas, Rentals Holiday Villas in Thailand" >Term of Use</a></li>
<li><a href="/about_us.html" title="Livethedream- Luxury Family Holiday in Koh Samui, Thailand" >About Us</a></li>
<li><a href="/privacy_policy.html" title="Privacy Policy- Luxury Villas, Rentals Holiday Villas at Koh Samui" >Privacy Policy</a></li>
<li><a href="/subscribe.html" title="subscribe" >Subscribe to Our Newsletter</a></li>
<li><a href="/old-search.html" title="Old-Search" >Old-Search</a></li>
<li><a href="/getBudget-data.html" title="getBudget-data" >getBudget-data</a></li>
<li><a href="/contact_us.html" title="Contact us for Holiday Villas, Resorts at Koh Samui, Thailand" >Contact Us</a></li>
<li><a href="/add_review.html" title="add_review" >add_review</a></li>
<li><a href="/article_details.html" title="article_details" >article_details</a></li>
<li><a href="/view_all_articles.html" title="view_all_articles" >View All Articles</a></li>
<li><a href="/resources.html" title="Resources" >Resources</a><ul><li><a href="/resources/luxury_holiday_villas.html" title="Luxury Holiday Villas" >Luxury Holiday Villas</a></li>
<li><a href="/resources/koh_samui_hotels.html" title="Koh Samui Hotels" >Koh Samui Hotels</a></li>
<li><a href="/resources/koh_samui_villas.html" title="Koh Samui Villas" >Koh Samui Villas</a></li>
<li><a href="/resources/koh_samui_resorts.html" title="Koh Samui Resorts" >Koh Samui Resorts</a></li>
<li><a href="/resources/hotels_and_motels.html" title="Hotels and Motels" >Hotels and Motels</a></li>
<li><a href="/resources/holidays-to-thailand.html" title="Holidays to Thailand" >Holidays to Thailand</a></li>
<li><a href="/resources/holiday-koh-samui.html" title="Holiday Koh Samui" >Holiday Koh Samui</a></li>
<li><a href="/resources/holiday-retreats.html" title="Holiday Retreats" >Holiday Retreats</a></li>
<li><a href="/resources/holiday-villas.html" title="Holiday Villas" >Holiday Villas</a></li>
<li><a href="/resources/holiday-guest-houses.html" title="Holiday Guest Houses " >Holiday Guest Houses</a></li>
<li><a href="/resources/holiday-resorts.html" title="Holiday Resorts" >Holiday Resorts</a></li>
<li><a href="/resources/holiday-apartments.html" title="Holiday Apartments" >Holiday Apartments</a></li>
<li><a href="/resources/holiday-lodges.html" title="Holiday Lodges" >Holiday Lodges</a></li>
<li><a href="/resources/travel-holiday-resorts.html" title="Travel Holiday Resorts" >Travel Holiday Resorts</a></li>
<li><a href="/resources/koh-samui-attractions.html" title="Koh Samui Attractions" >Koh Samui Attractions</a></li>
<li><a href="/resources/vacation-rentals.html" title="Vacation Rentals" >Vacation Rentals</a></li>
<li><a href="/resources/rental-properties.html" title="Rental Properties" >Rental Properties</a></li>
<li><a href="/resources/travel-agents.html" title="Travel Agents" >Travel Agents</a></li>
<li><a href="/resources/cruise-travel-agents.html" title="Cruise Travel Agents" >Cruise Travel Agents</a></li>
<li><a href="/resources/car-rentals.html" title="Car Rentals" >Car Rentals</a></li>
<li class="last"><a href="/resources/spa-resorts.html" title="Spa Resorts" >Spa Resorts</a></li>
</ul></li>
<li><a href="/getOtherBudget-data.html" title="getOtherBudget-data" >getOtherBudget-data</a></li>
<li><a href="/search.html" title="Koh Samui Attractions | Fun Thing to Do in Koh Samui" >Koh Samui Attractions | Fun Thing to Do in Koh Samui</a></li>
<li><a href="/newRegionDp.html" title="newRegionDp" >newRegionDp</a></li>
<li><a href="/newOtherCriteria.html" title="newOtherCriteria" >newOtherCriteria</a></li>
<li><a href="/rateAvailability.html" title="rateAvailability" >rateAvailability</a></li>
<li><a href="/print_villa.html" title="print_villa" >print_villa</a></li>
<li><a href="/termsAndCondtion_villa.html" title="termsAndCondtion_villa" >termsAndCondtion_villa</a></li>
<li><a href="/are-you-villa-owner.html" title="Koh Samui Property for Rent, Sale, Purchase and Management" >Koh Samui Property for Rent, Sale, Purchase and Management</a></li>
<li><a href="/legal-information.html" title="legal information" >legal information</a></li>
<li><a href="/newOtherCriteria_villachange.html" title="newOtherCriteria_villachange" >newOtherCriteria_villachange</a></li>
<li><a href="/below_search_result.html" title="below_search_result" >below_search_result</a></li>
<li><a href="/sitemap.html" title="Sitemap LiveTheDream" >sitemap</a></li>
<li><a href="/regionBudget.html" title="regionBudget" >regionBudget</a></li>
<li><a href="/about-koh-samui.html" title="Thailand Vacation, Holiday Rental Accommodation" >Thailand Vacation, Holiday Rental Accommodation</a><ul><li><a href="/about-koh-samui/luxury-private-holiday-villas.html" title="Luxury Holiday Villas, Private Holiday Villas, Rent Holiday Villas" >Luxury Holiday Villas, Private Holiday Villas, Rent Holiday Villas</a></li>
<li><a href="/about-koh-samui/luxury-beach-villas.html" title="Luxury Villas, Luxury Beach Villas, Holidays to Koh Samui" >Luxury Villas, Luxury Beach Villas, Holidays to Koh Samui</a></li>
<li class="last"><a href="/about-koh-samui/beach-resorts-koh-samui.html" title="Beach Resort Koh Samui, Samui Beach Resort, Thailand Beach Resort" >Beach Resort Koh Samui, Samui Beach Resort, Thailand Beach Resort</a></li>
</ul></li>
<li class="last"><a href="/fun-things-todo.html" title="fun things to do" >fun things to do</a></li>
</ul>
			</li>

			<li><h2>Meta:</h2>
				<ul>
				    <li><a href="http://validator.w3.org/check/referer" title="This page validates as XHTML 1.0 Transitional">Valid <abbr title="eXtensible HyperText Markup Language">XHTML</abbr></a></li>
                	<li><a href="http://jigsaw.w3.org/css-validator/check/referer" title="This page uses valid Cascading Stylesheets" rel="external">Valid <abbr title="W3C Cascading Stylesheets">css</abbr></a></li>
				    <li><a href="http://modxcms.com/" title="Powered by MODx, Do more with less.">MOD<strong>x</strong></a></li>
		        </ul>
			</li>

		</ul>
	</div>
	<!-- close #sidebar -->

<div class="clear">&nbsp;</div>

<div id="footer">
	<p>
		Live The Dream is powered by
		<a href="http://modxcms.com/" title="Powered by MODx"><strong>MOD</strong>x Content Management System</a>
		<br /><a href="add_to_favorites.html" title="Link to our Blog RSS Feeds">Blog Entries (RSS)</a><br />
MySQL: 0.0006 s, 0 request(s), PHP: 0.0301 s, total: 0.0307 s, document retrieved from cache.
	</p>
</div>
<!-- close #footer -->

</div>
<!-- close #page -->

</body>
</html>