/**
 * Copyright (c) 2006-2007, Bill W. Scott
 * All rights reserved.
 *
 * This work is licensed under the Creative Commons Attribution 2.5 License. To view a copy 
 * of this license, visit http://creativecommons.org/licenses/by/2.5/ or send a letter to 
 * Creative Commons, 543 Howard Street, 5th Floor, San Francisco, California, 94105, USA.
 *
 * This work was created by Bill Scott (billwscott.com, looksgoodworkswell.com).
 * 
 * The only attribution I require is to keep this notice of copyright & license 
 * in this original source file.
 *
 * Version 1.0 - 10.21.2008
 */

/**
 * Standard Configuration. It is advised that this section NOT be modified as the
 * carousel.js expects the behavior outlined below.
 **/
#doc {
	display: block;
	float: left;
}

.carousel-component { 
	position:relative;
	overflow:hidden;   /* causes the clipping */
	display:none; /* component turns it on when first item is rendered */
	width: 600px !important;
	background-color: #EDE7DC;
	border-bottom: #E2D9C7 1px solid;
	margin-bottom: 20px;
	padding: 10px;	
}
				
.carousel-component ul.carousel-list { 
	width:10000000px;
	position:relative;
	z-index:1; 
}

.carousel-component .carousel-list li { 
	float:left;
	list-style:none;
	overflow:hidden;
	width: 600px !important;   
}

/**
 * VERTICAL CAROUSEL DEFAULTS
 **/
.carousel-component .carousel-vertical li { 
	margin-bottom:0px;

	/* Fix for extra spacing in IE */
	float:left;
    clear:left;  
	
	/* Force the LI to respect the HEIGHT specified */
	overflow:hidden;
	display:block;
}

/* For vertical carousel, not set, width defaults to auto */
/* Note if you explicitly set width to auto, this might cause */
/* problems with Safari... as in up/down button not working in some examples. */	 
.carousel-component ul.carousel-vertical {
/*	width:auto;*/
}

.carousel-component .carousel-clip-region { 
	overflow:hidden; /* Secret to the clipping */
	margin:0px auto;
	position:relative; 
}


/**
 * Tabs
 */
/* http://stilbuero.de/jquery/tabs/ */
#tabset {
	list-style: none;
	background: url(../../images/tab_border.jpg) repeat-x 0 bottom;
	height: 30px;
	margin: 0;
	padding: 0;
}
#tabset:after { /* clearing without presentational markup, IE gets extra treatment */
	display: block;
	clear: both;
	content: " ";
}
#tabset li {
	float: left;
	margin: 0 3px !important;
	min-width: 84px; /* be nice to Opera */
	list-style: none;
	background-image: none !important;
}
#tabset a, #tabset a span {
	display: block;
	padding: 0 10px;
	background: url(../../images/tab.jpg) no-repeat;
	background-position: 100% -50px;
}
#tabset a {
	position: relative;
	z-index: 2;
	padding-left: 0;
	color: #bbb;
	font-size: 12px;
	font-weight: bold;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	white-space: nowrap; /* required in IE 6 */
}
#tabset a:hover, #tabset a:focus, #tabset a:active {
	background-position: 100% -75px;
	outline: 0; /* prevent dotted border in Firefox */
}
#tabset a, #tabset .tabs-disabled a:hover, #tabset .tabs-disabled a:focus, #tabset .tabs-disabled a:active {
	background-position: 100% -75px;
}
#tabset a span {
	width: 64px; /* IE 6 treats width as min-width */
	min-width: 64px;
	height: 18px; /* IE 6 treats height as min-height */
	min-height: 18px;
	padding-top: 6px;
	padding-right: 0;
}
*>#tabset a span { /* hide from IE 6 */
	width: auto;
	height: auto;
}
#tabset a:hover span, #tabset a:focus span, #tabset a:active span {
	background-position: 0 -25px;
}
#tabset a span, #tabset .tabs-disabled a:hover span, #tabset .tabs-disabled a:focus span, #tabset .tabs-disabled a:active span {
	background-position: 0 -25px;
}
#tabset .tabs-selected a:link, #tabset .tabs-selected a:visited, #tabset .tabs-disabled a:link, #tabset .tabs-disabled a:visited { /* @ Opera, use pseudo classes otherwise it confuses cursor... */
	cursor: default;
}
#tabset a:hover, #tabset a:focus, #tabset a:active { /* @ Opera, we need to be explicit again here now... */
	cursor: pointer;
	color: white;
}
#tabset .tabs-disabled {
	opacity: .4;
}
/*
 * Selected tab
 */ 
#tabset .yui-carousel-item-selected a {
	color: #000;
}
#tabset .yui-carousel-item-selected a span, #tabset .yui-carousel-item-selected a:hover span {
	padding-top: 7px;
	background-position: 0 0;
}
#tabset .yui-carousel-item-selected a, #tabset .yui-carousel-item-selected a:hover {
	background-position: 100% -50px;
	outline: 0; /* prevent dotted border in Firefox */
}
