/* We use this media query to add styles to any device that supports media queries */
@media only screen {
}

@media only screen and (max-width: 1012px) {

	blockquote {
	  margin-left: 0px;
	  margin-right: 0px;
	}

}

/* Used to alter styles for screens at least 1000px wide. */
@media only screen and (max-width: 1000px) {

	nav#main_navigation {
	  font-size: 14px;
	}

	nav#secondary_navigation {
	  font-size: 14px;
	}

	nav#main_navigation a,
	nav#secondary_navigation a {
	  padding: 2px 12px;
	}

}


/* Used to alter styles for screens at least 768px wide. This is where the grid changes. */
@media only screen and (max-width: 768px) {

	h1#site_title {
	  letter-spacing: -3px;
	  font-size: 40px;
	  padding: 0 10px;
	}

	h2#site_slogan {
	  font-size: 20px;
	  letter-spacing: 0px;
	}

	nav#main_navigation,
	nav#secondary_navigation {
	  display: none;
	}

	#mobile_navigation_toggle {
	  display: block;
	}

	#site_wrapper {
	  border-top: none;
	}

	#banner {
		margin-top: 40px;
	}

	#sidebar {
	  margin-top: 40px;	  
	}

	.form-input-field {
	  width: 90%;
	}

	#to_the_top {
	  width: 100%;
	  line-height: 40px;
	  -webkit-border-radius: 0px;
	  -moz-border-radius: 0px;
	  border-radius: 0px;
	  text-align: center;
	  right: 0px;
	  bottom: 0px;
	  opacity: 0.9;
	  border-top: 1px solid;
	}

	#divider_icon {
		margin-top: 20px;
	}

	blockquote {
	  margin-left: -15px;
	  margin-right: -15px;
	  font-size: 18px;
	}
}

@media only screen and (max-width: 480px) {

	h1#site_title {
	  letter-spacing: -2px;
	  font-size: 28px;
	  padding: 0 5px;
	}

	h2#site_slogan {
	  font-size: 16px;
	  letter-spacing: 0px;
	}

	#divider_icon {
		margin-top: 20px;
	}

	#site_wrapper {
	  border-width: 6px;
	}

	.form-input-field {
	  width: 85%;
	}

	.filesharing-item {
	  margin-bottom: 20px;
	}

}


/* Used to alter styles for screens at least 1280px wide. */
@media only screen and (min-width: 769px) {
	#mobile_navigation {
	  display: none !important;
	}

}


/* Apply styles to screens in landscape orientation */
@media only screen and (orientation: landscape) {}

/* Apply styles to screens in portrait orientation */
@media only screen and (orientation: portrait) {}

/* We also use Modernizr to add a .touch class to the body when applicable */
/* You can prepend this class to anything and it will style only for touch devices */
.touch .your-element {}