@charset "UTF-8";
/* CSS Document */
/* jQuery at Responsive Accordion or Tabs - v1.0.4 - 2016-02-24
* https://github.com/stazna01/jQuery-rt-Responsive-Tables
*
* This plugin is built heavily upon the work by Chris Coyier
* found at http://css-tricks.com/responsive-data-tables/
*
* Copyright (c) 2016 Nathan Stazewski; Licensed MIT */

.aria-only {
	position: absolute;
	left: -10000px;
	overflow:hidden;
	}
	
.at-accordion-or-tabs {
	position: relative; 
	margin: 1em 0 0 0;
	border-left: 5px double #ccc;
	border-right: 5px double #ccc;
	border-top: 7px solid #ebebeb;
	border-bottom: 7px solid #ebebeb;
	width: 100%;
	padding: 0;
	clear: both;
	/*visibility: hidden; */
	display: inline-block;
}

.at-accordion-or-tabs > li {
	list-style: none;
	padding: 0 !important;
}

.at-accordion-or-tabs > li > a {
	display: block;
	background: #f7f7f7;
	text-decoration: none;
	color: #666;
	padding: 0.5em;
	font-size: 2em;
	font-weight: normal;
	border-top: 3px #fff solid;
}

.at-accordion-or-tabs > li > a:hover, .at-accordion-or-tabs > li > a.active {
	background: #ffffff;
	color: #156237;
}

.at-accordion-or-tabs > li > section {
	display: none;
	background: #ffffff;
	overflow: hidden;
	position: relative;
	width: 98%;
	margin: 0 0 2em 0;
	padding: 1% 3%;
	box-sizing: border-box;
	border-top: 2px dotted #ccc;
	border-bottom: 2px dotted #ccc;
}

.no-js .at-accordion-or-tabs > li > section {
  display: block;
}

.at-accordion-or-tabs .at-tab-one-pixel-fix-left, .at-accordion-or-tabs .at-tab-one-pixel-fix-right {
	display: none;
	height:1px;
	width:1px;
	background-color:#cccccc;
	position:absolute;
	left: -1px;
	bottom: -1px;
	}
	
.at-accordion-or-tabs .at-tab-one-pixel-fix-right {
	left:auto;
	right: -1px;
	}

.at-accordion-or-tabs.at-tabs {
	border: none;
	}
	
.at-accordion-or-tabs.at-tabs > li {
	display: inline;
	border: none;
	}
	
.at-accordion-or-tabs.at-tabs > li > a {
	display: inline-block;
	border: 1px #cccccc solid;
	z-index:98;
	position: relative;
	border-bottom-color: #ffffff;
	border-radius: 0px;
	box-sizing: border-box;
	font-size: 1.5em;
	}
	
.at-accordion-or-tabs.at-tabs > li > a.active {
	z-index:100;
	background-color: #ffffff;
	color: #ee3624;
	}
	
.at-accordion-or-tabs.at-tabs .at-tab-one-pixel-fix-left, .at-accordion-or-tabs.at-tabs .at-tab-one-pixel-fix-right {
	display:inline-block;
	}
	
.at-accordion-or-tabs.at-tabs > li > section {
	float: left;
	top: -1px;
	left: 0;
	margin-bottom: 10px;
	border: 1px #cccccc solid;
	z-index: 99;
	border-radius: 0px;
	box-sizing: border-box;
	box-shadow: 3px 3px #c9c9c9;
	}
	
@media only screen and (max-width:600px){
	
.at-accordion-or-tabs > li > a {
	padding: 1em;
	font-size: 1em;
}

.at-accordion-or-tabs > li > section {
	width: 100%;
}

}

@media (min-width:600px) and (max-width:800px){
	
.at-accordion-or-tabs > li > a {
	padding: 1.2em;
	font-size: 1em;
}

.at-accordion-or-tabs > li > section {
	width: 100%;
}

}

@media (min-width:800px) and (max-width:1000px){
	
.at-accordion-or-tabs > li > a {
	padding: 1em;
	font-size: 1.2em;
}

.at-accordion-or-tabs > li > section {
	width: 100%;
}


}