/* Start of CMSMS style sheet 'topmenuTemplateCSS' */
html {
margin:0;
padding:0;
width:100%;
	text-align: center;
}

/*
Set initial font styles
*/
body {
width:100%;
font: 100% Verdana, Arial, Helvetica, sans-serif; font-size: 12px;
	background: #c7d1da url(uploads/images/bg_content1.jpg) repeat-y top center;
	margin: 0px; 
	padding: 0px;
	color: #000;
 height:100%; 
	text-align: center;
}

img {
   border: 0;
}

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



/* center wrapper, min max width */
div#pagewrapper {
   border: 1px solid black;
   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;
}

div#search {
   float: right;
   width: 27em;     /* enough width for the search input box */
   text-align: right;
   padding: 0px 0px;
   margin: 0px 0px;
}

div.breadcrumbs {
   padding: 0px 0px; /* 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: 0px 0px;              /* 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: 29%; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
   margin-right: 2%; /* and some air on the right */
}


div#sidebar {
   float: left;  /* set sidebar on the left side. Change to right to float it right instead. */
   width: 26%;    /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX ie doublemargin bug */
   margin-left: 0;
}

/* if sidebar doesnt include menu but content add class="hascontent" */
div#sidebar.hascontent {
   padding: 0 1%;
   width: 24%;  /* make width smaller if there's padding, or it will get too wide for the floated divs in IE */
}

div#footer {
   clear:both;       /* keep footer below content and menu */
   color: #fff;
}

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

/* relational links under content */
div.left49 {
  float: left;
  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: 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 #e7ab0b; 
   border-left: 1.1em solid #e7ab0b; 
   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 {
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
h6 {
   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;
}
pre {
   font-family: monospace;
   font-size: 1.0em;
}
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%;   /* smaller font size, as these are usually not so important data */
}

/* END TEXT */

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

div#dl dt {
   font-weight: bold;
   margin: 0 0 0.25em 3em;
}
div#dl dd {
   margin: 0 0 0 3em;
}
/* END LISTS */



=======================

=======================


#header {
	background: #DDDDDD; 
	height: 135px;
        margin: 0px;
	background: #1c7cb8 url(uploads/images/bgHeaderRepeat.jpg) repeat-x left;
	padding: 0px; 
text-align: left;
}

#footer {
	padding: 0 10px;
	background:#1a73b1;
	height:50px;
margin:0px;
vertical-align:bottom;
}
#footer p {
	margin: 0px;
	padding: 10px 0;
text-align:center;
}



.nav2 {clear: both; margin: 0px; padding:7px 0px 0px 0px;background:#074074 url(uploads/images/bg_menu.jpg) repeat-x left;height: 35px; text-align:center;}
.nav2 ul {width: 890px; margin: 0px; padding: 0px; text-align:center;}	
.nav2 li {display: inline; list-style: none; margin: 0px; padding: 0px;}
.nav2 li a {display: block; float: left; margin: 0px 0px 0px 0px; padding: 4px; /*border-right: solid 1px rgb(54,83,151)*/; color: rgb(255,255,255); text-decoration: none; }
.nav2 a:hover, .nav2 a.selected {color: rgb(50,50,50); text-decoration: none;}
.buffer {clear: both; margin: 0px; padding: 5px 0px 5px 50px; background-color: rgb(255,255,255);}


.leftTD {
  width: 185px;;
  background: #f5f5f5; 
  padding: 0px;
  vertical-align:top;
border-right:1px solid #e7e7e5;
text-align:left;
}
.centerTD{
width:80%;
  background: #FFFFFF;
  vertical-align:top;
  padding: 0px 15px 10px 15px;
}








.preload2 {}
.menu2 {padding:0 7 0 32px; margin:10px; list-style:none; height:40px;}
.menu2 li.top {display:block; float:left; position:relative;}

.menu2 li a.top_link {display:block; float:left; height:30px; line-height:26px; text-decoration:none;  padding:0 12px 0 12px; cursor:pointer;  text-align:left;}
.menu2 li a.top_link span {float:left; display:block; padding:0 24px 0 12px; height:30px;}
.menu2 li a.top_link span.down {float:left; display:block; padding:0 24px 0 12px; height:30px; background:url(uploads/images/down.gif) no-repeat right top;}
.menu2 li a.top_link:hover { color:#fff;}
.menu2 li a.top_link:hover span {}
.menu2 li a.top_link:hover span.down {background:url(uploads/images/down.gif) /**/ no-repeat right top;}

.menu2 li:hover > a.top_link {}
.menu2 li:hover > a.top_link span {}
.menu2 li:hover > a.top_link span.down {}

.menu2 li.activeparent {display:block; float:left; position:relative; }
.menu2 li.activecurrent {display:block; float:left; position:relative; }
.menu2 li a.top_link_active {display:block; float:left; height:30px; line-height:26px; text-decoration:none;  padding:0 12px 0 12px; cursor:pointer;  text-align:left; font-weight:bold;}
.menu2 li a.top_link_active span {float:left; display:block; padding:0 24px 0 12px; height:30px;}
.menu2 li a.top_link_active span.down {float:left; display:block; padding:0 24px 0 12px; height:30px; background:url(uploads/images/down.gif) no-repeat right top;}
.menu2 li a.top_link_active:hover span.down {background:url(uploads/images/down.gif) /**/ no-repeat right top;}

.menu2 li a.top_link_current {display:block; float:left; height:30px; line-height:26px; text-decoration:none;  padding:0 12px 0 12px; cursor:pointer;  text-align:left; font-weight:bold;}
.menu2 li a.top_link_current span {float:left; display:block; padding:0 24px 0 12px; height:30px;}
.menu2 li a.top_link_current span.down {float:left; display:block; padding:0 24px 0 12px; height:30px; background:url(uploads/images/down.gif) no-repeat right top;}
.menu2 li a.top_link_current:hover span.down {background:url(uploads/images/down.gif) /**/ no-repeat right top;}

.sectionheader {display:block; float:left; height:30px; line-height:26px; text-decoration:none;  padding:0 12px 0 12px;  text-align:left; color:#fff; border-right: 1px solid rgb(54,83,151);}
.sectionheader :hover {display:block; float:left; height:30px; line-height:26px; text-decoration:none;  padding:0 12px 0 12px;  text-align:left; color:#fff; border-right: 1px solid rgb(54,83,151);font-weight:bold;}




.menu2 table {border-collapse:collapse; width:0; height:0; position:absolute; top:0; left:0;}

.menu2 a:hover {visibility:visible; color:#fff;font-weight:bold;}
.menu2 li:hover {position:relative; z-index:200; color:#fff;}

.menu2 ul, 
.menu2 :hover ul ul, 
.menu2 :hover ul :hover ul ul,
.menu2 :hover ul :hover ul :hover ul ul,
.menu2 :hover ul :hover ul :hover ul :hover ul ul {position:absolute; left:-9999px; top:-9999px; width:0; height:0; margin:0; padding:0; list-style:none; color:#fff;}

.menu2 :hover ul{left:0px; top:30px;  padding:3px 0px; white-space:nowrap; width:auto; height:auto; background: #044683; color:#fff;}
.menu2 :hover ul li {display:block; color:#fff; height:34px; position:relative; float:left; width:auto;}
.menu2 :hover ul li a {display:block; font-size:11px; height:34px; width:215px; line-height:30px; text-indent:5px; color:#fff; text-decoration:none; }
.menu2 :hover ul li a.fly {background:#044683 url(uploads/images/arrow.gif) 80px 7px no-repeat;}
.menu2 :hover ul li a:hover {font-weight:bold; }
.menu2 :hover ul li a.fly:hover {background:#4ab url(uploads/images/arrow_over.gif) 80px 7px no-repeat; color:#fff;}
.menu2 :hover ul li:hover > a.fly {background:#4ab url(uploads/images/arrow_over.gif) 80px 7px no-repeat; } 

.menu2 :hover ul :hover ul,
.menu2 :hover ul :hover ul :hover ul,
.menu2 :hover ul :hover ul :hover ul :hover ul,
.menu2 :hover ul :hover ul :hover ul :hover ul :hover ul
{left:190px; top:-4px; background: #044683; padding:3px 0; border:1px solid #4ab; white-space:nowrap; width:auto; z-index:200; height:auto;}


/* End of 'topmenuTemplateCSS' */

