@charset "iso-8859-1";
/* CSS Document */
/*------------------------------------------------------
CSS Created:	02/03/2015
CSS Author:		Alessandro Avallone
---------------------------------------------* GENERAL */
html, body {
	font-family: 'Archivo Narrow', sans-serif;
	padding:0;
	margin:0;
	height:100%;
	background-color:#ec8301;
	}
.margin_zeroauto {
	margin:0 auto !important;
	position:relative !important;
}
.clear {
	clear:both;
}
img {
	border:0;
}
.hidden {
	opacity:0;	
}
.overflow {
	overflow:hidden;
}
/*--------------------------------------------* HEADER */
#header {
	width:100%;
	background-color:#065ca2;
	padding:15px 0;
	height:110px;
	box-sizing:border-box;
	position:fixed;
	left:0;
	top:0;
	z-index:1000;	
    -webkit-transition: height 500 ease-out;
    -moz-transition: height 500ms ease-out;
    -o-transition: height 500ms ease-out;
    transition: height 500ms ease-out;
	border-bottom:25px solid #FFF;
}
.loading {
	height:100% !important;
	background:url(../images/spin.svg) center no-repeat;
}
#header #logo {
	float:left;
}
#header #navigation {
	float:right;
	padding:15px 0 0 0;
}
#header #navigation ul {
	list-style:none;
	margin:0;
	padding:0;
}
#header #navigation ul li {
	float:left;
	margin-left:30px;
	font-size:18px;
}
#header #navigation ul li a {
	font-size:18px;
	text-decoration:none;
	color:#FFF;
}
/*--------------------------------------------* CONTENT */
#content {
	width:100%;
	background-color:#FFF;
	min-height:300px;
	font-size:18px;
	box-sizing:border-box;
}
#content a {
	text-decoration:none;
	color:#EC8301;	
}
#section {
	position:relative;
	padding:100px 0 35px 0;	
}

.box {
	border:1px solid #e8e8e8;
	box-sizing:border-box;
	-webkit-box-shadow: 0px 5px 1px 0px rgba(50, 50, 50, 0.1);
	-moz-box-shadow:    0px 5px 1px 0px rgba(50, 50, 50, 0.1);
	box-shadow:         0px 5px 1px 0px rgba(50, 50, 50, 0.1);
	text-align:center;
	margin:20px auto;
	line-height:24px;
	background-color:#FAFAFA;
	padding:10px;
}

.icon {
	padding:10px 0 10px 60px;
	width:100%;
	box-sizing:border-box;
	background-position:10px center;
	background-repeat:no-repeat;	
}

#search input[type="text"] {
	font-family: 'Archivo Narrow', sans-serif;
	font-size:24px;	
	border:1px solid #e9e9e9;
	background-color:#fff;	
	background-image:url(../images/search.png);
}

#download {
	background-image:url(../images/download.png);
}

.view_button {
	box-sizing:border-box;
	background:none;
	font-size:18px;
	font-weight:600;
	text-align:center;
	color:#FFF;
	padding:10px 40px;
	background-color:#065da1;
	border:none;
	cursor:pointer;
	margin:0 auto;
    -webkit-transition: background-color 250 ease-out;
    -moz-transition: background-color 250ms ease-out;
    -o-transition: background-color 250ms ease-out;
    transition: background-color 250ms ease-out;
}

.view_button:hover {
	background-color:#e98504;
}

.view_button.ajax {
	display: none;
}

.autocomplete-suggestions {
	font-size:24px;
	color:#e98504;
	background-color:#fff;
	box-sizing:border-box;
	padding:10px;
	border-bottom:1px solid #999;
	border-left:1px solid #999;
	border-right:1px solid #999;	
	left:calc((100% - 300px) / 2);
}
.filter select {
	font-family: 'Archivo Narrow', sans-serif;
	font-size:24px;
	border:1px solid #e9e9e9;
	background-color:#fff;
	padding:10px;
	width:100%;
	box-sizing:border-box;
}
/*--------------------------------------------* TABLE */
.table_header {
	color:#fff;
}
.table_header td {
	border:1px solid #004174;
	background-color:#005EA8 !important;	
}
.header_fixed {
	position:fixed;
	z-index:100;
	top:110px;
}
#table_content {
	color:#000;
	font-weight:400;
	background-color:#fff !important;
}
#table_content ul {
	margin:0;
}
#table_content td {
	border:1px solid #e9e9e9;
}
#table_content table tr:nth-child(odd) {
	background-color:#FAFAFA;
}
.table_div {
	display:none;
}
table {
	width:100%;
	border-collapse:separate;
}
td {
    padding: 10px;
	vertical-align:top;	
	box-sizing:border-box;
	overflow:hidden;
}
/*--------------------------------------------* 4 COL */
.table_4col td {
	width:20%;
}
.table_4col .td_large {
	width:40% !important;
}
/*--------------------------------------------* 3 COL */
.table_3col td {
	width:20%;
}
.table_3col .td_large {
	width:40% !important;
}
/*--------------------------------------------* 2 COL */
.table_2col td {
	width:50%;
}

.table_2col_asy td {
	width:20% !important;
}

.table_2col_asy .td_large {
	width:80% !important;
}

#contact_info {
	width:200px;
	float:left;
}
#contact_map {
	width:500px;
	float:right;
}
/*--------------------------------------------* FOOTER */
#footer {
	text-align:center;
	background-color:#ec8301;
	color:#FFF;
	font-size:18px;
}
#footer a {
	text-decoration:none;
	color:#000;
}
#footer h2 {
	font-weight:normal;
	font-size:36px;
}
/*-------------------------------------------* MEDIAQUERIES */
@media screen and (min-width: 768px) {
.margin_zeroauto {
	width:760px !important;
}
table {
	font-size:18px;
}
.header_fixed {
	width:760px !important;
}
.loading {
	background-size:10%;
}
}
@media screen and (min-width: 320px) and (max-width: 767px) {
#header {
	height:140px;
}
#header #logo {
	float:none;
	margin:0 auto;
	text-align:center;
}
#header #logo img {
	width:75%;
	height:75%;
}
#header #navigation {
	width:300px;
	margin:0 auto;
	float:none;
	padding:15px 0 0 0;
}
#header #navigation ul li {
	width:100px;
	text-align:center;
	margin:0;
}
.margin_zeroauto {
	width:320px !important;
}
.autocomplete-suggestions {
	top:287px !important;	
}
table {
	font-size:14px;
}
.header_fixed {
	width:320px !important;
	top:140px;
}
.loading {
	background-size:25%;
}
#section {
	padding-top:120px;
	padding-left:10px;
	box-sizing:border-box;
}
#contact_info {
	width:100%;
	float:none;
}
#contact_map {
	width:100%;
	float:none;
}
}