

/**
 * Font Faces
 */

@font-face {
  font-family: "Inter-ExtraBold";
  src: url("../fonts/Inter-ExtraBold.ttf") format("truetype");
}
@font-face {
  font-family: "Inter-Bold";
  src: url("../fonts/Inter-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Inter-Regular";
  src: url("../fonts/Inter-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Inter-Light";
  src: url("../fonts/Inter-Light.ttf") format("truetype");
}

body {
  
  height: 100%;
  overflow: auto;
    margin: 0;
    padding: 0;
    font-family: 'Inter-Regular', sans-serif;
    font-size: 12px;
    color: #fff;
    background: #313233 url('/login/images/bg_timeline_texture.png');
}

a:link, a:visited, a:active {
    color: #fff;
}

p {
    margin-top: 2px;
    margin-bottom: 2px;
}

label {
    display: block;
    clear: both;
    margin-bottom: 10px;
    font-family: 'Inter-Medium', sans-serif;
    font-size: 14px;
    font-weight: normal;
    color: #B5B5B5;
}

p,
.text-input,
input {
    display: block;
    clear: both;
    margin-bottom: 20px;
}

.topbar {
  height: 50px;
  line-height: 50px;
  padding-left: 20px;
  margin-bottom: 15px;
  background: url("/login/images/topbar.png") repeat-x;
}
.topbar > * {
  margin-top: 0;
  margin-bottom: 0;
}
.topbar > h1,
.topbar a:link,
.topbar a:visited,
.topbar a:active {
  font-family: "Inter-ExtraBold", sans-serif;
  font-weight: normal;
  color: #646565;
  font-size: 13px;
  text-transform: uppercase;
}
.topbar a:hover {
  color: #aaaaaa;
}

input[type=text],
input[type=password] {
  height: 30px;
  line-height: 29px;
  /*ie8 vertical text align*/
  padding: 0 10px;
  background: url("/login/images/dark_input_middle.png") repeat-x;
  border: 0 none;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Inter-Medium", sans-serif;
  font-weight: normal;
  color: #DADBDC;
  font-size: 13px;
}

//  Text Input Field
.text-input {
    position: relative;
    width: @text_input_width; height: @text_input_height;
    
    //  Input Element
    input {
        position: relative; display: block;
        width: 100%;
        margin: 0px;
        padding: 0px 10px;
        -webkit-border-radius: 0px; -moz-border-radius: 0px; border-radius: 0px;
        background: none;
        
        &[disabled] { color: #5b6066; }
        &::-webkit-input-placeholder { .fontMedium13; }
        &:-moz-placeholder { .fontMedium13; }
        &:-ms-input-placeholder { .fontMedium13; }
        .placeholder { .fontMedium13; }
    }
    
    //  Reversed colour scheme
    &.light input {
        color: #52575d;
        
        &[disabled] { color: #bdbdbd; }
        &::-webkit-input-placeholder,
        &:-moz-placeholder,
        &:-ms-input-placeholder { color: #52575d; }
        .placeholder { color: #52575d; }
    }
    
    //  Date picker icon
    &.datepicker:after {
        position: absolute; display: block;
        top: 6px; right: 7px;
        width: 15px; height: 16px;
        content: " ";
        background: url("../images/calendar_icon.png") no-repeat top right;
        pointer-events: none;
    }
    &.datepicker input { padding-right: 30px; }
    
    //  Sliding doors border chrome treatments
    > .left, > .right, > .middle { position: absolute; top: 0px; bottom: 0px; background-repeat: no-repeat; }
    
    > .left, > .right { width: 7px; }
    
    > .left { left: 0px; background-image: url("../images/dark_input_left.png"); }
    > .right{ right: 0px; background-image: url("../images/dark_input_right.png"); }
    > .middle { left: 7px; right: 7px; background: url("../images/dark_input_middle.png") repeat-x; }
    
    &.light {
        > .left { background-image: url("../images/light_input_left.png"); }
        > .right { background-image: url("../images/light_input_right.png"); }
        > .middle { background-image: url("../images/light_input_middle.png"); }
    }
    
    //  Spacing between fields within a form
    &.form-field {
        padding-right: @text_input_gutter;
        
        > .right { right: @text_input_gutter; }
        > .middle { right: @text_input_gutter + 7px; }
        
        &.datepicker:after { right: @text_input_gutter + 7px; }
    }
}

button,
input[type=button],
input[type=submit] {
    height: 26px;
    padding: 0 20px;
    background: url('/login/images/bg_button.png') repeat-x;
    border-width: 1px;
    border-style: solid;
    border-color: #cecece #bababa #919191 #b9b9b9;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    font-family: 'Inter-Medium', sans-serif;
    font-size: 13px;
    color: #52575e;
    cursor: pointer;
}

#banner {
    min-height: 26px;
    white-space: nowrap;
    /* background-color: #5F79BD */
    background: url('/login/images/banner_bg.png') repeat-x;
}

#content {
    top: 0;
    right: 0;
    left: 0;
    padding: 0;
    margin: 0;
    position:auto;
}

#content > #leftColumn {
    position: absolute;
    right: 50%;
    margin-right: 40px;
    top: 0;
    bottom: 0;
    height: 100%;
    overflow: hidden;
}

#content > #rightColumn{
    position: absolute;
    top: 0;
    height: 100%;
    bottom: 0;
    left: 50%;
    background: url('/login/images/content_divider.png') top left no-repeat;
    padding-left: 40px;
    overflow: hidden;
}

#content .centerHelper {
    height: 100%;
    padding: 0;
    text-align: center;
}

#content .centerHelper,
#content .centerContents {
    display: inline-block;
    vertical-align: middle;
}


#content h1 {
    margin-bottom: 30px;
    font-family: 'Inter-Light', sans-serif;
    font-size: 24px;
    font-weight: normal;
    color: #B5B5B5;
}

.hed1 {
    margin-bottom: 24px;
    font-family: 'Inter-Light', sans-serif;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.help-link {
    font-family: 'Inter-Regular', sans-serif;
    font-size: 12px;
    color: #fff;
    text-decoration: underline;
    margin-bottom: 5px;
}

#ad-content-float {
    margin-top: 20px;
}

#validation,
#validation-error,
#validation-message {
  position: absolute;
  top: 35px;
  left: 20px;
  right: 20px;
  padding: 13px 10px 10px 40px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  font-family: 'Inter-Bold', sans-serif;
  font-size: 12px;
  color: #fff;
}

#validation-message {
    background: url('/login/images/1px_green_25.png');
    border: 1px solid  #070
}

#validation,
#validation-error {
    background: url('/login/images/1px_red_25.png');
    border: 1px solid #c33;
}

#validation .icon,
#validation-error .icon,
#validation-message .icon {
    background: url('/login/images/warning_icon.png');
    position: absolute;
    top: 12px;
    left: 12px;
    width: 17px;
    height: 16px;
}

.start-hidden {
    display:none;
}

#lowIE{
  position: absolute;
  top: 40px;
  left: 20px;
  right: 20px;
  height: 60px;
  padding: 13px 10px 10px 40px;
  background: url('/login/images/1px_gold_25.png');
  border: 1px solid #cc3;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  font-family: 'Inter-Bold', sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  visibility: hidden;
}

#lowIE .icon {
    background: url('/login/images/icon_exclamation_on.png');
    position: absolute;
    top: 12px;
    left: 12px;
    width: 20px;
    height: 20px;
}
#infoIcon {
    background: url('/login/images/icon_exclamation_on.png');
    position: absolute;
    margin-left: 5px;
    width: 20px;
    height: 20px;
}

.popupInfoMessage {
  visibility: hidden;
  width: 400px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  margin-top: 18px;
  /* Position the tooltip */
  position: absolute;
  z-index: 1;
}

#infoIcon:hover .popupInfoMessage {
  visibility: visible;
}

#main-nav {
    background: url('/login/images/nav_bg.gif') ;
    padding: 0 6px;
    min-width: 1000px;
    min-height: 2.4em;
}

.gray,a.gray:link,a.gray:visited,a.gray:active,a.gray:hover {
    color: #666;
}

.warning {
    color: #fff;
}


li {
    margin-left: 3ex;
}

div.input,div.inputWarning {
    clear: both;
    margin-bottom: 10px;
}



.footer {
  white-space:nowrap;
  min-width: 600px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 !important;
  /* TODO: Remove !important once access/style/default.css has been factored out */
  padding-left: 10px;
  height: 30px;
  line-height: 30px;
  font-family: "Inter-Medium", sans-serif;
  font-weight: normal;
  color: #AAACB0;
  font-size: 9px;
  background: url('/login/images/chrome_background_bottom.png') repeat-x;
  position: absolute;
}

.footer a {
  font-family: "Inter-Medium", sans-serif;
  font-weight: normal;
  color: #AAACB0;
  font-size: 9px;
  text-decoration: underline;
}

.footer a:hover {
  text-decoration: underline;
}

.footer .pipe {
  font-family: "Inter-Medium", sans-serif;
  font-weight: normal;
  color: #AAACB0;
  font-size: 9px;
  margin-left: 5px;
  margin-right: 5px;
}

.footer .status {
  display: none;
}

.footer .powered-by {
  padding-top: 6px;
  padding-bottom: 6px;
}

.footer .powered-by img {
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
}

#ui-version {
  float: right;
  padding-right: 10px;
}

.page-content-tag {
  padding-left: 20px;
  overflow: auto;
  padding-top: 15px;
  padding-bottom: 30px;
  position: absolute;
  bottom: 48px;
  left: 0;
  right: 0;
  top: 96px;
}
.page-content-tag.popup {
  top: 0;
  bottom: 0;
  padding: 15px;
}

.page-content-tag .content {
  padding-right: 20px;
}

.login-text-block {
    max-width: 280px;
}

.popin-window {
  top: 45px;
  bottom: 0;
}

.hint {
  color: #bababa;
  width: 300px;
}

