/* @override http://localhost/~ted/dmi/MHR/admin/_engine_admin/base.css */

html, body, div, span,
h1, h2, p, a, font, img,
b, u, i, center, dl, dt, dd, ol, ul, li,
input, form, label, legend {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}

body {
	font-family: calibri;
}


/**          LOGIN          **/


#mhrLogin {
  padding: 40px 40px 20px 40px;
  width: 350px;
  background-color: #eef1f7;;
  margin: 60px auto 0 auto;
  border-radius: 25px;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  font-family: 'Lato', sans-serif;
}

#mhrLogin h1 {
  font-weight: 100;
  text-align: center;
  font-size: 1.7em;
  margin-bottom: 62px;
}

#mhrLogin input[type=submit] {
  width: 100%;
  display: block;
  margin-bottom: 10px;
  position: relative;
}

#mhrLogin input[type=text], #mhrLogin input[type=password] {
  height: 44px;
  font-size: 16px;
  width: 100%;
  margin-bottom: 10px;
  -webkit-appearance: none;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-top: 1px solid #c0c0c0;
  /* border-radius: 2px; */
  padding: 0 8px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

#mhrLogin input[type=text]:hover, #mhrLogin input[type=password]:hover {
  border: 1px solid #b9b9b9;
  border-top: 1px solid #a0a0a0;
  -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
  -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

#mhrLoginButton {
  text-align: center;
  font-size: 1.1em;
  font-weight: 500;
  height: 36px;
  padding: 0 8px;
  color: #fff;
  background-color: #484868;
}

#mhrLoginButton:hover {
  border: 0px;
  text-shadow: 0 1px rgba(0,0,0,0.3);
  background-color: #008fd4;
}

#mhrLogin a {
  text-decoration: none;
  font-weight: 400;
  text-align: center;
  display: inline-block;
  opacity: 0.6;
  transition: opacity ease 0.5s;
}

#mhrLogin a:hover {
  opacity: 1;
}

#loginBrand {
	padding-top: 20px;
	text-align: center;
	font-size: .8em;
	color: #484868;
}

#loginMsg {
	color: red;
	text-align: center;
	margin: -25px 0 20px 0;
	opacity: .8;
	font-weight: 700;
}









#adminHeader {
	padding: 10px 0 10px 20px;
	background-color: #ebebe6;
}


#upload-type {
	font-size: 0.9em;
	font-weight: bold;
}


h2 {
	text-align: center;
	font-size: 1.5em;
	margin: 20px 0 10px 0;
}

h3 {
	margin: 0;
}

#menu {
	margin: 0 auto;
	padding: 0 20px;
	width: 50%;
	border: 2px solid #a9a9a9;
}

#menu p {
	font-size: 1.1em;
	margin: 4px 0;
}

#users {
	margin: 0 auto 10px auto;
	padding: 0 0 0 10px;
	border: 2px solid #a9a9a9;
	font-size: .9em;
	text-align: left;
	border-collapse: collapse;
}

	#users td {
		border: 1px solid gray;
		padding: 0 8px;
	}

#usersTop {
	font-weight: 900;
	font-size: 1.1em;
	background: #e8e8e8;
	border-bottom: 2px solid #000;
}

.ui {
	text-align: right;
	width: 30px;
}

.ut {
}

.un {
}

.ue {
}

.up {
}

.ud {
	background-image: url('icon_delete.png');
	background-repeat: no-repeat;
	background-position: center;
	height:  16px;
	width:  16px;
	cursor: pointer;
}
	.ud:hover {
		background-image: url('icon_delete-active.png');
	}

.delUser {
	background-color: #ffa6a6;
}

#addGroup {
	margin: 30px 0 20px 50px;
}

#addGroup input {
	border: 2px solid #a9a9a9;;
}

#GroupName {
	margin-bottom: 10px;
	width: 200px;
}

#GroupCode {
	width: 100px;
}

#submitGroup {
	cursor: pointer;
}

#mhrUpload {
	margin: 0 auto;
	padding: 10px 30px 30px 30px;
	width: 50%;
	border: 2px solid #a9a9a9;
}

	#mhrUpload .up {
		border: 2px solid #a9a9a9;;
	}

#mhrSubmit {
	cursor: pointer;
}

.heading {
	font-size: 1.1rem;
	font-weight: bold;
    margin: 10px 0 1px 0;
}


.subheading {
	font-size: 0.9rem;
	font-weight: bold;
    margin-bottom: 3px;
}



 /* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 24px;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 8px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: .3s;
  transition: .3s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 24px;
}

.slider.round:before {
  border-radius: 50%;
}




.RepGrid:hover {
	background: #e8e8e8;
	color: #000;
	cursor: pointer;
}

.repLeft {
	padding-left: 6px;
}

.repCenter {
	text-align: center;
}

.repExclude {
	color: #c0c0c0;
}

#RepBoxLeft {
	clear: both;
	float: left;
	background: #f8f8f8;
	border: 2px solid #f0f0f0;
	padding: 2px 6px 0 6px;
	height: 62px;
	width: 60px;
	margin: 8px auto 8px auto;
	text-align: center;
}

#RepBoxCenter {
	float: left;
	background: #f8f8f8;
	border-top: 2px solid #f0f0f0;
	border-left: 2px solid #f0f0f0;
	border-bottom: 2px solid #f0f0f0;
	padding: 2px 6px 0 6px;
	height: 62px;
	width: 60px;
	margin: 8px auto 8px 8px;
	text-align: center;
}

#RepBoxRight {
	float: left;
	background: #f8f8f8;
	border-top: 2px solid #f0f0f0;
	border-right: 2px solid #f0f0f0;
	border-bottom: 2px solid #f0f0f0;
	padding: 2px 6px 0 6px;
	height: 62px;
	width: 140px;
	margin: 8px auto 8px 0;
	text-align: center;
}

#RepBoxFullText {
	float: left;
	background: #f8f8f8;
	border: 2px solid #f0f0f0;
	padding: 2px 6px 0 6px;
	height: 62px;
	width: 73px;
	margin: 8px auto 8px 8px;
	text-align: center;
}

.RepOpacity {
	opacity: 0.5;
}

.RepOption {
	font-size: 11px;
}

#ReportExpiration {
	margin: 2px 0 10px 0;
	width: 134px;
}

#RepBoxTitle {
	float: left;
	background: #f8f8f8;
	border: 2px solid #f0f0f0;
	padding: 2px 6px 0 6px;
	width: 205px;
	margin: 0 auto 15px auto;
	text-align: center;
}

#ReportTitle {
	margin: 2px 0 10px 0;
	width: 195px;
}

.RepTitle {
	font-weight: bold;
}

#ReportSource {
	float: left;
	text-align: right;
	font-size: 10px;
	bottom: 150px;
	width: 90px;
	height: 62px;
}

#ReportSourceHeader {
	font-size: 11px;
	font-weight: bold;
}

#RepGen {
	float: right;
	margin: 22px 0 0 0;
	text-align: center;
}

#RepGenButton {
	font-size: 11px;
	font-weight: bold;
}

.ReportBold {
	font-weight: bold;
}
