@import url("css.css");
@import url("samain.css");
@import url("dim/dim.css");
@import url("catmenu.css");
@import url("print.css");


/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	

}

/* 
	root element for scrollable items. Must be absolutely positioned
	and it should have a super large width to accomodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
div.scrollable div.items {	
	/* this cannot be too large */
	position:absolute;
	clear:both;
	width: 2000em;		
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;
	
}

/* active item */
div.scrollable div.items div.active {
	background-color:#fff;
}


a.scrollableNav {
	color: #7D7D7D;
	font-size: 10px;
	text-decoration: none;
	padding: 0;
	cursor:pointer;
}
a.scrollableNav:hover {
	color: #222;
}
a.disabled {
	display: none;
}
/* position and dimensions of the navigator */
div.navi {
	margin-left:328px;
	width:200px;
	height:20px;
}


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background: red url(../img/navigator.png) 0 0 no-repeat;     
	cursor:pointer;	
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -16px;     
} 
/* VARTIP */
div.vartip_box {
	width: 150px;
	margin: 0;
	padding: 5px !important;
	height: 205px;
	background: url(cBoxTipFullBg.gif) top left no-repeat;
	display: none;
}
div.vartip_small {
	height: 55px;
	background: url(cBoxTipSmallBg.gif) top left no-repeat;
}
div.vartip_box p {
	width: 150px;
	padding: 0 !important;
	margin: 0;
	line-height: 15px;
	height: 30px;
	font-size: 11px;
	color: #333;
}
a.vartip_a {
	display: block; 
	width: 30px;
	height: 30px;
}
div.vartip_box p.price {
	font-weight: bold;
	text-align: right;
	font-size: 14px;
	height: 20px;
	line-height: 20px;
}


div.wmr_body {
	
}

div.wmr_body h1 {
	line-height: 30px;
	padding-top: 10px;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 20px;
}

div.wmr_body h2 {
	line-height: 30px;
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
}

div.wmr_body p {
	line-height: 20px;
	margin-bottom: 10px;
}
