/*
	Variable Grid System.
	Learn more ~ http://www.spry-soft.com/grids/
	Based on 960 Grid System - http://960.gs/

	Licensed under GPL and MIT.
*/

/*
  Forces backgrounds to span full width,
  even if there is horizontal scrolling.
  Increase this if your layout is wider.

  Note: IE6 works fine without this fix.
*/

body {
  /*min-width: 1155px;*/
}

/* Containers
----------------------------------------------------------------------------------------------------*/
.container_12 {
	margin-left: auto;
	margin-right: auto;
	width: 960px;
}

.wPage .container_12{
	/*padding: 0 90px;*/
}

/* Grid >> Global
----------------------------------------------------------------------------------------------------*/


.grid_1,
.grid_2,
.grid_3,
.grid_4,
.grid_5,
.grid_6,
.grid_7,
.grid_8,
.grid_9,
.grid_10,
.grid_11,
.grid_12 {
	display:inline;
	float: left;
	position: relative;
	margin-left: 10px;
	margin-right: 10px;
}



.push_1, .pull_1,
.push_2, .pull_2,
.push_3, .pull_3,
.push_4, .pull_4,
.push_5, .pull_5,
.push_6, .pull_6,
.push_7, .pull_7,
.push_8, .pull_8,
.push_9, .pull_9,
.push_10, .pull_10,
.push_11, .pull_11,
.push_12, .pull_12 {
	position:relative;
}


/* Grid >> Children (Alpha ~ First, Omega ~ Last)
----------------------------------------------------------------------------------------------------*/

.alpha {
	margin-left: 0 !important;
}

.omega {
	margin-right: 0 !important;
}

/* Grid >> 12 Columns
----------------------------------------------------------------------------------------------------*/


.container_12 .grid_1 {
	width:60px;
}

.container_12 .grid_2 {
	width:140px;
}

.container_12 .grid_3 {
	width:220px;
}

.container_12 .grid_4 {
	width:300px;
}

.container_12 .grid_5 {
	width:380px;
}

.container_12 .grid_6 {
	width:460px;
}

.container_12 .grid_7 {
	width:540px;
}

.container_12 .grid_8 {
	width:620px;
}

.container_12 .grid_9 {
	width:700px;
}

.container_12 .grid_10 {
	width:780px;
}

.container_12 .grid_11 {
	width:860px;
}

.container_12 .grid_12 {
	width:940px;
}




/* Prefix Extra Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/


.container_12 .prefix_1 {
	padding-left:80px;
}

.container_12 .prefix_2 {
	padding-left:160px;
}

.container_12 .prefix_3 {
	padding-left:240px;
}

.container_12 .prefix_4 {
	padding-left:320px;
}

.container_12 .prefix_5 {
	padding-left:400px;
}

.container_12 .prefix_6 {
	padding-left:480px;
}

.container_12 .prefix_7 {
	padding-left:560px;
}

.container_12 .prefix_8 {
	padding-left:640px;
}

.container_12 .prefix_9 {
	padding-left:720px;
}

.container_12 .prefix_10 {
	padding-left:800px;
}

.container_12 .prefix_11 {
	padding-left:880px;
}



/* Suffix Extra Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/


.container_12 .suffix_1 {
	padding-right:80px;
}

.container_12 .suffix_2 {
	padding-right:160px;
}

.container_12 .suffix_3 {
	padding-right:240px;
}

.container_12 .suffix_4 {
	padding-right:320px;
}

.container_12 .suffix_5 {
	padding-right:400px;
}

.container_12 .suffix_6 {
	padding-right:480px;
}

.container_12 .suffix_7 {
	padding-right:560px;
}

.container_12 .suffix_8 {
	padding-right:640px;
}

.container_12 .suffix_9 {
	padding-right:720px;
}

.container_12 .suffix_10 {
	padding-right:800px;
}

.container_12 .suffix_11 {
	padding-right:880px;
}



/* Push Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/


.container_12 .push_1 {
	left:80px;
}

.container_12 .push_2 {
	left:160px;
}

.container_12 .push_3 {
	left:240px;
}

.container_12 .push_4 {
	left:320px;
}

.container_12 .push_5 {
	left:400px;
}

.container_12 .push_6 {
	left:480px;
}

.container_12 .push_7 {

	left:560px;
}

.container_12 .push_8 {
	left:640px;
}

.container_12 .push_9 {
	left:720px;
}

.container_12 .push_10 {
	left:800px;
}

.container_12 .push_11 {
	left:880px;
}



/* Pull Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/


.container_12 .pull_1 {
	left:-80px;
}

.container_12 .pull_2 {
	left:-160px;
}

.container_12 .pull_3 {
	left:-240px;
}

.container_12 .pull_4 {
	left:-320px;
}

.container_12 .pull_5 {
	left:-400px;
}

.container_12 .pull_6 {
	left:-480px;
}

.container_12 .pull_7 {
	left:-560px;
}

.container_12 .pull_8 {
	left:-640px;
}

.container_12 .pull_9 {
	left:-720px;
}

.container_12 .pull_10 {
	left:-800px;
}

.container_12 .pull_11 {
	left:-880px;
}




/* `Clear Floated Elements
----------------------------------------------------------------------------------------------------*/

/* http://sonspring.com/journal/clearing-floats */

.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

/* http://www.yuiblog.com/blog/2010/09/27/clearfix-reloaded-overflowhidden-demystified */

.clearfix:before,
.clearfix:after {
  content: '\0020';
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

.clearfix:after {
  clear: both;
}

/*
  The following zoom:1 rule is specifically for IE6 + IE7.
  Move to separate stylesheet if invalid CSS is a problem.
*/

.clearfix {
  zoom: 1;
}

/* template CSS*/
body{position:relative;}
body>div{width:100%; overflow: hidden;margin-left:auto;margin-right:auto;}
#header{overflow: visible;}
.container_main{width:320px;margin-left:auto;margin-right:auto;}
.container_footer{width:320px;margin-left:auto;margin-right:auto;}
#itemBanner{min-width:1155px;}
#itemBanner img{display:block;margin:auto;width: 100%;}


.nav{text-decoration:none;font-size:18px;line-height: 24px;px;display: block;float: left;padding:12px 8px;}
/* Dairy Queen*/
.homeHeader {position: relative;}
#bannerMiddle{text-transform:uppercase;position:absolute;width:100%;bottom:0; text-align:center;z-index:9998 !important;}
#bannerMiddle #image_1 img{width:192px;}
#bannerMiddle #image_2 img{width:85px;margin:30px 0;vertical-align: middle;}
.container_menu #image_2 img{width:318px;margin-bottom:28px;vertical-align: middle;}
#bannerMiddle #image_2 a:nth-child(2) img{width:126px;}
#bannerMiddle #image_2 a:nth-child(2),.container_menu #image_2 a:nth-child(2){margin:0 5px;}
#bannerMiddle #image_2 a,.container_menu #image_2 a{display: inline-block;}
.container_nav{display: inline-block;margin-left:auto;margin-right:auto; overflow: hidden;height: 48px;margin-bottom:20px; }
.container_nav a{color:#fff;}
#itemBannerTop .nav{color:rgb(84,83,74); text-transform:uppercase;}
#image_1 .folk,#image_1 .spoon{width:65px;}
#itemBannerTop {
	background: rgb(239,233,229);
	opacity: .9;
	position: absolute;
	width: 100%;
	text-align: center;
	/*height: 100px;*/
	top: 0px;
	z-index: 9999 !important;
	-webkit-box-shadow: 0px 0px 25px #000000;
	-moz-box-shadow: 0px 0px 25px #000000;
	box-shadow: 0px 0px 25px #000000;
}
#pageNav {
	margin-top:15px;
	font-size: 20px;
	line-height: 26px;
	display: inline-block;
}
.mobileFloat{float:none !important;}
/* jQuery Cycle CSS*/
.cycle-slideshow {
width: 100%;
min-width:200px;
margin: 0 auto;
padding: 0;
position: relative;
}

.slideContainer{
	height:330px; 
	width:100%;
	background-repeat:no-repeat;
	/*background-attachment:fixed;*/
	background-position:center;
	background-size: cover;
}
#footerBanner{	
	width:100%;
	height:316px;
	margin-top:10px;
	background-repeat:no-repeat;
	background-position:center;
	background-size: cover;
}
#slideshow img{
	width:333px;
	height:194px;
}

#slideshow #slideBox{
	position:static;
	width:333px;
	height:194px;
	margin: 24px 12px;
}

.storeImage {
	margin:10px 0px;
	float:left;
	width:333px;
	height:194px;
	}

.homeBanner {
height: 588px;
}
#headerLeft img {
	width: 260px;
	display: block;
	margin: auto;
	margin-top:20px;
}
.container_happenings{width:320px;margin-left:auto;margin-right:auto;}
#filter{margin-left:14px;margin-top: 20px;}
.testimonials {
	background: rgb(239,233,229);
	width: 292px;
}
.testimonials_text {
	font-size: 20px;
	line-height: 24px;
	padding: 25px 20px;
	color: rgb(138,31,3);
}
.testimonials .date, .testimonials .linkReadMore a {
	padding: 0 20px;
}
.article {
	margin-top: 150px;
}
.articleLeft img {
	width: 292px;
	margin-left: 28px;
}
.articleRightTitle {
	margin-left:28px;
	margin-bottom: 20px;
	line-height:24px;
}
.articleRight .category {
	color: rgb(161,161,164);
	font-size: 20px;
	text-transform: uppercase;
}
.articleRight .title {
	color: rgb(138,31,3);
	font-size: 20px;
	text-transform: uppercase;
}
.articleRight .text {
	color: rgb(84,83,74);
	width: 292px;
	margin-left: 28px;
}
.articleRightBottom {
	margin: 20px 0 20px 28px;
}
.partA, .partB {
	display: inline-block;
}
.partB .title .tag {
	color: rgb(138,31,3);
	text-transform: capitalize;
	font-size: 18px;
}
.articleRightSocial{width:292px;margin:auto;}
.articleRightSocial .date {
	vertical-align: top;
	margin-bottom: 20px;
}
.mobileMarginLeft14{width:302px;margin-left:0px !important;}
.relatedArticles {
	background: rgb(239,233,229);
	padding-bottom: 28px;
}
.heading {
	margin-left: 28px;
	font-size: 20px;
	line-height: 24px;
	color: rgb(161,161,164);
	padding-top: 28px;
	font-family: news_gothic_condensedregular;
	font-weight: bold;
}
.container_contact {
	width: 320px;
	margin: auto;
}
.contactLeft .address {
	font-size: 18px;
	line-height: 22px;
	margin: 20px auto;
	width: 80%;
}
.contactLeft {
	width: 320px;
	height: 200px;
	float: left;
	background: rgb(239,233,229);
	padding-top: 16px;
	margin-left: 14px;
	margin-right: 18px;
	margin-bottom: 20px;
}
.contactLeft >div {
	margin: 0 auto;
	width: 80%;
	font-size:14px;
	line-height:18px;
}
.contactLeft a {
	color: #000;
}
.contactRight {
	width: 320px;
	float: left;
}
#googleMapImage{
	margin-left: 14px;
	display:block; 
	width:320px; 
	height:261px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.mobileSubscr{
	width: 320px;
	margin-left: auto;
	margin-right: auto;
}
.mobileSubscr h1, .mobileSubscr #newsletter{margin-left:14px;}
.searchTitle {
	font-size: 20px;
	line-height: 24px;
	color: rgb(138,31,3);
}
.searchBanner{margin-left:14px;}
.searchResultItem{
	margin-bottom: 20px;
	margin-left: 14px;
	width: 292px;
}
.searchResultItem .title{
	font-size: 20px; 
	line-height:24px; 
	color: rgb(138,31,3); 
	text-transform:capitalize;
}

.searchResultItem .text{
	font-size: 18px; 
	line-height:28px;
	color: rgb(88,89,91);
}
.homeTextCenter {
	width: 88%;
	margin: 25px 0;
	display: inline-block;
	color: rgb(84,83,74);
	font-size: 14px;
	line-height: 18px;
	text-align: center;
}
.oneColumnImg {width: 292px;}
.oneColumn .category {
	color: rgb(161,161,164);
	font-size: 20px;
	text-transform: uppercase;
	font-weight: bold;
}
.oneColumn .title {
	color: rgb(138,31,3);
	font-size: 20px;
	text-transform: uppercase;
	font-weight: bold;
}
.oneColumn .linkReadMore a {
	color: rgb(138,31,3);
}
.oneColumn {
	width: 292px;
	margin: 10px 14px 10px 28px;
}
.CT {margin: 10px 0; font-family:NewsGothic-Bold;}
.CT .category,.CT .title{font-family:NewsGothic-Bold;}
.oneColumn .date, .oneColumn .text, .oneColumn .linkReadMore a {
	font-size: 14px;
	line-height: 18px;
}
.homeTextContainer {
	background: rgb(239,233,229);
}
.paddingTop40 {
padding-top: 25px;
}
.paddingBottom40 {
padding-bottom: 25px;
}

.pageTitle {
	width: 100%;
	display: inline-block;
	color: rgb(138,31,3);
	font-size: 20px;
	line-height: 24px;
	text-align: left;
	margin: 25px 0;
	font-family:NewsGothic-Bold;
}
.pageText {
	width: 100%;
	display: inline-block;
	color: rgb(84,83,74);
	font-size: 18px;
	line-height: 22px;
	text-align: left;
	margin-bottom: 25px;
}
.container_menu #image_2 img {
	width: 240px;
	display: block;
	margin: 20px auto;
}
.container_menu #image_2 a {
	display: block;
}

.filterTitle {
	padding: 5px 0;
}
.filterTitle, .filterItem {
	margin-right: 10px;
	padding: 5px;
	text-transform: uppercase;
	cursor: pointer;
}
.filterItem a {
	color: #000;
}
.all-on, .Blog-on, .News-on, .Gallery-on, .Testimonials-on {
	background-color: rgb(138,31,3);
}

.container_bg {
	background: rgb(239,233,229);
}
.container_pagination {
	font-size: 18px;
	line-height: 22px;
	width: 320px;
	margin: auto;
	padding: 30px 0;
}
.marginPush14{margin-left:14px;}
/* pagination*/
.page{
	color:#000;
	padding: 5px 10px;
	text-transform: uppercase;
	cursor: pointer;
}
.previous-on,.next-on{color:#000;}
.page-on {
	background-color:rgb(138,31,3);

}
.page:hover{
	background-color:rgb(138,31,3);	
}
.previous-off,.next-off{
	color: rgb(161,161,164); 
	cursor:default;
	/*display:none;*/
}

.container_footer{font-size:14px; line-height:18px;width:320px;margin: auto; padding:60px 0 30px 0;}
#footer .part_1 a{font-family: news_gothic_condensedregular;}
.container_footer .part_1,.container_footer .part_2,.container_footer .part_3,.container_footer .part_4,.container_footer .part_5,.container_footer .part_6{margin-left:28px; margin-bottom:18px;}
.container_footer .part_4 .address{width:55%;}
.container_footer .part_1{font-size:30px; line-height:30px;}
.container_footer .part_4{font-size:14px;line-height:18px;}
.container_footer .stateTwitter{margin-left:18px;}
.prefix {
	color: rgb(138,31,3);
	font-family: news_gothic_condensedregular;
	font-weight: bold;
}
.youtubeVideoDesktop{display:none;}
.youtubeVideoMobile{display:block;margin:0 auto;margin-bottom:20px;}