@charset "utf-8";
@import url("reset.css");

/* main CSS Document */


html {
	font-size: 62.5%; /*10px*/
}
body {
	background-color: #999999; /*customizable*/
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

/*there are no occurrences of these styles in the entire project - double-check and delete if not used indeed*/
ol.default {
	list-style-type: none;
	margin: 0;
	margin-left: 3em;
	padding: 0;
	counter-reset: li-counter;
}
ol.default > li{
	position: relative;
	margin-bottom: 10px;
	padding-left: 0.5em;
	padding-bottom:0;
	min-height: 3em;
	border-left: 2px solid #CCCCCC;
}
ol.default > li:before {
	position: absolute;
	top: 0;
	left: -1em;
	width: 0.8em;
	font-size: 2em;
	line-height: 1;
	font-weight: bold;
	text-align: right;
	color: #464646;
	content: counter(li-counter);
	counter-increment: li-counter;
}
/*end*/


header nav#top-navigation {
	height: 48px;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2000;
}
header nav#top-navigation a, header nav#top-navigation a:visited {
	color: #ffffff;
	text-decoration: none;
	font-size: 1.3rem;
	text-shadow: 1px 1px #222222;
}
header nav#top-navigation a:hover {
	color: #ffffff;
	text-shadow: 1px 1px 4px #ffff00;
}
#header-floater-container {
	position: relative;
}
#header-floater {
	z-index: 2000;
}
.header-floater-fixed {
	position: fixed;
	width:100%;
}

#navigation-container, #content, #footer-container, #school-header-container, #header-floater-container {
	width: 95%;
	margin: 0 auto;
}
#school-header-container {
	box-shadow: 0 -2px 4px #aaaaaa;
}
#header-floater-container {
	border-left: 1px solid #cacaca;
	border-right: 1px solid #cacaca;
}
/*styles in top bar before logging in*/
div.nav-backlink strong {
	font-weight: bold;
}
div.nav-backlink a:before {
	padding: 0 0.5rem 0 1rem;
	font-family:'FontAwesome';
	content: "\f0d9";
}
div.nav-backlink {
	float: left;
	padding: 1.7rem 0 0 0;
	width: 75%;
}
div.nav-login-link {
	float: left;
	width: 25%;
	padding-top: 1.6rem;
	text-align: right;
}
a.login-link {
	display: inline-block;
	margin-top: -0.4rem;
}
a.login-link:after {
	padding-left: 0.5rem;
	font-family:'FontAwesome';
	font-size: 2rem;
	content: "\f090";
}
/*---------*/
#navigation-container ul {
	padding-top: 12px;
	float: left;
}
ul#nav1 {
	width: 70%;
}
ul#nav2 {
	width: 30%;
}
ul#nav1 li {
	float: left;
	padding-right: 1.6rem;
	line-height: 1;
}

ul#nav1 li a,
ul#nav2 li a{
display:block;
}
ul#nav1 li a:before {
	padding-right: 0.3rem;
	font-family:'FontAwesome';
	font-size: 2rem;
}

ul#nav1 li a.dashboard-link:before {content:"\f0e4";}
ul#nav1 li a.scheduler-link:before {content:"\f1b9";}
ul#nav1 li a.course-link:before {content:"\f02d";}
ul#nav1 li a.support-link:before {content:"\f1cd";}
ul#nav1 li a.test-link:before {content:"\f059";}


ul#nav2 li {
	float: right;
	padding-left: 1.6rem;
	line-height: 1;
}
ul#nav2 li a.account-link:before {
	padding-right: 0.3rem;
	font-family:'FontAwesome';
	font-size: 2rem;
	content: "\f007";
}
ul#nav2 li a.logout-link:after {
	padding-left: 0.3rem;
	font-family:'FontAwesome';
	font-size: 2rem;
	content: "\f08b";
}
#school-header-container {
	margin-top: 48px;
	position: relative;
}
#school-header-container img {
	display: block;
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	vertical-align: bottom;
}
#school-header-container h1 {
	font-size: 3.2rem;
	position: absolute;
	top: 0;
	left: 0;
	padding: 1.6rem 0 0 1.6rem;
	color: #ffffff;
	font-weight: bold;
	text-shadow: 1px 1px #333333;
}
#content {
	box-shadow: 0 2px 4px #aaaaaa;
}
.content-margin-top { /*this is used by the top-bar-always-on-top-of-screen functionality*/
	margin-top: 54px !important;
}
#content, .back-link {
	background-color: #fafafa;
	color: #333333;
}
#content strong,
#content b {
	font-weight: bold;
}
#content em {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-style: italic;
	letter-spacing: 0.01rem;
}
a {
	color: #1c44e3;
}
a:visited {
	color: #5900b2;
}
a:hover {
	color: #6681ec;
}
footer p {
	font-size: 1.1rem;
}
i.bottom-margin {
	margin-bottom: 0.5em;
}
p.indented, ul.indented {
	padding-left: 4rem;
}
/*----------------------------------------------------colors--------------------------------*/
.white {
	background-color: #ffffff;
}
.light-green {
	background-color: #dbf2db;
}
.yellow {
	background-color: #ffff99;
}
.light-yellow {
	background-color: #ffffcc;
}
.light-red {
	background-color: #ffdddd;
}
h2.red, i.red {
	color: #820000;
}
i.larger {
	font-size: 2rem;
}
/*---------------------------------------------links with icons---------------------------------*/
a.with-icon:after {
	display: inline-block;
	padding-left: 0.2em;
	font-family:'FontAwesome';
}
a.external:after { content: "\f08e" }

/*--------------------------------------------------general content layout styles-----------------------------------------------*/
.right-float {
	float: right;
}
.left-float {
	float: left;
}
.clear-floats {
	clear: both;
}
.group:after {
	 content: "";
	 display: table;
	 clear: both;
}
/*---------------------------------------------------two-column layout, equal column width-------------------------------*/
div.two-column-left,
div.two-column-left-course { /*the latter (-course) used for level up and nextlink, stays at 50% in all view ports*/
	float: left;
	width: 48.12500000%;
	padding: 1.2rem 1.25000000%;
}
div.two-column-right, /*must be accompanied by .right-float or .left-float, depending on column priority*/
div.two-column-right-course { /*the latter (-course) used for level up and nextlink, stays at 50% in all view ports; no need for .right-float or .left-float*/
	width: 48.12500000%;
	padding: 1.2rem 1.25000000% 1.2rem 0;
}
/*-------------------------------------------------------two-column golden cut layout---------------------------------------------*/
div.goldcut-left {
	float: left;
	width: 59.47916660%;
	padding: 1.2rem 1.25000000%;
}
div.goldcut-right { /*must be accompanied by .right-float or .left-float, depending on column priority*/
	width: 36.66666667%;
	padding: 1.2rem 1.25000000% 1.2rem 0;
}
/*---------------------------------------------------single column layout for non-course pages-------------------------------*/
.single-column {
	padding: 1.2rem 1.25000000%;
}
/*-----------------------------------sub-layout (used for two logins) - 3 columns - 1 like two-column left, middle narrow, rest for the third*/
.this-or-that-one {
	float: left;
	width: 49.35897436%;
}
.this-or-that-two {
	float: left;
	width:  6.41025641%;
}
.this-or-that-three {
	float: left;
	width: 44.23076923%;
}
p.oversized {
	padding: 6rem 0 0 0;
	font-size: 4rem;
	font-weight: bold;
	color: #666666;
	text-align: center;
}
p, li {
	font-size: 1.3rem;
	line-height: 1.5;
	padding-bottom: 1em;
}
#content p i.fa,
#content li i.fa {
	font-size: 2rem;
	padding: 0 0.5rem;
}
h1.course-name {
	padding: 1rem;
	background-color: #c9dad6;
	color: #336d60;
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1.2;
}
h2, h3 {
	color: #359735;
	font-size: 2.4rem;
	margin: 0 0 1rem 0;
	padding-top: 1rem;
}
h3 {
	font-size: 2rem;
}
h4 {
	margin: 0 0 1rem 0;
	padding: 0.5rem;
	background-color: #eaeaea;
	font-size: 1.8rem;
}
.like-course-bar h2 {
	padding:1rem 1rem 0 1rem;
}
.like-course-bar h2 span {
	font-style: italic;
}
#content ul {
	list-style: disc;
	padding-left: 4rem;
}
dl.products {
	margin: 2em 0 2em 2em;
}
dd, dt {
	font-size: 1.3rem;
	line-height: 1.5;
}
dd {
	padding-bottom: 1em;
}
dt {
	font-size: 1.8rem;
	font-weight: bold;
}
dl.products dt:before {
	font-family:'FontAwesome';
	content: "\f0da";
	margin-left: -0.8em;
	padding-right: 0.4em;
}
div.price {
	float: left;
	font-size: 3rem;
	padding: 1.5rem 0 0 3rem;
}
div.price span {
	display: block;
	font-size: 1.3rem;
}
.centered-content {
	text-align: center;
}

.rightside-content {
	text-align: right;
}
.faded {
	opacity: 0.5;
}
.large-icon {
	font-size: 4.8rem;
}
.green {
	color: #359735;
}
.red {
	color: #8c0000;
}
.warning:before {
	display: inline-block;
	font-family:'FontAwesome';
	content: "\f071";
	color: #8c0000;
	padding-right: 0.4em;
	margin-top: -1rem;
	font-size: 2.4rem;
}
.warning p {
	padding-left: 4rem;
}
.nowrap {
	white-space: nowrap;
}
.nofloat {
	float:none;
	display:inline;
}

#payment_notification {
	background-color: #DFF0D8;
	border: 1px solid #69AA46;
}
#payment_notification p{
	line-height: 1.6rem;
	padding: 2rem 1rem 2rem 5rem;
}
#payment_notification p:before {
	font-family:'FontAwesome';
	content:"\f018";
	font-size:6rem;
	color:#69AA46;
	display:block;
	margin:1rem 2rem 2rem -4rem;
	float:left;
}
.notification_close{
	float:right;
	width:20px;
	display:block;
}

/*----------------------------------------boxes------------------------------*/
.centered-box {
	margin: 0 auto;
}
.medium-box {
	max-width: 460px;
}
.small-box {
	max-width: 200px;
}
.regular-box {
	padding:2rem 1.3rem;
	margin-bottom: 1.2rem;
	border-radius: 1.6rem;
	-webkit-border-radius: 1.6rem;
	-moz-border-radius: 1.6rem;
	box-shadow: 0 1px 2px #cccccc;
}
.side-margins {
	margin: 0 1rem 0.5rem 1rem;
}

/*-------------------------------forms and buttons----------------------*/
.msg {
	margin-bottom: 10px;
}

.fail h2,
.light-red h2 {
	color: #8c0000;
}
.fail h2:before,
.success h2:before {
	display: inline-block;
	font-family:'FontAwesome';
	padding-right: 0.4em;
}

.fail h2:before { content: "\f071" }
.success h2:before { content: "\f005" }

.fail p,
.success p {
	padding-left: 3.5rem;
}
.fail ul {
	list-style: none;
	padding-left: 4.2rem;
}
.fail ul li:before {
	display: inline-block;
	margin-right: 1rem;
	margin-left: -1.5rem;
	font-family:'FontAwesome';
	content: "\f0da";
	color: #8c0000;
}
.fail ul li {
	margin-left: 0.6rem;
}

.formerror {
	color:#8c0000;
	text-align:left;
	padding-bottom:0 !important;
    padding-left:2px !important;
    display:inline-block;
}

form {
	display:inline;
	font-size: 1.3rem;
}
fieldset.boxed {
	margin: 0 0 1.5em;
	padding: 0.5em;
	background-color: #fafafa;
	box-shadow: 0 1px 2px #cccccc;
	-webkit-border-radius:5px; -moz-border-radius:5px; border-radius:5px;
}
legend { /*used when fieldset.boxed is used*/
	font-size: 0.9em;
	padding: 0.5em;
	margin-top: -1rem;
	background-color: #fafafa;
	border: 1px solid #eeeeee;
	border-bottom: none;
	box-shadow: -1px -1px 1px #eeeeee;
	-webkit-border-radius:5px; -moz-border-radius:5px; border-radius:5px;
	text-transform: uppercase;
}
fieldset.submit {
	padding-left: 16.6rem; /*label width plus label padding*/
}

label {
	float: left;
	width: 16rem;
	padding: 0.8rem 0.6rem 0.5rem 0;
	font-size: 1.3rem;
	text-align: right;
}
label.large {
	width: 100%;
	text-align:left;
	clear:both;
}
label.auto {
	width: auto;
	text-align: left;
}
label.required:before {
	display: inline-block;
	padding-right: 0.3rem;
	font-size: 0.8rem;
	font-family:'FontAwesome';
	content: "\f069";
	color: #8c0000;
	vertical-align: super;
}
label.required:after {
	visibility: hidden;
}

input.capitalize {
	text-transform: capitalize;
}

input[type=text],
input[type=password] {
	color: #666666;
}
input[type=text],
input[type=password],
select,
textarea {
	width:23.5rem;
	height:2.4rem;
	padding:0.2rem 0 0.2rem 0.5rem;
	border:1px solid #dedede;
	-webkit-border-radius:5px; -moz-border-radius:5px; border-radius:5px;
	box-shadow: 0 1px 2px #eeeeee inset;
	font-family:Verdana, Arial, Helvetica, sans-serif;
}
span.form-value {
	display: inline-block;
	padding: 0.8rem 0 0 1rem;
	height: 2.4rem;
}
.bold {
	font-weight: bold;
}
textarea {
	height: auto;
}
textarea.full-width {
	width: 95%;
}
span.formvalue { /*used when form is pre-filled with non-editable existing values*/
	display: block;
	padding-top: 0.9rem;
}

select {
	width: 25rem;
	height: 3rem;
}

input[type=text].xlarge {
	width: 80%;
}

input[type=text].medium {
	width: 16rem;
}

input.small[type=text],
select.small{
	width:10rem;
}

input.xsmall[type=text]{
	width:4rem;
}
select.xsmall {
	width:7rem;
}

input[type=text]:hover,
input[type=password]:hover,
select:hover {
	border-color: #a7e0a7;
}
input[type=text]:focus,
input[type=password]:focus,
select:focus {
	border-color: #dddddd;
	box-shadow: 0 1px 3px #dddddd inset, 0 0 8px #a7e0a7;
}

fieldset > ol:after {
	content: "";
	display: table;
	clear: both;
}

.placeholder {
	color: #dddddd;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	margin-left: -24rem;
	font-size:1.3rem;
}

textarea#box_mynotes_content {
	display: block;
	width: 98%;
	margin: 0.2rem auto;
}
a#box_mynotes_clear, a#box_mynotes_clear:visited {
	display: block;
	margin: 0.4rem auto;
	color:red;
	text-align: center;
	text-decoration: none;
	text-shadow: 1px 1px #ffffff;
}
a#box_mynotes_clear:before {
	padding-right: 0.3rem;
	font-family:'FontAwesome';
	font-size: 2rem;
	content:"\f12d";
}
a#box_mynotes_clear:hover {
	color: #888888;
}
div.right-float-tag {
	float: right;
	margin: -4rem 2rem 0 0;
}
input[type=submit],
input[type=button] {
	font-size: 1.6rem;
	display: block;
	height: 4.6rem;
	margin-top: 1.6rem;
	border: none;
	border-radius: 1.4em;
	-webkit-border-radius: 1.4em;
	-moz-border-radius: 1.4em;
	box-shadow: 0 1px 2px #cccccc;
	color: #ffffff;
	text-decoration: none;
	text-align: center;
	line-height: 1;
}
a.button, a.button:visited {
	font-size: 1.6rem;
	display: block;
	height: 3rem;
	margin-top: 1.6rem;
	padding-top: 1.6rem;
	border-radius: 1.4em;
	-webkit-border-radius: 1.4em;
	-moz-border-radius: 1.4em;
	box-shadow: 0 1px 2px #cccccc;
	color: #ffffff;
	text-decoration: none;
	text-align: center;
	line-height: 1;
}
a.mini-inline, a.mini-inline:visited {
	display: inline-block;
	font-size: 1.3rem;
	height: auto;
	width: auto;
	margin: 0;
	padding: 0.5rem 1rem;
}
a.green, a.green:visited,
input[type=submit].green,
input[type=button].green {
	background-color: #2c7c2c;
	text-shadow: -1px -1px #1d521d;
}
a.green:hover,
input[type=submit].green:hover,
input[type=button].green:hover {
	background-color: #359735;
}
a.amber, a.amber:visited {
	background-color: #d96d00;
	text-shadow: -1px -1px #9b4e00;
}
a.amber:hover {
	background-color: #ec7600;
}
a.f-book, a.f-book:visited {
	background-color: #4267B2;
}
a.f-book:hover {
	background-color: #4c68a1;
}
a.f-book:before {
	color: #4267B2;
	background-color: #fff;
	padding: 0.2em 0.2em 0 0.5em ;
	font-family:'FontAwesome';
	content: "\f09a";
	font-size: 1.3em;
}
span.f-book-long, span.f-book-alternate{
	vertical-align: top;
	padding-left: 6px;
}
a.twitter, a.twitter:visited {
	background-color: #1da1f2;
}
a.twitter:hover {
	background-color: #48b4f4;
}
a.twitter:after {
	padding-left: 1em;
	font-family:'FontAwesome';
	content: "\f099";
}
span.f-book-alternate,
span.backlink-alternate {
	display: none;
}
p.f-book-blurb {
	width: 33rem ;
	padding: 1rem 0 0 0;
}

a.short,
input[type=submit].short,
input[type=button].short {
	width: 8rem;
}
a.medium,
input[type=submit].medium,
input[type=button].medium {
	width: 14rem;
}
a.long,
input[type=submit].long,
input[type=button].long {
	width: 18rem;
}
a.extra-long,
input[type=submit].extra-long,
input[type=button].extra-long {
	width: 32rem;
}
a.float-right,
input[type=submit].float-right,
input[type=button].float-right {
	float: right;
	margin-right: 2rem;
}
a.centered,
input[type=submit].centered,
input[type=button].centered {
	margin: 0 auto;
}

a.bell:after,
a.caret-right:after,
a.hand-right:after,
a.pay:after,
a.send:after,
a.sign-in:after {
	padding-left: 1em;
	font-family:'FontAwesome';
}
a.bell:after { content: "\f0a2" }
a.caret-right:after { content: "\f0da" }
a.hand-right:after { content: "\f0a4" }
a.pay:after { content: "\f155" }
a.send:after { content: "\f1d8" }
a.sign-in:after { content: "\f090" }

span.sign-in {
	position: relative;
}
span.sign-in:after {
	position: absolute;
	right: -10.4rem;
	top: 4.2rem;
	font-size: 1.6rem;
	font-family:'FontAwesome';
	content: "\f090";
	color:#ffffff;
	pointer-events: none;
}
/*---------------------------------------------------course-------------------------------*/
/*member home page styles*/
.member-box p {
	margin: 2rem 1rem 2rem 1rem;
}
a.member, a.member:visited {
	color: #359735;
	text-decoration: none;

}
a.member:hover {
	color: #2c7c2c;
}
a.member:before,
h2.member:before {
	padding-right: 0.5rem;
	font-family:'FontAwesome';
	content: "\f007"
}
h2.lock:before {
	padding-right: 0.5rem;
	font-family:'FontAwesome';
	content: "\f023"
}
.temp {background-color: #2c7c2c;}
.like-course-bar {
	height: 54px;
	width: 100%;
	background-color: #fafafa;
	box-shadow: 0 1px 2px #cccccc;
}
nav#course-bar {
	height: 54px;
	width: 100%;
	background: -webkit-linear-gradient(left top, #fafafa , #dddddd); /* For Safari 5.1 to 6.0 */
	background: -o-linear-gradient(bottom right, #fafafa , #dddddd); /* For Opera 11.1 to 12.0 */
	background: -moz-linear-gradient(bottom right, #fafafa , #dddddd); /* For Firefox 3.6 to 15 */
	background: linear-gradient(to bottom right, #fafafa , #dddddd); /* Standard syntax */
}
#course-bar ul {
	float: left;
	width: 29.16666667%;
	padding: 1.7rem 0 0 1.04166667%;
}
#course-bar-status {
	float: right;
	width: 66.66666667%;
	padding: 1.5rem 1.04166667% 0 0;
}
#course-bar ul li {
	float: left;
	padding-right: 1.6rem;
	padding-bottom: 0;
	line-height: 0.8;
}
#course-bar ul li.link-notes {
	padding-right: 0;
}

#course-bar ul li a, #course-bar ul li a:visited {
	color: #333333;
	text-decoration: none;
	text-shadow: 1px 1px #ffffff;
}
#course-bar ul li a:before {
	padding-right: 0.3rem;
	font-family:'FontAwesome';
	font-size: 2rem;
}

#course-bar ul li a.course-bar-outline:before {content:"\f0c9";}
#course-bar ul li a.course-bar-notes:before {content:"\f040";}

#course-bar ul li a:hover {
	color: #888888;
}
#course-bar-status div {
	float: left;
}
#course-bar-status-name {
	width: 48%;
	height: 40px;
	padding-right: 0.2rem;
	font-size: 1.3rem;
	text-align: right;
	text-shadow: 1px 1px #ffffff;
}
#course-bar-status-name:before {
	padding-right: 0.3rem;
	font-family:'FontAwesome';
	font-size: 2rem;
	content:"\f017";
}
#course-bar-status-timer {
	float: left;
	width: 48%;
	height: 2rem;
	border-radius: 1rem;
	-webkit-border-radius: 1rem;
	-moz-border-radius: 1rem;
	background: url("../images/timer-bg.png"), -webkit-linear-gradient(left top, #cccccc , #777777); /* For Safari 5.1 to 6.0 */
	background: url("../images/timer-bg.png"), -o-linear-gradient(bottom right, #cccccc , #777777); /* For Opera 11.1 to 12.0 */
	background: url("../images/timer-bg.png"), -moz-linear-gradient(bottom right, #cccccc , #777777); /* For Firefox 3.6 to 15 */
	background: url("../images/timer-bg.png"), linear-gradient(to bottom right, #cccccc , #777777); /* Standard syntax */
	background-repeat: repeat-x;
	overflow: hidden;
	box-shadow: 0 1px 2px #ffffff;
}
.timer-warning {
	background: url("../images/timer-bg.png"), -webkit-linear-gradient(left top, #cccccc , #ffa901) !important; /* For Safari 5.1 to 6.0 */
	background: url("../images/timer-bg.png"), -o-linear-gradient(bottom right, #cccccc , #ffa901) !important;; /* For Opera 11.1 to 12.0 */
	background: url("../images/timer-bg.png"), -moz-linear-gradient(bottom right, #cccccc , #ffa901) !important;; /* For Firefox 3.6 to 15 */
	background: url("../images/timer-bg.png"), linear-gradient(to bottom right, #cccccc , #ffa901) !important;; /* Standard syntax */
}

.timer-error {
	background: url("../images/timer-bg.png"), -webkit-linear-gradient(left top, #cccccc , #FF0000) !important;; /* For Safari 5.1 to 6.0 */
	background: url("../images/timer-bg.png"), -o-linear-gradient(bottom right, #cccccc , #FF0000) !important;; /* For Opera 11.1 to 12.0 */
	background: url("../images/timer-bg.png"), -moz-linear-gradient(bottom right, #cccccc , #FF0000) !important;; /* For Firefox 3.6 to 15 */
	background: url("../images/timer-bg.png"), linear-gradient(to bottom right, #cccccc , #FF0000) !important;; /* Standard syntax */
}

#course-bar-status-timer-time {
	display: inline-block;
	height: 1.8rem;
	margin-top: 0.1rem;
	background: url("../images/timer-bg-green.png"), -webkit-linear-gradient(left top, #1d521d , #359735); /* For Safari 5.1 to 6.0 */
	background: url("../images/timer-bg-green.png"), -o-linear-gradient(bottom right, #1d521d , #359735); /* For Opera 11.1 to 12.0 */
	background: url("../images/timer-bg-green.png"), -moz-linear-gradient(bottom right, #1d521d , #359735); /* For Firefox 3.6 to 15 */
	background: url("../images/timer-bg-green.png"), linear-gradient(to bottom right, #1d521d , #359735); /* Standard syntax */
	background-repeat: repeat-x;
	color: #ffffff;
	border-radius: 1rem;
	-webkit-border-radius: 1rem;
	-moz-border-radius: 1rem;
	width:0%;
}
#course-bar-status-timer-remaining {
	margin-top: -1.6rem;
	width: 47%;
	color: #ffff00;
	font-size: 1.2em;
	font-weight: bold;
	text-align: right;
	text-shadow: -1px 1px 1px #333333;
}

/*------------------------------------------------course outline (leaving some old style names to preserve functionality) */
#box_outline, #box_mynotes {
	display:none;
	position:absolute;
	width:75%;
	margin: 0.3rem 0 0 -0.5rem;
	height:auto;
	border:1px solid #cccccc;
	background-color:#ffffff;
	z-index: 1000;
	top:3.4rem;
	box-shadow: 1px 1px #aaaaaa;
}
#box_timeout , .box_incomplete  {
	display:none;
	height:auto;
	z-index: 5000;
}
a.close_box_button, a.close_box_button:visited {
	display:block;
	float:right;
	margin:0.4rem 0.4rem 0 0;
	padding: 0.2rem;
	border-radius: 0.3rem;
	height: 2rem;
	width: 2rem;
	background-color:#b23333;
	color:#ffffff !important;
	font-size:1.8rem;
	text-align:center;
	text-decoration:none;
	box-shadow: 1px 1px #aaaaaa;
}
a.close_box_button:hover {
	background-color:#cc3333;
}
.box_title h2 {
	padding: 0.5rem 0.3rem 0.5rem 2.4rem;
	margin: 0;
	color: #ffffff;
	line-height: 1.2;
	font-size: 1.3rem;
	text-shadow: 1px 1px #222222;
}
.box_title h2.loading:before {
	display: inline-block;
	margin-left: -2rem;
	font-family:'FontAwesome';
	content: "\f110";
	font-size: 2rem;
 }
.box_title h2:before {
	display: inline-block;
	margin-left: -2rem;
	padding-right: 0.2rem;
	font-family:'FontAwesome';
	content: "\f02d";
	font-size: 2rem;
}
#box_outline_content {
	padding: 0.5rem;
	max-height: 460px;
	overflow:scroll;
	overflow-x:hidden;
	background-color: #f8f8f8;
}
#box_outline p {
	margin: 0;
	padding: 0 8rem 0.5rem 0;
}
#box_outline p i {
	display: inline-block;
	padding: 0.2rem;
	font-size: 2rem;
}
a.expand-collapse {
	margin: 0 0.2rem 0 0;
	padding-top: 0.8rem;
	height: 2rem;
	color: #ffffff !important;
	font-size: 1.3rem;
	text-shadow: 1px 1px 1px #000 !important;
}
#course-bar nav.toc ul {
	width: 95%;
	margin-top: 0;
	padding-top: 0;

}
#course-bar nav.toc ul ul {
	padding-left: 3.5rem;
}
#course-bar nav.toc ul li {
	float: none;
	padding: 0.3rem 0.5rem 0.3rem 0.3rem;
}
#course-bar nav.toc ul li strong {
	font-weight: bold;
}

#course-bar nav.toc ul li a.expand:before {
	margin-bottom: 2rem;
	font-family:'FontAwesome';
	content: "\f0da";
	font-size: 2rem;
}
#course-bar nav.toc ul li a.collapse:before {
	margin-bottom: 2rem;
	font-family:'FontAwesome';
	content: "\f0d7";
	font-size: 2rem;
}
#course-bar nav.toc ul li a.unit_link,
#course-bar nav.toc ul li a.quiz_link {
	display: inline-block;
	margin: -0.5rem 0 0 0;
	padding: 0 0 0 3.8rem; /*padding greater to allow for expand and collapse arrows*/
	color: #cccccc;
	line-height: 1.2;
}
#course-bar nav.toc ul li li a.unit_link,
#course-bar nav.toc ul li li a.quiz_link {
	padding: 0 0 0 2rem;
}
#course-bar nav.toc ul li li li a.unit_link,
#course-bar nav.toc ul li li li a.quiz_link {
	padding: 0;
}
#course-bar nav.toc ul li a.unit_link:before,
#course-bar nav.toc ul li a.quiz_link:before {
	display: inline-block;
	margin-left: -2.2rem;
	padding: 0;
	font-family:'FontAwesome';
	content: "\f056";
	font-size: 2rem;
}

#course-bar nav.toc ul li a._todo:before {
	content: "\f0a9";
}
#course-bar nav.toc ul li a._done:before {
	content: "\f14a";
}
#course-bar nav.toc ul li a.quiz_link:before {
	 content: "\f059";
}

#course-bar nav.toc ul li a._todo,
span.orange {
	color: #d96d00;
}
#course-bar nav.toc ul li a._done,
span.green {
	color: #359735;
}
#course-bar nav.toc ul li a._notready,
span.black {
	color: #666;
}


span.gray {
	color: #cccccc;
}
.status-timer-indicator {
	margin-right:4px;
	font-size:1.2rem;
}
/*final test styles in course outline*/

li.outline-final-test span {
	color: #cccccc;
}
a#finaltest-outline-button, a#finaltest-outline-button:visited,
a#finaltest-outline-button-cert, a#finaltest-outline-button-cert:visited {
	font-size: 1.6rem;
	display: inline-block;
	height: auto;
	padding: 1.6rem 1rem 1.5rem 1rem;
	margin:0 0 0.5rem 0.5rem;
	border-radius: 1.4em;
	-webkit-border-radius: 1.4em;
	-moz-border-radius: 1.4em;
	box-shadow: 0 1px 2px #cccccc;
	background-color: #2c7c2c;
	color: #ffffff !important;
	text-shadow: -1px -1px #1d521d !important;
	text-decoration: none;
	text-align: center;
	line-height: 1;
}
a#finaltest-outline-button:hover,
a#finaltest-outline-button-cert:hover {
	background-color: #359735;
}
a#finaltest-outline-button:after,
a#finaltest-outline-button-cert:after {
	padding-left: 1em;
	font-family:'FontAwesome';
	content: "\f0a4"
}
/*----------------------COURSE CONTENT STYLES - for content coming from database (not editable in editor)------*/

.course-toc, .course-content-frame, #course-content,
.course-toc p, .course-content-frame p,
.course-toc dt, .course-toc dd,
#quiz-content-frame,
.evaluation-content-frame,
.certificate-content-frame  {
	font-size: 1.3rem;
	font-family: 'Roboto', arial, helvetica, sans-serif;
}
p.module-summary,
p.submodule-summary {
	padding: 1rem;
	margin: 0;
	background-color: #e4eaf1;
}
p.submodule-summary {
	background-color: #f8f1dc;
}
.course-toc h2,
.course-toc h3.like-h2 { /*for courses with subunits*/
	padding: 1rem;
	background-color: #d8e0eb;
	color: #3a5170;
	font-weight: 700;
	line-height: 1.5;
}
.course-toc h3.like-h2 {
	margin-top: 0;
	margin-bottom: 0;
	background-color: #ccc1a3;
	color: #665830;
}
.course-toc h2 span,
.course-toc h3.like-h2 span {/*for courses with subunits*/
	background-color: #3a5170;
	color: #d8e0eb;
	padding: 0.5rem;
	font-size: 2rem;
	font-weight: normal;
}
.course-toc h3.like-h2 span {
	background-color: #665830;
	color: #ccc1a3;
}
.course-toc h3,
.course-toc h4.like-h3 { /*for courses with subunits*/
	margin-top: 2rem;
	color: #3a5170;
	line-height: 1.2;
}
.course-toc h4.like-h3 {
	margin: 2rem 0;
	padding: 0;
	background-color: transparent;
	color: #665830;
	font-size: 2.4rem;
	text-transform: none;
}
/*----------------------------------top and bottom links/buttons (outside course content)*/
a.level-up, a.level-up:visited {
	display: inline-block;
	padding: 0.5rem 0.5rem 0.5rem 2.3rem;
	color: #aa7351;
	text-decoration: none;
	line-height: 1.5;
}
a.level-up:hover {
	background-color: #aa7351;
	color: #ffffff;
}
a.level-up:before {
	font-family:'FontAwesome';
	content: "\f0a6";
	margin-left: -1.6rem;
	padding-right: 0.5rem;
	text-decoration: none;
}
a.with-bottom-margin {
	margin-bottom: 1rem;
}
a.nextlink, a.nextlink:visited { /*keeping old class name because hard-coded :(*/
	float: right;
	display: inline-block;
	padding: 0.5rem 0.5rem 0.5rem 0.5rem;
	color: #359735;
	text-align: right;
	text-decoration: none;
	line-height: 1.5;
}
a.nextlink:hover {
	background-color: #359735;
	color: #ffffff;
}
a.nextlink_disabled, a.nextlink_disabled:visited {
	float: right;
	display: inline-block;
	padding: 0.5rem 0.5rem 0.5rem 0.5rem;
	color: #cccccc;
	text-align: right;
	text-decoration: none;
	line-height: 1.5;
}
a.nextlink:after,
a.nextlink_disabled:after {
	font-family:'FontAwesome';
	content: "\f0a4";
	margin-left: 0.5rem;
	text-decoration: none;
}
#course-content .course-content-core { /*container for the course content entered through editor*/
	padding: 0 1rem;
}
#course-content h2,
h2.quiz-title {
	padding: 1rem;
	background-color: #ecdfd7;
	color: #aa7351;
	font-weight: 700;
	line-height: 1.5;
}
#course-content h2 span,
h2.quiz-title span {
	background-color: #aa7351;
	color: #ecdfd7;
	padding: 0.5rem;
	font-size: 2rem;
	font-weight: normal;
}
p.unit-summary {
	padding: 1rem;
	margin: 0;
	background-color: #f2e9e3;
}
ol.questions,
ol.answers,
ol.evaluation-questions {
	list-style: decimal;
	margin: 1rem 0;
	padding: 2rem;
	background-color: #f1f4f8;
}
ol.questions ol,
ol.answers ol,
ol.evaluation-questions ol {
	list-style: upper-alpha;
	background-color: #ffffff;
	margin-left: 1.5rem;
}
ol.answers ol {
	padding-left: 0.5rem;
}
ol.evaluation-questions ol {
	list-style: none;
}
ol.evaluation-questions ol li {
	padding-bottom: 0;
}
strong.oversized {
	font-size: 4rem;
}
span.oversized-icon i.fa {
	font-size: 6rem !important;
}
.certificate-image-container {
	margin: 0 auto;
	position: relative;
}
.certificate-image-container img {
	width: 100%;
	max-width: 948px;
}
.certificate-content-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	max-width: 948px;
	padding-top: 8%;
}
.certificate-content-container p,
.certificate-content-container h1,
.certificate-content-container h2 {
	text-align: center;
}
.certificate-content-container h1 {
	padding:5% 0 2% 0;
	color: #3f7387;
	font-family: 'Pinyon Script', cursive;
	font-size: 4rem;
}
.certificate-content-container h2 {
	color: #3f7387;
}
.certificate-blurb {
	padding-bottom: 5%;
}
.certificate-disclaimer {
	padding: 10% 15% 0 15%;
}
.certificate-disclaimer-alternate-text {
	display: none;
}
.certificate-alternate-fb {
	display: none;
}
/*---END COURSE CONTENT STYLES*/
/*----------------------------------------------style fixers-----------------------------*/
.no-bottom-padding {
	padding-bottom: 0;
}
.no-top-padding {
	padding-top: 0;
}
.no-bottom-margin {
	margin-bottom: 0 !important;
}
.yes-bottom-margin {
	margin-bottom: 1rem;
}
.no-top-margin {
	margin-top: 0;
}
.not-italic {
	font-style: normal !important;
}
.padded {
	padding: 1em;
}

.no-background-image {
	background-image: none !important;
}

#modal-question-lookup {display:none;}
.simplemodal-wrap {overflow:auto;overflow-x:hidden;overflow-y:scroll;font-family: Roboto; font-size:1.6em !important; line-height:1;padding-left: 8px; padding-right:8px}
#simplemodal-overlay {background-color:#000; z-index: 5000 !important;}
#simplemodal-container {height:800px; width: 95% !important; max-width: 958px !important; background-color:#fff; border:4px solid #444; padding:2px; z-index: 5001 !important}
#simplemodal-container .simplemodal-data {padding:2px;}
#simplemodal-container a.modalCloseImg {background:url(../images/x.png) no-repeat; width:25px; height:29px; display:inline; z-index:5002 !important; position:absolute; top:5px; right:15px; cursor:pointer;}


.inline_block_form_error {
	padding-left: 130px;
}

/*---------------------------------------------------Media Queries------------------------*/

@media screen and (min-width: 1024px) { /*large screens*/
	#navigation-container, #content, #footer-container, #school-header-container, #header-floater-container {
		width:960px
	}
}

@media screen and (max-width: 920px) { /*tablet landscape (1024x768)*/

	div.two-column-left, div.two-column-right {
		float: none;
		width: 95%;
		padding: 0.5em 0;
		margin: 0 auto;
	}
	p.oversized {
		font-size: 2em;
	}
	.hidden-920 {
		display: none;
	}
	.certificate-disclaimer {
		padding: 6% 15% 0 15%;
	}
}
@media screen and (max-width: 860px) { /*for three-column layout like this-or-that*/
	.this-or-that-one {
		width: 39.35897436%;
	}
	.this-or-that-two {
		width:  6.41025641%;
	}
	.this-or-that-three {
		width: 54.23076923%;
	}
	label.slide {
		float: none;
		text-align: left;
		padding-left: 0.6rem;
		display:block;
	}
	.certificate-disclaimer {
		padding: 4% 15% 0 15%;
	}
}
@media screen and (max-width: 840px) {
	ul#nav2 li a span {
		margin-top: -2.4rem;
		visibility: hidden;
		display: block;
		width: 0;
	}

}
@media screen and (max-width: 800px) { /*small tablet landscape (800x600)*/

	h2.resizing-800 {
		font-size: 1.8rem;
	}


}
@media screen and (max-width: 780px) {
	.hidden-780 {
		display: none;
	}
	.course-bar-outline span,
	.course-bar-notes span {
		visibility: hidden;
		display: block;
		width: 0;
	}
	#box_outline {
		width: 98%;
	}
	#box_mynotes {
		width: 90%;
	}
}
@media screen and (max-width: 768px) { /*tablet portrait (768x1024)*/
	.hidden-768 {
		display: none;
	}
	div.price {
		padding-left: 1rem;
	}
	a.float-right {
		margin-right: 1rem;
	}
	a.extra-long,
	input[type=submit].extra-long,
	input[type=button].extra-long,
	p.f-book-blurb {
		width: 24rem;
	}
	span.f-book-long {
		display: none;
	}
	span.f-book-alternate {
		display: inline;
	}
	.this-or-that-one {
		width: 49.35897436%;
	}
	.this-or-that-two {
		width:  6.41025641%;
	}
	.this-or-that-three {
		width: 44.23076923%;
	}

	.certificate-content-container h1 {
		padding:2% 0 1% 0;
	}
	.certificate-content-container h2 {
		padding-top: 1%;
	}
}
@media screen and (max-width: 700px) {
	.hidden-700 {
		display: none;
	}

	.certificate-disclaimer-alternate-text {
		display: inline;
	}
	.certificate-blurb {
		padding-bottom: 2%;
	}

}
@media screen and (max-width: 640px) {
	.hidden-640 {
		display: none;
	}
	#school-header-container h1 {
		font-size: 2.4rem;
		padding: 1rem 0 0 1rem;
	}
	a.login-link span {
		visibility: hidden;
	}

	a.f-book {
		margin-top: 0;
	}
	div.this-or-that-one, div.this-or-that-two, div.this-or-that-three {
		float: none;
		width: 60%;
		padding: 1rem 0;
		margin: 0 auto;
	}
	p.oversized {
		padding-top: 0;
	}

	.certificate-content-container h1 {
		padding-top:1%;
	}

}

@media screen and (max-width: 600px) { /*small tablet portrait (600x800)*/
	.hidden-600 {
		display: none;
	}
	div.goldcut-left, div.goldcut-right {
		float: none;
		width: 95%;
		padding: 0.5em 0;
		margin: 0 auto;
	}

	.certificate-content-container h2 {
		padding: 1% 20% 2% 20%;
	}
	.certificate-alternate-fb {
		display: block;
	}
}
@media screen and (max-width: 595px) {
	ul#nav1 li a span, ul#nav2 li a span {
		visibility: hidden;
		display: block;
		width: 0;
	}

}
@media screen and (max-width: 510px) {
	.hidden-510 {
		display: none;
	}
	#box_mynotes {
		width: 85%;
	}

}
@media screen and (max-width: 500px) {
	.right-float-tag {
		float: none;
		margin: 0;
	}
	fieldset.submit {
		padding: 0;
	}
	div.this-or-that-one, div.this-or-that-two, div.this-or-that-three {
		width: 80%;
	}


}

@media screen and (max-width: 480px) { /*mobile landscape (480x320)*/
	.inline_block_form_error {
		padding-left: 0px;
	}
	.hidden-480 {
		display: none;
	}
	#school-header-container h1 {
		font-size: 2rem;
		font-weight: 700;
	}
	div.price {
		padding-left: 1rem;
	}
	a.float-right {
		margin-right: 1rem;
	}
	div.nav-backlink strong {
		display: none;
	}
	div.nav-backlink span.backlink-alternate {
		display: inline;
	}
	label {
		float: none;
		text-align: left;
		padding-left: 0.6rem;
		display:block;
	}
	label.auto{
		display: inline;
	}
	label.required:before {
		display: none;
	}
	label.required:after {
		display: inline-block;
		padding-left: 0.3rem;
		font-size: 0.8rem;
		font-family:'FontAwesome';
		content: "\f069";
		color: #8c0000;
		vertical-align: super;
		visibility: visible;
	}
	.right-float-tag {
		margin-top: 80rem;
	}
	#course-bar-status-name {
		width: 25%;
	}
	#course-bar-status-timer {
		width: 70%;
	}
	#course-bar-status-timer-remaining {
		width: 69%;
	}
	#course-bar-status-name span {
		visibility: hidden;
		display: block;
		width: 0;
	}

	.certificate-disclaimer-alternate-text {
		display: none;
	}
	.certificate-content-container h2 {
		padding: 0 10% 0 10%;
		font-size: 1.8rem;
	}

}
@media screen and (max-width: 400px) { 	/*mobile landscape (480x320)*/
	div.this-or-that-one, div.this-or-that-two, div.this-or-that-three {
		width: 95%;
	}
	#school-header-container h1 {
		font-size: 1.4rem;
		font-weight: normal;
	}
}
@media screen and (max-width: 320px) { /*mobile portrait (320x480)*/
	#navigation-container, #content, #footer-container, #school-header-container,  #header-floater-container {
		width:300px
	}
	#school-header-container h1 {
		font-size: 1.4rem;
		font-weight: normal;
	}
	.hidden-320 {
		display: none;
	}
}

/*DEVELOPMENT NOTE*/
.development {
	font-family: courier new, courier, monospace;
}

body > .skiptranslate {
	display: none;
}
body {
	top: 0px !important;;

}

#goog-gt-tt{display: none !important; top: 0px !important; visibility: hidden !important;; }

.skiptranslate > div:first-child {
	display: block !important;
}
