﻿.images
{
	display: inline-block;
	width: 322px;
	/*text-align: center;	*/
	float:left;
	position: relative;
	margin-right: 20px;
	background-color: #D7EBF9;
	background-color: #2d86b2;
}

#image-wrap { 
    width:320px; 
    height: 320px;
    text-align:center; 
	/*background-color:#2d86b2; */
	background-color: #ECF8FE;
    border:1px solid #2d86b2;
    /*margin-top: 5px;*/
}

.images .scrollable
{
	width: 228px; 	
}

.promotions
{
	background-color:#2d86b2;
}
.promotions .scrollable
{
	width: 605px;	
	
}
.promotions #contents 
{
	display: block;
	height: 200px;
	width: 696px;
	background-color:#ffffff;
	border:2px solid #D7EBF9;
	border-top: none;
}
.promotions .product
{
	
}
.promotions .preview
{
	float: left;
	height: 200px;
	width: 200px;
	margin: 0 10px;	
}
.promotions .details
{
	padding:0 5px 0 10px;
	width:461px;
	height: 200px;
	float: left;
	background-color:#ECF8FE;	
}
.promotions .details .description
{
	height:140px;
	margin-bottom:5px;	
	overflow:auto;
}
.promotions .details .description h3
{
	margin-bottom: 10px;
	overflow: hidden;	
}
.promotions .details .buttons
{
	height: 50px;	
}
.promotions .details #price 
{
	color: #4F8A10;
	font-size: 20px;
	font-weight: bold;
	display: block;
	width: 160px;
	height: 50px;
	float: left;
	text-align: right;
	background: url(images/price.jpg) no-repeat scroll 0 0 transparent; 
	margin-left:120px;
}

.promotions .details #price span
{
	display: block;
	padding: 8px 10px 0 0;
}
.promotions .details a#details  
{
	margin-left: 5px;
	display: inline-block;
	width: 175px;
	height: 50px;
	background: url(images/detailsgroot.jpg) no-repeat scroll 0 0 transparent; 
}
.promotions .details a#details:hover { background: url(images/detailsgroot.jpg) no-repeat scroll 0 -50px transparent;border-bottom: none; }
.promotions .details a#details:focus { background: url(images/detailsgroot.jpg) no-repeat scroll 0 -100px transparent; }

/* 
    root element for the scrollable. 
    when scrolling occurs this element stays still. 
*/ 
.scrollable { 
 
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
    
    height:70px; 
    /* custom decorations 
	border:1px solid #ccc;
	background:url(/img/global/gradient/h300.png) repeat-x;*/
	border: none;
} 
 
/* 
    root element for scrollable items. Must be absolutely positioned 
    and it should have a extremely large width to accomodate scrollable items. 
    it's enough that you set width and height for the root element and 
    not for this element. 
*/ 
.scrollable .items { 
    /* this cannot be too large */ 
    width:20000em; 
    position:relative; 
    clear:both;
} 

/* single scrollable item */
.scrollable img {
	float:left;
	margin:5px;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	cursor:pointer;
	width:60px;
	height:50px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

/* active item */
.scrollable .active {
	border:1px solid #2d86b2;
	z-index:9999;
	position:relative;
}
 
/* 
    a single item. must be floated in horizontal scrolling. 
    typically, this element is the one that *you* will style 
    the most. 
*/ 
.scrollable .items div { 
    float:left; 
} 
 
/* you may want to setup some decorations to active the item 
.items .active { 
    border:1px inset #ccc; 
    background-color:#fff; 
}*/ 