@charset "utf-8";
/* CSS Document */

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
#scroll {
	position:relative;
	height:245px;
	overflow:hidden;
	/*border:1px solid #ddd;*/
	width:775px;
}

#tools {
	width:9999em;
	position:absolute;
	height:245px;
}

.tool { float:left; width:775px; height:245px; background-repeat:no-repeat; background-position:0; background-color:#FFF; }
#intro { background-color:#CCC; }
.imgPic { float:left; min-height:245px; width:420px; padding:0px 5px; }
.points { background-color:#FFF; float:right; min-height:245px; padding:20px 10px 0 10px; width:325px; }
.points h1 { color:#006; font-size:14pt; font-weight:bold; margin:0 0 5px 0; }
.points p { color:#333; font-size:9pt; padding:2px 0; }
.points p.price { color:#060; font-size:12pt; margin:13px 0; }
.points p.price .productSpecialPrice { font-weight:bold; color:#F00; }
.points p.small { color:#CCC; font-size:7pt; }
.points p.buttons { position:relative; top:10px; }
.points p.buttons a { margin:0px;padding:0px 10px 0px 12px;/* @noflip */
background:transparent url(../images/button_submitGr.png) top left no-repeat;border:0px;line-height:22px;display:block;color:white;font-size:11px;font-weight:bold;text-align:center;cursor:pointer;/* @noflip */ width:78px; text-decoration:none; }
.points p.buttons a:hover { color:#FF0; }


#thumbs {
	/*background:url(http://static.flowplayer.org/tools/img/demo-navi.jpg) no-repeat;*/
	/*height:90px;*/
	position:absolute;
	top:220px;
	width:160px;
	/*left:280px;*/
	right:0;
}

.t a {
	background-color:#039;
	margin-left:11px;
	display:block;
	float:left;
	line-height:15px;
	width:16px;	
	font-size:10px;	
	cursor:pointer;
	text-align:center;
	border:1px solid #999;
	color:#FFF;
}

.t a.active { cursor:default !important; background-color:#FFF; color:#000; }
.t a:hover { background-color:#FFF; color:#000; }

.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 600px;
	height:112px;
	float:left;

	/* custom decorations */
	border:1px solid #ccc;
	background:url(images/bg_tooltip.png) repeat-x;
}

/*
	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 the width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin:3px 5px 0px 6px;
	background-color:#fff;
	padding:2px;
	width:105px;
	height:100px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

/* active item */
.scrollable .active {
	border:1px solid #ccc;
	z-index:9999;
	position:relative;
}

.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	display:block;
	background-repeat:no-repeat;
	width:17px;
	height:114px;
	float:left;
	margin:0px;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right 				{ background:url(../images/icon_arrowRight.png) no-repeat; clear:right; margin-right: 0px;}
a.right:hover 		{ background-position:0px -114px; }
a.right:active 	{ background-position:0px -114px; } 


/* left */
a.left				{ background:url(../images/icon_arrowLeft.png) no-repeat; margin-left: 0px; } 
a.left:hover  		{ background-position:0px -114px; }
a.left:active  	{ background-position:-0px -114px; }

/* up and down */
a.up, a.down		{ 
	background:url(../images/icon_arrowLeft.png) no-repeat; 
	float: none;
	margin: 10px 50px;
}

/* up */
a.up:hover  		{ background-position:-30px 0; }
a.up:active  		{ background-position:-60px 0; }

/* down */
a.down 				{ background-position: 0 -30px; }
a.down:hover  		{ background-position:-30px -30px; }
a.down:active  	{ background-position:-60px -30px; } 


/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
} 	



