﻿/* Reset the defaults */
ul,ol {/*no list-markers by default, since lists are used more often for semantics*/
	list-style:none;
	}
li {/*necessary to put them in horizontal order*/
	float:left;
	}
* {/*remove the, among browsers, inconsistent margin, padding and border defaults*/
	margin:0;
	padding:0;
	border:none;
	background-color:#ffffff;
	color:#000000;
	font-family:Optima,Verdana,sans-serif;
	font-size: 87%;/*all font sizes are related to this initial 'small' font-size setting (which is more or less 12pt)*/
	font-weight: normal;/*avoid browser default inconsistent heading and pre/code font-sizes*/
	font-style:normal;/* De-italicise adress etc.*/
	vertical-align:middle;
	text-align:center;
	}
blockquote, i {font-style:italic;}
b {font-weight:bold;}
h1 {font-size:201%;}
h2 {font-size:175%;}
h3 {font-size:152%;}
h4 {font-size:132%;}
h5 {font-size:115%;}
h6 {font-size:100%;}
/* table {border-collapse:collapse;} */
abbr, acronym, ins, del, kbd, var, cite {cursor:help;}/*Show 'help' cursor where applicable*/
/* Common */
p {text-align:left;
	}
/* Forms (default markup) */
label, select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
	cursor:pointer;
	}
input:focus, textarea:focus {
	background-color:#eeeeee;
	color:#111111;
	}
/*menu's etc.*/
.breadcrumb li {
	border-left: 2px solid #8760c1;
	}
.breadcrumb li.first {
	border-left: none;
	}
a:link {	text-decoration:underline;}
a:visited {text-decoration:none;border:1px dotted}
a:hover {text-decoration:none;border:2px solid;cursor:hand;}
a:active {text-decoration:none;border:2px double}
