﻿.btn-style-a {
    display: inline-block;
    padding: 0 15px;
    border: 1px solid #999999;
    background-color: #F9F9F9;
    line-height: 75px;
    height: 75px;

    color: #000000;
    text-decoration: none;
    margin: 10px;
    font-weight: bold;
}

.btn-style-a:hover {
    background-color: #EEEEEE;
}

.btn-rounded {
    border-radius: 8px; 
    -moz-border-radius: 8px; 
    -webkit-border-radius: 8px; 
}

.btn-fixed-width {
    box-sizing: border-box;
    width: 460px;
    text-align: center;
}

.btn-icon {
    position: relative;
    width: 96px;
    height: 96px;
    margin: 10px;
    background-position: center;
    background-size: 60px;
    background-repeat: no-repeat;
    cursor: pointer;
}

.btn-icon.header-search {
    background-image: url('../pics/gfx/magnifier.png');
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
}

.btn-icon.header-back {
    background-image: url('../pics/gfx/arrow_left.png');
    position: absolute;
    left: 0;
    right: 0;
    margin: 0;
}

.cursor-pointer {
    cursor: pointer;
}