
#gallery
{
	position: relative;
	z-index: 0;
}

#gallery #gallerycontainer
{
	position: relative;
	overflow: hidden;
}

#gallerycontainer .image
{
	position: absolute;
	left: 0px;
	top: 0px;
	background-position: center center;
	background-repeat: no-repeat;
	width: 100%;
}

#gallery #loader
{
	background-color: #333;
    width: 200px;
    height: 50px;
    font-family: Georgia;
    line-height: 50px;
    padding-left:  40px;
    background-image: url(/images/gallery-loading-icon.gif);
    background-position: 5px 50%;
    background-repeat: no-repeat;
    color: #999;
    position: absolute;
    border: 1px solid #666;
    z-index: 1;
    border-radius: 10px;
                
}

.navigate-container
{
    position: absolute;
    width: 70px;
    top: 0px;
    height: 100%;
    display: none;
    cursor: pointer;
    z-index: 2;
}
.navigate-container.navleft
{
    background-image: url('/images/arrow-left.png');
    background-repeat: no-repeat;
    background-position: center center;
    left: 0px;
	cursor: pointer;
}
.navigate-container.navright
{
     background-image : url('/images/arrow-right.png');
     background-repeat: no-repeat;
     background-position: center center;
     right: 0px;
     cursor: pointer;
}
