/* Start of CMSMS style sheet 'Layout: CRR' */
/*****************
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: Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-size: 12px;
   line-height: 12px;
}


/*
set font size for all divs,
this overrides some body rules
*/
div {
   font-size: 12px;
}


/*
if img is inside "a" it would have borders
*/
img {
   border: 0;
}


/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link 
a:active {
   text-decoration: underline;
   color: #D60000; 
}


a:visited {
   text-decoration: underline;
   color: #8B0000;
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   color: #D60000;
}



/*****************
  * layout 
 *****************/
body {
   background-color: #ffffff;
   color: #000000;
   margin:1em;    /* gives some air for the pagewrapper */
}


div#pagewrapper {
   border: 0px;
   margin: 0 auto;       /* this centers wrapper */
   width: 754px;
}


div#header {
   height: 60px;  
   width: 750px; 
   margin: 0 auto;       /* this centers wrapper */
}


div#logo {
   height: 60px;
   float: left;
   width: 500px;
   margin-left: 0;
}


div#contact {
   font-size: 10px;
   height: 60px;
   line-height: 1.5em;
}


div#staticContent {
   height: 150px;
   width: 750px;
   margin: 0 auto;       /* this centers wrapper */
}


div#pitch {
   height: 150px;
   width: 600;
   float: left;
   margin-left: 0;
}


div#main {
   margin: 2px 0px 2px 0px;
   padding: 0px 0px 0px 0px;
   width: 754px;
}

div#content {
   margin: 0px 0px 0px 0px;
   padding: 0px 0px 0px 0px;
}


.contentCell {
  background-color: #ffffff;
  border-style: solid;
  border-color: #5C5C5C;
  border-width: 1px;
  padding: 0px;
}


div#footer {
   text-align: center;
   font-size: 10px;
}


/********************
CONTENT STYLING
*********************/
div#content {

}

/* HEADINGS */
h1 {
   background-color: #8B0000;
   color: #ffffff;
   font-size: 13px;
   font-weight: normal;
   line-height: 1em;
   letter-spacing: 0px;
   margin-bottom: 10px;
   padding: 3px 3px 5px 3px;
   border-bottom: 1px solid #000000;
}


/* TEXT */
p {
   font-size: 1em;
   margin: 0 0 1em 0; /* some air around p elements */
   line-height: 1.3em;
   padding: 3px;
}

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%;
}


div#main ul {
   font-size: 1.0em;
   line-height: 1.75em;
   margin: 0 0 1.5em 3em;
   list-style-type: square;
}

.imageBorder {
  border-style: solid;
  border-color: #000000;
  border-width: 1px;
  margin: 10px;
}


/* End of 'Layout: CRR' */

