#cookieBoxMessage{
    //position:fixed;
    position: absolute;
    bottom: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 50px;
    font-size: 16px;
    background-color: #ECE9E2;
    box-shadow: inset #555 0px -1px 5px;
    -webkit-box-shadow: inset #555 0px -1px 5px;
    -moz-box-shadow: inset #555 0px -1px 5px;
    z-index: 10000;
}

#cookieMessage{
    font-family: sans-serif, DroidSans, Arial, Helvetica;
    text-shadow: #ccc 0px 0px 1px;
    color: #303131;
    width: 68%;
    font-size: 0.8em;
    padding: 0.5%;
}

@font-face {font-family:DroidSans;src: url('/cookies/css/DroidSans.ttf');}
@font-face {font-family: DroidSans;src: url("/cookies/css/DroidSans-Bold.ttf");font-weight: bold;}

#cookieButtons{
    width: 23%;
    padding-left: 5%;
}


/*BUTTONS*/
#cookieButtons .btn{
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    cursor: default;
    font-size: 0.6em;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
    height: 22px;
    line-height: 22px;
    min-width: 54px;
    outline: 0;
    padding: 0 8px;
    float: left;
    margin-right: 5%;
    font-family: sans-serif, DroidSans, Arial, Helvetica;
}

/*BLUE*/
#cookieButtons .btn.blue{
    background-color: #183F65;
    background-image: -webkit-linear-gradient(top,#4D90FE,#4787ED);
    background-image: -moz-linear-gradient(top,#4787ED,#183F65);
    background-image: -ms-linear-gradient(top,#4D90FE,#183F65);
    background-image: -o-linear-gradient(top,#4D90FE,#183F65);
    background-image: linear-gradient(top,#4D90FE,#183F65);
    color: white;
    text-shadow: 0 1px rgba(0, 0, 0, 0.1);
    border: 1px solid #3079ED;
    font-family: sans-serif, DroidSans, Arial, Helvetica;
}
#cookieButtons .btn.blue:hover{
    cursor:pointer;
    background-color: #357AE8;
    background-image: -webkit-linear-gradient(top,#4D90FE,#357AE8);
    background-image: -moz-linear-gradient(top,#4D90FE,#357AE8);
    background-image: -ms-linear-gradient(top,#4D90FE,#357AE8);
    background-image: -o-linear-gradient(top,#4D90FE,#357AE8);
    background-image: linear-gradient(top,#4D90FE,#357AE8);
}

/*PURPLE*/
#cookieButtons .btn.purple{
    background-color: #c34dfe;
    background-image: -webkit-linear-gradient(top,#c34dfe,#b647ed);
    background-image: -moz-linear-gradient(top,#c34dfe,#b647ed);
    background-image: -ms-linear-gradient(top,#c34dfe,#b647ed);
    background-image: -o-linear-gradient(top,#c34dfe,#b647ed);
    background-image: linear-gradient(top,#c34dfe,#b647ed);
    color: white;
    text-shadow: 0 1px rgba(0, 0, 0, 0.1);
    border: 1px solid #ae30ed;
}
#cookieButtons .btn.purple:hover{
    cursor:pointer;
    background-color: #ac35e8;
    background-image: -webkit-linear-gradient(top,#c34dfe,#ac35e8);
    background-image: -moz-linear-gradient(top,#c34dfe,#ac35e8);
    background-image: -ms-linear-gradient(top,#c34dfe,#ac35e8);
    background-image: -o-linear-gradient(top,#c34dfe,#ac35e8);
    background-image: linear-gradient(top,#c34dfe,#ac35e8);
}


/*ORANGE*/
#cookieButtons .btn.orange{
    background-color: #fec44d;
    background-image: -webkit-linear-gradient(top,#fec44d,#edb647);
    background-image: -moz-linear-gradient(top,#fec44d,#edb647);
    background-image: -ms-linear-gradient(top,#fec44d,#edb647);
    background-image: -o-linear-gradient(top,#fec44d,#edb647);
    background-image: linear-gradient(top,#fec44d,#edb647);
    color: white;
    text-shadow: 0 1px rgba(0, 0, 0, 0.1);
    border: 1px solid #edae30;
}
#cookieButtons .btn.orange:hover{
    cursor:pointer;
    background-color: #e8ac35;
    background-image: -webkit-linear-gradient(top,#fec44d,#e8ac35);
    background-image: -moz-linear-gradient(top,#fec44d,#e8ac35);
    background-image: -ms-linear-gradient(top,#fec44d,#e8ac35);
    background-image: -o-linear-gradient(top,#fec44d,#e8ac35);
    background-image: linear-gradient(top,#fec44d,#e8ac35);
}


/*GREEN*/
#cookieButtons .btn.red{
    
    background-image: -webkit-linear-gradient(top,#A82525,#A82525);
    background-image: -moz-linear-gradient(top,#A82525,#A82525);
    background-image: -ms-linear-gradient(top,#A82525,#A82525);
    background-image: -o-linear-gradient(top,#A82525,#A82525);
    background-image: linear-gradient(top,#A82525,#A82525);
    color: white;
    text-shadow: 0 1px rgba(0, 0, 0, 0.1);
    border: 1px solid #A82525;
}
#cookieButtons .btn.red:hover{
    cursor:pointer;
    background-image: -webkit-linear-gradient(top,red,red);
    background-image: -moz-linear-gradient(top,red,red);
    background-image: -ms-linear-gradient(top,red,red);
    background-image: -o-linear-gradient(top,red,red);
    background-image: linear-gradient(top,red,red);
    

}