﻿
.binary-toggle {
    /*From .cancel*/
    width: 99px;
    border: thin solid #C4C4C4;
    color: #616362;
    background: #e5e5e5;
    background-color: #e5e5e5;
    background-image: -webkit-linear-gradient(top, #F0F0F0 0%, #ACADAC 100%);
    /*From  .programmeButton*/
    float: left;
    margin-top: 2px;
    height: 22px;
    line-height: 20px;
    text-decoration: none;
    font-size: 12px;
    font-family: Tahoma, Verdana,Geneva,sans-serif, Arial, Helvetica, sans-serif;
    font-weight: normal;
    display: block;
    text-align: center;
    position: relative;
    z-index: 0;
}

    .binary-toggle.left-button {
        border-bottom-right-radius: 0;
        border-top-right-radius: 0;
        border-bottom-left-radius: 3px;
        border-top-left-radius: 3px;
    }

    .binary-toggle.right-button {
        border-bottom-left-radius: 0;
        border-top-left-radius: 0;
        border-bottom-right-radius: 3px;
        border-top-right-radius: 3px;
    }

    .binary-toggle.toggle-selected {
        background: -webkit-gradient(linear,left bottom,left top,color-stop(0, #F0F0F0),color-stop(1, #acadac));
        background-image: -webkit-linear-gradient(top, #ACADAC 0%, #F0F0F0 100%);
    }

    .binary-toggle.toggle-button {
        cursor:pointer;
    }