/* Start of CMSMS style sheet 'subpage : 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(uploads/subpage/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(uploads/subpage/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(uploads/subpage/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 'subpage : Accessibility and cross-browser tools' */

/* Start of CMSMS style sheet 'subpage : Calendar CSS example' */
/* CSS Document */

/*
Example stylesheet for Calendar module

For using this "big"-class insert something like this in your page
or template;

{cms_module module='Calendar' table_id='big'}

*/



/* make all links red */
.calendar tr td a
{
	color: #0099CC;
	text-decoration: none;
}

/* highlight "today" for the small calendar */
.calendar-today
{
  font-weight: bold;
}

/* display the "upcominglist" as one line per entry (assuming table_id='cal-upcominglist') */
#cal-upcominglist .calendar-date-title
,#cal-upcominglist .calendar-summary-title
{
  display: none;
}

#cal-upcominglist h2
,#cal-upcominglist .calendar-date
,#cal-upcominglist .calendar-summary
{
  display: inline;
  margin-right: 5px;
}

/* tidy up text sizes for lists */
#cal-list h1, #cal-upcominglist h1
{
 	color: #0099CC;
	text-decoration: none;
  font-size: 100%;
}
#cal-list h2, cal-upcominglist h2
{
  font-size: 90%;
}

/** large calendar rules (assuming table_id='big') **/
/* border on for #big */
#big{
  margin: 0px;
  border-collapse:    collapse;
  border: 1px solid #666;
}

/* nice squares for the #big table E5E5E5 */
#big th
{
  border: 1px solid #F7F7F7;
  padding: 2px;
  width: 72px;
  background-color: #F7F7F7;
}


#big td {
	border: 3px solid #fff;
	vertical-align: top;
	padding: 3px;
	height: 72px;
	width: 72px;
	background-color: #FBFBFB;
}

/* format summaries nicely in #big */
#big ul
{
  margin: 0px;
  padding: 0px;
  padding-left: 5px;
}

#big li
{
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}

/* background colours for #big */
#big td
{
  background-color: #FBFBFB;
}

#big .calendar-day
{
  background-color: #EDEDED;
}

#big .calendar-today
{
  font-weight: normal;
  background-color: #ECFCFF;
}

.calendar-event .calendar-date-title,
.calendar-event .calendar-summary-title,
.calendar-event .calendar-details-title
{
  display: none;
}
/* End of 'subpage : Calendar CSS example' */

/* Start of CMSMS style sheet 'subpage : main' */
body {
	font-family:Arial, Helvetica, sans-serif;
	font-size:0.7em;
	line-height:1.3em;
	left:0;
	margin:0;
	padding:0;
	text-align:center;
	top:0;
	background-color: #800606;
	
}

img {
	border:0;
}

a {
	color:#990000;
	text-decoration:none;
}

a:hover {
	text-decoration:underline;
}

div, form, h1, h2, h3, p, ul {
	margin:0;
	padding:0;
}

p {
	color:#5b5b5b;
	margin-bottom:15px;
}


/* -- topbar -- */

#topbar {
	/*background:#2166a1; */
	float:left;
	text-align:center;
	width:100%;
}

#topbarcontainer {
	margin:0 auto;
	width:770px;
}

#topbarcontainer ul {
	list-style-type:none;
}

#topbarcontainer ul li {
	display:inline;
	float:left;
	padding:0px 0px 1px 0px;
}

#topbarcontainer ul li a {
	border-right:1px solid #1d2a33;
	color:#fff;
	display:block;
	padding:6px 10px 3px 10px;
	text-decoration:none;
}

#topbarcontainer ul li a.lastlink {
	border-right:0;
	
}

#topbarcontainer ul li a:hover {
	text-decoration:underline;
}

#toplogo {
	padding:6px 10px 5px 490px; 
	/* text-align:left; */
}


/*-- header -- */

#header {
	clear:both;
	float:left;
	text-align:center;
	width:100%;


/*	background-image: url(uploads/subpage/ajtop.jpg);
	background-repeat: repeat-x; */
}

#headercontainer {
background:#fff;
margin:0 auto;
padding:0 12px;	
width:770px;
}

#logo {
	padding:10px 10px 15px 10px; 
	text-align:left;
}


/* -- top nav -- */

#topnav {
	clear:both;
}

#topnav ul {
	list-style-type:none;
}

#topnav ul li {
	display:inline;
	float:left;
	padding:0;
}

#topnav ul li a {
	border-right:1px solid #2c324c;
	color:#fff;
	display:block;
	font-weight:bold;
	padding:6px 10px;
	text-decoration:none;
}
/* comment this out for the subpages
#topnav ul li a:hover {
	background:#2b2b2b;
}*/

#topnav ul li a.lastlink {
	border-right:0;
}


/* -- main content -- */

#mainwrapper {
	margin:0 auto;
	text-align:left;
	width:794px;
background-color: #ffffff;
/*padding-left: 12px;
padding-right: 12px; 
padding-bottom: 12px; */

}

#maincontent {
	/*background:url(uploads/subpage/bg_home.gif) top left repeat-y;*/
	border-bottom:15px solid #fff;
	float:left;
	width:770px;
background:#fff;
padding:0 12px;
}


/* -- footer -- */

#footer {
background:#fff;
border-bottom:15px solid #800606;	
border-top:15px solid #800606;
clear:left;
float:left;
width:794px;
	margin-bottom:10px;
/*	padding:10px 0;
padding:5px 10px 10px 0;*/
}

#footer ul {
/*background:#F0F1F2;*/
border:10px solid #FFFFFF;
float:left;
list-style-type:none;
/* padding:5px;
width:750px; */
}

#footer ul li {
border-right:1px solid #999;
display:inline;
float:right;
font-size:1em;
margin-top:10px;
padding:0 8px;
}

#footer ul li.lastlink {
border:0;
}

#footer ul li.credits {
border:0;
margin-left:10px;
margin-right:10px;
margin-top:0;
padding:6px 0 4px 0;
}

#footer ul li a {
	padding:0 2px;
}

#footer p {
margin-left:12px;
}

/* -- styles -- */

.clear {
	clear:both;
}

.subheader {
	border-bottom:1px solid #ededed;
	border-top:1px solid #ededed;
	margin-top:15px;
	padding-bottom:4px;
}

.subheader h3 {
	background:#f6f6f6;
	color:#5b5b5b;
	font-size:1.2em;
	margin-top:4px;
	padding:5px;
}

.subheader p {
	background:#f6f6f6;
	border-bottom:4px solid #fff;
	margin-bottom:0;
	padding:0 5px 5px 5px;
}

.topmargin {
	margin-top:10px !important;  /* changed from 20px */
}

img.floatright {
	border:1px solid #D90000;
	float:right;
	margin-left:15px;
	margin-top:15px;
	padding:4px;
}

img.floatleft {
	border:1px solid #D90000;
	float:left;
	margin-right:15px;
	padding:4px;
}

/* -- footer icons -- */

.icons {
	text-align:right;
}

.icons ul li {
	border-left:1px solid #ededed;
	margin-right:10px;
	display:inline;
}

.icons ul li.printpage {
	border:0;
}

.icons ul li.printpage a {
	background:url(uploads/subpage/icon_printer.gif) right no-repeat;
	padding:3px 25px 3px 10px;
}

.icons ul li.textsize a {
	background:url(uploads/subpage/icon_textsize.gif) right no-repeat;
	padding:3px 25px 3px 10px;
}

.icons ul li.pdf {
	margin-right:0;
}

.icons ul li.pdf a {
	background:url(uploads/subpage/icon_pdf.gif) right no-repeat;
	padding:3px 25px 3px 10px;
}
.hand
	{
		cursor: pointer;
	}
h3 {
	font-size: 1.5em;
	color: #FF0000;
	font-weight: normal;
	letter-spacing: 0px;
}

blockquote {
	margin: 15px;
	padding: 0 0 0 30px;
	font: bold 1.1em/1.3em 'Trebuchet MS', Sans-serif;
	background: #FCFCF9;
	border: 1px solid #EFEFEF;
	color: #FF0000;
}
/* End of 'subpage : main' */

/* Start of CMSMS style sheet 'subpage : subpage' */
#maincontent {
	/* background:url(uploads/subpage/bg_subpage.gif) top left repeat-y; */
border-top:10px solid #fff;
}


.left {
display:inline;	
float:left;
	margin-right:10px;
	width:247px;
}

.subheader {
	margin-bottom:5px;
	margin-top:0;
}

.subheader h2 {
	background:#f6f6f6;
	color:#5b5b5b;
color:#333;
	font-size:1.2em;
	margin-top:4px;
	padding:5px;
}

.subheader p {
	background:#f6f6f6;
	border-bottom:1px solid #f6f6f6;
	margin-bottom:0;
	padding:0 5px 5px 5px;
}

.left ul {
	list-style-type:none;
}

.left ul li {
	border-bottom:1px dotted #e4e4e4;
	margin-bottom:1px;
}

.left ul li a {
	background:url(uploads/subpage/bullet.gif) 5px center no-repeat;
	border-bottom:1px solid #fff;
	color:#5b5b5b;
color:#800606;	
display:block;
font-size:1.1em;
	padding-left:12px;
padding-bottom:3px;
padding-top:3px;	
text-decoration:none;
}

.left ul li a:hover, .left ul li.selected a  {
	background-color:#f5f5f5;
	color:#800606;
	text-decoration:none;
}

.searchform {
	margin-bottom:15px; border:solid 1px #f6f6f6; padding:5px 4px;
/*font-size:0.9em;*/ 
}
.searchform  h2 {
            color:#333; font-size:1.2em; padding:5px; background:#f6f6f6; margin-bottom:5px;
}

.searchform input {
font-size:0.96em;
}

.searchform input#cntnt01searchinput {
width:120px;
}

.searchform form {
	overflow:auto;
	padding:0;
}

.searchform div {
	float:left;
	margin-right:5px;
	margin-top:2px;
}

.searchform div.submitdiv {
	margin-right:0;
}

.searchform input.search {
	width:194px;
font-size:0.9em;
}

/* ie6 select jump menu fix 
.select-free
{
position:absolute;
z-index:10;/*any value*/
overflow:hidden;/*must have*/
width:33em;/*must have for any value*/;
}
.select-free iframe
{
display:none;/*sorry for IE5*/
display/**/:block;/*sorry for IE5*/
position:absolute;/*must have*/
top:0;/*must have*/
left:0;/*must have*/
z-index:-1;/*must have*/
filter:mask();/*must have*/
width:100%;/*must have for any big value*/
height:100%;/*must have for any big value*/
}

/* Start of dropdown forms */

.left .precinctform select {
	font-size:0.9em;
        width:240px;
		overflow:auto;
		z-index:auto
		
}


.left .businessform select {
	font-size:0.9em;
width:240px;
z-index:auto;
}


.left .advert {
	border:1px solid #ededed;
	padding:4px;
}

.right {
display:inline;
	float:left;
	margin-left:10px;
	margin-right:10px;
	width:493px;
}

.right h1 {
	background:url('uploads/images/standard_line.gif') bottom left no-repeat;
	font-size:1.8em;
	font-weight:normal;
	line-height:2em;
	margin-bottom:10px;
	margin-top:10px;
}

.right .intropara {
	font-weight:bold;
}

.right h2 {
	font-size:1.2em;
	margin-bottom:15px;
}


* -- Team items-- */

.teamitem {
	border-bottom:1px solid #ededed;
	clear:both;
	float:left;
	margin-top:10px;
	width:490px;
}

.teamitem .teamimage {
	float:left;
	margin-right:10px;
	width:160px;
}

.teamitem .teamtext {
	float:left;
	width:350px;
}

.teamitem .teamtext p {
	color:#5b5b5b;
	line-height:1.2em;
	margin-bottom:10px;
}


/*   MAP Styles */
#gmaps_container{
	width: 470px;
	height: 510px;
	margin: 10px auto 0 auto; 
	color: #000;
	text-align: left !important;
	padding: 4px;
	border: #ccc 1px solid;
overflow:visible;
}
/* Comment out old 
#gmaps_popup{
	width: 270px;
	//height: 180px;
	margin: 20px auto 0 auto; 
	text-align: middle !important;
}
*/

#gmaps_popup{
	width: 270px;
	height: 210px;
	margin: 20px 11px 25px 11px; 
	text-align: middle !important;
}



#gmaps_container a{
	color: #0000ff;	
}

#gmaps_info{
	width: 490px;
	margin: 10px auto;
	border: #ccc 1px solid;
	padding: 5px;
	text-align: center;
}


/* Main Style for all lists /*

.lists {
	float:left;
	margin-right:10px;
	width:500px;
}

.lists ul {
	list-style-type:none;
}

.lists ul li {
	border-bottom:1px dotted #e4e4e4;
	margin-bottom:1px;
}

.lists ul li a {
	background:url(uploads/subpage/bullet.gif) left no-repeat;
	border-bottom:1px solid #fff;
	color:#5b5b5b;
	display:block;
	padding-left:10px;
	text-decoration:none;
}

.lists ul li a:hover, .lists ul li.selected a  {
	background-color:#f5f5f5;
	color:#1c84a7;
	text-decoration:none;
}

#line {
         border-bottom:1px solid #f6f6f6;
        }

	
.line {
         border-bottom:1px solid #f6f6f6;
        }

h3 {
	font-size: 1.5em;
	color: #FF0000;
	font-weight: normal;
	letter-spacing: 0px;
}

blockquote {
	margin: 15px;
	padding: 0 0 0 30px;
	font: bold 1.3em/1.5em 'Trebuchet MS', Sans-serif;
	background: #FCFCF9;
	border: 1px solid #EFEFEF;
	color: #FF0000;
}

/*Newsletter */
.newsletterForm{
	border:solid 1px #f6f6f6; padding:5px; font-size:11px;
}
.newsletterForm h2 {
            color:#333; font-size:1.2em; padding:5px; background:#f6f6f6; margin-bottom:5px;
}
.left .newsletterForm ul li{
	border-bottom:none; margin-bottom:3px; background:none;
}
.newsletterForm ul li label{
	float:left; width:37px;
}
.newsletterForm input{
	font-size:11px; width:185px;
}
.newsletterForm ul li.butRow{
           padding-left:37px;
}
.newsletterForm ul li.butRow input{
          width:70px;
}
/* End of 'subpage : subpage' */

/* Start of CMSMS style sheet 'subpage : subpage_retco' */
#topbar {
	background-color: #990000;
}

#topbarcontainer ul li a {
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #993300;
}

.left .advert,
img.floatright {
	border:1px solid #2166a1;
}

.right h1 {
	background:url(uploads/subpage/enviroment_line.gif) bottom left no-repeat;
}

.right .intropara {
	color:#2166a1;
}

.right h2 {
	color:#015496;
}

.line {
border-top: 1px solid #ccc;
}

.calendar-day {
  font-weight: bold;
  font-size: 1.3em;
  color: #2166a1;
  width: 42px;
  text-align:center;
  padding-top: 18px;
}

.calendar {
  float: left;
  margin-right: 6px;
  width: 42px;
  height: 42px;
}

.calendar-icon-10 {
  background: url('uploads/images/calendar/10.gif');
}

.calendar-icon-9 {
  background: url('uploads/images/calendar/09.gif');
}

.calendar-icon-8 {
  background: url('uploads/images/calendar/08.gif');
}

.calendar-icon-7 {
  background: url('uploads/images/calendar/07.gif');
}

.calendar-icon-6 {
  background: url('uploads/images/calendar/06.gif');
}

.calendar-icon-5 {
  background: url('uploads/images/calendar/05.gif');
}

.calendar-icon-4 {
  background: url('uploads/images/calendar/04.gif');
}

.calendar-icon-3 {
  background: url('uploads/images/calendar/03.gif');
}

.calendar-icon-2 {
  background: url('uploads/images/calendar/02.gif');
}

.calendar-icon-1 {
  background: url('uploads/images/calendar/01.gif');
}

/* End of 'subpage : subpage_retco' */

