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

}

@media only screen and (max-width: 768px) {
	input[type="text"],
	input[type="password"],
	input[type="date"],
	input[type="datetime"],
	input[type="datetime-local"],
	input[type="month"],
	input[type="week"],
	input[type="email"],
	input[type="number"],
	input[type="search"],
	input[type="tel"],
	input[type="time"],
	input[type="url"],
	textarea {
	  width: 90%;
	 }

	#left, 
	#right {
		padding-bottom: 0em;
		margin-bottom: 0em;
	}


	.inset {
		padding: 40px 10px;
	}

	#left .inset {
		padding: 20px;
	}

	#breadcrumb {
		margin-left: -26px;
		margin-right: -25px;
	  padding: 0 25px;
	}

}

@media only screen and (max-width: 480px) {
	#left {
		min-height: 420px;
	}

	#mobile_sidebar, .sb_title_desktop_ipad {
		display: none;
	}

	h1#site_title {
		font-size: 3em !important;
	}

	#to_the_top {
	  top: 0px;
	  left: 0px;
	}

}

@media only screen and (min-width: 481px) {
	.sb_title_iphone {
		display: none !important;
	}

	#mobile_sidebar {
		display: block !important;
	}


}

/* Used to alter styles for screens at least 768px wide. This is where the grid changes. */
@media only screen and (min-width: 768px) {
	#left, #right, #left_gradient {
		padding-bottom: 500em !important;
		margin-bottom: -500em !important;
	}
}

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


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

/* 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 {}