/*------------------------------------------------------------------
  GENERAL RULES
-------------------------------------------------------------------- */

* {
	/* overwrite all default browser settings */
	margin: 0;
	padding: 0;
}

/* General Elements
-------------------------------------------------------------------- */
img {
	border: 0;
}

img.blockimg {
	padding: 3px;
	margin: 0 10px 10px 0;
}
img.floatleft {
	padding: 3px;
	float: left;
	margin: 0 10px 10px 0;
}
img.floatright {
	padding: 3px;
	float: right;
	margin: 0 10px 10px 0;
}

p {
	margin: 1em 0;
	line-height: 18px;
}


/* Often used Cell Classes
-------------------------------------------------------------------- */
.cell_ervaringtop { 
	color: black; padding: 4px; border-top: 1px solid #808080; border-right: 1px solid #808080; border-left: 1px solid #808080; border-bottom: 1px solid #808080; 

}

/* Often used Text Classes
-------------------------------------------------------------------- */
.floatright {
	float: right;
	display: inline; /*to avoid IE double margin bug*/
}
.floatleft {
	float: left;
	display: inline; /*to avoid IE double margin bug*/
}
.left {
	text-align: left;
}
.center {
	text-align: center;
}
.right {
	text-align: right;
}
.justify {
	text-align: justify;
}

.underline {
	text-decoration: underline;
}
.overline{
	text-decoration: overline;
}

.bold {
	font-weight: bold;
}
.hide {
	display: none;
}


.capitalize {
	text-transform: capitalize;
}
.uppercase {
	text-transform: uppercase;
}
.lowercase {
	text-transform: lowercase;
}


.arial {
	font-family: Arial, Helvetica, sans-serif;
}
.times {
	font-family: Times New Roman, Times, serif;
}
.courier{
	font-family: Courier New, Courier, mono;
}
.georgia{
	font-family: Georgia, Times New Roman, Times, serif;
}
.verdana{
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
.geneva{
	font-family: Geneva, Arial, Helvetica, sans-serif;
}


/* CLEARFIX (http://www.positioniseverything.net/easyclearing.html)
-------------------------------------------------------------------- */

.clear {
	height: 1px;
	clear: both;
	font-size: 1px;
}
.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}
.clearfix {
	display: inline-table;
}
/* Hides from IE-mac \*/
* html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}
/* End hide from IE-mac */


