.pagetitle{
	background-color: #FFFFF0;
	color: Black;
	border-bottom : thin solid #FFEFD5;
	border-top : thin solid #FFEFD5;
	width:80%;
	text-align: center;
	letter-spacing: 5px;
	font-family: "MS Serif", "New York", serif;
	margin-top: 13px;
}

.pagetitle .sub{
	font-size: 70%;
	letter-spacing: 2px;
}


body {
	margin:0px;
	padding:0px;
	font-family:verdana, arial, helvetica, sans-serif;
	color:#333;
	background-color:white;
	}
h1 {
	margin: 10px 0px 15px 0px;
	font-size:28px;
	line-height:28px;
	font-weight:900;
	color:#ccc;
	font-variant: small-caps;
}

h3 {
	margin: 10px 0px 15px 0px;
	font-size:20px;
	line-height:20px;
	font-weight:600;
	color:#ccc;
	font-variant: small-caps;
}

h6 {
	margin: 10px 0px 15px 0px;
	font-size:22px;
	line-height:22px;
	font-weight:700;
	color:#ccc;
	font-variant: small-caps;
}

H31 {
	PADDING-RIGHT: 0px; 
    DISPLAY: block; 
    PADDING-LEFT: 0px; 
    PADDING-BOTTOM: 0px; 
    MARGIN: 0px; 
    PADDING-TOP: 0px; 
    FONT-FAMILY: Georgia,"New Century Schoolbook",Times,serif
    text-decoration: none;
	font-variant: small-caps;
}

/*  */



H4 {
	PADDING-RIGHT: 0px; 
    DISPLAY: block; 
    PADDING-LEFT: 0px; 
    PADDING-BOTTOM: 0px; 
    MARGIN: 0px; 
    PADDING-TOP: 0px; 
    FONT-FAMILY: Georgia,"New Century Schoolbook",Times,serif;
    text-decoration:none;
    
}

p {
	font:11px/20px verdana, arial, helvetica, sans-serif;
	margin:0px 0px 16px 0px;
	padding:0px;
	}

.button
{
	cursor:hand;
	border-style:groove;
	height:18px;
	font-family:Verdana;
	font-size:xx-small;
}


.dataentry
{
	color:Black;
	font-size:x-small;
	/* height:22; */
	
}
.dataentry .label
{
	width:200;
	text-align:right;
	margin:0px 15px 0px 0px;	
}

#content {
	margin: 0px 50px 50px 200px;
	padding:10px ;
	width : 720;
	height:500;

	/*
	border-left-width:medium;
	border-left-color:Gray;
	border-left-style:dashed;
	*/
}

#content>p {
	margin: 0px 0px;
}

#content>p+p {text-indent:30px;}

#mainmenu
{
	width:950px;
}

#mainmenu a {

/*	color:#09c;  */
	color:#CD9933;	
	font-size:11px;
	text-decoration:none;
	font-weight:600;
	font-family:verdana, arial, helvetica, sans-serif;
	}








/* */


#mainmenu a:link {
	color:#9494C8;
	/*color:#09c;*/
	
	}
#mainmenu a:visited {
	/*color:#07a;*/
	color:#9494C8;
	
	}
#mainmenu a:hover {background-color:#eee;}

#contextmenu {
	position:absolute;
	top:60px;
	left:20px;
	width:162px;
	padding:10px;
	background-color:  #FFFFF0;
	border-right : thin solid #FFEFD5;
	line-height:17px;
	text-align: right;
/* Again, the ugly brilliant hack. */
	voice-family: "\"}\"";
	voice-family:inherit;
	
	}

#contextmenu a {

/*	color:#09c;  */
	color:#CD9933;	
	font-size:11px;
	text-decoration:none;
	font-weight:600;
	font-family:verdana, arial, helvetica, sans-serif;
	}

#contextmenu a:link {
	color:#9494C8;
	/*color:#09c;*/
	
	}
#contextmenu a:visited {
	/*color:#07a;*/
	color:#9494C8;
	
	}
#contextmenu a:hover {background-color:#eee;}


#Header {
	margin: 20px 0px 10px 0px;
	padding: 17px 0px 0px 20px;
	/* For IE5/Win's benefit height = [correct height] + [top padding] + [top and bottom border widths] */
	height:33px;
	/* 14px + 17px + 2px = 33px */
	border-style:solid;
	/*border-color:black;
	*/
	border-width:1px 0px;
	/* top and bottom borders: 1px;
	left and right borders: 0px */
	line-height:11px;
	/*background-color:#eee;
	*/
	background-color: #FFFFF0;
	color: Black;
	border-color: #FFEFD5;
	letter-spacing: 5px;
	
	/* Here is the ugly brilliant hack that protects IE5/Win from its own stupidity. Thanks to Tantek Celik for the hack and to Eric Costello for publicizing it. IE5/Win incorrectly parses the "\"
}"" value, prematurely closing the style 
declaration. The incorrect IE5/Win value is above, while the correct value is 
below. See http://glish.com/css/hacks.asp for details. */
	voice-family: "\"}\"";
	voice-family:inherit;
	height:14px; /* the correct height */
	}
/* I've heard this called the "be nice to Opera 5" rule. Basically, it feeds correct 
length values to user agents that exhibit the parsing error exploited above yet get 
the CSS box model right and understand the CSS2 parent-child selector. ALWAYS include
a "be nice to Opera 5" rule every time you use the Tantek Celik hack (above). */
body>#Header {height:14px;}


#footer {
	font-size:xx-small;
	margin: 0px 0px 10px 180;
	padding: 0px 0px 0px 10px;
	/* For IE5/Win's benefit height = [correct height] + [top padding] + [top and bottom border widths] */
	height:33px;
	/* 14px + 17px + 2px = 33px */
	border-style: solid none;
	/*border-color:black;
	*/
	border-width: 1px 0px 0px;
	/* top and bottom borders: 1px;
	left and right borders: 0px */
	line-height:11px;
	/*background-color:#eee;
	*/
	background-color: #FFFFF0;
	color: Black;
	border-color: #FFEFD5;
	/* Here is the ugly brilliant hack that protects IE5/Win from its own stupidity. Thanks to Tantek Celik for the hack and to Eric Costello for publicizing it. IE5/Win incorrectly parses the "\"
}"" value, prematurely closing the style 
declaration. The incorrect IE5/Win value is above, while the correct value is 
below. See http://glish.com/css/hacks.asp for details. */
	voice-family: "\"}\"";
	voice-family:inherit;
	height:14px; /* the correct height */
	}

	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	/*  **/
	
	
#logininfo{
	font-size:9px;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-weight:lighter;	
}



/* Again, "be nice to Opera 5". */
body>#Menu {width:150px;}


.rowitem{
	font-family:Verdana Arial;
	font-size:x-small;
	background-color:ivory;
	}
	
.rowalternatingitem{
	font-family:Verdana Arial;
	font-size:x-small;
	background-color:oldlace
	}
	
.tableheader
{
	background-color: Navy;
	color:White;
}


/*
politie blauw: color:#9494C8;;
politie brun:
*/
.item {
	CLEAR: both; MARGIN-TOP: 8px; WIDTH: auto;
    color: black;
}
.date {
	FONT: 10px verdana, arial, sans-serif; COLOR: #828279
}
.imgFloatL {
	FLOAT: left; MARGIN: 1px 4px 0px 0px
}
.imgFloatR {
	FLOAT: right; MARGIN: 1px 0px 8px 8px
}

.statbar
{
	font-family:Arial Verdana;
	font-size:xx-small;
	color:Navy;
	background-color:Yellow;
	width:25;
	font-style:oblique;
	writing-mode:tb-rl;
	}
.statbarcaption
{
	font-family:Arial Verdana;
	font-size:x-small;
	font-weight:bolder;
	color:Navy;
	text-align:center;
	background-color:Silver;
	
	width:25;
	}

.shopdescriptionhtml
{
	font-family:Verdana Arial;
	font-size:x-small;	
	}
	
	
	
	
		
.generalconditionsbox
{
	font-family:Verdana Arial;
	font-size:small;	
	font-weight:bold;
	border:solid 1 black;
	padding:5 5 5 5;

}
	
	
	
	
	
	
	
	
	
	
	
	
	