/*
Description: Used to style the Gallery shortcode.
*/

.gallery-wrapper{
	width: 100%;
	float: left;
}

.gallery-big-image{
	position: relative;
	width: 100%;
}

.gallery-image{
	width: 100%;
}

.previous-gallery-item{
	width: 10%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	background: url('../images/layout/gallery-arrow-left.png') no-repeat center;
	opacity: 0.5;
}
.next-gallery-item{
	width: 10%;
	height: 100%;
	position: absolute;
	top: 0px;
	right: 0px;
	background: url('../images/layout/gallery-arrow-right.png') no-repeat center;
	opacity: 0.6;
}
.previous-gallery-item:hover, .next-gallery-item:hover{
	opacity: 0.9;
}
.gallery-thumbnails-wrapper{
	float: left;
	width: 100%;
	height: 76px;
	overflow: hidden;
	position: relative;
	margin-bottom: 20px;
}
.gallery-thumbnails-container {
    width: 80%;
    float: left;
    position: relative;
    display: block;
    height: 76px;
    overflow: hidden;
}
.gallery-thumbnails{
	list-style-type: none;
	margin: 3px 0 0 0;
	position: absolute;
	top: 0px;
	left: 0px;
	width: auto;
	white-space: nowrap;
}
.gallery-item-thumbnail{
	margin-right: 1px;
	margin-bottom: 1px;
	border: 1px solid transparent;
	opacity: 0.6;
	width: 70px;
	height: 70px;
	display: inline-block;
}
.gallery-item-thumbnail:hover{
	opacity: 1;
}
.current-gallery-item{
	border: 1px solid #f98e38;
	opacity: 1;
}
.prev-thumbnails{
	width: 10%;
    height: 44px;
    background: url('../images/layout/gallery-arrow-left.png') no-repeat top center;
    display: block;
    position: relative;
    margin-top: 17px;
    float: left;
    z-index: 11;
    cursor: pointer;
}
.next-thumbnails{
	width: 10%;
    height: 44px;
    background: url('../images/layout/gallery-arrow-right.png') no-repeat top center;
    display: block;
    position: relative;
    margin-top: 17px;
    float: right;
    z-index: 11;
    cursor: pointer;
}