@charset "UTF-8";

@import url(//fonts.googleapis.com/css?family=Open+Sans:400,400i,700,700i);
@import url(//fonts.googleapis.com/css?family=Roboto+Condensed:300,300i);

html,
body {
	margin: 0;
	padding: 0;
	height: 100%;
	background-color: #eee;
	color: #000;
	font-family: 'Open Sans', Arial, sans-serif;
	font-weight: 400;
	font-size: 110%;
}
.pagecontainer {
	box-sizing: border-box;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}
header.page {
	position: fixed;
	top: 0;
	left: 0;
	line-height: 30px;
	width: 100%;
	color: #fff;
	z-index: 999;
}
header.page .logo {
	float: left;
	margin-left: 0px;
}
header.page h1 {
	margin: 0;
	padding: 0;
	font-family: 'Open Sans', sans-serif;
	font-size: 1.4em;
	color: #fff;
}
header.page nav {
	background-color: #214459;
}
header.page ul {
	float: right;
	list-style: none;
	margin: 0 20px 0 0;
	padding: 0;
	text-transform: uppercase;
}

header.page a { 
	display: block; 
	box-sizing: border-box;
	height: 70px; 
	line-height: 70px; 
	padding: 0 15px; 
	color: #fff; 
	text-decoration: none;
}
header.page li { 
	float: left; 
	position: relative; 
	margin-right: 1px;
	padding-bottom: 0;
	overflow: show;
	transition: all 0.2s linear;
}
header.page li.selected,
header.page li:focus { 
	background-color: #278;
}
header.page li:hover { 
	background-color: #167;
}
header.page li:hover ul { 
	display: block; 
}
header.page ul[role=menu] { 
	position: absolute; 
	width: 300px;
	display: none; 
	text-transform: none;
	background-color: #167; 
	z-index: 999; 
	-webkit-box-shadow: 0 15px 15px rgba(0, 0, 0, 0.5); 
	-moz-box-shadow: 0 15px 15px rgba(0, 0, 0, 0.5); 
	box-shadow: 0 15px 15px rgba(0, 0, 0, 0.5); 
	transition: all 0.2s linear;
} 
header.page ul[role=menu] li { 
	float: none; 
}
header.page ul[role=menu] a { 
	height: auto;
	line-height: normal;
	padding: 15px 15px 15px 35px;
	text-indent: -10px;
	border-top: 1px solid #214459;
}
header.page ul[role=menu] span { 
	display: inline-block;
	width: 10px;
}
header.page ul[role=menu] li:hover,
header.page ul[role=menu] li.selected { 
	background-color: #278; 
}
.banner {
	height: 400px;
	background: url(banner_bg.jpg) top center no-repeat #000;
	/* banner image from www.category-management.ca/2013/08/category-management-training-planograms/ */
	background-size: cover;
	color: #fff;
}
[role=main] {
	min-height: 400px;
	padding-top: 70px;
	background-color: #fff;
	color: #000;
}
[role=main].hasbanner {
	padding-top: 20px;
}
.pagecontainer .modulelist {
	list-style: none;
	margin: 10px 0;
	padding: 0;
}
.pagecontainer .modulelist a {
	display: block;
	padding: 15px 15px 15px 35px; 
	text-decoration: none;
	color: inherit;
	text-indent: -10px;
}
.pagecontainer .modulelist span { 
	display: inline-block;
	width: 10px;
}
.pagecontainer .modulelist li {
	box-sizing: border-box; 
	margin-bottom: 3px;
	background-color: #eee;
	color: #000;
	transition: all 0.1s linear;
}
.pagecontainer .modulelist li:hover,
.pagecontainer .modulelist li:focus {
	background-color: #278;
	color: #fff;
}
.gotop {
	display: none;
	width: 60px;
	height: 60px;
	position: fixed;
	bottom: 40px;
	right: 60px;
	line-height: 58px;
	border-radius: 7px;
	background-color: rgba(0, 0, 0, .5);
	color: #fff;
	text-decoration: none;
	text-align: center;
}
.gotop:hover {
	background-color: rgba(0, 0, 0, .75);
}
footer.page {
	padding-bottom: 200px;
}
.treetitle { 
	margin: 0; 
	padding: 0 0 5px 0; 
	font-weight: 700;
}
.treetitle span { 
	display: block;
	font-weight: 400;
}
.toggle_example {
	display: block;
	width: 180px;
	padding: 10px;
	background-color: #278;
	color: #fff;
	text-decoration: none;
	transition: all .2s linear;
}
.toggle_example:hover,
.toggle_example:focus {
	background-color: #214459;
	color: #fff;
}
.toggle_example span {
	font-size: 1.4em;
	line-height: 0.6em;
	vertical-align: -2px;
}
.example {
	display: none;
	padding: 10px 20px;
	border: 1px solid #214459;
}
.definition {
	display: block;
	margin: 20px 0;
	padding: 15px;
	background-color: #eee;
	color: #000;
	text-align: center;
	font-weight: bold;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.print {
	display: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure {
	margin: 10px 0;
	padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 300;
}
h1 {
	font-size: 2em;
	color: #214459;
}
h2 {
	font-size: 1.8em;
	color: #356;
}
h3 {
	font-size: 1.6em;
	color: #467;
}
h4 {
	font-size: 1.4em;
}
h5 {
	font-size: 1.2em;
}
strong {
	font-weight: 700;
}
a { 
	color: #278;
}
a[id] {
	display: block;
	margin: 80px 0px;
	border-top: 3px solid #000;
}
a[id=top] {
	margin: 0;
	border: none;
}
table {
	max-width: 100%;
	margin: 0 auto;
	border-collapse: collapse;
	border: 1px solid #214459;
}
td,
th {
	margin: 0;
	padding: 10px 5px;
	border: 1px solid #214459;
	vertical-align: top;
}
th {
	background-color: #eee;
	vertical-align: middle;
	text-align: left;
}
thead th { 
	text-align: center;
}
li {
	padding-bottom: 5px;
}
img {
	max-width: 100%;
	height: auto;
}
figcaption {
	margin: 0 0 30px 0;
	font-style: italic;
}

.left { float: left; }
.right { float: right !important; }

.readers_only {
	position: absolute; 
	left: -10000px; 
	top: auto; 
	width: 1px; 
	height: 1px; 
	overflow: hidden;
}

.cf:before, .cf:after { display: block; content: ''; }
.cf:after { clear: both; }

.col { display: block; float: left; }
.span_12_of_12 { width: 100%; }
.span_11_of_12 { width: 91.66%; }
.span_10_of_12 { width: 83.33%; }
.span_9_of_12 { width: 75%; }
.span_8_of_12 { width: 66.66%; }
.span_7_of_12 { width: 58.33%; }
.span_6_of_12 { width: 50%; }
.span_5_of_12 { width: 41.66%; }
.span_4_of_12 { width: 33.33%; }
.span_3_of_12 { width: 25%; }
.span_2_of_12 { width: 16.66%; }
.span_1_of_12 { width: 8.333%; }


@media only print {
	header.page,
	[role=main],
	footer.page {
		display: none;
	}
	.print {
		display: block;
	}
	.ik-accordion dd { 
		display: block !important;
	}
}