@charset "iso-8859-1";

/******************************************************************************
* CSS Kluwer Software (http://www.kluso.be)
*******************************************************************************
* Date creation	11/08/2005
* Author(s)			Wouter Steegmans (K-Logic / Axxes)
* Version			2.00 (ReStyle new branding Wolters Kluwer)
******************************************************************************/

/*********************** Some general property classes ************************
* These classes can be used as kind of properties. By defining more than one
* class on a tag, style-properties can be set.
* These will mainly used for <p> <div> and <span> tags.
*
* These are the default values and can be overridden in the theme-section ...
******************************************************************************/

.clear
{	clear: both;
	padding-bottom: 1px;	/* for Gecko-based browsers */
	margin-bottom: -1px;	/* for Gecko-based browsers */	
}

.block
{	display: block;}

.hide	
{	display: none;	}

.NoWrap
{	 white-space: nowrap;}

.linespacing100
{	line-height: 100%;}

.linespacing125
{	line-height: 125%;}

.linespacing150
{	line-height: 150%;}

.linespacing200
{	line-height: 200%;}

.nomargin
{	margin: 0px;}

.nomargintopbottom
{	margin-top: 0px;
	margin-bottom: 0px;
}
.nomargintop
{	margin-top: 0px;}

.nomarginbottom
{	margin-bottom: 0px;}

.nomarginleft
{	margin-left: 0px;}

.nomarginright
{	margin-right: 0px;}

.toleft
{	float:left;}

.toright
{	float:right;}

div.spacer
{
	clear: both;
	height: 10px;
}

.withborder
{	border-width: 1px;
	border-style: solid;
}

.withtopborder
{	border-top-width: 1px;
	border-top-style: solid;	
}

.withbottomborder
{	border-bottom-width: 1px;
	border-bottom-style: solid;		
}

.withleftborder
{	border-left-width: 1px;
	border-left-style: solid;
}

.withrightborder
{	border-right-width: 1px;
	border-right-style: solid;
}

.withwidepadding
{	padding: 15px;}

.withpadding
{	padding-left: 6px;
	padding-right: 6px;
	padding-top: 4px;
	padding-bottom: 4px;
	}

.withsmallpadding
{	padding: 2px;}

.noleftpadding
{	padding-left: 0px;}

.withsmallmargintop
{	margin-top: 3px;}

.withnormalleftrightpadding
{	padding-left: 5px;
	padding-right: 5px;
}

.withbottompadding
{	padding-bottom: 4px;
}

.nobottompadding
{	padding-bottom: 0px;
}

.valignMiddle
{	vertical-align: middle;}

.alignCenter
{	text-align: center;}

.alignRight
{	text-align: right;}

ul
{	list-style-type: square;}

ul.notab
{	padding-left: 0px;		/* When used, the li items has no tab (no whitespace) in front */
	margin-left: 18px;
}

li.minus
{	list-style-image: url(../img/Minus.gif);
	list-style-position: outside;
}

li.square
{	list-style-type: square;}


p.hiddenp						/* Sometimes used before block with background-color (IE-hack) */
{	height:0px;
	overflow:hidden;
	margin:0px;	
}

/*****************************************************************************/

/* glitch in IE caused by vertical padding in this class, so 0 padding is
 * set here and those blocks that need the vertical padding must be 
 * applied to the parent element. the purpose of this class is to provide
 * horizontal padding without using hacks to get around IE's broken box 
 * model. so it's okay to apply vertical padding to the parent element, 
 * just not horizontal padding. 
 */
.inside
{	padding-left: 1.2em; 
	padding-right: 1.2em;
	padding-bottom: 1.2em;
}

.insideleftright
{	padding-left: 1.2em; 
	padding-right: 1.2em;
}

/* margin values and font sizes for headings, and margins on paragraphs
 * and lists are not consistent across browser platforms. to achieve a
 * consistent look we need to explicity set these values here. We never
 * know what kind of horizontal padding a browser may be using on an
 * element.
 *
 * pixels are used here, rather than ems, because we want a consistent
 * margin on the different headings. if using ems, 1em for an h1 element
 * is much larger than 1em on an h6 element.
 */
ul, ol, dl, p, h1, h2, h3, h4, h5, h6
{	margin-top: 14px;
	margin-bottom: 14px;
	padding-top: 0;
	padding-bottom: 0;
}

h1
{	font-size: 220%;}

h2
{	font-size: 190%;}

h3
{	font-size: 160%;}

h4
{	font-size: 130%;}

h5
{	font-size: 100%;}

h6
{
	font-size: 100%;
	color: #D7004D;
	margin-top: 3px;
	margin-bottom: 3px;
}

/****************** Alter some HTML elements' default style ******************/

a, a:link, a:visited, a:active
{	text-decoration: underline; }

a:hover
{	text-decoration: none;}

a.img, a:link.img, a:visited.img, a:active.img
{	text-decoration: none; }

code
{	font-family: "Courier New", Courier, monospace; }

label, .ActAsAHref
{	cursor: pointer; }

table
{ font-size: 100%; }

td, th
{	vertical-align: top;}

td.valignmiddle, th.valignmiddle
{	vertical-align: middle; }

td.valignbottom, th.valignbottom
{	vertical-align: bottom; }

/*********************** Defining the page-structure ***************************
* The page-structure is based on a 2 or 3 column lay-out. The screen is
* full-screen, meaning the full width will be used ...

* This includes positioning and gutter space. colors and fonts should not come 
* into play at this point.
* when defining a border, default its color to white which is probably
* the safest thing to do.
******************************************************************************/

body
{	margin: 5px 0px 10px 0px;
								/* margin instead of padding for the gutterspace around the 
								 * layout because IE breaks the layout when horizontal padding 
								 * is applied to the body element. % over pixels for that horizontal 
								 * gutterspace so that it automatically goes below 20px on 
								 * low-res browsers to create more space for the content.  */
	font-size: 100.1%;	/* resolve some font size issues in some layouts for
				   				some browsers. (in other words, i got no clue.) */
}

#pageWrapper
{	
/*	border: solid 1px #fff;
	border-width: 0 1px;*/
	border: solid 0px #fff;
	border-width: 0 0px;
	margin: 8px auto 0 auto; /* set side margins here 'cause IE doesn't like it set
				   			 * on the body element */
	min-width: 40em; /* IE doens't understand this property. EMs are used so that as the 
								 * font size increases, the proportional limitations (min-width) 
								 * increase with it, rather than creating a middle column that can only fit
							  	 * 3 or 4 characters in it. */
	width: 950px;
}

#headerWrapper
{	border: solid 0px #fff;	}

#bodyWrapper
{	border: solid 1px #fff;
	border-width: 0 1px;
/*	margin-left: 1px;		
	margin-right: 1px;*/
}

* html #pageWrapper
{
	/* 
	/* word-wrap: break-word; */
	/* invalid CSS but keeps IE from breaking horribly under narrow viewports */
}

/* reserves space for the left and right columns. you can use either padding, margins, or borders, 
 * depending on your needs. however you can use the border method to create a background color 
 * for both left and right columns 
 */
#outerColumnContainer
{	border-left: solid 200px #fff;
	border-right: solid 230px #fff;
}

#innerColumnContainer
{	border: solid 1px #fff;
	border-width: 0 1px;
	margin: 0 -1px;		/* compensate for the borders because of 100% width declaration */
	width: 100%;
	z-index: 1;
}

#leftColumn, #middleColumn, #rightColumn, * html #SOWrap
{	overflow: visible;	/* fix for IE italics bug */
	position: relative;	/* fix some rendering issues */
}

#SOWrap
{	float: left;
	margin: 0 -1px 0 0;
	width: 100%;
	z-index: 3;
}

#middleColumn
{	float: right;
	margin: 0 0 0 -1px;
	width: 100%;
	z-index: 5;
}

#leftColumn
{	float: left;
	margin: 0 1px 0 -200px;
	width: 200px;
	z-index: 4;
}
#rightColumn
{	float: right;
	width: 230px;
	margin: 0 -230px 0 1px;
	z-index: 2;
}
#footer
{	border: solid 1px #fff;
	border-width: 1px 0;
	padding: 0.5em;
	height: 2em;
}

p.fontsize-set
{	text-align: center;	}

p.fontsize-set img
{	border-width: 0;	}

/**************** Extra styles (not page-structure related ********************
/* Here, you find the different blocks, elements, ... for title-bars, headers, ...
 * No theme attributes are found here (color, sizes, ...) The classes defined here
 * will return in the Themes-part where color-attributes are added.
*******************************************************************************/

div.line
{	clear:both;
	/*display: relative;*/
	border-top: 1px solid;
	height: 0px;
	font-size: 0px;
	line-height: 1px;
	margin: 0px;
	padding: 0px;
}

.verticlelineright
{	border-right: 1px solid}

.verticlelineleft
{	border-left: 1px solid}

#leftColumn div.line
{	margin-left: 10px;
	margin-right: 12px;
	margin-top: 10px;
	margin-bottom: 10px;
}

#rightColumn div.line
{	margin-left: 0px;
	margin-right: 9px;
	margin-top: 8px;
	margin-bottom: 8px;
}

#middleColumn div.line
{	width: 100%;
	margin-top: 3px;
	margin-bottom: 0px;
}

.PromoNew
{
	display: inline;
	float: right;
	margin-bottom: 0px;
	margin-left: 10px;
	text-align: right
}

div.print
{	display: none;	
	height: 0px;
}

/*********************************** Theme *************************************
 * This is the Theme-definition. Here we set colors and final font-properties.
 * Everything below this point is related to the page's "theme" and could be
 * placed in a separate stylesheet to allow for multiple color/font scemes on
 * the layout. 
*******************************************************************************/

#pageWrapper
{	border-color: #fff; }

#innerColumnContainer
{	border-color: #ABCCE2; }

#footer
{	border-color: #ABCCE2; }

#bodyWrapper
{	border-color: #ABCCE2; }

div.line, .verticlelineright, .verticlelineleft
{	border-color: #ABCCE2; }

#rightColumn div.line, #middleColumn div.line
{	border-color: #D5D5D5;	}

input.text, textarea.text
{	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #000;
	background-color: #fff;
	border: 1px solid #0768A9;
	padding:1px;
}

#leftColumn input.text
{	padding: 3px; }

input.button
{	font-size: 1em;
	font-weight: bold;
	background-color: #fff;
	color: #0768A9;
	border: 1px solid #0768A9;;
	padding: 1px;
	padding-left: 8px;
	padding-right: 8px;
	cursor: pointer;
}

input.button:hover
{	background-color: #0768A9;
	color: #fff;
}

/*html
{	scrollbar-face-color: #FFFFFF; 
	scrollbar-highlight-color: #FFFFFF; 
	scrollbar-shadow-color: #B9B9B9; 
	scrollbar-3dlight-color: #B9B9B9; 
	scrollbar-arrow-color: #757575; 
	scrollbar-track-color: #B9B9B9; 
	scrollbar-darkshadow-color: #FFFFFF; 
	scrollbar-base-color: white;
}*/

html, body, .normaltext
{
/* note that both html and body elements are in the selector. this is because we 
 * have margins applied to the body element and the HTML's background property will 
 * show through if it is ever set. _DO_NOT_ apply a font-size value to the html or body 
 * elements, set it in #pageWrapper.
 */
	background-color: #fff;
	color: #000;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
}

.TextWhite {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #FFFFFF;
	text-decoration: none;
	line-height: 16px;
}

#pageWrapper
{	font-size: 0.7em;	/* set your default font size here. */	
	line-height: 1.4em;}

#outerColumnContainer
{	border-left-color: #fff;	/* left column background color */
	border-right-color: #fff;	/* right column background color */
	background-color: #fff;		/* set the background color for the middle column here */
}

#rightColumn .inside
{
/* if you apply a font size to just #rightColumn, then its width, which is specified in EMs, 
 * will also be affected. you don't want that. so apply font size changes to the .inside 
 * element which exists inside underneath all three columns
 */
	font-size: 100%;
	margin-left: 7px;
}

#footer
{	background-color: #fff;
	color: #B9B9B9; 
	text-align: center;
	font-size: 0.8em;
}

#footer a, #footer a:link, #footer a:visited, #footer a:active
{	font-weight: normal; 
	color: #B9B9B9; 
	text-decoration: none;
}

#footer a:hover
{	text-decoration: underline;
}

a, a:link, a:visited, a:active
{	font-weight: bold; 
	color: #0768A9; 
}

a.topnav, a.topnav:link, a.topnav:visited, a.topnav:active
{	font-weight:bold; 
	font-size: 120%; 
	color: #FFFFFF; 
	text-decoration: none;
}

a.nounderline, a.nounderline:link, a.nounderline:visited, a.nounderline:active
{	text-decoration: none;	}

a.nounderline:hover
{	text-decoration: underline;	}

a.topnav:hover
{	text-decoration: underline;	}

/***************************** Some header styles *****************************/
#tblheader td
{	vertical-align: middle;	
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;}

.headervlign
{	border-color: #757575; }

.HeaderMenu 
{	background-color: #6EBB1F; 
	padding-left:15px;
	/*border-left:1px solid #fff;*/
}

td.bgHeaderHR
{	border-top:1px solid #fff;
	border-bottom:1px solid #fff;
	background-color: #0768A9;	
}

.headerlinkseperator
{	font-size: 120%;
	font-weight: bold;
	color: #fff;
	line-height: 180%;
	padding-left: 1px;
	padding-right: 1px;
}


/********************************* breadcrumb *********************************/

td.breadcrumb
{
	border-left: 1px solid #CDE1ED;
	border-bottom: 1px solid #ABCCE2;
}

#breadcrumb
{
	display: block;
	float: left;
	/*padding-left: 5px;*/
	color: #0768A9;
	font-weight:normal;
	text-decoration:none;
	font-size: xx-small;
}

.breadcrumb:link, .breadcrumb:active, .breadcrumb:visited
{
	font-weight:normal;
	text-decoration:none;
}

.breadcrumb:hover
{
	text-decoration:none;
	color: #C39;
}
/******************************************************************************/

#switchlanguage
{	display: block;
	float: right;
	margin-right: 2px;
}

#switchlanguage a, #switchlanguage a:link, #switchlanguage a:visited, #switchlanguage a:active
{	text-decoration: none;	}

#switchlanguage a:hover
{	text-decoration: underline;	}

td.MyServicesBoxTitle
{	padding-top: 0px;
	padding-left: 10px;
	padding-bottom: 0px;
	background-color: #CDE1ED; 
}

.leftcolblock
{
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	background-color: #CDE1ED;
}

.leftcolblock2
{
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	background-color: #CDE1ED;
}

#MyServices .leftcolblock 
{	padding-top: 0px;}

.smalltext 
{	font-size: 0.8em;}
.smalltext2 
{	font-size: 0.8em;}


a.smalltext, a.smalltext:link, a.smalltext:visited, a.smalltext:active
{	color: #000;
	font-weight: normal;
	text-decoration: underline;
}

a.smalltext:hover 
{	text-decoration: none;	}

.smalltextlinkfooter 
{
	font-size: 0.8em;
	padding-left:5px;
	padding-top:2px;
	padding-bottom:2px;
	padding-right:5px;
	background-color:#F0F8E8;
}


a.smalltextlinkfooter, a.smalltextlinkfooter:link, a.smalltextlinkfooter:visited, a.smalltextlinkfooter:active
{
	color: #000;
	text-decoration: underline;
}

a.smalltextlinkfooter:hover 
{	
	text-decoration: none;	
}

a.leftcolnavigation, a.leftcolnavigation:link, a.leftcolnavigation:visited, a.leftcolnavigation:active
{	font-size: 0.9em;
	color: #757575;
	text-decoration: none;
	padding-top: 2px;
	padding-bottom: 2px;
}

a.leftcolnavigation:hover 
{	TEXT-DECORATION: underline;	}

div.simulate_ul
{	background-position:left top;
	background-repeat:no-repeat;
	padding-left:13px;
}

div.ul_green
{	background-image:url(../img/bullet_green_bg.gif);}

div.ul_blue
{	background-image:url(../img/bullet_blue_bg.gif);}

div.ul_purple
{
	background-image:url(../img/bullet_red_bg.gif);
}

div.ul_grey
{	background-image:url(../img/bullet_grey_bg.gif);}

ul.purple
{	color: #EE014C;	}

ul.green
{	color: #6EBB1F;	}

ul.blue
{	color: #0768A9;	}

ul.grey
{	color: #B9B9B9;	}

.backgroundcolor1
{	background-color: #C8E5AA;	}

.backgroundcolor2
{	background-color: #ABCCE2;	}

.backgroundcolor3
{	background-color: #A5A5A5;	}

#leftColumn ul
{	list-style: square;
	margin-top: 3px;
	margin-bottom: 3px;
	list-style-position: inside;
	margin-left: 0px;
	padding-left: 10px;
}

#leftColumn li
{	padding-top: 5px;
	padding-bottom: 5px;
	font-size: 13px;
}

.leftrightcoltitle
{	font-weight: bold;
	color: #000;
	font-size: 110%;
}

div.leftrightcoltitle
{	font-weight: bold;
	color: #000;
	font-size: 110%;
	padding-bottom: 4px;
	padding-left: 10px;
}

#rightColumn div.leftrightcoltitle
{	padding-left: 0px;}

.rightcolblocktitle
{	width:95%;
	left:-5px;
	padding-left:5px;
	padding-top:2px; 
	padding-bottom:2px;
	padding-right:5px;
	position:relative;
	margin-top:10px;
	margin-bottom:5px;
	background-color:#F0F8E8;
}

.title
{	font-weight: bold;
	color: #000;	
}

h1
{	font-weight: bold;
	color: #000;
	font-size: 100%;
}

h2
{	font-weight: bold;	
	color: #757575;
	font-size: 100%;
}

.TheSmallCharacters
{	display: block;
	font-size: 0.85em;
	line-height: 1.3em;
	margin:0px;
	margin-top:1.3em;
	padding:0px;
}

a.tinylink, a.tinylink:link, a.tinylink:visited, a.tinylink:active
{	font-weight: normal;
	text-decoration: none;
}

a.tinylink:hover
{	text-decoration:underline;	}

.wit11 
{ font-family: Verdana, Arial, Helvetica, sans-serif;
 font-size: 11px;
 font-weight: normal;
 color: #FFFFFF;
 text-decoration: none;
 line-height: 16px;
}
.backgroundcolor4 {
	background-color: #FFCECE;
}
.deftitel {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #016EDC;
}

