/* Start of CMSMS style sheet 'structure' */
/* 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: 75.01%;
  line-height: 1em;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: white;
}
/*set font size for all divs, this overrides some body rules*/
div {
  font-size: 1em;
}
#content h2{
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 7px;
  color:#27337C;
}
/*if img is inside "a" it would have borders, we don't want that*/
img {
  border: 0;
}
/*default link styles*/
a, a:link a:active {
/* set all links to have underline */
  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;
/* this is a bluish color, you change this for all default link colors */
  color: #172983;
}
a:visited {
/* keeps the underline */
  text-decoration: underline;
  background-color: inherit;
/* a different color is used for visited links */
  color: #18507C;
}
a:hover {
/* remove underline on hover */
  text-decoration: none;
  background-color: inherit;
/* using a different color makes the hover obvious */
  color: #385C72;
}
/*****************basic layout *****************/
div#pagewrapper {
/* min max width, IE wont understand these, so we will use java script magic in the <head> */
  max-width: 99em;
  min-width: 60em;
/* now that width is set this centers wrapper */
  margin: 20px auto;
  background-color: #fefefe;
  color: black;
  width: 900px;
}
#body_wrapper{
  width: 900px;
  display: block;
  height: auto;
  margin: 10px 0 20px 0;
}

div.breadcrumbs {
/* CSS short hand rule first value is top then right, bottom and left */
  padding: 1em 0em 1em 1em;
/* its good to set font sizes to be relative, this way viewer can change his/her font size */
  font-size: 90%;
/* css shorthand rule will be opened to be "0px 0px 0px 0px" */
  margin: 0px;
/* you can set your own image here */
  background: url(uploads/ngrey/mainleftup.gif) no-repeat left bottom;
}
div.breadcrumbs span.lastitem {
  font-weight: bold;
}
div#search {
/* position for the search box */
  float: right;
/* enough width for the search input box */
  width: 27em;
  text-align: right;
  padding: 0.5em 0 0.2em 0;
  margin: 0 1em;
}
/* a class for Submit button for the search input box */
input.search-button {
  border: none;
  height: 22px;
  width: 53px;
  margin-left: 5px;
  padding: 0px 2px 2px 0px;
/* makes the hover cursor show, you can set your own cursor here */
  cursor: pointer;
/* you can set your own image here */
  background: url(uploads/ngrey/search.gif) no-repeat center center;
}

/* this gets all the outside calls that were used on the div#main before  */
div.back1 {
/* this will give room for sidebar to be on the left side, make sure this number is bigger than sidebar width */
  margin-left: 29%;
/* and some air on the right */
  margin-right: 2%;
/* you can set your own image here */
  background: url(uploads/ngrey/mainrt1.gif) no-repeat right top;
}
/* this is an IE6 hack, you may see these through out the CSS */
* html div.back1 {
/* unlike other browser IE6 needs float:right and a width */
  float: right;
  width: 69%;
/* and we take this out or it will stop at the bottom  */
  margin-left: 0%;
/* and some air on the right */
  margin-right: 10px;
/* you can set your own image here */
  background: url(uploads/ngrey/mainrt1.gif) no-repeat right top;
}
div.back2 {
/* you can set your own image here */
  background: url(uploads/ngrey/mainleft1.gif) no-repeat left top;
}
div.back3 {
/* you can set your own image here */
  background: url(uploads/ngrey/wbtmleft.gif) no-repeat left bottom;
}


div.footback {
/* keep footer below content and menu */
  clear: both;
/* this sets 10px on right to let the right image show, the balance 10px left on next div */
  padding: 0px 10px 0px 0px;
/* you can set your own image here */
  background: url(uploads/ngrey/wfootrt.gif) no-repeat right top;
}

/* as we hid all hr for accessibility we create new hr with div class="hr" element */
div.hr {
  height: 1px;
  padding: 1em;
  border-bottom: 1px dotted black;
  margin: 1em;
}
/* relational links under content */
div.left49 {
/* combined percentages of left+right equaling 100%  might lead to rounding error on some browser */
  width: 70%;
}
div.right49 {
  float: right;
  width: 29%;
/* set right to keep text on right */
  text-align: right;
}
/********************CONTENT STYLING*********************/

/* TEXT */
p {
/* default p font size, this is set different in some other divs */
  font-size: 12px;
/* some air around p elements */
  margin: 0 0 12px 0;
  line-height: 15px;
  padding: 0;
}
blockquote, blockquote p{
  color: #000080;
  font-size: 10px;
  font-style: italic;
}
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 {
/* css-3 */
  white-space: pre-wrap;
/* Mozilla, since 1999 */
  white-space: -moz-pre-wrap;
/* Opera 4-6 */
  white-space: -pre-wrap;
/* Opera 7 */
  white-space: -o-pre-wrap;
/* Internet Explorer 5.5+ */
  word-wrap: break-word;
  font-family: "Courier New", Courier, monospace;
  font-size: 1em;
}
pre {
/* black border for pre blocks */
  border: 1px solid #000;
/* set different from surroundings to stand out */
  background-color: #ddd;
  margin: 0 1em 1em 1em;
  padding: 0.5em;
  line-height: 1.5em;
  font-size: 90%;
}
/* Separating the divs on the template explanation page */
div.templatecode {
  margin: 0 0 2.5em;
}
/* END TEXT */
/* End of 'structure' */

