/*
	css-plus 
*/
#gallery-wrap {
	margin: 0 auto;
	overflow: hidden;
	width: 920px;
	position: relative;
	border-top:3px solid #DDDDDD;
	border-bottom:3px solid #DDDDDD;
	height:205px;
	padding:0 20px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
}
#gallery {
	position: relative;
	left: 0;
	top: 0;
}
#gallery li {
	float: left;
	list-style: none;
	margin: 10px 15px 15px 0;
}
#gallery li a img {
	border: 4px solid #FF0E00;
	height: 175px;
	width: 160px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	-webkit-box-shadow: 0px 0px 5px 2px #111111;
	-moz-box-shadow: 0px 0px 5px 2px #111111;
	box-shadow: 0px 0px 5px 2px #111111;
	-webkit-transition: all 400ms ease-in-out;
	-moz-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
}
#gallery li a img:hover {
	border: 4px solid #111;
	-webkit-transition: all 600ms ease-in-out;
	-moz-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
	-webkit-box-shadow: 0px 0px 5px 2px #FF0E00;
	-moz-box-shadow: 0px 0px 5px 2px #FF0E00;
	box-shadow: 0px 0px 5px 2px #FF0E00;
}
#gallery-prev {
	float: left;
	display:block;
	position:absolute;
	left:0;
	top:0;
	width:30px;
	height:205px;
	background:#DDDDDD;
	z-index:999999;
	cursor:pointer;
	-moz-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
	-moz-border-radius-topleft: 15px;
-moz-border-radius-topright: 0px;
-moz-border-radius-bottomright: 0px;
-moz-border-radius-bottomleft: 15px;
-webkit-border-radius: 15px 0px 0px 15px;
border-radius: 15px 0px 0px 15px;
}
#gallery-prev img {
	margin-left:5px;
	padding:90px 0 0 0
}
#gallery-next {
	float: right;
	display:block;
	position:absolute;
	right:0;
	top:0;
	width:30px;
	height:205px;
	background:#DDDDDD;
	z-index:999999;
	cursor:pointer;
	-moz-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
	moz-border-radius-topleft: 0px;
-moz-border-radius-topright: 15px;
-moz-border-radius-bottomright: 15px;
-moz-border-radius-bottomleft: 0px;
-webkit-border-radius: 0px 15px 15px 0px;
border-radius: 0px 15px 15px 0px;
}
#gallery-next img {
	margin-left:5px;
	padding:90px 0 0 0;
}
#gallery-prev:hover, #gallery-next:hover {
	background:#000;
	-moz-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
}

