/* Default for All Pages */
body, html {
	height: 100%;
	width: 100%;
	margin: 0px;
	transition: 0.7s;
}

/* For Header */
.top {
	width: 100%;
}
.head {
	width: 100%;
	text-align: center;
	margin: 0px 0px 0px 0px;
	padding: 15px 0px 10px 0px;
}
.head img:hover {
	cursor: pointer;
}
.menulink {
	width: 265px;
	padding: 5px 8px;
	font-size: 20px;
	font-family: Tahoma, Geneva, sans-serif;
	color: #CCC;
	cursor: pointer;
	transition: 1.5s;
	float: left;
}
.menulink:hover {
	color: #555555;
}
.user {
	width: 265px;
	padding: 10px 20px 0px 0px;
	text-align: right;
	float: right;
	font-family: "Times New Roman", Times, serif;
	font-size: 16px;
	line-height: 1.4;
	color: #656E78;
}
.user a, .user a:visited {
	color: #656E78;
	text-decoration: none;
	transition: 0.7s;
}
.user a:hover {
	color: #DA7702;
	text-decoration: none;
}
/* Prevent sub/sup tags from affecting line heights */
sup {
	vertical-align: baseline;
	position: relative;
	top: -0.4em;
}
sub {
	vertical-align: baseline;
	position: relative;
	top: 0.4em;
}





/* For Menu */

.menu {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #CCD6DD;
	background-image: linear-gradient(#CCD6DD, #CCD6DD, #CCD6DD, #C8D3DB);
	box-shadow: 1px 2px 8px #AAAAAA;
  overflow-x: hidden;
  transition: 0.7s;
  padding-top: 70px;
}
.menu a {
  padding: 8px 8px 8px 20px;
	min-width: 265px;
  text-decoration: none;
  font-size: 22px;
  color: #8F9DB2;
  display: block;
  transition: 0.4s;
	font-family: "Times New Roman", Times, serif;
}
.menu a:hover {
  color: #F7F7F7;
}
.menu .xmenu {
  position: absolute;
  top: 0;
  left: 205px;
  font-size: 36px;
}
@media screen and (max-height: 450px) {
  .menu {padding-top: 15px;}
  .menu a {font-size: 18px;}
}

.menuDivider {
	margin: 15px 0px 0px 20px;
	width: 180px;
	display: inline-block;
	border-top: rgba(143, 157, 178, 0.25) 1px solid;
}


/* Commonly used classes */
.opaque {
	opacity: 0;
}
.light {
	opacity: 0.6;
}

.hidden {
	display: none !important;
	visibility: hidden !important;
}
.unhidden {
	display: block !important;
	visibility: visible !important;
}


/* For descriptive texts */
.classification {
	font-size: 0.8em;
	font-weight: normal;
	font-style: italic;
	opacity: 0.7;
	padding: 0px 2px 0px 0px;
}
.classification.mini {
	font-size: 0.6em;
}
.catLabel {
	font-size: 0.8em;
	font-weight: normal;
	opacity: 0.7;
}


/* For B&W toggles */

.w01 {
	transition: 0.7s;
}
.b01 {
	color: #E99548 !important;
}
.EV.b01:hover, .UDpx.b01:hover { /* Need this for Snapshot page */
	color: #EEEEEE !important;
}

.w02 {
	transition: 0.7s;
}
.b02 {
	color: #8F9DB2 !important;
}
.w03 {
	transition: 0.7x;
}
.b03 {
	color: #CCD6DD !important;
}


/* For overlay and loader, using specific ID's to enable B&W toggle on class */
#overlayLoader, #overlayTransition,
.overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
	opacity: 0.9;
  z-index: 2;
  cursor: pointer;
}
#overlayLoader.w00 {
	background-color: #EEEEEE;
}
#overlayLoader.b00 {
  background-color: #333333;
}
#overlayTransition {
  background-color: #EEEEEE;
}
.overlay {
  background-color: #777777;
}



#loader {
  position: absolute;
  top: 43%;
  left: 50%;
  transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
}
.loaderimg {
  display: inline-block;
}
.loaderimg img {
	opacity: 0.6;
}

.loaderimg:after {
  content: " ";
  display: block;
  width: 80px;
  height: 80px;
  margin: -73px -16px;
  border-radius: 50%;
  border: 5px solid #DDDDDD;
  border-color: #DDDDDD transparent #DDDDDD transparent;
  animation: loaderimg 2.5s linear infinite;
}
@keyframes loaderimg {
  0% {
    transform: rotate(0deg);
		opacity:0.1;
  }
  50% {
    transform: rotate(220deg);
		opacity:0.8;
  }
  100% {
    transform: rotate(360deg);
		opacity:0.1;
  }

}









.popupMsgWrapper {
	position: relative;
	width: 100%;
	margin-top: 7%;
	text-align: center;
}
.popupMsgText {
	display: inline-block;
	width: 700px;
	padding: 10px 35px 35px 35px;
	border: transparent 1px solid;
	border-radius: 7px;
	box-shadow: 1px 2px 8px #333333;
	font-family: "Times New Roman", Times, serif;
	font-size: 20px;
	text-align: justify;
	line-height: 26px;
	background-color: white;
	opacity: 1;
	color: #62350D;
}
.center {
	text-align: center;
}
#helpKe .popupMsgWrapper {
	margin-top: 2%;
}
.popupMsgText.med {
	width: 800px;
}
.popupMsgText.wide {
	width: 1000px;
}
.popupMsgText.wide p {
	margin: 12px 0px;
}
.popupMsgText.confirm {
	width: 500px;
}



.popupRow {
	display: inline-block;
	width: 100%;
	margin: 0px;
}
.popupButton, .popupHelp, .popupX, .popupSubmit {
	float: right;
	border: transparent 1px solid;
	border-radius: 5px;
	opacity: 0.4;
	transition: 1.2s;
	cursor: pointer;
}
.popupButton:hover, .popupHelp:hover, .popupX:hover, .popupSubmit:hover {
	border: #62350D 1px solid;
	opacity: 0.8;
	box-shadow: 0px 0px 10px #CCCCCC;
}

.popupButton {
	padding: 3px 10px;
	margin: 0px 2px;
}
.popupHelp {
	padding: 3px 10px 2px 8px;
	margin: 7px 5px 0px 0px;
}
.popupX {
	font-size: 30px;
	padding: 1px 6px 4px 7px;
	margin: 7px -15px 0px 0px;
}
.popupSubmit {
	padding: 3px 10px 2px 8px;
	margin: 5px 0px 0px 0px;
}


.popupOptionsWrapper {
	width: 100%;
	text-align: center;
}
.popupOptionsSubWrapper {
	padding: 150px 0px 200px 0px;
	display: inline-block;
}
.popupSubOptionsSubWrapper {
	padding: 0px 0px 10px 0px;
	display: inline-block;
}
.popupOption, .popupSubOption {
	float: left;
	border: rgba(98, 53, 13, 0.2) 1px solid; /*#62350D*/
	text-align: center;
	opacity: 0.4;
	transition: 1.2s;
}
.popupOption {
	width: 125px;
	padding: 40px 0px;
	margin: 0px 5px;
	border-radius: 15px;
}
.popupSubOption {
	padding: 15px 10px;
	margin: 0px 3px;
	font-size: 15px;
	border-radius: 7px;
}
.popupOption:hover, .popupSubOption:hover {
	border: rgba(98, 53, 13, 1) 1px solid; /*#62350D*/
	opacity: 0.8;
}




.signature {
	margin-left: 35%;
	margin-bottom: 7px;
}
.signature.name {
	font-style: italic;
	font-size: 1.1em;
}



/* Settings */

.justify {
	text-align: justify !important;
}




/* Math Notation */

.notation {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-style: italic;
}



/* Draggable Divs (prevent text selection */
[draggable] {
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	user-select: none;
	/* Required to make elements draggable in old WebKit */
	-khtml-user-drag: element;
	-webkit-user-drag: element;
}








/* Custom Inputs */

input[type="range"] {

}
