html, body {
  width: 100%;
  height: 100%;
  background-color: #CFCFCF;
  color: ##707070;
}

#login_box {
  width: 540px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  position: fixed;
  top: 50%;
  left: 50%;
  /* bring your own prefixes */
  transform: translate(-50%, -50%);
}

#login_top {
  background-color: #F3F3F3;
  border-radius: 6px 6px 0px 0px;
  padding: 40px;
}

#login_footer {
  background-color: #DEDEDE;
  border-radius: 0px 0px 6px 6px;
  padding: 20px 40px;
}

input {
  outline: none;
  border-radius: 6px;
  padding: 6px;
  margin-top: 2px;
  margin-bottom: 8px;
  width: 100%;
}

.login-btn {
  background-color: green;
  color: #ffffff;
}

#app_pa {
  width: 100%;
  height: 100%;
}

#app_pa_leftbar {
  background-color: #303030;
  width: 210px;
  height: 100%;
  float: left;
}

#logo {
  padding: 24px 16px;
}

#app_pa_rightsite {
  width: calc(100% - 210px);
  float: left;
}

#app_pa_topbar {
  background-color: #7B7B7B;
  width: 100%;
  padding: 10px;
  text-align: right;
}

#app_pa_body {
  padding: 12px;
  width: 100%;
  height: 100%;
}


.sBox {
  margin-top: 8px;
  border-radius: 10px;
  background: #5E5E5E;
  padding: 10px;
}


.h1, .h2, .h3, .h4, h1, h2, h3, h4 {
    margin-top: 4px;
    margin-bottom: 4px;
}

/* Red - unactive or false */
.dot-0 {
  height: 6px;
  width: 6px;
  margin: 2px;
  background-color: #D30000;
  border-radius: 50%;
  display: inline-block;
}

/* Green - active or true */
.dot-1 {
  height: 6px;
  width: 6px;
  margin: 2px;
  background-color: #00FF00;
  border-radius: 50%;
  display: inline-block;
}

/* Yellow - prospect or non-applicable */
.dot-2 {
  height: 6px;
  width: 6px;
  margin: 2px;
  background-color: #FFCC00;
  border-radius: 50%;
  display: inline-block;
}

/* Grey - not-applicable */
.dot-3 {
  height: 6px;
  width: 6px;
  margin: 2px;
  background-color: #979797;
  border-radius: 50%;
  display: inline-block;
}
ul.usermenu {
  position: relative;
  display: inline-block;
  list-style-type: none;
}


ul.dropdown {
  display: none;
  position: absolute;
  list-style-type: none;
  text-align: center;
  background-color: #f9f9f9;
  left: -80px;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 12px 16px;
  z-index: 1;
}

ul.usermenu:hover ul.dropdown {
  display: block;
}
