@import url(/css/reset.css);

body {
	font-family: Helvetica, Arial, Verdana, sans-serif;
}

/* Page container 850px width */
#page-container {
	border: 3px solid #f00;
	padding: 5px;
	width: 850px;
	margin: 25px auto;
}

	/* Page header styles. */
	#header {
		margin: 20px 0;
	}
		/* Clickable logo inside H1 tag for SEO */
		#header h1 a {
			display: block;
			width: 269px;
			height: 53px;
			text-indent: -9000px;
			background: url('../images/snyder-logo.gif') no-repeat;
			margin: 0 auto;
		}
	/*
	   Navigation bar styles
	   #navigation refers to the black bar
	   #nav-list refers to the unordered list of links
	   Adjust the width of the #nav-list if more content is added
	   to the bar.
	*/
	
	#navigation {
		background: #000;
	}
		#nav-list {
			background: #000;
			text-align: center;
			width: 455px;
			margin: 0 auto;
		}
	
			#nav-list li {
				float: left;
				display: block;
				list-style-type: none;
				margin: 0 1px;
			}
		
				#nav-list a {
					display: block;
					background: #000;
					color: #fff;
					padding: 8px 10px;
					text-decoration: none;
					font-size: 0.9em;
				}
				
				/* Navigation Current Section and Hover Styles */
				#nav-list a:hover,
				body#home #nav-home,
				body#faq #nav-faq,
				body#history #nav-history,
				body#services #nav-services,
				body#contact #nav-contact,
				body#promotions #nav-promotions {
					background: #f00;
				}
	
	/*
	Content Columns
	#content overall content column (optionally can contain right, left columns)
	#left-content left side content
	#right-content right side content
	*/
	#content {
		padding: 15px 10px;
	}
	
		#left-content,
		#right-content {
			float: left;
			padding: 0 10px;
		}
		
		#left-content {
			width: 540px;
			/*background: blue;*/
		}
		
		#right-content {
			width: 250px;
			/*background: red;*/
			padding: 10px;
		}

	  /* Contact Form */
	#content form { margin-left: 20px; width: 515px; margin: 0 auto; }
	#content iframe { margin-left: 20px; margin-top: 15px; }
	#content label { margin-right: 20px; font-size: 14px; display: block; margin-top 10px; }
	#content input, #content textarea, #content select { margin: 10px 10px; }
	#content textarea { width: 400px; height: 150px; max-width: 500px; max-height: 300px; }
	#content .ind { margin-left: 20px; }
	#content .impmes { color: red; }

	  /* Promotions Email Signup Form */
	#promotions form { margin-left: 20px; width: 515px; }
	#promotions label { margin-right: 20px; font-size: 14px; display: block; margin-top 10px; }
	#promotions input { margin: 10px 10px; }

	/*
	General Content Styles
	Headings, Paragraphs, Lists, and Other Tags
	*/
	h2 {
		font: bold 1.15em Helvetica,Arial,Verdana,sans-serif;
		color: #f00;
	}
	
	#content p,
	#content dl,
	#content ul {
		font-size: 0.9em;
		line-height: 1.4em;
	}
	
	#content p {
		margin: 18px 0;
	}
	
	dl {
		margin-top: 40px;
	}
	
	dt {
		font-weight: bold;
	}

	dd {
		margin: 0 0 20px 10px;
	}
	
	ul {
		margin: 15px 0 15px 25px;
	}
	
	/* Object Alignment Styles */
	
	.alignright {
		float: right;
	}
	
	.alignleft {
		float: left;
	}
	
	/* Footer Styles */
	#footer {
		background: #000;
		color: #fff;
		padding: 5px 10px;
		font-size: 0.7em;
	}
	
		#footer a {
			color: #fff;
			text-decoration: none;
		}
	
	/* Clearfixes (Some may be defined otherwise just use the class) */
	.clearfix:after,
	#nav-list:after,
	#content:after,
	#footer:after {
		content: ".";
		display: block;
		clear: both;
		visibility: hidden;
		line-height: 0;
		height: 0;
	}