@charset "utf-8";
body  {
	background: #ffffff;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	font-family: "Trebuchet MS", Verdana, Arial;
	background-image: url(images/background4.jpg);
	background-repeat: repeat-y;
	background-position: center;
}
.twoColFixLtHdr #container { 
	width: 960px;  /* was 780; original text: using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	/*border: 1px solid #000000;*/
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixLtHdr #header {
	background: #fafae7;
	width: 960px;
	height: 198px;
} 
.twoColFixLtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	display: none;
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 160px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #fafae7; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 15px 15px 15px;
	font-size: 12px;
	line-height: 1.2;
	font-variant: normal;
	color: #333333;
	
	
	
	
}
.twoColFixLtHdr #mainContent {
	margin: 0 0 0 200px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font-size: 14px;
	background: #ffffff;
	border-right-color: #CCCCCC;
	border-left-color: #CCCCCC;
	border-left-style: solid;
	border-right-style: solid;
	border-width: 1px;
} 
.twoColFixLtHdr #footer {
	padding: 8px 10px 8px 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#fafae7;
	font-size: 12px;
	text-align: center;
} 
.twoColFixLtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	line-height: 1.2px;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
	font-size: 12px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}


 /*from http://www.tanfa.co.uk/ and http://css.maxdesign.com.au/listamatic/vertical13.htm*/
img {border: 0;}
    
#navcontainer
{
	background: #fafae7;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding: 1em 0;
	font-family: "Trebuchet MS",Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	text-align: center;
	font-style: normal;
/*text-transform: lowercase;*/
}

ul#navlist
{
text-align: left;
list-style: none;
padding: 0;
margin: 0 auto;
width: 90%;
}

ul#navlist li
{
display: block;
margin: 0;
padding: 0;
}

ul#navlist p {
	font-size: 14px;
	padding-top: 0.5em;
	padding-left: 0.4em;
	margin: 0;
	padding-bottom: 0.5em;
}

ul#navlist li a
{
	display: block;
	width: 100%;
	padding: 0.3em 0 0.3em 0.3em;
	border-width: 1px;
	border-color: #ffe #aaab9c #ccc #fff;
	border-style: solid;
	color: #000;
	text-decoration: none;
	background: #fafae7;
}

ul#navlist2
{
	text-align: left;
	list-style: none;
	padding: 0;
	margin: 0 auto;
	width: 90%;
	padding-left: 10%;
}
ul#navlist2 li
{
	display: block;
	margin: 0;
}
ul#navlist2 li a
{
	display: block;
	width: 100%;
	padding: 0.3em 0 0.3em 0.3em;
	border-width: 1px;
	border-color: #ffe #aaab9c #ccc #fff;
	border-style: solid;
	color: #000;
	text-decoration: none;
	background: #ffffff;
}

#navcontainer>ul#navlist li a { width: auto; }

ul#navlist li#active a
{
	background: #8d4040;
	color: #FFFFFF;
}


ul#navlist li a:hover, ul#navlist li#active a:hover
{
	color: #FF0000;
	background: transparent;
	border-color: #aaab9c #fff #fff #ccc;
}
   /*caption for left floated image;http://www.cs.tut.fi/~jkorpela/www/captions.html*/      
div.imageleft {
	float: left;
	margin-left: 0.2em;
	margin-right: 0.6em;
	padding: 0em;
	margin-bottom: -0.6em;
}
.imageleft div {
	text-align: left;
	font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
	line-height: 1.2;
	font-size: 12px;
	color: #666666;
	border-bottom: dotted 1px #999999;
	margin-bottom: 0.5em;
} 

     /*caption for right floated image;http://www.cs.tut.fi/~jkorpela/www/captions.html*/      
div.imageright {
  float: right;
  margin-left: 0.6em;
  margin-right: 0.2em;
  padding: 0em;
  margin-bottom: -0.6em;
}
.imageright div {
	text-align: left;
	font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
	line-height: 1.2;
	font-size: 12px;
	color: #666666;
	border-bottom: dotted 1px #999999;
	margin-bottom: 0.5em;
} 



hr {color: #8d4444;}
   
.twoColFixLtHdr #mainContent h1 {
	color: #90aa87;
	font-family: "Trebuchet MS", Verdana, Arial;
	display: none;
}
h2 {
	color: #8d4040;
	font-family: "Trebuchet MS", Verdana, Arial;
	font-size: 18px;
	border-bottom: 1px solid #cccccc;
	padding-bottom: 3px;

}

#tablestyle table {
	table-layout: fixed;
	border-collapse: collapse;
	width: 730px;
	margin: 0 auto;
	margin-bottom: 5px;
	border: solid 1px #A01010;
	text-align: left;
	font-family: "Trebuchet MS",Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 0.8;
    }
    #tablestyle td {
	border: solid 1px;
	border-color:#999999;
	padding: 0.5em;
	vertical-align: top;
	font-size: 12px;
	line-height: 14px;
   }
   #tablestyle tr.notwhite 
    {
	background-color: #FFFFE1;
    }
   td.first {
	color: #A01010;
	font-weight: bold;
    }
 td.header {
	width: 75px;
	color: #A01010;
	font-weight: bold;
	text-transform: uppercase;
	background-color: #FFF9F9;
    }
	
img.archer {
    display: block;
    width: 165px;
    height: 165px;
    margin: 0 auto;
    }
	
	
	#box
 {   
 
 font-family: 'Trebuchet MS', Verdana, Arial, Helvetica, sans-serif;
	
    line-height: 1.25 !important;
	font-size: 14px !important;
	color: #000000;   
    width:718px;
		margin: 0 auto;
		padding:5px;
		text-align:left;
        border: solid 1px #8d4040;;
        background-color: #f8f6f6;
        margin-top: 5px;
        margin-bottom: 5px;
    }
	
	/* box drop shadoww from http://www.cssplay.co.uk/menu/shadow2.html */
	
	.out {
	display:block;
	
	background:#bbb; /*shadow*/
	border:1px solid #ddd;
	position:relative;
	margin: 0 auto;
  }
.in {
	text-align:left;
	
	background:#fff; /*box background*/
	border:1px solid #8d4040;
	position:relative;
	padding:5px;
	font-weight:normal;
  }
.ltin {
	left:-4px;
	background-color: #fafae7;
  }
.tpin {
  top:-4px;
  }
.narrow {width:740px;} /* change to suit */
h4 {font-weight:bold; color:#000;}
/* end of http://www.cssplay.co.uk/menu/shadow2.html */


.twoColFixLtHdr #sidebar1 h3 {
	font-size: 14px;
	line-height: 1;
	font-variant: normal;
	font-family: "Trebuchet MS", Verdana, Arial;
	color: #8d4040;
	border-bottom: 1px solid #cccccc;
	padding-bottom: 3px;
}

/*for the icon in the normal flow of text*/
    img.newwindowicon
    {
    width: 18px;
    height: 16px;
    border: none;
    vertical-align: middle;
    }






.absolute_box
{
	font-family: "Trebuchet MS", Verdana, Arial;
	font-size: 12px;
	position: absolute;
	height: 50px;
	width: 150px;
	top: 120px;
	left: 200px;
}
#date {
	text-align: center;
	margin: 0 auto;
	font-family: "Trebuchet MS",Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #8d4040;
	border: solid 1px #8d4040;
	padding: 6px;
        }
.twoColFixLtHdr #mainContent ul {
	list-style-image: url(images/three_red_dots.gif);
	list-style-type: circle;
	list-style-position: outside;
	line-height: 17px;
	font-family: 'Trebuchet MS', Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: black;
	} 
    .twoColFixLtHdr #mainContent li {
	margin-bottom: 10px;
	margin-left: 0px;
	}
	
	
 p.toplink
{
	display: block;
	width: 20px;
	padding: 0.5em;
	margin: 0 auto;
	margin-top: 350px;
	color: #777;
	background: #fafae7;
	border: solid 1px #8d4040;
}
#councillorstablestyle table {
	table-layout: fixed;
	border-collapse: collapse;
	width: 730px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 5px;
	border: solid 1px;
	border-color:#A01010;
	text-align: left;
	font-family: "Trebuchet MS",Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 1.5;
    }
#councillorstablestyle td
{
	padding: 10px;
	line-height: 14px;
}




#contentsitemapleft ul {
	margin-top: -1em;
	margin-left:3em;
	list-style-image: url(three_red_dots.gif);
	list-style-type: circle;
	list-style-position: outside;
	line-height: 1.6;
	font-family: 'Trebuchet MS', Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	}   
  #contentsitemapright ul {
	margin-top: -1em;
	margin-left:3em;
	list-style-image: url(three_red_dots.gif);
	list-style-type: circle;
	list-style-position: outside;
	line-height: 1.6;
	font-family: 'Trebuchet MS', Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	}    
   #contentsitemapleft {
	width:320px;
	padding-left:25px;
	padding-right:5px;
	float:left;
	background:#ffffff;
	border-left: solid 1px #A01010;
        }  
     #contentsitemapright {
	width:320px;
	padding-left:25px;
	padding-right:5px;
	float:left;
	background:#ffffff;
	border-left: solid 1px #A01010;
        }  
p.links
{
	display: block;
	padding-left: 50px;
	line-height: 3px;
}
p.linkstitles
{
	display: block;
	color: #8d4040;
	font-weight: bold;
	font-size: 16px;
}


    #diarytablestyle table {
	table-layout: fixed;
	border-collapse: collapse;
	width: 730px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 5px;
	border: solid 1px;
	border-color:#A01010;
	text-align: left;
	font-family: "Trebuchet MS",Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1;
    }
    #diarytablestyle td {
	border: solid 1px;
    border-color:#999999;
	padding: 0.2em;
        vertical-align: middle;
    }

td.initial {
    color: #A01010;
    font-weight: bold;
    }
    
    tr.initial {
    color: #A01010;
    font-weight: bold;
    }
#boxsmall
{
	font-family: 'Trebuchet MS', Verdana, Arial, Helvetica, sans-serif;
	line-height: 1.25 !important;
	font-size: 14px !important;
	color: #000000;
	width:450px;
	margin: 0 auto;
	padding:5px;
	text-align:left;
	border: solid 1px #8d4040;
	;
	background-color: #f8f6f6;
	margin-top: 5px;
	margin-bottom: 5px;
}
