/******************** 

Reseting Elements & IE Fixes:

Most major browsers add their own basic styles to elements, like a border around an input form or a margin under a paragraph block. Resetting them helps make sure that we style each element individually and that its cross-browser compatible.

********************/

html, body, div, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, a, blockquote, pre, fieldset, table, th, td, textarea, input{ 
	margin: 0; padding: 0; }

a img {border:none;}

/* This takes out the fuzzy line around links when you click them, it's an optional addition */

:focus {outline:none;}

/********************

Global:

Style elements that affect the whole page or multiple elements.

********************/

body {
	background:#4d4d4d url(/images/bg.jpg) repeat-x;
	font-family:Arial, Helvetica, sans-serif;
	color:#666666;
	font-size:12px;
}
.container{
	width:1000px;
	margin:auto;
}
.clear {
	clear:both;
}

h1, p{
	margin-bottom:20px;
}
#body-content p, #footer p {
	line-height:20px;
}
p a{
	color:#ff8400;
	text-decoration:none;
	font-weight:bold;
}
li a{
	color:#ff8400;
	text-decoration:none;
}
p a:hover, li a:hover{
	background:#ff8400;
	color:#fff;
}

h1 a {
	color: #666666;
	text-decoration: none;
}

/********************

Header:

Style elements that affect the header; including menu & search.

********************/

#header {height:120px;}
#header .container {background:url(/images/header-bg.jpg) no-repeat;}

#logo {
	display:block;
	background:url(/images/logo.jpg) no-repeat;
	width:270px;
	height:70px;
}

/* Menu */

#menu {
	position:absolute;
	z-index:9999;
	display:block;
	height:60px;
}
#menu li {list-style:none; float:left;}
#menu li a {
	font-family:Arial, Helvetica, sans-serif;
	font-size:18px;
	color:#000;
	text-decoration:none;
	display:block;
	padding:0 20px;
	padding-top: 18px;
	float:left;
	height:42px;
}
#menu li a:hover, #menu li a.active {background:url(/images/menu-indent.png) no-repeat bottom; z-index:9999;}

/* Search */

#search-container {
	position:relative;
}
#search {
	position:absolute;
	right:10px;
	top:15px;
}
#search-input {
	color:#808080;
	width:230px;
	height:28px;
	padding:12px 0 0 20px;
	background:url(/images/search-bg.png);
	border:none;
}
#search-btn {
	position:absolute;
	right:10px;
	top:11px;
	width:20px;
	height:18px;
	background:url(/images/icons/search.png);
	border:none;
}

/********************

Body:

Style elements that affect the body, or content area of the page.

********************/

#body {
	background:#ffffff /*url(/images/body-end.jpg) repeat-x bottom*/;
	padding-bottom:20px;
	min-width:1000px;
}

/* Content */

#body-sep {
	margin:20px 0;
	width:1000px;
	height:2px;
	background:url(/images/body-sep.jpg) repeat-x;
	position:relative;
}
#body-content{
	clear:both;
	padding-top: 20px;
}
#body-left {
	position:relative;
	float:left;
	padding-left:10px;
	width:650px;
}
#body-right {
	float:right;
	padding-right:10px;
	width:310px;
}
p strong{
	color:#4c4c4c;
}


/* Testimonials */

.testimonial-uber-wrap {
	width:320px;
	background:url(/images/testimonial-bg.jpg) repeat-y;
	clear:both;
}
.testimonial-wrap{
	background:url(/images/testimonial-start.jpg) no-repeat top;
}
.testimonial{
	background:url(/images/testimonial-end.jpg) no-repeat bottom;
	padding:20px;
}
.testimonial p{
	margin-bottom:0;
}
.testimonial-author{
	margin:10px 0;
	font-style:italic;
	float:right;
}

/* Columns - primarily for contact */

.column-3 .column {
	width: 320px;
	float: left;
	margin-left: 20px;
}

.column-3 .column:first-child { margin-left: 0; }

/* Contact */

#contact-form input, #contact-form textarea, #contact-form button { margin-bottom: 20px; }
#contact-form input, #contact-form textarea {
	background: #ffffff;
	font-family: Arial, Helvetica, sans-serif;
	border: 1px solid #b3b3b3;
	font-size: 12px;
	width: 260px;
}
#contact-form input {
	height: 12px;
	padding: 13px 29px;
}
#contact-form textarea {
	padding: 13px 29px;
	height: 172px;
}

button#submit {
	height: 35px;
	width: 105px;
	border: none;
	background: url(/images/button/submit.png);
	float: right;
	cursor: hand; cursor: pointer;
}


/********************

Footer:

Style elements that affect the footer.

********************/

#footer {
	background:url(/images/footer-bg.jpg) repeat-x;
	color:#b2b2b2;
	min-width:1000px;
}
#footer .container {
	background:url(/images/footer-bg-start.jpg) no-repeat top;
	min-height:200px;
}
#footer-content {
	padding-top:40px;
	padding-left:10px;
	padding-right:10px;
}
.footer-sec {
	width:100%;
	float:left;
	margin-right:20px;
}
#footer h1 {
	color:#e5e5e5;
}

/* Fresh Off the Press */

.post {
	margin-bottom:20px;
	clear:both;
}
.post-content {
	width:175px;
	float:right;
}
.date {
	background:url(/images/date-bg.jpg) no-repeat;
	height:60px;
	float:left;
	width:40px;
	text-align:center;
	position:relative;
}
p.day, p.month {
	margin-bottom:0;
}
p.day {
	margin-top:15px;
	font-size:26px;
	font-weight:bold;
}
p.month {
	text-transform:uppercase;
	font-size:10px;
}

/* Who We Are */

.employee {
	clear:both;
}
.employee-description {
	float:right;
	width:240px;
}

/* Legal */

#legal {
	margin-right:0;
}
