@charset "UTF-8";
/* CSS Document */

html, body
{
	background-color:#6f8b9d;
	margin:0 0;
	padding:0 0;
}

body
{
	color: #34495e;
	font-family:'Lato', sans-serif;
	font-size: 14px;
	line-height: 1.231;
	
}

.myContainer
{
	/*
	margin:0px auto;
	max-width:960px;
	*/
	width:100%;	
	background-color:#fff;
}

/* ::::::: HEADER ::::::: */

header
{
	text-align:center;
	padding-top:40px;
	padding-bottom:30px;
	border-bottom:1px solid #cacbcb;
	width:100%;
	margin:0px auto;
}

header.course
{
	padding-top:10px;
	padding-bottom:5px;
	width:100%;
	margin:0px auto;
	border:none;
	text-align:left;
}

header.course p
{
	margin-top:10px;	
}

header.course img
{
	
}

header.course h2
{
	font-family: Georgia, Times New Roman, serif;
	font-size:1.65em;
	font-weight:normal;
	width:96%;
	max-width:960px;
	margin:0px auto;
	margin-top:10px;
}

@media (max-width: 767px) {

	header
	{
		width:96%;
		margin:0px auto;
		padding:10px 0px;	
	}
	/*
	header.course
	{
		display:none;	
	}
	*/
}

.sticky-header
{
	width:100%;
	position:inherit;
	/*position:fixed;*/	
}

@media (max-width: 767px) {
/*
	.sticky-header
	{
		position:fixed;
		z-index:9999;
		top:0;
	}
*/
}

.sticky-header.fixed
{
	position:fixed;
	top:0;
    left:0;
    right:0;
    z-index:9999;
}

.sticky-header.clone {
    position:fixed;
    top:-100px;
    transition:0.2s top ease-in;
}

body.down .sticky-header.clone {
    top:0;
    left:0;
    right:0;
    z-index:999;
}

/* ::::::: MENU BAR ::::::: */

.menu-bar
{
	width:100%;
	margin:0px auto;
	font-size:1.8em;
	
}

.bar-bg-gradient
{
	background: #9ac1d8;

	background: -moz-linear-gradient(top,  #9ac1d8 0%, #6796b3 100%);
	
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#9ac1d8), color-stop(100%,#6796b3));
	
	background: -webkit-linear-gradient(top,  #9ac1d8 0%,#6796b3 100%);
	
	background: -o-linear-gradient(top,  #9ac1d8 0%,#6796b3 100%);
	
	background: -ms-linear-gradient(top,  #9ac1d8 0%,#6796b3 100%);
	
	background: linear-gradient(to bottom,  #9ac1d8 0%,#6796b3 100%);
	
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9ac1d8', endColorstr='#6796b3',GradientType=0 );
}

.menu-bar-body
{
	width:96%;
	margin:0px auto;
	display:table;
	max-width:960px;
	padding-top:10px;
	padding-bottom:10px;
}

.menu-bar-body .menu-bar-cell
{
	display:table-cell;
	vertical-align:middle;
}

.menu-bar-body .menu-bar-cell img
{
	width:100%;
	max-width:50px;
}

.menu-bar-body-left
{
	display:table-cell;
	text-align:left;
	vertical-align:middle;
	
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	cursor:pointer;
}

.menu-bar-body-right
{
	display:table-cell;
	vertical-align:middle;
	text-align:right;
}

.menu-bar-btn
{
	display:inline-block;
	font-size:0.7em;
	cursor:pointer;
	text-align:right;
	padding:7px 5px;
	background-color:#5c859e;
	
	color:white;
	
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.menu-bar-btn-decoy
{
	color:white;
	background-color:#5c859e;
	display:inline-block;
	padding:5px 8px;
	font-size:1.4em;
	float:left;
	margin-right:15px;
	margin-top:5px;
	margin-bottom:30px;
}

.menu-bar-btn span
{
	margin:5px 5px 5px 10px;
}

.menu-bar-btn i
{
	padding-right:10px;
}

.menu-bar-header
{
	color:#fff;
	cursor:pointer;
}

.menu-bar-btn.active
{
	background-color:white;
	color:#215e8b;	
}

@media (max-width: 767px) {
	.menu-bar-btn span
	{
		display:none;	
	}
	
	.menu-bar
	{
		font-size:1.2em;	
	}
	
	.menu-bar-btn i
	{
		padding-right:0px;
	}
	
	.menu-bar-btn
	{
		padding:5px 10px;
		font-size:1.2em;	
		
	}
}

/* ::::::: MENU ::::::: */

.menu
{
	position:relative;
	width:96%;
	max-width:960px;
	margin:0px auto;
}

.menu.closed
{
	display:none;	
}

.menu table
{
	position:absolute;
	background-color:white;
	width:50%;
	left:50%;
	right:-3px;
	/*
	top:-3px;
	border-top:3px solid #a4cae8;
	*/
	border-left:3px solid #6796b3;
	border-bottom:3px solid #6796b3;
	border-right:3px solid #6796b3;
	
	float:right;
	z-index:99999;
	border-collapse:collapse;
}

.menu table td
{
	padding-top:10px;
	padding-bottom:10px;
	border-bottom:1px solid #ccc;	
	cursor:pointer;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.menu table i
{
	margin-right:5px;	
}

.menu table img
{
	
}

.menu .menu-middle-cell
{
	width:80%;
}

.menu .menu-left-cell
{
	text-align:center;
	vertical-align:top;
}

.menu .menu-right-cell
{
	text-align:right;
	vertical-align:top;
}

ul.submenu
{
	list-style:none;
	margin:0 0;
	margin-top:10px;	
}

ul.submenu li
{
	font-size:1.1em;
	
	margin-bottom:10px;
	
}

ul.submenu li a
{
	text-decoration:none;	
}

ul.submenu li a div
{
	display:table;
	width:100%;	
}

ul.submenu li a div span
{
	display:table-cell;
	text-align:left;
}

ul.submenu li a div i
{
	display:table-cell;
	
	width:20px;
	text-align:left;
}

ul.submenu li a div b
{
	display:table-cell;
	text-align:left;
	width:10px;	
	padding-right:7px;
}

ul.submenu li a div b img
{
	width:100%;
	margin-top:-5px;
	
}

ul.submenu li .fui-triangle-right-large
{
	padding-left:20px;	
	
}

ul.submenu li.active a
{
	
}

ul.submenu li.active
{
	
}

ul.submenu li.active a div span
{
	text-decoration:underline;
	font-weight:bold;
}

ul.submenu li.active a div b img
{
	display:block;	
}

/*
ul
ul
{
    list-style-type: none;
}
*/

@media (max-width: 767px) {

	.menu
	{
		width:100%;	
	}

	.menu table
	{
		width:100%;	
		left:0%;
	}
	
}

/* ::::::: CONTENT ::::::: */

.content-bar
{
	width:100%;	
}

.content-bar .status-bar
{
	width:100%;
	max-width:960px;
	margin:0px auto;
	text-align:center;
	
}

.content-bar .status-bar span
{
	/*
	background-color:#eeebdd;
	border:2px solid #fbfaf6;
	*/
	display:inline-block;
	padding:5px;
}

#content
{
	width:96%;
	max-width:960px;
	margin:0px auto;
	margin-top:0px;
	margin-bottom:0px;
	
}

#content .two-column
{
	display: table;
	width: 100%;
}

#content .left-large-column:before
#content .left-small-column:before
#content .left-column:before {
	content: ' ';
	display: table-row;
}
#content .left-column
{
	display: table-cell;
	padding: 0px 2%;
	vertical-align: top;
	width: 50%;
}

#content .left-small-column
{
	display: table-cell;
	vertical-align: top;
	width: 33.3%;
	padding: 0px 2%;
}

#content .left-large-column
{
	display: table-cell;
	vertical-align: top;
	padding: 0px 2%;
	width: 66.6%;
}

#content .right-column
{
	display: table-cell;
	padding: 0px 2%;	
	width: 50%;
}

#content .right-small-column
{
	display: table-cell;
	padding: 0px 2%;
	width: 33.3%;
}

#content .right-large-column
{
	display:table-cell;
	padding: 0px 2%;
	width:66.6%;
}

#content .single-column
{
	display:table-cell;
	padding:0px 2%;
	width:100%;
}


@media (max-width: 767px) {
	
	#content
	{
		display:block;
		/*margin-top:100px;*/
	}
	
	
	#content .left-column, #content .left-small-column, #content .left-large-column
	{
		width:100%;	
		display:block;
		padding:0px 0%;
		margin:0px auto;
	}
	
	#content .right-column, #content .right-small-column, #content .right-large-column
	{
		width:100%;	
		display:block;
		padding:0px 0%;
		margin:0px auto;
	}
	
	#content .single-column
	{
		width:100%;	
		display:block;
		padding:0px 0%;
		margin:0px auto;
	}
	
}



@media (max-width: 767px) {
	
	#content .nav-content
	{
		width:100%;
		float:left;	
	}
	
	
}

/* ::::::: VIDEO STUFF ::::::: */

.video-container
{
	margin-top:20px;
	margin-bottom:20px;
	position:relative;	
	border:5px solid white;
	background-color:white;
}

.video-container video, .video-container canvas {
	top: 0;
	left: 0;
	width: 100%;
	max-width: 100%;
	height: auto;
	padding: 0 0;
	
}

.video-container video {
	height: 100%;
	position: absolute;
}

.videoWrapper {
	position: relative;
	padding-bottom: 54%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}




.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


/* ::::::: FOOTER ::::::: */

footer
{
	padding:10px 0px;
	border-top:1px solid #7296b4;
	border-bottom:1px solid #9ac1d8;		
	width:100%;
	margin:0px auto;
}



/* ::::::: NAVIGATION ::::::: */

footer .nav-content
{
	width:96%;
	max-width:960px;
	margin:0px auto;
}

footer .nav-content .back-btn
{
	float:left;	
	margin-right:30px;
	border:2px solid #9ac1d8;
}

footer .nav-content .next-btn
{
	float:right;	
	margin-left:30px;
	
	background: #66e53d;

	background: -moz-linear-gradient(top,  #66e53d 0%, #419227 100%);
	
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#66e53d), color-stop(100%,#419227));
	
	background: -webkit-linear-gradient(top,  #66e53d 0%,#419227 100%);
	
	background: -o-linear-gradient(top,  #66e53d 0%,#419227 100%);
	
	background: -ms-linear-gradient(top,  #66e53d 0%,#419227 100%);
	
	background: linear-gradient(to bottom,  #66e53d 0%,#419227 100%);
	
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#66e53d', endColorstr='#419227',GradientType=0 );
	
	border:2px solid #c4f5b6;
}

footer .nav-content .finish-btn
{
	float:right;	
	margin-left:30px;
	
	background: #66e53d;

	background: -moz-linear-gradient(top,  #66e53d 0%, #419227 100%);
	
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#66e53d), color-stop(100%,#419227));
	
	background: -webkit-linear-gradient(top,  #66e53d 0%,#419227 100%);
	
	background: -o-linear-gradient(top,  #66e53d 0%,#419227 100%);
	
	background: -ms-linear-gradient(top,  #66e53d 0%,#419227 100%);
	
	background: linear-gradient(to bottom,  #66e53d 0%,#419227 100%);
	
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#66e53d', endColorstr='#419227',GradientType=0 );
	
	border:2px solid #c4f5b6;
}

.survey-btn
{
	background: #66e53d;

	background: -moz-linear-gradient(top,  #66e53d 0%, #419227 100%);
	
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#66e53d), color-stop(100%,#419227));
	
	background: -webkit-linear-gradient(top,  #66e53d 0%,#419227 100%);
	
	background: -o-linear-gradient(top,  #66e53d 0%,#419227 100%);
	
	background: -ms-linear-gradient(top,  #66e53d 0%,#419227 100%);
	
	background: linear-gradient(to bottom,  #66e53d 0%,#419227 100%);
	
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#66e53d', endColorstr='#419227',GradientType=0 );
	
	border:2px solid #c4f5b6;
}

footer .nav-content .back-btn,
footer .nav-content .next-btn,
footer .nav-content .finish-btn,
.survey-btn
{
	display:inline-block;
	font-size:1.2em;
	border-radius:5px;
}

.popupBoxContainer{
	background-color:rgba(102,102,102,0.5);
	height:100%;
	width:100%;
	position:fixed;
	z-index:1000;
	top:0;
	left:0;
}

.popupBox{
	height:200px;
	width: 300px; 
	margin: -100px 0 0 -150px; 
	left: 50%; 
	top:50%; 
	position:fixed; 
	border:solid thin white; 
	background-color:red; 
	border-radius:5px;
}


.popupBox p{
	padding:10px;
	font-family:'Lato', sans-serif;
	font-size:18px;
	color:white;
	font-weight:bold;
	text-align:center;
}
.popupBox .survey-btn{
	margin-top:1em;

@media (max-width: 767px) {
	
	footer .nav-content
	{
		width:96%;
		
	}
	
}

/* RESPONSIVE HELPERS */

.hidden {
  display: none;
  visibility: hidden;*/
}
.visible-phone {
  display: none !important;
}
.visible-tablet {
  display: none !important;
}
.hidden-desktop {
  display: none !important;
}
.visible-desktop {
  display: inherit !important;
}
@media (min-width: 768px) and (max-width: 979px) {
  .hidden-desktop {
    display: inherit !important;
  }
  .visible-desktop {
    display: none !important ;
  }
  .visible-tablet {
    display: inherit !important;
  }
  .hidden-tablet {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .hidden-desktop {
    display: inherit !important;
  }
  .visible-desktop {
    display: none !important;
  }
  .visible-phone {
    display: inherit !important;
  }
  .hidden-phone {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: inherit !important;
  }
  .hidden-print {
    display: none !important;
  }
}