body, textarea {
	font-family: sans-serif;
	color: #222;
}
td.archived, td.canceled { color:#ccc; }
div.container {
    width: 100%;
}
.msselect { width:100%;  }
header, footer {
    padding: 0.3em;
    color: white;
    background-color: #4f81bd;
    clear: left;
    text-align: left;
	font-size: 2.5em;
}

div.home {
    padding-left: 0.2em;
	float: left;
	color: #4f81bd;
	font-size: 1.2em;
}

div.home a {
	text-decoration:none;
	color: #4f81bd;
}

div.search {
    padding: 1em;
	text-align: right;
	float: right;
}

div.clear {
	clear: both;
	border-top: 1px solid #ddd;
}

nav {
    float: left;
    max-width: 160px;
    margin: 0;
    padding: 0.5em;
}

nav ul {
    list-style-type: none;
    padding: 0;
}
   
nav ul li a {
    text-decoration: none;
	color: #333;
    margin-left: 10%;
}

nav ul li ul li a {
    color: #666;
}
nav ul li ul li ul li a {
    color: #CCC;
    margin-left: 20%;
}
nav ul li ul li ul li:before {
  color: #CCC;
  content: "\f054"; /* FontAwesome Unicode */
  font-family: FontAwesome;
  display: inline-block;
  margin-right: -1em; /* same as padding-left set on li */
  width: 1em; /* same as padding-left set on li */
}
section {
    /*margin-left: 170px;*/
    border-left: 1px solid #ddd;
    padding-left: 1em;
    overflow: hidden;
	/*max-width: 900px; */
	min-height: 500px;
}

div.tegel {
	margin: 1em;
    padding: 0.3em;
	height: 120px;
	width: 150px;
    color: white;
    background-color: #4f81bd;
    text-align: left;
	font-size: 1.2em;
	float: left;
}

/*div.tab { float:right; position:relative;}*/

table#banklijsttabel { font-size:0.8em; }

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 300px;
    background-color: #555;
    color: #fff;
    text-align: left;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -150px;
    opacity: 0;
    transition: opacity 1s;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}