/* UI */
.UI-button{
    position: relative;
    display: inline-block;
    padding: 5px;
    
    font-family: inherit;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    text-decoration: none;
    
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    
    background: #003959;
    color: white;
}
.UI-button:hover{
    /*background: #123456;*/
    background: #0C4B7E;
}
.UI-button:active{
    background: #123456;
}
.UI-button-big{
    font-size: 24px;
    line-height: 32px;
}
.UI-button-medium{
    font-size: 18px;
    line-height: 24px;
}
.UI-button-buttonBlack{
    padding: 2px 5px;
    font-size: 11px;
    line-height: 14px;
    
    background: black;
    color: white;
}
.UI-button-buttonBlack:hover{
    background: #03aeee;
}