html,body { margin: 0; padding: 0; height: 100%; }
body {
    background: #d0d0d0;
    font: 16px 'Cabin', sans-serif;
}
.center { text-align: center }
.right { text-align: right }
button {
    background: none repeat scroll 0 0 #EEEEEE;
    border: 1px solid #666;
    box-shadow: none;
    border-radius: 3px;
    padding: 4px;
    cursor: pointer;
}
#about, #splash {
    display: none;
    width: 640px;
    background: #fff;
    margin: 2em auto;
    padding: 2em;
}
#splash h1 {
    font-size: 2.5em;
    color: #06365F;
    text-align: center;
    margin: 0 0 1em;
}
#splash p {
    margin: 2em 0;
}
#splash .fineprint {
    font-style: italic;
    font-size: 0.8em;
}
#splash button {
    font-size: 1.2em;
}
#controls {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
#controls-wrapper {
    text-align: right;
    padding: 2px;
}
#controls-auth,
#controls-photo {
    display: none;
}
#lighttable {
    height: 100%;
}
#lighttable-loading {
    display: none;
    text-align:center;
    margin-top: 2em;
}
.photo {
    background: #f9f9f9;
    background: 
        linear-gradient(115deg, transparent 75%, rgba(255,255,255,.8) 75%) 0 0,
        linear-gradient(245deg, transparent 75%, rgba(255,255,255,.8) 75%) 0 0,
        linear-gradient(115deg, transparent 75%, rgba(255,255,255,.8) 75%) 5px -10px,
        linear-gradient(245deg, transparent 75%, rgba(255,255,255,.8) 75%) 5px -10px,
        #f9f9f9;
    background-size: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 3px;
    position: relative;
    cursor: grab;
    cursor: -webkit-grab;
    cursor: -moz-grab;
}
.photo.grabbing {
    cursor: grabbing;
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
}
.photo img {
    display: block;
}
.photo .solution {
    background: #999;
    z-index: 100;
    position: absolute;
}
.photo .label {
    text-align: right;
    font-family: cursive;
}
.photo .label a {
    color: #000;
}
.photo .label a:link {
    text-decoration: none;
}