#container > header {
    position: fixed;
    top: 0;
    z-index: 8;
    width: 100%;
    height: 60px;
    background-color: #15ABFF;
    color: #FFF;
    box-sizing: border-box;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

#container > header > * {
    z-index: 9;
}

#login_header {
    border-bottom: 0;
    box-shadow: none;
}

#branding {
    position: absolute;
    z-index: 2;
    display: inline-block;
    margin: 15px 0 0 20px;
    cursor: default;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

#right_head {
    position: absolute;
    right: 15px;
    bottom: 15px;
    z-index: 4;
    text-align: right;
    font-size: 14px;
}

#right_head > span:hover {
    color: #FFF;
}

#user_info {
    position: relative;
    top: -8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

#user_info > li {
    display: inline-block;
    padding: 0 13px;
    border-right: 1px solid #C4C4C4;
}

#user_info > li:last-child {
    border-right: 0;
}

#user_info > li > a {
    color: #4D4D4D;
    text-decoration: none;
}

#user_info > li > a:hover {
    color: #15ABFF;
}

#user_settings_drop .icn_dropdown_arrow_up {
    position: relative;
    top: -2px;
    display: inline-block;
}


/* Main Header Links */
#page_lnks {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    padding: 0;
    margin: 0;
    font-size: 18px;
    line-height: 60px;
    text-align: center;
    color: rgba(255, 255, 255, .6);
    -webkit-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out;
    pointer-events: none;
}

#page_lnks > li {
    position: relative;
    display: inline-block;
    padding: 0 10px;
    list-style: none;
    cursor: pointer;
    pointer-events: all;
}


#page_lnks > li:not(.noclick):hover {
    color: #FFF;
}

#page_lnks > li:hover > ul {
    pointer-events: all;
}

#page_lnks > .selected,
#page_lnks > .selected:hover {
    color: rgb(255, 255, 255);
    cursor: default;
}

#page_lnks > li > a,
#page_lnks > li > span:not(.spriteBg) {
    display: inline-block;
    height: 43px;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    box-sizing: border-box;
}

#page_lnks > li > a {
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    -webkit-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out;
}

#page_lnks > .noclick {
    cursor: default;
}

#page_lnks > li:not(.noclick) > a:hover {
    color: rgb(255, 255, 255);
}

#page_lnks > .selected > a,
#page_lnks > .selected:hover > a,
#page_lnks > .selected > span:not(.spriteBg),
#page_lnks > .selected:hover > span:not(.spriteBg) {
    border-bottom: 2px solid rgb(255, 255, 255) !important;
}

#page_lnks > li > ul {
    position: absolute;
    top: 50px;
    margin: 0;
    padding: 0 30px 0 0;
    background: #FFF;
    border: 1px solid #A0A0A0;
    box-shadow: 0 8px 8px rgba(0, 0, 0, .16);
    opacity: 0;
    -webkit-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out;
    pointer-events: none;
}

#page_lnks > li > ul > li {
    list-style: none;
    padding: 10px 0;
    margin: 0;
    font-size: 14px;
    line-height: 18px;
    color: #4D4D4D;
    text-align: left;
    cursor: pointer;
    box-sizing: border-box;
}

#page_lnks > li > ul > li:hover {
    color: #15ABFF;
}

#page_lnks > li > ul > .selected {
    cursor: default;
    pointer-events: none;
}

#page_lnks > li > ul > li > span {
    display: block;
    padding: 0 0 0 10px;
    border-left: 4px solid transparent;
    overflow: hidden;
    white-space: nowrap;
    -webkit-transition: border .3s ease-in-out;
    transition: border .3s ease-in-out;
}

#page_lnks > li > ul > .selected span,
#page_lnks > li > ul > .selected:hover span {
    border-left-color: #15ABFF;
}

#page_lnks > li:hover > ul {
    opacity: 1;
    pointer-events: all;
}

#user_info .icon-user:before {
    display: none;
}