@font-face {
    font-family:"Squada One";
    font-style:normal;
    font-weight:400;
    src: url("../fonts/SquadaOne.woff") format("woff");
}
@-webkit-keyframes animate-panel {
    0% { border-color:transparent; height:0px; }
}
@-moz-keyframes animate-panel {
    0% { border-color:transparent; height:0px; }
}
*:focus {
    outline:none!important;
    -moz-outline:none!important;
    -moz-user-focus:none!important;
}
body, html {
    background:#1b1b1b;
    height:100%;
    min-height:100%;
    margin:0;
    padding:0;
}
button, input {
    -moz-transition:all .3s ease;
    -webkit-transition:all .3s ease;
    -moz-appearence:none;
    -webkit-appearance:none;
}
#parent {
    min-height:100%;
    position:relative;
}
#panel {
    background:#222;
    border-top:1px solid #0b0b0b;
    border-bottom:1px solid #0b0b0b;
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    overflow:hidden;
    width:100%;
    height:275px;
    margin:auto;
    -webkit-animation: animate-panel .4s cubic-bezier(0.5, -0.25, 0.265, 1.5);
    -moz-animation: animate-panel .4s cubic-bezier(0.5, -0.25, 0.265, 1.5);
}
#panel, #sites, #search, button, input {
    box-sizing:border-box;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
}
#navigation {
    height:28px;
    position:absolute;
    top:-28px;
    width:100%;
}
#navigation ul {
    list-style:none;
    margin:0;
    padding:0;
    text-align:center;
}
#navigation ul li {
    background:rgba(22,22,22,.6);
    border-bottom:1px solid rgba(48,48,48,.8);
    display:inline-block;
    position:relative;
    height:10px;
    width:10px;
    border-radius:5px;
}
#navigation ul li.selected::before {
    background:-moz-linear-gradient(top, #a9a9a9 0%, #a49999 35%, #898989 65%, #707070 101%);
    background:-webkit-linear-gradient(top, #a9a9a9 0%, #a49999 35%, #898989 65%, #707070 101%);
    content:'';
    opacity:.5;
    display:inline-block;
    position:absolute;
    top:3px;
    left:3px;
    width:4px;
    height:4px;
    border-radius:2px;
    box-shadow:#060606 0 0 3px;
}
#wrapper {
    margin:0 auto;
    width:692px;
}
#sites {
    background:#222;
    height:230px;
    padding:5px 10px;
    position:relative;
    text-align:center;
    z-index:1;
}
#sites a {
    background:#161616;
    border:1px solid #0b0b0b;
    color:#8f5b5b;
    display:inline-block;
    font-family:'Squada One';
    font-size:300%;
    height:100px;
    line-height:100px;
    margin:5px;
    text-align:center;
    text-decoration:none;
    text-shadow:#0b0b0b 0 1px 5px;
    width:100px;
    box-shadow:inset 0 0 2px #222;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}
#sites a:hover, #sites a:active {
    color:#cf7275;
}
#search {
    bottom:0;
    height:46px;
    padding:5px 15px;
    position:absolute;
    width:692px;
    z-index:0;
}
#search form {
    position:relative;
}
#search input[type="text"] {
    background:#161616;
    border:1px solid #0b0b0b;
    box-shadow:inset 0 0 2px #222;
    width:100%;
    height:33px;
    padding:3px 86px 3px 6px;
}
