/* 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Title :  Default CSS
Version : 1.0

Description : Default CSS Stylesheet

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

*/

body {
    margin: auto;
    position: center;
	font-family: Verdana;
	background-color: #FFFFFF;
	padding-bottom:60px;   /* Hoogte voor de footer */
}

#container {
}

#content {
	margin-left: auto; 
	margin-right: auto;
	text-align: center; /*for IE */
}

#footer{
	font-size: 10px;
	font-weight: bold;
	text-align: center; /*for IE */
	position:absolute;
	bottom: 0px;
	width: 100%;
	height: 60px;
}
/** end div format */


/** font format */
h1{
	color: #4091e1;
}
/** end font format */


/** hyperlink format */
a:link {
    text-decoration: none;
	margin: 15px;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}
/** end hyperlink format */

/** fieldset formats */
fieldset {
	border:1px solid #999;
	border-radius:8px;
	box-shadow:0 0 10px #999;
	margin:auto;
}

/** table formats */
table {
	text-align: center; 
	margin-left: auto; 
	margin-right: auto;
	border-collapse: collapse;
	border: 0px;
}
tr.title  td{
	font-weight: bold;
}

/** image without border */
img {
	border: 0px;
}