/* Sample CSS to apply background graphic to header. */

@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed);
@import url(http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700,400italic);
@import url(http://fonts.googleapis.com/css?family=Open+Sans+Condensed:700);


body.style1 h1 {
	font-family: 'Open Sans Condensed', sans-serif;
	font-size: 34pt;
	margin-bottom: 0.25em;
	text-transform: uppercase;
}

 
body.style1 #headline {
	margin-left: -104px;
	padding-left: 160px;
	text-align: right;
	width: 500px;
}
body.style1 #headline::after {
  content: "";
  background: url("/img/koch_sitegraphic_transparent.png") no-repeat scroll left top transparent;
  opacity: 1;
  top: 8px;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;   
}
body.style1 h1 {
	padding-top: 15px;
	width: 100%;
	line-height: 1em;
}
body.style1 #description {
	font-family: 'Source Sans Pro', sans-serif;
}
@media only screen
and (min-width : 768px)
and (max-width : 1119px) {
 
	body.style1 #headline {
		padding-left: 100px;
		width: auto;
	}
 
	body.style1 #headline h1 {
		padding-top: 15px;
		font-size: 34px;
	}
	
	body.style1 #headline::after {
		background: none;
	}
}
 
@media screen and (max-width: 767px) {
 
	body.style1 #headline {
		margin: 0;
		padding: 0;
		width: auto;
	}
	body.style1 #headline::after {
		background: none;
	}
	body.style1 #headline h1 {
		font-size: 34px;
		line-height: 1em;
		text-align: center;
	}	
}