/* 
    Document   : styleSwitcher
    Created on : 11.08.2012., 16:41:51
    Author     : Pixel Industry
    Description:
        Stylesheet for StyleSwitcher
*/

#style-switcher{
    position: fixed;
    left: -160px;
    top: 100px;
    background: #fff;
    width: 160px;
    height: 370px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    box-shadow: 2px 2px 2px #222;
    border-top: 1px solid #222;
    z-index: 999;
}

#style-switcher #styles-container{
    padding: 15px;
}

#style-switcher #styles-container section{
    margin-bottom: 25px;
    margin-top: 20px;
    position: relative;
}

#style-switcher h6{
    font: 14px Arial, sans-serif;
    border-bottom: 1px solid #ccc;
    padding-bottom: 3px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #555;
}

#style-switcher p{
    font: 12px Arial, sans-serif;
    margin-bottom: 10px;
}


#style-switcher #styles-button{
    width: 30px;
    height: 30px;
    position: absolute;
    top: 20px;
    right: -40px;
    background: #333;

    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 5px;
    box-shadow: 2px 2px 2px #222;
}

#style-switcher #styles-button #switcher-logo{
    background: url(img/logo.png) no-repeat;
    width: 30px;
    height: 30px;
}

#style-switcher .styles-list{
    overflow: hidden;
}

#style-switcher .styles-list li{
    float: left;
    width: 20px;
    height: 20px;

    text-indent: -9999px;
    margin: 0 5px 5px 0;
    cursor: pointer;
}

#style-switcher .styles-list li:hover{
    opacity: 0.9;
}

#style-switcher select{
    background: #f8f8f8;
    border: 1px solid #AAA;
    color: #555;
    font: 12px 'Droid Sans';
    margin: 0;
    overflow: hidden;
    padding-top: 2px;
    padding-bottom: 2px;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 120px;
}

/*************************
    CUSTOM THEME STYLES
**************************/


/*  STYLES   */

#style-switcher .styles-list .blue{
    background: #2baae0;
}

#style-switcher .styles-list .green{
    background: #76bd27;
}

#style-switcher .styles-list .orange{
    background: #e44d26;
}

#style-switcher .styles-list .red{
    background: #e81010;
}

#style-switcher .styles-list .yellow{
    background: #f1b604;
}



/*  PATTERNS   */

#style-switcher .pattern-list li{    
    color: #FFFFFF;
    font: 12px 'Droid Sans', sans-serif;
    height: 20px;
    padding: 1px;
    text-transform: uppercase;
    width: 20px;
    margin-bottom: 10px;
    border-radius: 1px;
    cursor: pointer;
    text-align: center;
    border: 1px solid #ccc;
    float: left;
    margin-right: 2px;
    opacity: 1;
    text-indent: -9999px;
}

#style-switcher .pattern-list li:hover{
    opacity: 0.9;
}

#style-switcher .pattern-list a{
    color: #fff;
}

#style-switcher .pattern-list .active{
    background: #7fe695;
}

#style-switcher .pattern-list li.patt11{
    background: url('img/patts/patt1.png') no-repeat center;
}

#style-switcher .pattern-list li.patt2{
    background: url('img/patts/patt2.png') no-repeat center;
}

#style-switcher .pattern-list li.patt3{
    background: url('img/patts/patt3.png') no-repeat center;
}

#style-switcher .pattern-list li.patt4{
    background: url('img/patts/patt4.png') no-repeat center;
}

#style-switcher .pattern-list li.bkg-image{
    background: url('img/patts/bkg-image.png') no-repeat center;
}