/* 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;
  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 {
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	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. */
	background-color: #EDEEF3;
}
/* Commonly used to style page titles. */
h1 {
	color: #000;
	font-size: 14px;
	font-weight: bold;
	line-height: 14px;
}
/* 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: #1F2B5F;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #3262A4;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  text-decoration: underline;
}
#leftColumn1 #topnews #newscontent h4 {
	padding-right: 10px;
	padding-left: 10px;
}

/* 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: #000;
}
/* 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 {
	margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Redefines the text alignment defined by the body element. */
	width: 763px;
	background-image: url(pageback.jpg);
	background-repeat: repeat-y;
	background-position: left top;
	position: relative;
}
#outerWrapper #header {
	padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	margin: 0;
	background-image: url(acumenheader2.jpg);
	background-position: 1px top;
	background-repeat: no-repeat;
}
#outerWrapper #contentWrapper #leftColumn1 {
  background-image: url(leftsidemid2.jpg);
  background-repeat: repeat-y;
  float: left;
  padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 157px;
}
/* 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 {
	padding-right: 25px;
	padding-bottom: 30px;
	padding-left: 0px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 180px;
	text-align: left;
}
/* 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: left;
  display: block;
}
#outerWrapper #contentWrapper #content #Enquiry .calculatorfull {
	background-color: #D0D9E0;
	padding: 10px;
	border-top-style: dotted;
	border-right-style: dotted;
	border-bottom-style: dotted;
	border-left-style: dotted;
}

#footer {
	background-image: url(pagebottom.jpg);
	background-position: top left;
	background-repeat: no-repeat;
	padding: 25px 0px 8px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 763px;
	margin:auto;
	font-size: 10px;
}
#outerWrapper #contentWrapper {
	background-image: url(textback.jpg);
	background-repeat: no-repeat;
	background-position: right bottom;
}
#outerWrapper #contentWrapper #leftColumn1 p {
	padding-left: 10px;
	padding-right: 10px;
	margin: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
}
#outerWrapper #contentWrapper #content #Pensions h1 {
	color: #022E5A;
	font-family: "Trebuchet MS", GillSans, Helvetica, Verdana, Arial, sans-serif;
	font-size: 15px;
	font-weight: bold;
	padding-top: 159px;
	padding-right: 8px;
	padding-bottom: 8px;
	padding-left: 8px;
	background-image: url(seniorcouple220.jpg);
	background-repeat: no-repeat;
	background-position: center top;
}
#outerWrapper #contentWrapper #Pensions {
	float: left;
	width: 220px;
	margin: 12px;
	padding: 0px 0px 10px;
	background-image: url(flashbottom.gif);
	background-repeat: no-repeat;
	background-position: center bottom;
}#outerWrapper #contentWrapper #content #Pensions h2 {
	margin-top: 11px;
	padding-right: 8px;
	padding-left: 8px;
	font-size: 12px;
	margin-bottom: 0px;
}
#outerWrapper #contentWrapper #content #Pensions p {
	padding-top: 0px;
	padding-right: 18px;
	padding-bottom: 3px;
	padding-left: 18px;
}
#outerWrapper #contentWrapper #Protection {
	float: left;
	width: 220px;
	margin: 12px;
	padding: 0px 0px 10px;
	background-image: url(flashbottom.gif);
	background-repeat: no-repeat;
	background-position: center bottom;
}
#outerWrapper #contentWrapper #content #Protection h1 {
	color: #022E5A;
	padding: 159px 8px 8px;
	font-family: "Trebuchet MS", GillSans, Helvetica, Verdana, Arial, sans-serif;
	font-size: 15px;
	font-weight: bold;
	background-image: url(family220.jpg);
	background-repeat: no-repeat;
	background-position: top;
}#outerWrapper #contentWrapper #content #Protection p {
	padding-top: 0px;
	padding-right: 18px;
	padding-bottom: 3px;
	padding-left: 18px;
}
#outerWrapper #contentWrapper #content #Protection h2 {

	margin-top: 8px;
	padding-right: 8px;
	padding-left: 8px;
}

#outerWrapper #contentWrapper #Investment {
	float: right;
	width: 220px;
	background-image: url(flashbottom.gif);
	background-repeat: no-repeat;
	background-position: center bottom;
	margin-top: 12px;
	margin-right: 12px;
	margin-bottom: 6px;
	margin-left: 12px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
}
#outerWrapper #contentWrapper #content #Investment h1 {
	color: #022E5A;
	padding: 159px 8px 8px;
	font-family: "Trebuchet MS", GillSans, Helvetica, Verdana, Arial, sans-serif;
	font-size: 15px;
	font-weight: bold;
	background-image: url(youngplant220.jpg);
	background-repeat: no-repeat;
	background-position: center top;
}#outerWrapper #contentWrapper #content #Investment p {
	padding-top: 0px;
	padding-right: 18px;
	padding-bottom: 3px;
	padding-left: 18px;
}
#outerWrapper #contentWrapper #content #Investment h2 {
	margin-top: 11px;
	padding-right: 8px;
	padding-left: 8px;
	font-size: 12px;
	margin-bottom: 0px;
}
#outerWrapper #contentWrapper #content #Protection h2 {
	margin-top: 11px;
	padding-right: 8px;
	padding-left: 8px;
	font-size: 12px;
	margin-bottom: 0px;
}

#outerWrapper #contentWrapper #Tax {
	width: 220px;
	background-image: url(flashbottom.gif);
	background-repeat: no-repeat;
	background-position: center bottom;
	float: right;
	margin-top: 12px;
	margin-right: 12px;
	margin-bottom: 12px;
	margin-left: 12px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
}
#outerWrapper #contentWrapper #content #Tax  h1 {
	color: #022E5A;
	padding: 159px 8px 8px;
	font-family: "Trebuchet MS", GillSans, Helvetica, Verdana, Arial, sans-serif;
	font-size: 15px;
	font-weight: bold;
	background-image: url(tax220.jpg);
	background-repeat: no-repeat;
	background-position: center top;
}#outerWrapper #contentWrapper #content #Tax p {
	padding-top: 0px;
	padding-right: 18px;
	padding-bottom: 3px;
	padding-left: 18px;
}
#outerWrapper #contentWrapper #content #Tax h2 {
	margin-top: 11px;
	padding-right: 8px;
	padding-left: 8px;
	margin-bottom: 0px;
	font-size: 12px;
}
#outerWrapper #contentWrapper.tiny {
	font-size: 9px;
}
#outerWrapper #contentWrapper #content #toprow {
	z-index: 1;
	width: 550px;
}
#outerWrapper #contentWrapper #content #bottomrow {
	width: 500px;
	margin-top: 18px;
	margin-left: 25px;
	position: relative;
}
#outerWrapper #contentWrapper #leftColumn1 #leftmenu {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}
#outerWrapper #contentWrapper #leftColumn1 #leftmenu li {
	width: 157px;
	margin-bottom: 8px;
	margin-left: 1px;
}
#outerWrapper #contentWrapper #leftColumn1 #leftmenu a {
	color: #FFFFFF;
	background-image: url(siteimages/linkback2.gif);
	background-repeat: no-repeat;
	display: block;
	padding: 8px 0px 8px 8px;
	margin-left: 3px;
	text-align: left;
}
#outerWrapper #contentWrapper #leftColumn1 #leftmenu a:hover {
	color: #002E5D;
	background-image: url(siteimages/linkhover2.gif);
	background-repeat: no-repeat;
	display: block;
	padding: 8px 0px 8px 11px;
	margin-left: 1px;
	text-decoration: none;
	background-position: center;
}
#footer p {
	margin-top: 3px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding: 0px;
}
#outerWrapper #header img {
	margin: 0px;
	padding: 0px;
}
#outerWrapper #header #p7PMnav #news {
	width: 172px;
}
#outerWrapper #header #p7PMnav #about {
	width: 154px;
}
#outerWrapper #header h1 {
	color: #F6D144;
	font-size: 17px;
	font-weight: normal;
	text-align: center;
	padding-top: 100px;
	padding-bottom: 18px;
	letter-spacing: 0.5em;
	background-repeat: no-repeat;
	padding-left: 140px;
	text-transform: uppercase;
}
#outerWrapper #contentWrapper #content #bottomrow #block {
	clear: both;
}
#outerWrapper #contentWrapper #content h2 {
	padding-right: 8px;
	color: #7B94A8;
	font-family: "Trebuchet MS", GillSans, Helvetica, Verdana, Arial, sans-serif;
	padding-bottom: 0px;
	margin-bottom: 12px;
	font-size: 18px;
	padding-top: 20px;
}
#outerWrapper #header #navbar {
	margin-right: 5px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #96B0C7;
	margin-left: 4px;
	clear: both;
	height: 25px;
	text-align: left;
	background-color: #00265C;
}
#outerWrapper #contentWrapper #content .homeheader {
	font-size: 18px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	line-height: 1.2em;
	color: #7B94A8;
	text-align: center;
}
#outerWrapper #contentWrapper #leftColumn1 .logos {
	text-align: center;
	margin-left: 8px;
	margin-top: 8px;
	margin-bottom: 8px;
}
/* begin styles for RSS Feed */

.rss_box {
	margin: 0;
	padding: 12px 4px 4px;
	width: 140px;
	min-height:225px;
	font-size: 9px;
	text-align: left;
	background-repeat:no-repeat;


}

.rss_title, rss_title a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	margin: 5px 0;
	padding: 0;
	color: #FFFFFF;
	font-weight: normal;
}

.rss_items {
	list-style-type: disc;


}

.rss_item  {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight : normal;
	margin: 8px 0;
	color: #000033;

}

.rss_item a:link, .rss_item a:visited {
	text-decoration : none;
	color: #3B457A;
	font-weight:bold
	}

.rss_item a:hover { 
	text-decoration : underline;
	color: #e0861e;
	}
	
.rss_date {
	font-size: 80%;
	font-weight : normal;
	color: #000000;
	}
#newsflash {
	margin: 0 0 0 5px;
	padding: 12px 4px 4px;
	width: 140px;
	min-height:120px;
	font-size: 12px;
	text-align: left;
	background-image:url(newsback.jpg);
	background-repeat:no-repeat;
	height: 111px;
}
#outerWrapper #contentWrapper #leftColumn1 #newsflash h2 {
	color: #1F2B5F;
	font-size: 14px;
	margin-top: 5px;
	margin-bottom: 8px;
}#newsflash2 {
	margin: 0 0 0 5px;
	padding: 12px 4px 4px;
	width: 140px;
	min-height:120px;
	font-size: 12px;
	text-align: left;
	background-image:url(newsback.jpg);
	background-repeat:no-repeat;
	height: 111px;
}
#outerWrapper #contentWrapper #leftColumn1 #newsflash2 h2 {
	color: #1F2B5F;
	font-size: 14px;
	margin-top: 5px;
	margin-bottom: 8px;
}
#outerWrapper #contentWrapper #content h3 {
	color: #202C60;
	margin: 0;
	padding: 0;
	font-size: 14px;
	font-weight: bold;
}
#outerWrapper #contentWrapper #content p {
	margin: 0px;
	padding: 6px 0px 12px;
}
#outerWrapper #contentWrapper #content .rtflt {
	padding: 5px;
	float: right;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 5px;
}
#outerWrapper #contentWrapper #leftColumn1 #newsflash p {
	padding-right: 5px;
	padding-left: 5px;
	text-align: center;
}
/* 
  -----------------------------------
  PopMenu Magic Style Sheet
  by Project Seven Development
  www.projectseven.com
  Menu Type: Horizontal
  Style Theme:3 -Blue Sapphire
  -----------------------------------
*/
#p7PMnav {
	margin: 0;
	padding:0;
}
#p7PMnav li {
	list-style-type: none;
	margin: 0;
	padding: 0;
	background-image:  url(p7pm/img/p7PM_sapphire.jpg);
	background-repeat: no-repeat;
	background-position: left center;
}
#p7PMnav ul {
	margin: 0;
	padding: 0;
	position: absolute;
	left: -9000px;
	z-index: 10000;
}
#p7PMnav a, #p7PMnav ul a {
	display: block;
	text-decoration: none;
	background-color: #00265C;
	padding: 6px 10px;
	color: #FFF;
	border-right: 1px solid #394975;
	border-left: 1px solid #495F96;
	line-height:1;
	vertical-align: bottom;
}
#p7PMnav a:hover, #p7PMnav a:active, #p7PMnav a:focus {
	background-color: transparent;
	color: #333333;
	letter-spacing: 0.01px;
}

/* ------ the current page marker style ------ */
#p7PMnav .p7PMmark {
	color: #FFFFFF;
	font-weight: bold;
}
/* ------ the trigger link styles ------- */

/*the normal trigger links */
#p7PMnav ul .p7PMtrg {
	background-image:  url(img/p7PM_light_east.gif);
	background-repeat:	no-repeat;
	background-position: right center;
}
/* the active trigger link style */
#p7PMnav .p7PMon {
	background-color: #5971AE;
	color: #FFFFFF;
}
#p7PMnav ul .p7PMon {
	background-image:  url(img/p7PM_light_east.gif);
	background-repeat:	no-repeat;
	background-position: right center;
}
/*the submenu classes */

#p7PMnav .p7PMhide {
	left: -9000px;
	border: 0;
}
#p7PMnav .p7PMshow {
	left: auto;
	z-index: 20000 !important;
}
/* Top level menu width */
#p7PMnav li {
	float: left;
	width: 107px;
}
#p7PMnav ul li {
	float: none;
}
/* 2nd and subsequent Submenu widths */
#p7PMnav ul, #p7PMnav ul li {
	width: 172px;
}
#pmmcrumb {
	font-weight: bold;
	margin-bottom: 16px;
	color: #333333;
}
#pmmcrumb a, #pmmcrumb a:visited {
	font-weight: normal;
	color: #535FAC;
}
#pmmcrumb a:hover, #pmmcrumb a:active, #pmmcrumb a:focus {
	font-weight: normal;
	color: #333333;
}
.logos a img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}.rightfloat {
	float: right;
	width: 210px;
	padding: 0px;
	margin-left: 15px;
	background-color: #D0DAE3;
	border: 1px solid #003366;
	margin-bottom: 15px;

}
#outerWrapper #contentWrapper #content .rightfloat h2 {
	color: #F1D83D;
	background-color: #02254D;
	margin: 0px;
	padding-top: 6px;
	padding-right: 0px;
	padding-bottom: 6px;
	padding-left: 5px;
}
#outerWrapper #contentWrapper #content .rightfloat div {
	padding: 6px;
}
.calculatorfull {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	background-color: #FFFFFF;
	padding: 0px;
	color: #1F2B62;
	border: 1px solid #1F2B62;

}.tableheader {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	background-color: #022E5A;
	padding: 6px;
	color: #FFFFFF;
	text-align: center;
	vertical-align: middle;
	margin: 5px;
	border-top: 1px outset #1F2B62;
	border-right: 1px outset #1F2B62;
	border-bottom: 1px outset #003366;
	border-left: 1px outset #003366;
	font-weight: bold;

}
#outerWrapper #contentWrapper #content fieldset {
	background-color: #D0D9E0;
	margin: 10px;
	padding: 12px;
	border: 1px dotted #02254D;
}
#outerWrapper #contentWrapper #content legend {
	font-size: 14px;
	font-weight: bold;
	color: #F6D144;
	padding: 5px;
	margin-top: 4px;
	margin-bottom: 12px;
	margin-left: 12px;
	background-color: #02254D;
}
#leftColumn1 #topnews #newsbottom {
	background-image: url(newsbottom.jpg);
	background-repeat: no-repeat;
	background-position: bottom;
	padding-bottom: 14px;
}
#leftColumn1 #topnews {
	background-image: url(newstop.jpg);
	background-repeat: no-repeat;
	background-position: top;
	padding-top: 12px;
	margin-bottom: 12px;
}
#leftColumn1 #topnews h2 {
	font-size: 14px;
	color: #1C285C;
	padding-bottom: 12px;
}
#leftColumn1 #topnews #newscontent {
	background-image: url(newscontent.jpg);
	background-repeat: repeat-y;
	background-position: center;
	text-align: left;
	padding-right: 11px;
	padding-left: 11px;
}
#leftColumn1 #topnews #newscontent ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}
#leftColumn1 #topnews #newscontent ul li {
	padding-right: 5px;
	padding-left: 5px;
	padding-bottom: 4px;
}
#leftColumn1 #topnews #newscontent h4 {
	padding-right: 5px;
	padding-left: 5px;
	margin-top: 6px;
	padding-bottom: 0px;
}
#topnews #newscontent .tiny {
	color: #F00;
}
#outerWrapper #contentWrapper #leftColumn1 #topnews #newscontent p {
	padding-right: 5px;
	padding-left: 5px;
}
#contentWrapper #content .newsitem {
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 10px;
	font-size: 12px;
}
.newsedit {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	background-color: #FFFFFF;
	padding: 0px;
	color: #1F2B62;
	text-align: left;
}
#content .newstory {
	padding-bottom: 12px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #D0D9E0;
	margin-bottom: 12px;
	background-color: #EBEEF1;
	padding-right: 10px;
	padding-left: 10px;
}
.newstory .tiny {
	font-size: 10px;
	color: #F00;
}

