@charset "UTF-8";
/* CSS Document */

/* Begining of structure Style */
.thumbContainer {
	width: 565px;
	height: 253px;
	border:1px solid #ac9f96;
	margin-bottom:10px;
}

.thumbContainer h2 {
	background-image: url(../images/nav_bg.jpg);
	background-repeat:repeat-x;
	text-transform: uppercase;
	font-size: 15px;
    font-weight: bold;
	text-align: center;
	line-height:14px;
	margin-bottom: 5px;
}

.thumbContainer .view {
	font-size:11px;
	text-transform: none;
	font-weight:lighter;
}

.thumbContainer h2 a:link, .thumbContainer h2 a:visited  {
	height: 30px;
    display: block;
	padding-top: 7px;
	color: #635A52;
    text-decoration: none;
	border-bottom: 1px solid #ac9f96;
	}

.thumbContainer h2  a:hover, .thumbContainer h2 a:active {
	background-image:url(../images/nav_bg_over.jpg);
	background-repeat:repeat-x;
}

.thumbNav {
	margin-left: 5px;
}

/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 520px;
	height:202px;	
	
	/* custom decorations */
	border:1px solid #5d5956;
	background-color:#fff;
}

/* 
	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 */
	width:20000em;
	position:absolute;
	clear:both;
	padding-top: 3px;
	padding-left: 0px;
}

/* single scrollable item */
#mainContent .thumbNav .subCatProduct {
	float:left;
	margin-left:6px;
	margin-right:0px;
	/*cursor:pointer;*/
}


/* this ends the structure Style */

/* this begins the navigation Style */

/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;		
}

/* prev, next, prevPage and nextPage buttons */
 .thumbNav a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:17px;
	height:204px;
	background: url(../images/arrow2_left.gif) no-repeat;
	float:left;
	cursor:pointer;
}

/* mouseover state */
.thumbNav  a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px -204px;		
}

/* disabled navigational button */
.thumbNav  a.disabled {
/*	visibility:hidden !important;	*/	
	filter:alpha(opacity=35);
	-moz-opacity:0.35;
	-khtml-opacity: 0.35;
	opacity: 0.35;
	
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(../images/arrow2_right.gif);
	clear:right;	
}



/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	margin-top: 12px;
	height:20px;
}


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(../images/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;     
} 	


