/* generic rules */

.noselect {
    -moz-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* page style */

#page-container {
    min-height: 100%;
    box-shadow: 0px 4px 15px #DDD;
    padding-bottom: 100px;
    background-color: #FFF;
}

footer {
    z-index: -20;
    position: absolute;
    width: 100%;
    height: 100px;
    font-size: 13px;
    line-height: 1.7em;
}

#footer-fixed {
    position: fixed;
    z-index: -15;
    bottom: 0;
    right: 0;
    left: 0;
    padding-bottom: 30px;
}

.htag {
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    -o-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;

    padding: 5px;
    border: 1px solid #FFF;
    color: #FFF;
    white-space: nowrap;
}

.htag .glyphicon {
    font-size: 30px;
    margin: 0 5px;
}

hr {
    border-top: 1px solid rgba(69, 188, 60, 0.5);
}

/* ss branding */

.logo {
    color: black !important;
    font-family: Arial !important;
    font-weight: normal !important;
    background-repeat: no-repeat !important;
}

.logo-xs {
    font-size: 18px;
    padding-left: 16px;
    background-image: url(logo-xs.png);
    background-position: 0 2px;
}

.logo-sm {
    font-size: 37px;
    padding-left: 33px;
    background-image: url(logo-sm.png);
    background-position: 0 3px;
}

.logo-md {
    font-size: 73px;
    padding-left: 67px;
    background-image: url(logo-md.png);
    background-position: 0 4px;
}

.red { color: #FF2B6B; }
.bg-red { background-color: #FF2B6B; }
.green { color: #45BC3C; }
.br-green { background-color: #45BC3C; }
.orange { color: #FFA73B; }
.bg-orange { background-color: #FFA73B; }

