/*
PORTUGAL VILLAS AND APARTMENTS
Special Property Pages
July 2010
############################################################# */

/*	SPECIAL IMAGE GALLERY SCROLLABLE HORIZONTAL
/* get rid of those system borders being generated for A tags */
a:active {
  outline:none;
}

/* ################################### LARGE IMAGE WRAPPER */
#imgGallery {
margin:35px 0px 0px 0px;
}


/* styling for the image wrapper  */
#imgGallery #image_wrap {
	/* dimensions */
	width:550px;
	margin:0px 0px 2px 0px;
	padding:8px 4px;

	/* centered */
	text-align:center;

	/* some "skinning" */
	background-color:#0B0B0B;
	border:1px solid #666;
	outline:0px solid #666;
}

#imgGallery #image_wrap #imgCrop {
	width:550px;
	height:400px;
	border:0px solid #0B0B0B;
	overflow:hidden;
}

/*	################################### SCROLLABLE HORIZONTAL
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
#imgGallery .scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 550px;
	height:80px;


	/* custom decorations */
	border:1px solid #666;
	background-color: #0B0B0B;
	margin:0px 0px 10px 0px;
	padding:4px;
}
/*
	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.
*/
#imgGallery .scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */
#imgGallery .scrollable img {
	float:left;
	margin:0px 2px 0px 3px;
	background-color:#101010;
	padding:0px;
	border:1px solid #666;
	cursor:pointer;
	width:100px;
	height:75px;
}

/* active item */
#imgGallery .scrollable .active {
	border:1px solid #5D8BBA;
	z-index:9999;
	position:relative;
}