.promo-footer {
	position: relative;
	width: 100%;
	height: 191px;
	overflow: hidden;
	z-index: 20;
}

/* Container that will actually expand and contract (roll up or down) */
.promo-footer .main-container {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 134px; /* contract first */
}

.promo-footer .backdrop {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: url(/image/promofooter_backdrop.png) 0px 30px repeat-x;
}

/* Container that hosts the scrollable item-container */
.promo-footer .scroll-container {
	position: absolute;
	left: 50%;
	top: 30px;
	margin-left: -450px;
	width: 900px;
	height: 134px;
	overflow: hidden;
}

.promo-footer .scroll-container.no-separator {
	/* no background */
}

.promo-footer .scroll-container.single-separator {
	background: url(/image/promofooter_itemseparator.png) 0px 0px no-repeat;
}

.promo-footer .scroll-container.dual-separator {
	background: url(/image/promofooter_itemseparator.png) 0px -250px no-repeat;
}

/* This container will scroll between items */
.promo-footer .item-container {
	position: absolute;
	width: 900px;
	height: 134px;
	visibility: hidden;
}

/* Individual promo item */
.promo-footer .item-container .item {
	position: relative;
	width: 300px;
	height: 134px;
	float: left;
	cursor: pointer;
}

.promo-footer .item-container .image-area {
	position: absolute;
	left: 10px;
	top: 10px;
	width: 140px;
	height: 124px;
}

.promo-footer .item-container .image-area .swirl {
	position: relative;
	left: 0;
	top: 0;
	width: 140px;
	height: 124px;
	background: url(/image/promofooter_itemswirl.png) 0px 0px no-repeat;
}

.promo-footer .item-container .image-area .image {
	position: absolute;
	left: 0;
	top: 0;
	width: 140px;
	height: 124px;
	z-index: 100;
}

.promo-footer .item-container .item .text-area {
	position: absolute;
	right: 10px;
	top: 10px;
	float: left;
	width: 130px;
	height: 120px;	/* originally 114, set to 120 to fit 4 lines */
	overflow: hidden;
}

.promo-footer .item-container .item .title {
	position: relative;
	float: left;
	width: 260px;
	height: 75px;
}

.promo-footer .item-container .item.hover .title {
	margin-left: -130px;
}

.promo-footer .item-container .item .title img {
	position: absolute;
	bottom: 0;
}

.promo-footer .item-container .item .description {
	position: relative;
	float: left;
	width: 130px;
	margin-top: 5px;
}

/* Button for expansion/contraction */
.promo-footer .btn-expand {
	position: absolute;
	left: 50%;
	margin-left: -453px;
	top: 0;
	height: 30px;
	cursor: pointer;
	color: white;
	background: url(/image/promofooter_backdrop.png) repeat-x;
}

.promo-footer .btn-expand .label {
	float: left;
	padding: 11px 15px;
}

* html .promo-footer .btn-expand .label {
	padding-bottom: 0;
}

.promo-footer .btn-expand .label img {
	position: relative;	/* needed here for PNGFix to work */
}

/* 1px gradient separator line below promo box expand button; this is an img to allow it to stretch */
.promo-footer .main-container .separator {
	position: absolute;
	margin-left: -600px;
	left: 50%;
	top: 30px;
	width: 720px;
	height: 1px;
	background: url(/image/promofooter_separator.png) no-repeat;
}

/* Buttons to scroll between items */
.promo-footer .btn-left {
	position: absolute;
	left: 50%;
	margin-left: -500px;
	top: 75px;
	width: 45px;
	height: 45px;
	background: url(/image/promofooter_leftarrow.png) 0px 0px no-repeat;
	cursor: pointer;
	visibility: hidden;
}

.promo-footer .btn-left:hover {
	background-position: 0px -45px;
}

.promo-footer .btn-right {
	position: absolute;
	left: 50%;
	margin-left: 455px;
	top: 75px;
	width: 45px;
	height: 45px;
	background: url(/image/promofooter_rightarrow.png) 0px 0px no-repeat;
	cursor: pointer;
	visibility: hidden;
}

.promo-footer .btn-right:hover {
	background-position: 0px -45px;
}		
