/* Reset */
body, html, div, img, p, h1, h2, h3, h4, h5, h6, ul, ol,
li, dl, dt, dd, form, a, fieldset, input, th, td, section
{
	margin: 0; padding: 0; border: 0; outline: none;
} 
h1, h2, h3, h4, h5, h6 
{
	font-weight: normal;
}
ul
{
	list-style: none;
}
a 
{
	text-decoration: none;
	color: #950000;
}
* 
{
	box-sizing: border-box;
}
*:before, *:after 
{
	box-sizing: border-box;
}
/*--- end reset --*/

/*	Colors

dark gray #4a4a4a;
light gray #636363;
red #950000;

*/

@font-face
{
	font-family: "sansProLight";
	src: url("fonts/SourceSansPro-Light.otf");
}
@font-face
{
	font-family: "sansProBlack";
	src: url("fonts/SourceSansPro-Black.otf");
}
html
{
	font-size: 62.5%
}
body 
{
	font-size: 1.8rem;
	color: #4a4a4a;
	font-family: sansProBlack, sans-serif;
}

#topRow
{
	position: relative;
	width: 100%;
	height: 40px;
	line-height: 38px;
	background-color: #636363;
	color: #fff;
}
#topLeftInfo
{
	float: left;
}
#topRightInfo
{
	float: right;
}
#topRightInfo ul li
{
	display: inline-block;
	vertical-align: middle;
	margin-right: 20px;
	cursor: pointer;
	transition: all .5s ease;
}
#topRightInfo ul li:hover
{
	color: #aeaeae;
}
#topRightInfo a
{
	color: #fff;
	transition: all .5s ease;
}
#topRightInfo a:hover
{
	color: #aeaeae;
}

nav 
{
	position: sticky;
	top: 0px;
	z-index: 50;
	width: 100%;
	text-align: center;
	background-color: rgba(255,255,255,0.8);
	height: 50px;
	line-height: 50px;
}
nav ul 
{
	display: block;
}
nav ul li
{
	height: 50px;
	width: auto;
	text-align: center;
	display: inline-block;
	vertical-align: top;
	transition: all .5s ease;
	height: 50px;
	min-width: 80px;
	margin-left: 2px;
}
nav ul a
{
	display: block;
	width: 100%;
	height: 100%;
	color: #636363;
	padding: 0px 8px;
	transition: all .5s ease;
	
	font-size: 1.6rem;
}
nav ul li a:hover
{
	background-color: #636363;
	color: #fff;
}
nav ul a img
{
	width: 30px;
	height: 50px;
	filter: brightness(40%);
	transition: all .6s ease;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) 
{
	nav ul a img {width: 60px; padding: 0 12px; background: rgba(0,0,0,0.2);}
	nav ul li a:hover img {background: rgba(0,0,0,0);}
}

nav ul li a:hover img
{
	filter: brightness(100%);
}

/*--- Tab Menu for Mobile ---*/
#tabMenu
{
	position: fixed;
	bottom: -64px;
	bottom: 20px;
	right: 20px;
	width: 100%;
	width: 300px;
	height: 64px;
	background-color: #fff;
	
	background-color: rgba(255,255,255,0.8);
	
	z-index: 50;
	
	display: table;
	text-align: center;
	transition: all .6s ease;
	padding-top: 6px;
	
	border-radius: 50px;
	border: 1px solid #636363;
}
#tabMenu a
{
	margin: 0px 2px;
	color: #4a4a4a;
}
.tabMenuItem
{
	transition: all .6s ease;
	
	padding: 6px;
}
.tabMenuItem:hover
{
	border-radius: 40px;
	background-color: rgba(100,100,100,0.4);
}

#moreButton
{
	display: none;
}

.tabMenuItem
{
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	width: 76px;
}
.tabMenuItem img
{
	width: 30px;
}

#hamburgerIcon 
{
	width: 30px;
	height: 20px;
	cursor: pointer;
}
.hamburgerLine
{
	stroke: #636363;
	stroke-width: 4px;
	fill: none;
	stroke-linecap: round;
	transition: all .6s ease;
}
.xLines 
{
	stroke: #636363;
	stroke-width: 4px;
	stroke-linecap: round;
	fill: none;
	opacity: 0;
	transition: all .6s ease;
	transform-origin: center center;
}


/*-- Home Page Opening Greeting --*/
#greeting 
{
	/* background: url("images/hunterNutritionBannerImage.jpg") no-repeat center center; */
	background: url("images/hunterSplashImage.jpg") no-repeat center center;
	background-size: cover;
	background-attachment: fixed;
}
#greetingSpacer
{
	position: relative;
	width: 100%;
	height: 50%;
	min-height: 290px;
	display: block;
}
#greeting img
{
	margin-top: 90px;
	width: 300px;
	height: auto;
}
#greetingText 
{
	position: relative;
	color: #fff;
	letter-spacing: 3px;
	padding: 18px;
	border: 6px solid #fff;
	width: 500px;
	height: 180px;
	font-family: sansProLight;
	margin: auto;
	background-color: rgba(0,0,0,0.8);
}
#greetingText h3
{
	font-size: 2.4rem;
}
#greetingButton 
{
	position: absolute; 
	left: 50%;
	
	top: 100%;
	transform: translateX(-50%) translateY(-50%);
	background-color: #fff;
	width: 270px;
	height: 40px;
	line-height: 36px;
	text-transform: uppercase;
	font-family: sansProBlack;
	border: 2px solid #fff;
	
	transition: all .5s ease;
}
#greetingButton:hover
{
	background-color: #4a4a4a;
	color: #fff;
}
a #greetingButton  
{
	color: #636363;	
}

/*-- Pages Opening Greetings --*/
.openingGreeting
{
	position: relative;
	display: block;
	width: 100%;
	height: 990px;
	background-size: cover;
	background-attachment: fixed;
	text-align: center;
}
.openingGreetingWrap
{
	position: relative;
	min-width: 300px;
	height: 100%;
	text-align: center;
	
	width: 100%;
}
.openingGreetingImage
{
	position: relative;
	display: inline-block;
	height: 100%;
	width: 420px;
}
.openingGreetingImage img
{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 300px;
	height: auto;
}
.greetingIntro
{
	position: relative;
	vertical-align: top;
	margin-top: 6%;
	
	max-width: 400px;
	background-color: rgba(40,40,40,0.8);
	color: #fff;
	font-family: sansProLight;
	font-size: 2.2rem;
	line-height: 3.4rem;
	text-align: left;
	padding: 0px 30px;
	
	height: 80%;
	min-height: 80%;
	
	display: inline-table;
}
.greetingText 
{
	display: table-cell;
	vertical-align: middle;
}
.greetingIntro h4
{
	font-family: sansProLight;
	text-align: center;
	margin-bottom: 40px;
	font-size: 4.8rem;
	line-height: 5.4rem;
}
.greetingIntro p
{
	font-family: sansProBlack;
	text-align: left;
	font-size: 2.4rem;
	line-height: 3.6rem;
}
.greetingIntro a
{
	font-family: sansProBlack;
	color: #fff;
	transition: all .5s ease;
}
.greetingIntro a:hover
{
	color: #636363;
}



/*--- Intro Paragraph (home and catalog) ---*/
#introParagraph
{
	position: relative; 
	display: block;
	width: 100%;
	max-height: 300px;
	text-align: center;
	margin-bottom: 60px;
}
#paragraphHolder 
{
	margin-top: 40px;
}
#paragraphHolder img 
{
	width: 100px;
	height: auto;
}
#paragraphHolder h4 
{
	display: block;
	width: 550px;
	text-align: center;
	font-family: sansProLight;
	font-family: sansProBlack;
	font-size: 2.2rem;
	
	margin: 20px auto;
}
#paragraphHolder a 
{
	display: block;
	width: 550px;
	text-align: center;
	font-family: sansProLight;
	font-size: 2.2rem;
	
	margin: 20px auto;
	/* text-decoration: underline; */
	
	border-bottom: 1px solid #4a4a4a;
	color: #950000;
	transition: all .5s ease;
}
#paragraphHolder a:hover
{
	color: #4a4a4a;
}

/*-- About Company --*/ 
#aboutCompany 
{
	position: relative;
	display: block;
	width: 100%;
	min-height: 580px;
	background-color: #636363;
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
	url("images/cattleImage.jpg") no-repeat center center;
	background-size: cover;
	background-attachment: fixed;
	color: #fff;
	
	text-align: center;
	padding-bottom: 20px;
}
.infoBucket 
{
	position: relative;
	width: 250px;
	height: 340px;
	display: inline-block;
	vertical-align: top;
	margin-top: 130px;
	margin-left: 50px;
	
	border: 4px solid #fff;
	text-align: left;
	background-color: rgba(0,0,0,0.8);
}
.infoBucket img
{
	position: absolute;
	width: auto;
	height: 70px;
	top: -76px;
	left: 50%;
	transform: translateX(-50%);
}
.infoBucket h4
{
	text-transform: uppercase;
	font-size: 3.0rem;
	font-family: sansProBlack;
	text-align: center;
}
.infoBucket p
{
	text-transform: uppercase;
	font-size: 1.8rem;
	line-height: 2.3rem;
	font-family: sansProLight;
	text-align: left;
	padding: 8px;
	
	margin-top: 20px;
}
/*--- News Item ---*/
.newsItem
{
	position: relative;
	width: 100%;
	display: block;
	text-align: center;
	margin-top: 60px;
	margin-bottom: 60px;
}
.newsItem a
{
	font-size: 2.0rem;
	color: #4a4a4a;
	border-bottom: 2px solid #950000;
	transition: all .5s ease;
}
.newsItem a:hover
{
	color: #950000;
	border-bottom: 2px solid #950000;
}

/*--- Peruse Section ---*/
#peruse 
{
	position: relative; 
	width: 100%;
	max-width: 600px;
	height: auto;
	min-height: 600px;
	margin: auto;
}
.peruseItem
{
	width: 100%;
	min-height: 200px;
	
	margin: 40px auto;
	text-align: justify;
}
.peruseItem:after
{
	content: '';
	width: 100%;
	display: inline-block;
}
.peruseItem img 
{
	display: inline-block;
	vertical-align: middle;
	max-height: 200px;
	width: auto;
}
.peruseInfo 
{
	display: inline-block;
	vertical-align: middle;
	max-width: 300px;
}
.peruseInfo h2
{
	font-family: sansProLight;
	font-size: 2.6rem;
	text-align: center;
	margin-bottom: 16px;
}
.peruseInfo p
{
	text-align: left;
}
.peruseInfo a
{
	color: #950000;
	transition: all .5s ease;
	border-bottom: 1px solid #950000;
}
.peruseInfo a:hover
{
	color: #4a4a4a;
}
.peruseItem > a
{
	display: inline-block;
	color: #950000;
	padding: 6px;
}
#peruse .highlight
{
	display: block;
	color: #950000;
	font-family: sansProBlack;
	margin-top: 12px;
	margin-bottom: 12px;
	max-width: 340px;
}

/*--- Footer ---*/
footer 
{
	position: relative;
	min-height: 300px;
	background-color: #4a4a4a;
	text-align: center;
	color: #fff;
	padding-top: 20px;
}
#footWrap
{
	width: 50%;
	margin: auto;
	text-align: justify;
}
#footWrap div 
{
	display: inline-block;
	vertical-align: top;
	text-align: left;
}
#footWrap:after 
{
	content: '';
	display: inline-block;
	width: 100%;
}
#footerLogo
{
	width: 200px;
	height: auto;
}
footer h2
{
	text-transform: uppercase;
	font-family: sansProLight;
}
#map
{
	width: 100%;
	height: 320px;
}

/*--- CONTENT WRAP ---*/
#contentWrap 
{
	position: relative;
	display: block;
	width: 60%;
	min-width: 320px;
	margin: 60px auto;
}

/*--- Newsletters Page ---*/
#newslettersGreeting
{
	background: url("images/sheepField.jpg") no-repeat center center;
	background-size: cover;
	background-attachment: fixed;
}

/*--- Article Links Page ---*/
#articlesGreeting
{
	background: url("images/jeffs-barn.jpg") no-repeat center center;
	background-size: cover;
	background-attachment: fixed;
}
#articlesContent h3
{
	font-family: sansProBlack;
	font-size: 3.0rem;
	line-height: 3.3rem;
	text-align: center;
	margin-top: 40px;
	margin-bottom: 40px;
	text-decoration: underline;
}
#articleLinks 
{	
	position: relative;
	display: block;
	max-width: 60%;
	min-width: 320px;
	margin: 50px auto;
}
#articleLinks h3 
{
	text-align: center;
	font-size: 3.2rem;
	margin-bottom: 60px;
	border-bottom: 2px solid #4a4a4a;
}
#articleLinks ul li
{
	margin: 20px 0 30px 20px;
}
#articleLinks a 
{
	font-size: 2.4rem;
	color: #4a4a4a;
	border-bottom: 2px solid #950000;
	transition: color .5s ease;
}
#articleLinks a:hover
{
	color: #950000;
}
.newsLetterLink
{
	width: 100%;
	text-align: center;
	margin-top: 80px;
	margin-bottom: 180px;
	font-size: 2rem;
}
.newsLetterLink a
{
	transition: all .5s ease;
	border-bottom: 2px solid transparent;
}
.newsLetterLink a:hover
{
	color: #4a4a4a;
	border-bottom: 2px solid #950000;
}
		/* Drop Down Styles */
		.liDrop
		{
			position: relative;
			display: block;
			line-height: 30px;
			cursor: pointer;
			font-family: sansProBlack;
			margin-top: 6px;
			margin-bottom: 26px;
			color: #4a4a4a;
		}
		.liDrop:before
		{
			content: "\002B";
			position: absolute;
			left: -20px;
		}
		.liDrop h3
		{
			position: relative;
			display: inline;
			cursor: pointer;
			color: #4a4a4a;
			font-size: 2.4rem;
			border-bottom: 2px solid #950000;
			
			transition: all .5s ease;
		}
		.liDrop h3:hover
		{
			color: #950000;
		}

		.dropInfo
		{
			color: #636363;
		}
		.dropInfo p:not(.articleCredit)
		{
			max-width: 600px;
			font-size: 1.8rem;
			line-height: 2.8rem;
			margin: 20px auto;
			text-align: left;
			color: #4a4a4a;
		}
		.dropInfo img
		{
			display: block;
			max-width: 600px;
			margin: 20px auto;
		}
		.articleCredit 
		{
			font-size: 1.8rem;
			line-height: 24px;
			cursor: pointer;
			font-family: sansProBlack;
			margin-top: 4px;
			margin-bottom: 4px;
		}
		.articleList 
		{
			max-width: 600px;
			font-size: 2.0rem;
			line-height: 3.3rem;
			margin: 20px auto;
			text-align: left;
			list-style-type: disc;
		}
		.articleList li
		{
			margin: 20px 0;
		}
/*--- Article Pages ---*/
.articlesGreeting 
{
	position: relative;
	display: block;
	max-width: 60%; 
	min-width: 320px;
	min-height: 300px;
	margin: 0px auto 40px auto;
	padding-top: 40px;
}
.articlesGreetingImage img
{
	max-width: 240px;
	height: auto;
	position: absolute;
	top: 50%;
	left: 8px;
	transform: translateY(-50%);
}	
.articleIntro
{
	position: relative; 
	display: block;
	left: 350px;
	padding: 10px;
	max-width: 70%;
	height: 300px;
	background-color: rgba(40,40,40,0.8);
	color: #fff;
}
.articleIntroBlock 
{
	position: absolute; 
	top: 50%;
	transform: translateY(-50%);
}
.articleIntro h4
{
	font-family: sansProLight;
	font-size: 3.8rem;
	margin-bottom: 12px;
}
.articleIntro p
{
	font-size: 2rem;
	padding: 12px 16px;
	color: #fff;
}
.articleIntro a
{
	color: #fff;
	border-bottom: 2px solid #950000;
	transition: all .5s ease;
}
.articleIntro a:hover
{
	color: #fff;
	border-bottom: 2px solid #9a9a9a;
}
#articlesContent
{
	position: relative;
	display: block;
	max-width: 900px;
	min-width: 320px;
	margin: 60px auto;
	font-family: sansProLight;
	font-size: 1.8rem;
	line-height: 2.8rem;
	text-align: left;
}
#articlesContent p
{
	position: relative;
	display: block;
	max-width: 600px;
	min-width: 320px;
	margin: 20px auto;
}
#articlesContent img
{
	position: relative;
	display: block;
	max-width: 600px;
	margin: 20px auto;
}
#articlesContent .highlight
{
	font-size: 2.2rem;
}
.articleBack
{
	display: block;
	font-size: 2.4rem;
	font-family: sansProBlack;
	color: #4a4a4a;
	border-bottom: 2px solid #950000;
	margin-top: 100px;
	width: 220px;
}
.articleBack:hover
{
	color: #950000;
}	




.leftHeadline
{
	font-weight: bold;
	display: inline-block;
	vertical-align: middle;
	max-width: 200px;
}
.rightInfo
{
	display: inline-block;
	vertical-align: middle;
	max-width: 320px;
}
.leftRight 
{
	width: 60%;
	min-width: 320px;
	margin: auto;
}
.infoTable
{
	min-width: 320px;
	max-width: 70%;
	font-size: 1.7rem;
	margin: 30px auto;
	border-collapse: collapse;
	
	/* display: block; */
}
.infoTable tr:nth-child(2n)
{
	background-color: #eee;
}

/* third column*/
.thirdCol tr td:nth-child(3)
{
	text-align: right;
}
/* second column*/
.secondCol tr td:nth-child(2)
{
	text-align: right;
}


.infoTable caption
{
	color: #950000;
	font-family: sansProBlack;
	font-size: 1.2em;
	text-align: left;
}
.infoTable th
{
	padding: 6px 8px;
	background-color: #636363;
	color: #ffffff;
	border: 1px solid #fff;
	font-family: sansProLight;
}
.infoTable td
{
	border: 1px solid #636363;
	padding: 6px 20px;
}
.gray td
{
	background-color: #eee;
	color: #434343;
	border: 1px solid #434343;
}

/* Rations Table */
.rationsTable
{
	max-width: 90%;
	font-size: 1.8rem;
	margin: 30px auto;
	border-collapse: collapse;
}.rationsTable caption
{
	color: #950000;
	font-family: sansProBlack;
	font-size: 1.8em;
	text-align: left;
}
.rationsTable tr:nth-child(2n)
{
	background-color: #eee;
}
.rationsTable tr th
{
	background-color: #636363;
	color: #fff;
	font-weight: normal;
	font-family: sansProLight;
	padding: 6px 20px;
	border: 1px solid #fff;
}
.rationsTable tr td
{
	padding: 6px 12px;
	text-align: right;
}
.rationsTable tr td:nth-child(1n)
{
	
	border-right: 1px solid #4a4a4a;
}


#wideTable 
{
	max-width: 90%;
}
.infoBlock
{
	border: 1px solid #636363;
	width: 60%;
	min-width: 320px;
	margin: auto;
	padding: 12px;
	text-align: center;
}
/*--- Highlights ---*/
.bluelight
{
	color: #000095;
	text-decoration: underline;
	display: inline-block;
	font-family: sansProBlack;
	font-weight: initial;
}
.greenlight
{
	color: #004400;
	text-decoration: underline;
	display: inline-block;
	font-family: sansProBlack;
}
.redlight
{
	color: #950000;
	text-align: center !important;
	font-family: sansProBlack;
}

.highlight
{
	color: #950000;
	display: block;
	font-family: sansProBlack;
	font-weight: initial;
}
.divider
{
	display: block;
	width: 90%;
	margin: 20px auto;
	color: #950000;
}
.underline
{
	text-decoration: underline;
}
.overline
{
	text-decoration: overline;
}
.right 
{
	text-align: right;
}
.center 
{
	text-align: center;
}
.bolding 
{
	font-family: sansProBlack !important; 
	font-weight: initial !important;
}

/*--- About Page ---*/
#aboutGreeting 
{
	width: 100%;
	min-height: 800px;
	background: url("images/skyField.jpg") no-repeat center center;
	background-size: cover;
	background-attachment: fixed;
}

/*--- Contact Page---*/
#contactGreeting 
{
	width: 100%;
	min-height: 600px;
	background: url("images/grassField.jpg") no-repeat center center;
	background-size: cover;
	background-attachment: fixed;
	text-align: center;
}
#contactGreeting img 
{
	margin-top: 20px;
	margin-bottom: 20px;
	width: 100%;
	max-width: 400px;
}
#contactContent
{
	position: relative;
	display: block;
	width: 100%;
}
#contactWrap
{
	position: relative;
	width: 50%;
	min-width: 320px;
	margin: auto;
}
#contactWrap h2
{
	margin-top: 80px;
	color: #950000;
	font-size: 3.4rem;
}
#contactWrap p
{
	font-family: sansProLight;
	font-size: 2.0rem;
	line-height: 3.2rem;
}
#contactWrap a
{
	color: #4a4a4a;
	font-family: sansProBlack;
	transition: all .5s ease;
}
#contactWrap a:hover
{
	color: #202020;
}
#contactBottom 
{
	width: 100%;
}
#contactBottom img
{
	width: 100%;
	margin: 60px auto;
}

/*--- Catalog Page ---*/
#catalogHomeGreeting
{	
	background: url("images/productsCollage.jpg") no-repeat center center;
	background-size: cover;
	background-attachment: fixed;
}
#catalogGreeting
{	
	background: url("images/catalogHero.jpg") no-repeat center center;
	background-size: cover;
	background-attachment: fixed;
}
#catalogContent
{
	position: relative; 
	height: auto;
	margin: 60px auto 60px auto;
	width: 60%;
	min-width: 320px;
}

#catalogSections ul
{
	margin: 30px auto;
}
#catalogSections > ul li
{
	position: relative; 
	display: block;
	font-size: 2.4rem;
	min-height: 42px;
	margin-bottom: 12px;
	margin-left: 20px;
}
#catalogSections > ul li a
{
	color: #4a4a4a;
	border-bottom: 2px solid #950000;
	transition: all .5s ease;
}
#catalogSections > ul li a:hover
{
	color: #950000;
}
.catalogItem a
{
	color: #950000;
	transition: all .5s ease;
	margin-left: 30px;
}
.catalogItem a:before
{
	content: "\2022";
	margin-right: 6px;
}
.catalogItem a:hover
{
	color: #4a4a4a;
}
.supportLink 
{
	width: 100%;
	text-align: center;
	
	margin: 80px auto;
}
.supportLink a
{
	color: #4a4a4a;
	transition: color .5s ease;
	border-bottom: 2px solid #950000;
}
.supportLink a:hover 
{
	color: #950000;
}

/*--- PRODUCT PAGE STYLES ---*/
.prodTable 
{
	position: absolute; 
	bottom: 0;
	right: 0;
	display: inline-block;
	vertical-align: middle;
	border-collapse: collapse;
	bordeR: 1px solid #636363;
	
	font-family: sansProLight;
	font-size: 1.8rem;
}
.prodTable caption
{
	color: #950000;
	display: block;
	font-family: sansProBlack;
	font-size: 2.4rem;
}
.prodTable th
{
	padding: 6px 8px;
	background-color: #636363;
	color: #ffffff;
	border-left: 1px solid #636363;
	border-right: 1px solid #636363;
}
.prodTable td
{
	border: 1px solid #636363;
	padding: 6px 8px;
}
#catalogSections h1 
{
	font-size: 4.2rem;
	margin-top: 20px;
}
#catalogSections .productInfo h2 
{
	font-size: 3.6rem;
	color: #950000;
	text-align: center;
	margin-top: 20px;
}
#catalogSections .productInfo p 
{
	display: block;
	vertical-align: middle;
	max-width: 500px;
	line-height: 3.0rem;
	font-family: sansProLight;
	font-weight: 600;
	
	margin: 12px auto;
}
#catalogSections .productInfo a 
{
	transition: all .5s ease;
	border-bottom: 1px solid #950000;
}
#catalogSections .productInfo a:hover 
{
	color: #4a4a4a;
}
#catalogSections .productInfo
{
	position: relative; 
	display: block;
	max-width: 800px;
	border: 2px solid #636363;
	padding: 12px;
	margin: 20px auto;
}
#catalogSections .productInfo .productImage img
{
	display: block;
	margin: 20px auto;
	max-width: 100%;
	
	max-width: 300px;
	height: auto;
}
#catalogSections .productInfo .productImage p
{
	text-align: center;
}
#catalogSections .productBanner
{
	display: block;
	text-align: center;
	background-color: #4a4a4a;
	color: #fff;
	padding: 18px 0;
	font-size: 2.6rem;
	max-width: 800px;
	margin: auto;
}
.productInfoList
{
	margin: auto;
	max-width: 500px;
}
.productInfoList li
{
	position: relative;
	margin-left: 10px;
}
.productInfoList li:before
{
	position: absolute;
	top: 2px;
	left: -10px;
	content: "\2022";
	color: #950000;
}


/* Products Page */
#productsGreeting
{
	background: url("images/productsCollage.jpg") no-repeat center center;
	background-size: cover;
	background-attachment: fixed;
}


/*--- Employment Page ---*/

#employmentGreeting 
{
	background: url("images/employImage.jpg") no-repeat center center;
	background-size: cover;
	background-attachment: fixed;
	text-align: center;
}

#employmentOpps 
{
	width: 60%;
	min-width: 320px;
	margin: 80px auto;
	font-family: sansProLight;
}
#employmentOpps p
{
	font-family: sansProLight;
	font-size: 1.8rem;
	line-height: 3rem;
}
#employmentOpps h4
{
	font-family: sansProBlack;
	color: #4a4a4a;
	font-size: 1.6em;
	line-height: 1.8em;
}
#employmentOpps ul 
{
	margin-left: 20px;
}
#employmentOpps ul li 
{
	width: 100%;
	min-width: 320px;
	font-size: 1.2em;
	line-height: 1.8em;
	cursor: pointer;
	transition: all .5s ease;
}
#employmentOpps ul li:before
{
	content: "\205D";
}
#employmentOpps ul > li:hover
{
	color: #636363;
}
.dropInfo 
{
	position: relative;
	display: none;
	margin-left: 20px;
	max-width: 900px;
	margin: auto;
}
.dropInfo p
{
	margin-top: 12px;
	line-height: 1.3em;
}
.dropInfo a
{
	color: #950000;
	border-bottom: 1px solid #950000;
	transition: all .6s ease;
}
.dropInfo a:hover
{
	color: #636363;
}
.jobButton 
{
	position: relative; 
	display: block;
	width: 150px;
	height: 60px;
	margin: 20px auto;
	background-color: #950000;
	text-align: center;
	line-height: 60px;
	border-radius: 6px;
}
.jobButton a
{
	color: #fff;
	transition: all .5s ease;
	font-family: sansProBlack;
}
.jobButton:hover a
{
	letter-spacing: 1px;
}


/*--- information page classes ---*/
.introGreeting 
{
	position: relative; 
}
.introGreetingWrap 
{
	width: 80%;
	max-width: 1200px;
	min-width: 330px;
	min-height: 400px;
	position: relative;
	display: block;
	margin: auto;
	position: absolute; 
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: rgba(0,0,0,0.8);
	
	padding: 28px 12px;
}
.introGreetingImage
{
	position: relative;
	height: 100%;
	width: 340px;
	text-align: center;
	display: inline-block;
	vertical-align: middle;
}
.introGreetingImage img
{
    max-width: 300px;
    width: auto;
    height: auto;
}
.introGreetingText 
{
	display: inline-block;
	vertical-align: middle;
	text-align: left;
	color: #fff;
}
.introGreetingText h2
{
	font-size: 4.0rem;
}
.introGreetingText p
{
	max-width: 600px;
	font-family: sansProLight;
	font-size: 2.0rem;
	line-height: 3.3rem;
	padding: 6px;
}

/*-- Info Image Left --*/
.infoImageLeftSection
{
	position: relative; 
	display: block;
	width: 100%;
	height: auto;
	margin-top: 30px;
	
	font-size: 2.0rem;
	line-height: 3.3rem;
	font-family: sansProLight;
}
.infoImageLeftWrap 
{
	position: relative; 
	display: block;
	width: 80%;
	max-width: 1200px;
	min-width: 330px;
	height: auto;
	margin: auto;
}
.infoImageLeft
{
	display: inline-block;
	vertical-align: middle;
	max-width: 500px;
	height: auto;
}
.infoImageLeft img 
{
	max-width: 100%;
	max-height: 100%;
}
.infoSmallLeft 
{
	position: relative;
	display: inline-block;
	vertical-align: middle;
	
	max-width: 600px;
	margin-left: 60px;
}
.infoSmallLeft h4
{
	font-size: 3rem;
	margin-bottom: 20px;
}
.infoSmallLeft p
{
	margin: auto;
	padding: 12px;
}
.iconTextArea 
{
	width: 100%;
	margin: 20px auto;
	min-height: 200px;
	position: relative; 
	display: block;
	background-color: #636363;
	color: #fff;
	padding-top: 30px;
	padding-bottom: 20px;
}
.iconTextArea img
{
	max-width: 140px;
	height: auto;
	display: block;
	margin: auto;
}
.iconTextArea p
{
	padding: 20px;
	max-width: 900px;
	margin: auto;
	
	font-size: 2.0rem;
	line-height: 3.3rem;
	font-family: sansProLight;
}
.iconTextArea h4
{	
	text-align: center;
	font-size: 1.6em;
	font-family: sansProBlack;
}
.blurb
{
	font-family: sansProBlack;
	font-size: 2.4rem;
	color: #950000;
}

/*-- Info Image Right --*/
.infoImageRightSection
{
	position: relative; 
	display: block;
	width: 100%;
	height: auto;
	margin-top: 30px;
	
	font-size: 2.0rem;
	line-height: 3.3rem;
	font-family: sansProLight;
}
.infoImageRightWrap 
{
	position: relative; 
	display: block;
	width: 80%;
	max-width: 1200px;
	height: auto;
	margin: auto;
}
.infoImageRight
{
	display: inline-block;
	vertical-align: middle;
	max-width: 470px;
	height: auto;
	margin-left: 60px;
}
.infoImageRight img 
{
	display: inline-block;
	vertical-align: middle;
	max-width: 100%;
	max-height: 100%;
}
.smallImages img 
{
	display: inline-block;
	vertical-align: middle;
	max-width: 100%;
	max-height: 100%;
	width: 140px;
	height: 140px;
}
.infoSmallRight 
{
	position: relative;
	display: inline-block;
	vertical-align: middle;
	
	max-width: 600px;
	margin-left: 60px;
}
.infoSmallRight h4
{
	font-size: 3rem;
	margin-bottom: 20px;
}
.infoSmallRight p
{
	margin: auto;
	padding: 12px;
}
.infoSmallRight li
{
	margin: auto;
	list-style-type: disc;
}

/*--- Feed Program Page ---*/
#feedProgramGreeting
{
	background: url("images/feedCover.jpg") no-repeat center center;
	background-size: cover;
	background-attachment: fixed;
}
#feedPrograms
{
	position: relative;
	display: block;
	max-width: 60%;
	min-width: 320px;
	height: auto;
	margin: 60px auto;
}
#feedPrograms h4 
{
	color: #950000;
	font-size: 1.6em;
	line-height: 1.8;
	margin-bottom: 40px;
	cursor: pointer;
}
.programInfo 
{
	margin: 60px auto;
	padding-left: 40px;
	
	display: none;
}
.programInfoIntro
{
	position: relative;
	display: block;
	width: 100%;
}
.programInfoIntro img
{
	position: relative;
	display: inline-block;
	vertical-align: middle;
	margin-right: 18px;
}
.programInfoIntro p
{
	position: relative;
	display: inline-block;
	vertical-align: middle;
	max-width: 50%;
	line-height: 1.4;
}
.programInfoIntro h4
{
	display: inline-block;
	color: #950000;
	font-size: 1.6em;
	line-height: 1.4;
}
.programGuide
{
	margin: 20px auto;
}
.programGuide h3
{
	font-size: 1.6em;
	color: #4a4a4a;
}
.programGuide p
{
	display: block;
	vertical-align: middle;
	font-family: sansProLight;
	font-size: 1.2em;
}

.orderedList
{
	font-size: 1.8rem;
	width: 100%;
}
.orderedList li
{
	margin-left: 20px;
}

/*-- Tables --*/
.hunterTable 
{
	max-width: 900px;
	margin: auto;
}
.hunterTable th 
{
	
}
.hunterTable tr 
{
	padding: 12px;
}
.hunterTable td 
{	
	padding: 12px;
}
.tableInfo 
{
	text-align: left;
}
.tableValue 
{
	text-align: center;
}
.hunterTable span 
{
	color: #950000;
}
.highlightTable
{
	margin: auto;
	font-size: 1.7rem;
}
.highlightTable td
{
	background-color: #4a4a4a;
	color: #fff;
	padding: 12px;
}


/*-- Fair Winners --*/
#fairWinnersGreeting
{
	background: url("images/fairWinner.jpg") no-repeat center center;
	background-size: cover;
	background-attachment: fixed;
}
#fairSelections 
{
	position: relative; 
	height: auto;
	margin: 60px auto 60px auto;
	width: 60%;
	min-width: 320px;
}
#fairSelections h4 
{
	color: #950000;
	font-size: 1.6em;
	line-height: 1.8em;
}
.stateYearSelect ul li
{
	display: inline-block;
	width: 120px;
	height: 48px;
	text-align: center;
	cursor: pointer;
	margin-right: 20px;
}
.stateYearSelect ul li:after
{
	content: '';
	display: block;
	height: 2px;
	width: 0;
	background: transparent;
	transition: all .5s ease;
	margin: auto;
}
.stateYearSelect ul li:hover:after
{
	position: relative;
	width: 90%;
	background-color: #4a4a4a;
}
/* Fair Winner Drop Down */
.thisYearsWinners
{
	position: absolute;
	left: 0;
	top: 0;
	
	text-align: center; 
	height: auto;
	display: block;
	
	width: 920px;
	width: 100%;
	
	background-color: #fff;
	border-top: 2px solid #4a4a4a;
	border-bottom: 2px solid #4a4a4a;
	
	display: none;
	z-index: 999;
}
.winner
{
	position: relative;
	max-width: 400px;
	display: inline-block;
	vertical-align: top;
}
.winner img
{
	position: relative;
	max-width: 100%;
}
.winner p
{
	font-family: sansProLight;
	text-align: left; 
	padding: 20px 12px;
}


/*--- REWARDS page ---*/
#rewardsGreeting
{
	background: url("images/rewardsBanner.jpg") no-repeat center center;
	background-size: cover;
	background-attachment: fixed;
}

/*-- Start Mobile Styling --*/
@media only screen and (max-width : 866px) 
{
	
	/*--- Navigation ---*/
	#tabMenu
	{
		bottom: 0px;
		left: 0px;
		width: 100%;
		border-radius: 0px;
		border: none;
	}
	#moreButton 
	{
		display: inline-block;
		vertical-align: top;
		margin-top: 10px;
	}
	#topRow 
	{
		display: none;
	}
	/*--- Hidden Navigation ---*/
	nav
	{
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		text-align: center;
		top: initial;
		z-index: 30;
		background-color: rgba(255,255,255,0.8);
		height: auto;
		transition: all .8s ease;
		margin-top: -458px;
	}
	nav ul 
	{
		display: block;
		background-color: #fff;
	}
	nav ul li
	{
		width: 100%;
		display: block;
		padding: 0px;
		height: 40px;
		line-height: 40px;
		margin-bottom: 12px;
		margin-left: 0px;
	}
	nav ul li a
	{
		width: 100%;
		height: 100%;
		display: block;
		padding: 0px 0px;
	}
	nav a:hover 
	{
		background-color: #636363;
		color: #fff;
	}
	
	#greeting 
	{
		padding-top: 20px;
		
		background-position: -340px 0;
	}
	#greetingText 
	{
		width: 100%;
		max-width: 500px;
		margin: auto;
	}
	#paragraphHolder h4 
	{
		width: 100%;
		padding: 8px;
	}
	.infoBucket 
	{
		margin-left: 0;
	}
	.peruseItem
	{
		width: 90%;
		text-align: center;
	}
	.peruseInfo 
	{
		margin-left: 0px;
	}
	#footWrap
	{
		width: 60%;
	}
	
	
	#contentWrap 
	{
		width: 98%;
	}
	.liDrop
	{
		margin-left: 30px;
	}
	.dropInfo
	{
		width: 100%;
	}
	.dropInfo img
	{
		max-width: 100%;
	}
/*-- About Page --*/
	.introGreetingWrap 
	{
		width: 96%;
		max-width: 1200px;
		min-height: 400px;
		position: relative;
		display: block;
		margin: auto;
		position: relative; 
		top: initial;
		left: initial;
		transform: none;
	}
	.introGreetingImage
	{
		position: relative;
		height: 100%;
		width: 100%;
		text-align: center;
		display: block;
	}
	.introGreetingImage img
	{
		height: auto;
		width: 240px;
		margin: auto;
	}
	.infoImageRight
	{
		margin-left: 0;
	}

/*--- info areas ---*/
	.infoSmallLeft 
	{
		margin-left: 0px;
	}
	.infoSmallLeft h4
	{
		font-size: 3.0rem;
	}
	.infoSmallLeft p
	{
		font-size: 2.0rem;
	}
	.infoSmallRight 
	{
		margin-left: 0px;
	}
	.infoSmallRight h4
	{
		font-size: 3.0rem;
	}
	.infoSmallRight p
	{
		font-size: 2.0rem;
	}

	/*-- Opening Greetings --*/
	.openingGreeting
	{
		position: relative;
		display: block;
		width: 100%;
		background-size: cover;
		background-attachment: fixed;
		text-align: center;	
		margin-bottom: 140px;
	}
	
	.openingGreetingWrap
	{
		position: relative;
		width: 100%;
		min-width: 300px;
		height: auto;
		text-align: center;
	}
	.openingGreetingImage
	{
		position: relative;
		display: block;
		height: auto;
		width: 100%;
	}
	.openingGreetingImage img
	{
		position: relative; 
		top: initial;
		left: initial;
		transform: none;
		max-width: 200px;
		margin: auto;
	}
	.greetingIntro
	{
		position: relative;
		display: block;
		max-width: 320px;
		height: auto;
		margin: auto;
	}
	.greetingIntro h4
	{
		margin-top: 10px;
		font-size: 3.4rem;
	}
	.greetingIntro p
	{
		font-size: 2.0rem;
	}
	#paragraphHolder a 
	{
		width: 100%;
	}
	
/*--- Home Page ---*/
	#greetingButton p 
	{
		font-size: 1.6rem;
	}

/*--- Article Links Page ---*/
	#articlesContent
	{
		width: 100%;
	}
	#articlesContent h4
	{
		font-size: 2.0rem;
	}
/*--- Article Pages ---*/
	.articlesGreetingImage img
	{
		position: relative;
		display: block;
		top: initial;
		left: initial;
		transform: none;
		margin: auto;
	}	
	.articleIntro
	{
		position: relative; 
		display: block;
		left: initial;
		padding: 20px;
		max-width: 90%;
		height: auto;
		margin: 10px auto;
	}	
	.articleIntroBlock 
	{
		position: relative; 
		top: 10px;
		transform: none;
	}	
	#articlesContent
	{
		width: 100%;
	}	
	#articlesContent p
	{
		padding: 20px 10px;
	}	
	#articlesContent img
	{
		max-width: 100%;
	}
	
	
/*--- Product Catalog ---*/
	#catalogContent
	{
		width: 100%;
	}
	#catalogSections 
	{
	}
	#catalogSections .productInfo
	{
		margin: 20px auto;
		width: 100%;
		max-width: 780px;
		padding: 6px;
	}
	#catalogSections > ul li 
	{
		font-size: 2.0rem;
		margin-left: 0;
	}
	.catalogItem a
	{
		margin-left: 10px;
	}
	.infoBlock
	{
		display: block;
		width: 100%;
		min-width: 300px;
	}
	.prodTable 
	{
		position: relative;
		margin: 20px auto;
	}
	
	.infoTable
	{
		width: 100%;
		max-width: 100%;
		font-size: 1.6rem;
		margin-left: -4px;
	}
	.infoTable td 
	{
	    padding: 6px;
	}

    /* Rations Table */
    .rationsTable
    {
    	font-size: 1.6rem;
    }
    .rationsTable tr th
    {
    	background-color: #636363;
    	color: #fff;
    	font-weight: normal;
    	font-family: sansProLight;
    	padding: 6px 6px;
    	border: 1px solid #fff;
    }
    .rationsTable tr td
    {
    	padding: 6px 6px;
    	text-align: right;
    }
	/*-- Feed Programs --*/
	#feedPrograms 
	{
		width: 96%;
		max-width: 100%;
		margin: auto;
	}	
	.programInfo 
	{
		padding-left: 10px;
	}
	.programGuide p 
	{
		width: 90%;
		max-width: 90%;
		margin: auto;
	}
	/* Feed Tables */
	.hunterTable 
	{
		width: 100%;
		margin: auto;
	}
	
	
	/*--- Employment Page---*/
	#employmentOpps
	{
		width: 320px;
		margin: auto;
	}
	#employmentOpps h4
	{
		text-decoration: underline;
	}
	#employmentOpps ul
	{
		width: 300px;
		margin-left: 10px;
	}	
	
	

	
	
	/* Fair Winners */
	.thisYearsWinners
	{
		width: 300px;
		
		display: none;
	}
	.winner
	{
		max-width: 300px;
		display: block;
	}
}

@media only screen and (min-width : 700px) and (max-width : 1302px) 
{
	.peruseItem
	{
		width: 70%;
	}
	.peruseInfo 
	{
		margin-left: 10px;
	}	

	/*-- Opening Greetings --*/
	.openingGreeting
	{
		position: relative;
		display: block;
		width: 100%;
		height: 800px;
		background-size: cover;
		background-attachment: fixed;
		text-align: center;	
	}
	.openingGreetingWrap
	{
		position: relative;
		width: 100%;
		min-width: 300px;
		height: auto;
		text-align: center;
	}
	.openingGreetingImage
	{
		position: relative;
		height: auto;
		width: auto;
		display: inline-block;
	}
	.openingGreetingImage img
	{
		position: relative; 
		top: initial;
		left: initial;
		transform: none;
		max-width: 200px;
	}
	.greetingIntro
	{
		position: relative;
		display: inline-block;
		vertical-align: middle;
		max-width: 320px;
		height: auto;
		font-size: 1.2em;
		line-height: 1.4em;
	}
	.greetingIntro h4
	{
		margin-top: 10px;
	}
	
	
/*-- About Page --*/
	.introGreetingWrap 
	{
		width: 96%;
		max-width: 700px;
		min-height: 400px;
		position: relative;
		display: block;
		margin: auto;
		position: relative; 
		top: initial;
		left: initial;
		transform: none;
		
		text-align: center;
	}
	.introGreetingImage
	{
		position: relative;
		height: 100%;
		width: 100%;
		text-align: center;
		display: block;
	}
	.introGreetingImage img
	{
		height: auto;
		width: 240px;
		margin: auto;
	}
	.infoImageRight
	{
		display: block;
		margin: auto;
	}	
	.infoImageLeftWrap
	{
		text-align: center;
	}
	.infoImageLeftWrap p
	{
		text-align: left;
	}
	.infoSmallRight ul
	{
		text-align: left;
	}	
	.infoImageLeft
	{
		display: block;
		margin: auto;
	}	
	
	/*--- Product Catalog ---*/
	#catalogContent
	{
		width: 100%;
	}
	#catalogSections .productInfo
	{
		width: 90%;
		max-width: 780px;
	}
	.prodTable 
	{
		position: relative;
		margin: 20px auto;
	}
	
	/* Fair Winners */
	.thisYearsWinners
	{
		width: 600px;
		
		display: none;
	}
	.winner
	{
		max-width: 600px;
		display: block;
	}	
	
	/* Article Pages */
	.articlesGreetingImage img
	{
		position: relative;
		display: block;
		top: 0px;
		transform: none;
		margin: auto;
	}	
	.articleIntro
	{
		position: relative; 
		display: block;
		left: initial;
		padding: 10px;
		max-width: 90%;
		height: auto;
		margin: 10px auto;
	}	
	.articleIntroBlock 
	{
		position: relative; 
		top: 10px;
		transform: none;
	}
}


