/* 
Title:      Toggle Switch
URL:        http://github.com/jamiebicknell/Toggle-Switch
Author:     Jamie Bicknell
Twitter:    @jamiebicknell
*/

/* 
Edit By Haris Mairaj
*/

.switch {
    position:relative;
    width:119px;
    height:32px;
    overflow:hidden;
    cursor:pointer;
}
.switch .overlay {
    position:absolute;
    top:0;
    left:0;
    width:119px;
    height:32px;
    background:url('../img/overlay@2x.png') no-repeat 0 0;
    z-index:9;
}
.switch span.switched {
    display:block;
    position:absolute;
    top:0;
    left:0;
    width:206px;
    height:32px;
    background:url('../img/switch@2x.gif') no-repeat 0 0;
    z-index:8;
}
.switch span.off {
    left:-87px;
}
.switch input {
    display:none;
}