/* $Id: mc-landscapes.css,v 1.5 2009/02/17 12:41:08 damien Exp $ */
/* 
Colours from logo:
  #d4ddc3 = grey of boxes
  #6b6d66 = grey of "Landscapes" text.
  #abd03b = Top of green text gradient
  #56852a = Bottom of green text gradient
*/ 
   
body {
  background-color: #abd03b; /* Colour from logo. */
  color: #6b6d66;  /* Colour from "Landscapes" text. */
  border-bottom: 2px solid #abd03b;
/* Test alternate colour. */
background-color: #d4ddc3;
border-bottom: 2px solid #d4ddc3;
}
/* Set all main content backgrounds to be white. */
.yui-t1 {
  background-color: #ffffff;
}

/* Anchor styles. */
a, a:link {
  color: #56852a;
  text-decoration: underline;
}
a:visited {
  color: #6b6d66;
  text-decoration: underline;
}
/* Place :hover/:focus/:active after :visited so that hover style works for visited links. */
a:hover, a:focus, a:active {
  color: #abd03b;
  text-decoration: underline;
}

/* Generic classes. */
.no-top-margin {
  margin-top: 0px;
}
.float-left {
  float: left;
}
.float-right {
  float: right;
}
.clear-both {
  clear: both;
}
.portfolio-row {
/*  display: block;*/
  clear: both;
  /*border-top: 2px solid #f0f0f0;*/
  /*padding-top: 0px;*/
}
.testimonial {
  border-left: 1px solid #d4ddc3;
  border-top: 1px solid #d4ddc3;
  border-right: 2px solid #6b6d66;
  border-bottom: 2px solid #6b6d66;
  padding: 6px;
  margin-left: 2em;
  margin-right: 2em;
  display: block;
  font-style: italic;
  background: transparent url(../images/quote.gif) no-repeat 10px 10px;
  min-height: 35px;
}
.testimonial p {
  padding-left: 50px;
}
/* Header */
#hd {
  /*padding-top: 20px;*/
  height: 200px;  /* Height of temp logo image with some padding. */
  background: url(../images/mike-carbery-landscapes.jpg) center center no-repeat;
  font-family: Veranda;
}
/* #hd h1 contains text of the logo. */
#hd h1 {
  margin: 0pt;
  padding: 0pt;
  text-indent: -9999px;
  /* Make h1 clickable. Use height of #hd and width of #hd background image. */
  height: 200px;
  width: 950px;
}

/* Main body */
#content {
  line-height: 1.5;
  padding-right: 1em;
}
/* Nice background for header tags. */
.hdr-background {
  clear: left;
  display: block;
  margin: 20px 0 10px 0;
  padding: 5px 0 1px 8px;
  background: #eee url(../images/hdr-gradient.png) repeat-x;
  /*color: #444;*/
  /*border-top: 1px solid #ddd;*/
  border-right: 1px solid #d4ddc3;
  border-bottom: 1px solid #d4ddc3;
  border-left: 1px solid #d4ddc3;
  text-decoration: none;
 }
/* Footer. */
#ft {
  padding-top: 1em;
  font-size: 85%;
  margin-bottom: 0em;
  margin-left: 1em;
  height: 2em;
}
/* Left align the copyright information. */
#ft .copyright {
  float: left;
  margin-left: 1em;
}
/* Right align the designer link. */
#ft .designer-link {
  float: right;
  margin-right: 1em;
}

/* Drop shadow without images. */
/* Based on: http://www.maujor.com/w3ctuto/shadows-demo.html */
.shadow-wrapper {
  background-color: #ccc;
  padding: 5px;
  margin: 5px 10px 5px 5px;
}
.shadow-content {
  background-color: #fff;
  margin: -10px 0 0 -10px;
  border: thin solid #999;
  padding: 5px;
}

/* Drop shadows for images. */
.img-shadow {
  /*float:right;*/
  background: url(../images/shadowAlpha.png) no-repeat bottom right !important;
  background: url(../images/shadow.gif) no-repeat bottom right;
  margin: 10px 0 0 10px !important;
  margin: 10px 0 0 10px;
}
.img-shadow img {
  display: block;
  position: relative;
  background-color: #fff;
  border: 1px solid #a9a9a9;
  margin: -6px 6px 6px -6px;
  padding: 4px;
}
/* Navigation menu */
#menu a {
  display: block;
  padding: 5px 18px 5px 10px;
  color: #ffffff;
  background: #abd03b url(../images/menu-gradient.png) repeat-x top left;
  border-right: 2px solid #e0e0e0;
  font-size: 1.6em;
  font-weight: normal;
  text-decoration: none;
}
#menu a:hover {
  color: #303030;
  background-color: #d4ddc3;
  background-position: bottom left;
}
#menu a.active {
  /*padding: 5px 18px 5px 0;*/
  background: #ffffff;
  color: #6b6d66;
  border-top: 2px solid #c0c0c0;
  border-bottom: 2px solid #c0c0c0;
  border-right: 2px solid #ffffff;
}
#menu a.active:hover {
  /* Don't need to make any changes beyond a:hover. */
}

/* Contact form. */
/* Credits: Dynamic Drive CSS Library */
/* URL: http://www.dynamicdrive.com/style/ */
/* http://www.dynamicdrive.com/style/csslibrary/item/corporate_css_tableless_form/ */
.feedbackform {
  padding: 5px;
}
.feedbackform .note {
  font-size: 85%;
}
div.fieldwrapper{ /*field row DIV (includes two columns- Styled label column and 'thefield' column)*/
  width: 550px; /*width of form rows*/
  overflow: hidden;
  padding: 5px 0;
 }

div.fieldwrapper label.styled{ /* label elements that should be styled (left column within fieldwrapper DIV) */
  float: left;
  width: 150px; /*width of label (left column)*/
  border-bottom: 1px solid #d4ddc3;
  margin-right: 15px; /*spacing with right column*/
}

div.fieldwrapper div.thefield{ /* DIV that wraps around the actual form fields (right column within fieldwrapper DIV) */
  float: left;
  margin-bottom: 10px; /* space following the field */
}

div.fieldwrapper div.thefield input[type="text"]{ /* Style for INPUT type="text" fields. Has no effect in IE7 or below! */
  width: 250px;
}

div.fieldwrapper div.thefield textarea{
  width: 300px;
  height: 150px;
}

div.buttonsdiv{
  margin-top: 5px;
  margin-left: 165px; /* width + margin-right of label.styled above. */
}

div.buttonsdiv input{ /* style for INPUT fields within 'buttonsdiv'. Assumed to be form buttons. */
  width: 6em;
  background-color: #d4ddc3;
  border: outset 1px #ccc;
  color: #6b6d66;
  font-weight: bold;
  padding: 1px 2px;
}
