/* Start of CMSMS style sheet 'esynola core' */
* {
margin:0;
padding:0;
}

body {
   text-align: left;
   font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-size: 75.01%;
   line-height: 1em;
}

div {
   font-size: 1em;
}

img {
   border: 0;
}

/*
default link styles
*/
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: #757; 
}

a:visited {
   text-decoration: underline;
   background-color: inherit;
  color: #757;
}

a:hover {
   text-decoration: underline;
   background-color: inherit;
   color: #535;
}

/*****************
basic layout 
*****************/
body {
   background-color: #e9e5e9;
   color: #333;
}

/* center wrapper, min max width */
div#pagewrapper {
   margin: 0 auto;       /* this centers wrapper */
   width: 750px;
   background-color: #fff;;
   color: #444;
}

div#esynolatop {
	display: block;
	width: 750px;
	height: 300px;
	background-color: #fff;
}
div#esynola_logo {
	float:left;
margin-left: 25px;
}

div#flashBox {
	float:right;
}
/*** header ***
we will hide text and replace it with a image
we need to assign a height for it so that the image wont cut off
*/
div#header {
	clear:both;
   height: 100px;    /* adjust according your image size */
   background: #535;           
}

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

/* position for the search box */
div#search {
float: right;
 	display: block;
	background-color: #535;
   width: 730px;    /* enough width for the search input box */
   text-align: right;
   padding: 5px 10px 5px 10px;
   color: #fff;
}

div.breadcrumbs {
clear:both;
	width: 730px;
   font-size: 90%;
   background-color: #bd0;
   padding: 5px 10px 5px 10px;
}

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

 div#content {
 clear:both;
   margin: 20px 10px 20px 0;
}


div#main {
   margin-left: 20px;
   margin-right: 250px;
}

div#main img {
padding:10px;
padding-top: 5px;
}

div#sidebar {
   float: right;        /* set sidebar on the left side. Change to right to float it right instead. */
   width: 220px;     /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX IE double margin bug */
   margin-right: -10px;
background-color: #fff;
}


div#esynews .NewsSummary {
    padding: 0;
    margin: 0;
}

div#esynews .NewsSummary p {
    color:#444; 
}

div#esynews .NewsSummaryPostdate {
  font-size: 90%;
  font-weight: bold;
  color:  #666;
padding-top: 5px;
  padding-bottom: 5px;
border:none;
 }
div#footer {
   clear: both;       /* keep footer below content and menu */
   color: #fff;
   background-color: #535; /* same bg color as in header */
}

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

div#footer p a {
   color: #fff; /* needed becouse 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;
   padding: 1em;
   border-bottom: 1px dotted black;
   margin: 1em;
}

/* relational links under content */
div.left49 {
  width: 49%; /* 50% for both left and right might lead to rounding error on some browser */
}

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




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

}

/* HEADINGS */
div#content h1 {
   font-size: 1.6em; /* font size for h1 */
   line-height: 1em;
   color: #535;
   border-bottom: 1px solid #535;
   padding-bottom: 5px;
   margin: 0 0 15px 0;
}
div#content h2 {
	color: #757; 
	font-size: 1.4em; 
	text-align: left; 
	padding-bottom: 5px;
	border-bottom: 1px solid #757; 
    line-height: 1em;
    margin: 0 0 15px 0;
}
div#content h3 {
   color: #8a0; 
   font-size: 1.3em;
   line-height: 1.3em;
   margin: 0 0 5px 0;
}
div#content h4 {
   color: #535; 
   font-size: 1.2em;
   line-height: 1.3em;
   margin: 0 0 5px 0;
}
div#content h5 {
   color: #757; 
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 5px 0;
}
h6 {
   color: #8a0; 
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 5px 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;
   color: #444;
}

blockquote {
   border-left: 10px solid #ddd;
   margin-left: 10px;
}
strong, b {
/* explicit setting for these */
   font-weight: bold;
   color: #535;
}
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;
}
.jump_blurb {
padding: 10px;
color:#444;
background-color:#bd0;
margin-bottom: 15px;
font-weight: bold;
}
.americorps_blurb {
padding: 10px;
color:#444;
background-color:#fff;
margin-bottom: 5px;
}

/* END LISTS */
/* End of 'esynola core' */

