body {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  color: #444;
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.empNav{

}

.content{
	margin-left:200px;
	text-align:left;
}

.empNavUL li a {
  color: #444;
  display: block;
  padding: 10px;
  text-decoration: none;
  font-weight: 400;
  /*border-right: 1px solid #eee;*/
  font-family: Century Gothic,Arial,sans-serif;
}

.empNavUL{
	list-style-type: none;
	margin:0;
	padding:0;
	width:200px;
	background-color:#fff;
	position:fixed;
	overflow:auto;
	text-align: left;
	border-right:1px solid #eee;
	box-sizing:border-box;
}

.empNavUL li:hover{
	background:#fc9933;
	transition: all 0.25s ease;
	-webkit-transition: all 0.25s ease;
}

.empNavUL a:hover{
	text-decoration:none;
	color:#fff;
	-webkit-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

.empCust{
	border-bottom:1px solid #eee;
}



/* Employee Login */

.empLoginBody {
  font-family: Lato, Helvetica, Arial, sans-serif;
  background: url("../media/employee/loginBG.jpg") 50% fixed;
  background-size: cover;
  height:100vh;
}

@-webkit-keyframes empLoginSpinner {
  0% {
    -webkit-transform: rotateZ(0deg);
            transform: rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateZ(359deg);
            transform: rotateZ(359deg);
  }
}

@keyframes empLoginSpinner {
  0% {
    -webkit-transform: rotateZ(0deg);
            transform: rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateZ(359deg);
            transform: rotateZ(359deg);
  }
}
.empLoginBody * {
  box-sizing: border-box;
}

::selection{
	background: #b3d4fc;
	text-shadow: none;
}

.empLoginWrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  min-height: 100%;
  padding: 20px;
  background: rgba(245, 134, 32, 0.5);
}

.empLogin {
  border-radius: 2px 2px 5px 5px;
  padding: 10px 20px 20px 20px;
  width: 90%;
  max-width: 320px;
  height: 100%;
  background: #ffffff;
  position: relative;
  padding-bottom: 80px;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
}
.empLogin.empLoginLoading button {
  max-height: 100%;
  padding-top: 50px;
}
.empLogin.empLoginLoading button .empLoginSpinner {
  opacity: 1;
  filter: alpha(opacity=100);
  top: 40%;
}
.empLogin.empLoginOk button {
  background-color: #8bc34a;
}
.empLogin.empLoginOk button .empLoginSpinner {
  border-radius: 0;
  border-top-color: transparent;
  border-right-color: transparent;
  height: 20px;
  -webkit-animation: none;
          animation: none;
  -webkit-transform: rotateZ(-45deg);
          transform: rotateZ(-45deg);
}
.empLogin input {
  display: block;
  padding: 15px 10px;
  margin-bottom: 10px;
  width: 100%;
  border: 1px solid #ddd;
  -webkit-transition: border-width 0.2s ease;
          transition: border-width 0.2s ease;
  border-radius: 2px;
  color: #ccc;
}
.empLogin input + i.fa {
  color: #fff;
  font-size: 1em;
  position: absolute;
  margin-top: -47px;
  opacity: 0;
  filter: alpha(opacity=0);
  left: 0;
  -webkit-transition: all 0.1s ease-in;
          transition: all 0.1s ease-in;
}
.empLogin input:focus {
  outline: none;
  color: #444;
  border-color: #f58620;
  border-left-width: 35px;
}
.empLogin input:focus + i.fa {
  opacity: 1;
  filter: alpha(opacity=100);
  left: 30px;
  -webkit-transition: all 0.25s ease-out;
          transition: all 0.25s ease-out;
}
.empLogin a {
  font-size: 0.8em;
  color: #f58620;
  text-decoration: none;
}
.empLogin .empLoginTitle {
  color: #444;
  font-size: 1.2em;
  font-weight: bold;
  /*margin: 10px 0 30px 0;*/
  border-top: 1px solid #eee;
  padding-top: 20px;
}
.empLogin button {
  width: 100%;
  height: 100%;
  padding: 10px 10px;
  background: #f58620;
  color: #fff;
  display: block;
  border: none;
  margin-top: 20px;
  position: absolute;
  left: 0;
  bottom: 0;
  max-height: 60px;
  border: 0px solid rgba(0, 0, 0, 0.1);
  border-radius: 0 0 2px 2px;
  -webkit-transform: rotateZ(0deg);
          transform: rotateZ(0deg);
  -webkit-transition: all 0.1s ease-out;
          transition: all 0.1s ease-out;
  border-bottom-width: 7px;
}
.empLogin button:focus{
  outline: none;
}
.empLogin button .empLoginSpinner {
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  border: 4px solid #ffffff;
  border-top-color: rgba(255, 255, 255, 0.3);
  border-radius: 100%;
  left: 50%;
  top: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  margin-left: -20px;
  margin-top: -20px;
  -webkit-animation: empLoginSpinner 0.6s infinite linear;
          animation: empLoginSpinner 0.6s infinite linear;
  -webkit-transition: top 0.2s 0.1s ease, opacity 0.2s 0.1s ease, border-radius 0.1s ease;
          transition: top 0.2s 0.1s ease, opacity 0.2s 0.1s ease, border-radius 0.1s ease;
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.2);
}
.empLogin:not(.empLoginLoading) button:hover {
  box-shadow: 0 0 10px #b3d4fc;
  background:#444;
}
.empLogin:not(.empLoginLoading) button:focus {
  box-shadow: 0 0 10px #b3d4fc;
  border: 1px solid white;
  outline: none;
}

.empLoginError{
	color:#F00;
	font-size:0.9em;
	margin:0 0 5px;
}

footer {
  display: block;
  padding-top: 50px;
  text-align: center;
  color: #ddd;
  font-weight: normal;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
  font-size: 0.8em;
}
footer a, footer a:link {
  color: #fff;
  text-decoration: none;
}

/* Employee Servlet Area Styles*/
.reportsIcon{
	width:75px;
	height:75px;
	cursor:hand;
	display: inline-block;
	background:url(../img/reportsup.png);
	background-size:100%;
}
.reportsIcon:hover{
	background:url(../img/reportsdown.png);
	background-size:100%;
}
.reportsTextEmp{
	font-weight:300;
	font-size:0.8em;
}

.empSubmit{
	color:white;
	background: #fc9200;
	width:100px;
	padding:5px;
	border:none;
	line-height:1.2em;
	font-weight:400;
	text-align:center;
	font-family:'Lato';
	font-size: 1.2em;
	transition: all 0.25s ease;
	-webkit-transition:all 0.25s ease;
}

.empSubmit:hover{
	background-color:#444;
}

.empInput{
	margin: 0 0 5px;
	width:100%;
	box-sizing:border-box;
	/* padding:10px; */
	border:1px solid #ddd;
	outline:none;
	-webkit-appearance: none;
	-moz-appearance:none;
	border-radius:0px;
	line-height:normal;
	font:inherit;
	font-size: 1.2em;
	color: #444;
	display:inline-block;
}

.empField{
	width:100%;
	text-align:left;
	box-sizing:border-box;
	font-size:100%;
	font:inherit:
	padding:0;
	border:0;
	padding: 0 10px 0;
	vertical-align:baseline;
}

.empLabel{
	font-size:inherit;
	font-weight:300;
	color: #444;
}

.empHeader{
	font-family: 'Lato', Helvetica, Arial, sans-serif;
	font-size: 1.6em;
}

.empHeaderBlack{
	color: #000;
	font-weight:400;
}

.empServlet font{
	padding-left:20px;
}

.empServlet font ul{
	list-style-type: none;
	padding-left:20px;
}
