/**************************************************************/
/*  CSS RESET                                                 */
/**************************************************************/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}


/*
 * 063247 - Mid-Dark Blue-Gray
 * 6210b1 - Medium Bright Purple
 * 5447ff - Bright Violet-Blue
 * ff2617 - Bright Red
 * ffbd17 - Gold
 * 69ff17 - Bright Green
 * ffefc2 - Light Beige
 */




/**************************************************************/
/*  BODY STYLE                                                */
/**************************************************************/

body {
    background-color: #e8e8e8;
    color: #333;
    font-size: 14px;
    margin: 0;
    padding: 0;
    cursor: default;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    height: 100%;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

/* -------------------------------- */

.centeredlogo {
    display: inline-block;
    overflow: hidden;
    margin: 20% auto 0 auto;
}

.bgblock {
    display: block;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1000;
    box-shadow: 0 0 350px #555 inset;
}



.topmenu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #333;
    border-bottom: solid 1px #000;
    /*box-shadow: 0 0 100px #777;*/
}

.topmenu .logo {
    display: block;
    overflow: hidden;
    float: left;
}

.topmenu .logo img {
    display: inline-block;
    overflow: hidden;
    height: 25px;
    margin: 10px 10px 10px 20px;
    vertical-align: center;
}

.topmenu .options {
    display: block;
    overflow: hidden;
    float: right;
    text-align: left;
    margin: 0;
    padding: 0;
}

.topmenu .options a {
    display: inline-block;
    overflow: hidden;
    margin: 0;
    padding: 16px 15px 15px 15px;
    text-decoration: none;
    font-size: 16px;
    color: #ccc;
}

.topmenu .options a:hover {
    background-color: rgb(255, 85, 0);
    color: #000;
}

.topmenu .options a.selected {

}

.topmenu .options a.selected:hover {

}

.applicationbar {
    float: left;
    width: 90px;
    height: 1000px;
    display: block;
    overflow: hidden;
    background-color: rgb(255, 85, 0);
    border-right: solid 1px rgb(136, 32, 0);
    box-shadow: 0 0 80px rgb(136, 32, 0) inset;
}



























