/*
* Skeleton V2.0.2
* Copyright 2014, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 12/15/2014
*/


/* Table of contents
–––––––––––––––––––––––––––––––––––––––––––––––––– 
- Grid
- Base Styles
- Typography
- Links
- Buttons
- Forms
- Lists
- Code
- Tables
- Spacing
- Utilities
- Clearing
- Media Queries
*/


/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
  position: relative; 
  width: 100%; 
  max-width: 960px; 
  margin: 0 auto; 
  padding: 0 20px;
  box-sizing: border-box; }
.column,        
.columns { 
  width: 100%; 
  float: left; 
  box-sizing: border-box; }

/* For devices larger than 400px */
@media (min-width: 400px) {
  .container {
    width: 85%;
    padding: 0; }
}

/* For devices larger than 550px */
@media (min-width: 550px) {
  .container {
    width: 90%; padding: 0 3rem; }
  .column,
  .columns {
    margin-left: 4%; }
  .column:first-child,        
  .columns:first-child { 
    margin-left: 0; }
  
  .one.column,
  .one.columns                    { width: 4.66666666667%; }
  .two.columns                    { width: 13.3333333333%; }
  .three.columns                  { width: 22%;            }
  .four.columns                   { width: 30.6666666667%; }
  .five.columns                   { width: 39.3333333333%; }
  .six.columns                    { width: 48%;            }
  .seven.columns                  { width: 56.6666666667%; }
  .eight.columns                  { width: 65.3333333333%; }
  .nine.columns                   { width: 74.0%;          }
  .ten.columns                    { width: 82.6666666667%; }
  .eleven.columns                 { width: 91.3333333333%; }
  .twelve.columns                 { width: 100%; margin-left: 0; }  /*100%*/

  .one-third.column               { width: 30.6666666667%; }
  .two-thirds.column              { width: 65.3333333333%; }

  .one-half.column                { width: 48%; }

  /* Offsets */
  .offset-by-one.column,
  .offset-by-one.columns          { margin-left: 8.66666666667%; }
  .offset-by-two.column,
  .offset-by-two.columns          { margin-left: 17.3333333333%; }
  .offset-by-three.column,
  .offset-by-three.columns        { margin-left: 26%;            }
  .offset-by-four.column,
  .offset-by-four.columns         { margin-left: 34.6666666667%; }
  .offset-by-five.column,
  .offset-by-five.columns         { margin-left: 43.3333333333%; }
  .offset-by-six.column,
  .offset-by-six.columns          { margin-left: 52%;            }
  .offset-by-seven.column,
  .offset-by-seven.columns        { margin-left: 60.6666666667%; }
  .offset-by-eight.column,
  .offset-by-eight.columns        { margin-left: 69.3333333333%; }
  .offset-by-nine.column,
  .offset-by-nine.columns         { margin-left: 78.0%;          }
  .offset-by-ten.column,
  .offset-by-ten.columns          { margin-left: 86.6666666667%; }
  .offset-by-eleven.column,
  .offset-by-eleven.columns       { margin-left: 95.3333333333%; }

  .offset-by-one-third.column,
  .offset-by-one-third.columns    { margin-left: 34.6666666667%; }
  .offset-by-two-thirds.column,
  .offset-by-two-thirds.columns   { margin-left: 69.3333333333%; }

  .offset-by-one-half.column,
  .offset-by-one-half.columns     { margin-left: 52%; }

}


/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton 
are based on 10px sizing. So basically 1.5rem = 15px :) */
html { 
  font-size: 62.5%; } 
body {
  font-size: 1.5em; /* currently ems cause chrome bug misinterpreting rems on body element */
  line-height: 1.6;
  font-weight: 400;
  font-family: 'Droid Serif', serif;
  color: #333; }


/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 { 
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 300; }
h1 { font-size: 4.0rem; line-height: 1.2;  letter-spacing: -.1rem; }
h2 { font-size: 3.0rem; line-height: 1.3;  letter-spacing: -.1rem; }
h3 { font-size: 2.4rem; line-height: 1.35; letter-spacing: -.08rem; }
h4 { font-size: 1.8rem; line-height: 1.5;  letter-spacing: -.05rem; }

h2, h3, h4 {
	font-family: 'Droid Sans', sans-serif;
	color: #016027;
}

p {
  margin-top: 0; }

nav, .sidebar, button, .button, input[type="submit"], input[type="reset"], input[type="button"] {
	font-family: 'Droid Sans', sans-serif;
}


/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a { 
	color: #7fc443;
	text-decoration: none;
}
a:hover { 
	text-decoration: underline;
}

/* Buttons 
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: block;
  padding: 0.75rem 4rem;
  color: #fff;
  text-align: center;
	font-family: 'Droid Sans', sans-serif;
  font-size: 1.6rem;
  letter-spacing: .2rem;
  text-transform: uppercase; 
  text-decoration: none;
  white-space: nowrap;
  background: #4598a6;
  border-radius: 4px;
  border: 1px solid #114966;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  box-sizing: border-box; }
input[type="submit"],
input[type="reset"],
input[type="button"] {
	margin-bottom: 0;
}  
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  background: #114966; }
.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
  color: #FFF;
  background-color: #33C3F0;
  border-color: #33C3F0; }
.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
  background: #114966; }


/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
form {
	background: #eee;
	padding: 1rem;
}

form p {
	margin: 0;
}
form.wpcf7-form img {
	display: none;
}
input[type="email"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  width: 100%;
  height: 38px;
  padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: #fff;
  border: 1px solid #7fc443;
  border-radius: 5px;
  box-shadow: none;
  box-sizing: border-box; }
/* Removes awkard default styles on some inputs for iOS */
input[type="email"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
textarea {
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px; }
input[type="email"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #016027;
  outline: 0; }
label,
legend {
  	display: block;
  	margin-bottom: .5rem;
	font-family: 'Droid Sans', sans-serif;
	color: #016027;
   }
fieldset {
  padding: 0;
  border-width: 0; }
input[type="checkbox"],
input[type="radio"] {
  display: inline; }
label > .label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal; }

/* Contact Form 7
–––––––––––––––––––––––––––––––––––––––––––––––––– */
form.wpcf7-form p {
	margin: 0;
}
form.wpcf7-form img {
	display: none;
}

form.wpcf7-form .wpcf7-not-valid-tip {
	color: red;
	font-style: italic;
	position: relative;
	top: -10px;
}

form.wpcf7-form .wpcf7-response-output {
	border: none;
	padding: 1rem;
	color: #fff;
	font-style: italic;
	margin: 0;
	margin-top: 1rem;
	text-align: center;
}
	
form.wpcf7-form .wpcf7-validation-errors {
	background: red;
}

form.wpcf7-form .wpcf7-mail-sent-ok {
	background: #4598a6;
}


/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul { 
  list-style: circle outside; }
ol { 
  list-style: decimal outside; }
ol, ul {
  padding: 0;
  margin-left: 2.2rem;
  margin-top: 0; }
ul ul, 
ul ol,
ol ol, 
ol ul { 
  margin: 1.5rem 0 1.5rem 3rem; 
  font-size: 90%; }


/* Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
  padding: .2rem .5rem;
  margin: 0 .2rem;
  font-size: 90%;
  white-space: nowrap;
  background: #F1F1F1;
  border: 1px solid #E1E1E1;
  border-radius: 4px; }
pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre; }


/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #E1E1E1; }
th:first-child,
td:first-child {
  padding-left: 0; }
th:last-child,
td:last-child {
  padding-right: 0; }


/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 1rem; }
input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem; }
pre,
blockquote,
form,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 1rem; }
p {
  margin-top: 0; }


/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
  width: 100%;
  box-sizing: border-box; }
.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box; }
.u-pull-right {
  float: right; }
.u-pull-left {
  float: left; }


/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #E1E1E1;
}

/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf { 
  content: "";
  display: table;
  clear: both; }


/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*
Note: The best way to structure the use of media queries is to create the queries 
near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons section and style it 
there. 
*/

.header {
	width: 100%;
}

.header .top {
	background: #114966 url(images/tear-hoz-white.png) repeat-x center bottom;
	width: 100%;
	padding-bottom: 1.5rem;
}

.header .top h4 {
	display: block;
	font: 0/0 a;
	text-shadow: none;
	color: transparent;
	background: url(images/icon-durham-blue_128px.png) no-repeat left top; 
	width: 32px;
	height: 32px;
	background-size: 32px 32px;
	margin: 0;
	margin: 0.5rem auto;
}

.header .top h4:hover {
	background: url(images/icon-durham-white_128px.png) no-repeat left top; 
	background-size: 32px 32px;
}

.header .top p.description {
	font-style: italic;
	color: #4598a6;
	font-size: 1.4rem;
	line-height: 1.3;
	text-align: center;
	margin: 0;
}

.header .top p.description a {
	color: #4598a6;
	text-decoration: underline;	
}

.header .top p.description a:hover {
	color: #fff;
}

.header .top h2 {
	font-style: italic;
	text-align: center;
	font-size: 3.0rem; 
	line-height: 1.3;
	margin-bottom: 0;
	font-family: 'Droid Serif', serif;
}

.header .top h2 a {
	color: #fff;
	text-decoration: none;
}

.header .top h2 a:hover {
	color: #eee;
}

.header .top .mobilehide {
	display: none;
}

.header nav.primary {
	background: #fff;
	font-size: 1.6rem;
}

.header nav.primary ul {
	margin: 0;
	text-align: center;
	list-style: none;
	width: 125%; /*addition*/
}

.header nav.primary ul li {
	margin: 0;
	display: inline;
}

.header nav.primary ul li a {
	color: #114966;	
	display: inline-block;
	padding: 0.5rem;
}

.header nav.primary ul li a:hover, .header nav.primary ul li.current_page a {
	color: #4598a6;
	text-decoration: none;
}

.banner .featuredimage {
	width: auto;
	height: auto;
	padding-top: 20%;
	background-size: cover;
	-moz-background-size: cover;  /* Firefox 3.6 */
	background-position: center;  /* Internet Explorer 7/8 */
	background-position: center center;
}

.banner .nofeaturedimage {
	height: 1px;
	background: #016027;
}

.main>.container {
	padding-top: 1rem;
}

.main h1 {
	text-align: center;
	color: #016027;
	margin-bottom: 0.5rem;
}

.main p, .main li {
	margin-bottom: 1rem;
}

.main article {
	margin-bottom: 1rem;
}

.main article h2 {
	border-bottom: 1px dotted #cbc37f;
	padding-bottom: 0.5rem;	
	margin-bottom: 1.5rem;
}

.main article img {
	border: 1px solid #016027;
	display: block;
	max-width: 100%;
	height: auto;
	box-sizing: border-box;
}

.main .homepage .wpgmza_map {
	margin: 1rem 0;
}

.main .homepage form {
	background: none;
	padding: 0;
	margin-bottom: 0;
}

.main .homepage form input, .main .homepage form textarea {
	border-color: #4598a6;
}

.main .homepage form input.wpcf7-submit, .main .standardpage form input.wpcf7-submit  {
	margin-left: 0;
	margin-right: 0;
	border-color: #114966;
}

.main .churchpage h2 {
	background: #7fc443 url(images/tear-vert-left-whitegreen.gif) repeat-y right top;
	height: 4rem;
	margin: 2rem 0 1rem 0;
	-moz-border-radius-topleft:        2rem;
	-webkit-border-top-left-radius:    2rem;
	border-top-left-radius:            2rem;
	-khtml-border-top-left-radius:     2rem;
	-moz-border-radius-bottomleft:     2rem;
	-webkit-border-bottom-left-radius: 2rem;
	border-bottom-left-radius:         2rem;
	-khtml-border-bottom-left-radius:  2rem;
}

.main .churchpage h2 span {
	font-family: 'Droid Sans', sans-serif;
	color: #016027;
	font-size: 1.7rem;
	letter-spacing: 0;
	font-weight: 400;
	height: 4rem;
	padding: 1rem 0 1rem 3rem;
	margin-left: 1rem;
	display: block;
	box-sizing: border-box;
}

.main .churchpage .address h2 span {
	background: url(images/icon-church-white_064px.png) no-repeat left center;
	background-size: 24px 24px;
}

.main .churchpage .map h2 span {
	background: url(images/icon-location-white_064px.png) no-repeat left center;
	background-size: 24px 24px;
}

.main .churchpage .about h2 span {
	background: url(images/icon-people-white_064px.png) no-repeat left center;
	background-size: 24px 24px;
}

.main .churchpage .servicetimes h2 span {
	background: url(images/icon-bell-white_064px.png) no-repeat left center;
	background-size: 24px 24px;
}

.main .churchpage .contact h2 span {
	background: url(images/icon-speech-white_064px.png) no-repeat left center;
	background-size: 24px 24px;
}

.main .churchpage h2 span strong {
	font-weight: 700;	
}

.main .churchpage .about h2 span span.name {
	background: none;
	height: auto;
	padding: 0;
	margin-left: 0;
	display: none;	
}

.main .churchpage h3 {
	font-size: 1.7rem;
	color: #016027;
	letter-spacing: 0;
	font-weight: 700;
	margin: 1.5rem 0 1rem 0;
}

.main .churchpage .map #map2 {
	margin-bottom: 2rem;
}

.main .post .postinfo {
	text-align: right;
	font-style: italic;
	color: #016027;
	padding: 0.5rem;
	margin: 1rem 0;
	border-top: 1px solid #cbc37f;
	border-bottom: 1px solid #cbc37f;
}

.main .sidebar {
	list-style: none;
	margin: 0;
	padding: 1rem;
	background: #eee;
	line-height: 1.4;
}

.main .sidebar>li {
	margin: 0;
	margin-bottom: 1rem;	
}

.main .sidebar li:last-child {
	margin-bottom: 0;
}

.main .sidebar li h3 {
	font-size: 2rem;
	color: #114966;
	padding-bottom: 0.5rem;	
	margin-bottom: 0.5rem;
	border-bottom: 1px dotted #4598a6;	
}

.main .sidebar li h3 a {
	color: #114966;
}

.main .sidebar li h3 a:hover {
	color: #4598a6;
	text-decoration: none;
}

.main .sidebar li ul, .main .sidebar li ul li {
	margin: 0;
}

.main .sidebar li ul li {
	list-style-position: outside;
	margin-left: 2rem;
	margin-bottom: 0.5rem;
}

.main .sidebar li ul li a, .main .sidebar li p a {
	color: #4598a6;
}

.footer {
	text-align: center;
}

.footer nav {
	border-bottom: 1px solid #4598a6;
	margin-bottom: 0.5rem;
}

.footer nav.secondary ul {
	margin: 0;
	list-style: none;
}

.footer nav.secondary ul li {
	margin: 0;
	display: inline;
}

.footer nav.secondary ul li a {
	color: #4598a6;	
	display: inline-block;
	margin: 0.5rem;
}

.footer nav.secondary ul li a:hover {
	color: #114966;
	text-decoration: none;
}

.footer p {
	font-size: 1.4rem;
}

.footer p.description {
	font-style: italic;
	color: #114966;
	margin-bottom: 1rem;
}

.footer .smallprint {
	margin-bottom: 1rem;
	font-family: 'Droid Sans', sans-serif;
}

.footer .smallprint p {
	margin-bottom: 0;
	color: #4598a6;	
}

.footer .smallprint p.extras {
	font-size: 1.3rem;
}

.footer .smallprint p a {
	color: #4598a6;
}

.footer .smallprint p a:hover {
	color: #114966;
	text-decoration: none;
}

/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 550px) {

body {
	background: #eee;
}

.header .top h4 {
	display: none;
}

.header .top p.description {
	text-align: left;
	font-size: 1.3rem;		
}

.header .top h2 {
	margin-top: 1rem;
}

.main {
	background: #016027;
	border-bottom: 1px solid #016027;
}

.main .container {
	background: url(images/tear-vert-left-whitedarkgreen.gif) left top repeat-y, url(images/tear-vert-right-whitedarkgreen.gif) right bottom repeat-y;
	background-color: #fff;
}

.main h1 {
	margin-bottom: 1rem;
	text-align: left;
}

.main .homepage .wpgmza_map {
	margin-bottom: 2rem;
}

.main .churchpage h1 {
	text-align: center;
	margin-bottom: 0;
}

.main .churchpage .right h2 {
	text-align: right;
	background: #7fc443 url(images/tear-vert-right-whitegreen.gif) repeat-y left top;
	-moz-border-radius:    0;
	-webkit-border-radius: 0;
	border-radius:         0;
	-khtml-border-radius:  0;
	-moz-border-radius-topright:        2rem;
	-webkit-border-top-right-radius:    2rem;
	border-top-right-radius:            2rem;
	-khtml-border-top-right-radius:     2rem;
	-moz-border-radius-bottomright:     2rem;
	-webkit-border-bottom-right-radius: 2rem;
	border-bottom-right-radius:         2rem;
	-khtml-border-bottom-right-radius:  2rem;
}

.main .churchpage .right h2 span {
	padding: 1rem 3rem 1rem 0;
	margin-right: 1rem;
}

.main .churchpage .right .servicetimes h2 span {
	background: url(images/icon-bell-white_064px.png) no-repeat right center;
	background-size: 24px 24px;
}

.main .churchpage .right .contact h2 span {
	background: url(images/icon-speech-white_064px.png) no-repeat right center;
	background-size: 24px 24px;
}

.main .post .postinfo {
	border-bottom: none;
}

.main .sidebar {
	padding: 0;
	background: none;
}

}

/* Larger than tablet */
@media (min-width: 750px) {

.header .top p.description {
	margin-top: 1rem;
}

.header .top h2 {
	font-size: 3.5rem; 
}

.header nav.primary {
	font-size: 1.5rem; /*1.7rem*/
}

.header nav.primary ul li a {
	padding: 0.5rem 1rem;
}

.main>.container {
	padding-top: 2rem;
}

.main article img.alignright, .main article img.alignleft, .main article img.aligncenter {
	margin: 2rem 0;	
}

.main article img.alignright {
	float: right;
	margin-left: 2rem;
}

.main article img.alignleft {
	float: left;
	margin-right: 2rem;
}

.main article img.aligncenter {
	margin-left: auto;
	margin-right: auto;
}

.main .sidebar li {
	margin-bottom: 2rem;
}

.main .sidebar li h3 {
	font-size: 2.5rem;
	padding-bottom: 1rem;	
	margin-bottom: 1rem;
}
	
}

/* Larger than desktop */
@media (min-width: 1000px) {

body {
	font-size: 1.6em; /* currently ems cause chrome bug misinterpreting rems on body element */
	line-height: 1.7;
}

form {
	padding: 1.5rem;
}

.header .top h2 {
	font-size: 4rem; 
	margin-top: 0.6rem;
}

.header nav.primary {
	font-size: 1.5rem;  /*1.8rem*/
}

.main h1 {
	margin-bottom: 1rem;
}

.main p {
	margin-bottom: 2rem;
}

.main .churchpage h2 {
	height: 5rem;
	margin: 2rem 0 1rem 0;
	-moz-border-radius-topleft:        2.5rem;
	-webkit-border-top-left-radius:    2.5rem;
	border-top-left-radius:            2.5rem;
	-khtml-border-top-left-radius:     2.5rem;
	-moz-border-radius-bottomleft:     2.5rem;
	-webkit-border-bottom-left-radius: 2.5rem;
	border-bottom-left-radius:         2.5rem;
	-khtml-border-bottom-left-radius:  2.5rem;
}

.main .churchpage .right h2 {
	-moz-border-radius-topright:        2.5rem;
	-webkit-border-top-right-radius:    2.5rem;
	border-top-right-radius:            2.5rem;
	-khtml-border-top-right-radius:     2.5rem;
	-moz-border-radius-bottomright:     2.5rem;
	-webkit-border-bottom-right-radius: 2.5rem;
	border-bottom-right-radius:         2.5rem;
	-khtml-border-bottom-right-radius:  2.5rem;
}


.main .churchpage h2 span {
	height: 5rem;
	padding: 1.25rem 0 1.25rem 3.75rem;
	font-size: 1.9rem;
}

.main .churchpage .right h2 span {
	height: 5rem;
	padding: 1.25rem 3.75rem 1.25rem 0;	
	font-size: 1.9rem;	
}

.main .churchpage .address h2 span {
	background: url(images/icon-church-white_064px.png) no-repeat left center;
	background-size: 32px 32px;
}

.main .churchpage .map h2 span {
	background: url(images/icon-location-white_064px.png) no-repeat left center;
	background-size: 32px 32px;
}

.main .churchpage .about h2 span {
	background: url(images/icon-people-white_064px.png) no-repeat left center;
	background-size: 32px 32px;
}

.main .churchpage .right .servicetimes h2 span {
	background: url(images/icon-bell-white_064px.png) no-repeat right center;
	background-size: 32px 32px;
}

.main .churchpage .right .contact h2 span {
	background: url(images/icon-speech-white_064px.png) no-repeat right center;
	background-size: 32px 32px;
}

.main .churchpage .about h2 span span.name {
	display: inline;	
}

.main .churchpage h3 {
	font-size: 1.8rem;
}
	
}

/* Larger than Desktop HD */
@media (min-width: 1200px) {
	
.header .top p.description {
	background: url(images/icon-durham-blue_128px.png) no-repeat left center;
	background-size: 24px 24px;
	padding-left: 32px;
}

.banner .featuredimage {
	padding-top: 250px;
}

.main h1 {
	font-size: 5rem;
	margin-bottom: 2rem;
}

.main .churchpage h1 {
	font-size: 4rem;
	margin-bottom: 0;
}
	
}
