@charset "UTF-8";
* { /* zero the margin, padding, etc. of all elements to account for differing browser defaults */
	margin: 0;
	padding: 0;
	/*border: 0;*/ /* if set removes default button style */
	outline: 0;
	font-size: 100%;
}
body  {
	background: #666666;
	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: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
}
.twoColHybLtHdr #container { 
	width: 100%;  /* this will create a container 80% of the browser width */
	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. */
} 
.twoColHybLtHdr #header {
	background: #FFFFFF;
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	border-style:solid;
	border-width: 0px 0px 5px 0px;
	border-color:#000;
} 
.twoColHybLtHdr #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 */
}

/* Tips for sidebar1:
1. Since we are working in relative units, it's best not to use padding on the sidebar. It will be added to the overall width for standards compliant browsers creating an unknown actual width. 
2. Since em units are used for the sidebar value, be aware that its width will vary with different default text sizes.
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColHybLtHdr #sidebar1 p" rule.
*/
.twoColHybLtHdr #sidebar1 {
	float: left;
	width: 10em; /* since this element is floated, a width must be given */
	padding: 0.5em 0em; /* top and bottom padding create visual space within this div  */
	background-color: #EAB8FE;
}
.twoColHybLtHdr #sidebar1 h3, .twoColHybLtHdr #sidebar1 p {
	margin-left: 1em; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 1em;
}
.twoColHybLtHdr #sidebar1 #search {
	width: 14.1em;
	background-color: #FFFFFF;
	font-size: 65%;
	margin: 3em 0.5em 0.5em 0.5em;
}
.twoColHybLtHdr #sidebar1 #search form {
	border: solid 1px #AAA;
	padding: 0.5em 0.4em 0.5em 0.4em;
}
.twoColHybLtHdr #sidebar1 #search input {
	margin: 0.5em 0em 0em 0em;
	border:solid 1px #CCC;
}
.twoColHybLtHdr #sidebar1 #search select {
	border:solid 1px #CCC;
}
.twoColHybLtHdr #mainContent #searchagain select {
	border: solid 1px #AAA;
}
.twoColHybLtHdr #mainContent #searchagain input {
	border: solid 1px #AAA;
}
#skipnav a, #skipnav a:hover, #skipnav a:visited
{
position:absolute;
left:-10000px;
top:auto;
width:1px;
height:1px;
overflow:hidden;
}
#skipnav a:active, #skipnav a:focus
{
position:static;
width:auto;
height:auto;
} 
.twoColHybLtHdr #breadcrumbs { 
	margin: 0 1em 0 11em;
} 
.twoColHybLtHdr #breadcrumbs p { 
	font-size: 60%;
	margin: 0.5em 0em 0em 0em;
}

/* Tips for mainContent:
1. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
2. Be aware it is possible to cause float drop (the dropping of the non-floated mainContent area below the sidebar) if an element wider than it can contain is placed within the mainContent div. WIth a hybrid layout (percentage-based overall width with em-based sidebar), it may not be possible to calculate the exact width available. If the user's text size is larger than average, you will have a wider sidebar div and thus, less room in the mainContent div. You should be aware of this limitation - especially if the client is adding content with Contribute.
3. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This may help avoid several IE-specific bugs.
*/
.twoColHybLtHdr #mainContent { 
	margin: 0 1em 0 11em; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. */
} 
.twoColHybLtHdr #mainContent h1 {
	font-size: 100%;
	margin: 1em 0em 0em 0em;
} 
.twoColHybLtHdr #mainContent h2 {
	font-size: 85%;
	margin: 1em 0em 0em 0em;
} 
.twoColHybLtHdr #mainContent h3 {
	font-size: 75%;
	margin: 1.2em 0em 0em 0em;
}
.twoColHybLtHdr #mainContent p {
	font-size: 80%;
	margin: 0.7em 0em 0em 0em;
}
.twoColHybLtHdr #mainContent p.paraafterstatreq {
	margin: 0.2em 0em 0em 0em;
}
p.javscriptmessage {
	font-size: 60%;
	margin: 0.2em 0.2em 0.2em 0.2em;
}
.twoColHybLtHdr #mainContent table tr th, .twoColHybLtHdr #mainContent table tr td, .twoColHybLtHdr #mainContent table.barriers tr th, .twoColHybLtHdr #mainContent table.barriers tr td {
	border: 1px;
	border-style: solid;
	border-color: #666;
	border-collapse: collapse;
	border-spacing: 0px;
	padding: 0.3em 0.8em 0.3em 0.8em;
	font-size: 80%;
	vertical-align: top;
}
.twoColHybLtHdr #mainContent table, .twoColHybLtHdr #mainContent table.barriers {
	border-collapse: collapse;
	width: 100%;
	margin: 1.2em 0em 0em 0em;
}
.twoColHybLtHdr #mainContent table.barriers tr td ul {
	font-size: 95%;
	margin: 0em 0em 1em 1em;
	font-weight: normal;
}
.twoColHybLtHdr #mainContent ul {
	font-size: 80%;
	margin: 0.7em 0em 0em 3em;
	font-weight: bold;
}
.twoColHybLtHdr #mainContent ol {
	font-size: 80%;
	margin: 0.7em 0em 0em 4em;
	font-weight: bold;
}
.twoColHybLtHdr #mainContent ul li {
	margin: 0em 0em 0.7em 0em;
}
.twoColHybLtHdr #mainContent ol li {
	margin: 0em 0em 0.7em 0em;
}
.twoColHybLtHdr #mainContent table ul.ullistintable {
	font-size: 100%;
	margin: 0em 0em 0em 0em;
	font-weight: normal;
	list-style-type: none;
}
.twoColHybLtHdr #mainContent ul li.lilistintable {
	margin: 0em 0em 0.4em 0em;
}
.twoColHybLtHdr #mainContent table ul.ulbulllistintable {
	font-size: 100%;
	margin: 0.3em 1em 0em 1.5em;
	font-weight: normal;
}
.twoColHybLtHdr #mainContent table ol.olbulllistintable {
	font-size: 100%;
	margin: 0.3em 1em 0em 2em;
	font-weight: normal;
}
.twoColHybLtHdr #mainContent ul li.statreqs {
	list-style-image: url(../images/scales.gif);
	margin: 1em 0em 0.2em 0.5em;
	font-weight: bold;
}
.twoColHybLtHdr #mainContent ul.statreq {
	list-style-image: url(../images/scales.gif);
	margin: 0em 0em 0em 3.5em;
	font-weight: bold;
	font-size: 100%;
}
.twoColHybLtHdr #mainContent ul.statreq li {
	margin: 0.2em 0.5em 0.2em 0em;
}
.twoColHybLtHdr #mainContent ul.statreq li p {
	font-size: 100%;
}
.twoColHybLtHdr #mainContent ul.checklist {
	font-weight: normal;
	font-size: 80%;
	list-style-image: url(../images/tick-bullet.gif);
}
.twoColHybLtHdr #mainContent ul.checklist li {
	border-width: 1px;
	border-color: #FFFFBB;
	border-style: solid;
	padding: 0.3em 0.5em 0.3em 1em;
	list-style-position: inside;
	background-color: #FFFFEE;
}
.twoColHybLtHdr #mainContent ul.checklist ul {
	font-weight: normal;
	font-size: 80%;
	margin: 0.3em 0em 0.3em 8em;
	padding: 0em 1em;
	list-style-image: none;
}
.twoColHybLtHdr #mainContent ul.checklist ul li {
	margin: 0.15em 0em 0.15em 0em;
	border-style: none;
	padding: 0em 0em 0em 0em;
}
.twoColHybLtHdr #mainContent ul.learningoutcomes {
	font-weight: normal;
	font-size: 80%;
}
.twoColHybLtHdr #mainContent ul.additionalresources {
	font-weight: normal;
	font-size: 80%;
}
.twoColHybLtHdr #mainContent ul.ulnormaltext {
	font-weight: normal;
	font-size: 80%;
}
.twoColHybLtHdr #mainContent ol.olnormaltext {
	font-weight: normal;
	font-size: 80%;
}
.twoColHybLtHdr #mainContent ul.tableofcontents {
	font-weight: normal;
	font-size: 80%;
}
.twoColHybLtHdr #mainContent ul.tableofcontents li {
	margin: 0.4em 0em 0em 0em;
}
.twoColHybLtHdr #mainContent ul.tableofcontents ul {
	font-weight: normal;
	font-size: 90%;
	margin: 0.4em 0em 0em 3em;
}
.twoColHybLtHdr #mainContent ul.tableofcontents ul ul {
	font-weight: normal;
	font-size: 95%;
}
.twoColHybLtHdr #mainContent ul.tableofcontents ul ul ul {
	font-weight: normal;
	font-size: 95%;
}
.twoColHybLtHdr #mainContent ul.menualtlinks {
	margin: 2em 1em 0em 0em;
	font-weight: normal;
	font-size: 60%;
	list-style-type: none;
}
.twoColHybLtHdr #mainContent ol.menualtlinks {
	margin: 2em 1em 0em 2em;
	font-weight: normal;
	font-size: 60%;
}
.twoColHybLtHdr #mainContent ul.menualtlinks li {
	margin: 0.15em 0em 0em 0em;
}
.twoColHybLtHdr #mainContent ol.menualtlinks li {
	margin: 0.15em 0em 0em 0em;
}
.twoColHybLtHdr #mainContent ul.listplainwobullet {
	list-style-type: none;
	font-weight: normal;
	margin: 0.5em 1em 0.5em 0.75em;
}
.twoColHybLtHdr #mainContent ul.listwobullet {
	list-style-type: none;
	margin: 0.5em 1em 0.5em 0.75em;
}
.twoColHybLtHdr #mainContent ul.listindentplainwobullet {
	list-style-type: none;
	font-weight: normal;
	margin: 0.3em 1em 0.5em 4em;
}
.twoColHybLtHdr #mainContent ul.listindentplainwobullet li {
	margin: 0.3em 1em 0em 0em;
}
.twoColHybLtHdr #mainContent .boxeddiv {
	border-style: solid;
	border-width: 1px;
	border-color: #333;
	padding: 0em 0.7em 0.4em 0.7em;
	margin: 0.5em 1em 0em 0em;
}
.twoColHybLtHdr #mainContent p.pworkedexample {
	font-size: 80%;
	margin: 0.1em 0em 0em 0em;
}
.twoColHybLtHdr #mainContent .workedexamplelargetextintro, .twoColHybLtHdr #mainContent .workedexamplelargetextleadandguide, .twoColHybLtHdr #mainContent .workedexamplelargetextassess, .twoColHybLtHdr #mainContent .workedexamplelargetextplan, .twoColHybLtHdr #mainContent .workedexamplelargetextdeliver  {
	font-size: 125%;
	font-weight: bold;
}
.twoColHybLtHdr #mainContent .arrow {
	margin: 0em 0em 0em 2em;
}
.twoColHybLtHdr #mainContent .menuimagemap {
	margin: 1em 0em 1em 7em;
	border: 0px;
}
.twoColHybLtHdr #mainContent .submenuimagemap {
	margin: 1em 0em 1em 8em;
	border: 0px;
}
.twoColHybLtHdr #mainContent form textarea {
	border-style: solid;
	border-width: 1px;
	border-color: #000;
}
.twoColHybLtHdr #mainContent form table.saq label {
	position:absolute;
	left:-10000px;
	top:auto;
	width:1px;
	height:1px;
	overflow:hidden;
}
.twoColHybLtHdr #mainContent form table.saq label.showlabel {
	position:static;
	vertical-align:top;
}
.twoColHybLtHdr #mainContent form input.btn {
	margin: 2.5em 1em 1em 2.5em;
}
.twoColHybLtHdr #mainContent form p.explanation {
	margin: 0em 0em 0em 5.5em;
	text-indent: -3em;
	font-size: 70%;
}
.twoColHybLtHdr #mainContent table.saq {
	font-size: 90%;
	border-collapse: collapse;
	width: 100%;
}
.twoColHybLtHdr #mainContent table.saq p {
	font-size: 90%;
}
.twoColHybLtHdr #mainContent table.saq ul.saqstatreqs {
	margin: 0.5em 0.5em 0.5em 2em;
	font-size: 100%;
	font-weight: normal;
}
.superscript {
	position: relative;
	bottom: 0.4em;
	font-size: 0.8em;
}
.normaltext {
	font-weight: normal;
}
.twoColHybLtHdr #mainContent p.footnote {
	font-size: 60%;
}
.twoColHybLtHdr #navbottom {
	font-size: 60%;
	text-align: right;
	margin: 2.5em 1em 0.5em 0em;
}
.twoColHybLtHdr #footer { 
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #FFFFFF;
} 
.twoColHybLtHdr #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 */
}

/* Miscellaneous classes for reuse */
.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: 12px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 12px;
}
.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: 0.1em;
    line-height: 0;
}
.clearfloatright { /* 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: right;
    height: 0;
    font-size: 0.1em;
    line-height: 0;
}
.twoColHybLtHdr #mainContent p.saqquestion {
	margin-bottom: 1.2em;
}
.saqresponse {
	float:right;
	margin: 0.5em 5em 0.5em 5em;
}
.twoColHybLtHdr #mainContent p.saqanswer {
	margin: 0.5em 0em 0em 7em;
	text-indent: -3.8em;
}
.twoColHybLtHdr #mainContent form p.saqanswer label {
	margin-left: 1em;
}
.graphic {
	margin: 2em 0em 2em 0em;
}
p.centre {
	text-align: center;
}
.hidden {
	position:absolute;
	left:-10000px;
	top:auto;
	width:1px;
	height:1px;
	overflow:hidden;
}

/*Set colour schemes for different chapters */

/*Set colour schemes for Intro chapter */
#intro #header {
	border-color: #8A619D; /* border colour to set */
} 
.twoColHybLtHdr #colourintro h1, .twoColHybLtHdr #colourintro h2, .twoColHybLtHdr #colourintro h3, .twoColHybLtHdr #colourintro th, .twoColHybLtHdr #colourintro ul { /* set colour for chapter */
	color: #4F3259; /* colour to set */
}
.twoColHybLtHdr #mainContent #colourintro table tr th, .twoColHybLtHdr #mainContent #colourintro table tr td, .twoColHybLtHdr #mainContent #colourintro table.barriers tr th, .twoColHybLtHdr #mainContent #colourintro table.barriers tr td {
	border-color: #4F3259; /* colour to set */
}
.twoColHybLtHdr #mainContent #colourintro table tr th, .twoColHybLtHdr #mainContent #colourintro table.barriers tr th {
	background-color: #F5E0FE; /* colour to set, lighter tint */
}
.twoColHybLtHdr #mainContent #colourintro .boxeddiv {
	border-color: #4F3259; /* colour to set */
	background-color: #F5E0FE; /* colour to set, lighter tint */
}
.twoColHybLtHdr #mainContent #colourintro ul.checklist li {
	border-color: #4F3259; /* colour to set */
	background-color: #F5E0FE; /* colour to set, lighter tint */
}
.twoColHybLtHdr #mainContent .workedexamplelargetextintro {
	color: #4F3259; /* colour to set */
}
.twoColHybLtHdr #mainContent #colourintro ul li.statreqs {
	list-style-image: url(../images/scales.gif);
}
.twoColHybLtHdr #mainContent #colourintro ul.statreq {
	list-style-image: url(../images/scales.gif);
}
.twoColHybLtHdr #mainContent #colourintro ul.checklist {
	list-style-image: url(../images/tick-bullet.gif);
}
#intro #sidebar1 {	
	background-color: #F5E0FE; /* colour to set, lighter tint */
}

/*Set colour schemes for Lead & Guide chapter */
#leadandguide #header {
	border-color: #A8700F; /* border colour to set */
} 
.twoColHybLtHdr #colourleadandguide h1, .twoColHybLtHdr #colourleadandguide h2, .twoColHybLtHdr #colourleadandguide h3, .twoColHybLtHdr #colourleadandguide th, .twoColHybLtHdr #colourleadandguide ul { /* set colour for chapter */
	color: #352805; /* colour to set */
}
.twoColHybLtHdr #mainContent #colourleadandguide table tr th, .twoColHybLtHdr #mainContent #colourleadandguide table tr td, .twoColHybLtHdr #mainContent #colourleadandguide table.barriers tr th, .twoColHybLtHdr #mainContent #colourleadandguide table.barriers tr td {
	border-color: #352805; /* colour to set */
}
.twoColHybLtHdr #mainContent #colourleadandguide table tr th, .twoColHybLtHdr #mainContent #colourleadandguide table.barriers tr th {
	background-color: #FEEBC5; /* colour to set, lighter tint */
}
.twoColHybLtHdr #mainContent #colourleadandguide .boxeddiv {
	border-color: #352805; /* colour to set */
	background-color: #FEEBC5; /* colour to set, lighter tint */
}
.twoColHybLtHdr #mainContent #colourleadandguide ul.checklist li {
	border-color: #352805; /* colour to set */
	background-color: #FEEBC5; /* colour to set, lighter tint */
}
.twoColHybLtHdr #mainContent .workedexamplelargetextleadandguide {
	color: #352805; /* colour to set */
}
.twoColHybLtHdr #mainContent #colourleadandguide ul li.statreqs {
	list-style-image: url(../images/scales-lead.gif);
}
.twoColHybLtHdr #mainContent #colourleadandguide ul.statreq {
	list-style-image: url(../images/scales-lead.gif);
}
.twoColHybLtHdr #mainContent #colourleadandguide ul.checklist {
	list-style-image: url(../images/tick-bullet-lead.gif);
}
#leadandguide #sidebar1 {	
	background-color: #FEEBC5; /* colour to set, lighter tint */
}

/*Set colour schemes for Assess chapter */
#assess #header {
	border-color: #A5B867; /* border colour to set */
} 
.twoColHybLtHdr #colourassess h1, .twoColHybLtHdr #colourassess h2, .twoColHybLtHdr #colourassess h3, .twoColHybLtHdr #colourassess th, .twoColHybLtHdr #colourassess ul { /* set colour for chapter */
	color: #364619; /* colour to set */
}
.twoColHybLtHdr #mainContent #colourassess table tr th, .twoColHybLtHdr #mainContent #colourassess table tr td, .twoColHybLtHdr #mainContent #colourassess table.barriers tr th, .twoColHybLtHdr #mainContent #colourassess table.barriers tr td {
	border-color: #364619; /* colour to set */
}
.twoColHybLtHdr #mainContent #colourassess table tr th, .twoColHybLtHdr #mainContent #colourassess table.barriers tr th {
	background-color: #D6F8A1; /* colour to set, lighter tint */
}
.twoColHybLtHdr #mainContent #colourassess .boxeddiv {
	border-color: #364619; /* colour to set */
	background-color: #D6F8A1; /* colour to set, lighter tint */
}
.twoColHybLtHdr #mainContent #colourassess ul.checklist li {
	border-color: #364619; /* colour to set */
	background-color: #D6F8A1; /* colour to set, lighter tint */
}
.twoColHybLtHdr #mainContent .workedexamplelargetextassess {
	color: #364619; /* colour to set */
}
.twoColHybLtHdr #mainContent #colourassess ul li.statreqs {
	list-style-image: url(../images/scales-assess.gif);
}
.twoColHybLtHdr #mainContent #colourassess ul.statreq {
	list-style-image: url(../images/scales-assess.gif);
}
.twoColHybLtHdr #mainContent #colourassess ul.checklist {
	list-style-image: url(../images/tick-bullet-assess.gif);
}
#assess #sidebar1 {
	background-color: #D6F8A1; /* colour to set, lighter tint */
}

/*Set colour schemes for Plan for Action chapter */
#plan #header {
	border-color: #8D5272; /* border colour to set */
} 
.twoColHybLtHdr #colourplan h1, .twoColHybLtHdr #colourplan h2, .twoColHybLtHdr #colourplan h3, .twoColHybLtHdr #colourplan th, .twoColHybLtHdr #colourplan ul { /* set colour for chapter */
	color: #500D26; /* colour to set */
}
.twoColHybLtHdr #mainContent #colourplan table tr th, .twoColHybLtHdr #mainContent #colourplan table tr td, .twoColHybLtHdr #mainContent #colourplan table.barriers tr th, .twoColHybLtHdr #mainContent #colourplan table.barriers tr td {
	border-color: #500D26; /* colour to set */
}
.twoColHybLtHdr #mainContent #colourplan table tr th, .twoColHybLtHdr #mainContent #colourplan table.barriers tr th {
	background-color: #FEC2DC; /* colour to set, lighter tint */
}
.twoColHybLtHdr #mainContent #colourplan .boxeddiv {
	border-color: #500D26; /* colour to set */
	background-color: #FEC2DC; /* colour to set, lighter tint */
}
.twoColHybLtHdr #mainContent #colourplan ul.checklist li {
	border-color: #500D26; /* colour to set */
	background-color: #FEC2DC; /* colour to set, lighter tint */
}
.twoColHybLtHdr #mainContent .workedexamplelargetextplan {
	color: #500D26; /* colour to set */
}
.twoColHybLtHdr #mainContent #colourplan ul li.statreqs {
	list-style-image: url(../images/scales-plan.gif);
}
.twoColHybLtHdr #mainContent #colourplan ul.statreq {
	list-style-image: url(../images/scales-plan.gif);
}
.twoColHybLtHdr #mainContent #colourplan ul.checklist {
	list-style-image: url(../images/tick-bullet-plan.gif);
}
#plan #sidebar1 {
	background-color: #FEC2DC; /* colour to set, lighter tint */
}

/*Set colour schemes for Deliver chapter */
#deliver #header {
	border-color: #544A87; /* border colour to set */
} 
.twoColHybLtHdr #colourdeliver h1, .twoColHybLtHdr #colourdeliver h2, .twoColHybLtHdr #colourdeliver h3, .twoColHybLtHdr #colourdeliver th, .twoColHybLtHdr #colourdeliver ul { /* set colour for chapter */
	color: #14114E; /* colour to set */
}
.twoColHybLtHdr #mainContent #colourdeliver table tr th, .twoColHybLtHdr #mainContent #colourdeliver table tr td, .twoColHybLtHdr #mainContent #colourdeliver table.barriers tr th, .twoColHybLtHdr #mainContent #colourdeliver table.barriers tr td {
	border-color: #14114E; /* colour to set */
}
.twoColHybLtHdr #mainContent #colourdeliver table tr th, .twoColHybLtHdr #mainContent #colourdeliver table.barriers tr th {
	background-color: #E0DCFD; /* colour to set, lighter tint */
}
.twoColHybLtHdr #mainContent #colourdeliver .boxeddiv {
	border-color: #14114E; /* colour to set */
	background-color: #E0DCFD; /* colour to set, lighter tint */
}
.twoColHybLtHdr #mainContent #colourdeliver ul.checklist li {
	border-color: #14114E; /* colour to set */
	background-color: #E0DCFD; /* colour to set, lighter tint */
}
.twoColHybLtHdr #mainContent .workedexamplelargetextdeliver {
	color: #14114E; /* colour to set */
}
.twoColHybLtHdr #mainContent #colourdeliver ul li.statreqs {
	list-style-image: url(../images/scales-deliver.gif);
}
.twoColHybLtHdr #mainContent #colourdeliver ul.statreq {
	list-style-image: url(../images/scales-deliver.gif);
}
.twoColHybLtHdr #mainContent #colourdeliver ul.checklist {
	list-style-image: url(../images/tick-bullet-deliver.gif);
}
#deliver #sidebar1 {
	background-color: #E0DCFD; /* colour to set, lighter tint */
}

/*Set colour schemes for Questionnaire chapter */
#questionnaire #header {
	border-color: #55D2FD; /* border colour to set */
} 
.twoColHybLtHdr #colourquestionnaire h1, .twoColHybLtHdr #colourquestionnaire h2, .twoColHybLtHdr #colourquestionnaire h3, .twoColHybLtHdr #colourquestionnaire th, .twoColHybLtHdr #colourquestionnaire ul { /* set colour for chapter */
	color: #134468; /* colour to set */
}
.twoColHybLtHdr #mainContent #colourquestionnaire table tr th, .twoColHybLtHdr #mainContent #colourquestionnaire table tr td, .twoColHybLtHdr #mainContent #colourquestionnaire table.barriers tr th, .twoColHybLtHdr #mainContent #colourquestionnaire table.barriers tr td {
	border-color: #134468; /* colour to set */
}
.twoColHybLtHdr #mainContent #colourquestionnaire table tr th, .twoColHybLtHdr #mainContent #colourquestionnaire table.barriers tr th {
	background-color: #BFE9FB; /* colour to set, lighter tint */
}
.twoColHybLtHdr #mainContent #colourquestionnaire .boxeddiv {
	border-color: #134468; /* colour to set */
	background-color: #BFE9FB; /* colour to set, lighter tint */
}
.twoColHybLtHdr #mainContent #colourquestionnaire ul.checklist li {
	border-color: #134468; /* colour to set */
	background-color: #BFE9FB; /* colour to set, lighter tint */
}
.twoColHybLtHdr #mainContent .workedexamplelargetextquestionnaire {
	color: #134468; /* colour to set */
}
.twoColHybLtHdr #mainContent #colourquestionnaire ul li.statreqs {
	list-style-image: url(../images/scales.gif);
}
.twoColHybLtHdr #mainContent #colourquestionnaire ul.statreq {
	list-style-image: url(../images/scales.gif);
}
.twoColHybLtHdr #mainContent #colourquestionnaire ul.checklist {
	list-style-image: url(../images/tick-bullet.gif);
}
#questionnaire #sidebar1 {
	background-color: #BFE9FB; /* colour to set, lighter tint */
}

