@charset "utf-8";
/* CSS Document */
*{
	margin: 0px;
	padding: 0px;
}
body{
	background-color: #e7e7e7;
	margin: 0px;
	padding: 0px;
}
h3{
	font-family:Tunga, Helvetica, Arial, sans-serif;
	font-size:24px;
	color: #737373;
}
h2{
	font-family:Tunga, Helvetica, Arial, sans-serif;
	font-size:40px;
	color: #737373;
}
p{
	font-family:Tunga, Helvetica, Arial, sans-serif;
	font-size:14px;
	color: #737373;
}
a{
	text-decoration:none;
}
a:link {
    font-family:Tunga, Helvetica, Arial, sans-serif;
	font-size:24px;
	color: #52a6db;
}

a:visited {
    font-family:Tunga, Helvetica, Arial, sans-serif;
	font-size:24px;
	color: #52a6db;
}

a:hover {
    font-family:Tunga, Helvetica, Arial, sans-serif;
	font-size:24px;
	color: #66bdf4;
}

a:active {
	font-family:Tunga, Helvetica, Arial, sans-serif;
	font-size:24px;
    color: #3983b2;
}

.Header{
	font-size:86px;
	text-align:center;
	line-height:100%;
	font-family:Tunga, Helvetica, Arial, sans-serif;
	color: #737373;
	font-weight: bold;
	text-shadow: 7px 7px 0px #c5c5c5;
	position: relative;
	bottom: 0px;
	right: 0px;
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select: none;
	cursor:default;
	margin-top: 25px;
	transition:all 0.3s;
}
.Header:hover{
	text-shadow: 15px 15px 0px #c5c5c5;
	right: 6px;
	bottom: 6px;
}
input[type="text"],input[type="password"],input[type="url"]{
	transition: border 0.3s;
	border-top-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: solid;
	border-top-color: #B5B5B5;
	border-left-color: #B5B5B5;
	display: block;
	margin: 0;
	padding: 5px;
	width: 100%;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
input[type="text"]:focus,input[type="password"]:focus,input[type="url"]:focus{
	border-top-color: #333333;
	border-left-color: #333333;
	outline: none;
}
textarea{
	height: 125px;
	transition: border 0.3s;
	border-top-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: solid;
	border-top-color: #B5B5B5;
	border-left-color: #B5B5B5;
	display: block;
	margin: 0;
	padding: 5px;
	width: 100%;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
textarea:focus{
	border-top-color: #333333;
	border-left-color: #333333;
	outline: none;
}
input[type="button"],input[type="submit"]{
	padding: 5px 32px;
	font-family:Tunga, Helvetica, Arial, sans-serif;
	font-size:24px;
	color: #ffffff;
	background-color: #52a6db;
	text-align: center;  
    border: none;
    text-decoration: none;
	border-radius: 10px;
    display: inline-block;	
	transition: background-color 0.3s;
}
input[type="button"]:hover, input[type="submit"]:hover{
	background-color: #66bdf4;  
	border: none;
    text-decoration: none;
}
input[type="button"]:active, input[type="submit"]:active{
	transition: background-color 0.0s;
	background-color: #3983b2;  
	border: none;
	outline: none;
    text-decoration: none;
	position:relative;
	left: 2px;
	top: 2px;
}
input[type="button"]:focus,input[type="submit"]:focus{  
	border: none;
	outline: none;
    text-decoration: none;
}
.LargeButton{
	padding: 25px 64px !important;
	font-family:Tunga, Helvetica, Arial, sans-serif;
	font-size:36px !important;
	margin: 10px !important;
	width:400px;
	height: 200px;
}
.Center{
	margin-left:auto;
	margin-right:auto;
	margin-bottom:50px;
	width: 700px;
	position:relative;
	
	/*
	-webkit-filter: blur(0px);
	-webkit-transition: all 1s linear;;
	
	-ms-filter: blur(0px);
	-ms-transition: all 1s linear;;
	
	-moz-filter: blur(0px);
	-moz-transition: all 1s linear;;
	
	-o-filter: blur(0px);
	-o-transition: all 1s linear;;
	
	//TODO FIX FILTER!
	
	filter: blur(0px);
    transition: all 1s linear;;
	*/
}

.Blur{
	-webkit-filter: blur(0px);
    -moz-filter: blur(0px);
	-o-filter: blur(0px);
	-ms-filter: blur(0px);
    filter: url(blur.svg#blur);
	filter:progid:DXImageTransform.Microsoft.Blur(PixelRadius='0');
	filter: blur(0px);
	
	-webkit-animation: blur 0.5s linear forwards;
	-moz-animation: blur 0.5s linear forwards;
	-ms-animation: blur 0.5s linear forwards;
	-o-animation: blur 0.5s linear forwards;
	animation: blur 0.5s linear forwards;
}

@-webkit-keyframes blur {
  to {
    -webkit-filter: blur(5px);
    filter: blur(5px);
  }
}
@-moz-keyframes blur {
  to {
    -moz-filter: blur(5px);
    filter: blur(5px);
  }
}

@-ms-keyframes blur {
  to {
    -ms-filter: blur(5px);
	-webkit-filter: blur(5px);
	-moz-filter: blur(5px);
	filter: url(blur.svg#blur);
	filter:progid:DXImageTransform.Microsoft.Blur(PixelRadius='5');
	filter: blur(5px);
  }
}

@keyframes blur {
  to {
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    filter: blur(5px);
  }
}

.NoBlur{

	-webkit-filter: blur(5px);
    -moz-filter: blur(5px);
	-o-filter: blur(5px);
	-ms-filter: blur(5px);
	filter: url(blur.svg#blur);
	filter:progid:DXImageTransform.Microsoft.Blur(PixelRadius='5');
	filter: blur(5px);
	-webkit-animation: noblur 0.5s linear forwards;
	-moz-animation: noblur 0.5s linear forwards;
	-ms-animation: noblur 0.5s linear forwards;
	-o-animation: noblur 0.5s linear forwards;
	animation: noblur 0.5s linear forwards;
}

@-webkit-keyframes noblur {
  to {
    -webkit-filter: blur(0px);
    filter: blur(0px);
  }
}
@-moz-keyframes noblur {
  to {
    -moz-filter: blur(0px);
    filter: blur(0px);
  }
}
@keyframes noblur {
  to {
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    filter: blur(0px);
  }
}








.ContentBox{
	-webkit-box-shadow: 0px 10px 34px 0px rgba(125,125,125,1);
	-moz-box-shadow: 0px 10px 34px 0px rgba(125,125,125,1);
	box-shadow: 0px 10px 34px 0px rgba(125,125,125,1);
	border-radius: 10px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
    background: #f7f7f7;
    padding: 20px;
	margin-top:30px;
}
#LightBoxBG{
	background-color: rgba(0, 0, 0, 1);
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 25;
	top: 0px;
	opacity:0;
	display:none;
}

.LightBox{
	position:fixed;
	z-index:50;
	margin-left:auto;
	margin-right:auto;
	width:700px;
	left: 0px;
	right: 0px;
	top: 35%;
	max-height: 500px;
	overflow-y: auto;
	/*height:300px;*/

}
.LightBoxList{
	max-height: 500px;
	overflow-y:scroll;
}
.Question{
	display:inline-block;
	margin: 10px;
	width: 26px;
	height: 26px;
}

tooltip{
	display:inline-block;
	position:relative;
	top:16px;
	margin: 10px;
	width: 26px;
	height: 26px;
	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAllJREFUeNqsVi1PA0EQvds0OY0mmIJAkhSBwF1RoEoLwSARTQ0YSKpJwIC5VPADIECpwsE5BIJLkE2AmgaNripvydtmWO62V2CSl3R7s28+dnZm/cr5i+cQHwiBZaAEzAPT/PYOdIEEeABiYJhFVHAY2QA2gUrG9zlijesOcAlc5TVUBBpAHQjoZUyvE0bhMboSow3p0CqwBERAz2VoAWgCVa61d5c3W3OdFIdegVv9Y/3itcLodRZ2gRngEHg2ysqKxBjR3uwB2xlGvgl1trmnR44mOX9E1BBG9oE2vfWYohr/l3IA3DOlAxg8hX4fv4/J1afxUUQbPBMtETa0BZkmf0oxouXI/sa9EZd1cn8Z8pnfgGfSEkQ1ko0TrVMW6xa5AnL7SlTMkAc/EBt2xG+d0kU65htPLadMVAOW+pDcoWJ5aomtg5+yvDzgWRi5ttbFlAKJuVwu8KA93hMpH/TcJZI8Sfn+QGdLihcvS9ElV4zaOHWWomM455XoXd2cBoqstJowsmJ3AotzWk0YhY7gTqQ7YYGMzYZiF/ZECl2yI86l54jEszjflQivlMNQ2aq6jzH6hrNbYNhrosxdsjJhqg1nokRZh+zC/yLkCk2ZK16qjmlFUAgc+99424csiiwjo9ZD7liZ1qO7r9Vc/yKmmY5akRKXzzTTBjyq/iFlVY4c2Vy/zaOIk7HKeTJDxUFOGwGM1GmkyHkWpQ2+HsevR2MnnP9ylM86Dn5TdPQ2uUZ3zE95bv32ceIz+laex4kn3guP4rlVti5rmkz83JLd+fq/HpCfAgwA6dS86ihVpxAAAAAASUVORK5CYII=');
}

.Error{
	font-family: Tunga, Helvetica, Arial, sans-serif;
	font-size: 24px;
	color: #430E0F;
}
.ListItem{
	background-color: #eeeeee;
	margin-top: 10px;
	margin-bottom: 10px;
	border-radius: 10px;
	padding-left: 10px;
	transition: background-color 0.3s;
	position: relative;
}
.ListItem:hover{
	background-color:#cddeee;
}
.ListItem:active{
	background-color:#bccddc;
	transition: background-color 0s;
}
.ListDisabled{
	font-family: Tunga, Helvetica, Arial, sans-serif;
	font-size: 14px;
	color: #A2A2A2;
	margin-left: 10px;
}
.ListSticky{
	font-family: Tunga, Helvetica, Arial, sans-serif;
	font-size: 18px;
	color: #737373;
	font-weight: bold;
	margin-left: 10px;
}
.ListDate{
	font-family: Tunga, Helvetica, Arial, sans-serif;
	font-size: 18px;
	color: #737373;
	/*margin-left: 50px;*/
	float:right;
	margin-right: 10px;
}
.ListActive{
	font-family: Tunga, Helvetica, Arial, sans-serif;
	font-size: 18px;
	color: #60c958;
	font-weight: bold;
}
.AccountTray{
	font-family: Tunga, Helvetica, Arial, sans-serif;
	font-size: 14px;
	color: #737373;
	float: right;
	margin-right: 25px;
	z-index: 50;
	position:relative;
	margin-top: -15px;
}
.AccountTrayText{
	font-size: 14px !important;
}
.RadioButtonLabel{
	font-family: Tunga, Helvetica, Arial, sans-serif;
	font-size: 18px;
	color: #737373;
	margin-right: 20px;
	cursor: pointer;
	position: relative;
	line-height  : 16px;
	background-image: url(../images/RadioUnselected.png);
	background-repeat: no-repeat;
	background-position: 0 0;
}
.RadioButtonForm input{
	position: absolute;
	z-index: -1;
	opacity: 0;
	
}
input[type="radio"]:checked + label{
	background-image: url(../images/RadioSelected.png);
}

.RadioButtonForm{
	display:inline-block;	
}
.RadioButtonText{
	margin-left:28px;
	-webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.CheckButtonLabel{
	font-family: Tunga, Helvetica, Arial, sans-serif;
	font-size: 18px;
	color: #737373;
	margin-right: 20px;
	cursor: pointer;
	position: relative;
	line-height  : 16px;
	background-image: url(../images/CheckboxUnchecked.png);
	background-repeat: no-repeat;
	background-position: 0 0;
}
input[type="checkbox"]:checked + label{
	background-image: url(../images/CheckboxChecked.png);
}

.Selection{
	background-color: #eeeeee;
	/*background: red;  For browsers that do not support gradients */
	background: -webkit-linear-gradient(#fff, #e6e6e6);
	background: -o-linear-gradient(#fff, #e6e6e6);
	background: -moz-linear-gradient(#fff, #e6e6e6);
	background: linear-gradient(#fff, #e6e6e6);
	margin-top: 10px;
	margin-bottom: 10px;
	border-radius: 10px;
	transition: background-color 0.3s;
	position: relative;
	display: inline-block;
	width: 100%;
	border-radius: 10px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	border: 3px solid #ffffff;
	font-family: Tunga, Helvetica, Arial, sans-serif;
	font-size: 24px;
	
	color: #737373;
	padding-top: 4px;
	padding-right: 10px;
	/*padding-bottom: 1px;*/
	padding-left: 10px;
	vertical-align: middle;
	line-height:24px;
}
.DeleteSelection{
	float: right;
	cursor:pointer;
	position:relative;	
}
.DeleteSelection:active{
	left: 2px;
	top: 2px;	
}
.BackButton{
	position:fixed;
	left: 10px;
	Bottom: 10px;
	z-index:50;
}
.CompleteButton{
	float: right;	
	margin-top: 25px;
}
.CategoryContent{
	border-radius: 10px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	background-color: #E9E9E9;
	padding: 20px;
	display:inline-block;
	width: 100%;
	margin-bottom: 20px;
}
.CategoryMediaHolder{
	border-radius: 10px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	background-color: #D7D7D7;
	display: inline-block;
	width: 100%;
	padding: 5px;
	
}
.CategoryMedia{
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	padding: 10px;
	width: 47%;
	float:left;
	clear:right;
}
.DeleteCategoryMedia{
	float: left;
	clear:right;
	cursor:pointer;
	padding-top: 12px;
	position:relative;	
}
.DeleteCategoryMedia:active{
	left: 2px;
	top: 2px;	
}
.CategoryMediaHeader{
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 10px;
	width: 47%;
	float:left;
	clear:right;
}
.CategoryButton{
	margin:10px;
	font-size:16px !important;
}
.CompleteButton{
	margin-bottom: 50px;	
}


.LandingIconHolder{
	display: inline-block;
	overflow: visible;
	white-space: nowrap;
	position: relative;
	height: 128px;
	width: 128px;
	margin: 10px;
}
.LandingIcon{
	padding: 10px;
	border-radius: 10px;
	border: 2px solid rgba(66, 136, 180, 0.0);
	background-color: rgba(141, 213, 246, 0.0);
	transition: all 1s;
	height: 64px;
	width: 64px;
	margin:auto;
}
.LandingIcon:hover{
	border: 2px solid #52a6db;
	background-color: rgba(173, 207, 223, 1);
	transition: all 0.2s
}
.LandingIcon:active{
	border: 2px solid #ffffff;
	background-color: rgba(94, 146, 170, 1);
	transition: all 0.2s
}
.LandingIconText{
	font-family: Tunga, Helvetica, Arial, sans-serif;
	font-size: 18px;
	color: #313131;
	text-align:center;
}
.logtext{
	font-family: Tunga, Helvetica, Arial, sans-serif;
	font-size: 14px;
	color: #313131;
	border-right-width: 1px;
	border-left-width: 1px;
	border-bottom-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-bottom-style: solid;
	border-right-color: #e2e2e2;
	border-left-color: #e2e2e2;
	border-bottom-color: #f3f3f3;
	padding-left: 10px;
	padding-right: 10px;
}
.Calendar{
	margin-left:auto;
	margin-right:auto;
	margin-bottom:50px;
	width: 1200px;
	position:relative;
}
td,th{
	border: 1px solid #e2e2e2;
	border-collapse:collapse;
	position:relative;
}
th{
	font-family: Tunga, Helvetica, Arial, sans-serif;
	font-size: 20px;
	color: #313131;
	padding: 10px;
}
.ScheduleTitle{
	font-family: Tunga, Helvetica, Arial, sans-serif;
	font-size: 18px;
	color: #313131;
	text-align:center;
	/*margin-top: 12px;*/
	line-height: 15px;
}
.ScheduleEntry{
	opacity: 0;
	transition: opacity 0.3s;
	width:100%;
	height: 100%;
	position:absolute;
	top:0px;
	left:0px;
}
.ScheduleEntry:hover{
	transition: opacity 0.3s;
	opacity: 1;
}
.EntryTime{
	font-family: Tunga, Helvetica, Arial, sans-serif;
	font-size: 12px;
	color: #313131;
	text-align:center;
}
.Today{
	border-left: 1px solid #3983b2;
	border-right: 1px solid #3983b2;
}
.Now{
	border-top: 1px solid #3983b2;
	border-bottom: 1px solid #3983b2;
}
.ScheduleEntryDelete{
	 right:5px; 
	 top:5px; 
	 position:absolute; 
	 cursor:pointer;
}
.ScheduleEntryAdd{
	right:26px; 
	top:5px; 
	position:absolute; 
	cursor:pointer;
}
.ScheduleEntryBG{
	padding: 10px;
	height: 100%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.tooltip {
	display:none;
	position:absolute;
    background:#f6f6f6;     /*To Change Background Color, 333 */
    width:350px;           /*To Change Width */
    border-radius:2px;
	
	-webkit-box-shadow: 0px 10px 34px 0px rgba(125,125,125,1);
	-moz-box-shadow: 0px 10px 34px 0px rgba(125,125,125,1);
	box-shadow: 0px 10px 34px 0px rgba(125,125,125,1);
	border-radius: 10px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	padding:10px;
	z-index: 500;
	
}
.imgtooltip{
    /*To Edit Image Inside ToolTip Add Style Here */
	width:100%;
}
.txttooltip{
    /*To Edit Text Inside ToolTip Add Style Here */
	color:#555;
}


