/* Start of CMSMS style sheet 'North2South : N2S - Layout' */
/*****************
browsers interpret margin and padding a little differently, 
we'll remove all default padding and margins and
set them later on
******************/
* {
margin:0;
padding:0;
}

/*
Set initial font styles
*/
body {
   text-align: left;
   font-family:  Arial, Helvetica, Verdana, sans-serif;
   font-size: 75.01%;
   line-height: 1em;
}

/*
set font size for all divs,
this overrides some body rules
*/
div {
   font-size: 1em;
}

/*
if img is inside "a" it would have 
borders, we don't want that
*/
img {
   border: 0;
}

span {
display: none;
}

img.left {
float: left;
margin: 4px 12px 12px 0;
}

img.right {
float: right;
margin: 4px 0px 12px 12px;
}

/*
default link styles
*/

a,
a:link 
a:active
a:visited {
   text-decoration: none;
   background-color: inherit; 
   color: #b20838; 
}

/* remove underline on hover and change color */
a:hover {
   text-decoration: underline;
   background-color: inherit;
}

/*****************
basic layout 
*****************/
body {
   background: #fff url(uploads/North2South/n2s_bg_default.gif) repeat-x 0 0;
   color: #252525;
}

#subnav {
background: #fff url(uploads/North2South/n2s_bg_subnav.gif) repeat-x 0 0;
}

/* center wrapper, min max width */
div#pagewrapper {
   margin: 0 auto;
   max-width: 788px; /* IE wont understand these, so we will use javascript magick */
   min-width: 788px;
   background-color: transparent;
   color: #252525;
}


/*** header ***/

div#header {
   height: 146px;
   background: #fff;           
}

div#header h1 a {
   background: #fff url(uploads/North2South/n2s_logo2.gif) no-repeat 0 0; 
   display: block; 
   height: 146px;
   text-indent: -999em;
   text-decoration:none;
}

div#header #phone {
float: right;
width: 155px;
height: 146px;
background: #fff url(uploads/North2South/n2s_phone.gif) no-repeat 0 bottom;
}

div#content {
   margin: 0 auto 0 0; /* some air above and under menu and content */
}

/**** DEFAULT - RESET FOR CUSTOM PAGES ****/
div#main {
width: 400px;
}

div#sidebar {
   float: right;
   width: 384px;
   display: inline;  /* FIX ie doublemargin bug */
}

div#sidebar img {
float: right;
margin: 51px 0 16px 0;
}

/* if sidebar doesnt include menu but content add class="hascontent" */
div#sidebar.hascontent {
   padding: 0 1%;
   width: 24%;  /* make width smaller if there's padding, or it will get too wide for the floated divs in IE */
}

div#footer {
   clear: both;
   color: #b7b7b7;
   background-color: #fff;
border-top: 1px solid #b20838;
margin-bottom: 1.2em;
}

div#footer_content {
margin: 0 auto;
width: 788px;
}

div#footer .logos {
float: right;
text-align: right;
width: 380px;
padding: 1em 0 0 0;
}

div#footer p {
   font-size: 0.9em;
   padding: 1em 0 0 0;
   margin: 0;
}

div#footer p a {
   color: #a3a3a3;
}

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   margin: 1em;
   border-bottom: 1px dotted black;
}

/* relational links under content */
div.left49 {
  float: left;
  width: 49%;  /* 50% for both left and right might lead to rounding error on some browser */
}

div.right49 {
  float: right;
  width: 49%;
  text-align: right;
}




/********************
CONTENT STYLING
*********************/
div#content {

}

/* HEADINGS */
div#content h1 {
   font-size: 2em;  /* font size for h1 */
   line-height: 1em;
   margin: 0;
}
div#content h2 {
   color: #fff; 
   font-size: 2em; 
   text-align: left;  
   line-height: 2.4em;
margin: 0 0 0.6em 0;
}
div#content h3 {
   color: #252525; 
   font-size: 1.3em;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
}
div#content h4 {
   color: #252525; 
   font-size: 1.2em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
div#content h5 {
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
h6 {
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
/* END HEADINGS */

/* TEXT */
p {
   font-size: 1em;
   margin: 0 0 1.5em 0;  /* some air around p elements */
   line-height:1.4em;
   padding: 0;
}

.standfirst {
font-size: 1.3em;
line-height: normal;
/*padding: 1em 0 0 0;*/
}

.callout {
font-size: 1.3em;
line-height: normal;
display: block;
color: #fff;
padding: 1em;
margin: 0 0 1em 0;
background-color: #b20838;
}

.callout a {
color: #fff;
}

blockquote {
   border-left: 10px solid #ddd;
   margin-left: 10px;
}
pre {
   font-family: monospace;
   font-size: 1.0em;
}
strong, b {
/* explicit setting for these */
   font-weight: bold;
}
em, i {
/* explicit setting for these */
   font-style:italic;
}

/* Wrapping text in <code> tags. Makes CSS not validate */
code, pre {
 white-space: pre-wrap;       /* css-3 */
 white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
 white-space: -pre-wrap;      /* Opera 4-6 */
 white-space: -o-pre-wrap;    /* Opera 7 */
 word-wrap: break-word;       /* Internet Explorer 5.5+ */
 font-family: "Courier New", Courier, monospace;
 font-size: 1em;
}

pre {
   border: 1px solid #000;  /* black border for pre blocks */
   background-color: #ddd;
   margin: 0 1em 1em 1em;
   padding: 0.5em;
   line-height: 1.5em;
   font-size: 90%;   /* smaller font size, as these are usually not so important data */
}

/* END TEXT */

/* LISTS */
div#main ul,
div#main ol,
div#main dl {
  font-size: 1.0em;
   line-height:1.4em;
   margin: 0 0 1.5em 0;
}
div#main ul li,
div#main ol li {
   margin: 0 0 0.25em 3em;
}

div#dl dt {
   font-weight: bold;
   margin: 0 0 0.25em 3em;
}
div#dl dd {
   margin: 0 0 0 3em;
}

div#footer .logos ul {
margin: 0;
padding: 0;
}

div#footer .logos li {
display: inline;
margin: 0;
padding: 0 0 0 3px;
list-style: none;
}

/* END LISTS */

/* PAGE SPECIFIC */

/* Home */
#homepage {
   background: #fff url(uploads/North2South/n2s_bg_home.gif) repeat-x 0 0;
}

#homepage div#header {
   height: 146px;
   background: #fff;           
}

#homepage div#header h1 a {
   background: #fff url(uploads/North2South/n2s_logo.gif) no-repeat 0 0; 
   display: block; 
   height: 146px;
   text-indent: -999em;
   text-decoration:none;
}

#homepage div#main {
width: 594px;
padding: 30px 0 0 0;
}

#homepage div#sidebar {
   float: right;
   width: 183px;
   display: inline;  /* FIX ie doublemargin bug */
   margin-left: 0;
background: #f2eee9;
}

div#banner {
width: 788px;
height: 306px;
background: #c2a303 url(uploads/North2South/n2s_banner.jpg) no-repeat left top;
margin: 0 0 1px 0;
position: relative;
}

div#banner .redbutton {
padding: 11px 0 14px 12px;
margin: 0;
width: 107px;
background: url(uploads/North2South/n2s_redbttn_home.gif) no-repeat left top;
position: absolute;
top: 240px;
left: 18px;
}

div#banner .redbutton a {
font-weight: bold;
color: #fff;
text-decoration: none;
}

div#banner .redbutton a:hover {
text-decoration: underline;
}

/* Teasers */
div#teaser_left {
float: left;
width: 183px;
}

div#teaser_center {
float: left;
width: 183px;
margin-left: 12px;
}

div#teaser_right {
width: 183px;
margin-left: 388px;
}

div#teaser_left h3, div#teaser_center h3, div#teaser_right h3 {
font-size: 1.6em;
font-weight: normal;
line-height: 1em;
padding: 8px 0 16px 68px;
}

div#teaser_left h3 {
background: url(uploads/North2South/landscape_roundel.gif) no-repeat left top;
}

div#teaser_center h3 {
background: url(uploads/North2South/maintenance_roundel.gif) no-repeat left top;
}

div#teaser_right h3 {
background: url(uploads/North2South/cleaning_roundel.gif) no-repeat left top;
}

/* Services */
div#service_teaser {
padding: 0 0 0 84px;
/*margin: 20px 0 0 0;*/
}

div#service_teaser h3 {
font-size: 1.4em;
font-weight: normal;
line-height: normal;
}
/*
div#service_teaser p {
margin: 0 0 0.4em 0;
}
*/
div#service_teaser.landscape {
background: url(uploads/North2South/landscape_roundel.gif) no-repeat left top;
}

div#service_teaser.maintenance {
background: url(uploads/North2South/maintenance_roundel.gif) no-repeat left top;
}

div#service_teaser.cleaning {
background: url(uploads/North2South/cleaning_roundel.gif) no-repeat left top;
}

/* Testimonials */
#testimonials #main {
width: 540px;
}

#testimonials #sidebar {
width: 236px;
}

#testimonials .testimonial p {
padding-left: 160px;
}

#testimonials img {
float: left;
padding-top: 4px;
}
/* End of 'North2South : N2S - Layout' */

