@charset "utf-8";
/* CSS Document */

/* get rid of those system borders being generated for A tags */
a:active {
  outline:none;
}

:focus {
  -moz-outline-style:none;
}

/* 
    root element for the scrollable. 
    when scrolling occurs this element stays still. 
*/ 
.scrolling_wrap{
	margin:auto;
	margin-bottom:10px;
	width:877px;
	height:230px;
}
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 585px;
	height:205px;

	/* custom decorations */
	border:1px solid #ccc;
	background:url(../images/scroll_backgrond300.png) repeat-x;
	
	/* this makes it possible to add next button beside scrollable */
	float:left;	

}

/*
	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;
}
 
/* 
    a single item. must be floated in horizontal scrolling. 
    typically, this element is the one that *you* will style 
    the most. 
*/ 
div.scrollable div.items div { 
    float:left; 
} 
 

/* single scrollable item */
.scrollable img {
	float:left;
	margin:20px 8px 20px 14px;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	cursor:pointer;
	width:261px;
	height:159px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	z-index:9999;
	position:relative;
}



.vertical {
	/* required settings */
	position:relative;
	overflow:hidden;
	/* custom decorations */
	border:1px solid #ccc;
	width:240px;
	height:205px;
	float:right;
	background:url(../images/scroll_backgrond300.png) repeat-x;
	color:#6C6C6C;
}

/* 
    root element for vertical items. Must be absolutely positioned 
    and it should have a extremely large width to accomodate vertical items. 
    it's enough that you set width and height for the root element and 
    not for this element. 
*/ 
div.vertical div.items { 
    /* this cannot be too large */ 
    height:20000em; 
    position:absolute; 
	clear:both;
} 
 
/* 
    a single item. must be floated in horizontal scrolling. 
    typically, this element is the one that *you* will style 
    the most. 
*/ 
div.vertical div.items div { 
	margin:20px;
 	width:200px;
	height:164px;
} 

div.vertical div.items p{
	margin-bottom:10px;
	font-size:13px;
}
 
/* active item */
.vertical .active {
	border:2px solid #000;
	z-index:9999;
	position:relative;
}
/* you may want to setup some decorations to active the item */ 
div.items div.active { 
    border:1px inset #ccc; 
    background-color:#fff; 
}


/*-------- prePage and nextPage button -----------*/
a.prev_page{
	margin-top:90px;
	margin-right:2px;
	width:18px;
	height:18px;
	background-image:url(../images/left.png);
	background-position: 0 0;
	float:left;
	display:block;
}
a.next_page{
	margin-top:90px;
	margin-left:2px;
	width:18px;
	height:18px;
	background-image:url(../images/right.png);
	background-position: 0 0;
	float:left;
	display:block;
}

a.prev_page:hover,a.next_page:hover{
	background-position: 0 18px !important;
	cursor:pointer;
}

.controllButton{
	margin:auto;
	clear:both;
	width:880;
	float:left;
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(../images/arrow_vertical_button.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	float:left;
	margin:20px 390px;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right 				{ background-position: 0 -30px; clear:right; margin-right: 0px;}
a.right:hover 		{ background-position:-30px -30px; }
a.right:active 	{ background-position:-60px -30px; } 


/* left */
a.left				{ margin-left: 0px; } 
a.left:hover  		{ background-position:-30px 0; }
a.left:active  	{ background-position:-60px 0; }

/* up and down */
a.up, a.down		{ 
	background:url(../images/arrow_horizental_button.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;		
} 	
