/*
 * jquery.popeye.style.css 2.0
 *
 * Example styles for jQuery.popeye
 *
 * Copyright (C) 2010 Christoph Schuessler (schreib@herr-schuessler.de)
 * 
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 */

/* fallback styles for image list */
.ppy-imglist {
    width:          100%;
    display:        block;
    overflow:       hidden;
    
}
.ppy-imglist li {
    padding:        10px;
    border:         1px solid #f0f0f0;
    border-radius:          5px;
    -moz-border-radius:     5px;
    -khtml-border-radius:   5px;
    -webkit-border-radius:  5px;
    background:     #fff;
    list-style:     none;
    float:          none;
    display:        block;
    margin:         0 10px 10px 0;
}
.ppy-imglist li a img {
    display:        block;
    border:         0;
}

.ppy.ppy-active {
    width:          224px;
    float:          none;
    margin:         0;
}

.ppy .ppy-outer {
    padding:        0 ;
    
}
.ppy .ppy-stagewrap {
    border-radius:          5px 0 5px 5px;
    -moz-border-radius:     5px 0 5px 5px;

-webkit-border-top-left-radius: 5px 5px; 
-webkit-border-top-right-radius: 0 0; 
-webkit-border-bottom-right-radius: 5px 5px; 
-webkit-border-bottom-left-radius: 5px 5px; 
    background:     rgba(255,255,255,0.7);
}

.ppy .ppy-stage {
    width:              250px;
    height:             200px;
    border-radius:          3px;
    -moz-border-radius:     3px;
    -webkit-border-radius:  3px;
}

.ppy .ppy-counter {
    background:         #CCD3B5;
    color:              #333;
    padding:            0 5px;
    font-size:          0.8em;
    position:           absolute;
    top:             0;
    right:              0;
    opacity:            0.7;
    border-radius:          5px 0 0 5px;
    -moz-border-radius:     5px 0 0 5px;
    -khtml-border-radius:   5px 0 0 5px;

-webkit-border-top-left-radius: 5px 5px; 
-webkit-border-top-right-radius: 0 0; 
-webkit-border-bottom-right-radius: 0 0; 
-webkit-border-bottom-left-radius: 5px 5px; 
}

.ppy .ppy-loading {
    background-image:   url(../../gfx/popeye/loading2.gif);
    background-repeat:  no-repeat;
    background-position:center;
}

.ppy .ppy-nav {
    border-radius:          5px 0 0 5px;
    -moz-border-radius:     5px 0 0 5px;

-webkit-border-top-left-radius: 5px 5px; 
-webkit-border-top-right-radius: 0 0; 
-webkit-border-bottom-right-radius: 0 0; 
-webkit-border-bottom-left-radius: 5px 5px; 

    background:     rgb(184,193,153);
    background: -webkit-gradient(linear, left top,right top, from(rgb(184,193,153)), to(rgb(255,255,238)));
    background:     -moz-linear-gradient(
        left,
        rgb(184,193,153) 0%,
        rgb(255,255,238) 100%
    );
    width:          45px;
    position:       absolute;
    top:            4px;
    left:          -45px;
}

.ppy .nav-wrap {
    padding:        5px 0 5px 5px;
}

.ppy .ppy-nav a {
    display:        block;
    overflow:       hidden;
    text-indent:    -900em;
    height:         22px;
    padding:        5px;
    border-radius:          5px 0 0 5px;
    -moz-border-radius:     5px 0 0 5px;

-webkit-border-top-left-radius: 5px 5px; 
-webkit-border-top-right-radius: 0 0; 
-webkit-border-bottom-right-radius: 0 0; 
-webkit-border-bottom-left-radius: 5px 5px; 
    width:          30px;
}

.ppy .ppy-prev {
    background:     url(gfx/popeye/prev3.png) no-repeat center;
}

.ppy .ppy-next {
    background:     url(gfx/popeye/next3.png) no-repeat center;
}

.ppy .ppy-switch-enlarge {
    background:     url(gfx/popeye/enlarge3.png) no-repeat center;
}

.ppy .ppy-switch-compact {
    background:     url(gfx/popeye/compact3.png) no-repeat center;
}

.ppy .ppy-nav a:hover {
    background-color:    #AAAA99;
    cursor:         pointer;
    opacity:        0.8;
}


