/* Start of CMSMS style sheet 'White : Accessibility' */
/* accessibility */

/* 
menu links accesskeys 
*/
span.accesskey {
   text-decoration:none;
}

/* 
accessibility divs are hidden by default 
text, screenreaders and such will show these 
*/
.accessibility, hr {
   position: absolute;
   top: -999em;
   left: -999em;
}

/* 
definition tags are also hidden 
these are also used for menu links    
*/
dfn {
   position: absolute;
   left: -1000px;
   top: -1000px;
   width: 0;
   height: 0;
   overflow: hidden;
   display: inline;
}
/* end accessibility */

/* external links will have "(external link)" text added, lets hide it */
a.external span {
  position: absolute;
  left: -5000px;
  width: 4000px;
}

/* clearing */
/* 
clearfix is a hack for divs that hold floated elements. it will force the holding div to span all the way down to last floated item.
We strongly recommend against using this as it is a hack and might not render correctly but it is included here for convenience.
Do not edit if you dont know what you are doing
*/
	.clearfix:after {
		content: "."; 
		display: block; 
		height: 0; 
		clear: both; 
		visibility: hidden;
	}
	* html>body .clearfix {
		display: inline-block; 
		width: 100%;
	}
	
	* html .clearfix {
		/* Hides from IE-mac \*/
		height: 1%;
		/* End hide from IE-mac */
	}

/* end clearing */
/* End of 'White : Accessibility' */

/* Start of CMSMS style sheet 'White : Main' */
* {
  margin:0;
  padding:0;
}

body {
   text-align: left;
   font-family: Verdana, Geneva, Verdana, Arial, Helvetica, sans-serif;
   font-size: 12px;
   background-color: #fff;
   color: #222;
   margin:1em;
}

div {
   font-size: 12px;
}

img {
   border: 0;
}

a,
a:link 
a:active {
   text-decoration: none;
   font-weight: bold; 
   background-color: inherit; 
   color: #800;
}

a:visited {
   text-decoration: none;
   background-color: inherit;
}

a:hover {
   text-decoration: underline; 
}

/* center wrapper, min max width */
div#pagewrapper {
   margin: 0 auto;
   max-width: 840px;
   min-width: 840px;
}

div#header {
   border-bottom-color: #800;
   border-bottom-style: solid;
   border-bottom-width: 0.1em;
   font-size: 11px;
   color: #222;
   text-align: center;
   margin-bottom: 5px;
   padding-top: 10px;
   padding-left: 10px;
   padding-bottom: 4px;  
}

div#header h1 {
   font-size: 32px;
   color: #222;
   line-height: 1em;
   margin: 0;
   text-align: left;
   font-family: Arial, Helvetica, sans-serif;
   letter-spacing: 6px;
}

div#search {
   margin-top: 60px;
   padding: 0.2em 0.2em 0.2em 0.2em;
   color: #222;
   text-align: left;
   font-weight: bold;
   font-size: 85%;  
}

div#search input {
   margin: 4px 0 0 0;
   color: #666;
}

div#content {
   color: #222; 
   margin-left: 160px; 
   margin-right: 180px;
   width: 480px; /* minus 20px due to ie6 */
   padding: 4px;
}

div#leftsidebar {
   float: left;
   width: 140px;
   font-size: 10px;
   display: inline;  /* FIX IE double margin bug */
}

div#rightsidebar {
   float: right;
   width: 170px;
}

div#footer {
   font-size: 10px;
   clear: both;
   color: #222;
   border-bottom-color: #800;
   border-bottom-style: solid;
   border-bottom-width: 0.1em;
}

div#footer p {
   font-size: 0.9em;
   color: #999;
   padding: 1em;
   text-align: center;
   margin: 0;
}

div#footer p a {
   text-decoration: none;
   color: #999;
   font-weight: normal; 
}

div#footer p a:hover {
   text-decoration: underline;
}

div.breadcrumbs {
   padding: 0.2em 0.2em 0.2em 0.2em; 
   font-size: 75%;   /* its good to set fontsizes to be relative, this way viewer can change his/her fontsize */
   margin: 0 0 0 0;        /* css shorthand rule will be opened to be "0 1em 0 1em" */
}

 div.breadcrumbs span.lastitem { 
   font-weight:bold; 
 } 

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   border-bottom: 1px solid #800;
   margin-top: 10px;
   margin-bottom: 10px;
}

h1 {
   color: #222; 
   font-size: 16px; 
   text-align: left; 
   line-height: 1.5em;
   margin: 0 0 0.5em 0;
}

h2 {
   color: #222; 
   font-size: 15px; 
   text-align: left; 
   line-height: 1.5em;
   margin: 0 0 0.5em 0;
}

h3 {
   color: #222; 
   font-size: 14px;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
}

h4 {
   color: #222; 
   font-size: 13px;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}

h5 {
   color: #222; 
   font-size: 12px;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
/* END HEADINGS */

/* TEXT */
p {
   margin: 0 0 0.5em 0; /* some air around p elements */
   line-height: 1.3em;
   padding: 0;
}

blockquote {
   border-left: 5px;
   margin-left: 5px;
}
strong, b {                             
   font-weight: bold;  /* explicit setting for these */
}
em, i {
   font-style:italic;   /* explicit setting for these */
}

/* 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 */
   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#content ul,
div#content ol,
div#content dl {
   font-size: 12px;
   line-height: 1.5em;
   margin: 0 0 1.4em 0em;
}

div#content ul li,
div#content ol li {
  margin: 0 0 0.25em 3em;
}

/* definition lists topics on bold */
div#content dl dt {
   font-weight: bold;
   margin: 0 0 0 1em;
}
div#content dl dd {
   margin: 0 0 1em 1em;
}

div#content dl {
  margin-bottom: 2em;
  padding-bottom: 1em;
  border-bottom: 1px solid #880000;
}


/* END LISTS */
/* End of 'White : Main' */

/* Start of CMSMS style sheet 'White : Navigation' */
#menu_vert {
   padding-left: 0;
   margin-left: 0;
}

/* first level */ 
#menu_vert li {
   font-size: 11px;
   text-align: center;
   list-style: none;
   margin: 0 0 12px 0;
   display: block; 
   border-color: #800;
   border-style: solid;
   border-width: 0.1em 0.1em 0.1em 0.1em;
}

/* second level */ 
#menu_vert ul ul li {
   text-align: center;
   font-style: italic;
   display: block;
   margin: 5px 0 5px 0;
   border-style: dotted; 
   border-width: 1px 0 0 0;
}   

/* third level */ 
#menu_vert ul ul ul li {
   display: block;
   margin: 0.2em 0.2em 0.2em 0.2em;
   text-align:center;
   border-style: solid;
   border-width: 0.1em 0.1em 0.1em 0.1em;  
}

/** fix stupid ie bug with display:block; **/
* html #menu_vert li a { height: 1%; } 
* html #menu_vert li hr { height: 1%; }
/** end fix **/

/* first level links */
div#menu_vert a {
   text-decoration:none;
   display: block; 
   padding: 0.2em 0.1em 0.3em 2px; 
   color: #800;
   min-height:1em;
}

/* second level  link */
div#menu_vert ul ul a {
   padding: 0.1em 0.1em 0.1em 0.4em; 
}

/* third level link */
div#menu_vert ul ul ul a {
   padding: 0.1em 0.1em 0.1em 0.6em;
   border: none;
}

/* hover first level link */
div#menu_vert ul a:hover {
   text-decoration:underline;
}

/* hover second level */
div#menu_vert ul ul a:hover {
   text-decoration:underline;
}

/* hover third level link */
div#menu_vert ul ul ul a:hover {
   text-decoration:underline;
}

/* section header */
div#menu_vert li.sectionheader {
   border-right: none;
   font-weight: bold;
   padding: 1.2em 0 0.8em 0;
   background-color: #fff;
   line-height: 1em;
   margin: 0;
   text-align:center;
}

/* separator */
div#menu_vert li.separator {
   height: 1px !important;
   margin-top: -1px;
   margin-bottom: 0;
   padding:2px 0 2px 0;
   background-color: #800;   
   overflow:hidden !important;
   line-height:1px !important;
   font-size:1px; /* for ie */
}

div#menu_vert li.separator hr {
   display: none;
}
/* End of 'White : Navigation' */

/* Start of CMSMS style sheet 'White : News' */
.NewsTitle {   
   text-align: center; 
}

.NewsSummary {
    padding: 0.3em 0.3em 0.3em 0.3em;
    margin: 0 0em 1em 0em;
    border-color: #800;
    border-style: solid;  
    border-width: 1px; 
}

.NewsSummaryLink {
   text-align: center;
   font-weight: bold;
 }

.NewsSummarySummary, .NewsSummaryContent {

}

.NewsSummaryMorelink {
  padding-top: 0.5em;
}

#NewsPostDetailContent {
  margin-bottom: 15px;
  line-height: 150%;
  }

#NewsPostDetailTitle {
  text-align: center;
}

#NewsPostDetailHorizRule {
   height: 1px;
   border-bottom: 1px solid #800;
   margin-top: 10px;
   margin-bottom: 10px;

}
/* End of 'White : News' */

