/*
 
 +--------------------------------------------------------------+
 |                                                              |
 | cSlider v1.0                                                 |
 |                                                              |
 | by Bastian Sackermann - http://samisdat.org                  |
 |                                                              |
 | More Informations avaible at                                 |
 | http://samisdat.org/cSlider/                                 |
 |                                                              |
 | Licensed under the Creative Commons BY-NC-SA 3.0 License     |
 | http://creativecommons.org/licenses/by-nc-sa/3.0/            |
 |                                                              |
 +--------------------------------------------------------------+
 
 */
/*
 Do not edit this file, instead include /src/css/c-slider-customize.css
 and customize cSlider editing this file. If you want to show multiple different
 cSliders at the same page use an additional class or an ID.
 */
.cSlider {
    position: relative;
    overflow: hidden;
    width: 500px;
    height: 140px;
}

.cSlider .left, .cSlider .center, .cSlider .right, .cSlider .bottom {
    background-image: url(./c-slider/grey.png);
    background-repeat: no-repeat;
}

.cSlider .center {
    background-repeat: repeat-x;
}

.cSlider .outerMenu {
    position: absolute;
    top: 0px;
    bottom: 5px;
    left: 0px;
    width: 100%;
    overflow: auto;
}

.cSlider.script .outerMenu {
    overflow: hidden;
}

.cSlider .innerMenu {
    position: absolute;
    top: 0px;
    padding-top: 10px;
    left: 0px;
    height: 100%;
}

.cSlider .innerMenu h3 {
    display: none;
}

.cSlider .innerMenu ul {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}

.cSlider .innerMenu ul li {
    float: left;
    padding: 0px 10px 0 10px;
    height: 110px;
    width: 70px;
    position: relative;
    list-style:none;
}

#content .cSlider .innerMenu ul li a[href^="http://samisdat.org/"],#content .cSlider .innerMenu ul li a[href^="/"],#content .cSlider .innerMenu ul li a[href^="#"],#content .cSlider .innerMenu ul li a[href^="http://fishisdat.dev/"],#content .cSlider .innerMenu ul li a{
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 13px;
    color: #ccc;
    text-decoration: none;
    padding-top: 80px;
    height: 30px;
    background:none;
}

#content .cSlider .innerMenu ul li a:hover {
    color: #fff;
}

.cSlider .innerMenu ul li a img {
    position: absolute;
    top: 0px;
    left: 10px;
}

.cSlider .top {
    position: absolute;
    top: 0px;
    bottom: 40px;
    left: 0px;
    right: 0px;
    background-image: none;
    background-color: #6d6d6d;
}

.cSlider .top .left {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 5px;
    height: 40px;
    background-position: 0px -64px;
}

.cSlider .top .right {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 5px;
    height: 40px;
    background-position: -25px -64px;
}

.cSlider .bottom {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 40px;
    background-position: 0px -104px;
    background-repeat: repeat-x;
}

.cSlider .bottom .left {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 5px;
    height: 40px;
    background-position: -30px -64px;
}

.cSlider .bottom .right {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 5px;
    height: 40px;
    background-position: -55px -64px;
}

.cSlider .trackWrap {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    height: 18px;
}

.cSlider .trackWrap .center {
    position: absolute;
    top: 0px;
    left: 30px;
    right: 30px;
    height: 18px;
    background-position: 0px -18px;
    background-color: transparent;
}

.cSlider .trackWrap .left {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 30px;
    height: 18px;
    background-position: 0px 0px;
    background-color: transparent;
}

.cSlider .trackWrap .right {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 30px;
    height: 18px;
    background-position: -30px 0px;
    background-color: transparent;
}

.cSlider .track {
    position: absolute;
    top: 0px;
    left: 21px;
    right: 20px;
    height: 18px;
}

.cSlider .bar {
    position: absolute;
    top: 2px;
    left: 0px;
    height: 14px;
    width: 100px;
}

.cSlider .bar .center {
    position: absolute;
    top: 0px;
    left: 10px;
    right: 10px;
    height: 14px;
    background-position: 0px -50px;
    background-color: transparent;
}

.cSlider .bar .left {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 10px;
    height: 14px;
    background-position: 0px -36px;
    background-color: transparent;
}

.cSlider .bar .right {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 10px;
    height: 14px;
    background-position: -50px -36px;
    background-color: transparent;
}

.cSlider .barText {
    position: absolute;
    top: 1px;
    left: 21px;
    height: 16px;
    font-size: 13px;
    line-height: 16px;
    cursor: pointer;
}

.cSlider .barText div {
    position: absolute;
    top: 1px;
    left: 1px;
    width: 100px;
    color: #ccc;
    text-align: center;
}

.cSlider .barText div:hover {
    color: #fff;
}
/*
 
 +--------------------------------------------------------------+
 |                                                              |
 | cSlider v1.0                                                 |
 |                                                              |
 | by Bastian Sackermann - http://samisdat.org                  |
 |                                                              |
 | More Informations avaible at                                 |
 | http://samisdat.org/cSlider/                                 |
 |                                                              |
 | Licensed under the Creative Commons BY-NC-SA 3.0 License     |
 | http://creativecommons.org/licenses/by-nc-sa/3.0/            |
 |                                                              |
 +--------------------------------------------------------------+
 
 */

/*
 * Edit and embed this file to customize cSlider to your needs.
 */

.cSlider.tango {
width: 720px;
height: 180px;
}

.cSlider.tango .innerMenu{
width: 1821px;
}

.cSlider.tango .innerMenu ul li {
background-image:url(./c-slider/tango.png);
    
    height: 125px;
}

#content .cSlider.tango .innerMenu ul li a {
/*
padding-top should be images height + 10px
*/
    padding-top: 115px;
    font-size: 13px;
    color: #ccc;
    text-decoration: none;
}

#content .cSlider.tango .innerMenu ul li a:hover {
    color: #fff;
}
.cSlider.tango .top {
    background-color: #6d6d6d;
}

.cSlider.tango .barText div {
    color: #ccc;
}

.cSlider.tango.barText div:hover {
    color: #fff;
}

.cSlider.tango .innerMenu ul li.home{
background-position:-20px 0px;
width:66px;	
}
.cSlider.tango .innerMenu ul li.contact{
background-position:-116px 0px;
width:116px;	
}
.cSlider.tango .innerMenu ul li.clock{
background-position:-261px 0px;
width:75px;	
}
.cSlider.tango .innerMenu ul li.book{
background-position:-366px 0px;
width:98px;
}
.cSlider.tango .innerMenu ul li.bookmark {
background-position:-493px 0px;
width:76px;
}
.cSlider.tango .innerMenu ul li.calc{
background-position:-598px 0px;
width:63px;	
}
.cSlider.tango .innerMenu ul li.tools{
background-position:-690px 0px;
width:73px;	
}
.cSlider.tango .innerMenu ul li.monitor{
background-position:-790px 0px;
width:77px;	
}
.cSlider.tango .innerMenu ul li.key{
background-position:-896px 0px;
width:77px;
}
.cSlider.tango .innerMenu ul li.trash{
background-position:-1002px 0px;
width:74px;	
}
.cSlider.tango .innerMenu ul li.helmet{
background-position:-1107px 0px;
width:90px;
}
.cSlider.tango .innerMenu ul li.user{
background-position:-1225px 0px;
width:81px;
}
.cSlider.tango .innerMenu ul li.cards{
background-position:-1335px 0px;
width:95px;
}
.cSlider.tango .innerMenu ul li.mic{
background-position:-1466px 0px;
width:52px;	
}
.cSlider.tango .innerMenu ul li.camera{
background-position:-1547px 0px;
width:88px;	
}
.cSlider.tango .innerMenu ul li.joystick{
background-position:-1663px 0px;
width:96px;
}
.cSlider.tango .innerMenu ul li.batterie{
background-position:-1788px 0px;
width:57px;
}
