/* 
    Document   : global.css
    Created on : 2013-08-19, 15.03.19
    Author     : Paulius Cesekas <paulius@svetaine.lt>
    Description:
        Purpose of the stylesheet follows.
*/

#cookie_message {
    display: block;
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    background-color: #333;
    border-top: 1px solid #fefefe;
    padding: 5px 0;
}
#cookie_message > div {
    max-width: 920px;
    padding-right: 60px;
    margin: 0 auto;
    position: relative;
    color: #ccc;
}
#cookie_message .close {
    display: block;
    width: 40px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;

    border-top: 1px solid #fafafa;
    background: #dedede;
    background: -webkit-gradient(linear, left top, left bottom, from(#9e9e9e), to(#dedede));
    background: -webkit-linear-gradient(top, #9e9e9e, #dedede);
    background: -moz-linear-gradient(top, #9e9e9e, #dedede);
    background: -ms-linear-gradient(top, #9e9e9e, #dedede);
    background: -o-linear-gradient(top, #9e9e9e, #dedede);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: rgba(0,0,0,1) 0 1px 0;
    -moz-box-shadow: rgba(0,0,0,1) 0 1px 0;
    box-shadow: rgba(0,0,0,1) 0 1px 0;
    text-shadow: rgba(0,0,0,.4) 0 1px 0;
    color: white;
    font-size: 14px;
    font-family: Georgia, serif;
    text-decoration: none;
    vertical-align: middle;
}
#cookie_message .close:hover {
    background: #fefefe;
    color: #333;
}