@charset "utf-8";
/* CSS Document */

.oneColFixCtr #menu {
	width: 176px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background-color: #EC1C24; /* the background color will be displayed for the length of the content in the column, but no further */
	text-align:right;
	margin:24px 0 0 0;
	padding:0;
	border:1px none #000;
	height:372px;
	display:block;
	font-family:Arial, Helvetica, sans-serif;
	float:left;
}

.oneColFixCtr #menu ul {
	list-style: none;
	margin:0;
	padding:0;
	float:right;
	width:148px;
}

.oneColFixCtr #menu li {
	float:left;
	white-space:nowrap; /* wel of niet een <br/> forceren?*/
}

.oneColFixCtr #menu a {
	text-decoration:none;
	border: none;
	cursor:hand;
	color:#fff;
}

.oneColFixCtr #menu a:hover {
	text-decoration:none;
	border: none;
	cursor:hand;
	color:#666;
}

.oneColFixCtr #menu .menu-leftside
{
	background-image:url(../images/menu-left.jpg);
	background-repeat:no-repeat;
	background-position:top;
	width:11px;
	height:27px;
	display:block;
	float:left;
}

.oneColFixCtr #menu .menu-selected .menu-leftside 
{
	background-image:url(../images/menu-left-selected.jpg); /*afbeelding linkerkant niet geselecteerde tabje*/
	background-repeat:no-repeat;
	background-position:top;
}

.oneColFixCtr #menu .menu-text { /* height krijgt fix voor ie6, ivm padding" */
	color:#fff;
	background-image:url(../images/menu-mid.jpg); /*afbeelding niet geselecteerde tabje*/
	background-repeat:repeat-x;
	background-position:top;
	height:27px;
	width:137px;
	display:block;
	float:left;
	padding:7px 0 0 0;
	border: 1px none #fff; /*als er een border is alle zijde mee geven*/ 
	font-size:11px;
	font-weight:bold;
	text-align:left;
}

.oneColFixCtr #menu .menu-selected .menu-text {
	background-image:url(../images/menu-mid-selected.jpg);
	background-repeat:repeat-x;
	background-position:top;
	color:#fff;
}

.oneColFixCtr #menu .menu-rightside {
	background-image:none;
	background-repeat:no-repeat;
	background-position:top;
	width:0px;
	height:27px;
	display:block;
	float:left;
}

.oneColFixCtr #menu .menu-selected .menu-rightside{
	background-image:none; /* afbeelding linkerkant niet geselecteerde tabje*/
	background-repeat:no-repeat;
	background-position:top;
	height:27px;
	width:0px;
}

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
