@CHARSET "UTF-8";

.gallery_thumb
{
	width: 100%;
	padding: 5px;
    box-shadow: 0 0 5px #999;
    -moz-box-shadow: 0 0 5px #999;
    -webkit-box-shadow: 0 0 5px #999;
    margin-top: 5%;
}

.gallery_arrow
{
	width: 100%;

    opacity: 0.00;
    filter: alpha(opacity=0); /* For IE8 and earlier */	
}

.gallery_arrow, .gallery_arrow_left, .gallery_arrow_right
{
	position: absolute;
    top: 50%;
	
	transform: translateY(-50%);

    -webkit-transition: opacity 0.5s; /* Safari */
    transition: opacity 0.5s;
}

.gallery_arrow:hover
{
	opacity: 1.0;
    filter: alpha(opacity=100); /* For IE8 and earlier */
}

.gallery_arrow_left
{
	left: 5%;
}

.gallery_arrow_right
{
	right: 5%;
}

.gallery_div
{
/* 	width:55%; */
	padding: 1%;
    box-shadow: 0 0 5px #999;
    -moz-box-shadow: 0 0 5px #999;
    -webkit-box-shadow: 0 0 5px #999;
    background: #fff;

    transform: translate(-50%, -50%);
	top:50%;
    left: 50%;
    position: fixed;
    -webkit-transition: width 0.3s linear 0s;
    z-index: 99999;
    visibility: hidden;
}

.gallery_pic:hover + #divarrows
{	
	opacity: 1.0;
    filter: alpha(opacity=100); For IE8 and earlier
}

.gallery_thumb:hover
{
    opacity: 0.5;
    filter: alpha(opacity=50); /* For IE8 and earlier */

    -webkit-transition: all 0.25s linear 0s; /* Safari */
    transition: all 0.25s linear 0s;
}