/* 
  ------------------------------------------------
  Copyright (c) 2013 Beltone University
  www.beltoneuniversity.com
  ------------------------------------------------
*/

body {
	font-family: "Segoe UI", Optima, Helvetica, Arial, sans-serif;
	color: #005A9C;
	background-color: #FFFFFF;
	margin: 0px;
	padding: 0px;
	font-size: 1em;
	padding-bottom: 4em;
}
img {
	vertical-align: bottom;
}
.masthead {
	height: 55px;
	text-align: left;
	background-color: #FFFFFF;
	position: relative;
	z-index: 10;
	padding: 0px 10px 10px 10px;
}
.masthead img {
	float: left;
}
.masthead h1 {
	text-align: right;
	text-shadow: 2px 2px 2px #8D8D8D;
	color: #005A9C;
	margin-top: 10px;
	float: right;
}
.masthead h3 {
	text-align: right;
	color: #8D8D8D;
	font-size: 14px;
	clear: right;
}
.content-wrapper {
	margin: 4em 1.25em 0em 1.25em;
	overflow: hidden;
}
.columns-wrapper {
	overflow: hidden;
	background-color: #FFF;
	position: relative;
}
.columns-wrapper, .menu-top-wrapper {
	max-width: 1260px;
	margin: auto;
}

.main-content {
	float: left;
	width: 76%;
	margin-right: 1%;
}
.sidebar {
	width: 23%;
	float: left;
}
.sidebar .content {
	padding: 20px 20px;
	font-size: .9em;
	line-height: 1.5em;
	background-color: #7BA4C1;
	background-image: -webkit-linear-gradient(#7BA4C1, #FFF);
	background-image: linear-gradient(#7BA4C1, #FFF);
	border: 1px solid;
	border-color: #005A9C;
	border-radius: 5px;
}
.main-content .content{
	padding: 20px 30px;
	font-size: 1em;
	line-height: 1.5em;
	border: 1px solid;
	border-radius: 5px;
	border-color: #005A9C;
}

/*Heading styles*/
h1, h2, h3, h4 {
	margin: 30px 0px 0px 0px;
	font-family: Federo, "Segoe UI", Optima, Helvetica, Arial, sans-serif;
	font-weight: normal;
}
h1 { font-size: 1.5em; }
h2 { font-size: 1.35em; }
h3 { font-size: 1.25em; }
h4 { font-size: 1.1em; }

/*A utility rule assigned to the first heading to remove top margins.*/
.content h1:first-child,
.content h2:first-child,
.content h3:first-child,
.content h4:first-child {
	margin-top: 0px;
}
.sidebar h2{
	color:#000;
	text-shadow:2px 2px 2px #8D8D8D;
	padding-bottom:10px;
	text-align:center;
}

/*Make Image Scalable - Assign this class to any image to make it scale with the browser window size*/
img.scalable {
	height: auto !important;
	width: auto !important;
	max-width: 100%;
	border-radius: 5px;
}
.fancy {
	border: 1px solid rgba(255,255,255,.2);
	box-shadow: 0px 0px 30px rgba(0,0,0,.65);
}
.sidebar ul, .sidebar ol, .sidebar2 ul, .sidebar2 ol {
	margin: 0 0 0 .5em;
	padding: 0 0 0 .5em;
	line-height: normal;
}
.sidebar li, .sidebar2 li { 
	margin-bottom: 4px; 
}

/*Ordinary Link Styles*/
.content a {
	color: #000;
	text-decoration: none;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
}
.content a:hover, .content a:focus {
	color: #000;
	border-bottom-style: solid;
}
.footer a {
	color: #8C8C8C;
}
.footer a:hover, .footer a:focus { color: #FFF; }


/* Wrapper for responsive video */
.video-wrapper{
	position:relative;
	padding-bottom:26.25%;
	padding-top:30px;
	margin-bottom:50%;
	height:0px;
	overflow:visible;
}
.video-wrapper iframe, .video-wrapper object, .video-wrapper embed {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:150%;
}

/* Accordion Box definition */
.accordion {
	width:100%;
	overflow:hidden;
	margin:0px;
	color:#414141;
	padding:0px;
}
.accordion section{
	float:left;
	overflow:hidden;
	color:#333;
	cursor:pointer;
	background:#999;
	margin:3px;
}
.accordion section:hover{
	background:#005A9C;
}
.accordion section p{
	display:none;
}
.accordion section:after{
	position:relative;
	font-size:1em;
	color:#000;
	font-weight:bold;
}
.accordion section:nth-child(1):after{content:'1';}
.accordion section:nth-child(2):after{content:'2';}
.accordion section:nth-child(3):after{content:'3';}
.accordion section:nth-child(4):after{content:'4';}
.accordion section:nth-child(5):after{content:'5';}
.accordion section:target{
	background:#FFF;
	padding:15px;
}
.accordion section:target:hover{
	background:#FFF;
}
.accordion section:target h2{
	width:100%;
}
.accordion section:target h2 a{
	color:#333;
	padding:0px;
}
.accordion section:target p{
	display:block;
}
.accordion section h2 a{
	padding:25px 10px;
	display:block;
	font-size:1.2em;
	font-weight:normal;
	color:#EEE;
	text-decoration:none;
}

/* Horizontal accordion code  */
.horizontal section{
	width:5%;
	height:250px;
	-moz-transition:width 0.2s ease-out;
	-webkit-transition:width 0.2s ease-out;
	-o-transition:width 0.2s ease-out;
	transition:width 0.2s ease-out;
}

/* Position the number on the slide */
.horizontal section:after{
	top:140px;
	left:15px;
}

/* Header of closed slide  */
.horizontal section h2{
	-webkit-transform:rotate(90deg);
	-moz-transform:rotate(90deg);
	-o-transform:rotate(90deg);
	width:240px;
	position:relative;
	left:0px;
	top:0px;
}

/*  On mouse over open slider */
.horizontal :target{
	width:73%;
	height:230px;
}
.horizontal :target h2{
	top:0px;
	left:opx;
	-webkit-transform:rotate(0deg);
	-moz-transform:rotate(0deg);
	-o-transform:rotate(0deg);
	transform:rotate(0deg);
}

/* vertical accordion code */
.vertical section{ 
     width:100%; 
     height:40px; 
     -webkit-transition:height 0.2s ease-out;
     -moz-transition:height 0.2s ease-out;
     -o-transition:height 0.2s ease-out;
     transition:height 0.2s ease-out;
}

/*Set height of the slide*/
.vertical :target{ 
     height:100%; 
     width:97%;
}
.vertical section h2 { 
     position:relative; 
     left:0; 
     top:-15px; 
}
/*Set position of the number on the slide*/
.vertical section:after{ 
      top:-60px;
      left:810px;
}
.vertical section:target:after{ 
      left:-9999px;
}

/*The DIVs that contains the horizontal menu bar at the top of your page.*/
.menu-top-wrapper .p7DMM01 {
	background-color: transparent;
	border: none;
	box-shadow: none;
}
.top-navigation {
	background-color: #e2e2e2;
	box-shadow: 2px 5px 15px #8D8D8D;
	border-top: solid thin #005A9C;
	position: relative;
	z-index: 9;
}
.top-navigation:after {
	content: "\0020";
	font-size: 0px;
	display: inline;
	overflow: hidden;
	line-height: 0;
	clear: both;
}
/*The Footer*/
.footer {
	background-color: #E2E2E2;
	box-shadow: inset 0px 16px 2px rgba(255,255,255,.025);
	border-top: 1px solid #005A9C;
	padding: 15px 15px;
	font-size: 0.7em;
	color: #8C8C8C;
	text-align: center;
	clear: both;
	position: fixed;
	z-index: 999;
	top: auto;
	bottom: 0px;
	width: 100%;
}
.footer p.copyright {
	text-transform: uppercase;
	margin: 0px;
}


/*1 Column for Narrow Browser Windows and Smartphones in both orientations*/
@media only screen and (min-width: 0px) and (max-width: 700px) {
body {
	padding-bottom: 0px;
}
.footer {
	position: static;
	width: auto;
}
.content-wrapper, .columns-wrapper {margin: 0px; border: none;}
.sidebar, .main-content {
	width: auto;
	float: none;
	position: static;
}
.main-content .content, .sidebar .content {
	padding: 20px 10px;
	border-radius: 0px ;
	border: none;
	height: auto !important;
	max-height: 888678px;
}
.p7DMM01 ul a, .p7DMM01 ul a:hover, .p7DMM01 ul a:focus, .p7DMM01 ul a.open {
	border-bottom: 1px solid;
	border-color: #89AEC9;
}
.p7DMM01 ul li:last-child a {
	border-bottom: none;
}
}
/*Medium windows - reduce padding content padding*/
@media only screen and (min-width: 700px) and (max-width: 1280px) {
.main-content .content, .sidebar .content {padding: 20px 15px;}
.top-navigation {padding: 0px 10px;}
.content-wrapper {margin-left: 10px; margin-right: 10px;}
}
