/* Start of CMSMS style sheet 'debra Accessibility and cross-browser tools' */
/* 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 */


/* wiki style external links */
/* external links will have "(external link)" text added, lets hide it */
a.external span {
  position: absolute;
  left: -5000px;
  width: 4000px;
}

/* make some room for the image */
a.external {
/* css shorthand rules, read: first top padding 0 then right padding 12px then bottom then right */
  padding: 0 12px 0 0;
}
/* colors for external links */
a.external:link {
  color: #18507C;
/* background image for the link to show wiki style arrow */
  background: url(images/cms/external.gif) no-repeat 100% 0;
}
a.external:visited {
  color: #18507C; /* a different color can be used for visited external links */

/* 
Set the last 0 to -100px to use that part of the external.gif image for different color for active links 
external.gif is actually 300px tall, we can use different positions of the image to simulate rollover image changes.
*/
  background: url(images/cms/external.gif) no-repeat 100% 0; 
}

a.external:hover {
  color: #18507C;
/* Set the last 0 to -200px to use that part of the external.gif image for different color on hover */
  background: url(images/cms/external.gif) no-repeat 100% 0; 
  background-color: #C3D4DF;
}
/* end wiki style external links */


/* 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 'debra Accessibility and cross-browser tools' */

/* Start of CMSMS style sheet 'Debra Layout: Left 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;
}


body {
   line-height: 1em;
   font: 1em verdana, arial, sans-serif; text-align:left;
   background-color: #FFFFFF;
   color: #006E81;
}


div {
   font-size: 1em;
}

img {
   border: 0;
}


a,
a:link 
a:active 
a:visited {
   text-decoration: underline;
   background-color: inherit; 
   color: #006E81; 
}

a:hover {
   text-decoration: none;
   background-color: inherit; 
   color: #29007B;
}

/*****************
basic layout 
*****************/


/* center wrapper, min max width */
div#pagewrapper {
   margin: 0 auto;       /* this centers wrapper */
   max-width: 795px;   /* IE wont understand these, so we will use javascript magick */
   min-width: 795px;
   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 {
   height: 98px;    /* adjust according your image size */
}

div#header h1 a {
/* you can set your own image here */
   background: #ffffff url(/images/debheader.gif) no-repeat 0 0px; 
   display: block;
   height: 98px;             /* 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 */
}

div#content {
   margin: 0em auto 0em 0;   /* some air above and under menu and content */
}


div#main {
   margin: 0; 
   width: 59%;
   float: left; 
   padding: 5px 10px 5px 10px;
}

div#sidebar {
   margin: 0; 
   float: left;        /* set sidebar on the left side. Change to right to float it right instead. */
   width: 16%;     /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX IE double margin bug */
}

div#rightbar {
   margin: 0; 
   float: left;        /* set sidebar on the left side. Change to right to float it right instead. */
   width: 20%;     /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX IE double margin bug */
   padding: 9px 3px 3px 3px;
   border-bottom:2px solid #29007B;
}


div#footer {
   clear: both;       /* keep footer below content and menu */
   padding:4px 0; /* pushes the links away from top and bottom of the div */
   font-size:.8em;  /* sets the font size of all links */
   text-align:center; /* centers the ul elements in the div */
   background-color:#339FC5; /* sets the background color of the div */
   border-top:1px solid #29007B; border-bottom:2px solid #29007B;
}

div#footer p {
   padding:0 5px 0 9px;
   text-align: center;  /* centered text */
   margin: 0;
    color:#666666;
}

div#footer a {
   text-decoration:none;
color:#2C007C;
}

div#footer a:hover {
   text-decoration:underline;
color:#006E81;
}

/* 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;
}


/* End of 'Debra Layout: Left sidebar + 1 column' */

/* Start of CMSMS style sheet 'Debra Navigation: Simple - Vertical' */
/********************
MENU
*********************/
#menu_vert {
   padding-left: 0;
   margin-left: .5em;
}


/* third level has some padding to have it stand out */
div#menu_vert ul {
   border:0; 
   margin:7px 1em 12px 1em; 
   padding:0; 
   list-style-type:none; 
   font-weight:bold; 
   font-size:.75em;
}

/* menu li block */
#menu_vert ul li {
     border-bottom:2px dotted #29007B; 
     margin:0; 
     padding:.3em 0; 
     text-indent:.5em
}


/* menu li block */
#menu_vert ul ul li {
     border-top:2px dotted #29007B;
     border-bottom:0; 
     margin:0; 
     padding:.5em 0; 
     text-indent:.7em
}

/** 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; /* no underline for links */
   display: block; /* IE has problems with this, fixed above */
   color: #006E81; /* this will be link color for all levels */
   min-height:1em; /* Fixes IE7 whitespace bug */ 
}

/* hover state for all links */
div#menu_vert a:hover {
   color: #29007B;
}

/* 
current pages in the default Menu Manager 
template are unclickable. This is for current page on first level 
*/
div#menu_vert ul h3 {
   text-decoration:none; /* no underline for links */
   display: block; /* IE has problems with this, fixed above */
   color: #006E81; /* this will be link color for all levels */
   min-height:1em; /* Fixes IE7 whitespace bug */ 
}


/* End of 'Debra Navigation: Simple - Vertical' */

/* Start of CMSMS style sheet 'D News' */
div#news h2 {
   line-height: 2em;
   background: #fff;
}

.NewsSummary {
    padding: 0.5em 0.5em 1em; /* padding for the news article summary */
    margin: 0 0.5em 1em 0.5em; /* margin to the bottom of the news article summary */
}

.NewsSummaryPostdate {
font-size:.9em; font-weight:lighter; font-style:italic; margin-top:.1em; margin-bottom:.1em; font-family:verdana, arial, sans-serif; color:#29007B;
 }

.NewsPostDetailTitle {font-size:1.2em; font-weight:bold; margin-top:0; margin-bottom:.5em; font-family:verdana, arial, sans-serif; color:#29007B;}


.NewsSummaryContent {
font-size:.8em; margin-top:0; margin-bottom:0em;
 }

/* to add specific style to the below divs, uncomment them. */

/* 

#NewsPostDetailHorizRule {}
#NewsPostDetailPrintLink {}
#NewsPostDetailReturnLink {}
*/
/* End of 'D News' */

