#timeout-dialog {
    display: none;
    background-color: rgba(230, 230, 230, 0.9);
    min-width: 350px;
    top: 25%;
    left: 25%;
    padding: 15px;
    position: fixed;
    border: 1px solid #aaaaaa;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -moz-box-shadow: 10px 20px 20px rgba(0, 0, 0,0.5);
    -webkit-box-shadow: 10px 20px 20px rgba(0, 0, 0, .5);
    box-shadow: 10px 20px 20px rgba(0, 0, 0, .5);
    z-index: 9999;
}

#timeout-title {
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    display: block;
    padding: 0 0 5px 0;
}
#timeout-body div {
    padding-top: 30px;
    padding-bottom: 10px;
}

#timeout-body:before {
    float: left;
    font-family: "FontAwesome";
    content: "\f071";
    font-size: 6em;
    max-height: 110px;
    color: #CCCCCC;
}
@keyframes timeout-colorchange {
    from { color: #CCCCCC; }
    to { color: red; }
}
#timeout-body.flashRed:before {
    animation-name: timeout-colorchange;
    animation-delay: 10s;
    animation-duration: 20s;
}

#timeout-dialog p {
  margin: 0 0 5px 0px;
}

#timeout-extended {
    clear: both;
    text-align: left;
    padding-left: 8px;
}
#timeout-extended label {
    color: #555555;
    font-size: 0.9em;
    font-weight: normal;
    padding-left: 4px;
}
#timeout-buttons {
    clear: both;
}

#timeout-keep-signin-btn {
  color: #FFF;
  background-color: #0f5895;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#377bb2), to(#0f5895));
  background-image: -moz-linear-gradient(top, #377bb2, #0f5895);
  background-image: -ms-linear-gradient(top, #377bb2, #0f5895);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #377bb2), color-stop(100%, #0f5895));
  background-image: -webkit-linear-gradient(top, #377bb2, #0f5895);
  background-image: -o-linear-gradient(top, #377bb2, #0f5895);
  background-image: linear-gradient(top, #377bb2, #0f5895);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#377bb2', endColorstr='#0f5895', GradientType=0);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  color: #ffffff;
  text-shadow: none;
  margin: 5px 10px 5px 0;
}
#timeout-keep-signin-btn .glyphicon {
    padding-right: 4px;
    margin-right: 4px;
}
#timeout-sign-out-button {
  color: #FFF;
  background-color: #e6e6e6;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#ffffff), to(#e6e6e6));
  background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -ms-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #e6e6e6));
  background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: linear-gradient(top, #ffffff, #e6e6e6);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  color: #000000;
  text-shadow: none;
  margin: 5px 0;
}
#timeout-sign-out-button .glyphicon {
    padding-left: 4px;
    margin-left: 4px;
}
#timeout-countdown {
  font-weight: bold;
}
