/*
 * Galleria Classic Theme
 * Copyright (c) 2010, Aino
 * Licensed under the MIT license.
 */

#galleria {
	height: 600px;
	margin-bottom: 30px;
}
 
.galleria-container {
    position: relative;
    overflow: hidden;    
}

.galleria-container img {
    -moz-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
}

.galleria-stage {
    position: absolute;
    top: 0;
    bottom: 87px;
    left: 0;
    right: 0;
    overflow:hidden;
}

.galleria-thumbnails-container {
    height: 77px;
    bottom: 0;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 2;
}

.galleria-carousel .galleria-thumbnails-list {
    margin-left: 30px;
    margin-right: 30px;
}

.galleria-thumbnails .galleria-image {
    height: 77px;
    width: 145px;    
    margin: 0 6px 0 0;    
    float: left;
    cursor: pointer;
}

.galleria-counter {
    position: absolute;
    bottom: 10px;
    left: 10px;
    text-align: right;
    color: #fff;
    font: normal 11px/1 arial,sans-serif;
    z-index: 2;
}

.galleria-loader {    
    width: 24px;
    height: 24px;
    position: absolute;
    top: 239px;
    left: 464px;
    z-index: 2;
    display: none;
    background: url("../images/loading.gif") no-repeat 2px 2px;
}

.galleria-info {
    width: 50%;
    top: 15px;
    left: 15px;
    z-index: 2;
    position: absolute;
}

.galleria-info-text {
    background-color: #000;
    padding: 12px;
    display: none;
    /* IE7 */ zoom:1;
}

.galleria-info-title {
    font: bold 12px/1.1 arial,sans-serif;
    margin: 0;
    color: #fff;
	margin-bottom: 7px;
}

.galleria-info-description {
    font: italic 12px/1.4 georgia,serif;
    margin: 0;
    color: #bbb;
}

.galleria-info-close {
    width: 9px;
    height: 9px;
    position: absolute;
    top: 5px;
    right: 5px;
    background-position: -753px -11px;
    opacity: .5;
    filter: alpha(opacity=50);
    cursor: pointer;
    display: none;
}
.galleria-info-close:hover{
    opacity:1;
    filter: alpha(opacity=100);
}
.galleria-info-link {
    background-position: -669px -5px;
    opacity: .7;
    filter: alpha(opacity=70);
    position: absolute;
    width: 20px;
    height: 20px;
    cursor: pointer;
    background-color: #000;
}

.galleria-info-link:hover {
    opacity: 1;
    filter: alpha(opacity=100);
}

.galleria-image-nav {
    position: absolute;
    top: 50%;
    margin-top: -34px;
    width: 100%;
    height: 34px;
    left: 0;
}

.galleria-image-nav-left {	
	width: 25px;
	height: 34px;	
	-webkit-border-top-right-radius: 3px;
	-webkit-border-bottom-right-radius: 3px;
	-moz-border-radius-topright: 3px;
	-moz-border-radius-bottomright: 3px;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;    
	background: #FFFFFF url("../images/imagebox_left.gif") no-repeat center center;    
    cursor: pointer;    
    position: absolute;
    left: 0;
    z-index: 2;
}

.galleria-image-nav-right {    
	width: 25px;
	height: 34px;	
	-webkit-border-top-left-radius: 3px;
	-webkit-border-bottom-left-radius: 3px;
	-moz-border-radius-topleft: 3px;
	-moz-border-radius-bottomleft: 3px;
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
	background: #FFFFFF url("../images/imagebox_right.gif") no-repeat center center;    
    cursor: pointer;    
    position: absolute;
    left: auto;
    right: 0;
    z-index: 2;
}

.galleria-thumb-nav-left {
    cursor: pointer;
    display: none;
    background: url("../images/arrows_prev_carousel.png") no-repeat top left;
    position: absolute;
    left: 0;
    top: 20px;
    height: 30px;
    width: 20px;
    z-index: 3;
    -webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.galleria-thumb-nav-right {
    cursor: pointer;
    display: none;
    background: url("../images/arrows_next_carousel.png") no-repeat top left;
    position: absolute;
    right: 0;
    left: auto;
    top: 20px;
    height: 30px;
    width: 20px;
    z-index: 3;
    -webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.galleria-thumbnails-container .disabled {
    background-position: -40px 0;
    cursor: default;
}

.galleria-thumb-nav-left:hover,
.galleria-thumb-nav-right:hover {
	background-position: -20px 0;
}

.galleria-thumbnails-container .disabled:hover {
    background-position: -40px 0;
    cursor: default;
}

.galleria-carousel .galleria-thumb-nav-left,
.galleria-carousel .galleria-thumb-nav-right {
    display: block;
}