@charset "utf-8";

@font-face {
    font-family: 'libre_baskervilleregular';
    src: url('../fonts/librebaskerville-regular-webfont.eot');
    src: url('../fonts/librebaskerville-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/librebaskerville-regular-webfont.woff2') format('woff2'),
         url('../fonts/librebaskerville-regular-webfont.woff') format('woff'),
         url('../fonts/librebaskerville-regular-webfont.ttf') format('truetype'),
         url('../fonts/librebaskerville-regular-webfont.svg#libre_baskervilleregular') format('svg');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'robotobold';
    src: url('../fonts/roboto-bold-webfont.eot');
    src: url('../fonts/roboto-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/roboto-bold-webfont.woff2') format('woff2'),
         url('../fonts/roboto-bold-webfont.woff') format('woff'),
         url('../fonts/roboto-bold-webfont.ttf') format('truetype'),
         url('../fonts/roboto-bold-webfont.svg#robotobold') format('svg');
    font-weight: normal;
    font-style: normal;

}

/*universal reset*/
* {
	margin: 0;
	padding: 0;
}
/*removes old blue outline when clicked on*/

*:focus {
	outline: none;
}

/*new box style */
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

/*float styles*/
.clearall {
	clear: both;
}
.left {
	float: left;
}
.right {
	float: right;
}

/*common styles*/
html, html a {
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
}
body {
	color: #343434;
	font-family: 'libre_baskervilleregular', serif;
	font-size: 100%;
	overflow-x: hidden;
}
body, html {
	height:100%;
	width:100%;
	min-height:400px;
	min-width: 320px;
}

/*Typography Styles*/
h1, h2, h3, h4, h5 {

}
h1 {
	font-family: 'libre_baskervilleregular', serif;
	font-size 3em;		
	text-align: center;
	text-transform: lowercase;
	margin: 1em 0;
	line-height: auto;
}
h2 {
	font-family: 'robotobold', sans-serif;
	font-size 2.25em;	
	text-align: left;
	text-transform: uppercase;
	margin: 0;
	line-height: auto;
	color: #8d8787;
}
h3 {
	font-family: 'robotobold', sans-serif;
	font-size 1.5em;	
	text-align: left;
	text-transform: none;
	margin: 0;
	line-height: auto;
}

/*font awesome styles*/
.fa {
	display: none !important;
	text-align: center;
	color: #8d8787;
}

/*Section Styled h1*/
section h1 {
	display: table;
	margin: 0 auto 75px auto;
	position: relative;
}
section h1 div {
	width: 100%;
	height: 1em;
	background: #e5e3e3;
	position: absolute;
	top:50%;
	left: 25%;
	z-index: -100;
}
a {
	-webkit-transition-duration: .25s;
	-moz-transition-duration: .25s;
	-ms-transition-duration: .25s;
	-o-transition-duration: .25s;
	transition-duration: .25s;
}
/*Section Styled button*/
a.button {
	display: block;
	position: relative;
	height: 44px;
	background: #80b99e;
	font-size: 18px;
	color: #fff;
	padding: 10px 30px;
	text-decoration: none;
	float: right;
	margin-right: 2.35%;
}
a.button::after {
	content: " ";
	height: 0;
	border-top: 22px solid transparent;
	border-bottom: 22px solid transparent;
	border-left: 22px solid #80b99e;
	position: absolute;
	right: -22px;
	top: 0;
}
a.button, a.button::after {
	-webkit-transition-duration: .25s;
	-moz-transition-duration: .25s;
	-ms-transition-duration: .25s;
	-o-transition-duration: .25s;
	transition-duration: .25s;
}
a.button:hover {
	background: #9ce4c2;
}
a.button:hover::after {
	border-left: 22px solid #9ce4c2;
}
a.button.space {
	margin-right: 1.5em;

}

/*nav style*/
nav {
	float:right;
	width: 50%;
}
nav ul.main_nav {
	display: none;
	list-style: none;
	text-align: left;
	background: #80b99e;
	overflow: auto;
	padding-right: 4.7%;
	font-size: .8em;
}
nav ul.main_nav li  {
	display: inline-block;

}
nav ul.main_nav li a {
	display: block;
	color: #fff;
	text-decoration: none;
	padding: 10px 10px;
	font-size: 1.125em;

}
nav ul.main_nav li a:hover {
	background: #9ce4c2;
}

/* slicknav*/

#menu {
	display: none;
}
.slicknav_menu {
  display: inline-block;
  padding: 0;
  margin: 0;
  z-index: 10000;
  background: #80b99e;
  position: fixed;
  top:60px;
  right:0;
  width:50%;
  text-align: right;
}
.slicknav_btn {
	background: none;
}
.slicknav_icon-bar {
}

/*page styles*/
#wrapper {
	max-width: 1280px;
	margin: 0 auto;
	position: relative;
	top: 0;
	left: 0;
	overflow: auto;
	background: #fff;
	z-index: 1;
}
#top {
	display: block;
	background: #fff;
	/*background: rgba(255,255,255,.5);*/
	position: fixed;
	width: 100%;
	min-width: 320px;
	max-width: 1280px;
	margin: 0 auto;
	z-index: 1000;
	top: 0;
}
header {
	width: 100%;
	overflow: auto;
}
header img {
	width: 33%;
	margin: 50px 2.35% 0 4.7%;
	float:left;
}
header a {
	margin-top: 20px;
	float:right;
	margin-right: 4.7%;
	margin-bottom: 20px;
	text-decoration: none;
	color: #343434;
	font-size: 1em;
	max-width: 25%;
}
@media screen and (max-width: 650px) {
	header a {
		font-size: .75em;
		margin-right: 20px;
	}
}
.acelablogo {
	width: 25%;
	float: left;
}
.acelablogo img {
	width: 100%;
}
@media screen and (max-width: 599px) {
	.acelablogo {
		width: 50%;
	}

}

.support {
	margin-right:10px;
}
header a:hover {
	color: #9ce4c2;
}
section {
	padding-top: 200px;
	overflow: auto;
}
section.last {
	padding-bottom: 100px;
}
.container {
	position: relative;
	width: 100%;
	overflow: auto;
	padding: 0 4.7%;
	margin-bottom: 75px;
}
.container h2 {
	margin-bottom:1em;
}
.container p {
	margin-bottom: 1em;
}
.logo {
	display: none;
}
.logo img {
	width: 100%;
	height: auto;
}
.content {
	width: 100%;
}
ul.contact_card {
	margin: 30px 0% 30px 4.7%;
	float: left;
	width: 90%;
	list-style: none;
	overflow: auto;
}
ul.contact_card li h3 {
	margin-bottom: 1em;
}
ul.contact_card li {
	margin-bottom: .5em;
	overflow: auto;
}
ul.contact_card li a {
	text-decoration: none;
	color: #343434;

}
ul.contact_card li a:hover {
	color: #9ce4c2;
}
footer {
	background: #80b99e;
	color: #fff;
	padding: 15px 4.7%;
	font-size: .8em;
}
footer a {
	text-decoration: underline;
	color: #fff;

}
footer a:hover {
	text-decoration: underline;
	color: #9ce4c2;
}
@media screen and (min-width: 600px) {
.slicknav_menu {
  display: none;
}

nav ul.main_nav {
	display:block;
	font-size: .9em;
	text-align: right;
}
nav ul.main_nav li a {
	padding: 10px 15px;
}
header img {
	width: 15.6%;
}
nav {
	width: 75%;
}
.logo {
	display: block;
	width:19.5%;
	float: left;
	margin-right: 4.7%;
}
.content {
	width: 75%;
	float: left;
}
ul.contact_card {
	min-height:150px;
	width: 45%;
}
a.button.space {
	margin-right: 2em;

}
}

@media screen and (min-width: 900px) {
ul.contact_card {
	width: 28%;
}
nav ul.main_nav {
	font-size: 1em;
}
}

@media screen and (min-width: 1200px) {


}
.flex {
	display: flex;
	flex-wrap: wrap;
	align-content: stretch;
	margin-bottom: 1em !important;
}
.flex h2 {
	width: 100%;
}
.filetable {
	position: relative;
	width:30%;
	border: 1px solid #80b99e;
	padding: 2em;
	margin: 0 1.5% 1.5em;
	text-align: center;
	font-family: 'roboto', sans-serif;	
}
@media screen and (max-width: 1024px) {
	.filetable {
		width: 48%;
		margin: 0 1% 1.5em;
	}
}
@media screen and (max-width: 690px) {
	.filetable {
		width: 100%;
		margin: 0 0 1.5em;
	}
}
	
.filetable img{
	width: auto;
	height: 100%;
	padding-bottom: 1em;

}
.filehead {
	height: 60px;
}
.filedata {
	width: 50%;
	float: left;
}
.filetable .button {
	display: inline-block;;
	margin: 0;
	float: none;
	font-size: .875em;
}
.grey {
	background: #8d8787;
	border: 1px solid #8d8787;
}
.taglogo::before,
.taglogo-g::before,
.tagicon::before,
.tagicon-g::before,
.tagdoc::before  {
	content: "logo";
	position: absolute;
	width:100px;
	top: -20px;
	left: -1px;
	background: white;
	border-top: 1px solid #80b99e;
	border-left: 1px solid #80b99e;
	border-right: 1px solid #80b99e;
	border-top-right-radius: 8px;
	border-top-left-radius: 8px;	
	font-size: 12px;
	padding-top: 5px;
}
.taglogo-g::before {
	content:"logo (white)";
	color: white;	
	background: #8d8787;	
	border: 1px solid #8d8787;
}
.tagicon::before {
	content: "icon";
}
.tagicon-g::before {
	content: "icon (white)";
	color: white;	
	background: #8d8787;	
	border: 1px solid #8d8787;		
}
.tagdoc::before {
	content: "document";
}