/* --------------------------------------------------------------

   reset.css
   * Resets default browser CSS.

-------------------------------------------------------------- */

html { 
	margin:0; 
	padding:0; 
	border:0; 
}

body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, code,
del, dfn, em, img, q, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, nav, section {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}

/* This helps to make newer HTML5 elements behave like DIVs in older browers */ 
article, aside, dialog, figure, footer, header,
hgroup, nav, section {
    display:block;
}

/* Line-height should always be unitless! */
body {
  line-height: 1.5;
  background: white; 
}

/* Tables still need 'cellspacing="0"' in the markup. */
table { 
	border-collapse: separate; 
	border-spacing: 0; 
}
/* float:none prevents the span-x classes from breaking table-cell display */
caption, th, td { 
	text-align: left; 
	font-weight: normal; 
	float:none !important; 
}
table, th, td { 
	vertical-align: middle; 
}

/* Remove possible quote marks (") from <q>, <blockquote>. */
blockquote:before, blockquote:after, q:before, q:after { content: ''; }
blockquote, q { quotes: "" ""; }

/* Remove annoying border on linked images. */
a img { border: none; }

/* Remember to define your own focus styles! */
:focus { outline: 0; }

/* --------------------------------------------------------------

   typography.css
   * Sets up some sensible default typography.

-------------------------------------------------------------- */

/* Default font settings.
   The font-size percentage is of 16px. (0.75 * 16px = 12px) */
html { font-size:100.01%; }
body {
  font-size: 75%;
  color: #636363	;
  background: #fff url("../img/background.gif") repeat-x;
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
}


/* Headings
-------------------------------------------------------------- */

h1,h2,h3,h4,h5,h6 { font-weight: normal; color: #111; }

h1 { font-size: 3em; line-height: 1; margin-bottom: 0.5em; }
h2 { font-size: 2em; margin-bottom: 0.75em; }
h3 { font-size: 1.5em; line-height: 1; margin-bottom: 1em; }
h4 { font-size: 1.2em; line-height: 1.25; margin-bottom: 1.25em; }
h5 { font-size: 1em; font-weight: bold; margin-bottom: 1.5em; }
h6 { font-size: 1em; font-weight: bold; }

h1 img, h2 img, h3 img,
h4 img, h5 img, h6 img {
  margin: 0;
}


/* Text elements
-------------------------------------------------------------- */

p           { margin: 0 0 1.5em; }
/* 
	These can be used to pull an image at the start of a paragraph, so 
	that the text flows around it (usage: <p><img class="left">Text</p>) 
*/
.left  			{ float: left !important; }
p .left			{ margin: 1.5em 1.5em 1.5em 0; padding: 0; }
.right 			{ float: right !important; }
p .right 		{ margin: 1.5em 0 1.5em 1.5em; padding: 0; }

blockquote  { margin: 1.5em; color: #666; font-style: italic; }
strong,dfn	{ font-weight: bold; }
em,dfn      { font-style: italic; }
dfn         { font-weight: bold; }
sup, sub    { line-height: 0; }

/* Lists
-------------------------------------------------------------- */

li ul,
li ol       { margin:0; }
ul, ol      { margin: 0 1.5em 1.5em 0; padding-left: 1.5em; }

ul          { list-style-type: disc; }
ol          { list-style-type: decimal; }

dl          { margin: 0 0 1.5em 0; }
dl dt       { font-weight: bold; }
dd          { margin-left: 1.5em;}

/* Misc classes
-------------------------------------------------------------- */

.first      { margin-left:0; padding-left:0; }
.last       { margin-right:0; padding-right:0; }
.top        { margin-top:0; padding-top:0; }
.bottom     { margin-bottom:0; padding-bottom:0; }
/* --------------------------------------------------------------

   grid.css
   * Sets up an easy-to-use grid of 24 columns.

   By default, the grid is 950px wide, with 24 columns
   spanning 30px, and a 10px margin between columns.

   If you need fewer or more columns, namespaces or semantic
   element names, use the compressor script (lib/compress.rb)

-------------------------------------------------------------- */

/* A container should group all your columns. */
.container {
  width: 977px;
  margin: 0 auto;
  background:#fff;
}

/* Use this class on any .span / container to see the grid. */
.showgrid {
  background: url(grid.png);
}


/* Columns
-------------------------------------------------------------- */

/* Sets up basic grid floating and margin. */
.column, .span-1, .span-2, .span-3, .span-4, .span-5, .span-6, .span-7, .span-8 {
  float: left;
  margin-right: 15px;
}

/* The last column in a row needs this class. */
.last { margin-right: 0; }

/* Use these classes to set the width of a column. */
.span-1  {width: 109px;}
.span-2  {width: 233px;}
.span-3  {width: 357px;}
.span-4  {width: 481px;}
.span-5  {width: 605px;}
.span-6  {width: 729px;}
.span-7  {width: 853px;}
.span-8  {width: 977px;}

/* Use these classes to set the width of an input. */
input.span-1, textarea.span-1, input.span-2, textarea.span-2, input.span-3, textarea.span-3, input.span-4, textarea.span-4, input.span-5, textarea.span-5, input.span-6, textarea.span-6, input.span-7, textarea.span-7, input.span-8, textarea.span-8 {
  border-left-width: 1px;
  border-right-width: 1px;
  padding-left: 5px;
  padding-right: 5px;
}

input.span-1, textarea.span-1 { width: 97px; }
input.span-2, textarea.span-2 { width: 221px; }
input.span-3, textarea.span-3 { width: 345px; }
input.span-4, textarea.span-4 { width: 469px; }
input.span-5, textarea.span-5 { width: 593px; }
input.span-6, textarea.span-6 { width: 717px; }
input.span-7, textarea.span-7 { width: 841px; }
input.span-8, textarea.span-8 { width: 965px; }

/* Add these to a column to append empty cols. */

.append-1  { padding-right: 124px; } 
.append-2  { padding-right: 248px; } 
.append-3  { padding-right: 372px; } 
.append-4  { padding-right: 496px; } 
.append-5  { padding-right: 620px; } 
.append-6  { padding-right: 744px; } 
.append-7  { padding-right: 868px; } 

/* Add these to a column to prepend empty cols. */

.prepend-1  { padding-left: 124px; } 
.prepend-2  { padding-left: 248px; } 
.prepend-3  { padding-left: 372px; } 
.prepend-4  { padding-left: 496px; } 
.prepend-5  { padding-left: 620px; } 
.prepend-6  { padding-left: 744px; } 
.prepend-7  { padding-left: 868px; } 


/* Border on right hand side of a column. */
.border {
  padding-right: 6px;
  margin-right: 8px;
  border-right: 1px solid #ddd;
}

/* Border with more whitespace, spans one column. */
div.colborder {
  padding-right: 68px;
  margin-right: 70px;
  border-right: 1px solid #eee;
}


/* Use these classes on an element to push it into the
next column, or to pull it into the previous column.  */

.pull-1 { margin-left: -124px; }
.pull-2 { margin-left: -248px; }
.pull-3 { margin-left: -372px; }
.pull-4 { margin-left: -496px; }
.pull-5 { margin-left: -620px; }
.pull-6 { margin-left: -744px; }
.pull-7 { margin-left: -868px; }
.pull-8 { margin-left: -992px; }

.pull-1, .pull-2, .pull-3, .pull-4, .pull-5, .pull-6, .pull-7, .pull-8 {float: left; position:relative;}

.push-1 { margin: 0 -124px 1.5em 124px; }
.push-2 { margin: 0 -248px 1.5em 248px; }
.push-3 { margin: 0 -372px 1.5em 372px; }
.push-4 { margin: 0 -496px 1.5em 496px; }
.push-5 { margin: 0 -620px 1.5em 620px; }
.push-6 { margin: 0 -744px 1.5em 744px; }
.push-7 { margin: 0 -868px 1.5em 868px; }
.push-8 { margin: 0 -992px 1.5em 992px; }

.push-1, .push-2, .push-3, .push-4, .push-5, .push-6, .push-7, .push-8 {float: left; position:relative;}

/* Misc classes and elements
-------------------------------------------------------------- */

/* In case you need to add a gutter above/below an element */
div.prepend-top, .prepend-top {
	margin-top:1.5em;
}
div.append-bottom, .append-bottom {
	margin-bottom:1.5em;
}

/* Use a .box to create a padded box inside a column.  */
.box {
  padding: 1.5em;
  margin-bottom: 1.5em;
  background: #e5eCf9;
}

/* Use this to create a horizontal ruler across a column. */
hr {
  background: #ddd;
  color: #ddd;
  clear: both;
  float: none;
  width: 100%;
  height: 1px;
  margin: 0 0 1.4em;
  border: none;
}
hr.space {
  background: #fff;
  color: #fff;
  visibility: hidden;
}


/* Clearing floats without extra markup
   Based on How To Clear Floats Without Structural Markup by PiE
   [http://www.positioniseverything.net/easyclearing.html] */

.clearfix:after, .container:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow:hidden;
}
.clearfix, .container {display: block;}

/* Regular clearing
   apply to column that should drop below previous ones. */

.clear { clear:both; }
/* --------------------------------------------------------------

   forms.css
   * Sets up some default styling for forms
   * Gives you classes to enhance your forms

   Usage:
   * For text fields, use class .title or .text
   * For inline forms, use .inline (even when using columns)

-------------------------------------------------------------- */

/* 
	A special hack is included for IE8 since it does not apply padding 
	correctly on fieldsets
 */ 
fieldset, #IE8#HACK { padding-top:1.4em; } 
legend, #IE8#HACK { margin-top:0; margin-bottom:0; }

/* Head - Logo
-------------------------------------------------------------- */
#logo a {
	display:block;
	width:250px;
	height:72px;
	background:url("../img/logo.jpg") no-repeat;
	text-indent:-9999px;
	margin:35px 0 0 10px;
}

#contact { text-align:right; }

#contact a,
#contact a:link,
#contact a:visited {
	text-decoration:none;
	color:#000;
	font-size:11px;
	margin:20px;
}

#contact a:hover,
#contact a:active { border-bottom: 1px solid #000; }

/* Head - Nav
-------------------------------------------------------------- */
#nav ul { list-style:none; }

#nav li {
	float:left;
	text-align:center;
	margin:0 1px;
}

#nav li a {
	display:block;
	height:23px;
	background:#DB0000;
	color:#fff;
	font-size:12px;
	font-weight:bold;
	text-decoration:none;
	padding: 5px 14px 0;
}

#nav li a:hover { background: #bd070e; }

#nav li ul {
	display:none;
	height:auto;
	width:auto;
	position:absolute;
	padding-left:-19px;
}

#nav li:hover ul {
	display:block;
}

#nav li li {
	margin:0 19px 0 -19px;
	clear:both;
	width:100%;
	text-align:left;
	border-top:2px solid #fff;
}

/* Content
-------------------------------------------------------------- */
#image img {
	margin:10px 0 9px 20px;
	width:708px;
	height:205px;
	overflow:hidden;
}

#article-body { background:#eff3f6; }

#article-title {
	background:#eff3f6 url("../img/heading-background.gif") no-repeat;
	display:block;
	width:481px;
	height:61px;
	font-size:22px;
	color:#db0000;
	padding:26px 0 0;
	margin:0 0 -26px 0;
}

#article-title span {
	border-top:4px solid #db0000;
	padding:25px 0 0 24px;
}

#article h3 {
	background:#db0000;
	color:#fff;
	margin:5px 20px;
	padding:4px;
	font-size:12px;
	font-weight:bold;
}

#article h3 a {
	color:#fff;
	text-decoration:none;
}

#article h3 a:hover { border-bottom:1px solid #fff; }

#article p {
	margin:10px 24px;
	text-align:justify;
}

#article a {
	color:#db0000;
	text-decoration:none;
}

#article a:hover { border-bottom:1px solid #db0000; }

#article ul {
	list-style-type:none;
	margin:0 24px;
	padding:0;
}

#article ul li {
	background:url("../img/list-icon-red.gif") no-repeat 0 5px;
	padding-left:15px;
}

#article ol { margin:10px 24px; }

#article p.more-info { margin:20px 24px; }

#article p.more-info a {
	text-decoration:none;
	color:#db0000;
	border-top:1px dotted #999;
	border-bottom:1px dotted #999;
	padding:7px 20px;
	background:url("../img/more-icon.gif") no-repeat 0 6px;
}

#article p.more-info a:hover { text-decoration:underline; }

#contact_form dl { margin:10px 24px; }

#contact_form dt {
	color: #636363;
	font-weight:normal;
	font-size: 11px;
}

#contact_form dd { margin:5px 0; }

#contact_form input,
#contact_form textarea {
	width:100%;
	background: #F9F9F9;
	border:1px solid #5A5A5A;
	color: #636363;
	font-size: 11px;
    font-weight: normal;
}

#contact_form input.send_button {
	width:150px;
	background:#db0000;
	color:#fff;
	height:20px;
	border:1px solid #5A5A5A;
	float:right;
}

#contact_form input.send_button:hover {
	border:1px solid #636363;
	cursor:pointer;
}

#contact_form input {height:15px;}
#contact_form textarea {height:100px;}

#contact_form input:focus,
#contact_form textarea:focus {border:1px solid #db0000;}

/* Extras
-------------------------------------------------------------- */
#article #headlines { margin-top: 9px; }

#article #headlines h2 {
	color:#fff;
	margin:5px 0 15px;
	font-size:18px;
	font-weight:bold;
}

#article #headlines h2 span {
	border-top:4px solid #eff3f6;
	padding:4px 0 0 24px;
}

#article #headlines ul { list-style-type:none; }

#article #headlines li {
	background:url("../img/list-icon.gif") no-repeat 0 5px;
	padding-left:15px;
	margin-bottom:10px;
}

#article #headlines li h4 {
	margin-bottom:5px;
	line-height:1;
}

#article #headlines li a {
	color:#fff;
	text-decoration:none;
	font-size:12px;
	font-weight:bold;
}

#article #headlines li a:hover { border-bottom:1px solid #fff; }

#article #headlines li p {
	margin:0 20px 0 0;
	color:#fff;
	font-size:10px;
	line-height:11px;
}

#article #headlines .more-headlines,
#sidebar .more-services,
#sidebar .request-valuation {
	text-align:right;
	margin-right:0;
    padding:3px 10px;
    float:right;
    font-size:11px;
}

#article #headlines .more-headlines,
#sidebar .more-services {background:#fff}

#sidebar .request-valuation {background:#db0000;}

#article #headlines .more-headlines a,
#sidebar .more-services a,
#sidebar .request-valuation a {	text-decoration:none; }

#article #headlines .more-headlines a,
#sidebar .more-services a { color:#db0000; }

#sidebar .request-valuation a { color:#fff; }

#article #headlines .more-headlines a:hover,
#sidebar .more-services a:hover { border-bottom:1px solid #db0000; }

#sidebar .request-valuation a:hover { border-bottom:1px solid #fff; }

#article #headlines .more-headlines span,
#sidebar .more-services span,
#sidebar .request-valuation span {
	font-weight:bold;
	margin:0 6px;
	font-size:14px;
}

#article #headlines .more-headlines span,
#sidebar .more-services span { color:#db0000; }

#sidebar .request-valuation span { color:#fff; }

/* Sidebar - left
-------------------------------------------------------------- */
#worldwide ul {
	list-style:none;
	margin:0 0 0 20px;
	padding:0;
}

#worldwide li {
	padding:3px 10px;
	border-bottom:2px solid #fff;
}

#worldwide a {
	color:#fff;
	text-decoration:none;
	font-weight:bold;
	font-size:11px;
	text-transform:uppercase;
	padding-left:12px;
	background:url("../img/list-icon.gif") no-repeat 0 5px;
}

#worldwide a:hover { border-bottom:1px solid #fff; }

#wordlwide-map {
	margin:10px 0 0 20px;
	padding:10px 10px 0;
}

#wordlwide-map h3 {
	font-weight:bold;
	font-size:11px;
	text-transform:uppercase;
	background:url("../img/list-icon.gif") no-repeat 0 5px;
	padding:2px 0 0 12px;
	color:#fff;
	margin:0;
}

#wordlwide-map img { margin:10px 0 -3px -10px; }

#date {
	text-align:right;
	color:#716D6C;
	font-size:11px;
	margin-top:10px;
}

/* Sidebar - right
-------------------------------------------------------------- */
#advisory,
#request {
	margin:10px 20px 10px 0;
	width:213px;
}

#request { background:#EFF3F6; }

#sidebar h3 {
	font-size:11px;
	text-transform:uppercase;
	color:#fff;
	background:#db0000 url("../img/list-icon.gif") no-repeat 3px 8px;
	padding:5px 5px 5px 12px;
	font-weight:bold;
	margin:0;
}

#sidebar img {
	border-top:1px solid #fff;
	border-bottom:1px solid #fff;
	width:213px;
	height:128px;
	overflow:hidden;
}

#sidebar p {
	font-size:11px;
	margin:7px;
	line-height:13px;
}

#advisory p { color:#fff; }

/* Footer
-------------------------------------------------------------- */
#footer {
	font-size:11px;
	color:#8c8c8c;
	text-align:center;
}

#footer a {
	color:#8c8c8c;
	text-decoration:none;
}

#footer a:hover { border-bottom:1px solid #8c8c8c; }

#footer span { margin-left:35px }

/* Background gradient - Red
-------------------------------------------------------------- */
#worldwide li,
#article #headlines,
#advisory {
	background: #db0000; /* Old browsers */
	background: -moz-linear-gradient(left, #db0000 0%, #d35858 50%, #db0000 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right top, color-stop(0%,#db0000), color-stop(50%,#d35858), color-stop(100%,#db0000)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(left, #db0000 0%,#d35858 50%,#db0000 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(left, #db0000 0%,#d35858 50%,#db0000 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(left, #db0000 0%,#d35858 50%,#db0000 100%); /* IE10+ */
	background: linear-gradient(left, #db0000 0%,#d35858 50%,#db0000 100%); /* W3C */
}

#sidebar {
	float: right;
}