/* Start of CMSMS style sheet 'Hometemplate' */
/*****************
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, Helvetica, sans-serif;
   color: #444;
   line-height: 1.25;
/*   font-size: 75.01%; */
   font-size: small;
   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 {
  text-decoration: none;
}

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: #18507C; 
}

a:visited {
   text-decoration: none;
   background-color: inherit;
   color: #18507C;                /* 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: #385C72;
}

/*****************
basic layout 
*****************/
body {
/*
   background-color: #ccc;  out-of-frame background color*/
   background-color: #EFEBEF;
   background: url(/uploads/images/bodyBG.gif) #fff repeat-x left top; 
   color: #333;
   margin:0;    /* gives air for the pagewrapper; 0 to the top */
}

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

/*** 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 {
background: url(/uploads/images/header-back2.gif) no-repeat bottom right;
/*   background: #385C72;           */
/* additions by Ulysses for flash */
/* margin: 2em; */
/* background: #ffffff;           */
padding: 8px 0 1em 10em;
height: 80px; 
width:794px;
text-align: left; 
}

div#header embed {
float: left;
}

div#header h1 a {
/* you can set your own image here */
   /* background: #385C72 url(images/cms/logo1.gif) no-repeat 0 12px; */
   display: block;
   height: 50px;             /* 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 */
/* additions by Ulysses for flash */
float: right;
line-height: 0;
padding: 0;
width: 106px;
text-indent: -700em;
}

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

/* *************************
div.headerimg {
   height: 292px;
   border:1px solid #999;
   background-image:url(uploads/images/homeimg.jpg);
   background-repeat:no-repeat;
   padding:0 0 1px 0;
}
***************************** */

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#rightbar {
  position: absolute;
  top: 200px;  /* leave space for the top of images column */
  right: 0px;
  margin: 0px 0px 5px 0px;
  padding: 0px 10px 10px 15px;
  width: 90px;
  border-left: 1px solid #c3c3c6;
}

/* 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;
}

.leftbox {
  width: 55%;
  height: 280px;
  float: left;
  text-align: left;
  padding: 1em 0 1em 0.3em;
  background-image:url(/uploads/images/leftboxbg.gif);
  background-repeat:repeat-x;
}

.rightbox {
   float: right;
   width: 45%;
   padding: 1em 1em 0.3em 0;
}

.rightbox .grayborder {
   border:1px solid #000;
}

/********************
CONTENT STYLING
*********************/
div#main {
   margin-top: 0;
   padding: 0;
   margin-left: 12%; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width; smaller to make content closer to sidebar */
   margin-right: 5%; /* and some air on the right */
   width: 800px;
}

/* borders around header originally #e7ab0b, updated by Ulysses */

/* HEADINGS */

div#content {
   margin: 0.5em auto 2em 0;   /* some air above and under menu and content */
  color: #454542;
}

div#content h1 {
   font-size: 2em; /* font size for h1 */
   line-height: 1em;
   margin: 0;
}

div#content h2 {
	color: #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 #B8B8B8; 
	border-left: 1.1em solid #B8B8B8; 
        line-height: 1.5em;
/* and some air under the border */
        margin: 0 0 0.5em 0;
}

div#content h3 {
   color: #294B5F; 
   font-size: 1.3em;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
}
div#content h4 {
   color: #294B5F; 
   font-size: 1.2em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
div#content h5 {
   color: #294B5F; 
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
h6 {
   color: #294B5F; 
   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;
   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;
}

/* Creating images with light shadow */
.img-shadow {
  float:left;
  background: url(uploads/images/shadowAlpha.png) no-repeat bottom right !important;
  background: url(uploads/images/shadow.gif) no-repeat bottom right;
/*  margin: 2px 0 0 10px !important; */
  margin: 2px 0 0 5px;
  }

.img-shadow img {
  display: block;
  position: relative;
  background-color: #fff;
  border: 1px solid #a9a9a9;
  margin: -6px 6px 6px -6px;
  padding: 4px;
  }

.topmap {
   background-image:url("/uploads/images/top-map.gif");
   background-repeat:no-repeat;
   height:200px;
}

/* height is not a good idea for the mapshadow.  If you uncomment it, the words in the leftbox will overlap the words in the mapshadow. */

.mapshadow {
   background-image: url("/uploads/images/map2.gif");
/* height: 180px; */
   background-repeat: no-repeat;
   background-position: center center;
   padding: 2em 0 0 0;
}
/* END TEXT */

/* TABLE */
.TableHead {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 8pt;
	font-weight: bold;
	color: #DFDFE0;
	line-height: normal;
}

.TableBody {
       border-spacing: 0.5em;
}

td.news {
  text-align: left;
  vertical-align: middle;
}

/* END TABLE */

/* LISTS **************************************** */

/*
#container ul {
  list-style-type:none;
  line-height:150%;
  border:1px solid #333;
  width: 100%;
  font: bold 12px 'Lucida Grande', Verdana, Sans-serif;
}

#container li {
  background: #DDDDDD;
  display: inline;
  padding: 0 1.7em 0 1.6em;
  margin: 0;
  border:1px solid #333;
  font: bold 14px 'Lucida Grande', Verdana, Sans-serif;
}
*/

/* END LISTS ************************************** */

div#footer {
   clear: both;       /* keep footer below content and menu */
   color: #000000;
   margin-left: 250px;
/*   background-color: #385C72; */ /* 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 */
}

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

/* BOTTOM MENU ON HOME PAGE **************************************** */

#menu1 {
  width:808px;
  padding:0; 
  margin:0 auto; 
  list-style-type:none;
  }
#menu1 li {
  float:left;
  width:131px;
  border:1px solid #fff; 
  }
#menu1 a {
  display:block;
  width:132px;
  color:#000; 
  background:#7EACFF; 
  text-align:center; 
  padding:4px 0; 
  text-decoration:none; 
  float:left; 
  }
#menu1 a:hover {
  color:#000; 
  background:#BDFFFF;
  font: bold 12px 'Lucida Grande', Verdana, Sans-serif;
  }

.container {clear:both; text-decoration:none;}
* html .container {display:inline-block;}

/* END BOTTOM MENU ON HOME PAGE ************************************ */
/* End of 'Hometemplate' */

