/*		Resetting Stylesheet		*/

/*		1.	RESET MAIN ELEMENTS		*/
/*		2.	COMMON CLASSES			*/
/*		3.	TYPOGRAPHY				*/
/*		4.	FORMS					*/

												/** 1.	RESET MAIN ELEMENTS **/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, 
*, .x {												/* .x removes any inherent styling to elements below */
	margin: 0;
	padding: 0;
	color: #333;
	font-family: "Verdana", Verdana;
	font-size: 100%;
	font-weight: normal;
	font-style: normal;
	line-height: 1.60em;
	text-decoration: none;
	text-align: left;
	vertical-align: baseline;
	border: 0;
	outline: 0;
	}
	:focus {
		outline: 0;
		}
ul, ol, dd {
	list-style-position: outside;
	list-style: none;
	line-height: 1.50em;
	}
ol {
	list-style-type: decimal;
	list-style-position: outside;
	}
	dt { font-weight: bold; }
	dd { padding: 0; }
table { 
	border-collapse: separate;
	border-spacing: 0;
	}
	table th { font-weight: bold; }
hr {
	display: block;
	width: 100%;
	height: 1px;
	color: #aaa;
	background: #aaa;
	border: none;
	}






												/** 2.	COMMON CLASSES **/
.hide	{ display: none;	}
.inline	{ display: inline;	}
.block	{ display: block;	}
.nfloat	{ float: none;		}
.lfloat	{ float: left;		}
.rfloat	{ float: right;		}
.clear	{ clear: both;		}
.lclear	{ clear: left;		}
.rclear	{ clear: right;		}

.navigation		{ list-style: none; }
.navigation li	{ display: inline; 	}

.debug { border: 1px solid red; }






												/** 3.	TYPOGRAPHY **/

code, pre, var, .monospace {
	margin: 0.80em 0;
	font-family: "Palatino Linotype", "Courier New", monospace;
	line-height: 1.50em;
	}
	code strong, pre strong, 
	var strong, .monospace strong {
		color: #c33;
		background: inherit;
		}
del {
	color: #888;
	background-color: inherit;
	text-decoration: line-through;
	}
abbr {
	font-size: 0.90em;
	text-transform: uppercase;
	border-bottom: 1px dashed #ddd;
	cursor: help;
	}
acronym {
	font-size: 0.90em;
	text-transform: uppercase;
	letter-spacing: 0.10em;
	}
strong			{ font-weight: 		bold;		}
em, i, cite		{ font-style: 		italic;		}
u, .u			{ text-decoration: 	underline;	}

h1, h2, h3, 
h4, h5, h6 { font-weight: bold; }
h1 {  font-size: 2.40em; 	}
h2 {  font-size: 2.00em;	}
h3 {  font-size: 1.80em; 	}
h4 {  font-size: 1.60em; 	}
h5 {  font-size: 1.20em; 	}
h6 {  font-size: 1.00em; 	}

s, strike 	{ text-decoration: line-through; }
sub 		{ vertical-align: sub; 			 }
sup 		{ vertical-align: sup; 			 }
u 			{ text-decoration: underline; 	 }

p {
	margin: 0.50em 0 1.00em 0;
	line-height: 1.50em;
	}
a {
	color: #06f;
	background-color: inherit;
	text-decoration: underline;
	}
	a:visited 	{ color: #00ace4; background: inherit; }
	a:hover 	{ color: #fd1d71; background: inherit; }
	a:active 	{ color: #333; background: inherit; }

blockquote, q {
	color:#575757;
	background: transparent url("images/quote.png") no-repeat 0 0;
	font-weight: bold;
	font-style: italic;
	padding: 5px 20px;
	}
	blockquote p, q p {
		margin: 0;
		padding: 0.80em;
		color: #666;
		background: inherit;
		}



												/** 4.	FORMS **/

fieldset 	{ border: 0; 	}
.input 		{ clear: left; 	}
label {
	display: block;
	float: left;
	padding: 3px;
	font-weight: bold;
	}
	label.xs 	{ width: 50px; 	}
	label.s 	{ width: 100px; }
	label.m 	{ width: 150px; }
	label.l 	{ width: 200px; }
	label.xl 	{ width: 250px; }

input.default, textarea.default,
select.default {
	float: left;
	padding: 3px;
	border: 1px solid #aaa;
	border-right: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	}
	input.xs 	{ width: 20px; 	}
	input.s 	{ width: 50px; 	}
	input.m 	{ width: 125px; }
	input.l 	{ width: 200px; }
	input.xl 	{ width: 300px; }
button {
	padding: 2px 5px;
	color: white;
	background-color: black;
	font-weight: bold;
	text-align: center;
	border: 0;
	cursor: pointer;
	}
	button.xs 	{ width: 15px; 	}
	button.s 	{ width: 30px; 	}
	button.m 	{ width: 50px; 	}
	button.l 	{ width: 80px; 	}
	button.xl 	{ width: 120px; }






															/** END **/
															
															
/* Begin Images */
p img {
	padding: 0;
	max-width: 100%;
	}

/*	Using 'class="alignright"' on an image will (who would've
	thought?!) align the image to the right. And using 'class="centered',
	will of course center the image. This is much better than using
	align="center", being much more futureproof (and valid) */

img.centered {
	display: block;
	margin-left: auto;
	margin-right: auto;
	}

img.alignright {
	padding: 4px;
	margin: 0 0 2px 7px;
	display: inline;
	}

img.alignleft {
	padding: 4px;
	margin: 0 7px 2px 0;
	display: inline;
	}

.alignright {
	float: right;
	}

.alignleft {
	float: left
	}
/* End Images */															
															
															
															
/* Default Stylesheet */

															/** BODY ELEMENTS **/
body,
html {
	font-size: .75em;
	text-align: center;
	}






															/** MAIN CONTAINERS **/
div#container {
	width: 950px;
	margin: 0 auto;
	text-align: left;
	}
	body.fullwidth div#container { width: 100%; }
	div#header {
		
		}
		div#header-in {
		height: 60px;
			
			}
	div#content-wrap {
		
		}
		div.content {
					-moz-border-radius-topright: 2em;
					-moz-border-radius-bottomleft: 2em;
					-webkit-border-radius: 2em;			
			}
			div.content-in {
				
					font-size: 12px;
				
					font-family: Arial, Helvetica, sans-serif;
									
				}
	div#footer {
		
		}
		div#footer-in {

				line-height: 4px;

				font-weight: bold;

				font-family: , Helvetica, sans-serif;

				font-size: 15px;

				color: white;
				
			}

															/** END **/

	/* lelijk stuk code */														
#sidebarsezer
		{
			float: right;
			width: 170px;
			padding-top: 1em;
			padding: 0.8em;
			background-color: #eee;
			font-size: 12px;
			text-decoration: none;
		}
	
#contentsezer
		{
			padding-top: 1em;
			margin: 0 100px 0 2em;
		}

#search{
	border: 1px solid #b3b3b3;
	background-color:#ffffff;
	height: 20px;
	margin: 0 15px 0 0;
	padding: 0 10px 0 0;
	width:125px;
}

	/* END lelijk stuk code */	

/* Default Stylesheet */

															/** BODY ELEMENTS **/
body,
html {
	color: #333;
	background-color: #eee;
	background-image:url(images/graybackground.gif)
	}






															/** MAIN CONTAINERS **/
div#container {
	margin: 2em auto;
	}
	div#header {
		color: inherit;
		background-image: url(images/header.png);
		background-repeat: no-repeat;
		border: 1px solid #e5e5e5;
		border-width: 0 0px 0px 0;
		}
		div#header-in {
			padding: 20px;
			}
	div#content-wrap {
		padding: 10px 0;
		}
		div.content {
			border-top-color: #e5e5e5;
			border-left-color: #e5e5e5;
			border-bottom-color: #e5e5e5;
			border-right-color: #e5e5e5;
			border-style: solid;
			color: inherit;
			background-color: #fff;
			border-width: 1px;
			}
			div.content-in {
				padding: 20px;

				}
	div#footer {
		clear: both;
		color: inherit;
		background-color: #eef2f8;
		border: 1px solid #e5e5e5;
		border-width: 0 0px 0px 0;
		height: 340px;
		}
		div#footer-in {
			padding: 20px;
			}


#footercolumns {
padding:1em 0 0 5%;
}
#footercolumns .block {
float:left; width:30%;
margin:0 0 0 2.5%;
}
#footercolumns .first, * html #footercolumns .first{
clear:both;
margin:0;
}

/* the end */

/* @group navigation */

#navigation {
	float: left;
	margin: 47px 0px 0 0px;
	font: bold 13px/30px "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-transform: lowercase;
	text-shadow: #fff 0 1px 1px;
}

#navigation li {
	float: left;
	padding-right: 2px; 
	background: url(images/nav-li.png) no-repeat right 0;
}

#navigation li a {
	float: left;
	padding: 1px 13px 5px; 
	background: url(images/nav-a.png) repeat-x 0 0;
	color: #666;
}

#navigation li.selected a,
#navigation li.selected a:hover {
	color: #fe136f;
	cursor: default;
	text-decoration: none;
}

#navigation li.selected a:focus {
	color: #069;
}

#navigation li a:hover,
#navigation li a:focus {
	color: #fd1d71;
	text-decoration: none;
}

#navigation li a:active {
	padding-top: 2px;
	padding-bottom: 4px;
}

#navigation li.first a { 
	background: url(images/nav-a-first.png) no-repeat 0 0;
	padding-left: 22px;
}

#navigation li.last {
	background: none;
	padding: 0;
}

#navigation li.last a { 
	background: url(images/nav-a-last.png) no-repeat right 0;
	padding-right: 22px;
}

/* @end */


/* wp-table */
.wp-table-reloaded {
	background-color:#CDCDCD;
	margin:10px 0px 15px 0px;
	font-size:8pt;
	width:85%;
	text-align:left;
}
.wp-table-reloaded th {
	background-color:#00a6e2;
	border:1px solid #FFFFFF;
	padding:2px;
}
.wp-table-reloaded td {
	color:#3D3D3D;
	padding:2px;
	background-color:#FFFFFF;
	vertical-align:top;
}
.wp-table-reloaded .even td {
	background-color:#FFFFFF;
}
.wp-table-reloaded .odd td{
	background-color:#eef2f8;
}
.wp-table-reloaded .even td:hover{
	background: #FFFFFF;
}
.wp-table-reloaded .odd td:hover {
	background: #FFFFFF;
}
.wp-table-reloaded .header {
	background-image:url(http://www.rentegeld.nl/wp-content/plugins/wp-table-reloaded/img/bg.gif);
	background-repeat:no-repeat;
	background-position:center right;
	cursor:pointer;
}
.wp-table-reloaded .headerSortUp {
	background-color:#8DBDD8;
	background-image:url(http://www.rentegeld.nl/wp-content/plugins/wp-table-reloaded/img/asc.gif);
}

.wp-table-reloaded .headerSortDown {
	background-color:#8DBDD8;
	background-image:url(http://www.rentegeld.nl/wp-content/plugins/wp-table-reloaded/img/desc.gif);
}
/* end wp-table */


/* hoogste rente */
a#hoogsterente {
	position: fixed;
	left: 0;
	bottom: 0;
	display: block;
	height: 80px;
	width: 80px;
	background: url(images/hoogste-rente.png) bottom right no-repeat;
	text-indent: -999em;
	text-decoration: none;
}
/* end hoogste rente */


/* kansloze button */
.awesome, .awesome:visited {
	background: #222 url(images/alert-overlay.png) repeat-x; 
	display: inline-block; 
	padding: 5px 10px 6px; 
	color: #fff; 
	text-decoration: none;
	-moz-border-radius: 5px; 
	-webkit-border-radius: 5px;
	-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
	text-shadow: 0 -1px 1px rgba(0,0,0,0.25);
	border-bottom: 1px solid rgba(0,0,0,0.25);
	position: relative;
	cursor: pointer;
}

	.awesome:hover							{ background-color: #111; color: #fff; }
	.awesome:active							{ top: 1px; }
	.small.awesome, .small.awesome:visited 			{ font-size: 14px; padding: ; }
	.awesome, .awesome:visited,
	
	.magenta.awesome, .magenta.awesome:visited		{ background-color: #fd1d71; }
	.magenta.awesome:hover							{ background-color: #fd1d71; }
	.blue.awesome, .blue.awesome:visited		{ background-color: #06f; }
	.blue.awesome:hover							{ background-color: #06f; }
	.green.awesome, .green.awesome:visited		{ background-color: #179400; }
	.green.awesome:hover							{ background-color: #179400; }
		
/* end kansloze button */

															/** END **/
