@charset "UTF-8";
/*----------RESET----------*/
* { 
	padding: 0; 
	margin: 0; 
}
/*----------DEFAULTS----------*/
html, body {
	background: #F7F7F7;
	margin: 0 auto;
	font-family: 'Ubuntu', sans-serif;
	font-size:100%;
	color:#000;
	font-weight:400;
}
a {
	text-decoration: none;
	color:#6FBE44;
	font-weight: 400;
}
a:hover {
	text-decoration: underline;
}
input[type=submit], input[type=button], input[type=text], input[type=password], select, fieldset, label, button, textarea {
	font-family: 'Ubuntu', sans-serif;
}
input[type=submit]:focus, input[type=button]:focus, input[type=text]:focus, input[type=password]:focus, select:focus, button:focus, textarea:focus {
	outline:none;
}
fieldset {
	border:none;
}
h1 {
}
h2 {
	font-size:1.4em;
	font-weight:700;
}
h3 {
	font-size:1.2em;
	font-weight:400;
}
h4 {
	font-size:1.1em;
	font-weight:700;
}
h5 {
	font-size:1.0em;
	font-weight:700;
	padding-top:10px;
	padding-bottom:5px;
}
h6 {
	font-size:0.9em;
	font-weight:400;
	padding-top:3px;
	padding-bottom:0px;
	color:#666;
}
p {
	font-size: 1.0em;
	padding:2px;
	font-weight:400;
}
table {
	border-collapse:separate;
	border-spacing:0;
	width:100%;
	position:relative;
}
table thead tr th:last-child, table thead tr th:nth-last-child(2) {
	z-index:1;
}
th, td {
	text-align:left;
	padding:4px;
	padding-left:6px;
}
th {
	font-weight:bold;
	background:#A7A9AB;
	padding:6px;
}
table tr:first-child th:first-child {
	-webkit-border-top-left-radius: 3px;
	-moz-border-topleft-radius: 3px;
	border-top-left-radius: 3px;
}
table tr:first-child th:last-child {
	-webkit-border-top-right-radius: 3px;
	-moz-border-topright-radius: 3px;
	border-top-right-radius: 3px;
}
table tr:last-child td:first-child {
	-webkit-border-bottom-left-radius: 3px;
	-moz-border-bottomleft-radius: 3px;
	border-bottom-left-radius: 3px;
}
table tr:last-child td:last-child {
	-webkit-border-bottom-right-radius: 3px;
	-moz-border-bottomright-radius: 3px;
	border-bottom-right-radius: 3px;
}
tbody tr:nth-child(odd) {
	background: #E4E4E4;
}
tbody tr:nth-child(even) {
	background: #F2F2F2;
}

.highlight-row {
	background: #e2f2d9 !important;
}
.highlight-table tbody tr:hover {
	background: #e2f2d9 !important;
}
/*----------NAVIGATION----------*/
/*see nav.css*/
/*----------STATUS----------*/
#status_bar {
	font-weight:300;
	font-size:0.8em;
	color:#A7A9AB;
	width:95%;
	max-width:1000px;
	margin:40px auto;
	min-height:30px;
	line-height:30px;
	margin-bottom:0;
}
#app_info_section {
	float:left;
}
#login_info_section {
	float:right;	
}
@media screen and (max-width: 800px) {
	#app_info_section {
		width:100%;
		display:none;
	}
	#login_info_section {
		width:100%;
		text-align: right;
	}
	#date_info {
		display:none;
	}
}
/*----------MESSAGES----------*/
#messages_container {
	font-size:0.875em;
	margin-top:3px;
	margin-bottom:3px;
}
.message-section {
	margin-left:32px;
	padding:7px;
	min-height:20px;
	padding-top:10px;
}
#validation_container {
	border:1px solid #EA0000;
	background:#FFEEEE;
	font-weight:700;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	padding:3px;
	margin-top:3px;
	margin-bottom:3px;
}
.validation-list {
	margin-left:40px;
	font-weight:300;
}
.error-container {
	border:1px solid #EA0000;
	background:#FFEEEE;
	font-weight:400;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	padding:3px;
	margin-top:3px;
	margin-bottom:3px;
}
.warning-container {
	border:1px solid #FFCC00;
	background:#FFFFCC;
	font-weight:400;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	padding:3px;
	margin-top:3px;
	margin-bottom:3px;
}
.info-container {
	border:1px solid #00CCFF;
	background:#D9F2FD;
	font-weight:400;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	padding:3px;
	margin-top:3px;
	margin-bottom:3px;
}
.success-container {
	border:1px solid #66CC33;
	background:#ECFFE2;
	font-weight:400;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	padding:3px;
	margin-top:3px;
	margin-bottom:3px;
}
.validation-icon {
	color: #cc0000;
	position:absolute;
}
.error-icon {
	color: #cc0000;
	position:absolute;
}
.warning-icon {
	color: #FFCC00;
	position:absolute;
}
.info-icon {
	color: #00CCFF;
	position:absolute;
}
.success-icon {
	color: #66CC33;
	position:absolute;
}
/*----------PAGE CONTENT----------*/
/*main elements*/
#page_content {
	min-height: calc(100vh - 120px); /*sticky footer: minus the nav bar, status bar, footer bar (and height of page should not be set) */
	width:95%;
	max-width:1000px;
	margin:0 auto;
}
.content-header {
	background:#FFF;
	-webkit-border-top-left-radius: 3px;
	-webkit-border-top-right-radius: 3px;
	-moz-border-radius-topleft: 3px;
	-moz-border-radius-topright: 3px;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	-moz-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.3);
	padding:10px;
	position: relative;
}
.content-body {
	background:#FFF;
	-moz-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.3);
	padding:10px;
	padding-top:0;
	position: relative;
}
.content-footer {
	background:#FFF;
	-webkit-border-bottom-right-radius: 3px;
	-webkit-border-bottom-left-radius: 3px;
	-moz-border-radius-bottomright: 3px;
	-moz-border-radius-bottomleft: 3px;
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px;
	-moz-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.3);
	padding:10px;
	text-align:center;
	margin-bottom:10px;
	position: relative;
}
.body-link {
	font-size:0.875em;
}
.flex-parent {
	display: flex;
	justify-content:space-around;
	align-items: center;
}
.flex-parent2 {
	display: flex;
	justify-content:space-between;
	align-items: center;
}
/*seating plan elements*/
.seating-container {
	background-size: 20px 20px;
    background-image: linear-gradient(to right, #e4e4e4 1px, transparent 1px), linear-gradient(to bottom, #e4e4e4 1px, transparent 1px);
	border:1px solid #e4e4e4;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background-position: top -1px left -1px;
	height:599px;
	position: relative;
	min-width:599px;
}
.seating-spot {
	position:absolute;
	width:60px;
	height:96px;
	background:#FFF;
	border:1px solid #CCC;
	cursor: move;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.seating-name {
	color:#4C4C4E;
	font-size:0.60em;
	text-align: center;
	position: absolute;
	bottom:0px;
}
.seating-image {
	width:50px;
	margin-top:5px;
	margin-left:5px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
/*index body elements*/
.index-body {
	min-height:410px;
	display:flex;
	flex-direction:row-reverse;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items:stretch;
	padding-bottom:50px;
	background-color:#FFF;
	background-image: url(../images/transparent_logo.svg);
  	background-size: 500px;
	background-repeat:no-repeat;
	background-position: 104% 110%;
}
.index-body-panel-info {
	width:25%;
	box-sizing:border-box;
	min-width:200px;
	flex-grow:1;
	padding-right:20px;
}
.index-body-panel-links {
	width:75%;
	box-sizing:border-box;
	flex-grow:1;
	align-self:center;
	display:flex;
	justify-content: center;
	flex-wrap:wrap;
}
.index-profile-image {
	width:80px;
	height:80px;
	-webkit-border-radius: 40px;
	-moz-border-radius: 40px;
	border-radius: 40px;
	position:absolute;
	overflow:hidden;
	bottom:-40px;
	left:30px;
	z-index: 1000;
}
.index-profile-image .show-image {
	position: absolute;
	left: -100%;
	right: -100%;
	top: -90%;
	bottom: -110%;
	margin: auto;
	width: 80px;
	height: auto;
}
.clipboard-link {
	width:140px;
	height:160px;
	border:4px solid #FFF;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	margin:15px;
	background:#b8dda5;
	transition:all 0.2s ease;
	color:#333;
	display:flex;
	justify-content: center;
	align-items: center;
	flex-grow:0;
	position:relative;
	padding-bottom:40px;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(167,169,171,0.69);
-moz-box-shadow: 0px 0px 5px 0px rgba(167,169,171,0.69);
box-shadow: 0px 0px 5px 0px rgba(167,169,171,0.69);
}
.clipboard-link:hover {
	-webkit-transform: scale(1.06);
	-ms-transform: scale(1.06);
	transform: scale(1.06);
	text-decoration:none;
}
.clipboard-link-text {
	text-align:center;	
}
.clipboard-link:after {
	width: 70px;
	height: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	position: absolute;
	content: "";
	top: -14px;
	left: 30px;
	background:#6FBE44;
	border:4px solid #FFF;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(167,169,171,0.69);
	-moz-box-shadow: 0px 0px 5px 0px rgba(167,169,171,0.69);
	box-shadow: 0px 0px 5px 0px rgba(167,169,171,0.69);
}
/*binder elements*/
.binder-year-container {
	border:1px solid #A7A9AB;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	padding:5px;
}
.binder-tab-container {
	position:relative;
	margin-top:10px;
}
.binder-year-tabs {
	max-width:100%;
	margin-right:170px;
}
.binder-year-select {
	width:110px !important;
	position:absolute;
	bottom:4px;
	right:50px;
}
.binder-year-container-class-info {
	position:relative;
	height:30px;
}
.delete-binder-year {
	position:absolute;
	right:-1px;
	top:0;
}
.binder-form-textarea {
	width:100%;
	border: 1px solid #ccc;
	box-shadow: inset 0 1px 2px #ddd;
	border-radius: 4px;
	box-sizing: border-box;
	padding: 0.5em;
	font-size:0.95em;
	resize:none;
}
.binder-form-textarea:hover {
	border:1px solid #b3b3b3;
	box-shadow: inset 0 1px 3px #ddd;
}
.binder-form-textarea:focus {
	border:1px solid #6FBE44;
	box-shadow: inset 0 1px 5px #ddd;
}
.binder-form-textarea:read-only {
	background:#F7F7F7;
	border: 1px solid #ccc;
	color:#323132;
}
.binder-form-textarea:disabled {
	background:#F7F7F7;
	border: 1px solid #ccc;
	color:#323132;
}
.binder-form-label {
	text-transform:uppercase;
	font-size:0.875em;
}
.binder-textarea-40 {
	height:40px;
}
.binder-textarea-50 {
	height:50px;
}
.binder-textarea-80 {
	height:80px;
}
.binder-textarea-90 {
	height:90px;
}
.binder-check-label {
	display:inline-block;
	width:50%;
	box-sizing:border-box;
	padding:2px;
}
.binder-form-select-narrow {
	width:70px;
	border: 1px solid #ccc;
	box-shadow: inset 0 1px 2px #ddd;
	border-radius: 4px;
	vertical-align: middle;
	box-sizing: border-box;
	-ms-appearance:none;
	-webkit-appearance:none;
    -moz-appearance:none;
    appearance:none; 
	padding: 0.2em;
	padding-left:0.5em;
	padding-right:17px;
	font-size:0.9em;
	background:#FFF;
	background-image: url("../images/drop_arrow2.svg");
	background-repeat: no-repeat;
	background-position: 87% center;
	background-size: 10px 5px;
	outline:0;
}
.binder-form-select-narrow:hover {
	border:1px solid #b3b3b3;
	box-shadow: inset 0 1px 3px #ddd;
}
.binder-form-select-narrow:focus {
	border:1px solid #6FBE44;
	box-shadow: inset 0 1px 5px #ddd, 0px 0px 2px #999;
}
.binder-form-select-narrow:disabled {
	background:#F2F2F2;
	border: 1px solid #ccc;
	color:#666;
	cursor:not-allowed;
}
.binder-image-container {
	width:70px;
	height:70px;
	-webkit-border-radius: 35px;
	-moz-border-radius: 35px;
	border-radius: 35px;
	position:absolute;
	overflow:hidden;
	top:18px;
	right:23px;
	z-index: 1000;
}
.binder-image {
	position: absolute;
	left: -100%;
	right: -100%;
	top: -90%;
	bottom: -110%;
	margin: auto;
	width: 70px;
	height: auto;
}
#binder_demographics {
	display:flex;
	justify-content: space-around;
	flex-direction: column;
	align-content: center;
}
/*binder tab-buttons*/
.tab-button {
	display: inline-block;
	cursor: pointer;
	padding: 7px 7px;
	border: 1px solid #dcdcdc;
	border-bottom:none;
	-webkit-border-top-left-radius: 3px;
	-webkit-border-top-right-radius: 3px;
	-moz-border-radius-topleft: 3px;
	-moz-border-radius-topright: 3px;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	color: #333;
	text-overflow: clip;
	text-shadow: 0px 1px #dcdcdc;
	background: #f5f5f5;
	background: -moz-linear-gradient(top, #f5f5f5, #f1f1f1);
	background: -webkit-linear-gradient(top, #f5f5f5, #f1f1f1);
	background: -o-linear-gradient(top, #f5f5f5, #f1f1f1);
	background: -ms-linear-gradient(top, #f5f5f5, #f1f1f1);
	background: linear-gradient(top, #f5f5f5, #f1f1f1);
	font-size: 0.875em;
	text-decoration:none;
	margin-left:5px;
}
.tab-button:hover {
	border: 1px solid #c6c6c6;
	border-bottom:none;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
	text-shadow: 0px 1px #c6c6c6;
	background: #f5f5f5;
	background: -moz-linear-gradient(top, #f5f5f5, #ebebeb);
	background: -webkit-linear-gradient(top, #f5f5f5, #ebebeb);
	background: -o-linear-gradient(top, #f5f5f5, #ebebeb);
	background: -ms-linear-gradient(top, #f5f5f5, #ebebeb);
	background: linear-gradient(top, #f5f5f5, #ebebeb);
	text-decoration:none;
}
.tab-button:active {
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
}
.tab-button:disabled {
	border: 1px solid #dcdcdc;
	border-bottom:none;
	text-shadow:none;
	background: #fff;
	cursor:not-allowed;
	opacity:0.5;
}
.tab-button-selected {
	/*colours from: http://www.colorhexa.com/6fbe44*/
	display: inline-block;
	cursor: pointer;
	padding: 7px;
	border: 1px solid #599a35;
	border-bottom:none;
	-webkit-border-top-left-radius: 3px;
	-webkit-border-top-right-radius: 3px;
	-moz-border-radius-topleft: 3px;
	-moz-border-radius-topright: 3px;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	color: #fff;
	text-overflow: clip;
	text-shadow: 0px 1px #599a35;
	background: #7ac353;
	background: -moz-linear-gradient(top, #7ac353, #66b13d);
	background: -webkit-linear-gradient(top, #7ac353, #66b13d);
	background: -o-linear-gradient(top, #7ac353, #66b13d);
	background: -ms-linear-gradient(top, #7ac353, #66b13d);
	background: linear-gradient(top, #7ac353, #66b13d);
	font-size: 0.875em;
	text-decoration:none;
	margin-left:5px;
}
.tab-button-selected:hover {
	border: 1px solid #4e872f;
	border-bottom:none;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
	text-shadow: 0px 1px #4e872f;
	background: #7ac353;
	background: -moz-linear-gradient(top, #7ac353, #5ea238);
	background: -webkit-linear-gradient(top, #7ac353, #5ea238);
	background: -o-linear-gradient(top, #7ac353, #5ea238);
	background: -ms-linear-gradient(top, #7ac353, #5ea238);
	background: linear-gradient(top, #7ac353, #5ea238);
	text-decoration:none;
}
.tab-button-selected:active {
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
}
.tab-button-selected:disabled {
	border: 1px solid #91cd70;
	border-bottom:none;
	text-shadow:none;
	background: #a7d78d;
	cursor:not-allowed;
}
.tab-icon-button {
	display: inline-block;
	cursor: pointer;
	padding:7px;
	padding-top:6px;
	padding-bottom:5px;
	border: 1px solid #dcdcdc;
	border-bottom:none;
	-webkit-border-top-left-radius: 3px;
	-webkit-border-top-right-radius: 3px;
	-moz-border-radius-topleft: 3px;
	-moz-border-radius-topright: 3px;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	color: #666;
	text-overflow: clip;
	text-shadow: 0px 1px #dcdcdc;
	background: #f5f5f5;
	background: -moz-linear-gradient(top, #f5f5f5, #f1f1f1);
	background: -webkit-linear-gradient(top, #f5f5f5, #f1f1f1);
	background: -o-linear-gradient(top, #f5f5f5, #f1f1f1);
	background: -ms-linear-gradient(top, #f5f5f5, #f1f1f1);
	background: linear-gradient(top, #f5f5f5, #f1f1f1);
	font-size: 0.875em;
	text-decoration:none;
	margin-left:5px;
	margin-right:5px;
	position:absolute;
	right:0;
	bottom:0;
}
.tab-icon-button:hover {
	border: 1px solid #c6c6c6;
	border-bottom:none;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
	text-shadow: 0px 1px #c6c6c6;
	background: #f5f5f5;
	background: -moz-linear-gradient(top, #f5f5f5, #ebebeb);
	background: -webkit-linear-gradient(top, #f5f5f5, #ebebeb);
	background: -o-linear-gradient(top, #f5f5f5, #ebebeb);
	background: -ms-linear-gradient(top, #f5f5f5, #ebebeb);
	background: linear-gradient(top, #f5f5f5, #ebebeb);
	text-decoration:none;
}
.tab-icon-button:active {
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
}
.tab-icon-button:disabled {
	border: 1px solid #dcdcdc;
	border-bottom:none;
	text-shadow:none;
	background: #fff;
	cursor:not-allowed;
	opacity:0.5;
}
/*binder uploads*/
.upload-file-button {
	display: inline-block;
	cursor: pointer;
	padding: 7px 7px;
	border: 1px solid #dcdcdc;
	-webkit-border-top-left-radius: 3px;
	-webkit-border-bottom-left-radius: 3px;
	-moz-border-radius-topleft: 3px;
	-moz-border-radius-bottomleft: 3px;
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
	color: #333;
	text-overflow: clip;
	text-shadow: 0px 1px #dcdcdc;
	background: #f5f5f5;
	background: -moz-linear-gradient(top, #f5f5f5, #f1f1f1);
	background: -webkit-linear-gradient(top, #f5f5f5, #f1f1f1);
	background: -o-linear-gradient(top, #f5f5f5, #f1f1f1);
	background: -ms-linear-gradient(top, #f5f5f5, #f1f1f1);
	background: linear-gradient(top, #f5f5f5, #f1f1f1);
	font-size: 0.875em;
	text-decoration:none;
}
.upload-file-button:hover {
	border: 1px solid #c6c6c6;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
	text-shadow: 0px 1px #c6c6c6;
	background: #f5f5f5;
	background: -moz-linear-gradient(top, #f5f5f5, #ebebeb);
	background: -webkit-linear-gradient(top, #f5f5f5, #ebebeb);
	background: -o-linear-gradient(top, #f5f5f5, #ebebeb);
	background: -ms-linear-gradient(top, #f5f5f5, #ebebeb);
	background: linear-gradient(top, #f5f5f5, #ebebeb);
	text-decoration:none;
}
.upload-file-button:active {
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
}
.upload-file-button:disabled {
	border: 1px solid #dcdcdc;
	text-shadow:none;
	background: #fff;
	cursor:not-allowed;
	opacity:0.5;
}
.upload-file-delete-button {
	display: inline-block;
	cursor: pointer;
	padding: 7px 7px;
	border: 1px solid #dcdcdc;
	border-left:none;
	-webkit-border-top-right-radius: 3px;
	-webkit-border-bottom-right-radius: 3px;
	-moz-border-radius-topright: 3px;
	-moz-border-radius-bottomright: 3px;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
	color: #666;
	text-overflow: clip;
	text-shadow: 0px 1px #dcdcdc;
	background: #f5f5f5;
	background: -moz-linear-gradient(top, #f5f5f5, #f1f1f1);
	background: -webkit-linear-gradient(top, #f5f5f5, #f1f1f1);
	background: -o-linear-gradient(top, #f5f5f5, #f1f1f1);
	background: -ms-linear-gradient(top, #f5f5f5, #f1f1f1);
	background: linear-gradient(top, #f5f5f5, #f1f1f1);
	font-size: 0.875em;
	text-decoration:none;
}
.upload-file-delete-button:hover {
	border: 1px solid #c6c6c6;
	border-left:none;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
	text-shadow: 0px 1px #c6c6c6;
	background: #f5f5f5;
	background: -moz-linear-gradient(top, #f5f5f5, #ebebeb);
	background: -webkit-linear-gradient(top, #f5f5f5, #ebebeb);
	background: -o-linear-gradient(top, #f5f5f5, #ebebeb);
	background: -ms-linear-gradient(top, #f5f5f5, #ebebeb);
	background: linear-gradient(top, #f5f5f5, #ebebeb);
	text-decoration:none;
}
.upload-file-delete-button:active {
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
}
.upload-file-delete-button:disabled {
	border: 1px solid #dcdcdc;
	border-left:none;
	text-shadow:none;
	background: #f5f5f5;
	cursor:not-allowed;
	opacity:0.65;
}
.upload-file-icon {
	padding-right:3px;
	border-right: 1px solid #666;
}
.upload-file-label {
	padding-left:3px;
}
/*----------FOOTER----------*/
#footer_bar {
	margin: 0 auto;
	font-weight:300;
	font-size:0.8em;
	color:#666;
	width:100%;
	text-align:center;
	height:39px;
	line-height:39px;
	border-top:1px solid #e4e4e4;
	background:#F2F2F2;
}
/*----------POPUPS/LOADING----------*/
/*main popups*/
.flex-popup-container {
    min-height:100px;
	width:95%;
	max-width:400px;
	position:relative;
}
.flex-popup-container-wide {
    min-height:100px;
	width:95%;
	max-width:850px;
	position:relative;
}
.flex-popup-blanket {
	background-color:rgba(0,0,0,0.65);
	position:fixed;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	display:flex;
	justify-content:space-around;
	align-items: center;
}
#loading_popup {
	visibility:hidden;
	z-index: 10005;
}
#loading_blanket {
	visibility:hidden;
	z-index:10004;
}
#warning_popup {
	visibility:hidden;
	z-index: 10001
}
#warning_blanket {
	visibility:hidden;
	z-index: 10000
}
#expiry_popup {
	visibility:hidden;
	z-index: 10003
}
#expiry_blanket {
	visibility:hidden;
	z-index: 10002
}
#select_popup {
	z-index: 10001
}
#select_blanket {
	z-index: 10000
}
#select_popup2 {
	visibility:hidden;
	z-index: 10001
}
#select_blanket2 {
	visibility:hidden;
	z-index: 10000
}
#select_popup3 {
	visibility:hidden;
	z-index: 10001
}
#select_blanket3 {
	visibility:hidden;
	z-index: 10000
}
#select_popup4 {
	visibility:hidden;
	z-index: 10001
}
#select_blanket4 {
	visibility:hidden;
	z-index: 10000
}
#select_popup5 {
	visibility:hidden;
	z-index: 10001
}
#select_blanket5 {
	visibility:hidden;
	z-index: 10000
}
#select_popup6 {
	visibility:hidden;
	z-index: 10001
}
#select_blanket6 {
	visibility:hidden;
	z-index: 10000
}
#select_popup7 {
	visibility:hidden;
	z-index: 10001
}
#select_blanket7 {
	visibility:hidden;
	z-index: 10000
}
.close-link {
	position:absolute;
	top:4px;
	right:4px;
}
/*student-card-popups, previous submission overwrite warning popups,tooltips*/
.submission-warning-container {
	padding-left:5px;
	width:20px;
	display:inline-block;
	vertical-align:middle;
}
.submission-warning-container2 {
	padding-right:5px;
	width:20px;
	display:inline-block;
	vertical-align:middle;
}
.tooltip {
	color:#FFCC00;
	text-shadow:0px 0px 4px #333;
	position: relative;
	cursor:pointer;
}
.tooltip .tooltiptext {
    visibility: hidden;
    width: 130px;
    background-color: #FFF;
	color:#000;
    text-align: center;
    padding: 5px 0;
    border-radius: 3px;
 	box-shadow:0px 0px 50px #666;
	text-shadow:none;
    position: absolute;
    z-index: 1;
	bottom:0px;
	right:85px;
}
.tooltip .tooltiptext::after {
    content: " ";
    position: absolute;
    top: 75%; /* At the bottom of the tooltip */
    left: 100%;
    margin-right: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #FFF;
}
.tooltip:hover .tooltiptext {
    visibility: visible;
}
.tooltip .tooltiptitle {
	font-size:0.9em;
	color:#666;
	padding:0.2em;
}
.tooltip2 {
	color:000;
	position: relative;
	cursor:pointer;
}
.tooltip2 .tooltiptext2 {
    visibility: hidden;
    width: 130px;
    background-color: #FFF;
	color:#000;
    text-align: center;
    padding: 5px 0;
    border-radius: 3px;
 	box-shadow:0px 0px 50px #666;
	text-shadow:none;
    position: absolute;
    z-index: 1;
	top:-20px;
	right:85px;
}
.tooltip2 .tooltiptext2::after {
    content: " ";
    position: absolute;
    top: 15%; /* At the bottom of the tooltip */
    left: 100%;
    margin-right: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #FFF;
}
.tooltip2:hover .tooltiptext2 {
    visibility: visible;
}
.tooltip2 .tooltiptext2 {
	font-size:0.8em;
	color:#666;
	padding:0.2em;
	font-weight:300;
}
.tooltip3 {
	color:#FFCC00;
	text-shadow:0px 0px 4px #333;
	position: relative;
	cursor:pointer;
}
.tooltip3 .tooltiptext3 {
    visibility: hidden;
    width: 220px;
    background-color: #FFF;
	color:#000;
    text-align: left;
    padding: 5px 0;
    border-radius: 3px;
 	box-shadow:0px 0px 50px #666;
	text-shadow:none;
    position: absolute;
    z-index: 1;
	top:-8px;
	right:120px;
}
.tooltip3 .tooltiptext3::after {
    content: " ";
    position: absolute;
    top: 15%; /* At the bottom of the tooltip */
    left: 100%;
    margin-right: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #FFF;
}
.tooltip3:hover .tooltiptext3 {
    visibility: visible;
}
.tooltip3 .tooltiptext3 {
	font-size:0.875em;
	color:#666;
	padding:0.5em;
	font-weight:300;
}
.popup-card-container {
	position:absolute;
}
.popup-card {
	position:fixed;
	top:50px;
	right:50px;
	visibility:hidden;
	width:360px;
	min-height:120px;
	background-color: #FFF;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	box-shadow:0px 0px 50px #666;
	padding:5px;
	z-index:800;
}
.popup-card-title {
	font-weight:700px;
	text-align:center;
	font-size:0.9em;
	width:100%;
	display:block;
}
.popup-image {
	max-width:100%;
	max-height:100%;
}
.popup-card-image-container {
	display:block;
	float:left;
	height:95px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	overflow:hidden;
	margin:5px;
}
.popup-card-info-container {
	display:block;
	float:left;
	min-height:95px;
	font-size:0.8em;
	color:#666;
	width:270px;
	margin-top:5px;
}
.popup-info-entry-title {
	display:inline-block;
	width:95px;
	font-weight:400;
}
.popup-info-entry-content {
	display:inline-block;
	width:140px;
	font-weight:300;
}
.popup-entry-separator {
	width:100%;
	height:0px;
	margin-top:2px;
	margin-bottom:2px;
}
/*----------OBJECTS----------*/
.drop-arrow {
	position: absolute;
	top: 50%;
	margin-top: -3px;
	height:6px;
	left: 50%;
	margin-left: -7px;
	width: 14px;
}
.loading-spinner {
    border: 4px solid #CCC;
    border-top: 4px solid #6FBE44; /* Blue */
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 2s linear infinite;
	margin: 0 auto;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.splash-logo {
	width:100%;
}
.switch {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 20px;
}
.switch input {
	display:none;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #999;
  -webkit-transition: .4s;
  transition: .4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}
input:checked + .slider {
  background-color: #6FBE44;
}
input:focus + .slider {
  box-shadow: 0 0 1px #6FBE44;
}
input:checked + .slider:before {
  -webkit-transform: translateX(15px);
  -ms-transform: translateX(15px);
  transform: translateX(15px);
}
.slider.round {
  border-radius: 5px;
}
.slider.round:before {
  border-radius: 4px;
}
.slider-label{
	width:110px;
	padding-left:45px;
	font-size:0.875em;
	padding-top:2px;
}
/*----------CLEARFIX----------*/
.clearfix:before, .clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}
/*----------COLUMN CONTROLS---------*/
.column-container {
	-webkit-columns:400px 2;
	-webkit-column-rule:1px solid #e4e4e4;
	columns: 400px 2;
	column-rule:1px solid #e4e4e4;
	padding-top: 10px;
	padding-bottom: 10px;
}
.non-column-container {
	padding-top: 10px;
	padding-bottom: 10px;
}
.column-item {
	break-inside:avoid;
	-webkit-column-break-inside:avoid;
}
.column-header {
	-webkit-column-span:all;
	column-span:all;
}
.column-item-span {
	max-width:500px;
	margin:0 auto;
}
.column-item-span-wide {
	max-width:800px;
	margin:0 auto;
}
/*----------FORM CONTROLS----------*/
/*buttons*/
.primary-button {
	/*colours from: http://www.colorhexa.com/6fbe44*/
	display: inline-block;
	cursor: pointer;
	padding: 7px 20px;
	border: 1px solid #599a35;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	color: #fff;
	text-overflow: clip;
	text-shadow: 0px 1px #599a35;
	background: #7ac353;
	background: -moz-linear-gradient(top, #7ac353, #66b13d);
	background: -webkit-linear-gradient(top, #7ac353, #66b13d);
	background: -o-linear-gradient(top, #7ac353, #66b13d);
	background: -ms-linear-gradient(top, #7ac353, #66b13d);
	background: linear-gradient(top, #7ac353, #66b13d);
	font-size: 0.875em;
	text-decoration:none;
}
.primary-button:hover {
	border: 1px solid #4e872f;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
	text-shadow: 0px 1px #4e872f;
	background: #7ac353;
	background: -moz-linear-gradient(top, #7ac353, #5ea238);
	background: -webkit-linear-gradient(top, #7ac353, #5ea238);
	background: -o-linear-gradient(top, #7ac353, #5ea238);
	background: -ms-linear-gradient(top, #7ac353, #5ea238);
	background: linear-gradient(top, #7ac353, #5ea238);
	text-decoration:none;
}
.primary-button:active {
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
}
.primary-button:disabled {
	border: 1px solid #91cd70;
	text-shadow:none;
	background: #a7d78d;
	cursor:not-allowed;
}
.primary-button-middle {
	/*colours from: http://www.colorhexa.com/6fbe44*/
	display: inline-block;
	cursor: pointer;
	padding: 7px 20px;
	border-top: 1px solid #599a35;
	border-bottom: 1px solid #599a35;
	border-left: 1px solid #599a35;
	border-right:1px solid #599a35;
	color: #fff;
	text-overflow: clip;
	text-shadow: 0px 1px #599a35;
	background: #7ac353;
	background: -moz-linear-gradient(top, #7ac353, #66b13d);
	background: -webkit-linear-gradient(top, #7ac353, #66b13d);
	background: -o-linear-gradient(top, #7ac353, #66b13d);
	background: -ms-linear-gradient(top, #7ac353, #66b13d);
	background: linear-gradient(top, #7ac353, #66b13d);
	font-size: 0.875em;
	text-decoration:none;
}
.primary-button-middle:hover {
	border: 1px solid #4e872f;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
	text-shadow: 0px 1px #4e872f;
	background: #7ac353;
	background: -moz-linear-gradient(top, #7ac353, #5ea238);
	background: -webkit-linear-gradient(top, #7ac353, #5ea238);
	background: -o-linear-gradient(top, #7ac353, #5ea238);
	background: -ms-linear-gradient(top, #7ac353, #5ea238);
	background: linear-gradient(top, #7ac353, #5ea238);
	text-decoration:none;
}
.primary-button-middle:active {
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
}
.primary-button-middle:disabled {
	border: 1px solid #91cd70;
	text-shadow:none;
	background: #a7d78d;
	cursor:not-allowed;
}
.primary-button-prev {
	/*colours from: http://www.colorhexa.com/6fbe44*/
	display: inline-block;
	cursor: pointer;
	padding: 7px 20px;
	border-top: 1px solid #599a35;
	border-bottom: 1px solid #599a35;
	border-left: 1px solid #599a35;
	border-right:none;
	color: #fff;
	text-overflow: clip;
	text-shadow: 0px 1px #599a35;
	background: #7ac353;
	background: -moz-linear-gradient(top, #7ac353, #66b13d);
	background: -webkit-linear-gradient(top, #7ac353, #66b13d);
	background: -o-linear-gradient(top, #7ac353, #66b13d);
	background: -ms-linear-gradient(top, #7ac353, #66b13d);
	background: linear-gradient(top, #7ac353, #66b13d);
	font-size: 0.875em;
	text-decoration:none;
	-webkit-border-top-left-radius: 3px;
	-webkit-border-bottom-left-radius: 3px;
	-moz-border-radius-topleft: 3px;
	-moz-border-radius-bottomleft: 3px;
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
	margin:0;
}
.primary-button-prev:hover {
	border: 1px solid #4e872f;
	border-right: none;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
	text-shadow: 0px 1px #4e872f;
	background: #7ac353;
	background: -moz-linear-gradient(top, #7ac353, #5ea238);
	background: -webkit-linear-gradient(top, #7ac353, #5ea238);
	background: -o-linear-gradient(top, #7ac353, #5ea238);
	background: -ms-linear-gradient(top, #7ac353, #5ea238);
	background: linear-gradient(top, #7ac353, #5ea238);
	text-decoration:none;
}
.primary-button-prev:active {
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
}
.primary-button-prev:disabled {
	border: 1px solid #91cd70;
	text-shadow:none;
	background: #a7d78d;
	cursor:not-allowed;
}
.primary-button-next {
	/*colours from: http://www.colorhexa.com/6fbe44*/
	display: inline-block;
	cursor: pointer;
	padding: 7px 20px;
	border-top: 1px solid #599a35;
	border-bottom: 1px solid #599a35;
	border-right: 1px solid #599a35;
	border-left:none;
	color: #fff;
	text-overflow: clip;
	text-shadow: 0px 1px #599a35;
	background: #7ac353;
	background: -moz-linear-gradient(top, #7ac353, #66b13d);
	background: -webkit-linear-gradient(top, #7ac353, #66b13d);
	background: -o-linear-gradient(top, #7ac353, #66b13d);
	background: -ms-linear-gradient(top, #7ac353, #66b13d);
	background: linear-gradient(top, #7ac353, #66b13d);
	font-size: 0.875em;
	text-decoration:none;
	-webkit-border-top-right-radius: 3px;
	-webkit-border-bottom-right-radius: 3px;
	-moz-border-radius-topright: 3px;
	-moz-border-radius-bottomright: 3px;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
	margin:0;
}
.primary-button-next:hover {
	border: 1px solid #4e872f;
	border-left: none;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
	text-shadow: 0px 1px #4e872f;
	background: #7ac353;
	background: -moz-linear-gradient(top, #7ac353, #5ea238);
	background: -webkit-linear-gradient(top, #7ac353, #5ea238);
	background: -o-linear-gradient(top, #7ac353, #5ea238);
	background: -ms-linear-gradient(top, #7ac353, #5ea238);
	background: linear-gradient(top, #7ac353, #5ea238);
	text-decoration:none;
}
.primary-button-next:active {
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
}
.primary-button-next:disabled {
	border: 1px solid #91cd70;
	text-shadow:none;
	background: #a7d78d;
	cursor:not-allowed;
}
.secondary-button {
	display: inline-block;
	cursor: pointer;
	padding: 7px 20px;
	border: 1px solid #dcdcdc;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	color: #333;
	text-overflow: clip;
	text-shadow: 0px 1px #dcdcdc;
	background: #f5f5f5;
	background: -moz-linear-gradient(top, #f5f5f5, #f1f1f1);
	background: -webkit-linear-gradient(top, #f5f5f5, #f1f1f1);
	background: -o-linear-gradient(top, #f5f5f5, #f1f1f1);
	background: -ms-linear-gradient(top, #f5f5f5, #f1f1f1);
	background: linear-gradient(top, #f5f5f5, #f1f1f1);
	font-size: 0.875em;
	text-decoration:none;
}
.secondary-button:hover {
	border: 1px solid #c6c6c6;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
	text-shadow: 0px 1px #c6c6c6;
	background: #f5f5f5;
	background: -moz-linear-gradient(top, #f5f5f5, #ebebeb);
	background: -webkit-linear-gradient(top, #f5f5f5, #ebebeb);
	background: -o-linear-gradient(top, #f5f5f5, #ebebeb);
	background: -ms-linear-gradient(top, #f5f5f5, #ebebeb);
	background: linear-gradient(top, #f5f5f5, #ebebeb);
	text-decoration:none;
}
.secondary-button:active {
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
}
.secondary-button:disabled {
	border: 1px solid #dcdcdc;
	text-shadow:none;
	background: #fff;
	cursor:not-allowed;
	opacity:0.5;
}
.submit-50 {
	width:50%;
}
.submit-130px {
	width:130px;
	text-align:center;
	box-sizing:border-box;
}
.submit-150px {
	width:150px;
	text-align:center;
	box-sizing:border-box;
}
.icon-button {
	display: inline-block;
	cursor: pointer;
	padding: 4px 7px;
	border: 1px solid #dcdcdc;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	color: #666;
	text-overflow: clip;
	text-shadow: 0px 1px #dcdcdc;
	background: #f5f5f5;
	background: -moz-linear-gradient(top, #f5f5f5, #f1f1f1);
	background: -webkit-linear-gradient(top, #f5f5f5, #f1f1f1);
	background: -o-linear-gradient(top, #f5f5f5, #f1f1f1);
	background: -ms-linear-gradient(top, #f5f5f5, #f1f1f1);
	background: linear-gradient(top, #f5f5f5, #f1f1f1);
	font-size: 0.875em;
	text-decoration:none;
}
.icon-button:hover {
	border: 1px solid #c6c6c6;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
	text-shadow: 0px 1px #c6c6c6;
	background: #f5f5f5;
	background: -moz-linear-gradient(top, #f5f5f5, #ebebeb);
	background: -webkit-linear-gradient(top, #f5f5f5, #ebebeb);
	background: -o-linear-gradient(top, #f5f5f5, #ebebeb);
	background: -ms-linear-gradient(top, #f5f5f5, #ebebeb);
	background: linear-gradient(top, #f5f5f5, #ebebeb);
	text-decoration:none;
}
.icon-button:active {
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
}
.icon-button:disabled {
	border: 1px solid #dcdcdc;
	text-shadow:none;
	background: #fff;
	cursor:not-allowed;
	opacity:0.5;
}
/*fields & labels*/
.primary-form-field {
	position:relative;
	width:95%;
	margin:0px auto 10px auto;
}
.primary-form-label {
	text-transform:uppercase;
	width:95%;
	display:block;
	font-size:0.875em;
	margin:0 auto 2px auto;
}
.primary-form-sub-label {
	width:95%;
	display:block;
	font-size:0.7em;
	margin:0 auto 2px auto;
	color: #ACACAC;
}
/*textboxes, selects, fieldsets, options, icons*/
.primary-form-textbox {
	width:100%;
	border: 1px solid #ccc;
	box-shadow: inset 0 1px 2px #ddd;
	border-radius: 4px;
	vertical-align: middle;
	box-sizing: border-box;
	padding: 0.5em;
	font-size:0.95em;
}
.primary-form-textbox:hover {
	border:1px solid #b3b3b3;
	box-shadow: inset 0 1px 3px #ddd;
}
.primary-form-textbox:focus {
	border:1px solid #6FBE44;
	box-shadow: inset 0 1px 5px #ddd;
}
.primary-form-textbox:read-only {
	background:#F2F2F2;
	border: 1px solid #ccc;
	color:#666;
	cursor:not-allowed;
}
.primary-form-textarea {
	width:100%;
	border: 1px solid #ccc;
	box-shadow: inset 0 1px 2px #ddd;
	border-radius: 4px;
	box-sizing: border-box;
	padding: 0.5em;
	font-size:0.95em;
	resize:none;
	height:100px;
}
.primary-form-textarea:hover {
	border:1px solid #b3b3b3;
	box-shadow: inset 0 1px 3px #ddd;
}
.primary-form-textarea:focus {
	border:1px solid #6FBE44;
	box-shadow: inset 0 1px 5px #ddd;
}
.primary-form-textarea:read-only {
	background:#F2F2F2;
	border: 1px solid #ccc;
	color:#666;
	cursor:not-allowed;
}
.primary-form-fieldset {
	width:100%;
	border: 1px solid #ccc;
	box-shadow: inset 0 1px 2px #ddd;
	border-radius: 4px;
	vertical-align: middle;
	box-sizing: border-box;
	padding: 0.5em;
	font-size:0.95em;
}
.primary-form-fieldset:hover {
	border:1px solid #b3b3b3;
	box-shadow: inset 0 1px 3px #ddd;
}
.primary-form-fieldset:focus {
	border:1px solid #6FBE44;
	box-shadow: inset 0 1px 5px #ddd;
}
.primary-form-fieldset2 {
	width:100%;
	border: 1px solid #ccc;
	border-radius: 4px;
	vertical-align: middle;
	box-sizing: border-box;
	padding: 0.5em;
	font-size:0.95em;
}
.primary-form-fieldset-disabled {
	width:100%;
	border-radius: 4px;
	vertical-align: middle;
	box-sizing: border-box;
	padding: 0.5em;
	font-size:0.95em;
	background:#F2F2F2;
	border: 1px solid #ccc;
	color:#666;
	cursor:not-allowed;
	box-shadow: inset 0 1px 2px #ddd;
}
.primary-form-option {
	padding-right:10px;
}
.primary-form-select {
	width:100%;
	border: 1px solid #ccc;
	box-shadow: inset 0 1px 2px #ddd;
	border-radius: 4px;
	vertical-align: middle;
	box-sizing: border-box;
	-webkit-appearance:none;
    -moz-appearance:none;
    appearance:none; 
	padding: 0.5em;
	font-size:0.95em;
	background:#FFF;
	background-image: url("../images/drop_arrow2.svg");
	background-repeat: no-repeat;
	background-position: 97% center;
	background-size: 14px 6px;
}
.primary-form-select:hover {
	border:1px solid #b3b3b3;
	box-shadow: inset 0 1px 3px #ddd;
}
.primary-form-select:focus {
	border:1px solid #6FBE44;
	box-shadow: inset 0 1px 5px #ddd;
}
.primary-form-select:disabled {
	background:#F2F2F2;
	border: 1px solid #ccc;
	color:#666;
	cursor:not-allowed;
}
.has-left-icon {
	padding-left:35px;
}
.textbox-left-icon {
	position:absolute;
	top:5px;
	left:5px;
	color:#999;
}
.single-char-textbox {
	max-width:30px;
	text-align:center;
}
/*table form controls*/
.table-form-textbox-narrow {
	width:100%;
	max-width:45px;
	min-width:30px;
	border: 1px solid #ccc;
	box-shadow: inset 0 1px 2px #ddd;
	border-radius: 3px;
	vertical-align: middle;
	box-sizing: border-box;
	padding: 0.2em;
	font-size:0.9em;
	text-align:center;
}
.table-form-textbox-narrow:hover {
	border:1px solid #b3b3b3;
	box-shadow: inset 0 1px 3px #ddd;
}
.table-form-textbox-narrow:focus {
	border:1px solid #6FBE44;
	box-shadow: inset 0 1px 5px #ddd;
}
.table-form-textbox-narrow:read-only {
	background:#F2F2F2;
	border: 1px solid #ccc;
	color:#666;
	cursor:not-allowed;
}
.table-form-textbox {
	width:100%;
	max-width:200px;
	min-width:150px;
	border: 1px solid #ccc;
	box-shadow: inset 0 1px 2px #ddd;
	border-radius: 3px;
	vertical-align: middle;
	box-sizing: border-box;
	padding: 0.2em;
	padding-left:0.5em;
	font-size:0.9em;
}
.table-form-textbox:hover {
	border:1px solid #b3b3b3;
	box-shadow: inset 0 1px 3px #ddd;
}
.table-form-textbox:focus {
	border:1px solid #6FBE44;
	box-shadow: inset 0 1px 5px #ddd;
}
.table-form-textbox:read-only {
	background:#F2F2F2;
	border: 1px solid #ccc;
	color:#666;
	cursor:not-allowed;
}
.table-form-select {
	width:100%;
	max-width:200px;
	min-width:150px;
	border: 1px solid #ccc;
	box-shadow: inset 0 1px 2px #ddd;
	border-radius: 4px;
	vertical-align: middle;
	box-sizing: border-box;
	-webkit-appearance:none;
    -moz-appearance:none;
    appearance:none; 
	padding: 0.2em;
	padding-left:0.5em;
	padding-right:20px;
	font-size:0.9em;
	background:#FFF;
	background-image: url("../images/drop_arrow2.svg");
	background-repeat: no-repeat;
	background-position: 95% center;
	background-size: 10px 5px;
	outline:0;
}
.table-form-select:hover {
	border:1px solid #b3b3b3;
	box-shadow: inset 0 1px 3px #ddd;
}
.table-form-select:focus {
	border:1px solid #6FBE44;
	box-shadow: inset 0 1px 5px #ddd;
}
.table-form-select:disabled {
	background:#F2F2F2;
	border: 1px solid #ccc;
	color:#666;
	cursor:not-allowed;
}
.table-form-textarea {
	width:100%;
	max-width:300px;
	min-width:200px;
	border: 1px solid #ccc;
	box-shadow: inset 0 1px 2px #ddd;
	border-radius: 3px;
	vertical-align: middle;
	box-sizing: border-box;
	padding: 0.2em;
	padding-left:0.5em;
	font-size:0.9em;
	resize:none;
	height:2.7em;
}
.table-form-textarea:hover {
	border:1px solid #b3b3b3;
	box-shadow: inset 0 1px 3px #ddd;
}
.table-form-textarea:focus {
	border:1px solid #6FBE44;
	box-shadow: inset 0 1px 5px #ddd;
}
.table-form-textarea:read-only {
	background:#F2F2F2;
	border: 1px solid #ccc;
	color:#666;
	cursor:not-allowed;
}
.table-form-textarea-edit {
	width:100%;
	border: 1px solid transparent;
	/*box-shadow: inset 0 1px 2px #ddd;*/
	border-radius: 4px;
	box-sizing: border-box;
	padding: 0.5em;
	font-size:0.95em;
	resize: none;
	background: none;
}
.table-form-textarea-edit:hover {
	border:1px solid #b3b3b3;
	box-shadow: inset 0 1px 3px #ddd;
}
.table-form-textarea-edit:focus {
	background: #FFF;
	border:1px solid #6FBE44;
	box-shadow: inset 0 1px 5px #ddd;
}
.table-form-textarea-edit:read-only {
	background:#F2F2F2;
	border: 1px solid #ccc;
	color:#666;
	cursor:not-allowed;
}
/*grade form controls*/
.grade-form-textbox {
	width:50px;
	border: 1px solid #ccc;
	box-shadow: inset 0 1px 2px #ddd;
	border-radius: 3px;
	vertical-align: middle;
	box-sizing: border-box;
	padding: 0.2em;
	text-align:center;
	font-size:0.9em;
}
.grade-form-textbox:hover {
	border:1px solid #b3b3b3;
	box-shadow: inset 0 1px 3px #ddd;
}
.grade-form-textbox:focus {
	border:1px solid #6FBE44;
	box-shadow: inset 0 1px 5px #ddd, 0px 0px 2px #999;
}
.grade-form-textbox:read-only {
	background:#F2F2F2;
	border: 1px solid #ccc;
	color:#666;
	cursor:not-allowed;
}
.grade-form-textbox-wide {
	width:80px;
	border: 1px solid #ccc;
	box-shadow: inset 0 1px 2px #ddd;
	border-radius: 3px;
	vertical-align: middle;
	box-sizing: border-box;
	padding: 0.2em;
	text-align:center;
	font-size:0.9em;
}
.grade-form-textbox-wide:hover {
	border:1px solid #b3b3b3;
	box-shadow: inset 0 1px 3px #ddd;
}
.grade-form-textbox-wide:focus {
	border:1px solid #6FBE44;
	box-shadow: inset 0 1px 5px #ddd, 0px 0px 2px #999;
}
.grade-form-textbox-wide:read-only {
	background:#F2F2F2;
	border: 1px solid #ccc;
	color:#666;
	cursor:not-allowed;
}
.grade-form-textbox-narrow {
	width:30px;
	border: 1px solid #ccc;
	box-shadow: inset 0 1px 2px #ddd;
	border-radius: 3px;
	vertical-align: middle;
	box-sizing: border-box;
	padding: 0.2em;
	text-align:center;
	font-size:0.9em;
}
.grade-form-textbox-narrow:hover {
	border:1px solid #b3b3b3;
	box-shadow: inset 0 1px 3px #ddd;
}
.grade-form-textbox-narrow:focus {
	border:1px solid #6FBE44;
	box-shadow: inset 0 1px 5px #ddd, 0px 0px 2px #999;
}
.grade-form-textbox-narrow:read-only {
	background:#F2F2F2;
	border: 1px solid #ccc;
	color:#666;
	cursor:not-allowed;
}
.grade-form-textbox-narrow-label {
	font-size:0.9em;
}
.grade-form-label {
	font-size:0.9em;
}
.grade-form-sublabel {
	font-size:0.9em;
	color:#666;
}
.grade-form-select {
	width:50px;
	border: 1px solid #ccc;
	box-shadow: inset 0 1px 2px #ddd;
	border-radius: 4px;
	vertical-align: middle;
	box-sizing: border-box;
	-ms-appearance:none;
	-webkit-appearance:none;
    -moz-appearance:none;
    appearance:none; 
	padding: 0.2em;
	padding-left:0.5em;
	padding-right:17px;
	font-size:0.9em;
	background:#FFF;
	background-image: url("../images/drop_arrow2.svg");
	background-repeat: no-repeat;
	background-position: 87% center;
	background-size: 10px 5px;
	outline:0;
}
.grade-form-select:hover {
	border:1px solid #b3b3b3;
	box-shadow: inset 0 1px 3px #ddd;
}
.grade-form-select:focus {
	border:1px solid #6FBE44;
	box-shadow: inset 0 1px 5px #ddd, 0px 0px 2px #999;
}
.grade-form-select:disabled {
	background:#F2F2F2;
	border: 1px solid #ccc;
	color:#666;
	cursor:not-allowed;
}
.grade-form-textarea {
	width:100%;
	border: 1px solid #ccc;
	box-shadow: inset 0 1px 2px #ddd;
	border-radius: 4px;
	vertical-align: middle;
	box-sizing: border-box;
	padding: 0.5em;
	font-size:0.95em;
	resize:none;
}
.grade-form-textarea:hover {
	border:1px solid #b3b3b3;
	box-shadow: inset 0 1px 3px #ddd;
}
.grade-form-textarea:focus {
	border:1px solid #6FBE44;
	box-shadow: inset 0 1px 5px #ddd;
}
.grade-form-textarea:read-only {
	background:#F2F2F2;
	border: 1px solid #ccc;
	color:#666;
	cursor:not-allowed;
}
.textarea-tall {
	min-height:100px;
}
.textarea-verytall {
	min-height:200px;
}
.textarea-veryverytall {
	min-height:400px;
}
.textarea-short {
	min-height:50px;
}
/*form selector (prev/next) controls*/
.form-selector-container {
	max-width:250px;
	margin: 0 auto;
	min-width: 200px;
}
.form-selector-container-row {
	width:100%;
	display:block;
}
.form-selector-container-column-arrow {
	width:20%;
	display:inline-block;
}
.form-selector-container-column-middle {
	width:60%;
	display:inline-block;
}
.form-selector-select {
	width:100%;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	border-top: none;
	box-shadow: inset 0 1px 2px #ddd;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	vertical-align: middle;
	box-sizing: border-box;
	-webkit-appearance:none;
    -moz-appearance:none;
    appearance:none; 
	padding: 0.35em;
	font-size:0.875em;
	background:#FFF;
	background-image: url("../images/drop_arrow2.svg");
	background-repeat: no-repeat;
	background-position: 97% center;
	background-size: 14px 6px;
	cursor: pointer;
}
.form-selector-select:hover {
	border:1px solid #b3b3b3;
	border-top: none;
	box-shadow: inset 0 2px 3px #ddd;
}
.form-selector-select:focus {
	border:1px solid #6FBE44;
	border-top: none;
	box-shadow: inset 0 2px 5px #ddd;
}
.form-selector-button-middle {
	/*colours from: http://www.colorhexa.com/6fbe44*/
	display: inline-block;
	cursor: pointer;
	padding: 7px 20px;
	border-top: 1px solid #599a35;
	border-bottom: none;
	border-left: 1px solid #599a35;
	border-right:1px solid #599a35;
	color: #fff;
	text-overflow: clip;
	text-shadow: 0px 1px #599a35;
	background: #7ac353;
	background: -moz-linear-gradient(top, #7ac353, #66b13d);
	background: -webkit-linear-gradient(top, #7ac353, #66b13d);
	background: -o-linear-gradient(top, #7ac353, #66b13d);
	background: -ms-linear-gradient(top, #7ac353, #66b13d);
	background: linear-gradient(top, #7ac353, #66b13d);
	font-size: 0.875em;
	text-decoration:none;
	width:100%;
}
.form-selector-button-middle:hover {
	border: 1px solid #4e872f;
	border-bottom: none;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
	text-shadow: 0px 1px #4e872f;
	background: #7ac353;
	background: -moz-linear-gradient(top, #7ac353, #5ea238);
	background: -webkit-linear-gradient(top, #7ac353, #5ea238);
	background: -o-linear-gradient(top, #7ac353, #5ea238);
	background: -ms-linear-gradient(top, #7ac353, #5ea238);
	background: linear-gradient(top, #7ac353, #5ea238);
	text-decoration:none;
}
.form-selector-button-middle:active {
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
}
.form-selector-button-prev {
	/*colours from: http://www.colorhexa.com/6fbe44*/
	display: inline-block;
	cursor: pointer;
	padding: 7px 20px;
	border-top: 1px solid #599a35;
	border-bottom: none;
	border-left: 1px solid #599a35;
	border-right:none;
	color: #fff;
	text-overflow: clip;
	text-shadow: 0px 1px #599a35;
	background: #7ac353;
	background: -moz-linear-gradient(top, #7ac353, #66b13d);
	background: -webkit-linear-gradient(top, #7ac353, #66b13d);
	background: -o-linear-gradient(top, #7ac353, #66b13d);
	background: -ms-linear-gradient(top, #7ac353, #66b13d);
	background: linear-gradient(top, #7ac353, #66b13d);
	font-size: 0.875em;
	text-decoration:none;
	-webkit-border-top-left-radius: 3px;
	-moz-border-radius-topleft: 3px;
	border-top-left-radius: 3px;
	margin:0;
	width:100%;
}
.form-selector-button-prev:hover {
	border: 1px solid #4e872f;
	border-right: none;
	border-bottom: none;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
	text-shadow: 0px 1px #4e872f;
	background: #7ac353;
	background: -moz-linear-gradient(top, #7ac353, #5ea238);
	background: -webkit-linear-gradient(top, #7ac353, #5ea238);
	background: -o-linear-gradient(top, #7ac353, #5ea238);
	background: -ms-linear-gradient(top, #7ac353, #5ea238);
	background: linear-gradient(top, #7ac353, #5ea238);
	text-decoration:none;
}
.form-selector-button-prev:active {
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
}
.form-selector-button-next {
	/*colours from: http://www.colorhexa.com/6fbe44*/
	display: inline-block;
	cursor: pointer;
	padding: 7px 20px;
	border-top: 1px solid #599a35;
	border-bottom: none;
	border-right: 1px solid #599a35;
	border-left:none;
	color: #fff;
	text-overflow: clip;
	text-shadow: 0px 1px #599a35;
	background: #7ac353;
	background: -moz-linear-gradient(top, #7ac353, #66b13d);
	background: -webkit-linear-gradient(top, #7ac353, #66b13d);
	background: -o-linear-gradient(top, #7ac353, #66b13d);
	background: -ms-linear-gradient(top, #7ac353, #66b13d);
	background: linear-gradient(top, #7ac353, #66b13d);
	font-size: 0.875em;
	text-decoration:none;
	-webkit-border-top-right-radius: 3px;
	-moz-border-radius-topright: 3px;
	border-top-right-radius: 3px;
	margin:0;
	width:100%;
}
.form-selector-button-next:hover {
	border: 1px solid #4e872f;
	border-left: none;
	border-bottom: none;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
	text-shadow: 0px 1px #4e872f;
	background: #7ac353;
	background: -moz-linear-gradient(top, #7ac353, #5ea238);
	background: -webkit-linear-gradient(top, #7ac353, #5ea238);
	background: -o-linear-gradient(top, #7ac353, #5ea238);
	background: -ms-linear-gradient(top, #7ac353, #5ea238);
	background: linear-gradient(top, #7ac353, #5ea238);
	text-decoration:none;
}
.form-selector-button-next:active {
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
}
/*----------CUSTOM PAGE ELEMENTS----------*/
.form-panel {
	background:#F2F2F2;
	padding:20px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	border: 1px solid #e8e8e8;
	max-width:350px;
	width:100%;
}
.splash-panel {
	max-width:370px;
	padding:10px;
}
@media screen and (max-width: 800px) {
	.splash-panel {
		display:none;
	}
}
/*----------TABLE LAYOUTS----------*/
.table-container {
	overflow-x:auto;
	display:block;
}
.fixed-header-table {
	max-height:calc(100vh - 275px);
}
.column-title {
	font-weight:400;
	font-size:0.95em;
}
.column-title2 {
	font-weight:700;
	font-size:0.95em;
}
.column-title-small {
	font-weight:400;
	font-size:0.85em;
}
.column-subtitle {
	font-weight:300;
	font-size:0.8em;
	color:#4C4C4E;
}
.column-subtitle2 {
	font-weight:300;
	font-size:0.95em;
}
.assessment-column {
	text-align:center;
	min-width:100px;
	max-width:150px;
}
.label-column {
	min-width:150px;
}
.comment-column {
	width:30%;
}
.comment-column2 {
	width:70%;
}
.report-column {
	text-align:center;
	min-width:150px;
	max-width:180px;
}
.div-table {
	
}
.div-table-header {
	font-weight:bold;
	background:#A7A9AB;
	padding:6px;
	-webkit-border-top-left-radius: 3px;
	-moz-border-topleft-radius: 3px;
	border-top-left-radius: 3px;
	-webkit-border-top-right-radius: 3px;
	-moz-border-topright-radius: 3px;
	border-top-right-radius: 3px;
}
.div-table-link {
	cursor: pointer;
}
.div-table-expand-icon-down {
	background-image: url("../images/drop_arrow2.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 13px 6px;
	width:13px;
	margin-top:2px;
	display:inline-block;
	transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
}

.div-table-body {
	text-align:left;
	padding:4px;
	padding-left:6px;
	background: #E4E4E4;
	-webkit-border-bottom-left-radius: 3px;
	-moz-border-bottomleft-radius: 3px;
	border-bottom-left-radius: 3px;
	-webkit-border-bottom-right-radius: 3px;
	-moz-border-bottomright-radius: 3px;
	border-bottom-right-radius: 3px;
}
.expand-rotate {
	-webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
	transform: rotate(180deg);
}
.expand-corners {
	-webkit-border-bottom-left-radius: 3px;
	-moz-border-bottomleft-radius: 3px;
	border-bottom-left-radius: 3px;
	-webkit-border-bottom-right-radius: 3px;
	-moz-border-bottomright-radius: 3px;
	border-bottom-right-radius: 3px;
}
.expand-hidden {
	display:none;
}
/*----------MISCELLANEOUS----------*/
.align-center {
	text-align:center;
}
.align-left {
	text-align:left;
}
.align-right {
	text-align:right;
}
.complete-border-rounded {
	border:1px solid #666;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.top-border {
	border-top:1px solid #e4e4e4;
}
.top-border-dark {
	border-top:1px solid #666;
}
.bottom-border {
	border-bottom:1px solid #e4e4e4;
}
.bottom-border-dark {
	border-bottom:1px solid #666;
}
.left-border-dark {
	border-left:1px solid #666;
}
.right-border-dark {
	border-right:1px solid #666;
}
.spacer-bottom-5 {
	padding-bottom:5px;
}
.spacer-bottom-20 {
	padding-bottom:20px;
}
.spacer-top-10 {
	padding-top:10px;
}
.min-height-350 {
	min-height:350px;
}
.min-height-400 {
	min-height:400px;
}
p.small-text {
	font-weight: 300;
	font-size: 0.8em;
	color: #A7A9AB;
	padding:0;
	padding-bottom:3px;
}
.small-text {
	font-weight: 300;
	font-size: 0.8em;
	color: #A7A9AB;
	padding:0;
	padding-bottom:3px;
}
p.small-text2 {
	font-weight: 400;
	font-size: 0.95em;
	color: #4C4C4E;
	padding:3px;
}
p.list-text {
	font-weight: 400;
	font-size: 0.95em;
	color: #4C4C4E;
	padding:2px;
	padding-left:5px;
}
p.list-text-sub {
	font-weight: 400;
	font-size: 0.875em;
	color: #A7A9AB;
	padding:0px;
	padding-left:15px;
}
.sub-text {
	font-weight: 300;
	color: #A7A9AB;
}
h3 span.sub-text {
	color: #666;
	font-weight: 400;
}
.optional {
	display:none;
}
.category-text {
	text-transform:uppercase;
	font-weight:700;
	font-size:1.0em;
}
.label-text {
	text-decoration:underline;
	padding-left:15px;
	font-size:0.95em;
}
.outcome-text {
	padding-left:30px;
	font-size:0.9em;
}
.label-text2 {
	font-size:0.95em;
}
.outcome-text2 {
	font-size:0.9em;
}
.italicize {
	font-style:italic;
}
.teacher-text {
	color:#4C4C4E;
	font-size:0.8em;
}
.review-notes ol, .review-notes ul {
   list-style-position: inside; 
}
.review-notes li {
   padding-left:20px; 
}
.review-notes p {
	padding:10px;
}
.standard-list {
	list-style:none;
}
.standard-list li {
	padding:5px;
}
.position-relative {
	position:relative;
}
.browser-container {
	float:right;
	margin-top:3px;
	color: #CCC;
}
.browser-active {
	color:#6FBE44;
}
/*----------ANIMATED LOGO----------*/
.animated-logo {
	width: 380px;
	padding:10px;
}
path.left-top-handle {
	animation: expandlefttop ease-out 0.5s;
	animation-iteration-count: 1;
	transform-origin: 190px 100%;
}
path.right-top-handle {
	animation: expandrighttop ease-out 0.5s;
	animation-iteration-count: 1;
	transform-origin: 230px 100%;
}
path.left-middle-handle {
	animation: expandleftmiddle ease-out 0.5s;
	animation-iteration-count: 1;
	transform-origin: 190px 100%;
}
path.right-middle-handle {
	animation: expandrightmiddle ease-out 0.5s;
	animation-iteration-count: 1;
	transform-origin: 230px 100%;
}
path.left-bottom-handle {
	animation: expandleftbottom ease-out 0.5s;
	animation-iteration-count: 1;
	transform-origin: 190px 100%;
}
path.right-bottom-handle {
	animation: expandrightbottom ease-out 0.5s;
	animation-iteration-count: 1;
	transform-origin: 230px 100%;
}

@keyframes expandlefttop {
  0% {
    opacity:0;
	transform:  rotate(15deg) scaleX(0.80) scaleY(0.80) ;
  }
  100% {
    opacity:1;
	transform:  rotate(0deg) scaleX(1.00) scaleY(1.00) ;
  }
} 
@keyframes expandrighttop {
  0% {
    opacity:0;
    transform:  rotate(-15deg) scaleX(0.80) scaleY(0.80) ;
  }
  100% {
    opacity:1;
    transform:  rotate(0deg) scaleX(1.00) scaleY(1.00) ;
  }
} 
@keyframes expandleftmiddle {
  0% {
    opacity:0;
    transform:  rotate(30deg) scaleX(0.80) scaleY(0.80) ;
  }
  100% {
    opacity:1;
    transform:  rotate(0deg) scaleX(1.00) scaleY(1.00) ;
  }
} 
@keyframes expandrightmiddle {
  0% {
    opacity:0;
    transform:  rotate(-30deg) scaleX(0.80) scaleY(0.80) ;
  }
  100% {
    opacity:1;
    transform:  rotate(0deg) scaleX(1.00) scaleY(1.00) ;
  }
} 
@keyframes expandleftbottom {
  0% {
    opacity:0;
    transform:  rotate(45deg) scaleX(0.80) scaleY(0.80) ;
  }
  100% {
    opacity:1;
    transform:  rotate(0deg) scaleX(1.00) scaleY(1.00) ;
  }
} 
@keyframes expandrightbottom {
  0% {
    opacity:0;
    transform:  rotate(-45deg) scaleX(0.80) scaleY(0.80) ;
  }
  100% {
    opacity:1;
    transform:  rotate(0deg) scaleX(1.00) scaleY(1.00) ;
  }
} 
/*----------NOTES----------
Primary Colour: (Green)
  Hex:  #6FBE44
  RGB:  111, 190, 68
  CMYK: 61, 0, 100, 0
Colour: (Gray)
  Hex:  #A7A9AB
  RGB:  167, 169, 171
  CMYK: 0, 0, 0, 40
  Colour: (Other Gray)
  Hex:  #666
  RGB: 
  CMYK:
Colour: (Light-Gray)
  Hex: #CCC;
  RGB:
  CMYK:
Colour: (Light-Light-Gray)
  Hex:  #F2F2F2;
  RGB:  243, 244, 245
  CMYK: 3, 2, 2, 0
Colour: (Dark-Gray)
  Hex: #4C4C4E
  RGB: 76, 76, 78
  CMYK: 0, 0, 0, 85
Colour: (Dark-Dark-Gray)
  Hex: #323132;
  RGB: 50 , 49, 50
  CMYK: 0, 0, 0, 95
*/
