/*
		Contents of master.css:
		---------------------------------------------------------------------------

	 	* CSS Reset											~ Resetting the CSS for consistency
	 	* HTML Elements									~ Styles for common elements and classes
	 	* Site structure								~ Main layout structure of each page
	 		- Header items									~ Elements in within the header area
	 		- Content items									~ Elements within the content area
	 		- Additional content items 			~ Elements within the sidebar area
	 		- Footer items									~ Elements within the footer
	 	* Global styles									~ Global styles used across the website
	 	* Page specific styles					~ Styles unique to a particular page
	 	* Float clearing								~ Float clearing for floated elements	
		
		----------------------------------------------------------------------------		
*/


/**
 ** CSS Reset
 */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}
:focus {
	outline: 0;
}
body {
	line-height: 1;
	color: black;
	background: #fff;
}
ol, ul {
	list-style: none;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}

/**
 ** HTML Elements
 */

body {
	color: #000;
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 16px;
}
h1 {
	font-size: 14px;
	margin: 0 0 16px 0;
	line-height: 16px;
	color: #ff8c35;
	font-weight: bold;
}
h2 {
	font-size: 12px;
	margin: 0 0 16px 0;
	color: #ff8c35;
	font-weight: normal;
}
h3 {
	color: #ff8c35;
	font-size: 12px;
	margin: 27px 0 9px 0;
	font-weight: normal;
}
h4,
h5,
h6 {
	color: #ff8c35;
	font-size: 16px;
	margin: 9px 0;
	font-weight: normal;
}
p {
	margin-bottom: 16px;
}
strong {
	font-weight: bold;
}
blockquote {
	font-family: Arial, Helvetica, sans-serif;
	padding: 0 10px;
	font-size: 11px;
	letter-spacing: none;
	color: #666;
	font-style: italic;
}
blockquote .author {
	font-family: Arial, Helvetica, sans-serif;
	font-style: normal;
	color: #191919;
	font-size: 11px;
	letter-spacing: normal;
}
blockquote .author:before {
	content: "— ";
}
a:link,
a:visited {
	text-decoration: none;
	font-weight: bold;
	color: #8C1F26;
}
a:hover,
a:active {
	color: #ff8c35;	
}
ol {
	list-style-type: decimal;
	margin: 0 0 16px 0;
}
ul {
	list-style-type: disc;
	list-style-position: outside;
	margin: 0 0 16px 16px;
}
th {
	font-weight: bold;
}
th, td {
	padding: 3px 9px;
}
tr.odd {
	background: #EAEFF7;
}
form {
	margin-bottom: 16px;
}
.smallprint {
	font-size: 10px;
	color: #909BB1;
}
.left {
	float: left;
}
.right {
	float: right;
}
.hidden {
	display: none;
}


/**
 ** Site structure
 */

body {
	background-color: #cacdce;
	padding: 12px;
}
#content-wrapper {
	margin: 0 auto;
	width: 748px;
	padding: 0 6px;
	background-color: #fff;
}
#header {
	padding: 6px 6px 10px 6px;
	width: 748px;
	margin: 0 auto;
	background-color: #fff;
}
#content {
	width: 480px;
	float: left;
	padding: 90px 45px 45px 45px;
	min-height: 270px;
}
#additional-content {
	width: 160px;
	margin: 0 0 45px;
	float: right;
}
#footer {
	padding: 0 6px 6px;
	width: 748px;
	margin: 0 auto;
	background-color: #fff;
}

/**
 ** Header items
 */
#header h1.site-name,
#header h2.site-name {
	height: 80px;
	width: 218px;
	margin: 0;
	padding: 30px 0 0 45px;
	float: left;
}
#header h1.site-name a,
#header h2.site-name a {
	display: block;
	width: 218px;
	height: 53px;
	text-indent: -9999px;
	background: url('../images/waverley-lane-logo.png') no-repeat;
}
#header .strapline {
	height: 110px;
	background: url('../images/header.jpg') no-repeat right top;
	text-indent: -9999px;
	margin: 0;
}
#header div.navigation {
	clear: both;
}
#header div.navigation ul {
	list-style-type: none;
	margin: 0;
	font-size: 11px;
	background: url('../images/bg-grad-1.png') repeat-x;
}
#header div.navigation ul li {
	float: left;
	width: 124px;
	border-right: 1px solid #fff;
}
#header div.navigation ul li.last {
	width: 123px; /* Smaller to acheive desired overal width */
	border: none;
}
#header div.navigation ul li a:link,
#header div.navigation ul li a:visited {
	color: #fff;
	font-weight: normal;
	text-align: center;
	padding: 2px 0;
	display: block;
}
#header div.navigation ul li a:hover,
#header div.navigation ul li a:active,
#header div.navigation ul li.active a {
	background: #ff8c35 url('../images/bg-grad-2.png') repeat-x;
}

/**
 ** Content items
 */

/**
 ** Additional content items (Sidebar)
 */
#additional-content .badges img {
	display: block;
	margin: 0 auto;
	padding: 15px 0;
}

/**
 ** Footer styles
 */
div#footer {
	clear: both;
	font-size: 11px;
}
div#footer ul {
	color: #fff;
	list-style-type: none;
	margin: 0;
	padding: 2px 10px;
	background: url('../images/bg-grad-1.png') repeat-x;
}
div#footer ul li {
	float: left;
	margin-right: 10px;
}
div#footer a:link,
div#footer a:visited {
	color: #fff;
	font-weight: normal;
}
div#footer a:hover,
div#footer a:active {
}

/**
 ** Global styles
 */

/* Breadcrumb */
div#breadcrumb {
	margin: 10px 0 0 10px;
	color: #999;
	font-size: 10px;
}
div#breadcrumb a:link,
div#breadcrumb a:visited {
	color: #999;
	font-weight: normal;
	border-bottom: 1px solid #bababa;
	padding-bottom: 2px;
}

/* Content header banners */
#content { /* Default */
	background: transparent url('../images/content-header-2.jpg') no-repeat right top;
}
body.about #content {
	background-image: url('../images/content-header-1.jpg');
}
body.services #content {
	background-image: url('../images/content-header-3.jpg');
}
body.business-solutions #content {
	background-image: url('../images/content-header-4.jpg');	
}
body.contact #content {
	background-image: url('../images/content-header-5.jpg');	
}
body.blog #content {
	background-image: url('../images/content-header-6.jpg');	
}

/* Testimonial images */
img.testimonial {
	margin: 0 0 18px 0;
}

/* Call us block */
p.call-us {
	text-align: center;
	font-size: 12px;
	padding: 0 10px;
}
p.call-us .phone-number {
	font-weight: bold;
	font-size: 14px;
	color: #ff8c35;
	display: block;
	margin: 4px 0;
}

/* Sub navigation */
ul.sub-nav {
	list-style-type: none;
	margin: 0 0 16px 0;
}
ul.sub-nav li a:link,
ul.sub-nav li a:visited {
	display: block;
	border-bottom: 1px solid #fff;
	padding: 2px 0;
	text-align: center;
	background-color: #cfd2d3;
	font-weight: normal;
	color: #454649;
}
ul.sub-nav li a:hover,
ul.sub-nav li a:active,
ul.sub-nav li.active a {
	background: #ffc392 url('../images/bg-grad-3.png') repeat-y;
}

/* Promotional columns at the bottom of each page */
ul.promo-copy {
	margin: 0;
	list-style-type: none;
}
ul.promo-copy li {
	width: 110px;
	margin-right: 20px;
	float: left;
}
ul.promo-copy li.last {
	margin: 0;
}
ul.promo-copy li h3 {
	margin: 0 0 16px 0;
}
ul.promo-copy li a {
	display: block;
}

/**
 ** Page specific styles
 */

/* Home page */
#home div#header {
	padding-bottom: 16px;
}

/* Accreditations page */
.accreditations {
	list-style-type: none;
	margin: 0;	
}
.accreditations li {
	padding: 0 10px 16px 140px;
	border-bottom: 1px solid #BEC1C2;
	margin: 16px 0 0 0;	
}
.accreditations h3,
.accreditations p {
	margin: 0;
}
.accreditations img {
	float: left;
	margin: 0 0 0 -140px;
	max-width: 160px;
	height: auto;
	display: block;
}

/* Customers page */
.customer-list {
	list-style-type: none;
	margin: 0;
}
.customer-list li {
	padding: 0 180px 10px 0;
	border-bottom: 1px solid #BEC1C2;
	margin: 20px 0 0 0;
}
.customer-list img {
	float: right;
	margin: 0 -180px 0 0;
	max-width: 160px;
	height: auto;
}

/**
 ** Float clearing
 */

/* Float clearing for IE6: */
* html #content-wrapper,
* html #header,
* html #footer ul,
* html #header div.navigation ul,
* html .accreditations li
{
  height: 1%;
  overflow: visible;
}	
/* Float clearing for IE7: */
*+html #content-wrapper,
*+html #header,
*+html #footer ul,
*+html #header div.navigation ul,
*+html .accreditations li
{
  min-height: 1%;
}
/* Float clearing for everyone else: */
#content-wrapper:after,
#header:after,
#footer ul:after,
#header div.navigation ul:after,
.accreditations li:after
{
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}