/* Start of CMSMS style sheet 'HGW 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: center;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 100%;
	line-height: 1em;
}
/*set font size for all divs, this overrides some body rules*/
div {
	font-size: 1em;
}
/*if img is inside "a" it would have borders, we don't want that*/
img {
	border: 0;
}
/*default link styles*/
a,
a:link,
a:active {
	text-decoration: underline;
	background-color: inherit;
	color: #FFFFFF;
}
a:visited {
	color: #FF409F;
}
a:hover {
	text-decoration: none;
	background-color: #FF409F;
	color: #FFFFFF;
}
/*****************basic layout *****************/
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	color: #FFFFFF;
        font-size: 11pt;
	background-color: #000000;
	background-image: url(uploads/HGWcss/hgw-bg.jpg);
	background-attachment: fixed;
	background-position: center bottom;
	margin: 0;
	padding: 0;
/*	text-align: center;*/
}
div#pagewrapper {
	width: 980px;
	margin: 0 auto;
	text-align: left;
}


/* header, we will hide h1 a text and replace it with an image, we assign a height for it so the image wont cut off */
div#header {
	height: 169px;
	padding: 0;
	background-image: url(uploads/HGWcss/header-maiandra.png);
	background-repeat: no-repeat;
}
div#header h1 a {
/* you can set your own image here */
	background: url(uploads/HGWcss/header-maiandra.png) no-repeat left top;
/* this will make the "a" link a solid shape */
	display: block;
/* adjust according your image size */
	height: 169px;
/* this hides the text */
	text-indent: -999em;
/* old firefox would have shown underline for the link, this explicitly hides it */
	text-decoration: none;
}
div#header h1 {
	margin: 0;
	padding: 0;
/*these keep IE6 from pushing the header to more than the set size*/
	height: 169px;
	font-size: 0;
/* this will keep IE6 from flickering on hover */
	background: url(uploads/HGWcss/header-maiandra.png) no-repeat left top;
}


div#content {
	margin: 0;
	padding: 0px;
        min-height: 450px;
}

div#main {
	margin: 0 258px 0 172px;
	padding: 0;
}


div#sidebar {
	float: left;
	width: 166px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 34px 0 15px 0;
}
div#rsidebar {
	float: right;
	width: 252px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 38px 0 0 0;
        font-size: 80%;
}

div#footer {
	padding: 20px 0 20px 172px;
	color: #FF409F;
	font-size: 0.8em;
}

div#footer p {
	margin: 0;
}
div#footer a:link,
div#footer a:active,
div#footer a:visited {
/* footer link would be same color as default we want it same as footer text */
	color: #FF409F;
}
div#footer a:hover {
        backgrounscolor: @ff409F;
        text-decoration: none;
        color: #FFFFFF;
}
/* 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;
}

/********************CONTENT STYLING*********************/
/* HEADINGS */
div#content h1 {
/* font size for h1 */
	font-size: 2em;
	line-height: 1em;
	margin: 0;
}
div#content h2 {
	color: #FF409F;
	font-size: 1.5em;
	text-align: left;
        line-height: 15px;
	margin: 0 0 23px 0;
}
div#content h3 {
	color: #FF409F;
	font-size: 1em;
	line-height: 1.3em;
	margin: 0 0 0.5em 0;
}
div#content h4 {
	color: #FF409F;
	font-size: 1em;
        font-style: italic;
	line-height: 1.3em;
	margin: 0 0 0.25em 0;
}
div#content h5 {
	color: #FF409F;
	font-size: 0.9em;
	line-height: 1.3em;
	margin: 0 0 0.25em 0;
}
h6 {
	color: #FF409F;
	font-size: 0.6em;
	line-height: 1.3em;
	margin: 0 0 0.25em 0;
}


div#main h2,
div#main h3,
div#main h4 {
        font-variant: small-caps;
        text-transform: lowercase;   
}
/* END HEADINGS */
/* TEXT */
p {
/* default p font size, this is set different in some other divs */
	font-size: 1em;
/* some air around p elements */
	margin: 0 0 1.5em 0;
	line-height: 1.4em;
	padding: 0;
}
blockquote {
	border-left: 10px solid #ddd;
	margin-left: 10px;
}
strong, b {
/* explicit setting for these */
	font-weight: bold;
}
em, i {
/* explicit setting for these */
	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 1em 1em 1em;
	padding: 0.5em;
	line-height: 1.5em;
	font-size: 90%;
}
/* Separating the divs on the template explanation page */
div.templatecode {
	margin: 0 0 2.5em;
}
/* END TEXT */
/* LISTS */
/* lists in content need some margins to look nice */
div#main ul,
div#main ol,
div#main dl {
/*	font-size: 1.0em;*/
	line-height: 1.4em;
	margin: 0 0 1.5em 1.5em;
	list-style-position: outside;
}
div#main ul {
	list-style-image:url(uploads/HGWcss/bullet.png);
}
div#main ul li,
div#main ol li {
	margin: 0 0 0.25em 0;
}
/* definition lists topics on bold */
div#main dl {
	margin-bottom: 2em;
	padding-bottom: 1em;
	border-bottom: 1px solid #c0c0c0;
}
div#main dl dt {
	font-weight: bold;
	margin: 0 0 0 1em;
}
div#main dl dd {
	margin: 0 0 1em 1em;
}
/* END LISTS */

/*  EXTRA LAYOUT ELEMENTEN */
.apropos {
        font-size: 80%;
        font-style: italic;
}
.hogeregel {
        line-height: 30px;
}
/* End of 'HGW layout' */

