html {
    overflow: hidden;
}

body {
    position: absolute;
    margin: 0;
    padding: 0;
    background: #eee;
    width: 100%;
    height: 100%;
    color: #fff;
    font-family: arial;
    font-size: 0.8em;
}

#screen {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    overflow: hidden;
}

#screen img, canvas {
    position: absolute;
    left: -9999px;
    cursor: pointer;
    image-rendering: optimizeSpeed;

}

#screen .href {
    border: #FFF dotted 1px;
}

#screen .fog {
    position: absolute;
    background: #fff;
    opacity: 0.1;
    filter: alpha(opacity=10);
}

#command {
    position: absolute;
    left: 1em;
    top: 1em;
    width: 130px;
    z-index: 30000;
    display: none;
}

#bar {
    position: relative;
    left: 1em;
    top: 1em;
    height: 160px;
}

#bar .button {
    position: absolute;
    background: #222;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

#bar .loaded {
    background: #666;
}

#bar .viewed {
    background: #fff;
}

#bar .selected {
    background: #f00;
}

#urlInfo {
    position: absolute;
    visibility: hidden;
    z-index: 30000;
    cursor: pointer;
    font-size: 1.3em;
    text-align: left;
    text-indent: 2em;
    background-color: rgba(0,0,0,0.5);
    padding: 5px 8px;
}
#userName{
    position: absolute;
    visibility: hidden;
    background-color: rgba(0,0,0,0.5);
    padding: 10px 20px;
    z-index: 30000;
    cursor: pointer;
    font-size: 2em;
    font-weight: 700;
    text-align: center;
}
#userTitle{

}

/*xxx*/
.element {
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.5);
    border: 1px solid rgba(127, 255, 255, 0.25);
    text-align: center;
    cursor: pointer;
    position: absolute;
    background-color: white;
}

.element:hover {
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.75);
    border: 1px solid rgba(127, 255, 255, 0.75);
}

.element .number {
    position: absolute;
    width: 100%;
    top: 20px;
    right: 20px;
    font-size: 12px;
    color: rgba(127, 255, 255, 0.75);
    display: none;
}

.element .symbol {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    font-size: 60px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.75);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.95);
    display: none;
}

.element .details {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    font-size: 12px;
    color: rgba(127, 255, 255, 0.75);
}