/* Start of CMSMS style sheet 'wcs template: menu' */
/*****************
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: Verdana, Geneva, 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;
}

/*
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;
   color: #333;
   margin:1em; /* gives some air for the pagewrapper */
}

/* 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;
}


/*** header ***
we will hide text and replace it with a image
we need to assign a height for it
*/

div#header {
   height: 80px; /* adjust according your image size */
   background: #385C72;           
}

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: 80px;             /* 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#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;
}

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; 
 } 

 ndiv#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;
   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 becouse 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;
   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 */
/* End of 'wcs template: menu' */

/* Start of CMSMS style sheet 'wcs_template : wcs_template' */
/* STANDARÂ TAGS' REDEFINITIONS */
body { 
font-family: Arial, Helvetica, sans-serif;	
color: Black; 
background-color: #868686; 
font-size: 12px; 
background-image: url(uploads/wcs_template/bg_main.gif); 
background-repeat: repeat-x; 
margin: 0; 
text-align: center; 
padding: 0; 
}

a { 
color: #1982f8; 
text-decoration: underline; 
font-weight: normal;
}
p {
margin: 0 0 10px 0;
padding: 0; 
}
a:hover {
text-decoration: underline; 
color: #1982f8; 
}
form{ 
margin: 0;
}
/* STRUCTURE */
#HEADER { 
width: 860px; 
height: 126px; 
margin-left: auto; 
margin-right: auto; 
padding: 0; 
font-size: 20px; 
}
	#HEADER h1 { 
	margin: 38px 0 0 0; 
	padding: 0 9px 0 9px; 
	float: left; 
	font-size: 19pt; 
	height: 35px; 
	line-height: 45px;  
	}
	#HEADER h1 a { 
	text-decoration: none; 
	color: #000000; 
	font-family: Tahoma, Arial, Helvetica, sans-serif; 
	font-size: 18pt; 
	margin: 0; 
	padding: 0; 
	}
	#HEADER a:hover { 
	text-decoration: none;
	}
	#HEADER p { 
	float: right; 
	font-size: 10pt; 
	color: #FFFFFF; 
	font-family: "Times New Roman", Times, serif; 
	font-style: italic; 
	margin: 59px 0 0 0; 
	padding: 0; 
	line-height: 9pt; 
	}
	
#H_NAVIGATION { 
width: 860px; 
height:35px; 
text-align: left; 
margin-left: auto; 
margin-right: auto; 
background-color: #2E6BA9;  
background-image: url(uploads/wcs_template/bg_topnav2.gif);  
}

	#TABS { 
	margin-right:0px; 
	height:25px; 
	background-image: url(uploads/wcs_template/bg_topnav.gif);
	background-repeat: repeat-x;
	text-align: center;
	border-right: 1px solid #666666;
	line-height: 31px;
	}




	#TABS ul {
	margin:0;
	padding-left: 0;
	display: inline;
	list-style: none;
    } 
	#TABS li {
	float:left;
	margin: 0;
	padding: 0px 8px 0px 8px;
	list-style: none;
	display: inline;
	background-image: url(uploads/wcs_template/bg_navbutton.gif);
	background-repeat: no-repeat;
	background-position: right;
    }
	#TABS .menu-last {
            	background-image: none;

	}
	#TABS a { 
	color: Black;
	text-decoration: none;
	font-family: Tahoma, Arial, Sans-Serif;
	font-size: 12px;
 
    }
	#TABS a:hover {
	text-decoration: none;
	border-bottom: 2px solid #1982f8;
 
	}
	#BUTTONS {
	float: right;
	width: 97px;
	height:8px;
	text-align: center;
	display: block;
 
	}

#BANNER {
width: 860px;
text-align: right;
margin-left: auto;
margin-right: auto;
height: 122px;
background-color: #FFFFFF;

background-repeat: no-repeat;
}
	#BANNER ul {
	margin:0;
	padding-left: 0;
	float: right;
	width: 302px;
    }
	#BANNER ul li {
	display: block;
	list-style: none;
	}
	#BANNER ul li.PhraseOne {
	padding-right: 15px;
	color: #FFFFFF;
	font-family: "MS Sans Serif", Geneva, sans-serif;
	font-size: 12px;
	font-style: normal;
	margin-top: 18px; 
	font-weight: bold;
	}
	#BANNER ul li.PhraseTwo {
	padding-right: 15px;
	color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 17px;
	font-style: normal;
	font-weight: bold;
	}
	#BANNER li.Button {
	width: 130px;
	height: 29px;
	float: right;
	padding-right: 15px;
	}
	#BANNER a {
	color: #48EE49;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 17px;
	font-style: normal;
	font-weight: bold;
	text-decoration: underline;
	}
	#BANNER a:hover {
	color: #FFFFFF;
	}

#WRAPPER{
width: 860px;
text-align: left;
margin-left: auto;
margin-right: auto;
background-color: #FFFFFF;
}
#WRAPPER:after {
content: '.';
display: block;
height: 10;
clear: both;
visibility: hidden;
}
#WRAPPER {
display: inline-block;
}
/*\*/
#WRAPPER {
display: block;
}
	#V_NAVIGATION {
	float: left;
	width: 260px;
	text-align: left;
	margin-left: 0;
	background-color: #f4f4f4;
	left: 2px;
	position: relative;
	background-image: url(uploads/wcs_template/leftbar_footer.jpg);
	background-repeat: no-repeat;
	background-position: bottom;
	padding: 30px 0 20px 0;
    }
	#V_NAVIGATION div {
	margin-left: 12px;
	margin-right: 12px;
	padding-bottom: 10px;
	margin-bottom: 20px;
	background-image: url(uploads/wcs_template/bg_hdot.gif);
	background-repeat: repeat-x;


	background-position: bottom;
	}
	#V_NAVIGATION div.Last {
	background-image: none;
	}
	#V_NAVIGATION h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 16px;
	color: #4E4E4E;
	letter-spacing: 1px;
	margin: 0 10 9px 12px;
	}
	#V_NAVIGATION p {
	font-family: "MS Sans Serif", Geneva, sans-serif;
	font-size: 11px;
	line-height: 18px;
	text-align: left;
	}
	#V_NAVIGATION p .Date 	{
	font-weight: bold;
	color: #C10000;
	font-size: 9px;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	}
	#V_NAVIGATION a {
	font-size:11px;
	color: #2665A5;
	text-decoration: none;
	}
	#V_NAVIGATION a:hover {
	text-decoration : underline;
	}
	#V_NAVIGATION input {
	font-size:12px;
	padding: 0;
	margin: 0;
	}
	#V_NAVIGATION input.Search {
	width:153px;
	height: 18px;
	border: 1px solid #666666;
	}
	#V_NAVIGATION .Browse {
	width:125px; 
	height: 18px;
	border: 1px solid #666666;
	margin-right: 7px;
	}
	#V_NAVIGATION ul {
	padding-left: 1px;
	display: block;
	border: none;
	margin: 0 0 15px 0;
	} 
	#V_NAVIGATION ul li  {
	list-style: none; 
	margin-left: 0; 
	padding-left: 0; 
	font-size: 11px; 
	font-family: Tahoma, Arial, Helvetica, sans-serif; 
	font-weight: bold; 
	line-height: 18px; 
	}
	#V_NAVIGATION ul a {
	color: #1A5FA8; 
	text-decoration: none; 
	font-size:11px; 
	padding-right: 0;  
	margin-right: 0; 
	font-family: "MS Sans Serif", Geneva, sans-serif; 
	}	
	#V_NAVIGATION ul a:hover {
	text-decoration: underline;
	}	
/*
	#V_NAVIGATION div.subtabs ul {
	list-style: none; 
	width: 135px; 
	margin: 0;
	padding: 0;
	}
	#V_NAVIGATION div.subtabs ul a {
	width: 135px;
	margin: 3px; 
	text-align: left; 
	font-size: 0.8em;
	font-family: Arial; 
	font-weight: bold;
	text-decoration: none; 
	word-wrap: normal; 
	color: #505050; 
	display: block; 
	padding: 3px 3px 3px 5px; 
	background: #f4f4f4; 
	border-top: 1px solid #d8d8d8; 
	border-right: 1px solid #d8d8d8; 
	border-bottom: 1px solid #d8d8d8; 
	border-left: 4px solid #cccccc; 
	}
	#V_NAVIGATION div.subtabs ul a:hover {
	text-decoration:none; 
	background:#eaeaea url(/uploads/wcs_template/img/menubg2.gif) bottom left repeat-x; 
	color:#505050; 
	border-top:1px solid #b0b0b0; 
	border-right:1px solid #b0b0b0; 
	border-bottom:1px solid #b0b0b0; 
	border-left:4px solid #A31E00; 
	}
*/
	#V_NAVIGATION div.subtabs ul{
	list-style: none;
	width: 135px; 
	margin: 0;
	padding: 0;
	}
	#V_NAVIGATION div.subtabs ul ul{
	list-style: none;
	width: 130px;
	margin: 0;
	padding: 0 0 0 5px;
	}
	#V_NAVIGATION div.subtabs ul ul ul{
	list-style: none;
	width: 125px;
	margin: 0;
	padding: 0 0 0 5px;
	}
	#V_NAVIGATION div.subtabs ul a{
	width:100%;
	margin: 3px; 
	text-align:left; 
	font-size:0.8em; 
	font-family:Arial; 
	font-weight:bold; 
	text-decoration:none; 
	word-wrap:normal; color:#505050; 
	display:block; 
	padding:3px 3px 3px 5px; 
	background:#f4f4f4; 
	border-top:1px solid #d8d8d8; 
	border-right:1px solid #d8d8d8; 
	border-bottom:1px solid #d8d8d8; 
	border-left:4px solid #cccccc; 
	}
	#V_NAVIGATION div.subtabs ul a:hover {
	text-decoration:none; 
	background:#eaeaea url(/uploads/wcs_template/img/menubg2.gif) bottom left repeat-x; 
	color:#505050; 
	border-top:1px solid #b0b0b0; 
	border-right:1px solid #b0b0b0; 
	border-bottom:1px solid #b0b0b0; 
	border-left:4px solid #A31E00; 
	}

	#CONTENT {
	min-height:310px;
	height:auto !important;
	height:310px;
	margin: 0 40px 0 220px; 
	display: block;  
	position: relative;
	padding-top: 15px;  
	padding-bottom: 20px;  
	}
	#CONTENT h1 {
	color: #5F5F5F;  
	font-size: 18px; 
	font-weight: normal; 
	margin: 0 0 5px 0;
	padding: 5px 0 0 0; 
	}
	#CONTENT p {
	text-align: justify; 
	line-height: 18px; 
	margin-bottom: 18px; 
	}
	#CONTENT ul.Path {
	margin-left: 0;
	padding-left: 0;
	display: block;
	border: none;
	margin: 0 0 15px 0;
	} 
	#CONTENT ul.Path li {
	margin-left: 0; 
	padding-left: 0px; 
	border: none; 
	list-style: none; 
	display: inline; 
	color: #B90000; 
	font-size: 11px;  
	font-family: Tahoma, Arial, Helvetica, sans-serif;  
	font-weight: bold;  
	line-height: 18px;
	}
	#CONTENT ul.Path a {
	color: #000000;
	text-decoration: none;
	font-size:11px;
    padding-right: 8px;
	margin-right: 5px; 
	background-image: url(uploads/wcs_template/arrow_path.gif);
	background-position: right;
	background-repeat: no-repeat;
	}	
	#CONTENT ul.Path a:hover {
	text-decoration: underline;
	}	

#FOOTER { 
width: 860px; 
text-align: left; 
margin-left: auto; 
margin-right: auto;
background-image: url(uploads/wcs_template/bg_footer.gif);  
background-repeat: no-repeat;  
padding-top: 9px; 
}
	#LINKS { 
	margin-right:10px;
	height:88px;
	text-align: left; 
	color: #FFFFFF;
	padding-left: 5px; 
	}
	#LINKS ul {
	margin:0; 
	padding-left: 0;
	display: inline;
	list-style: none; 
	} 
	#LINKS li{
	float:left;
	margin: 0;
	padding: 0px 11px 0px 11px;
	list-style: none; 
	display: inline;
	border-right: 1px solid #FFFFFF;
	}
	#LINKS li.Last {
	border-right: none;
	}
	#LINKS a {
	font-size:11px;
	color: #FFFFFF;
	text-decoration: none;
	}
	#LINKS a:hover {
	text-decoration: underline;
	}
	#COPYRIGHT {
	float: right;
	width: 300px;
	height:38px; 
	text-align: right;
	display: block; 
	color: #FFFFFF;
    font-size: 11px; 
	padding-right: 20px;
	padding-top: 3px; 
	}
	#COPYRIGHT a {
	color: #FFFFFF;
	text-decoration: none;
	font-weight: normal;
	}
	#COPYRIGHT a:hover {
	text-decoration: underline;
	}
/* End of 'wcs_template : wcs_template' */

