/* not required, just for trimming purposes */
.ppsliderwrapper {
    border: 1px solid #111;
    background-color: #333;
    width: 460px;
    height: 98px;
    margin: 15px;
}

/* the image belt (.ppsliderbeld) is pumped in this one
 * make sure you set "overflow:hidden"
 */
.ppsliderconveyor {
    position: relative;
    top: -0;
    left: 30px;
    margin: 0;
    width: 397px;
    height: 98px;
    overflow: hidden;
    background-color: #111;
    clear: both;
}

/* this will become the belt where all the images are glued on
 * make sure you set "position:relative"
 */
.ppsliderbelt {
    display: block;
    position: relative;
    margin-top: -45px;
    top: 50%;
    left: 0;
}

/* make sure images on the belt "float:left"
 */
.ppsliderbelt img {
    float: left;
    padding: 10px;
    margin: 0px;
    border: 2px solid transparent;
    cursor: pointer;
}

/* if the image canīt be clicked because the media hasnīt been buffered
 * far enough or the player is IDLE the image getīs the class inactive
 */
.ppsliderbelt img.inactive {
    filter:alpha(opacity=50);
    opacity:.50;
    cursor: auto;
}

/* the currently active image which is the thum representation of the big one.
 */
.ppsliderbelt img.current {
    background-color: #fdfdfd;
}



.ppsliderimage {
    position: relative;
    width: 700px;
    height: 466px;
    background-color: #f7f1ea;
	background-repeat:no-repeat;
	background-position: left top;
}



.ppslidertitle {
    margin: 15px;
    width: 430px;
    height: 50px;
    background-color: #010101;
    border: 2px solid #cdcdcd;
    line-height: 50px;
    color: #fdfdfd;
    font-weight: bold;
    text-align: center;

}



.ppsliderprev,
.ppslidernext {
    position: relative;
    left: 0;
    top: -98px;
    width: 30px;
    height: 98px;
}

.ppsliderprev {
    left: 0;
    background: url(left_arrow.png) center center no-repeat;
}
.ppslidernext {
    top: -198px;
    left: 430px;
    background: url(right_arrow.png) center center no-repeat;
}


.ppslidernext.active,
.ppsliderprev.active {
    cursor: pointer;
}

.ppslidernext.inactive,
.ppsliderprev.inactive {
    cursor: auto;
    filter:alpha(opacity=50);
    opacity:.50;
}



