

#mosaic-slideshow{
	/* The slideshow container div */
	height:250px;
	margin:0 auto;
	position:relative;
	width:800px;
}

.mosaic-slide{
	/* This class is shared between all the slides */
	left:10px;
	position:absolute;
	top:25px;
	height: 180px;
	width: 780px;
	border:10px solid #FFF;
	
	/* CSS3 rounded corners */
	-moz-border-radius:20px;
	-webkit-border-radius:20px;
	border-radius:20px;
}

.tile{
	/* The individual tiles */
	height:60px;
	width:60px;
	float:left;
	border:0px solid #FFF;
	/*border-width:0 1px 1px 0;*/
	background-color:#FFF;
}

.arrow{
	/* The prev/next arrows */
	width:35px;
	height:70px;
	background:url("../img/arrows.png") no-repeat;
	position:absolute;
	cursor:pointer;
	top:125px;
	margin-top:-35px;*/
	z-index:10;
}

.arrow.left{
	left:-20px;
	top: 180px;
	background-position:center top;
}

.arrow.left:hover{
	background-position:center -70px;
}

.arrow.right{
	right:-40px;
	top: 180px;
	background-position:center -140px;
}

.arrow.right:hover{
	background-position:center -210px;
}

.clear{
	/* This class clears the floats */
	clear:both;
}


/* The styles below are only necessary for the styling of the demo page: */

#main{
	position:relative;
	margin:0 auto;
	width:800px;
}

