html {
    margin: 0;
    padding: 0;
}
body {
    background-color: black;
    color: white;
    margin: 0;
    padding: 0;
    font-family: "Avant Garde", Avantgarde, "Century Gothic", CenturyGothic, "AppleGothic", sans-serif;
}

#noFriendsMessage {
    position: absolute;
    height: 80px;
    top: 0;
    width: 100%;
    text-align: center;
    font-size: large;
    z-index: -1;
    padding-top: 20px;
    cursor: default;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#avatar {
    display: inline-block;
    width: 80px;
    height: 80px;
    background-image: url("../images/loading.gif");
    background-repeat: no-repeat;
    background-position: center;
}

.area {
    width: 100%;
    height: 80px;
    transition: background-color .5s linear;
    font-size: xx-large;
    cursor: pointer;
    overflow: hidden;
}

.area span {
    line-height: 80px;
    vertical-align: top;
    margin-left: 10px;
}

div.area.flash {
    background-color: black !important;
    color: white;
    transition: background-color .5s linear;
}

.debug {
    border: 2px solid yellow;
    background-color: lightgoldenrodyellow;
    color: black;
    padding: 10px;
}

.redBackground, .area:nth-child(3n) {
    background-color: indianred;
    transition: background-color .5s linear;
}

.greenBackground, .area:nth-child(3n+1) {
    background-color: darkseagreen;
    transition: background-color .5s linear;
}

.blueBackground, .area:nth-child(3n+2) {
    background-color: dodgerblue;
    transition: background-color .5s linear;
}