body {
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; 
    font-weight: 300;
    height: 100%;
   
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#canvasBox {
    position: absolute;
}

#step-number {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    font-size: 20px;
    color: rgba(0, 0, 0, 0.5);
    text-shadow: 0px 0px 4px white;
}

#processing {
    position: absolute;
}

#graph-and-controls {
    position: absolute;
    bottom: 0px;
    width: 100%;
}

#graph-area {
    position: relative;
    height: 150px;
    background: white;
    border-top: 1px solid #aaa;
}

#graph-label {
    position: absolute;
    top: 0px;
    left: 6px;
    font-size: 14pt;
    opacity: 0.7;
}

#controls-bar {
    position: relative;
    padding: 6px;
    background: white;
    border-top: 1px solid #aaa;
}

#config-buttons {
    margin-right: 50px;
}

.controls-right {
}
@media (max-width: 529px) {
    .controls-right {
        display: block;
        position: static;
    }
}
@media (min-width: 530px) {
    .controls-right {
        display: inline;
        position: absolute;
        bottom: 6px; /* include this so that we can restore properly if window is re-expanded */
        right: 6px;
    }    
}

.controls-left > span,
.controls-right > span {
    padding: 4px;
}

#gridSizeBox {
    margin-left: 200px;
}

#speed-range-box {
    position: relative;
    bottom: 12px;
    text-align: center;
    margin-left: 15px;
}

#speed-range {
    position: absolute;
    top: 12px;
    width: 180px;
    background: #ddd;
}
#speed-range-label {
    position: absolute;
    top: 32px; /* use top, not bottom, so that that it doesn't break when .control-right changes to 'block' */
    width: 180px;
    font-weight: normal;
}

.wolf {
    background: #922126;
}

.sheep {
    background: #777777;
}

.grass {
    background: #85c38e;
}

.wolf-text {
    color: #922126;
}

.sheep-text {
    color: #777777;
}

.grass-text {
    color: #85c38e;
}

.configSlider {
    position: absolute;
    width: 220px;
    margin-left: -110px;
}

.spriteConfigBox {
    padding: 140px 120px;
}

.grassConfigBox {
    padding: 70px 120px;
}

.rangeLabel {
    position: absolute;
    left: 25px;
    font-weight: normal;
}

.rangeValue {
    position: absolute;
    right: 30px;
}

.InitDensityRange {
    top: 70px;
}

.InitDensityText {
    top: 45px;
}

.MaxInitEnergyRange, .RegrowthTimeRange {
    top: 140px;
}

.MaxInitEnergyText, .RegrowthTimeText {
    top: 115px;
}

.EatEnergyBoostRange {
    top: 210px;
}

.EatEnergyBoostText {
    top: 185px;
}

.ReproduceRateRange {
    top: 280px;
}

.ReproduceRateText {
    top: 255px;
}

