/* Start of CMSMS style sheet 'Layout: Left sidebar + 1 column' */
/*****************
For Acrow
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;
}

.borderimg { border: 1px solid #000000; }

/*
default link styles
*/
/* set all links to have underline and bluish color */
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: #18507C; 
}

a:visited {
text-decoration: underline;
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:1em;    /* gives some air for the pagewrapper */
}

/* 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: #385C72;           */
/* additions by Ulysses for flash */
/* margin: 2em; */
background: url(/uploads/images/acrownewhead2.jpg) no-repeat;
background-position: 76% 50%;
/* 60% 10%; */
padding: 8px 0 10px 20px; 
height: 115px;
/* height: 75px; */
/* background: #ffffff; */
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.1em 0 0.2em 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#content {
margin: 1.5em auto 2em 0;   /* some air above and under menu and content */
}

div#main {
/*  margin-left: 22%; */
margin-left: 23%; /* 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: 8%; /* and some air on the right */
}

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;
}

div#sidebar {
float: left;        /* set sidebar on the left side. Change to right to float it right instead. */
width: 22%;     /* sidebar width, if you change this please also change #main margins */
display: inline;  /* FIX IE double margin bug */
margin-left: 0;
padding: 0 0 0 1px;
background-color: #EFEBEF;
}

div#footer {
clear: both;       /* keep footer below content and menu */
color: #000000;
/*   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 */
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;
padding: 1em;
border-bottom: 1px dotted black;
margin: 1em;
}

.subheader {
text-align: left;
margin: 1em;
background-color: #39457B;
font: 14px bold;
}

.subheader caption {
width: 90%;
padding:10px;
font: bold 16px 'Lucida Grande', Verdana, Sans-serif;
}

/* relational links under content */
div.left49 {
width: 40%; /* 50% for both left and right might lead to rounding error on some browsers */
}

div.right49 {
float: right;
width: 49%;
text-align: right;
}

.leftbox {
/* width: 65%; */
width: 67%;
float: left;
text-align: left;
/* padding: 1em 0 1em 0.3em; */
padding: 1em 0 1em 0.5em;
}

.about_rightbox {
float: right;
width: 30%;
padding: 0 1em 0.2em 5em;
}

.about_leftbox {
float: left;
width: 40%;
padding: 0 0 0.2em 1.5em;
}

.rightbox {
float: right;
width: 22%;
padding: 0 0.1em 0.2em 5em;
}

/********************
CONTENT STYLING
*********************/
div#content {
color: #454542;
}

/* borders around header originally #e7ab0b, updated by Ulysses */

/* HEADINGS */
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; */
border-bottom: 1px solid #7EACFF;
border-left: 1.1em solid #7EACFF;
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; */
/* } */


blockquote {
width: 50em;
margin: 1.5em auto 2em auto;
text-align: full;

text-indent: 25px;
background: url(/uploads/images/quotes1.png);
background-position: 0 2px;
background-repeat: no-repeat;
}

blockquote p {
line-height: 1.8;
margin: 0;

display: inline;
padding-right: 24px;
background: url(/uploads/images/quotes2.png);
background-position: bottom right;
background-repeat: no-repeat;
}

strong, b {
/* explicit setting for these */
font-weight: bold;
}
em, i {
/* explicit setting for these */
font-style:italic;
}

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: 10px 0 0 10px !important;
margin: 10px 0 0 5px;
}

.img-shadow img {
display: block;
position: relative;
background-color: #fff;
border: 1px solid #a9a9a9;
margin: -6px 6px 6px -6px;
padding: 4px;
}

/* 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 */
/* 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;
}

ul#menu{
margin:0;
padding:0;
list-style-type:none;
width:auto;
position:relative;
display:block;
height:22px;
font-size:8px;
font-weight:bold;
background:transparent url("/uploads/images/OFF.gif") repeat-x top center;
font-family:Helvetica,Arial,Verdana,sans-serif;
border-bottom:2px solid #358BC5;
}

ul#menu li{
display:block;
margin:0;
padding:0;
}

ul#menu li a{
display:block;
float:left;
color:#6d7078;
text-decoration:none;
text-align:center;
font-weight:bold;
padding:3px 1.1em 3px 0.8em;
height:22px;
background:transparent url("/uploads/images/DIVIDER.gif") no-repeat top right;
}

ul#menu li a:hover{
color:#ffffff;
background-color:#7EACFF;
/*	background:transparent url("/uploads/images/HOVER.gif") no-repeat top center;	*/
}

/* END LISTS */




/* ---------- START HOVERBOX CODE ----------- */

.hoverbox
{
cursor: default;
list-style: none;
}

.hoverbox a
{
cursor: default;
}

.hoverbox a .preview
{
display: none;
}

.hoverbox a:hover .preview
{
display: block;
position: absolute;
top: -33px;
left: -45px;
z-index: 1;
}

.hoverbox img
{
background: #fff;
border-color: #aaa #ccc #ddd #bbb;
border-style: solid;
border-width: 1px;
color: inherit;
padding: 2px;
vertical-align: top;
width: 150px;
height: 103px;

/*	width: 100px;
height: 75px;
*/
}

.hoverbox li
{
background: #eee;
border-color: #ddd #bbb #aaa #ccc;
border-style: solid;
border-width: 1px;
color: inherit;
display: inline;
float: left;
margin: 3px;
padding: 8px;
/*	padding: 12px; */
position: relative;
}

.hoverbox .preview
{
border-color: #000;
width: 250px;
height: 188px;
}

/* ---------- END HOVERBOX CODE ----------- */

td
{ border-bottom: solid 1px #B0B0B0; border-top: solid 1px #B0B0B0; }

div.figure p {
display: table-cell;
width: 100%;
background-color: #B3D1AB;
color: #000000;
}
div.figure p + p {
display: table-caption;
caption-side: top;
text-align: center;
background-color: #B3D1AB;
color: #000000;
}



/* IMAGE CAPTIONS */

.imgteaser {
	margin: 0;
	overflow: hidden;
	float: left;
	position: relative;
}
.imgteaser a {
	text-decoration: none;
	float: left;
}
.imgteaser a:hover {
	cursor: pointer;
}

.imgteaser a img {
	float: left;
	margin: 0;
	border: none;
	padding: 10px;
	background: #fff;
	border: 1px solid #ddd;
}

.imgteaser a .more {
	position: absolute;
	right: 20px;
	bottom: 20px;
	font-size: 1.2em;
	color: #fff;
	background: #000;
	padding: 5px 10px;
	filter:alpha(opacity=65);
	opacity:.65;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=65)"; /*--IE 8 Transparency--*/
}
.imgteaser a:hover .desc{
	display: block;
	font-size: 1.2em;
	padding: 10px 0;
	background: #111;
	filter:alpha(opacity=75);
	opacity:.75;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)"; /*--IE 8 Transparency--*/
	color: #fff;
	position: absolute;
	bottom: 11px;
	left: 11px;
	padding: 10px;
	margin: 0;
	width: 566px;
	border-top: 1px solid #999;
}
.imgteaser a:hover .desc strong {
	display: block;
	margin-bottom: 5px;
	font-size:1.5em;
}

.imgteaser a .desc {	display: none; }
.imgteaser a:hover .more { visibility: hidden;}

/* END IMAGE CAPTIONS */
/* End of 'Layout: Left sidebar + 1 column' */

/* Start of CMSMS style sheet 'Module: News' */
div#news {
  margin: 2em 0 1em 1em;  /* margin for the entire div surrounding the news list */
  border: 1px solid #000; 
  background: #FFE9AF; 
}

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 */
    border-bottom: 1px solid #ccc; 
}

.NewsSummaryPostdate {
  font-size: 90%;
  font-weight: bold;
 }

.NewsSummaryLink {
    font-weight: bold;
    padding-top: 0.2em;
}

.NewsSummaryCategory {
  font-style: italic;
  margin: 5px 0;
 }

.NewsSummaryAuthor {
  font-style: italic;
  padding-bottom: 0.5em;
}

.NewsSummarySummary, .NewsSummaryContent {
  line-height: 140%;
 }

.NewsSummaryMorelink {
  padding-top: 0.5em;
}

#NewsPostDetailDate {
  font-size: 90%;
  margin-bottom: 5px;
  font-weight: bold;
  }

#NewsPostDetailSummary {
   line-height: 150%;
   }

#NewsPostDetailCategory {
  font-style: italic;
  border-top: 1px solid #ccc;
  margin-top: 0.5em;
  padding: 0.2em 0;
}

#NewsPostDetailContent {
  margin-bottom: 15px;
  line-height: 150%;
  }

#NewsPostDetailAuthor {

  padding-bottom: 1.5em;
  font-style: italic;
}


/* to add specific style to the below divs, uncomment them. */

/* 
#NewsPostDetailTitle {}
#NewsPostDetailHorizRule {}
#NewsPostDetailPrintLink {}
#NewsPostDetailReturnLink {}
*/
/* End of 'Module: News' */

/* Start of CMSMS style sheet 'Navigation: Simple - Vertical' */
/********************
Acrow MENU
*********************/
#menu_vert {
padding: 0em 0.2em 0em 0em;
/* margin-left: 1em; */
}

/* third level has some padding to have it stand out */
div#menu_vert ul ul ul {
   padding-bottom: 0.5em;
}

/* menu li block */
#menu_vert li {
   list-style: none;
   margin: 0;
   border-bottom: 1px solid #c0c0c0;
   display: block;
}

#menu_vert ul ul li {
   border: none;
}

/** 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 */
   padding: 0.8em 0.5em 0.8em 1.5em; /* some air for it */
   color: #18507C; /* this will be link color for all levels */
   background: url(images/cms/arrow-right.gif) no-repeat 0.5em center;
   min-height:1em; /* Fixes IE7 whitespace bug */
}

/* next level links, more padding and smaller font */
div#menu_vert ul ul a {
   font-size: 90%;
   padding: 0.5em 0.5em 0.5em 2.8em;
   background-position: 1.5em center;
}

/* third level links, more padding */
div#menu_vert ul ul ul a {
   padding: 0.3em 0.5em 0.3em 4.3em;
   background: url(images/cms/dash.gif) no-repeat 2.8em center;
}

/* hover state for all links */
div#menu_vert a:hover {
/*   background-color: #C3D4DF; */
background-color: #BDFFFF;
}
div#menu_vert a.activeparent:hover {
/*   background-color: #C3D4DF; */
background-color: #BDFFFF;
   color: #18507C;
}

/*
active parent, that is the first-level parent
of a child page that is the current page
*/

div#menu_vert li a.activeparent {
   background: url(images/cms/arrow-down.gif) no-repeat 0.4em center;
/*   background-color: #385C72; */
   background-color: #7EACFF;
/*   color: #fff; */
   color: #000;
}

div#menu_vert ul ul li a.activeparent {
   background-position: 1.5em center;
   background-color: transparent;
   color: #18507C;
}


/* background-color originally #385C72 (dark blue), changed by Ulysses */
/*
current pages in the default Menu Manager
template are unclickable. This is for current page on first level
*/
div#menu_vert ul h3 {
   background: url(images/cms/arrow-right-active.gif) no-repeat 0.4em center;
   background-color: #7EACFF;
/*   background-color: #114AC9; */
/*   background-color: #358BC5 or 7EACFF; */
   display: block;
   padding: 0.6em 0.5em 0.6em 1.5em;  /* some air for it */
/*   color: #fff; */                                /* this will be link color for all levels */
   color: #294B5F;                                 /* this will be link color for all levels */
   font-size: 1em;                           /* instead of the normal font size for <h3> */
   margin: 0;                                  /* as <h3> normally has some margin by default */
}

/*
next level current pages, more padding,
smaller font and no background color or bottom border
*/
div#menu_vert ul ul h3 {
   font-size: 90%;
   padding: 0.3em 0.5em 0.3em 2.8em;
   background-position: 1.4em center;
   background-color: transparent;
   border-bottom: none;
   color: #294B5F;
}

/* current page on third level, more padding */
div#menu_vert ul ul ul h3 {
   padding: 0.3em 0.5em 0.3em 4.3em;
   background: url(images/cms/arrow-right-active.gif) no-repeat 2.7em center;
}

/* section header */
div#menu_vert li.sectionheader {
   border-right: none;
   font-size: 130%;
   font-weight: bold;
   padding: 1.5em 0 0.8em 0;
   background-color: #fff;
   line-height: 1em;
   margin: 0;
   text-align:center;
}



/* separator */
div#menu_vert li.separator {
   height: 1px !important;
   margin-top: -1px;
   margin-bottom: 0;
   padding:2px 0 2px 0;
   background-color: #000;
   overflow:hidden !important;
   line-height:1px !important;
   font-size:1px; /* for ie */
}

div#menu_vert li.separator hr {
   display: none; /* this is for accessibility */
}
/* End of 'Navigation: Simple - Vertical' */

