
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
#photoGallery.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 545px;
	height:120px;

	/* custom decorations */
	border:1px solid #ccc;
	background:url(../images/h300-trans.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.
*/
#photoGallery.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */
#photoGallery.scrollable img {
	float:left;
	margin:20px 5px 20px 21px;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	cursor:pointer;
	/*width:100px;
	height:75px;*/
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

/* active item */
#photoGallery.scrollable .active {
	border:2px solid #000;
	z-index:9999;
	position:relative;
}


/* Custom Styles */

#image_wrap {
    background-color:#EFEFEF;
    border:2px solid #FFFFFF;
    margin : 15px auto;
    outline-color:#DDDDDD;
    outline-style:solid;
    outline-width:1px;
    padding : 15px 0;
    text-align:center;
    width : 600px;
}   
/* remove margins from the image */ 
#photoGallery .items img { 
    margin:0; 
} 
 
/* make A tags our floating scrollable items */ 
#photoGallery .items a { 
    display:block; 
    float:left; 
    margin:20px 15px; 
}  
 
 
/* tooltip styling */ 
#tooltip { 
    display:none; 
    background:url(/assets/images/black_arrow.png); 
    font-size:.85em; 
    height:70px; 
    width:160px; 
    padding:25px; 
    color:#fff;
    z-index : 1000; 
}

#actionButtons {
    margin-top:30px;
    text-align:center;
    display : none; /* Functionality not ready for autoplay. */
}

#PhotoForm {
    width : 600px;
}