﻿
.cb {
    color: #EFEC9F;
    background-color: #400000;
    font-family: Verdana;
    font-size: 13px;
}

.tb_arrows /* pouze obrazek sipek */ {
    position: absolute; /* musi byt absolutni, jinak se nezarovna k tb */
    cursor: pointer;
}

.tb, .tb_arr /* tb_arr je pro textboxy se sipkama */ {
    border-color: #FADAAA;
    border-right: 2px solid #E0B090;
    border-bottom: 2px solid E0B090;
    border-top: 1px solid #908050;
    border-left: 1px solid #908050;
    color: #EFEC9F;
    background-color: #400000;
    font-family: Verdana;
    font-size: 13px;
    padding: 2px 3px 1px 3px;
    text-align: right;
}


input:not([type=image]):focus, select:focus, .focused:focus /* tlačítka typ img */ {
    outline: none;
    box-shadow: 0 0 5px 1px rgba(255,0,0,1);
    -webkit-box-shadow: 0 0 5px 1px rgba(255,0,0,1);
    -moz-box-shadow: 0 0 5px 1px rgba(255,0,0,1);
    outline: none;
}

input[type=image]:focus /* tlačítka typ img */ {
    outline: none;
}


.nofocus:focus {
    outline: none;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}


.butt_halfrounded {
    -moz-border-radius-bottomleft: 8px;
    -moz-border-radius-bottomright: 8px;
    -moz-border-radius-topleft: 0px;
    -moz-border-radius-topright: 0px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    color: #EFEC9F;
    font-family: Verdana;
    font-size: 13px;
    background-color: #603010;
    border-left: solid 3px rgb(70,30,5);
    border-right: solid 2px rgb(0,0,0);
    border-top: solid 1px black;
    border-bottom: solid 3px rgb(0,0,0);
    padding-top: 1px;
    padding-bottom: 2px;
    padding-top: 3px\9; /* hack IE7-9 */
    padding-bottom: 4px\9; /* hack IE7-9 */
    margin: 0px;
    text-align: center;
    cursor: pointer;
}


.butt_halfrounded_up {
    -moz-border-radius-topleft: 8px;
    -moz-border-radius-topmright: 8px;
    -moz-border-radius-bottomleft: 0px;
    -moz-border-radius-bottompright: 0px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    color: #EFEC9F;
    font-family: Verdana;
    font-size: 13px;
    background-color: #603010;
    border-left: solid 3px rgb(60,20,2);
    border-right: solid 2px rgb(0,0,0);
    border-top: solid 1px black;
    border-bottom: solid 1px rgb(0,0,0);
    padding-bottom: 3px;
    padding-top: 2px;
    padding-bottom: 3px\9; /* hack IE7-9 */
    padding-top: 4px\9; /* hack IE7-9 */
    margin: 0px;
    text-align: center;
    cursor: pointer;
}



tr {
    color: #EFEC9F;
}

.none {
    display: none;
}

img {
    border: 0px;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
}

/* Firefox hack */
@-moz-document url-prefix() {
    .button {
        padding-left: 5px;
        padding-right: 5px;
    }
}

/* Chrome hack */
@media screen and (-webkit-min-device-pixel-ratio:0) {
    .button {
        padding-left: 8px;
        padding-right: 8px;
    }
}



.butt, .butt_round_ex {
    -moz-border-radius-bottomleft: 6px;
    -moz-border-radius-bottomright: 6px;
    -moz-border-radius-topleft: 6px;
    -moz-border-radius-topright: 6px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    color: #EFEC9F;
    font-family: Verdana;
    font-size: 13px;
    background-color: #603010;
    border-left: solid 3px rgb(70,30,5);
    border-right: solid 2px rgb(0,0,0);
    border-top: solid 1px black;
    border-bottom: solid 3px rgb(0,0,0);
    padding-top: 1px;
    padding-bottom: 2px;
    padding-top: 3px\9; /* hack IE7-9 */
    padding-bottom: 4px\9; /* hack IE7-9 */
    margin: 0px;
    text-align: center;
    cursor: pointer;
}

.butt_round_ex, .roundCorners {
    -moz-border-radius-bottomleft: 10px;
    -moz-border-radius-bottomright: 10px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-topright: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.bigger {
    padding-top: 3px;
    padding-bottom: 4px;
    padding-left: 12px;
    padding-right: 12px;
}

.butt:hover, .butt_round_ex:hover, .butt_halfrounded:hover, .butt_halfrounded_up:hover {
    cursor: pointer;
    filter: brightness(130%);
}

.inv {
    display: none;
}

.vis {
    visibility: hidden;
}

.noscroll {
    overflow: visible;
}

.m /* vertical middle */ {
    vertical-align: middle;
}

.vtt /* vertical text-top */ {
    vertical-align: text-top;
}

.vt /* vertical top */ {
    vertical-align: top;
}


.l {
    text-align: left;
}

.ma {
    margin-left: auto;
    margin-right: auto;
}

.c /* Center class */ {
    text-align: center;
}

.bo /* Center class */ {
    vertical-align: bottom;
}

.to /* Center class */ {
    vertical-align: top;
}

.tt /* Center class */ {
    vertical-align: text-top;
}

.le /* Left class */ {
    text-align: left;
}

.r /* Right class */ {
    text-align: right;
}

.st /* stock class for gold, foow, wood, stone and iron img */ {
    vertical-align: text-top;
    margin: -4px 0px 0px 3px;
}

.cr {
    font-weight: bold;
    color: #EEE000;
}

.cr_img {
    vertical-align: text-top;
    margin: -1px 0px 0px -2px;
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Chrome/Safari/Opera */
    -khtml-user-select: none; /* Konqueror */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently not supported by any browser */
}

.cur {
    cursor: pointer;
}

.cur_help {
    cursor: help;
}

.cur_help_dotted {
    cursor: help;
    text-decoration: underline;
    text-decoration-style: dotted;
    border-bottom: 1px;
    text-underline-offset: 2px;
}


.link {
    text-decoration: underline;
    cursor: pointer;
}

.shadow {
    border-left: 1px solid black;
    border-right: 2px solid black;
    border-top: 1px solid black;
    border-bottom: 2px solid black;
}

.shadow_sml {
    border-right: 2px solid black;
    border-bottom: 2px solid black;
}

.shadow_around {
    text-shadow: -1px -1px 1px black, -1px 0px 1px black, -1px 1px 1px black, 0px -1px 1px black, 0px 1px 1px black, 1px -1px 1px black, 1px 0px 1px black, 1px 1px 1px black;
}

.shadow_around2 {
    text-shadow: 2px 0 1px black, 2px 1px 1px black, 2px 2px 1px black, 2px -1px 1px black, 2px -2px 1px black, -1px 0 1px black, 0 2px 1px black, 1px 0 1px black, 1px -2px 1px black,-1px -2px 1px black, 0 -2px 1px black, 1px 1px 1px black, -1px -1px 1px black, 1px -1px 1px black, -1px 1px 1px black, -2px -2px 1px black;
}

.shadow_around3 {
    text-shadow: 2px 0 2px black, 2px 1px 2px black, 2px 2px 2px black, 2px -1px 2px black, 2px -2px 2px black, -1px 0 2px black, 0 2px 2px black, 1px 0 2px black, 1px -2px 2px black,-1px -2px 2px black, 0 -2px 2px black, 1px 1px 2px black, -1px -1px 2px black, 1px -1px 2px black, -1px 1px 2px black, -2px -2px 2px black;
}


.text_shadow {
    text-shadow: 1px 1px 0px #000000;
}

.text_shadow2 {
    text-shadow: 2px 2px 0px #000000;
}

.just {
    text-align: justify;
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}


.gold {
    color: #DDCC33;
}

.goldH {
    color: #EEDD66;
}

.goldB {
    color: #DDCC33;
    font-weight: bold;
}

.food {
    color: #44CC22;
}

.foodH {
    color: #55EE44;
}

.foodB {
    color: #44CC22;
    font-weight: bold;
}


.wood {
    color: #CC6600;
}

.woodH {
    color: #EF8022;
}

.woodB {
    color: #CC6600;
    font-weight: bold;
}

.stone {
    color: #AAAAAA;
}

.stoneH {
    color: #CCCCCC;
}

.stoneB {
    color: #AAAAAA;
    font-weight: bold;
}

.iron {
    color: #AAAAEE;
}

.ironH {
    color: #BFBFFF;
}

.ironB {
    color: #AAAAEE;
    font-weight: bold;
}

A:link {
    color: #d5912b;
}

A:visited {
    color: #d5912b;
}

A:active {
    color: #d5912b;
}

A:hover {
    color: #EEAA44;
}

/*
#unit_menu image:focus 
{
   outline: none;
}*/


.energy {
    color: #BBBBFF;
}

.health {
    color: #FF4466;
}


.re {
    color: #FF4433;
}

.lbl {
    color: #AABBFF;
}

.g {
    color: #00FF00;
}

.w {
    color: #FFFFFF;
}

.gr {
    color: #CCCCCC;
}

.b {
    font-weight: bold;
}

.nb {
    font-weight: normal;
}

.u {
    text-decoration: underline;
}

.err {
    color: #FF6644;
}

.errB {
    color: #FF6644;
    font-weight: bold;
}

.red {
    color: red;
}

.redH {
    color: #FF6666;
}

.redB {
    color: red;
    font-weight: bold;
}

.blue {
    color: blue;
}


