﻿
#tabs {
    overflow: auto;
    width: 100%;
    list-style: none;
    border: 1px;
    margin: 0;
    padding: 0;
}

    #tabs li {
        margin: 0;
        padding: 0;
        float: left;
    }

    #tabs a {
        box-shadow: -4px 0 0 rgba(0, 0, 0, .2);
        background: #1FC95D;
        background: linear-gradient(220deg, transparent 10px, #1FC95D 10px);
        text-shadow: 0 1px 0 rgba(0,0,0,.5);
        color: #fff;
        float: left;
        font: bold 12px/35px 'Lucida sans', Arial, Helvetica;
        height: 35px;
        padding: 0 30px;
        text-decoration: none;
    }

        #tabs a:hover {
            background: #c93434;
            background: linear-gradient(220deg, transparent 10px, #c93434 10px);
        }

        #tabs a:focus {
            outline: 0;
        }

    #tabs #current a {
        background: #4E66E9;
        background: linear-gradient(220deg, transparent 10px, #4E66E9 10px);
        text-shadow: none;
        color: #ffffff;
    }

#content {
    background-color: #fff;
    /*background-image: linear-gradient(top, #fff, #ddd);*/
    border-radius: 0 2px 2px 2px;
    /*border-style: ridge;
    box-shadow: 0 2px 2px #000, 0 -1px 0 #fff inset;
    border: 1px solid #999999;   */
    padding: 20px;
  
    
}

    /* Remove the rule below if you want the content to be "organic" 
    #content div {
        min-height:  100%;
        max-height: 100%;
      
    }*/
