﻿/*Slider*/
.recomendedProducts
{
	width:430px;
	position:relative;
	height:160px;
}
.weRecommend
{
	color:#000;
	font-size:14px;
	position:absolute;
	top:5px;
	float:left;
	z-index:99;
}
#viewport{
	width: 390px; /* Defines the size of the visible part of the carousel
		Attention : if you only want to see plain items in the viewport,
		the width of the viewport should take into account of :
		- the items width
		- the right and left padding of items
		- the number of items you want to see in the viewport
	 */
	overflow:hidden; /* Hides extra elements, those outside the viewport area */
	/* Fix for IE */
	position:absolute;
	float:left;
	top:30px;
	left:20px;
}
.js #viewport
{
	background:url('/web/design/img/carousel-bg.jpg') 0 0 repeat-x;
}
#viewport ul{
	position: relative; /* Enables positionning of elements inside viewport */
	padding: 0; /* Resets default - User Agent - style */
	margin: 0;
}
#viewport li{
	width: 130px; /* Defines the size of inner element */
	height: 126px;
	float: left; /* Places list items side by side*/
	list-style: none; /* Resets default - User Agent - style */	
	margin:0;
	padding: 0;
	text-align:center;
	position:relative;
}
#simplePrevious,
#simpleNext
{
	display:none;
}
.js #simplePrevious, 
.js #simpleNext
{
  display: block;
  height: 126px;
  width: 20px;
  background: url('/web/design/img/arrow.jpg') no-repeat -20px bottom;
  text-indent: -9999px;
  position: absolute;
  cursor: pointer;
  top:30px;
}
.js #simplePrevious
{	
	left:0;
}
.js #simplePrevious:hover
{
	background-position:0 bottom;
}
.js #simpleNext
{
	right:0;
	background-position:-40px bottom;
}
.js #simpleNext:hover
{
	background-position:-60px bottom;
}
.recProd
{
	width:89px;
	float:left;
	position:relative;
	text-align:right;
	height:126px;
}
.recProd h4 a,
.recProd p a
{
	font-size:11px;
	line-height:14px;
	color:#595959;
	text-decoration:none;
	text-align:right;	
}
.recProd h4
{
	max-height:42px;
	overflow:hidden;
	margin-top:30px;
	letter-spacing:-1px;
	padding-right:1px;
}
.recProd p
{
	max-height:18px;
	overflow:hidden;
}
.recProd h4 a:hover,
.recProd p a:hover
{
	color:#0067A5;
}
.recProd .price
{
	top:85px;
	right:0;
	position:absolute;
	font-size:20px;
}
.recProd .oldPrice
{
	position:absolute;
	top:75px;
	right:0;
	font-size:10px;
	background:url('/web/design/img/overline.png') 5px 3px no-repeat;
	width:38px;
	padding-right:2px;
	text-align:right;
}
.recProd .currency
{
	font-size:10px;
}
.recProd .cents
{
	top:-5px;
	position:relative;	
	text-align:left;
	font-size:13px;
}	
a.moreInfo
{
	padding:3px;
	position:absolute;
	top:105px;
	right:0;
	color:#0067a5;
	text-decoration:none;
}
a.moreInfo:hover
{
	background-color:#d8f3f4;
}
#viewport li img
{
	margin-top:30px;
}