/* 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: #fff;
  color: #000;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 0.7em;
  line-height: 16px;
  margin: 1em 1em 1em 1em; /* 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. */
}
p {margin-top:0.6em;}

/* Commonly used to style page titles. */
h1 {
  color: #346667;
  font-size: 1.4em;
  font-weight: bold;
  line-height: 14px;

}
/* Commonly used to style section titles. */
h2 {
  color: #679966;
  font-size: 1.3em;
  font-weight: bold;
  line-height: 14px;
}
/* Sets the style for the h3 header. */
h3 {
  font-weight: bold;
  font-size: 1.2em;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #000;
  font-weight: normal;
  text-decoration: underline;
}
/* Sets the style for visited links. */
a:visited {
  color: #000;
  font-weight: normal;
  text-decoration: underline;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #000;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #000;
  text-decoration: underline;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #000;
  text-decoration: underline;
}
/* 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-color: #fff;
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  min-width: 950px;
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 100%;
}
#outerWrapper #frameworkWrapper {
  background-color: #F1F6F0;
}
/* 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 #frameworkWrapper #mainFramework {
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

.banner {
	background-color:#e1ebe0;
	border:#649a68 solid 1px;
	width:210px;
	line-height:13px;
	height:100px;
	margin-top:10px;
	padding: 6px 9px;
}

.banner h3 {color:#346667;}

.banner img {float:right;}

.block-heading {
	color:#2F5F5F; 
	background-color:#E1EBE0; 
	padding:10px; 
	font-size:1.4em; 
	font-weight:bold; 
	border-bottom:#679966 solid 6px;
}


#block-heading-h1 {
	color:#2F5F5F; 
	background-color:#E1EBE0; 
	padding:10px; 
	font-size:1.4em; 
	font-weight:bold; 
	border-bottom:#679966 solid 6px;
}

.blockBorder {
	border-bottom:#E1EBE0 solid 1px;
	border-left:#E1EBE0 solid 1px;
	border-right:#E1EBE0 solid 1px;
	margin-bottom:10px;
}

#bulletLinks {font-size:1em; list-style:square; margin: 0 0 5px 6px; padding:5px 5px 5px 10px;}	
#bulletLinks li a {text-decoration:none;}	
#bulletLinks li a:hover {text-decoration:underline;}	
#bulletLinks2 {font-size:1em; list-style: none; margin: 0 0 0 6px; padding:5px 0 5px 0;}
#bulletLinks2 li {margin-bottom:10px;}	
#bulletLinks2 li a {text-decoration:none;}	
#bulletLinks2 li a:hover {text-decoration:underline;}

#crumbtrail-div {padding:7px 10px 7px 15px;}

#contentWrapper .clearFloat {
  clear: left;
  display: block;
}

#contentWrapper #leftColumn {
  float: left;
  margin-right: 10px;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 230px;
}

.container {overflow: hidden; width: 100%;}

.copyright {
	padding:10px 10px 0 10px; 
	font-weight:bold; 
	color:#316769; 
	width:30%; 
	float:left;
	}
	
#contentWrapper {padding:5px; background-color:#fff;}

.divider {
	background-color:#e1ebe0; 
	height:5px; 
	overflow:hidden;
	}
	
.footer-links {
	 padding:10px 10px 0 10px; 
	 font-weight:bold; 
	 color:#316769; 
	 width:65%; 
	 float:right; 
	 text-align:right;
	 }
	 
#footer-links a {
	 font-weight:bold; 
	 color:#316769;
	 }

#header {
	height: 140px;
	width: 100%;
	background-image:url(Images/bg-header.jpg);
	background-repeat:repeat-x;
}

hr
{
	padding:0;
	border-color: #ccc;
	border-style: dashed;
	border-width: 1px 0 0 0;
	height:0;
	}

#logo {
	background-image:url(Images/logo-ppf.gif);
	background-repeat:no-repeat;
	float:right;
	width:150px;
	height:140px;
}

/*
.latestNews {padding: 5px 10px; width:47%; float:left;}
.latestNews p {padding:0;}
.latestNews h3 {color:#336666; font-size:0.9em;}
.latestNews img {float:left; padding-right:0.6em;}
*/

.latestNews {padding: 10px 6px; width:46%;}
.latestNews p {padding:0;}
.latestNews h3 {color:#336666; font-size:0.9em;}
.latestNews img {float:left; padding-right:0.3em;}

.mainContent {margin: 10px 220px 5px 245px;}

.mainContent img {border:#c8c8c8 solid 1px; padding:2px; margin: 0 0 0.5em 0.5em; float:right;}

/* main menu wrapper */
#main-menu {
	width:70%;
	float:left;
	margin-top:67px;
	height:29px;
	}
	
#mainContentWrapper {
  background-color: #fff;
  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: 100%;
}

/* main menu tabs */
.preloada {background: url(Images/1a.gif);}
.preloadb {background: url(Images/1b.gif);}
#menu { margin:0; list-style:none; height:29px; position:relative; font-size:1.3em; padding-left:1em;}
#menu li {float:left; height:29px; margin-right:15px;}
#menu li a {float:left; height:29px; line-height:29px; color:#2f5f5f; text-decoration:none; font-family:verdana, sans-serif; font-weight: bold; text-align:center; padding:0 0 0 6px; cursor:pointer; background:url(Images/0a.gif) no-repeat;}
#menu li a strong {float:left; display:block; padding:0 16px 0 12px; background:url(Images/0b.gif) no-repeat right top;}
#menu li.current a {background:url(Images/2a.gif) no-repeat;}
#menu li.current a strong {background:url(Images/2b.gif) no-repeat right top;}
#menu li a:hover {background: url(Images/1a.gif) no-repeat;}
#menu li a:hover strong {background:url(Images/1b.gif) no-repeat right top;}
#menu li.current a:hover {background: url(Images/2a.gif) no-repeat; cursor:default;}
#menu li.current a:hover strong {background:url(Images/2b.gif) no-repeat right top;}

.news {padding: 5px 10px;}
.news p {padding:0;}
.news h3 {color:#336666; font-size:0.9em;}
.news img {float:left; padding-right:0.6em;}

/* 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 {
  margin: 0 0 0 240px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

.padding10px {padding:2px 10px;}

.roleArticles {padding: 10px 5px; width:47%; float:left;}
.roleArticles p {padding:0; margin-bottom:0.4em;}
.roleArticles h2 {font-size:1.2em; color:#336666; margin-bottom:0.5em;}
.roleArticles h3 {font-size:1em; color:#000;}
.roleArticles h4 {font-size:1em; color:#336666; text-align:right;}
.roleArticles img {float:left; padding-right:0.6em;}

.relatedLinks ul {
	font-size: 1.2em;
	margin: 0 0 5px 6px;
	padding: 0 0 2px 0;
	list-style-type: square;
	width:180px;
}

.relatedNewsTitle {
	color:#fff; 
	background-color:#679966; 
	padding:5px 10px; 
	font-size:1.2em; 
	font-weight:bold; 
	border-bottom:#e0ece0 solid 6px;
	width:186px; 
}

.relatedInfoTitle {
	color:#fff; 
	background-color:#366263; 
	padding:5px 10px; 
	font-size:1.2em; 
	font-weight:bold; 
	border-bottom:#e0ece0 solid 6px;
	width:186px; 
}

.relatedFaqTitle {
	color:#fff; 
	background-color:#010066; 
	padding:5px 10px; 
	font-size:1.2em; 
	font-weight:bold; 
	border-bottom:#e0ece0 solid 6px;
	width:186px; 
}

.relatedLinksBorder {
	border-bottom:#E1EBE0 solid 1px;
	border-left:#E1EBE0 solid 1px;
	border-right:#E1EBE0 solid 1px;
	margin-bottom:10px;
	width:184px; 
	padding:5px 10px;
}

#role-select {padding:0; padding-top:10px; padding-left:10px; list-style-type:none; width:98%; height:100px; font-size:1.2em; font-weight:bold; color:#336666;}
#role-select li {display:block; float:left; width:19%; height:64px; position:relative; text-align:center;}
#role-select li a {display:block;}
#role-select li a img {border:0; padding-bottom:10px;}

.roleIcon {
	float:right; 
	padding:1em;
}

#s120 {
	color:#FFFFFF;
	width: 20em;
	float: left;
	padding:1.6em 0 0 1em;
	font-weight:bold;
}

#s120 img {
	border:none;
}

#search{
	color:#FFFFFF;
	width: 20em;
	float: left;
	padding:1.6em 0 0 1em;
	font-weight:bold;
}
.search {margin-left:1em;}

/* submenu list styling */
.submenuWrapper {border-bottom:#E1EBE0 solid 1px; border-left:#E1EBE0 solid 1px; border-right:#E1EBE0 solid 1px;}

#submenu ul {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1.2em;
	margin: 0 0 5px 6px;
	padding: 0 0 2px 0;
	list-style-type: none;
	width:216px;
	}

#submenu li a {
	color: #679966;
	display: block;
	height: 1.4em;
	padding: 4px 0 4px 14px;
	border-bottom:#CCCCCC dashed 1px;
	text-decoration: none;
	font-weight:bold;
	/*background-color:#fff;*/
	}
#sens label {width:400px; text-align:left;}


#submenu li a:hover {background-color: #E1EBE0; color:#679966;}

/* to remover dashed line at menu bottom */

#submenu li.last a {border-bottom:none;}
#submenu li.last a:hover {border-bottom:none;}
#submenu li.lastSelected a {border-bottom:none; color:#346667;}
#submenu li.lastSelected a:hover {border-bottom:none;}
#submenu li.first {padding-top:7px;}
#submenu li.first a {padding-top:7px;}
#submenu li.firstSelected {padding-top:7px;}
#submenu li.firstSelected a {padding-top:7px; border-bottom:none; color:#346667;}
#submenu li.selected {padding-top:7px;}
#submenu li.selected a {border-bottom:none; color:#346667;}



#submenu2 li { 

	font-size:0.8em;
	margin:0;
	border-bottom:none;
	font-weight:bold;
	background-image: url(Images/menu-bullet.gif);
	background-repeat: no-repeat;
	background-position: 0.5em 0.3em;
	padding-left: 1.75em;
	padding-right: 1em;
	background-color:#fff;
}

#submenu2 li a { 
	color:#346667;
	border-bottom:none;
	font-weight:bold;
	background-color:#fff;
}

#submenu2 li a:hover { 
	color:#346667; 
	background-color:#fff;
	border-bottom:none;
	font-weight:bold;
	text-decoration:underline;
}
.skiplink {display:none}

.siteActions {
	float:right; 
	height:25px;
	}
	
.welcomeActions {
	float:right; 
	height:25px;
}

/* Form styles */
div.form-container { margin: 10px; padding: 5px; background-color: #FFF; border: #E1EBE0 1px solid; }

p.legend { margin-bottom: 1em; }
p.legend em { color: #C00; font-style: normal; }

div.errors { margin: 0 0 10px 0; padding: 5px 10px; border: #649a68 1px solid; background-color: #F1F6F0; }
div.errors p { margin: 0; }
div.errors p em { color: #C00; font-style: normal; font-size:1.2em; font-weight: bold; }

div.form-container { overflow: hidden; padding:0 1em 0 1em; }

/* outside of form */
div.form-container p { margin: 0.2em 0 0.2em 0; }
div.form-container h1 { margin: 0.8em 0 0.6em 0; }
div.form-container p.note { margin-left: 75px; font-size: 90%; color: #333; }
div.form-container fieldset { padding: 7px; margin-bottom:1.5em; border: #DDD 1px solid; }
div.form-container legend { font-weight: bold; color: #346667; font-size:1.4em; padding-bottom:0.5em; }
div.form-container fieldset div { padding: 0.25em 0; }
div.form-container input.button {width:7em;margin-left:1em;}
div.form-container input.buttonRight {width:7em; margin-top:1em; margin-left:1em; float:right;}
div.form-container label {font-weight:bold;}

/* within form */
div.form-container form p { margin: 0.2em 0 0.2em 0; }
div.form-container form h1 { margin: 0.8em 0 0.6em 0; }
div.form-container form h2 { margin: 0.8em 0 0.6em 0; }
div.form-container form p.note { margin-left: 75px; font-size: 90%; color: #333; }
div.form-container form fieldset { padding: 7px; margin-bottom:1.5em; border: #DDD 1px solid; }
div.form-container form legend { font-weight: bold; color: #346667; font-size:1.4em; padding-bottom:0.5em; }
div.form-container form fieldset div { padding: 0.25em 0; }
div.form-container label, 
div.form-container span.label { margin-right: 0px; padding-right: 0px; width: 100px; display: block; float: left; text-align: right; position: relative; font-weight:bold;
	top: 0px;
	left: 0px;
}
div.form-container label.error, 
div.form-container span.error { color: #C00; }
div.form-container label em, 
div.form-container span.label em { position: absolute; right: 1px; font-size: 120%; font-style: normal; color: #C00; }
div.form-container input.error { border-color: #C00; background-color: #FEF; width:25em; }
div.form-container input.sml { width:14em; }
div.form-container input.smlError { border-color: #C00; background-color: #FEF; width:14em;}
div.form-container input.lrg { width:25em; }
div.form-container select.sml { width:14em; }
div.form-container input:focus,
div.form-container input.error:focus, 
div.form-container textarea:focus {	background-color: #FFC; border-color: #FC6; }
div.form-container div.controlset label, 
div.form-container div.controlset input { display: inline; float: none; }
div.form-container div.controlset div { margin-left: 170px; }

div.form-container div.controlset2 label {margin-right: 10px; padding-right: 5px; width: 185px; display: block; float: left; text-align: right; position: relative;} 
div.form-container div.controlset2 input { display: inline; float: none; }
div.form-container div.controlset2 div { margin-left: 0px; }

div.form-container div.buttonrow { margin-left: 180px; }
div.form-container table { padding:0.2em; text-align:center; border-collapse:collapse; background-color:#ddd; width:90%; margin-left:auto; margin-right:auto;}

div.form-container table th { background-color:#649a68; color:#fff; }
div.form-container table td { background-color:#f1f6f0; color:#000; }

div.form-container form input.button {width:7em;margin-left:1em;}
div.form-container form input.buttonRight {width:7em; margin-top:1em; margin-left:1em; float:right;}

#stevebound label {width:130px;margin-left:5px;display: block; float: left; text-align: right; position: relative;}
#stevebound table {background-color:#FFF;}
#forgot label{ margin-right:0px;display: block; float: left; text-align: right;padding:0,0,0,0;}
#forgot input{margin-left:0px;padding:0,0,0,0;}
#profile label{ margin-left:40px; margin-right:0px;text-align: right;position: relative; width: 140px;}
#profile input{margin-left:0px;padding:0; margin-right:20px;}
#change label{ margin-right:0px;display: block; float: left; text-align: right;position: relative;width:170px}
#change2 label{ margin-right:0px;display: block; float: left; text-align: right;position: relative;width:170px}
#change2 input{margin-left:50px;padding:0,0,0,0;}

#formpage1 label{margin-right: 10px; padding-right: 5px; width: 185px; display: block; float: left; text-align: right; position: relative;} 
.confirm {padding:3px;}
#whitebg table {background-color:#FFF; padding:0;}
#whitebg table tr {background-color:#FFF; padding:0;}
#whitebg table td {background-color:#FFF; padding:0;}
.file-button fieldset file { font-family: Arial, Helvetica, sans-serif; font-size: 1.4em; padding:0; margin:0;}
#nobg table {background-color:#FFF; border:0; border:#fff;}
#nobg table tr {background-color:#FFF; border:0; border:#fff;}
#nobg table td {background-color:#FFF; border:0; border:#fff; padding:0;}

.leftalign { text-align: left; }
.padleft { margin-left: 10px }
#centerLeft table th { text-align:center; }
#centerLeft table td { text-align:left; padding-left:0.5em; padding-right:0.5em; }
