/* Start of CMSMS style sheet 'SolarBuildingGroupCSS' */
/*****************
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: Tahoma, Verdana, Geneva, Arial, Helvetica, 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: underline;
/* 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: #4200A5; 
}

a:visited {
   text-decoration: underline;
   background-color: inherit;
  color: #4200A5;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {


}

/*****************
basic layout 
*****************/
body {
   background-color: #ffffff;

}
#pagewrapper {
background-color: #ffffff;
width: 1000px;
min-height: 600px;
margin-left: auto;
margin-right: auto;
margin-top:30px;
margin-bottom:30px;
border-right:1px solid orange;
border-left:1px solid orange;

}

#shadow {

width: 1000px;
min-height: 600px;
margin-left: auto;
margin-right: auto;
}

#header {
background: url(images/cms/header.jpg);
width:1000px;
height:165px;
}

#contactinfo {
color:#666666;
padding-top: 20px;
margin-left: 845px;
width: 200px;
height: 94px;
}

#menu{
margin-left: 285px;
width: 710px;
height: 50px;
}

#content {
color:#666666;
min-height:300px;
width: 850px;
margin-left: 70px;
margin-top: 30px;
}

div#sidebar2 {
   padding-left: 10px;
   padding-right: 35px;
   float: right;        /* set sidebar on the left side. Change to right to float it right instead. */
   width: 220px;     /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX IE double margin bug */
   margin-left: 60px;
}

#logos {
border-top: 20px solid #ff9900;
width: 1000px;
height: 60px;
margin-top: 30px;
padding-top:5px;
margin-bottom:5px;
}









/********************
CONTENT STYLING
*********************/
div#content {
 line-height: 1.2em;
}
#contactinfo {
 line-height: 1.2em;
}

/* HEADINGS */
div#content h1 {
   background: url(images/cms/h1.png) 230px 2px no-repeat ;
   color:white;
   background-color:#6048BC;
   font-size: 1.7em;
   padding-left:10px;
   padding-top:6px;
   padding-bottom:7px;
   line-height: 1em;
   margin: 0;
   font-weight:normal;
   width:246px;
}
div#content h1 a {
   text-decoration:none;
   color:#ffffff;
}
div#content h2 {
color: #FF9900;
   font-size: 1.7em;
   line-height: 1em;
   margin: 0.2em 0 0.5em 0em;
   font-weight:normal;

}
div#content h3 {
color: #FF9900;
   font-size: 1.2em;
   line-height: 1.2em;
   margin: 0 0 0.5em 0;
   font-weight:normal;
}
div#content h4 {
   font-size: 1.2em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;   
color: #FF9900;
}
div#content h5 {
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
div#content li {
    margin-left: 16px;
}
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;
}
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 */
#content ul,
#content ol,
#content dl {
  font-size: 1.0em;
   line-height:1.4em;
   margin: 0 0 1.5em 0;
}
#content ul li,
#content 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 */
/* End of 'SolarBuildingGroupCSS' */

