/* Start of CMSMS style sheet 'Layout: default' */
/* Default Layout */

/* browsers interpret margin and padding a little differently, we'll remove all default padding and margins and set them later on */
* {
	margin: 0;
	padding: 0;
}
/*Set initial font styles*/
body {
	text-align: left;
	font-family: Calibri, Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 14px;
}
/*set font size for all divs, this overrides some body rules*/
div {
	font-size: 14px;
}
/*if img is inside "a" it would have borders, we don't want that*/
img {
	border: 0;
}
/*default link styles*/
/* set all links to have underline and bluish color */
a, a:link a:active {
	text-decoration: underline;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
	background-color: inherit;
	color: #5e5e61;
}
a:visited {
	text-decoration: underline;
	background-color: inherit;
	color: #5e5e61;
/* a different color can be used for visited links */
}
/* remove underline on hover and change color */
a:hover {
	text-decoration: none;
	background-color: inherit;
	color: #5e5e61;
}
/*****************basic layout *****************/
body {
	margin: 0;
	padding: 0;
	color: #333;
	background: #5e5e61;
}
div#pagewrapper {
	width: 920px;
	margin: 50px auto;
	background-color: #ffffff;
	color: #5e5e61;
}
div#topbar {
	width: 920px;
	height: 30px;
	background: #ffffff url(images/top.png) no-repeat left top;
	margin:0;
	padding:0;
}
div#bottombar {
	width: 920px;
	height: 30px;
	background: #ffffff url(images/bottom.png) no-repeat left top;
	margin:0;
	padding:0;
}
div#header {
	height: 84px;
	margin: 0 30px;
	padding: 0;
	background: #f5f5f5 url(images/logoknov.jpg) no-repeat left top;
}
div#header div h1 a {
	background: url(images/logo.jpg) no-repeat right top;
	display: block;
	height: 84px;
                magin-left:516px;
	text-indent: -999em;
	text-decoration: none;
}
div#header div h1 {
	margin: 0;
	padding: 0;
	line-height: 0;
	font-size: 0;
	background: url(images/logo.jpg) no-repeat right top;
}
div.crbk {
	margin: 0;
	padding: 0;
}
div#breadcrumbs{
	padding: 5px 40px 0 40px;
	margin: 0 30px;
	font-size: 12px;
	color: #e60d7c;
	background: #dfdfdf;
}
div#breadcrumbs a{
	font-size: 12px;
	font-weight: normal;
	color: #e60d7c;
	padding: 0;
	text-decoration: none;
}
div#breadcrumbs a:hover{
	text-decoration: underline;
}
div#content {
	padding: 30px 0 1px; 0;
	margin: 0 30px;
	background: #dfdfdf;
}
div#contentbottom {
	padding: 0;
	margin: 0 30px;
	height: 29px;
	background: url(images/contentbottom.gif) no-repeat right top;
}
div#main {
	margin:0 40px;
}
div#footer {
	clear: both;
	padding: 10px 0px;
	color: #ffffff;
	background: #5e5e61;
}
div#footer p {
	color: #ffffff;
	text-align:center;
}
div#footer p a {
	color: #ffffff;
	text-decoration: none;
}
div#footer p a:hover {
	color: #ffffff;
	text-decoration: underline;
}
div#graphic {
	margin: 0 30px;
	padding: 18px 0;
	background: #e60d7c;
	height: 250px;
}
div#boeken {
	height: 170px;
	overflow-x:auto;
	overflow-y:hidden;
	width: 940px;
}
/* as we hid all hr for accessibility we create new hr with div class="hr" element */
div.hr {
	height: 1px;
	padding: 1em;
	border-bottom: 1px dotted black;
	margin: 1em;
}
div.imgverl {
	float: left;
	padding: 0 10px 0 0;
	text-align: center;
}
.clearb {
/* needed for some browsers */
	clear: both;
}
/********************CONTENT STYLING*********************/
/* HEADINGS */
div#content h1 {
/* font size for h1 */
	color: #e60d7c;
	font-size: 20px;
	line-height: 20px;
	margin: 0;
}
div#content h2 {
	color: #5e5e61;
	font-size: 18px;
	text-align: left;
	padding-bottom: 1px;
	line-height: 18px;
	margin: 0 0 5px 0;
}
div#content h3 {
	color: #5e5e61;
	font-size: 16px;
	line-height: 18px;
	margin: 0 0 5px 0;
}
div#content h4 {
	color: #5e5e61;
	font-size: 14px;
	line-height: 16px;
	margin: 0 0 3px 0;
}
div#content h5 {
	color: #5e5e61;
	font-size: 14px;
	line-height: 16px;
	margin: 0 0 3px 0;
}
h6 {
	color: #5e5e61;
	font-size: 14px;
	line-height: 16px;
	margin: 0 0 3px 0;
}
/* END HEADINGS */
/* TEXT */
p {
	font-size: 14px;
	margin: 0 0 16px 0;
	line-height: 140%;
	padding: 0;
}
blockquote {
	border-left: 10px solid #ddd;
	margin-left: 10px;
}
strong, b {
	font-weight: bold;
}
em, i {
	font-style: italic;
}
/* Wrapping text in <code> tags. Makes CSS not validate */
code, pre {
/* css-3 */
	white-space: pre-wrap;
/* Mozilla, since 1999 */
	white-space: -moz-pre-wrap;
/* Opera 4-6 */
	white-space: -pre-wrap;
/* Opera 7 */
	white-space: -o-pre-wrap;
/* Internet Explorer 5.5+ */
	word-wrap: break-word;
	font-family: "Courier New", Courier, monospace;
	font-size: 1em;
}
pre {
/* black border for pre blocks */
	border: 1px solid #000;
/* set different from surroundings to stand out */
	background-color: #ddd;
	margin: 0 12px 12px 12px;
	padding: 0.5em;
	line-height: 18px;
	font-size: 90%;
}
/* Separating the divs on the template explanation page */
div.templatecode {
	margin: 0 0 25px;
}
/* END TEXT */
/* LISTS */
/* lists in content need some margins to look nice */
div#main ul,
div#main ol,
div#main dl {
	font-size: 14px;
	line-height: 16px;
	margin: 0 0 14px 0;
}
div#main ul li,
div#main ol li {
	margin: 0 0 3px 30px;
}
/* definition lists topics on bold */
div#main dl {
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 1px solid #c0c0c0;
}
div#main dl dt {
	font-weight: bold;
	margin: 0 0 0 12px;
}
div#main dl dd {
	margin: 0 0 12px 12px;
}
/* END LISTS */
/* End of 'Layout: default' */

