/* START jquery.jcarousel.css - The main one */

/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
 
#carouselHolder {
	width: 990px;
	background-image: url(images/homeCarouselMainBG.jpg);
	background-repeat: no-repeat;
	background-position: center -9px;
	height: 380px;
}

.carousel-right {
	float: right;
	width: 180px;
	padding-right: 45px;
	padding-top: 70px;
}

.carousel-right h2 {
	font-size: 18px;
	font-style: normal;
	font-weight: normal;
	text-transform: uppercase;
	color: #907461;
	font-family: Arial, Helvetica, sans-serif;
	background-image: url(images/carouselH2BG.jpg);
	background-repeat: no-repeat;
	background-position: left center;
	margin-bottom: 10px;
	padding-top: 7px;
	padding-right: 0px;
	padding-bottom: 7px;
	padding-left: 8px;
}
 
.carousel-right p {
	line-height: 1.3em;
	font-size: 14px;
	padding-left: 8px;
	padding-right: 10px;
}
 
.carousel-prev {
	float: left;
	width: 32px;
	padding-top: 142px;
	color: #F4ECDF;
	margin-left: 5px;
}

.carousel-prev a {
	background-image: url(images/prev-horizontal.png);
	background-repeat: no-repeat;
	background-position: left center;
	display: block;
	height: 32px;
	width: 32px;
	text-decoration: none;
	color: #F4ECDF;
}

.carousel-prev a:hover {
	background-position: -32px;
}

.carousel-prev a:active {
	background-position: -64px;
}

.carousel-next {
	float: left;
	width: 32px;
	padding-top: 144px;
	color: #E7ECD6;
} 

.carousel-next a {
	background-image: url(images/next-horizontal.png);
	background-repeat: no-repeat;
	background-position: left center;
	display: block;
	height: 32px;
	width: 32px;
	text-decoration: none;
	color: #E7ECD6;
}

.carousel-next a:hover {
	background-position: -32px;
}

.carousel-next a:active {
	background-position: -64px;
}
 
.carouselWrap {
	float: left;
	width: 650px;
	margin-right: 16px;
	margin-left: 16px;
	padding-top: 44px;
}

.carouselWrap ul {
	margin: 0px;
	padding: 0px;
}

.carouselWrap ul li {
	list-style-type: none;
}


.jcarousel-container {
    position: relative;
}

.jcarousel-clip {
    z-index: 2;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.jcarousel-list {
    z-index: 1;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
}

.jcarousel-list li,
.jcarousel-item {
	float: left;
	list-style: none;
	/* We set the width/height explicitly. No width/height causes infinite loops. */
    width: 650px;
	height: 245px;
}

/**
 * The buttons are added dynamically by jCarousel before
 * the <ul> list (inside the <div> described above) and
 * have the classnames "jcarousel-next" and "jcarousel-prev".
 */
.jcarousel-next {
    z-index: 3;
    display: none;
}

.jcarousel-prev {
    z-index: 3;
    display: none;
}

/* END jquery.jcarousel.css - The main one */

/* START my styles for My T Chai */

/*
Ignoring This

.jcarousel-container {
    -moz-border-radius: 10px;
    background: #F0F6F9;
    border: 1px solid #346F97;
}
*/

/*
This controls the containing box of the carousel
and general alignment of the buttons
*/
.jcarousel-container-horizontal {
	width: 695px;
	padding-top: 40px;
	padding-right: 40px;
	padding-bottom: 20px;
	padding-left: 20px;
}

.jcarousel-clip-horizontal {
	width:  650px;
	height: 250px;
	margin-left: 30px;
}

.jcarousel-item-horizontal {
	margin-right: 15px;
}

.jcarousel-item-placeholder {
    background: #fff;
    color: #000;
}

/**
 *  Horizontal Buttons
 */
.jcarousel-next-horizontal {
	position: absolute;
	top: 143px;
	right: 5px;
	width: 32px;
	height: 32px;
	cursor: pointer;
	background: transparent url(images/next-horizontal.png) no-repeat 0 0;
}

.jcarousel-next-horizontal:hover {
    background-position: -32px 0;
}

.jcarousel-next-horizontal:active {
    background-position: -64px 0;
}

.jcarousel-next-disabled-horizontal,
.jcarousel-next-disabled-horizontal:hover,
.jcarousel-next-disabled-horizontal:active {
    cursor: default;
    background-position: -96px 0;
}

.jcarousel-prev-horizontal {
	position: absolute;
	top: 143px;
	left: 5px;
	width: 32px;
	height: 32px;
	cursor: pointer;
	background: transparent url(images/prev-horizontal.png) no-repeat 0 0;
}

.jcarousel-prev-horizontal:hover {
    background-position: -32px 0;
}

.jcarousel-prev-horizontal:active {
    background-position: -64px 0;
}

.jcarousel-prev-disabled-horizontal,
.jcarousel-prev-disabled-horizontal:hover,
.jcarousel-prev-disabled-horizontal:active {
    cursor: default;
    background-position: -96px 0;
}
#controls {
	padding-top: 30px;
	padding-left: 30px;
	display: none;
}

#controls a {
	color: #816957;
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
	text-decoration: none;
	padding-right: 30px;
}

#controls a:hover {
	color: #4b3a2f;
}

