/*
 * 	print.css
 *
 *	Global styles
 * 
 *
 *	Reset
 *	Basic HTML
 *		Contain
 *		Footer 
 *	Style
 *	Helpers
 *
 *
 *	Kleuren:
 *
 *	#3c3c3c 	donkergrijs		aandachtsteksten
 *	#676767		grijs			tekst, links
 *	#e4e4e4		lightgrijs		blocks bg
 *	#c0c0c0		grijs			blocks border 
 *	#fe0000		rood			
 *	#ffd800		geel
 *	#666		grijs			bg footer
 *
 * 
 */



/* -------------------------------------------------------------------------
	Reset
*/

* {
	margin: 0;
	padding: 0;
	border: 0;
	outline: none;
}


/* -------------------------------------------------------------------------
	Basic HTML
*/

html, body {
	font: normal 11px/16px Arial, Helvetica, sans-serif;
	color: #676767;	
	background-color: white;
	font-weight: normal;
	text-align: left;
}

a, 
a:link, 
a:active, 
a:focus,
a:visited {
	color: #fe0000;
	text-decoration: none;
}

a:hover { text-decoration: underline; }

a img, a header {border: none; }

p { margin-bottom: 16px; }

ul, ol {
	list-style-type: none;
	list-style-position: outside;
}

h1,
h1 a {
	font-size: 12px;
	line-height: 17px;
	margin-bottom: 2px;
	text-transform: uppercase;
	color: #fe0000;
}

input, textarea, select {
	color: #3c3c3c;
	border: 1px solid #c0c0c0;
}


/* ------------------------------------------------------------------------- 
	Container
*/

#container {
	width: 1004px;
	margin: 0 auto;
	text-align: left;
}


#header, #sidebar, #sidebar, #navigation, #footer {
	display: none !important;
}
#hdrLogoBW {
	display: block;
}

/* -------------------------------------------------------------------------
	Footer and copyright notice
*/

#footer {
	width: 909px;
	padding-right: 95px;
	height: 40px;
	float: left;
	margin-top: 17px;
	text-transform: uppercase;	
	background-color: #666;
	/* clear: both; */
	line-height: 40px;
	text-align: center;
	font-weight: bold;
	color: white;
}

#footer a, 
#footer a:link, 
#footer a:active, 
#footer a:focus,
#footer a:visited {
	color: white;
	padding: 0 7px 0 7px;
}

#footer a img {
	padding: 0;
	float: left;

}

#footer-copyright {
	width: 1004px;	
	float: left;
	margin-top: 16px;	
	display: block;
	text-transform: uppercase;
	text-align: center;
}

#footer-copyright a, 
#footer-copyright a:link, 
#footer-copyright a:active,
#footer-copyright a:focus,
#footer-copyright a:visited {
	color: #676767;
}


/* -------------------------------------------------------------------------
	Style
*/

.black,
.black a, 
.black a:link, 
.black a:active,
.black a:focus,
.black a:visited {
	color: black !important;
}

.dark-grey,
.dark-grey a,
.dark-grey a:link, 
.dark-grey a:active,
.dark-grey a:focus,
.dark-grey a:visited {
	color: #3c3c3c !important;
}

.light-grey { color: #bcbcbc; }

.red,
.red a, 
.red a:link, 
.red a:active,
.red a:focus,
.red a:visited {
	color: #fe0000 !important;
}

.txt-uppercase { text-transform:uppercase !important; }
.txt-no-uppercase { text-transform: none !important; }

.txt-underline { text-decoration: underline !important; }
.txt-no-underline { text-decoration: none !important; }

.txt-right { text-align: right !important; }
.txt-left { text-align: left !important; }
.txt-center { text-align: center !important; }

.req {
	width: 2px;
	padding-left: 6px;
	padding-right: 6px;	
	color: #fe0000;
	float: left;
	font-size: 16px;
	text-align: center;
	margin-top: 5px;
}
/* -------------------------------------------------------------------------
	Helpers
*/

.clear	{ clear: both; }
.left	{ float: left; }
.right	{ float: right; }

.no-margins { margin: 0; }
.no-paddings { padding: 0 !important; }

.hidden {
	height:0;
	visibility:hidden;
	width:0;
}

.width-100 {
	width: 100%;
}

.h32 {
	height: 32px;
}

