@charset "utf-8";
/* CSS Document */
/* Styles for HEADERS: pre-header, header {logo & navbar) and hero-image */

.header,
.logo-spacer {
	width: 100%;
	position: relative;
}
.logo-spacer {
	display: none;     /*Comment this out to make Header stick correctly (First of 2 changes to this stylesheet)*/
}
.header {
	/*position: fixed;*/    /*Un-comment this to make Header stick (Second of 2 changes to this stylesheet)*/
	top: 0px;
	background-color: #fff;
	z-index: 10;
	border-bottom-color: #2a2a2a;
	border-bottom-width: thin;
}
.logo-holder {
	width: 45%; /**/
	max-width: 500px;
	float: left;
}
.topnav {
	float: right;
	display: block;
	position: relative;
	margin-top: 30px;
}
.topnav a {
	color: #2a2a2a;
	display: block;
	float: left;
	padding: 2px 6px;
	text-decoration: none;
	border-radius: 5px;
}
.topnav a:hover {
	color: #fff;
	background-color: #2A2A2A;
}
.topnav a.icon {
	display: none;
}

#hero-image {
	/* margin-bottom 15px; */
}
#button-to-top {
	display: none; /* Hidden by default */
	position: fixed; /* Fixed/sticky position */
	bottom: 20px; /* Place the button at the bottom of the page */
	right: 30px; /* Place the button 30px from the right */
	z-index: 99; /* Make sure it does not overlap */
	border: none; /* Remove borders */
	outline: none; /* Remove outline */
	opacity: 0.5;
	background-color: #333333; /* Set a background color */
	color: #fff; /* Text color */
	cursor: pointer; /* Add a mouse pointer on hover */
	padding: 15px; /* Some padding */
	border-radius: 10px; /* Rounded corners */
	font-size: 18px; /* Increase font size */
	text-align: center;
}

#button-to-top:hover {
	opacity: 1.0;
}
/* ~~ The footer ~~ */
.footer {
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the #container to understand where the columns end and contain them */
	width: 100%;
	padding: 5px 10px;
	margin-bottom: 20px;
	color: #333;
}

.copyright {
	font-size: 0.7em;
	text-align:center;
	padding: 5px 10px;
	margin:0;
}

.footer-column {
	padding: 20px;
	text-align: center;
}
@media screen and (max-width: 900px) {
	.logo-holder {
		width: 70%; /**/
	}
	.topnav {
		margin-top: 35px;
	}
	.topnav a {
		display: none;
	}
	
	.topnav a.icon {
		float: right;
		display: block;
	}
  	.topnav.responsive {
		position: absolute;
		right: 0;
		width: 150px;
		background-color: #fff;
		border-radius: 5px;
		display: block;
		
	}
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive a.icon {
    text-align: center;
  }
}
@media screen and (max-width: 600px) {
	.topnav {
		margin-top: 25px;
	}
}
@media screen and (max-width: 500px) {
	.topnav {
		margin-top: 18px;
	}
}
@media screen and (max-width: 400px) {
	.topnav {
		margin-top: 10px;
	}
}
