/* Start of CMSMS style sheet 'UrbanSunshine - Layout No Sidebar' */
/*****************
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;
}

/* OLD IE PNG FIX */
img, #pagewrapper, #allwrapper, #footer, td {
 behavior: url(/uploads/zdev/iepngfix.htc);
}

/*
Set initial font styles
*/

body {
   background-image: url('/uploads/images/layout/grass.jpg');
   text-align: left;
   font-family: Helvetica, Arial, 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;
}

/* default link styles */
/* set all links to have underline and bluish color */

a,
a:link 
a:active {
   text-decoration: none;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
   background-color: inherit; 
   color: #888c3a; 
}

a:visited {
   text-decoration: none;
   background-color: inherit;
   color: #888c3a;                /* a different color can be used for visited links */
}


/* add underline on hover and change color */
a:hover {
   text-decoration: none;
   /* background-color: #C3D4DF; */
   color: #888c3a;
}

/*****************
basic layout 
*****************/
body {
   color: #333;
   margin: 0; /* gives some air for the pagewrapper */
}
div#bodywrapper {
   margin: 0 auto;
}

/* center wrapper, min max width */
div#allwrapper {
   margin: 0 auto;     /* this centers wrapper */
   background: transparent url('uploads/images/layout/fence.png') 0 148px repeat-x;
}

div#pagewrapper {
   border: 0px solid black;
   margin: 0 auto;     /* this centers wrapper */
   max-width: 925px; /* IE wont understand these, so we will use javascript magick */
   min-width: 925px;
   min-height: 400px;
   color: #5c3d23;
   background: transparent url('uploads/images/layout/paper-bkgd.png');
}

div#header {
   height: 148px; /* adjust according your image size */
}

div#content {
   margin: 0 auto 0 0; /* some air above and under menu and content */
}

div#main {
   margin-left: 30px; 
   margin-right: 30px; 
}

div#developmentwork {
  margin: 0 auto;
  width: 925px;
}
div#footerleft p.noncart {
  padding-top: 12px;
  padding-bottom: 1px;
}
/* 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;
}

/********************
CONTENT STYLING
*********************/
div#content {

}

/******* HEADINGS *******/
div#content h1 {
   font-size: 22px; 
   line-height: 22px;
   margin: 22px 0 18px 0;
   color: #f36c24; /*orange*/
   border-bottom: 1px solid #d6cab4; 
   text-transform: uppercase;
   letter-spacing: 0.4px;
   }
div#content h1.noMarginTop {
   margin-top:0;
   }
div#content h2 {
   color: #009aa8; /*blue*/
   font-size: 18px;
   line-height: 22px;
   text-align: left;
   margin:0 0 5px 0;
   letter-spacing: 0.2px;
   }
div#content h2.brown,div#content h3.brown {
   color: #5c3d23; /*brown*/
   }
div#content h3 {
   color: #888c3a; /*green*/
   font-size: 15px;
   line-height: 19px;
   margin: 0 0 5px 0;
   letter-spacing: 0.2px;
}
div#content h4 {
   color: #888c3a; 
   font-size: 14px;
   line-height: 17px;
   margin: 0 0 5px 0;
   letter-spacing: 0.2px;
}
div#content h5 {
   font-size: 14px;
   line-height: 17px;
   margin: 0 0 8px 0;
   letter-spacing: 0.2px;
}
div#content .italicHeadline {
   font-family:Georgia, "Times New Roman", Times, serif;
   font-style:italic;
   letter-spacing: 0.4px;
}

h6 {
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}

/* END HEADINGS */

/* TEXT */
p {
   font-size: 12px;
   margin: 0 0 1.5em 0;  /* some air around p elements */
   line-height: 15px;
   padding: 0;
}

.toutmain1, .toutmain2, .toutmain3{
   font-size: 12px;
   line-height: 15px;
   font-face: Helvetica, Arial, Sans-serif;
   color: #5c3d23;
   text-align: left;
margin-bottom: 5px;
}

.toutmain1 a {
   font-weight: bold;
   color: #eb6923;;
   text-decoration: none;
}
.toutmain2 a {
   font-weight: bold;
   color: #888c3a;
   text-decoration: none;
}
.toutmain3 a {
   font-weight: bold;
   color: #009aa8;
   text-decoration: none;
}
.toutmain1 a:hover, .toutmain2 a:hover, .toutmain3 a:hover  {
   text-decoration: underline;  
}
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;
}
/* END LISTS */

/*********** GET GROWING AREA ********/
#GetGrowingChoicesWrapper{
   width:854px;
   }
#GetGrowingChoicesWrapper a{
   text-decoration: none;
   }
#GetGrowingChoice1{
   width:280px;
   float:left;
   }
#GetGrowingChoice2{
   width:296px;
   float:left;
   }
#GetGrowingChoice3{
   width:278px;
   float:left;
   }
#GetGrowingChoice1img{
   display:block;
   width:280px;
   height:341px;
   background: url('uploads/images/Urban_Sunshine-Want_To_Grow-Newbie.png') no-repeat top;
   }
#GetGrowingChoice2img{
   display:block;
   width:296px;
   height:341px;
   background: url('uploads/images/Urban_Sunshine-Want_To_Grow-You_Dig_It.png') no-repeat top;
   }
#GetGrowingChoice3img{
   display:block;
   width:278px;
   height:341px;
   background: url('uploads/images/Urban_Sunshine-Want_To_Grow-Hydro.png') no-repeat top;
   }
#GetGrowingChoice1img:hover, #GetGrowingChoice2img:hover, #GetGrowingChoice3img:hover{
   background-position: bottom;
   cursor:pointer;
   }
#GetGrowingChoice1 p{
   padding: 0 15px 0 20px;
   }
#GetGrowingChoice2 p{
   padding: 0 15px 0 30px;
   }
#GetGrowingChoice3 p{
   padding: 0 5px 0 38px;
   }
div.clear{
   clear:both;
   display:block;
   width:20px;
   height:20px;
   }


/*********** HOME PAGE FLASH AREA ********/

#mainflash{
   background: url('uploads/images/layout/flash-bkgd.jpg') no-repeat;
   width: 854px;
   height:380px;
   }
div#content #mainflash h1{
   margin: 0 0 10px 240px;
   }
div#content #mainflash h2{
   margin: 0 0 6px 240px;
   }
div#content #mainflash p{
   margin: 0 0 0 310px;
   }
div#content #mainflash a {
   font-weight: bold;
   color: #888c3a;
   text-decoration: none;
}
div#content #mainflash a:hover  {
   text-decoration: underline;  
}
/* End of 'UrbanSunshine - Layout No Sidebar' */

