/* Start of CMSMS style sheet 'Layout: Right sidebar + 1 column' */
/*****************
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: "lucida sans", 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;
}
/* Hide the print icon */
.noprint {
  display: none;
}

/*****************
basic layout
*****************/
body {
   background-color: #ccc;
   color: #333;
   margin:1em;    /* gives some air for the pagewrapper */
}

/* center wrapper, min max width */
div#pagewrapper {
   border: 0px solid black;
   margin: 0 auto;       /* this centers wrapper */
   max-width: 80em;   /* IE wont understand these, so we will use javascript magick */
   min-width: 60em;
}

/*** topblock ***/
div#topblock {
   border-top: 5px solid #111;
   background-color: #000100;
}

/*** header ***
*/
div#header {
   border-top: 5px solid #111;
}

div#header h1 a {
   color: #eee;              /* only of use with a title */
   background: #000100 url(../uploads/images/logos/shield_dark.gif) no-repeat top right; 
   display: block;
   height: 112px;
   line-height: 100px;
   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;
   width: 23em;    /* enough width for the search input box */
   text-align: right;
   padding: 0.6em 0 0.2em 0;
   margin: 0 1em;
   clear: both;
   color: #fff;
}

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;
   color: #fff;
}

.breadcrumbs a {
   color: #fff;
}

div#content-inner {
   background: url(../images/main-bg.gif) repeat-y 68% 0;
}

div#main {
   margin-left: 0%;
   margin-right: 33%; /* this will give room for sidebar to be on the right side, make sure this space is bigger than sidebar width */
}

div#sidebar {
   float: right;        /* set sidebar on the right side. */
   width: 30%;     /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX IE double margin bug */
   margin-right: 0;
}

div#footer {
   border-top: 3px solid #7E7B5A;
   padding: 3em 0;
   clear: both;       /* keep footer below content and menu */
}

div#footer p {
   font-size: 0.8em;
   padding: 1.5em 0;       /* some air for footer */
   text-align: center;  /* centered text */
   margin: 0;
}

/* 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: 69%; /* 50% for both left and right might lead to rounding error on some browser */
}

div.right49 {
  float: right;
  width: 29%;
  text-align: right;
}

/* Give ourselves some space at the edge of the screen */
#topblock-inner, #content-inner, #footer-inner {
        margin: 0 auto;
        width: 85%;
}

/********************
CONTENT STYLING
*********************/
div#content {
   padding: 1em 0 3em 0;
   background-color: #fff;
   background: #fff url(../images/shadow.png) repeat-x top left;
}

div#content-inner {
   background: url(../images/main-bg.gif) repeat-y 68% 0;
}

/* HEADINGS */
div#main h1, div#main h2, div#main h3, div#main h4, 
div#mainfull h1, div#mainfull h2, div#mainfull h3, div#mainfull h4  {
	margin: 1em 0;
	font-family: georgia, sans-serif;
line-height: 1.7em;
}
div#main h3, 
div#mainfull h3 {
padding: 5px 0;	
border-bottom: 1px solid #dbd5c5;
}
/* TEXT */
#main #intro {
	padding: 1em;
	font-size: 160%;
	font-weight: normal;
	background: url(../images/blc-leaf.gif) no-repeat bottom right;
        line-height: 1.2em;
}
#main p, #mainfull p {
	margin: 1em 0;
	line-height: 1.8em;
}
#main .item {
	margin-bottom: 2em;
}
#main .item img {
	margin: 0 0 20px 20px;
	float: right;
	border-right: 1px solid #bbb;
	border-bottom: 1px solid #bbb;
	background-color: #ccc;
	padding: 5px;
}
#main .item h3 {
	margin-bottom: 1em;
	padding-bottom: .5em;
	border-bottom: 1px solid #aaa;
	line-height: 1.8em;
}

#main .clear {
        clear: both;
}
/*
--------------------------------------------------
= Main Navigation
--------------------------------------------------
*/
#nav {	
	margin-top: 20px;
	}
#nav ul { 
        list-style: none;
        }
#nav li {
             margin: .5em;
	float: left;
        font-size: 100%;
	font-weight: normal;
	}
#nav li a {
	float: left;
	padding: 10px 12px;
        font-size: 100%;
	font-weight: normal;
	color: #fff;
	}
#nav li a:hover {
	color: #a00;
	}
#nav li a.active {
	color: #a00;
	}
#nav li h3 {
	float: left;
	font-weight: normal;
        font-size: 100%;
	padding: 10px 12px;
	color: #333;
	}
#nav li.currentpage {
	font-weight: normal;
        font-size: 100%;
	background-color: #fff;
	color: #333;
}
/*
--------------------------------------------------
= Self clearing
--------------------------------------------------
*/
.item:after,	
#nav ul:after {
	content: "."; 
  display: block; 
  height: 0; 
  clear: both; 
  visibility: hidden;
}
/*
--------------------------------------------------
= Lists
--------------------------------------------------
*/
div#main ul {
	list-style: none;
}
#content li {
  padding-bottom: .6em;
}
dt {
  margin-top: 5px;
  padding: 5px;
  font-weight: bold; 
  background: #eee;
  border-bottom: 1px solid #ddd;
}
dd{
  padding: 5px;
  line-height: 1.7em;
}
/* END LISTS */
/*
--------------------------------------------------
= Tables
--------------------------------------------------
*/
div#mainfull table {
	border-collapse: collapse;
	font-size: 90%;
	font-family: arial, sans-serif;
}
div#mainfull th {
	background: #fff url(../images/shadow-th.png) repeat-x top left;
}
div#mainfull th, div#mainfull td {
	border: 1px solid #EDEAE1;
	padding: 5px;
}
/* stripe-me */
div#mainfull tr.alt td {
	background: #F5F3ED;
}

div#mainfull tr.over td, div#mainfull tr:hover td {
	background: #E5DDE0;
}

/* use this div with a white background to hide the
background image applied to content-inner. */
#mainfull {
background: #fff;
}

#main .box-list h3 {
margin: 0;
background-color: #eee;
font-size: 90%;
}

.box-list ul {
margin: 0;
padding: 0;
list-style-type: none
}

.box-list li {
border-bottom: 1px solid #ccc;
padding: 5px 0;
}

 .box-list
{
float: left;
width: 30%;
border: 1px solid #ccc;
margin: 0 15px 15px 0;
text-align: center;
min-height: 240px;
}

 .box-list-sml
{
min-height: 100px;
}

/* End of 'Layout: Right sidebar + 1 column' */

