.gallery{
	display: block;
	width: 323px;
	height: 150px;
	border: 1px solid black;
    background: #666;
}

.gallery .slide img{
    border: 0px;
    margin: 0px;
    padding: 0px;
}

.gallery .textPanel{
    font-family: Arial;
    font-size: 12px;
    border-top: 1px solid white;
    background: black;
    color: white;
    background-image: url("../images/smalltop.png");
    background-position: 2% 8%;
    background-repeat: no-repeat;
    cursor: pointer;
}

.gallery .textPanelOpened{
    background-image: url("../images/smalldown.png");
}

.gallery .textPanel .textInner{
    margin: 8px 10px 8px 10px;
    text-align: justify;
}

.gallery .textPanel .textInner p{
    margin: 10px 0px 10px 0px;
}

/**
 * Slideshow button
 */
.gallery .slideshowStop{
    background: url("../images/play.png") no-repeat center center;
    border: 0px solid white;
    width: 40px;
    height: 30px;
    bottom: 5px;
    left: 50%;
    margin-left: -16px;
    margin-top: 0px;
    cursor: pointer;
}

.gallery .slideshowPlay{
    background-image: url("../images/stop.png");
}

.gallery .prev{
    background: url("../images/forward.png") 6% 50% no-repeat;
    margin-top: -10px;
}

.gallery .next{
    background: url("../images/return.png") 94% 50% no-repeat;
    margin-top: -10px;
}

.gallery .imageNext{
    background: url("../images/right.png") 94% 50% no-repeat;
    margin-top: -10px;
}

.gallery .imagePrev{
    background: url("../images/left.png") 6% 50% no-repeat;
    margin-top: -10px;
}

.gallery div.slide{
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

