body {
    border: 0px;
    margin: 0px;
    -webkit-user-select: none; /* webkit (safari, chrome) browsers */
    -moz-user-select: none; /* mozilla browsers */
    -khtml-user-select: none; /* webkit (konqueror) browsers */
    -ms-user-select: none; /* IE10+ */
}


a {
    underline: none;
    /* FIXME: what is property of font */
}

a:visited {
}

a:hover {
    background: blue;
}

#div_heroes {
    width: 807px;
    height: 800px;
    background-image: url("images/HeroesBoard.png");
    margin: auto;
    position: relative;
}

#hero_fighter {
    background-image: url("images/Hero_Fighter.png");
    top: 0px;
    left: 270px;
}

#hero_barbarian {
    background-image: url("images/Hero_Barbarian.png");
    top: 0px;
    left: 0px;
}

#hero_rogue {
    background-image: url("images/Hero_Rogue.png");
    top: 0px;
    left: 540px;
}

#hero_wizard {
    background-image: url("images/Hero_Wizard.png");
    top: 401px;
    left: 0px;
}

#hero_fairy {
    background-image: url("images/Hero_Fairy.png");
    top: 401px;
    left: 270px;
}

#hero_monk {
    background-image: url("images/Hero_Monk.png");
    top: 401px;
    left: 540px;
}

#main {
    /*
        width: 1302px;
        background: url('images/board2.png');
    */
    width: 2000px;
    background: url('images/board.png');
    height: 1000px;
    position: relative; /* to allow children absolute to be set relative to #main */
}


.card {
    -background-color: red;
    position: absolute;
    width: 269px;
    height: 400px;
    -border: 1px green solid;
}


.hitpoint {
    float: left;
    width: 71px;
    height: 70px;
    position: relative;
    margin: 5px;
    background-position: center;
    background-repeat: no-repeat;
}

.hitpoint_disabled {
    background-size: 40% 40%;
}

.nothing_nodrag {
    -moz-user-select: none;
    -webkit-user-select: none;
    /* this will work for QtWebKit in future */
    -webkit-user-drag: none;
}

#stock {
    left: 24px;
    top: 64px;
}

#stock_remaining {
    position: relative;
    height: 32px;
    width: 32px;
    size: 16px;
    background-color: white;
}

#hero {
    left: 891px;
    top: 101px;
}

#hero[data-selected="on"] {
    top:    76px;
}

#discard {
    left: 24px;
    top: 540px;
}

#item0 {
    left: 623px;
    top:    540px;
}
#item0[data-selected="on"] {
    top:    515px;
}
#item0[data-unuseable="on"] {
    /* we should add a background that blur card*/
}

#item1{
    left: 892px;
    top:    540px;
}
#item1[data-selected="on"] {
    top:    515px;
}

#item2{
    left: 1161px;
    top:    540px;
}
#item2[data-selected="on"] {
    top:    515px;
}


#draw_area {
    -border:1px black solid;
    left: 400px;
    top: 55px;
    width: 344px;
    height: 412px;
    background: transparent;
}

#draw_card {
    left: 15px;
    top: 8px;
    /*
    -moz-user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    */
}

.splash {
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 400px;
    display: none;
    text-align: center;
    color: black;
    font-size: 6em;
    line-height: 400px;
}

#debug {
    position: fixed;
    left: 200px;
    padding: 5px;
    top: 0px;
    font-size: 150%;
    z-index: 99;
}

#shortcut {
    position: fixed; 
    top: 0px; 
    left: 0px; 
    height: 40px; 
    width: 200px; 
    background: white;
    border: 1px solid black;
}
