/* BOX GRID
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  */

.boxgrid { 
	width: 295px; 
	height: 260px; 
	margin:10px; 
	float:left; 
	background:#6e5a41; 
	border: solid 2px #6e5a41; 
	overflow: hidden; 
	position: relative; 
}

.boxgrid img { 
	position: absolute; 
	top: 0; 
	left: 0; 
	border: 0; 
	
}

.boxgrid p{ 
	padding: 0 10px; 
	color: #afafaf; 
	font-size: 0.9em
}

.boxcaption { 
	float: left; 
	position: absolute; 
	background: #53432f; 
	height: 100px; 
	width: 100%; 
	opacity: .8; 
	
}

.caption .boxcaption {
 	top: 220px;
 	left: 0px;
}



/* VSLIDE
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  */


.vslide {
	width:140px;
	height:140px;	
	border:4px solid #bab093;	
	margin: 0 5px 5px 0;
	background: #5a4122;	
	
	/* required to hide the image after resized */
	overflow:hidden;
	
	/* for child absolute position */
	position:relative;
	
	/* display div in line */
	float:left;
	cursor:hand; cursor:pointer;
}

	.vslide img {
		border:0;
	
		/* allow javascript moves the img position*/
		position:absolute;
		z-index:200;
	}

	.vslide .caption {
		position:absolute;
		z-index:0;	
		color:#f7f0ea;
		display:block;
	}

		.vslide .caption h3 {
			font-size: 1.8em;
			padding:10px 5px 0 8px;
			margin:0;
			color:#e2b598;
		}
		

		.vslide .caption p {
			font-size:1.3em;	
			padding:3px 5px 0 8px;
			margin:0;
		}



/* Setting for bars */
.bar1, .bar2, .bar3, .bar4 {
	position:absolute;
	background-repeat: no-repeat; 
	z-index:200;
}

.clear {
	clear:both;	
}







/* PHOTOS
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  */


.photo {
		position:relative;
		font-family:arial;	
		overflow:hidden;
		border: solid 2px #6e5a41; 
		width:450px;
		height:140px;
}	
	
		.photo h3, .photo .caption {
			position:absolute;
			background:#6e5a41; 
			height:50px;
			width:450px;
			opacity:0.6;
		}
		
		.photo h3 { 
			top:-50px;
		}

		.photo .caption { 		
			bottom:-50px;		
			left:0px;
		}
		
		.photo h3 {
			color:#f6f6d4;
			text-shadow: 1px 1px 3px #f9e6c9;
			text-transform: uppercase;
			top:-50px;
			font-size: 2em;
			display:block;
			padding:5px 0 0 10px;
		}
		
		.photo .caption span{
			color:#999;	
			font-size:9px;
			display:block;
			padding:5px 10px 0 10px;
		}


