	#gallery-wrapper {
			width: 1160px;
			height: 451px;
		//	background: red;
		//	border: 3px solid red;
			position: relative;
			left: 19px;
			top: -399px;
			z-index: -10;
		//	opacity: 0.5;
			overflow: hidden;
		}
	
	.word {
		width: 100%;
	}
	
	.gallery-bg {
		position: absolute;
		height: 50px;
		width:100%;
		background: #000;
		bottom: 0;
		opacity: 0.5;
		opacity: 0.9;
		box-shadow: 0px 0px 10px #000;
	}
	
	.gallery-photos {
		width: 6000px;
		height: 150px;
		position: absolute;
		bottom: 0px;
		}
		
		
		
	.gallery-photos ul li.gallery-slide {
		width: 200px;
		height: 120px;
		background: blue;
		margin: 12px;
		float: left;
		overflow: hidden;
		border: 3px solid #888;
		border-radius: 5px;
		opacity: 0.2;
		
		-webkit-transition: all 0.2s ease-out;
		-moz-transition: all 0.2s ease-out;
		-o-transition: all 0.2s ease-out;
	}
	
	.gallery-photos ul li.gallery-slide:hover {
		opacity: 1;
		margin-top: 8px;
		
		-webkit-transition: all 0.2s ease-out;
		-moz-transition: all 0.2s ease-out;
		-o-transition: all 0.2s ease-out;
		}
	
	.gallery-photos img {
		width: 200px;
	}
	
	
	
	
	
	
	
	
	
	
	
	
	
	