@charset "UTF-8";
/* CSS Document */

/*Remove this rule, this is only for demo purposes to make the boxes black with white text
The line height on the <p> tag gives each box a height value*/

/*p
{
	color: #fff;
	line-height: 100px;
	background: #000;
	text-align: center;
	margin: 0;
}*/

/*basic reset*/
/*browsers have built in values for elements so we'll reset a few things to zero, you can add to this or remove items as needed*/

div,p,body,header,footer,section,article,nav 
{ 
	margin: 0; 
	padding: 0; 
}	

img 
{ 
	border: none; /*Remove border if image is a link*/
	margin: 0; 
	padding: 0; 
}

/*html selectors*/

body 
{
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 12px;
	color: #333;
	background: url(../images/light-veneer.png);
}


/*a:link is for not visited(standard unclicked link), 
a:visited is for visited, and just a applies to both.*/
/*a will also style anchor links*/

a:link, a:visited 
{ 
 	text-decoration:none; 	
}

a:hover, a:active 
{ 
	text-decoration:none; 
}

/*hide elements from browser but show for doc outline*/

.hidden
{
	display: none;
}

/*Div is block level and no width specidied therefore stretches full screen*/
.bar
{
	background-color: #000;
	height: 20px;
}

/*Site Container*/
/*This is essentially a box that we place the whole site in.  
We center the box using margin 0 auto and give it a fixed width of 920 + 20px + 20px (960px) so it fits on 1024x768 screens.*/

#siteContainer 
{
	margin: 0 auto;
	width: 920px;
	padding-left: 20px;
	padding-right: 20px;
	background-color: white;
}

#mainHeader
{
	padding-top: 20px;
	padding-bottom: 20px;
	/*border-bottom: dashed 4px #DDD;*/
	background-color: #fffad1;
	overflow: hidden; /*fixes colapsing parent*/
	/*http://coding.smashingmagazine.com/2009/10/19/the-mystery-of-css-float-property/*/
}

/*for making a border 5 px away from the background color*/
.bottomBorderConstruct
{
	padding-bottom: 10px;
	border-bottom: dashed 3px black;
}

#logo
{
	width: 320px;
	height: 150px;
	float: left;
}

#mainNav 
{
	float: right;
	width: 500px;
	margin-right: 15px;
}

#mainNav ul
{
	float: right;
	list-style-type: none; /*remove bullets*/
	padding: 0;
	margin-top: 100px;
}

#mainNav ul li
{
	display: inline;
	margin-left: 25px;
}

#mainNav ul li a
{
	color: black;
	font-size: 25px;
	font-weight: bolder;
	font-style: italic;
	padding: 5px;
}

#mainNav ul li a:hover
{
	border-bottom: 4px solid #e20012;
}

.selected
{
	padding-bottom: 8px;
	border-bottom: 4px solid #e20012;
}

#promo1
{
	margin-top: 40px;
	overflow: hidden; /*fixes colapsing parent*/
	border-bottom: solid 1px #DDD;
	padding-bottom: 40px;
}

#promo2
{
	margin-top: 40px;
	overflow: hidden; /*fixes colapsing parent*/
	padding-bottom: 10px;
}

#promoText 
{
	float: left;
	width: 600px;
	padding: 5px;
	border: dashed 4px black;
}

#promoImage 
{
	float: right;
	width: 280px;
}
#promoImage h3
{
	font-weight: bolder;
	color: black;
	font-size: 25px;
	line-height: 28px;
}

#promoImage h2
{
	font-weight: normal;
	color: black;	
}

#productInfo
{
	margin-top: 40px;
	overflow: hidden; /*fixes colapsing parent*/
	padding-top: 20px;
	padding-bottom: 5px;
	background-color: #fffad1;
	
	display: flex;
	flex-direction: row;
	justify-content: center;
}

#productInfo img
{
	display: block;
	margin: 0 auto;
}

#productInfo h3
{
	font-size: 22px;
	font-weight: bolder;
	text-align: center;
	line-height: 10px;
}

#productInfo h2
{
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	color: #e20012;

	line-height: 10px;
}

.productDesc 
{
	float:left;
	width: 200px;
	margin-right: 40px;
}

.productDescLast 
{
	float:right;
	width: 200px;
}

#mainFooter 
{
	margin-top: 10px;
	padding-bottom: 40px;
	overflow: hidden;
	background-color: #fffad1;
}


#footerNav 
{
	float: left;
	width: 500px;
	margin-right: 15px;
}

#footerNav ul
{
	float: right;
	list-style-type: none; /*remove bullets*/
	padding: 0;
	margin-top: 50px;
}

#footerNav ul li
{
	display: inline;
	margin-left: 25px;
}

#footerNav ul li a
{
	color: black;
	font-size: 25px;
	font-weight: bolder;
	font-style: italic;
	padding: 5px;
}

#copyRight 
{
	float: right;
	width: 310px;
	color: black;
	font-size: 15px;
	font-weight: bolder;
	font-style: italic;
	padding: 5px;
	margin-top: 55px;
}










/*Contact Page */

#contentCon {
	margin-top: 40px;
	overflow: hidden; /*fixes colapsing parent*/
	border-bottom: dashed 3px black;
	padding-bottom: 40px;
}

#content1 
{
	float: left;
	width: 440px;

	overflow: hidden;
	padding-left: 20px;
	padding-top: 20px;
}

#content1 h2
{
	font-size: 30px;
	color: #2073a8;
	background-color: #ddeff7;
	margin-bottom: 40px;
	padding: 8px 0px 8px 5px;
}

#content2
{
	float: right;
	width: 400px;
	padding-left: 20px;
	margin-left: 20px;
	background-color: #fffad1;
}

#content2 h3
{
	font-size: 25px;
	font-weight: bold;
}

#content2 h2
{
	color: #e20012;
	font-size: 25px;
	font-weight: bolder;
	line-height: 5px;
}

#contactText
{
	font-size: 20px;
	width: 430px;
}

#contactForm
{
	margin: 0 auto;
}

#contactForm span
{
	color: #e20012;
	font-weight: bolder;
}

#contactArea
{
	width: 469px;
	float: left;
	border-right: solid 1px #ccc;
	margin-bottom: 30px;
}

input, textarea
{
	display: block;
	margin-top: 20px;
	margin-bottom: 20px;
	padding: 10px;
	width: 300px;
	height: 10px;
	background-color: #efefef;
	border: 1px solid #999;
	color: #333;
}

label
{
	font-weight: bold;
	font-size: 15px;
}
#comments
{
	width: 360px;
	height: 200px;
}

#submit
{
	width: 100px;
	height: 40px;
	background-color: #fffad1;
	padding: 5px 10px 5px 10px;
	color: black;
	font-weight: bold;
	font-size: 15px;
	margin-top: 30px;
	border: 1px solid #003471;
}







/*Hall of Fame*/

#productInfo2
{
margin-top: 15px;
overflow: hidden; /*fixes colapsing parent*/
padding-top: 20px;
padding-bottom: 5px;
background-color: #fffad1;
}

#productInfo2 h3
{
font-size: 25px;
font-weight: bolder;
text-align: center;
line-height: 10px;
}

#productInfo2 iframe
{
	width: 410px;
	height: 210px;
}

#promoImageBig
{
	width: 920px;
	padding-bottom: 20px;
	border-bottom: dashed 4px black;
}

.productDescLargeLeft 
{
	float:left;
	width: 410px;
	margin-left: 20px;
}

.productDescLargeLeft h1
{
	font-weight: bold;
	color: black;
}

.productDescLargeRight 
{
	float:right;
	width: 410px;
	margin-right: 20px;
}

.productDescLargeRight h1
{
	font-weight: bold;
	color: black;
}


