body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	background: #000;
	margin: 0;
	padding: 0;
	color: #fff;
	background-color: #000000;
}

/* GENERAL SETTINGS */
ul, ol, dl {
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;
	padding: 0;
}
img {
	margin:10px 0 5px;
}
a img {
	border: none;
}
a:link {
	color:#999;
	text-decoration: underline;
}
a:visited {
	color: #ccc;
	text-decoration: underline;
}
a:hover, a:active, a:focus {
	text-decoration: none;
}

/* DIV STRUCTURE */
#container {
	max-width: 1024px;
	min-width: 600px;
	margin: 0 auto;
	background-color: #000;
	padding: 20px;
	font-size: 90%;
}

#header {
	width:100%;
	background-color: #000;
	margin-bottom: 28px;
}

#colmask {
	position:relative;
	float:left;
	width:100%;
	overflow:hidden;
	background-color: #000;	/* right column background colour */
	margin-bottom: 20px;
}
#colmid,
#colleft {
	float:left;
	width:100%;
	position:relative;
}
#colmid {
	right:25%;			/* width of the right column */
	background-color: #000;		/* center column background colour */
}
#colleft {
	right:50%;			/* width of the middle column */
	background-color: #000;	        /* left column background colour */
}
#col1,
#col2,
#col3 {
	float:left;
	position:relative;
	padding:0 0 1em 0;	/* no left and right padding on columns, we just make them narrower instead; only padding bottom is included here, make it whatever value you need */
	overflow:hidden;
}
#col1 {
	width:33%; /* width of center column content (column width minus padding on either side) */
	left:112%;	/* 100% plus left padding of center column */
	background-color: #000;
	font-size: 85%;
}
#col2 {
	width:31%;	 /* Width of left column content (column width minus padding on either side) */
	left:42%;  /* width of (right column) plus (center column left and right padding) plus (left column left padding) */
	background-color: #000;
	font-size: 100%;
}
#col3 {
	width:33%; /* Width of right column content (column width minus padding on either side) */
	left:85%; /* Please make note of the brackets here:
			 (100% - left column width) plus (center column left and right padding) plus (left column left and right padding) plus (right column left padding) */
	background-color: #000;
	font-size: 85%;
}

#footer {
	width:100%;
	background-color: #000;
	clear: both; /* tells container where floating elements end, so it can enclose them all */
}
#footer p {
	padding:10px;
	margin:0;
}

/* OTHER COMMON DEFINITIONS */
.floatright {  /* 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: 8px;
}
.floatleft { /* this class can be used to float an element left in your page. The floated
element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.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: 1px;
	line-height: 0px;
}

/* DEFINITIONS NEEDED ONLY WHEN ID OR CLASS IS USED IN YOUR SITE */
#header h1 a {
/* you can set your own image here */
	background: url(/uploads/HolyGrail/logoCMS.png) no-repeat left top;
/* this will make the "a" link a solid shape */
	display: block;
/* adjust according your image size */
	height: 100px;
/* this hides the text */
	text-indent: -999em;
/* old firefox would have shown underline for the link, this explicitly hides it */
	text-decoration: none;
}
#header h1 {
	margin: 0;
	padding: 0;
	line-height: 0;
	font-size: 0;
	background: url(/uploads/HolyGrail/logoCMS.png) no-repeat left top;
}
#search {
	float: right;
	width: 27em;
	text-align: right;
	padding: 0.5em 0 0.2em 0;
	margin: 0 1em;
}
input.search-button {
	border: none;
	height: 22px;
	width: 53px;
	margin-left: 5px;
	padding: 0px 2px 2px 0px;
	cursor: pointer;
	background: url(/uploads/HolyGrail/search.gif) no-repeat center center;
}

#breadcrumbs {
	padding: 1em 0em 1em 1em;
	font-size: 90%;
	margin: 0px;
}
#breadcrumbs span.lastitem {
	font-weight: bold;
}

#relational-links {
}
.left49 {
/* combined percentages of left+right equaling 100%  might lead to rounding error on some browser */
	width: 70%;
}
.right49 {
	float: right;
	width: 29%;
	text-align: right;
}
/* Stylesheet: HolyGrail // hg-00 layout Modified On 2013-12-13 21:41:39 */
/* based on "Navigation: CSSMenu - Horizontal" by Alexander Endresen and mark and Nuno */
#menu_hor {
	margin: 0;
	padding: 0;
	font-size: 80%;
}
.clearb {
	clear: both;
}
#menu_hor #menuwrapper {
/* set the background color for the menu here */
	background-color: #000;
	width: auto;
	margin: 0;
	padding: 0;
}
#menu_hor ul#primary-nav,
#menu_hor ul#primary-nav ul {
/* remove any default bullets */
	list-style-type: none;
	margin: 0;
	padding: 0;
}
#menu_hor ul#primary-nav {
/* pushes the menu div up to give room above for background color to show */
	padding-top: 10px;
/* keeps the first menu item off the left side */
	padding-left: 10px;
}
#menu_hor ul#primary-nav ul {
/* make the ul stay in place so when we hover it lets the drops go over the content below else it will push everything below out of the way */
	position: absolute;
/* top being the bottom of the li it comes out of */
	top: auto;
/* keeps it hidden till hover event */
	display: none;
/* same size but different color for each border */
	border-top: 1px solid #222;
	border-right: 1px solid #444;
	border-bottom: 1px solid #666;
	border-left: 1px solid #888;
}
#menu_hor ul#primary-nav ul ul {
/* now we move the next level ul down from the top a little for distinction */
	margin-top: 1px;
/* pull it in on the left, helps us not lose the hover effect when going to next level */
	margin-left: -1px;
/* keeps the left side of this ul on the right side of the one it came out of */
	left: 100%;
/* sets the top of it inline with the li it came out of */
	top: 0px;
}
#menu_hor ul#primary-nav li {
/* floating left will set menu items to line up left to right else they will stack top to bottom */
	float: left;
/* no margin/padding keeps them next to each other, the padding will be in the "a" */
	margin: 0px;
	padding: 0px;
}
#menu_hor #primary-nav li li {
/* Set the width of the menu elements at second level. Leaving first level flexible. */
	width: 220px;
/* removes any left margin it may have picked up from the first li */
	margin-left: 0px;
/* keeps them tight to the one above, no missed hovers */
	margin-top: -1px;
/* removes the left float set in first li so these will stack from top down */
	float: none;
/* relative to the ul they are in */
	position: relative;
}
/* set the "a" link look here */
#menu_hor ul#primary-nav li a {
/* specific font size, this could be larger or smaller than default font size */
	font-size: 1em;
/* make sure we keep the font normal */
	font-weight: normal;
/* set default link colors */
	color: #fff;
/* pushes out from the text, sort of like making links a certain size, if you give them a set width and/or height you may limit you ability to have as much text as you need */
	padding: 12px 15px 15px;
	display: block;
/* sets no underline on links */
	text-decoration: none;
}
#menu_hor ul#primary-nav li a:hover {
/* kind of obvious */
	background-color: transparent;
}
#menu_hor ul#primary-nav li li a:hover {
/* this is set to #000, black, below so hover will be white text */
	color: #FFF;
}
#menu_hor ul#primary-nav li a.menuactive {
	color: #fff;
	font-weight: bold;
	background:  black;
}
#menu_hor ul#primary-nav li a.menuactive:hover {
	color: #fff;
/* keep it the same */
	font-weight: bold;
}
#menu_hor #primary-nav li li a.menuparent span {
/* makes it hold a shape */
	display: block;
/* set your image here, right arrow, 98% over from the left, 100% or 'right' puts it to far */
	background:  url(/uploads/HolyGrail/parent.png) no-repeat 98% center;
}

#menu_hor ul#primary-nav li ul a {
/* insures alignment */
	text-align: left;
	margin: 0px;
/* keeps it relative to it's container */
	position: relative;
/* less padding than first level no need for large links here */
	padding: 6px 3px 6px 15px;
/* if first level is set to bold this will reset this level */
	font-weight: normal;
/* first level is #FFF/white, we need black to contrast with light background */
	color: #fff;
	border-top: 0 none;
	border-right: 0 none;
	border-left: 0 none;
}
#menu_hor ul#primary-nav li ul {
/* very lite grey color, by now you should know what the rest mean */
	background: black;
	margin: 0px;
	padding: 0px;
	position: absolute;
	width: auto;
	height: auto;
	display: none;
	position: absolute;
	z-index: 999;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
}
#menu_hor ul#primary-nav li ul ul {
}
/* Styling the appearance of menu items on hover */
#menu_hor #primary-nav li:hover,
#menu_hor #primary-nav li.menuh,
#menu_hor #primary-nav li.menuparenth,
#menu_hor #primary-nav li.menuactiveh {
	background-color:  black;
	color: #fff;
}
/* The magic - set to work for up to a 3 level menu, but can be increased unlimited, for fourth level add
#menu_hor #primary-nav li:hover ul ul ul,
#menu_hor #primary-nav li.menuparenth ul ul ul,
*/
#menu_hor #primary-nav ul,
#menu_hor #primary-nav li:hover ul,
#menu_hor #primary-nav li:hover ul ul,
#menu_hor #primary-nav li.menuparenth ul,
#menu_hor #primary-nav li.menuparenth ul ul {
	display: none;
}
/* for fourth level add
#menu_hor #primary-nav ul ul ul li:hover ul,
#menu_hor #primary-nav ul ul ul li.menuparenth ul,
*/
#menu_hor #primary-nav li:hover ul,
#menu_hor #primary-nav ul li:hover ul,
#menu_hor #primary-nav ul ul li:hover ul,
#menu_hor #primary-nav li.menuparenth ul,
#menu_hor #primary-nav ul li.menuparenth ul,
#menu_hor #primary-nav ul ul li.menuparenth ul {
	display: block;
}
/* Stylesheet: HolyGrail // hg-05 CSSmenu horizontal Modified On 2013-12-13 12:28:13 */
/* accessibility */
/* menu links accesskeys */
span.accesskey {
	text-decoration: none;
}
/* accessibility divs are hidden by default, text, screenreaders and such will show these */
.accessibility, hr {
/* position set so the rest can be set out side of visual browser viewport */
	position: absolute;
/* takes it out top side */
	top: -999em;
/* takes it out left side */
	left: -999em;
}
/* definition tags are also hidden, these are also used for accessibility menu links */
dfn {
	position: absolute;
	left: -1000px;
	top: -1000px;
	width: 0;
	height: 0;
	overflow: hidden;
	display: inline;
}
/* end accessibility */
/* wiki style external links */
/* external links will have "(external link)" text added, lets hide it */
a.external span {
	position: absolute;
	left: -5000px;
	width: 4000px;
}
a.external {
/* make some room for the image, css shorthand rules, read: first top padding 0 then right padding 12px then bottom then right */
	padding: 0 12px 0 0;
}
/* colors for external links */
a.external:link {
	color: #18507C;
/* background image for the link to show wiki style arrow */
	background: url(/uploads/HolyGrail/external.gif) no-repeat 100% -100px;
}
a.external:visited {
	color: #18507C;
/* a different color can be used for visited external links */
/* Set the last 0 to -100px to use that part of the external.gif image for different color for active links external.gif is actually 300px tall, we can use different positions of the image to simulate rollover image changes.*/
	background: url(/uploads/HolyGrail/external.gif) no-repeat 100% -100px;
}
a.external:hover {
	color: #18507C;
/* Set the last 0 to -200px to use that part of the external.gif image for different color on hover */
	background: url(/uploads/HolyGrail/external.gif) no-repeat 100% 0;
	background-color: inherit;
}
/* end wiki style external links */
/* clearing */
/* clearfix is a hack for divs that hold floated elements. it will force the holding div to span all the way down to last floated item. We strongly recommend against using this as it is a hack and might not render correctly but it is included here for convenience. Do not edit if you dont know what you are doing*/
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.clear {
	height: 0;
	clear: both;
	width: 90%;
	visibility: hidden;
}
#main .clear {
	height: 0;
	clear: right;
	width: 90%;
	visibility: hidden;
}
* html>body .clearfix {
	display: inline-block;
	width: 100%;
}
* html .clear {
/* Hides from IE-mac \*/
	height: 1%;
	clear: right;
	width: 90%;
/* End hide from IE-mac */
}
/* end clearing */
/* Stylesheet: HolyGrail // hg-19 accessibility + crossbrowser Modified On 2013-12-13 09:15:44 */
/* Sample FormBuilder CSS base */
form {
	margin-top: 0
}
form, td, th, li {
	font-size: 100%
}
form div {
	margin-bottom: 0
}
fieldset div {
	margin-bottom: 0.5em;
	margin-left: 1em;
}
fieldset div div {
	margin-top: 0.5em;
	margin-left: 1em
}
fieldset {
	margin-bottom: 1em;
	border: 1px solid #000;
	padding: 0.5em
}
fieldset label {
	width: auto;
}
legend {
	color: #000;
	background: #000;
	font-style: italic;
	font-size: 1.2em;
	margin-bottom: 0.5em;
	padding: 0.2em;
	width: auto;
	border: 1px solid #000
}
textarea {
	margin: 0.5em 0;
	width: 98%;
	height: 6em
}
/* Apply this class to text/select input fields with shorter labels to help alignment */
.short-label label {
	float: left;
	width: 10em
}
.short-label fieldset div input, .short-label fieldset div select {
	width: 16em
}
/* Pretty up your Captcha image output */
.captcha {
	margin: 0.5em 0;
	width: 200px;
	text-align: center
}
.captcha img {
	border: 1px solid #000;
	margin-bottom: 0.5em
}
.captcha input {
	width: 196px;
	margin-top: 0.5em
}
/* Just a bit more room for the Submit button */
.submit {
	margin-left: 2em
}
.contactform input {
	border: 1px solid #000;
}
.contactform input.checkbox {
	border: none;
}
.contactform label {
	display: block;
	float: left;
	width: 150px;
}
.contactform label.label {
	display: inline;
	float: none;
	width: 50px;
	font-size: 10px;
}
.contactform textarea {
	background-color: #999;
	border: 1px solid #000;
}
.formbuilderform .message {
	line-height: 16px;
	padding: 0 0 8px 0;
}
/* Stylesheet: FormBuilder Default Style Modified On 2013-12-13 22:00:20 */
/* accessibility */
/* menu links accesskeys */
span.accesskey {
	text-decoration: none;
}
/* accessibility divs are hidden by default, text, screenreaders and such will show these */
.accessibility, hr {
/* position set so the rest can be set out side of visual browser viewport */
	position: absolute;
/* takes it out top side */
	top: -999em;
/* takes it out left side */
	left: -999em;
}
/* definition tags are also hidden, these are also used for accessibility menu links */
dfn {
	position: absolute;
	left: -1000px;
	top: -1000px;
	width: 0;
	height: 0;
	overflow: hidden;
	display: inline;
}
/* end accessibility */
/* wiki style external links */
/* external links will have "(external link)" text added, lets hide it */
a.external span {
	position: absolute;
	left: -5000px;
	width: 4000px;
}
a.external {
/* make some room for the image, css shorthand rules, read: first top padding 0 then right padding 12px then bottom then right */
	padding: 0 12px 0 0;
}
/* colors for external links */
a.external:link {
	color: #18507C;
/* background image for the link to show wiki style arrow */
	background: url(http://audivo.nl/uploads/NCleanBlue/external.gif) no-repeat 100% -100px;
}
a.external:visited {
	color: #18507C;
/* a different color can be used for visited external links */
/* Set the last 0 to -100px to use that part of the external.gif image for different color for active links external.gif is actually 300px tall, we can use different positions of the image to simulate rollover image changes.*/
	background: url(http://audivo.nl/uploads/NCleanBlue/external.gif) no-repeat 100% -100px;
}
a.external:hover {
	color: #18507C;
/* Set the last 0 to -200px to use that part of the external.gif image for different color on hover */
	background: url(http://audivo.nl/uploads/NCleanBlue/external.gif) no-repeat 100% 0;
	background-color: inherit;
}
/* end wiki style external links */
/* clearing */
/* clearfix is a hack for divs that hold floated elements. it will force the holding div to span all the way down to last floated item. We strongly recommend against using this as it is a hack and might not render correctly but it is included here for convenience. Do not edit if you dont know what you are doing*/
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.clear {
	height: 0;
	clear: both;
	width: 90%;
	visibility: hidden;
}
#main .clear {
	height: 0;
	clear: right;
	width: 90%;
	visibility: hidden;
}
* html>body .clearfix {
	display: inline-block;
	width: 100%;
}
* html .clear {
/* Hides from IE-mac \*/
	height: 1%;
	clear: right;
	width: 90%;
/* End hide from IE-mac */
}
/* end clearing */
/* Stylesheet: Accessibility and cross-browser tools Modified On 2009-05-13 10:42:54 */
