@charset "UTF-8";
/* CSS Document */

html { 
min-height: 100%; 
margin-bottom: 1px; 
}

#Masterbox_outer {
	height: 100%;
	width: 900px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	float: none;
	background-color: #FFF;
}

#Masterbox_dropshadow {
	float: left;
	height: 100%;
	width: 900px;
	background-color: #FFF;
	box-shadow: 0px 0px 18px #888888;
}
#Headerbox {
	float: left;
	height: 180px;
	width: 900px;
	background-color: #FFF;
}
#Headerbox_block1 {
	float: left;
	height: 180px;
	width: 115px;
	background-image: url(images/NAFD_Logo.jpg);
}
#Headerbox_block2 {
	float: left;
	height: 135px;
	width: 323px;
	padding-top: 45px;
	padding-left: 20px;
}
#Headerbox_block3 {
	float: left;
	height: 180px;
	width: 210px;
	background-image: url(images/NAFD_Logo.jpg);
	padding-top: 0px;
}
#Headerbox_block4 {
	float: left;
	height: 75px;
	width: 343px;
	padding-top: 0px;
	text-align: center;
	display: block;
}
#Headerbox_block4 a{
	color:inherit;
	text-decoration: none;
}

.centre {
	float: left;
	height: 180px;
	width: 210px;
}
#Footerbox {
	float: left;
	height: 31px;
	width: 900px;
	background-color: #636466;
	padding-top: 9px;
}
#Contentbox {
	float: left;
	height: 100%;
	width: 900px;
	padding-top: 40px;
	background-color: #FFF;
}
#Popup_contentbox {
	float: left;
	height: 100%;
	width: 840px;
	padding-top: 40px;
	padding-bottom: 20px;
	background-color: #FFF;
	margin-right: 30px;
	margin-left: 30px;
}
#Navbar {
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	height: 100%;
	width: 900px; 
	background-color: #E6E7E8;
	text-align: center;
}

#Navbar_inside {
	height: 40px;
	max-width: 100%;
	min-width: 100%;
	text-decoration: none;
	background-color: #636466;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	display:inline-block;
	margin-bottom: 5px;
}

@media(min-width:1000px){
        #Navbar_inside {
    	max-width:180px;
		min-width: 180px;
		text-align: center;
		margin-right: auto;
		margin-left: auto;
		display:inline-block;
		margin-bottom: 0px;
			
        }
    }

.centred_image_top {
	float: none;
	margin-right: auto;
	margin-left: auto;
	display: block;
	margin-top: 20px;
	background-color: #FFF;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.centred_image {
	float: none;
	margin-right: auto;
	margin-left: auto;
	display: block;
	margin-top: 20px;
	background-color: #FFF;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-bottom: 20px;
}
.left_image {
	float: left;
	margin-right: auto;
	margin-left: auto;
	display: block;
	background-color: #FFF;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	padding-left: 60px;
	padding-right: 30px;
}


/* Start of Modal */

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  -webkit-animation-name: fadeIn; /* Fade in the background */
  -webkit-animation-duration: 0.4s;
  animation-name: fadeIn;
  animation-duration: 0.4s
}

/* Modal Content */
.modal-content {
  position: fixed;
  top: 0;
  background-color: #fefefe;
  width: 100%;
  -webkit-animation-name: slideIn;
  -webkit-animation-duration: 0.4s;
  animation-name: slideIn;
  animation-duration: 0.4s; 
}


/* The Close Button */
.close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
	height:	32px;
	width: 890px;
	padding-bottom: 2px;
	padding-right: 70px;
	padding-left: 60px;
  background-color:#636466;
  color: white;
  margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	float: none;
}

.modal-body {
	width: 900px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	float: none;
	max-height: calc(100vh - 210px);
	overflow-y: auto;
	scroll-behavior: auto;
}

.modal-footer {
	height:	25px;
	width: 900px;
  background-color: #636466;
  color: white;
  margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	float: none;
	padding-left: 60px;
	padding-right: 70px;
}

/* Add Animation */
@-webkit-keyframes slideIn {
  from {top: 0px; opacity: 0} 
  to {top: 0; opacity: 1}
}

@keyframes slideIn {
  from {top: 0px; opacity: 0}
  to {top: 0; opacity: 1}
}

@-webkit-keyframes fadeIn {
  from {opacity: 0} 
  to {opacity: 1}
}

@keyframes fadeIn {
  from {opacity: 0} 
  to {opacity: 1}
}

/* End of Modal */
.font_dosis_footer {
	font-family: 'Dosis', sans-serif;
	font-size: 1em;
	color: #FFF;
	text-align: center;
	letter-spacing: .1em;
}
.font_dosis_footer_green {
	font-family: 'Dosis', sans-serif;
	font-size: 1em;
	color: #7ACCC8;
	text-align: center;
	letter-spacing: 0.1em;
}
.font_dosis_popuptext {
	font-family: 'Dosis', sans-serif;
	font-size: 1em;
	color: #636466;
	text-align: left;
	letter-spacing: 0.1em;
	padding-left: 15px;
}
.font_dosis_popuptext_centre {
	font-family: 'Dosis', sans-serif;
	font-size: 3vmin;
	color: #636466;
	text-align: center;
	letter-spacing: 0.1em;
	padding-left: 15px;
}
.font_dosis_popuptext_right {
	font-family: 'Dosis', sans-serif;
	font-size: 1em;
	color: #636466;
	text-align: right;
	letter-spacing: 0.1em;
	padding-right: 30px;
	padding-left: 30px;
}
.font_dosis_popuptext_left {
	font-family: 'Dosis', sans-serif;
	font-size: 1em;
	color: #636466;
	text-align: left;
	letter-spacing: 0.1em;
	padding-right: 30px;
	padding-left: 30px;
}
.font_dosis_popuptext_it_left_small {
	font-family: 'Dosis', sans-serif;
	font-size: 0.75em;
	color: #636466;
	text-align: left;
	letter-spacing: 0.1em;
	padding-right: 30px;
	padding-left: 30px;
	line-height: 1em;
	font-style: italic;
}
.font_dosis_popuptext_it_left_smallwh {
	font-family: 'Dosis', sans-serif;
	font-size: 0.75em;
	color: #FFF;
	text-align: left;
	letter-spacing: 0.1em;
	padding-right: 30px;
	padding-left: 30px;
	line-height: 1em;
	font-style: italic;
}
.font_dosis_popuptext_green {
	font-family: 'Dosis', sans-serif;
	font-size: 2.5vmin;
	color: #7ACCC8;
	text-align: center;
	letter-spacing: 0.1em;
	padding-right: 60px;
	padding-left: 60px;
}
.font_dosis_maintext {
	font-family: 'Dosis', sans-serif;
	font-size: 3vmin;
	color: #636466;
	text-align: center;
	letter-spacing: 0.1em;
	padding-right: 60px;
	padding-left: 60px;
	text-decoration: none;
}
.font_dosis_smallprint {
	font-family: 'Dosis', sans-serif;
	font-size: 2.5vmin;
	color: #636466;
	text-align: center;
	letter-spacing: 0.1em;
	padding-right: 60px;
	padding-left: 60px;
}
.font_dosis_vsmallprint {
	font-family: 'Dosis', sans-serif;
	font-size: 1.5vmin;
	color: #636466;
	text-align: center;
	letter-spacing: 0.1em;
	padding-right: 60px;
	padding-left: 60px;
}
.font_dosis_maintext_link {
	font-family: 'Dosis', sans-serif;
	font-size: 3vmin;
	color: #636466;
	text-align: center;
	letter-spacing: 0.1em;
	font-weight: bold;
	text-decoration: none;
}
.font_dosis_maintext_link_reg {
	font-family: 'Dosis', sans-serif;
	font-size: 1em;
	color: #636466;
	text-align: center;
	letter-spacing: 0.1em;
	font-weight: normal;
	text-decoration: none;
}
.font_dosis_maintext_left {
	font-family: 'Dosis', sans-serif;
	font-size: 3vmin;
	color: #636466;
	text-align: left;
	letter-spacing: 0.1em;
	padding-left: 60px;
	padding-right: 60px;
}
.font_dosis_header1 {
	font-family: 'Dosis', sans-serif;
	font-size: 1em;
	color: #636466;
	text-align: left;
	letter-spacing: 0.05em;
	line-height: 0.3em;	
}
.font_dosis_header1_small {
	font-family: 'Dosis', sans-serif;
	font-size: .8em;
	color: #636466;
	text-align: center;
	letter-spacing: 0.05em;
	line-height: 0.3em;
}
.font_dosis_header1_red {
	font-family: 'Dosis', sans-serif;
	font-size: 0.8em;
	color: #C9234A;
	text-align: center;
	letter-spacing: 0.05em;
	line-height: 0.3em;
}
.font_dosis_header2 {
	font-family: 'Dosis', sans-serif;
	font-size: 1.6em;
	color: #636466;
	text-align: left;
	letter-spacing: 0.05em;
	font-weight: 500;
	line-height: .3em;
}
.font_dosis_header3 {
	font-family: 'Dosis', sans-serif;
	font-size: 3vmin;
	color: #636466;
	text-align: center;
	letter-spacing: 0.05em;
	font-weight: 500;
	text-decoration: none;
}
.font_dosis_header3_menu {
	font-family: 'Dosis', sans-serif;
	font-size: 1.5em;
	color: #636466;
	text-align: center;
	letter-spacing: 0.05em;
	font-weight: 500;
	text-decoration: none;
}
.font_dosis_header3_red {
	font-family: 'Dosis', sans-serif;
	font-size: 1.45em;
	color: #C9234A;
	text-align: center;
	letter-spacing: 0.05em;
	font-weight: 500;
	line-height: 0.5em;
}
.font_dosis_header3_green {
	font-family: 'Dosis', sans-serif;
	font-size: 3.5vmin;
	color: #7ACCC8;
	text-align: center;
	letter-spacing: 0.05em;
	font-weight: 500;
	line-height: 0.5em;
}
.font_dosis_header3_green_left {
	font-family: 'Dosis', sans-serif;
	font-size: 3vmin;
	color: #7ACCC8;
	text-align: left;
	letter-spacing: 0.05em;
	font-weight: 500;
	line-height: 0.5em;
}
.font_dosis_header4 {
	font-family: 'Dosis', sans-serif;
	font-size: 3vmin;
	color: #636466;
	text-align: center;
	letter-spacing: 0.05em;
	font-weight: 700;
	padding-right: 60px;
	padding-left: 60px;
}
.font_dosis_header4_menu {
	font-family: 'Dosis', sans-serif;
	font-size: 1.2em;
	color: #636466;
	text-align: center;
	letter-spacing: 0.05em;
	font-weight: 700;
}
.font_dosis_header4_menuit {
	font-family: 'Dosis', sans-serif;
	font-size: 1.2em;
	color: #636466;
	text-align: center;
	letter-spacing: 0.05em;
	font-weight: 700;
	font-style: italic;
}
.font_dosis_header4_itgr {
	font-family: 'Dosis', sans-serif;
	font-size: 3vmin;
	color: #7ACCC8;
	text-align: center;
	letter-spacing: 0.05em;
	font-weight: 700;
	font-style: italic;
	padding-right: 60px;
	padding-left: 60px;
}
.font_dosis_header4_it {
	font-family: 'Dosis', sans-serif;
	font-size: 3vmin;
	color: #636466;
	text-align: center;
	letter-spacing: 0.05em;
	font-weight: 500;
	font-style: italic;
	padding-right: 60px;
	padding-left: 60px;
}
.font_dosis_header4_red {
	font-family: 'Dosis', sans-serif;
	font-size: 1.2em;
	color: #C9234A;
	text-align: center;
	letter-spacing: 0.05em;
	font-weight: 500;
	line-height: 0.4em;
}

#Navbar_inside a:link {
  font-family: 'Dosis', sans-serif;
	font-size: 1em;
	color: #FFF;
	text-align: center;
	letter-spacing: 0.1em;
	text-decoration: none;
}

#Navbar_inside a:visited {
  font-family: 'Dosis', sans-serif;
	font-size: 1em;
	color: #FFF;
	text-align: center;
	letter-spacing: 0.1em;
	text-decoration: none;
}

#Navbar_inside a:hover {
  font-family: 'Dosis', sans-serif;
	font-size: 1em;
	color: #7ACCC8;
	text-align: center;
	letter-spacing: 0.1em;
	text-decoration: none;
}

#Navbar_inside a:active {
  font-family: 'Dosis', sans-serif;
	font-size: 1em;
	color: #FFF;
	text-align: center;
	letter-spacing: 0.1em;
	text-decoration: none;
}  
#content_imageleft_main {
	float: left;
	height: 250px;
	width: 900px;
}
#sectionheader {
	float: left;
	height: 75px;
	width: 900px;
}
#content_imageleft_text {
	float: left;
	height: 250px;
	width: 650px;
}
#content_imageleft {
	float: left;
	height: 240px;
	width: 250px;
	padding-top: 10px;
}
#costs_imagebox_left {
	float: left;
	height: 550px;
	width: 200px;
	margin-bottom: 30px;
	margin-right: 20px;
	margin-left: 10px;
}
#costs_imagebox_left2 {
	float: left;
	height: 680px;
	width: 200px;
	margin-bottom: 30px;
	margin-right: 20px;
	margin-left: 10px;
}
#costs_imagebox_left3 {
	float: left;
	height: 750px;
	width: 200px;
	margin-bottom: 30px;
	margin-right: 20px;
	margin-left: 10px;
}
#costs_imagebox_left4 {
	float: left;
	height: 1000px;
	width: 200px;
	margin-bottom: 30px;
	margin-right: 20px;
	margin-left: 10px;
}
#costs_imagebox_left5 {
	float: left;
	height: 1100px;
	width: 200px;
	margin-bottom: 30px;
	margin-right: 20px;
	margin-left: 10px;
}
#costs_imagebox_left6 {
	float: left;
	height: 500px;
	width: 200px;
	margin-bottom: 30px;
	margin-right: 20px;
	margin-left: 10px;
}
#costs_tablebox1 {
	height: 100%;
	width: 530px;
	float: left;
	border-top-width: 1.5px;
	border-left-width: 1.5px;
	border-top-style: solid;
	border-left-style: solid;
	border-top-color: #7ACCC8;
	border-right-color: #7ACCC8;
	border-bottom-color: #7ACCC8;
	border-left-color: #7ACCC8;
}
#costs_tablebox1_reduced {
	height: 100%;
	width: 260px;
	float: left;
	border-top-width: 1.5px;
	border-left-width: 1.5px;
	border-top-style: solid;
	border-left-style: solid;
	border-top-color: #7ACCC8;
	border-right-color: #7ACCC8;
	border-bottom-color: #7ACCC8;
	border-left-color: #7ACCC8;
	padding-right: 270px;
	padding-bottom: 20px;
}
#costs_tablebox1_foot {
	height: 100%;
	width: 530px;
	float: left;
	border-top-width: 1.5px;
	border-left-width: 1.5px;
	border-top-style: solid;
	border-left-style: solid;
	border-top-color: #7ACCC8;
	border-right-color: #7ACCC8;
	border-bottom-color: #7ACCC8;
	border-left-color: #7ACCC8;
	margin-bottom: 20px;
	border-bottom-width: 1.5px;
	border-bottom-style: solid;
}
#costs_tablebox1_deep {
	height: 95px;
	width: 530px;
	float: left;
	border-top-width: 1.5px;
	border-left-width: 1.5px;
	border-top-style: solid;
	border-left-style: solid;
	border-top-color: #7ACCC8;
	border-right-color: #7ACCC8;
	border-bottom-color: #7ACCC8;
	border-left-color: #7ACCC8;
}
#costs_tablebox1_mid {
	height: 70px;
	width: 530px;
	float: left;
	border-top-width: 1.5px;
	border-left-width: 1.5px;
	border-top-style: solid;
	border-left-style: solid;
	border-top-color: #7ACCC8;
	border-right-color: #7ACCC8;
	border-bottom-color: #7ACCC8;
	border-left-color: #7ACCC8;
}
#costs_tablebox2 {
	height: 100%;
	width: 80px;
	float: left;
	border-top-width: 1.5px;
	border-right-width: 1.5px;
	border-top-style: solid;
	border-right-style: solid;
	border-top-color: #7ACCC8;
	border-right-color: #7ACCC8;
	border-bottom-color: #7ACCC8;
	border-left-color: #7ACCC8;
	border-left-width: 1.5px;
	border-left-style: solid;
}
#costs_tablebox2_nl {
	height: 100%;
	width: 80px;
	float: left;
	border-right-width: 1.5px;
	border-left-width: 1.5px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #7ACCC8;
	border-left-color: #7ACCC8;
}
#costs_tablebox2_reduced {
	height: 100%;
	width: 40px;
	float: left;
	border-top-width: 1.5px;
	border-right-width: 1.5px;
	border-left-width: 1.5px;
	border-top-style: solid;
	border-right-style: solid;
	border-left-style: solid;
	border-top-color: #7ACCC8;
	border-right-color: #7ACCC8;
	border-bottom-color: #7ACCC8;
	border-left-color: #7ACCC8;
	padding-bottom: 20px;
	padding-right: 40px;
}
#costs_tablebox2_foot {
	height: 100%;
	width: 80px;
	border: 1.5px solid #7ACCC8;
	float: left;
	margin-bottom: 20px;
}
#costs_tablebox2_foot_nl {
	height: 100%;
	width: 80px;
	float: left;
	margin-bottom: 20px;
	border-right-width: 1.5px;
	border-left-width: 1.5px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #7ACCC8;
	border-left-color: #7ACCC8;
}
#costs_tablebox2_deep {
	height: 95px;
	width: 80px;
	float: left;
	border-top-width: 1.5px;
	border-right-width: 1.5px;
	border-left-width: 1.5px;
	border-top-style: solid;
	border-right-style: solid;
	border-left-style: solid;
	border-top-color: #7ACCC8;
	border-right-color: #7ACCC8;
	border-bottom-color: #7ACCC8;
	border-left-color: #7ACCC8;
}
#costs_tablebox2_deep_nl {
	height: 95px;
	width: 80px;
	float: left;
	border-right-width: 1.5px;
	border-left-width: 1.5px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #7ACCC8;
	border-left-color: #7ACCC8;
}
#costs_tablebox2_mid {
	height: 70px;
	width: 80px;
	float: left;
	border-top-width: 1.5px;
	border-right-width: 1.5px;
	border-left-width: 1.5px;
	border-top-style: solid;
	border-right-style: solid;
	border-left-style: solid;
	border-top-color: #7ACCC8;
	border-right-color: #7ACCC8;
	border-bottom-color: #7ACCC8;
	border-left-color: #7ACCC8;
}
#costs_tablebox2_mid_nl {
	height: 70px;
	width: 80px;
	float: left;
	border-right-width: 1.5px;
	border-left-width: 1.5px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #7ACCC8;
	border-left-color: #7ACCC8;
}
#map {
        width: 100%;
        height: 400px;
        background-color: grey;
}
#footbox {
	float: left;
	height: 100%;
	width: 900px;
	padding-top: 30px;
}
#footbox_index {
	float: left;
	height: 70px;
	width: 900px;
	padding-top: 0px;
}

#Footbox a{
	color:inherit;
	text-decoration: none;
}


.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  font-family: 'Dosis', sans-serif;
	font-size: 3vmin;
	color: #636466;
	text-align: center;
	letter-spacing: 0.1em
}

.accordion_index {
  background-color: #7ACCC8;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  font-family: 'Dosis', sans-serif;
	font-size: 1.3em;
	color: #636466;
	text-align: center;
	letter-spacing: 0.1em
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
  background-color: #ccc;
}

.active_index, .accordion_index:hover {
  background-color: #636466;
    font-family: 'Dosis', sans-serif;
	font-size: 3vmin;
	color: #FFF;
	text-align: center;
	letter-spacing: 0.1em
  
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  background-color: white;
  display: none;
  overflow: hidden;
}

.accordion:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #777;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}

.accordion_index:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #FFF;
  float: right;
  margin-left: 5px;
}

.active_index:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}

#buyonline_outer {
	background-color: #7ACCC8;
	margin-right: 50px;
	margin-left: 50px;
	padding-top: 5px;
	padding-right: 50px;
	padding-bottom: 20px;
	padding-left: 50px;
}
#buyonline_inner {
	height: 50px;
	width: 150px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 0px;
}

table, th, td {
  border: 1px solid black;
  border-color: #7ACCC8;
  }
  
table {
	border-collapse: collapse;
	width: 610px;
}

th, td {
  padding: 15px;
  font-family: 'Dosis', sans-serif;
  font-size: 1em;
  color: #636466;
  text-align: left;
  letter-spacing: 0.1em;
}
