@charset "UTF-8";

/* Basic */
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html, body { width: 100%; height: 100%; }
body {
	background: #4F4F4F;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;

	margin: 0;
	padding: 0;

	font-family: 'RobotoDraft';
	font-size: .9em;
}

a {
	text-decoration: none;
	color: #006cff;
	cursor: pointer;
}

a:hover {
	text-decoration: underline;
}

b { font-weight: 600; }
img { border: none; }
ul { margin: 0; padding: 0; }
li { list-style: none; }
.faOpt { font-size: 14px; }
.faOpt2 { font-size: 28px; }
.clear:after { content: ""; display: table; clear: both; }
.clearLeft { clear: left; }
.clearRight { clear: right; }
.clearBoth { clear: both; }
canvas { display: block; }
.disableSelect {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

#Main {
	position: relative;
	width: 100%;
	height: 100%;
	perspective: 1200px;
}

#Main > .page {
	background-color: #ecf0f1;
	color: #596781;
	position: absolute;
	width: 100%;
	min-height: 100%;
	top: 0;
	left: 0;
	padding-left: 90px;
	padding-right: 70px;
	visibility: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translate3d(0, 0, 0);
	transform-style: preserve-3d;
	transition: padding 0.5s;
}

	#Main > .page.expandLeft {
		padding-left: 210px;
	}

	#Main > .page.expandRight {
	}

#Main > .page.current {
	visibility: visible;
}

#Main > .page.scaleUp {
	-webkit-animation: pageScaleUp .3s ease both;
	animation: pageScaleUp .3s ease both;
}

#Main > .page.scaleDown {
	-webkit-animation: pageScaleDown .2s ease both;
	animation: pageScaleDown .2s ease both;
}

/* PAGE TITLE */
#Main > .page #PageTitle {
	background: #FFF;
	padding: 10px 20px;
	font-size: 2em;
	border-radius: 3px;
	box-shadow: 1px 1px 3px #d8dee2;
}

#Main > .page #PageTitle > span.fa {
	color: #4f96ed;
}

/* PAGE TOOLS */
#Main > .page #PageTools {
	padding: 10px;
	border-bottom: 1px dashed;
}

	#Main > .page #PageTools > .title {
		float: left;
		margin-top: 5px;
		margin-right: 20px;
	}

	#Main > .page #PageTools > .buttons {
		float: right;
	}

/* Hide default Chatbar */
#cometchat {
    /* display: none !important; */
}

.k-calendar .k-content { padding: 0 !important; }