/* CSS Document */

/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	background-color: #FFFFFF;
	color: #000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	line-height: 14px;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
	font-size: 11px;
}
/* Commonly used to style page titles. */
h1 {
  color: #331F5B;
  font-size: 20px;
  font-weight: bold;
  line-height: normal;
}
/* Commonly used to style section titles. */
h2 {
  color: #000;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
}
/* Sets the style for unvisited links. */
a,  a:link {
	color: #D72922;
	text-decoration: none;
	font-weight: bold;
}
/* Sets the style for visited links. */
a:visited {
  color: #D62E25;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #3A326D;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #000;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #FF0000;
}





/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	background-image: url(images/wrapperback.jpg);
	background-repeat: repeat-y;
	margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 880px;
	position: relative;
}
#outerWrapper #header {
	background-image: url(images/leftback.jpg);
	background-position: left bottom;
	background-repeat: no-repeat;
	margin: 0 0 0 13px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0px 0px 0px 193px;
}
#outerWrapper #contentWrapper #leftColumn1 {
	background-image: url(images/lowerleft.jpg);
	background-repeat: no-repeat;
	float: left;
	margin: 0px 0px 0px 13px;
	background-color: #FFFFFF;
	background-position: left top;
	font-family: Arial, Helvetica, sans-serif;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	width: 198px;
}
#outerWrapper #contentWrapper #rightColumn1 {
  float: right;
  margin-right: 18px;
  padding: 0px 10px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 150px;
}#outerWrapper #contentWrapper #homeright {
	float: right;
	padding: 443px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 135px;
	background-image: url(images/rightimage.jpg);
	background-repeat: no-repeat;
	background-position: center 5px;
	margin: 0px 19px 0px 0px;
}
#outerWrapper #contentWrapper #rightColumn1 .infoblock {
	padding-bottom: 10px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #BCDFDB;
}

/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	background-image: url(images/centreback.jpg);
	background-position: left top;
	background-repeat: no-repeat;
	margin: 0 199px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 70px 26px 20px;
}
#outerWrapper #contentWrapper #content .story {
	padding-bottom: 10px;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #BCDFDB;
	padding-top: 10px;
}
#outerWrapper #contentWrapper #content .story h3 {
	color: #EC1F26;
}
#outerWrapper #contentWrapper #content .story .newslink {
	text-align: right;
}
#outerWrapper #contentWrapper #content .story .posted {
	margin: 0px;
	padding: 0px;
	color: #FF6600;
	font-size: 10px;
	font-style: italic;
}
#outerWrapper #contentWrapper #content .story p {
	padding: 0px;
	margin-top: 5px;
	margin-bottom: 0px;
}#outerWrapper #contentWrapper #content h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #000066;
	margin: 0px;
	padding: 0px;
	line-height: normal;
}/* Contains the main page content for 2 columns. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #widecontent {
  background-image: url(images/centreback.jpg);
  background-position: left top;
  background-repeat: no-repeat;
  margin: 0px 0px 0px 199px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 70px 48px 20px 26px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #contentWrapper #widecontent .story {
	padding-bottom: 10px;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #BCDFDB;
	padding-top: 10px;
}
#outerWrapper #contentWrapper #widecontent .story h3 {
	color: #EC1F26;
}
#outerWrapper #contentWrapper #widecontent .story .newslink {
	text-align: right;
}
#outerWrapper #contentWrapper #widecontent .story .posted {
	margin: 0px;
	padding: 0px;
	color: #FF6600;
	font-size: 10px;
	font-style: italic;
}
#outerWrapper #contentWrapper #widecontent .story p {
	padding: 0px;
	margin-top: 5px;
	margin-bottom: 0px;
}#outerWrapper #contentWrapper #widecontent h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #000066;
	margin: 0px;
	padding: 0px;
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
	clear: both;
	display: block;
	height: 1px;
	margin: 0;
}
 #footer {
	background-image: url(images/footerback.jpg);
	background-repeat: no-repeat;
	margin: 0px auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0px 0px 18px;
	width: 880px;
	clear: both;
}
#outerWrapper #header #Nav img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin: 0;
}#outerWrapper #contentWrapper #homecontent {
	background-image: url(images/centreback_f3.jpg);
	background-repeat: no-repeat;
	margin: 0 154px 0 210px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 40px 30px 105px;
	color: #A9C8D2;
	font-size: 14px;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
	height: 312px;
}
/* Start TMM  Styles */
/*Control DIV for expand all and collapse all links*/
#p7TMctrl {
	margin: 0 0 12px 0;
	font-size: 12px;
	display: none;
	/*/*/display: block; /* Hide from NN4*/
}

#p7TMctrl a:link {
	color: #333333;
	
}
#p7TMctrl a:visited {
	color: #333333;
}
#p7TMctrl a:hover {
	color: #000000;
}

/*Sets line-height of menuitems*/
#p7TMnav div {
	/*/*/line-height: 1.3; /* */
}

/*Sets background color, border, and padding around the menu DIV*/
#p7TMnav {
	margin-top: 85px;
	margin-left: 10px;
	margin-right: 6px;
}

/*second level menuitem divs and lower -Cascades to lower levels-*/
/*Sets left margin to 12px establishing a cascading indent*/
#p7TMnav div div {
	margin: 0 0 0 6px;
}

/*The Link style for top-level menuitems and is read by all browsers*/
#p7TMnav div a {
	color: #666699;
	font-size: 14px;
	font-weight: bold;
}
/*The Link style for top-level menuitems hidden from Netscape 4*/
#p7TMnav div a {
	/*/*/padding: 0 0 0 10px;
	display: block;
	background-color: #BCDFDB;
	color: #000066;
	border-right: none;
	border-bottom: 4px solid #FFFFFF;
	border-left: none;
	text-decoration: none; /* */
}
#p7TMnav div a:visited {
	color: #333;
}
#p7TMnav div a:hover {
	background-color: #7CC5BE;
	color: #FFFFFF;
}

/*The Link styles for second-level menuitems*/
#p7TMnav div div a {
	font-size: 10px;
	background-color: #FFFFFF;
	color: #000066; /* */
	font-weight: normal;
}
#p7TMnav div div a:visited {
	color: #5B6C9F;
}
#p7TMnav div div a:hover {
	color: #FF0000;
	background-color: #FFFFFF;
}

/*The Link style for third-level menuitems and lower*/
/*To set a specific style for the fourth level, add a div to the selector*/
/*Fourth-level example syntax: p7TMnav div div div div a {declaration}*/
#p7TMnav div div div a {
}

/*rules programatically assigned to parent links when image-based plus and minus option is selected. The padding on the 4 following rules supercedes (via !important) the padding on the p7TMnav div a selector when you've chosen the option to use images for the plus and minus signs*/
.p7plusmark {
	background-repeat: no-repeat!important;	
	background-image:    url(p7tm/p7t_plus.gif)!important;
	background-position: right 50%!important;	
	padding-right:15px!important;
}
.p7minusmark {
	background-repeat: no-repeat;
	background-image:    url(/p7tm/p7t_minus.gif)!important;
	background-position: right 50%!important;
	padding-right:15px!important;	background-color: #FF0000!important;
}

/*rule programatically assigned to child links when image-based plus and minus option is selected*/
.p7defmark {
	background-image:  none;
	padding-right:15px!important;
}

/*rules programatically assigned to page link correesponding to current page (You are Here)*/
.p7currentmark {
	font-weight: bold;
	color: #FFFFFF!important;
	background-color: #FF0000!important;
	background-position: right 50%!important;	
	background-repeat: no-repeat!important;	
}
#about.p7currentmark, #incidents.p7currentmark, #membership.p7currentmark, #funds.p7currentmark {
	font-weight: bold;
	color: #FFFFFF!important;
	background-color: #FF0000!important;
	background-position: right 50%!important;	
	background-repeat: no-repeat!important;	background-image: url(p7tm/p7t_minus.gif)!important;
}#about.p7currentmark a:hover, #incidents.p7currentmark a:hover, #membership.p7currentmark a:hover, #funds.p7currentmark a:hover{
	font-weight: bold;
	color: #FFFFFF!important;
	background-position: right 50%!important;	
	background-repeat: no-repeat!important;		
	background-image: url(p7tm/p7t_minus2.gif)!important;
}
#outerWrapper #header #Nav {
	margin: 0;
	padding: 0;
	height: 45px;
}
#outerWrapper #contentWrapper #rightColumn1 h2 {
	font-size: 18px;
	text-transform: uppercase;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	line-height: 1.1em;
	margin-top: 12px;
	color: #000066;
}
#outerWrapper #contentWrapper #rightColumn1 h3 {
	font-size: 14px;
	font-weight: bold;
	margin-top: 12px;
	font-family: Arial, Helvetica, sans-serif;
	color: #000066;
}
#outerWrapper #contentWrapper #rightColumn1 p {
	margin-top: 0px;
	margin-bottom: 0px;
}
#outerWrapper #contentWrapper .date {
	font-weight: bold;
	color: #F12026;
	font-size: 12px;
}
#footer p {
	padding: 8px 0px 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
	color: #000066;
}
.larger {
	font-size: 120%;
}
#footer p.copy {
	color: #999999;
	margin-top: 12px;
}
#outerWrapper #contentWrapper #homecontent h1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 36px;
	line-height: normal;
	text-align: center;
	margin-top: 50px;
	color: #A9C8D2;
}
#outerWrapper #contentWrapper #homecontent h1 emsd {
	font-style: normal;
}
#outerWrapper #contentWrapper #homecontent em {
	font-style: normal;
	color: #E92121;
}
#outerWrapper #contentWrapper #homecontent p {
	color: #EEF4F7;
	font-size: 20px;
	font-weight: bold;
	line-height: 18px;
	margin: 12px 0px 0px;
	padding: 0px;
}

#outerWrapper #contentWrapper #diaryholder {
	background-image: url(images/diaryback.jpg);
	background-repeat: no-repeat;
	float: left;
	margin: 0px 0px 0px 13px;
	background-color: #FFFFFF;
	background-position: left top;
	font-family: Arial, Helvetica, sans-serif;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 45px;
	text-align: center;
	width: 800px;
	padding-top: 60px;
}
#outerWrapper #contentWrapper #rightColumn1 img {
	margin-left: 6px;
}
#outerWrapper #contentWrapper #content h3 {
	font-size: 14px;
	font-family: Arial, Helvetica, sans-serif;
	color: #000066;
}
#outerWrapper #contentWrapper #content #statslists li {
	list-style-type: none;
	padding-bottom: 8px;
}
#outerWrapper #contentWrapper #content #statslists {
	margin: 12px 0px 0px 8px;
	padding: 0px;
}
#outerWrapper #contentWrapper #content #statslists ul {
	margin-top: 8px;
	padding: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 12px;
}
#outerWrapper #contentWrapper #content #statslists ul li {
	margin: 0px;
	padding: 0px 0px 3px;
}
#outerWrapper #contentWrapper #content #statslists li {
	list-style-type: none;
	padding-bottom: 8px;
}
#outerWrapper #contentWrapper #content .statslists {
	margin: 12px 0px 0px 8px;
	padding: 0px;
}
#outerWrapper #contentWrapper #content .statslists ul {
	margin-top: 8px;
	padding: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 12px;
}
#outerWrapper #contentWrapper #content .statslists ul li {
	margin: 0px;
	padding: 0px 0px 3px;
}#outerWrapper #contentWrapper #content .statslists li {
	list-style-type: none;
	padding-bottom: 8px;
}#outerWrapper #contentWrapper #content h2 {
	margin-top: 6px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #449991;
	margin-bottom: 6px;
}
#outerWrapper #contentWrapper #content img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#outerWrapper #contentWrapper #rightColumn1 ul {
	margin: 45px 0px 12px;
	padding: 0px;
	list-style-type: none;
}
#outerWrapper #contentWrapper #rightColumn1 li {
	padding-bottom: 8px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #BCDFDB;
	padding-top: 8px;
	padding-left: 3px;
}
#outerWrapper #contentWrapper #widecontent h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #4D5B95;
	margin-bottom: 12px;
}
#outerWrapper #contentWrapper #widecontent img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#outerWrapper #contentWrapper #rightColumn1 p.logged {
	font-weight: bold;
	padding-left: 5px;
	color: #999999;
	text-align: center;
}
.rightfloat {
	padding-top: 3px;
	padding-right: 0px;
	padding-bottom: 8px;
	padding-left: 8px;
	float: right;
}
