﻿/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/

	
	
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 420px;
	height:250px;
	

	/* custom decorations */
	/*border:1px solid #ccc;
	background:url(/img/global/gradient/h300.png) repeat-x;*/
/*    top: 2px;
    left: 32px;*/
}

/*
	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;
    /*top: 7px;
    left: -368px;*/
}

.items div {
	float:left;
	width:420px;
	margin-left:auto;
	margin-right:auto;
	margin-top:10px;
	
}

/* single scrollable item */
.scrollable img {
	float:left;
	/*margin:10px 5px 10px 21px;*/
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	/*width:100px;
	height:475px;
	*/
	/*
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
*/
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
	
}



/* SIDEBAR SCROLLABLE */
.scrollableSide {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 220px;
	height:400px;
}

.scrollableSide .itemsSide {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
    /*top: 7px;
    left: -368px;*/
}

.itemsSide div {
	float:left;
	width:220px;
	margin-left:auto;
	margin-right:auto;
	margin-top:10px;
}


/* single scrollable item */
.scrollableSide img {
	float:left;
	/*margin:10px 5px 10px 21px;*/
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	/*width:100px;
	height:475px;
	*/
	/*
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
*/
}




/* active item */
.scrollableSide .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}


/*photos*/
/* PHOTO SCROLLABLE */
.scrollablePhotos {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 400px;
	height:400px;
	left:40px;
	
	
}

.scrollablePhotos .itemsPhotos {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
    /*top: 7px;
    left: -368px;*/
}

.itemsPhotos div {
	float:left;
	width:400px;
	margin-left:auto;
	margin-right:auto;
	margin-top:10px;
}


/* single scrollable item */
.scrollablePhotos img {
	float:left;
	/*margin:10px 5px 10px 21px;*/
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	/*width:100px;
	height:475px;
	*/
	/*
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
*/
}




/* active item */
.scrollablePhotos .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}



/**/



.cssCell {
    margin-left:auto;
    margin-right:auto;
}
  
.cssHRef {
    color:Lime;
    background-color:Red;
    display:block;
    width:150px;
    margin-left:auto;
    margin-right:auto;
}  
  