/* Start of CMSMS style sheet 'main' */
/*****************
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: Arial, Verdana, sans-serif, Helvetica, Geneva;
   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: #005CB9; 
}

a:visited {
   text-decoration: underline;
   background-color: inherit;
  color: #005CB9;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   background-color: #C3D4DF;
   color: #005CB9;
}

/*****************
basic layout 
*****************/
body {
   margin:0em;    /* gives some air for the pagewrapper */
   background: #E4E9ED url(images/cms/sccm/sccm_background_01.jpg) repeat-x 0 0px;
}

/* center wrapper, min max width */
div#pagewrapper {
  width: 1200px;
  margin: 0 auto;       
  color: #555;
  border: 0px solid red;
}

div#title {
  position: relative;
  left: 68px;
  top: 80px;
  color: #fff;
}

div#sidebar {
  float: left;        /* set sidebar on the left side. Change to right to float it right instead. */
  display: inline;  /* FIX IE double margin bug */
  margin-left: 0px;
  background: #E4E9ED url(images/cms/sccm/sccm_left_01.jpg) no-repeat 0 0px;
  height: 768px;
  width: 256px;
  border: 0px solid green;
}

div#main {
  width: 800px;
  border: 0px solid green;
  background: #fff url(images/cms/sccm/sccm_photo_00.jpg) no-repeat 0 0px;
  margin-left: 296px;
}

div#toolbar {
  position: relative;
  left: 0px;
  top: 16px;
  width: 800px;
  border: 0px solid #ccc;
}

div#toolbar img {
  border: 0px solid #777;
}

div#toolbar a:hover {
  background: transparent;
}

#maintop {
  height: 79px;
}

#maincontent {
  height: 662px;
}

#mainbottom {
  background: #E4E9ED url(images/cms/sccm/sccm_page_bottom.jpg) no-repeat 0 0px;
  height: 20px;
}

div#sponsors {
   background: #E4E9ED url(images/cms/sccm/sccm_sponsors_01.jpg) no-repeat 0 0px;
   height: 300px;
}

div#menu_splitter {
   background: #E4E9ED url(images/cms/sccm/sccm_splitter_01.jpg) no-repeat 0 0px;
   min-height: 60px;
}

div#content,
div.content {
  margin-left: 2em;
  margin-right: 2em;
  margin-bottom: 2em;
  margin-top: 0em;
}


div#content2 {
  margin-left: 1em;
  margin-right: 1em;
  margin-bottom: 2em;
  margin-top: 260px;
}

div#content_topleft {
  margin-left: 2em;
  padding-bottom: 1em;
  margin-right: 1em;
  border-bottom: 4px #bbb solid;
  height: 280px;
}

div#content_bottomleft {
  margin-left: 2em;
  padding-bottom: 1em;
  margin-right: 1em;
  min-height: 60px;
}

div#content_topright {
  padding-bottom: 2em;
  margin-left: 1em;
  margin-right: 2em;
  border-bottom: 4px #bbb solid;
  min-height: 60px;
}

div#content_bottomright {
  padding-bottom: 1em;
  margin-right: 2em;
  margin-left: 1em;
  min-height: 60px;
}

div#content_page {
  padding-top: 1em;
  padding-bottom: 1em;
  margin-right: 2em;
  margin-left: 2em;
}

/********************
GLOBAL STYLING
*********************/
.title1 {
  font-size: 1.3em;  /* font size for h1 */
  line-height: 1.4em;
  margin: 0;
  color: #005CB9;
  font-weight: bold;
  padding-bottom: 0.5em;
}

.title2 {
  font-size: 1.3em;  /* font size for h1 */
  line-height: 1.4em;
  margin: 0;
  padding-bottom: 0.5em;
  padding-top: 0.5em;
  font-weight: bold;
  color: #555;
}

.title3 {
  font-weight: bold;
  line-height: 1.4em;
  color: #555;
}

a.link2 {
  font-size: 1.3em;  /* font size for h1 */
  line-height: 2em;
  margin: 0;
  padding-bottom: 0.5em;
  padding-top: 0.5em;
  padding-left: 0.5em;
  padding-right: 0.5em;
  font-weight: bold;
  color: #555;
  text-decoration: none;
}

table.tabinfo {
}

table.tabinfo td {
  padding-top: 0.2em;
  padding-bottom: 0.2em;
  padding-left: 0.5em;
  padding-right: 0.5em;
}

.separator {
  background-color: #bbb;
  height: 4px;
  margin-top: 1em;
  margin-bottom: 1em;
}

/********************
CONTENT STYLING
*********************/
div#content {

}

/* HEADINGS */
div#content h1 {
  font-size: 1.3em;  /* font size for h1 */
  line-height: 1.4em;
  margin: 0;
  color: #005CB9;
  font-weight: bold;
  padding-bottom: 0.5em;
}
div#content h2 {
  font-size: 1.3em;  /* font size for h1 */
  line-height: 1.4em;
  margin: 0;
  padding-bottom: 0.5em;
  padding-top: 0.5em;
  font-weight: bold;
  color: #777;
}
div#content h3 {
  font-size: 1.3em;  /* font size for h1 */
  line-height: 1.3em;
  margin: 0;
  font-weight: bold;
  color: #777;
}
div#content h4 {
}
div#content h5 {
}
h6 {
}

/* END HEADINGS */

/* TEXT */
p {
  font-size: 1em;
  line-height: 1.8em;
  padding: 0;
}

blockquote {
   border-left: 10px solid #ddd;
   margin-left: 10px;
}
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%;


}

/* Separating the divs on the template explanation page, with some bottom-border */
div.templatecode {
  margin: 0 0 2.5em;
}

/* END TEXT */

/* LISTS */
/* lists in content need some margins to look nice */
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;
}

/* definition lists topics on bold */
div#main dl dt {
   font-weight: bold;
   margin: 0 0 0 1em;
}
div#main dl dd {
   margin: 0 0 1em 1em;
}

div#main dl {
  margin-bottom: 2em;
  padding-bottom: 1em;
  border-bottom: 1px solid #c0c0c0;
}


/* END LISTS */
/* End of 'main' */

