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

.title_area_inset {
  padding-top: 60px;
  padding-bottom: 60px;
}

#sidebar {
	margin-top: 30px;
}

#extraContainer1{
	display: none;
}

#content_container {
}

#extraContainer1, #extraContainer2, #extraContainer3 {
  padding: 20px;
}

}

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

#content_container {
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 40px;
	padding-bottom: 40px;
}

.thumbnail-wrap {
	margin-bottom: 10px !important;
	margin-right: 10px !important;
	width: 120px !important;
}

.thumbnail-frame, .thumbnail-frame img {
	width: 120px !important;
	height: auto !important;
}

#breadcrumb {
	margin: 0;
	padding: 12px 25px;
	font-size: 11px;
}

}

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

#sidebar {
	margin-top: 0px;
}

#extraContainer1{
	display: block !important;
}

.title_area_inset {
  padding-top: 80px;
  padding-bottom: 80px;
}

#content_container {
}

#extraContainer1, #extraContainer2, #extraContainer3 {
  padding: 40px;
}



}

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