#hamburger {
    border: 1px solid #bc1111;
    //border-radius: 3px 3px 3px 3px;
    cursor: pointer;
    display: block;
    height: 24px;
    padding: 3px 4px 3px;
    position: relative;
    width: 25px;
    background: #e01414;
    background: -moz-linear-gradient(top,  #980404 0%, #e80a0a 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#980404), color-stop(100%,#e80a0a));
    background: -webkit-linear-gradient(top,  #980404 0%,#e80a0a 100%);
    background: -o-linear-gradient(top,  #980404 0%,#e80a0a 100%);
    background: -ms-linear-gradient(top,  #980404 0%,#e80a0a 100%);
    background: linear-gradient(to bottom,  #980404 0%,#e80a0a 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#980404', endColorstr='#e80a0a',GradientType=0 );
    margin-top : 8px;
    margin-left : 8px;
}
 
/*
The white stripes in the hamburger button
*/
#hamburger div {
    background-color: #fff;
    border: 1px solid #eee;
    //border-radius: 2px 2px 2px 2px;
    height: 2px;
    margin-top: 3px;
    width: 90%;
}