/* Start of CMSMS style sheet 'ORGsolutions-Layout Styles' */
/*****************
browsers interpret margin and padding a little differently, 
we'll remove all default padding and margins and
set them later on
copied from base:top +2
******************/
* {
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;
}



/*
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: none;
/* 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: #564218; 
}

a:visited {
   text-decoration: none;
   background-color: inherit;
   color: #564218;                /* a different color can be used for visited links(18507c)*/
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   background-color:#EFECE0;  /*dark color #D6CCA3; */
   color: #000; /* dark */
}

/*****************
basic layout
*****************/

body {
   background-color: #FFFFFF; /* was ccc */
   color: #000; /* was 333 */
   margin:.25em; /* gives some air for the pagewrapper */
}

/* center wrapper, min max width */
div#pagewrapper {
   border: 1px solid white;
   margin: 0 auto;     /* this centers wrapper */
   max-width:948px;/* was 79em; IE wont understand these, so we will use javascript magick */
   min-width:948px;/* was 60em; */
   background-color: #fff;
   color: black;
}

/* elements on the page you wish to not show */
.hidden {
  display: none;
}

/*** header ***
we will hide text and replace it with a image
we need to assign a height for it
*/

div#header {
   height: 65px; /* adjust according your image size was 80 */
   width: 300px;
   margin-right: 50%;
   background: #fff;         
}
 

div#top-nav {
   display: inline;  /* FIX ie doublemargin bug */
   float: right;  /* set sidebar on the left side. Change to right to float it right instead. */
   /* width: 40%;    sidebar width, if you change this please also change #main margins  */
   margin-top: 15px;
   margin-left: 50%;
   background: #fff;         
   text-align: right;
   padding:1px 0;
}

div#header h1 a {
/* you can set your own image here */
   background: #fff url(uploads/images/orgslogo.gif) no-repeat 0 0;  /* was 0 12px; */
   display: block; 
   height: 65px;             /* adjust according your image size was 80*/
   text-indent: -999em;  /* this hides the text */
   text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
}

div#header2 {
   height: 65px; /* adjust according your image size was 80 */
  margin-right:240px;
   background: #fff;      
   padding-bottom:10px;
   border-bottom:1px solid #B9BE9C;   
}

div#header2landing2 {
   height: 65px; /* adjust according your image size was 80 */
   background: #fff;      
   padding-bottom:10px;
   border-bottom:1px solid #B9BE9C;   
}

div#header3 {
   height: 65px; /* adjust according your image size was 80 */
   background: #fff;      
   padding-bottom:10px;
   border-bottom:1px solid #B9BE9C;   
}

div#search {
   float: right;
   width: 23em;     /* enough width for the search input box */
   text-align: left;
   padding: 0.6em 0 0.2em 0;
   margin: 0 1em;
}

div.breadcrumbs {
   padding: 1em 0 1.2em 0; /* CSS short hand rule first value is top then right, bottom and left */
   font-size: 90%;             /* its good to set fontsizes to be relative, this way viewer can change his/her fontsize */
   margin: 0 1em;              /* css shorthand rule will be opened to be "0 1em 0 1em" */
   border-bottom: 1px dotted #000;
}

 div.breadcrumbs span.lastitem { 
   font-weight:bold; 
 } 

div#content2 { /* Styling the Gallery and Starter Template */
  /* margin:0px auto 2em 0em;  some air above and under menu and content was 1.5*/
  margin-right:240px;
}

div#content3 { /* Styling the Highest Landing Page Template */
margin-left:0px;
margin-right:0px;
}

div#main {
   margin-left: 25%; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
   margin-right: 0;/*2%;  and some air on the right */

}

div#main2 { /* Styling the Gallery and Starter Template */
   margin-left: 250px; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
   padding-top:15px;
}

div#main3 div { /* Styling Highest Landing Page */
width:237px;
height:250px;
float:left;
text-align:center;
}

/* Remove Background on resource boxes */
div#content3 div#main3 a:hover, div#content div#main3 a:hover, div#pagewrapper div#content3_res a:hover { 
background:transparent;
}

div#content3_res h1 a {
color:#ffffff;
}

div#content div#main2 a {
text-decoration:underline;
}
 

div#main3 h2.one, div#main3  h2.two, div#main3  h2.three {
padding:10px 10px 10px 20px; 
font-size:1.4em;
font-weight:normal;
text-transform:lowercase;
margin-bottom:5px;
margin-right:4px;
text-align:left;
}
div#main3 h2.one { 
background:#b4a76c;
}
div#main3 h2.two { 
background:#b9be9c;
}
div#main3 h2.three { 
background:#d1c99d;
}
div#main3 p, div.sidebar_content3 p {
margin-left:20px;
margin-right:20px;
margin-top:3px;
margin-bottom:1px;
text-align:left;
}
div#main3 p img {
text-align:center;
}
div#sidebar {
   float: left;  /* set sidebar on the left side. Change to right to float it right instead. */
   width: 234px;    /* sidebar width, if you change this please also change #main margins : was 26 */
   display: inline;  /* FIX ie doublemargin bug */
   margin-left: 0;
}

/* if sidebar doesnt include menu but content add class="hascontent" */
div#sidebar.hascontent {
   padding: 0 1%;
   width: 24%;  /* make width smaller if there's padding, or it will get too wide for the floated divs in IE */
}

div.sidebar_content3 {
float:right;
width:234px;
}

div#footer {
   clear:both;       /* keep footer below content and menu */
   color: #000;
   background-color: #fff; /* same bg color as in header was 385c72 */
   padding-top:8px;
}

div#footer p {
   font-size: 0.8em;
   padding: 1.5em;      /* some air for footer */
   text-align: right; /* centered text was center*/
   margin:0;
}

div#footer p a {
   color: #fff; /* needed because footer link would be same color as background otherwise */
}

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   margin: 1em;
   border-bottom: 1px dotted black;
}

/* relational links under content */
.left49 {
  float: left;
}

div.right49 {
  float: right;
  width: 49%;
  text-align: right;
}

div.above-lnav {
height:130px;
}

/* Homepage & Resource Boxes */
div#content3_res {
clear:both;
}
div#main3 div.neutral, div#main3 div.easytrack, div#main3 div.org,
div#content3_res div.neutral, div#content3_res div.easytrack, div#content3_res div.org {
float:left;
font-size:1em;
height:150px;
margin-top:4px;
width:232px;
overflow:hidden;
}

div#main3 div.easytrack, div#content3_res div.easytrack {
background:#D4D7AC;
margin-left:4px;
border:1px solid #e1d7cb;
}

div#main3 div.easytrack h1, div#content3_res div.easytrack h1 {
background:#687718;
 padding:7px;
color:#fff;
font-size:1.2em;
font-weight:normal;
text-align:left;
}

div#main3 div.org, div#content3_res div.org  {
background:#C5C19C;
margin-left:4px;
margin-right:4px;
border:1px solid #e1d7cb;
}

div#main3 div.org p, div#main3 div.easytrack p,
div#content3_res div.org p, div#content3_res div.easytrack p  {
margin:10px;
}

div#main3 div.org h1, div#content3_res div.org h1 {
background:#8A6632;
padding:7px;
color:#fff;
font-size:1.2em;
font-weight:normal;
text-align:left;
}

div#main3 div.neutral, div#content3_res div.neutral {
border:1px solid #e1d7cb;
width:232px;
color:#8A6632;
}

div#main3 div.neutral h1, div#content3_res div.neutral h1 {

background:#C5C19C;
padding:7px;
color:#fff;
font-size:1.2em;
font-weight:normal;
text-align:left;

/* font-size:1.2em;              OLD STYLE - No Background on header.
line-height:2em;
font-weight:normal;
padding:0px 7px;
text-align:left;
color:#5F4317;
border-bottom:1px solid #FFF8EF; */
}

div#main3 div.neutral p, div#content3_res div.neutral p {
margin:5px 5px 5px 10px;
}

/********************
CONTENT STYLING - here
*********************/
div#content p, div#content2 p{
padding-left:1em;
}

.left_column_blue_box {
background:#80A3B7;
height:354px;
margin-right:0;
margin-left:525px;
padding:15px;
color:#fff;
}

/* HEADINGS */
div#content h1 {
   font-size: 2em;  /* font size for h1 */
   line-height: 1em;
   margin: 0;
}
div#content h2, div#content2 h2 {
   color: #82613B; /*was 294b5f */
   font-size: 1.5em; 
   text-align: left; 
/* some air around the text */
   padding-left: 0.5em;
   padding-bottom: 1px;
/* set borders around header */
   border-bottom: 1px solid #EFECE0; 
   /* border-left: 1.1em solid #EFECE0; */
   line-height: 1.8em;
/* and some air under the border */
   margin: 0 0 0.5em 0;
}
div#content2 div#main2 h3, div#content div#main2 h3, div#pagewrapper div.sidebar_content3 h3{
color:#896532;
line-height:2em;
padding-left:.5em;
   font-weight:normal;
}
div#content h3, div#content2 h3 {
   color: #82613B; /* 294B5F; */
   font-size: 1.2em;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
}
div#content h3 a, div#content2 h3 a {
text-decoration:underline;
}
div#content h4 {
   color: #82613B; /* 294B5F; */
   font-size: 1.2em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
div#content h5 {
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
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;
   padding-left:7px;
   margin-left: 10px;
   line-height:1.5em;
   font-size:.9em;
   text-align:justify;
}
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 */
div#main2 ul, div#main ul,
div#main2 ol, div#main ol,
div#main2 dl, div#main dl{
  font-size: 1.0em;
   line-height:1.4em;
   margin: .5em 0 .5em 1em;
}
div#main2 ul li, div#main ul li,
div#main2 ol li, div#main 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 */

/* Affiliates Module */
div#content2 div#main2 ul.affiliates {
border-bottom:1px solid #cccccc;
padding-bottom:1em;
list-style-type:none;
padding-left:0px;
line-height:1.5em;
margin:0 0 1em 0;
}

div#content2 div#main2 ul.affiliates li {
margin:0;
}

div#content2 div#main2 ul.affiliates li.assoc_name {
color:#896532;
}

ul.affiliates li.assoc_name {
font-size:1.5em;
color:#5F3316;
}
/* End of 'ORGsolutions-Layout Styles' */

