/* #########################################  Layout: Left sidebar + 1 column #################################### */
/* browsers interpret margin and padding a little differently, 
   we'll remove all default padding and margins and
   set them later on
   ******************/
   
body {
   font-family: Arial, Helvetica sans-serif;
   /*font-size: 75.01%;    IMPORTANT!!!  */
   text-align: left;
   line-height: 1;
   background-color: #cadeed;
   background-image:url(uploads/Files/bg_body.jpg);
   background-position:0 0;
   background-repeat: repeat-x;
   color: #333;
   margin:10px;    /* gives some air for the pagewrapper */
}
	
#langbar {
	width:250px;
	height:20px;
	text-align:center;
	vertical-align:middle;
	padding:5px 0px 5px 0px;
	margin: 0px 0px 10px 0px;
    background: url(uploads/Files/bg_lang.jpg) no-repeat 0 0;
}

* {
margin:0;
padding:0;
}

/*
Set initial font styles
*/

/*
set font size for all divs,
this overrides some body rules
*/
div {
   font-size: 1em;
}

/*
if img is inside "a" it would have 
borders, we don't want that
*/
img {
   border: 0;
}

/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link 
a:active {
   text-decoration: underline;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
   color: #18507C; 
}

a:visited {
   text-decoration: underline;
   /*background-color: inherit;*/
  color: #18507C;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   /*background-color: #C3D4DF;*/
   color: #385C72;
}

/*****************
basic layout 
*****************/
body {
}

/* center wrapper, min max width */
div#pagewrapper {
   /*border: 1px solid black;*/
   margin: 0 auto;       /* this centers wrapper */
   max-width: 1000px;   /* IE wont understand these, so we will use javascript magick */
   min-width:1000px;
   background-color: #fff;;
   color: black;
}


/*** header ***
we will hide text and replace it with a image
we need to assign a height for it so that the image wont cut off
*/
div#header {
   height: 140px;    /* adjust according your image size */
   background-image:url(uploads/Files/header.jpg);
   background-position:left;
   background-repeat:no-repeat;
}

div#header h1 a {
/* you can set your own image here */
   background: #385C72 url(uploads/images/logo1.gif) no-repeat 0 12px; 
   display: block;
   height: 80px;             /* adjust according your image size */
   text-indent: -999em;  /* this hides the text */
   text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
}

/* position for the search box */
div#search {
   float: right;
   width: 200px;    /* enough width for the search input box */
   text-align: right;
   padding: 0.6em 0 0.2em 0;
   margin: 0px 10px;
}

div.breadcrumbs {
	width:710px;
	height:20px;
    padding:10px; /* CSS short hand rule first value is top then right, bottom and left */
    font-size: 90%;        /* its good to set fontsizes to be relative, this way viewer can change his/her fontsize */
    margin:10px;        /* css shorthand rule will be opened to be "0 1em 0 1em" */
    border-bottom: 1px dotted #000;
    border:1px solid #3C3;
}

 div.breadcrumbs span.lastitem { 
   font-weight:bold; 
 } 

 div#content {
   margin: 10px;   /* some air above and under menu and content */
}
div#sidebar {
   float: left;        /* set sidebar on the left side. Change to right to float it right instead. */
   width:260px;     /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX IE double margin bug */
}

div#main {    /*  ###############################################################################  CHANGED # */
   width:720px;
   background-color: #FFF;
   background-image:url(uploads/Files/bg_centercolumn.jpg);
   background-position:0 0;
   background-repeat:no-repeat;
   margin-left: 260px; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
  /* margin-right:10px;*/ /* and some air on the right */
}

div#footer {
    clear: both;       /* keep footer below content and menu */
    color: #fff;
	font-size:11px;
    background: url(uploads/Files/bg_footer.jpg) no-repeat 0 0; 
}

div#footer p {
   font-size: 0.8em;
   padding: 1.5em;       /* some air for footer */
   text-align: center;  /* centered text */
   margin: 0;
}

div#footer p a {
   color: #fff; /* needed becouse footer link would be same color as background otherwise */
}

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   padding: 1em;
   border-bottom: 1px dotted black;
   margin: 10px;
}

/* relational links under content */
.nav {
    width: 720px;
	height:35px;
    color:#039;
    font-size:13px;
    font-weight:bold;
    font-style:italic;
	text-align:left; 
	vertical-align:middle;
	line-height:1.8;
    background: url(uploads/Files/bg_navigation.png) no-repeat 0 0;
	padding: 5px 0px 0px 0px;
} 
#n_top {
    float: left;
	width:66px;
	height:24px;
    text-align:center;
    background:none; 
}
#n_prev {
    float:left;
	width:304px;
	height:24px;
    text-align:right;
    padding-right:20px;
    background:none; 
}
#n_next {
    float:right;
	width:304px;
	height:24px;
	text-align:left;
	padding-left:20px;
    background:none; 
}
.nav a {
  text-decoration:none;
}

/********************
CONTENT STYLING 
*********************/
div#content {
	font-family: Arial, Helvetica sans-serif;
}

/* HEADINGS */
div#content h1 {
   font-size: 2em; /* font size for h1 */
   line-height: 1em;
   margin: 0;
}
div#content h2 {
	color: #FFF; 
	font-size: 16px;
	font-style:italic;
	font-weight:bold;
	text-align: center;
	letter-spacing:1px;
/* some air around the text */
	padding: 8px 0px 0px 0px;
/* and some air under the border 
        margin: 5 0 0.5em 0;*/
}
div#content h3 {
   color: #294B5F; 
   font-size: 12px;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
}
div#content h4 {
   color: #294B5F; 
   font-size: 1.2em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
div#content h5 {
   color: #294B5F; 
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
h6 {
   color: #294B5F; 
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
/* END HEADINGS */

/* TEXT */
p {
   font-size: 1em;
   margin: 0 0 10px 0; /* some air around p elements */
   line-height: 1.4em;
   padding: 0;
}

blockquote {
   border-left: 10px solid #ddd;
   margin-left: 10px;
}
strong, b {
/* explicit setting for these */
   font-weight: bold;
}
em, i {
/* explicit setting for these */
   font-style:italic;
}

/* Wrapping text in <code> tags. Makes CSS not validate */
code, pre {
	white-space: pre-wrap;       /* css-3 */
	white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
	white-space: -pre-wrap;      /* Opera 4-6 */
	white-space: -o-pre-wrap;    /* Opera 7 */
	word-wrap: break-word;       /* Internet Explorer 5.5+ */
	font-family: Arial, Helvetica sans-serif;
	font-size: 1em;
}

pre {
   border: 1px solid #000;  /* black border for pre blocks */
   background-color: #ddd;
   margin: 0 1em 1em 1em;
   padding: 0.5em;
   line-height: 1.5em;
   font-size: 90%;


}

/* Separating the divs on the template explanation page, with some bottom-border */
div.templatecode {
  margin: 0 0 0;
}

/* END TEXT */

/* LISTS */
/* lists in content need some margins to look nice */
div#main ul,
div#main ol,
div#main dl {
   font-size: 1.0em;
   line-height: 1.2em;
   margin: 0 0 1.5em 0;
}

div#main ul li,
div#main ol li {
   margin: 0 0 0.25em 0;

}

/* definition lists topics on bold */
div#main dl dt {
   font-weight: bold;
   margin: 0 0 0 0;
}
div#main dl dd {
   margin: 0 0 1em 1em;
}

div#main dl {
  margin-bottom: 2em;
  padding-bottom: 1em;
  border-bottom: 1px solid #c0c0c0;
}

/* END LISTS */

/* ############################################################################################################### */
/* ========================================= */
/* #########################################  Handheld  ########################################################## */
/*  handheld : bedoeld voor handheld-apparaten.  */
/*********************************************
Sample stylesheet for mobile and small screen handheld devices

Just a simple layout suitable for smaller screens with less 
styling cabapilities and minimal css

Note: If you dont want to support mobile devices you can
safely remove this stylesheet.
*********************************************/
/* remove all padding and margins and set width to 100%. This should be default for handheld devices but its good to set these explicitly */
body {
margin:0;
padding:0;
width:100%;
}

/* hide accessibility noprint and definition */
.accessibility,
.noprint,
dfn {
display:none;
}

/* dont want to download image for header so just set bg color bg_footer */
div#header,
div#footer {
background-color: #1d4163;  
text-align:center;
}

/* text colors for header and footer */
div#header a,
div#footer a {
color: #fff;
}

/* ############################################################################################################### */
/* ========================================= */
/* #########################################  Module: News  ###################################################### */

div#news {
	width:250px;
    margin: 0px 0px 10px 0px;  /* margin for the entire div surrounding the news list */
    background: url(uploads/Files/bg_news.jpg) no-repeat 0 0;
	color: #039;
	font-size:11px;
}

div#news h2 {
   line-height: 1;
   font-size: 16px;
   color: #036;
   /*background: #fff;*/
}

.NewsSummary {
    padding: 10px; /* padding for the news article summary */
    margin:0px 5px 0px 5px; /* margin to the bottom of the news article summary */
}

.NewsSummaryPostdate {
  font-size: 90%;
  font-weight: bold;
 }

.NewsSummaryLink {
    font-weight: bold;
    padding-top: 0.2em;
}

.NewsSummaryCategory {
  font-style: italic;
  margin: 5px 0;
 }

.NewsSummaryAuthor {
  font-style: italic;
  padding-bottom: 0.5em;
}

.NewsSummarySummary, .NewsSummaryContent {
  line-height: 140%;
 }

.NewsSummaryMorelink {
  padding-top: 0.5em;
}

#NewsPostDetailDate {
  font-size: 90%;
  margin-bottom: 5px;
  font-weight: bold;
  }

#NewsPostDetailSummary {
   line-height: 150%;
   }

#NewsPostDetailCategory {
  font-style: italic;
  border-top: 1px solid #ccc;
  margin-top: 0.5em;
  padding: 0.2em 0;
}

#NewsPostDetailContent {
  margin-bottom: 15px;
  line-height: 150%;
  }

#NewsPostDetailAuthor {

  padding-bottom: 1.5em;
  font-style: italic;
}


/* to add specific style to the below divs, uncomment them. */

/* 
#NewsPostDetailTitle {}
#NewsPostDetailHorizRule {}
#NewsPostDetailPrintLink {}
#NewsPostDetailReturnLink {}
*/
/* ############################################################################################################### */
/* ========================================= */
/* #########################################  Navigation: Simple - Vertical  ##################################### */

/* ############################################################################################################### */
/* ========================================= */
/* #########################################  Accessibility and cross-browser tools  ############################# */

/* accessibility */

/* 
menu links accesskeys 
*/
span.accesskey {
   text-decoration:none;
}

/* 
accessibility divs are hidden by default 
text, screenreaders and such will show these 
*/
.accessibility, hr {
   position: absolute;
   top: -999em;
   left: -999em;
}

/* 
definition tags are also hidden 
these are also used for menu links    
*/
dfn {
   position: absolute;
   left: -1000px;
   top: -1000px;
   width: 0;
   height: 0;
   overflow: hidden;
   display: inline;
}
/* end accessibility */


/* wiki style external links */
/* external links will have "(external link)" text added, lets hide it */
a.external span {
  position: absolute;
  left: -5000px;
  width: 4000px;
}

/* make some room for the image */
a.external {
/* css shorthand rules, read: first top padding 0 then right padding 12px then bottom then right */
  padding: 0 12px 0 0;
}
/* colors for external links */
a.external:link {
  color: #18507C;
/* background image for the link to show wiki style arrow */
  background: url(images/cms/external.gif) no-repeat 100% 0;
}
a.external:visited {
  color: #18507C; /* a different color can be used for visited external links */

/* 
Set the last 0 to -100px to use that part of the external.gif image for different color for active links 
external.gif is actually 300px tall, we can use different positions of the image to simulate rollover image changes.
*/
  background: url(images/cms/external.gif) no-repeat 100% 0; 
}

a.external:hover {
  color: #18507C;
/* Set the last 0 to -200px to use that part of the external.gif image for different color on hover */
  background: url(images/cms/external.gif) no-repeat 100% 0; 
  background-color: #C3D4DF;
}
/* end wiki style external links */


/* clearing */
/* 
clearfix is a hack for divs that hold floated elements. it will force the holding div to span all the way down to last floated item.
We strongly recommend against using this as it is a hack and might not render correctly but it is included here for convenience.
Do not edit if you dont know what you are doing
*/
	.clearfix:after {
		content: "."; 
		display: block; 
		height: 0; 
		clear: both; 
		visibility: hidden;
	}
	* html>body .clearfix {
		display: inline-block; 
		width: 100%;
	}
	
	* html .clearfix {
		/* Hides from IE-mac \*/
		height: 1%;
		/* End hide from IE-mac */
	}

/* end clearing */
/*###===###===###===###===###===###===###===###===###===###===###===###
                           M E N U   
  ###===============================================================###*/

/* save some space */
div.breadcrumbs {
display:none;
}

#menu_vert {
   padding: 10px 0px 10px 0px;
   margin:0px;
}
div#menu_vert { 
    width: 250px;   /* MENU WIDTH  !!! */
	height:315px;   /* MENU HEIGHT !!! */
    background: url(uploads/Files/bg_menuplace.jpg) no-repeat 0 0;
    margin: 0;
}

/* menu li block */
#menu_vert li {
   list-style: none;
   margin: 0;
   display: block;
   /*border-bottom: 1px solid #c0c0c0;*/
}
/* this doesnt look as nice, but takes less space */
div#menu_vert ul li,
div#menu_horiz ul li {
   display: block;
}
#menu_vert ul ul li {
   border: none;
   margin: 0;
}

/** fix stupid ie bug with display:block; **/
* html #menu_vert li a { height: 1%; } 
* html #menu_vert li hr { height: 1%; }
/** end fix **/

/* first level links */
div#menu_vert a {    /* ============================================================================####### */
    color: #FFF; /* this will be link color for all levels */
    background: url(uploads/Files/bg_menu.png) no-repeat 0 0; 
	font-size:15px;
	font-family:Arial, Helvetica sans-serif;
	font-weight:bold;
	font-style:italic;
    text-decoration:none; /* no underline for links */
    display: block; /* IE has problems with this, fixed above */
    padding: 9px 0px 9px 20px;
    margin:0px;   
    min-height:1em; /* Fixes IE7 whitespace bug */ 
}
div#menu_vert ul h3 {   /* =========================================================================####### */
    color:#cb000c;                                
    background: url(uploads/Files/bg_menu_hover.png) no-repeat 0px 0px;
	font-size:15px;
	font-family:Arial, Helvetica sans-serif;
    font-weight:bold;
	font-style:italic;
    display: block; 
    padding: 9px 0px 9px 20px;
    margin:0px;   
    text-decoration:none; 
	font-family:Arial, Helvetica sans-serif;
    min-height:1em; /* Fixes IE7 whitespace bug */ 
}
/* hover state for all links */
div#menu_vert a:hover {   /* =========================================================================####### */
    background: url(uploads/Files/bg_menu_hover.png) no-repeat 0 0;
   color: #036;
}
div#menu_vert a.activeparent:hover {
    background: url(uploads/Files/bg_menu_hover.png) no-repeat 0 0;
    color:#cb000c;                                
}
/* active parent, that is the first-level parent of a child page that is the current page */
div#menu_vert li a.activeparent {
    background: url(uploads/Files/bg_menu_hover.png) no-repeat 0px 1px;
    color:#cb000c; 
}
/* third level has some padding to have it stand out */
div#menu_vert ul ul ul {
   padding-bottom: 0.5em;
}
/*###===###===###===###===###===###===###===###===###===###===###===###
/* ############################################################################## */

.center {
	text-align:center;
	vertical-align:middle;
}
h3 {
}

/* ############################################################################## */
.tabtop, .tabhead, .tab, .tabbot, #divider{
	width:660px;
	text-align: center;
	font-size:12px;
	font-weight:bold;
	color:#003;
	/*vertical-align:bottom;*/
	font-family: Arial, Helvetica sans-serif;
}
#divider {
	height:6px;
}
/* ############################################################################## */
.tabtopcell, .tabheadcell , .tabcell, .tabbotcell 
{
	float:left;
	text-align:center;
	background-image:url(uploads/Files/divider_ver_mid.png);
	background-color:none; 
	background-position: 0px 0px;
	background-repeat:repeat-y;
}
/* ======================================== */
.tabtopcell {
	height:25px;
	background-image:url(uploads/Files/divider_ver_top.png);
}
.tabheadcell {
	height:30px;
	padding:5px 0px 3px 0px;
	background-image:url(uploads/Files/divider_head_mid.png);
}
.tabcell {
	height:100%;
	padding:5px 0px 5px 0px;
}
.tabbotcell {
	height:25px;
	background-image:url(uploads/Files/divider_ver_bot.png);
}
/* ############################################################################## */
.Htab {
	width:100%;
	border-left:2px solid #FFF;
	border-right:1px solid #69C;
	border-top:2px solid #FFF;
	border-bottom:1px solid #69C;
	color: #036;
}
.Htab td {
	font-family:Geneva, sans-serif;
	font-size:12px;
	font-weight: bold;
	/*font-style: italic;*/
	padding:7px 3px 4px 3px;
	text-align:center;
	background-image:url(uploads/Files/white_str.png);
	background-position:0px 5px;
	background-repeat: repeat-x;
	border-bottom:2px solid #FFF;
	border-right:2px solid #FFF;
	border-left:1px solid #69C;
	border-top:1px solid #69C;
}
#Htabtitle {
	color:#cb000c;
	background:none;
	font-size:15px;
}
#Htabhead {
	font-weight:bold;
	background:none;
}
/* ############################################################################## */
#wid1head {
	width:10%;
	background-image:url(uploads/Files/divider_head_left.png);
	background-position:right;
	background-repeat:repeat-y;
}
#wid1 {
	width:10%;
	background-image:none
}
#wid2 {
	width:22%;;
}
#wid3 {
	width:13%;
}
#wid4 {
	width:12%;
}
#wid5 {
	width:43%;
	float:right;
}

#small {
	color: #000;
	font-family: Arial, Helvetica sans-serif;
	font-size:9px;
	font-style:normal;
}
/*.divider_ver {
	width:7px;
	height:30px;
	background-color:#0F0;
	background-image:url(uploads/Files/divider_ver.png);
	background-position: left;
	background-repeat: repeat-y;
}*/
/*.prod_description {
	background-image:url(uploads/Files/white_50.png);
	background-position:0 0;
	background-repeat: repeat;
	padding:10px;
	margin:20px;
	color: #036;
	font-family: Arial, Helvetica sans-serif;
	font-size:12px;
}*/
/* Itemlist  (prodcatalogue) ###################################################################  */
a.listitem {
	padding: 5px;
	display: block;
	height: 110px;
	border-bottom: 1px solid Gray;
	text-decoration: none;
	color: #036;
	font-size:14px;
}

a.listitem img {
	float: right;
	border: 0;
}
a.listitem:hover {
	background-color: LightGray;
}
/* ##############################################################################################  */
                                    /*   COMMON STYLE   */
/* ##############################################################################################  */
.page {
	background-image:url(uploads/Files/white_50.png);
	background-position:0 0;
	padding:10px;
	margin:30px 20px 20px 20px;
	color: #036;
	font-family: Arial, Helvetica sans-serif;
	font-size:13px;
	font-weight:bold;
	border-top:1px solid #FFF;
	line-height:1.1;
	vertical-align:top;
	font-style:italic;
	text-align: left;
}
.pagetitle {
	font-family: Arial, Helvetica sans-serif;
	font-size:16px;
	font-weight:bold;
	color:#cb000c;
	text-align:center;
}
.pagetopic {
	font-family: Arial, Helvetica sans-serif;
	font-size:16px;
	font-weight:bold;
	color: #036;
	text-align:center;
}
.centerline, .centertext {
	text-align:center;
	font-size:15px;
	padding:0px 10px 0px 10px;
	line-height:1.2;
}
.centertext {
	font-size:13px;
}
.redline {
	color:#cb000c;
	font-size:15px;
	text-align:center;
}
.redline a {
	color:#cb000c;
	font-size:15px;
	text-align:center;
	text-decoration:none;
}
.redline a:hover {
	color: #F90;
}
.imgrow {
	text-align:center;
	width:660px;
	padding: 10px 0px 0px 0px;
	margin:0;
}

.img-textrow {
	text-align: left;
	width:660px;
	height:220px;
	padding: 0px;
	margin:0;
	background-image:url(uploads/Files/bg_pagetop.png);
	background-position:0 0;
	background-repeat: no-repeat;
}
#pagetoptext {
	color: #15448A;
	float:right;
	width:400px;
	font-size:14px;
	line-height:1.1;
	font-family: Verdana, Geneva, sans-serif;
	font-style:normal;
	padding: 10px 20px 0px 10px;
	text-align:left;
}
#red {
	color:#cb000c;
}
#left_img {
	float: left;
	width:200px;
	padding: 0px 15px 0px 0px;
}
.leftimage {
	float: left;
	padding: 0px 15px 0px 0px;
}
.rightimage {
	float: right;
	padding: 10px 0px 20px 20px;
}
img#left, img#mid {
	margin-right:23px;
}
img#left, img#mid, img#right {
	width:200px;
	/*height:260px;*/
}
#reg {
	font-size:9px;
	vertical-align: text-top;
	font-style:normal;
}
/* ===================================================== */
.inforow {
	text-align: left;
	height:100px;
	width:660px;
	padding: 0px 0px 0px 0px;
	margin:0;
}
.infoimage {
	float: left;
	width:100px;
	height:100px;
	padding:0px 15px 0px 0px;
}
.infotext {
	float: right;
	width:520px;
	padding: 0px 15px 0px 0px;
}


/* ===================================================== */
.prodinforow {
	background-color: #CCC;
	border-top:1px solid #036;
	border-right:1px solid #FFF;
	border-bottom:2px solid #FFF;
	border-left:1px solid #036;
	padding:8px 10px 10px 10px;
	background-image:url(uploads/Files/bg_prodinfo.jpg);
	background-position:0px 0px;
	background-repeat: no-repeat;
}
.prodinfotab {
	width:100%;
	text-align:center;
	padding:0px 0px 5px 0px;
	font-size:15px;
	font-weight: bold;
	font-style:normal;
}
.productname {
	font-style: italic;
	text-align:left;
	padding-left:50px;
}
.addproduct {
	font-size:13px;
	font-style: italic;
}
.productdesc {
	font-style:normal;
	font-weight:normal;
	width:100%;
	font-size:11px;
}
.productprice {
}
.prodimg {
	text-align:right;
}
.prodimg img {
	width:50px;
	height:50px; 
}
/*=========  LINKS STYLE ============*/
.productname a, .addproduct a {
	text-decoration:none;
}
.productname a {
	color:#cb000c;
}
.productname a:hover {
	color: #036;
}
.addproduct a {
	color: #036;
}
.addproduct a:hover {
	color:#cb000c;
}
/*===================================*/

/*=========  MINITAB ============*/


.Mtab {
	width:100%;
	border-left:2px solid #FFF;
	border-right:1px solid #69C;
	border-top:2px solid #FFF;
	border-bottom:1px solid #69C;
	font-style:normal;
	margin-top:5px;
}
.Mtab td {
	color:#cb000c;
	font-family: Arial, Helvetica sans-serif;
	font-size:12px;
	font-weight: normal;
	padding:2px 3px 2px 3px;
	text-align:center;
	background-image:url(uploads/Files/white_str.png);
	background-position:0px 2px;
	background-repeat: repeat-x;
	border-bottom:2px solid #FFF;
	border-right:2px solid #FFF;
	border-left:1px solid #69C;
	border-top:1px solid #69C;
}
#Mtabhead {
	color: #036;
	font-weight:normal;
	font-size:12px;
	background:none;
}
#Mth1 {
	width:20%;
}
#Mth2 {
	width:60%;
}
/*===================================*/

#catinfo {
	text-align:center;
	width:100%;
}
#productheader {
	font-size:16px;
	color:#cb000c;
	font-weight:bold;
	font-style:italic;
	padding-bottom:10px;
}

/*############====================   TOP NAVIGATION   ====================############*/

.topnav {
    width: 660px;
	height:50px;
    color:#039;
    font-size:11px;
    font-weight: normal;
    font-style: normal;
	text-align: center;
	vertical-align:middle;
    background: url(uploads/Files/bg_topnavigation.png) no-repeat 0 0;
	padding:5px 0px 5px 0px;
}
#stopper {
	width:5px;
}
#back, #email, #skype, #msn, #anwb {
	width:130px;
}
#back img, #cart img, #email img, #skype img, #msn img, #anwb img {
	height:36px;
}
#back {
}
#cart {
	/*width:235px;*/
    font-size:11px;
	text-align:left;
	padding-left:20px;	
	margin:0;
}
#email {
}
#skype {
}
#msn {
}
#back a, #cart a, #email a, #skype a, #msn a{
	text-decoration:none;
	font-style:normal;
}
#cart a{
    font-size:13px;
	font-weight:bold;
	text-align:left;
	text-align:center;
}
#cart a:hover {
	color:#cb000c;
}
/*############============================================================############*/

#mat_left, #mat_mid, #mat_right {
	padding:3px;
}

#reflective_left, #reflective_mid, #reflective_right {
	padding:0px;
}

.album {
	width:615px;
	padding:0px 0px 0px 45px;
	text-align:center;
}
#address {
	line-height:1.3;
}
/*###===###===###===###===###===###===###===###===###===###===###===###===###===###===###===###===###===###*/
/*###===###===###===###===###===###===###   MAIL FORM   ###===###===###===###===###===###===###===###===###*/

/* ============= */
div.form_contactpage_nl {
    background: url(uploads/images/Site/form_page_nl.jpg) no-repeat 0 0;
}
div.form_contactpage_en {
    background: url(uploads/images/Site/form_page_en.jpg) no-repeat 0 0;
}
div.form_contactpage_de {
    background: url(uploads/images/Site/form_page_de.jpg) no-repeat 0 0;
}
div.form_contactpage_nl,
div.form_contactpage_en,
div.form_contactpage_de
{
	padding:90px 20px 20px 20px;
	font-size:12px;
	font-weight:normal;
	font-style:normal;
	color:#036;
}
.form_contactpage_nl div,
.form_contactpage_en div,
.form_contactpage_de div
{
	padding:2px;
	text-align:left;
}
.form_contactpage_nl input ,
.form_contactpage_en input,
.form_contactpage_de input
{
	padding:2px;
}
/* ============= */
div.form_name, 
div.form_email,
div.form_firm,
div.form_address,
div.form_place,
div.form_land,
div.form_tel,
div.form_fax,
div.form_upload,
div.form_upload_2,
div.form_upload_3,
div.form_email,
div.form_request
{
	text-align: right;
	padding:3px 150px 3px 0px;
}
div.form_request,
div.form_building
{
	padding:3px 150px 30px 0px;
}
div.form_building,
div.form_another1
{
	text-align: right;
	padding:3px 180px 3px 0px;
}
div.form_another1, div.form_another2 {
	text-align: right;
	padding:3px 180px 20px 0px;
}
.form_name input, 
.form_email input, 
.form_firm input,
.form_address input,
.form_place input,
.form_land select,
.form_tel input,
.form_fax input,
.form_upload input,
.form_upload_2 input,
.form_upload_3 input,
.form_email input,
.form_request select,
.form_another1 input,
.form_another2 input
{
	width:250px;
	margin-left:20px;
}
.form_land select,
.form_request select,
.form_building select

{
	width:255px;
	margin-left:20px;
}
.form_name input,
.form_email input {
	border:2px solid #F00;
}
.form_name label,
.form_email label
{
	color:#cb000c;
}
/* ============= */
/* ###---- FILMS */
div.form_films_nl {
    background: url(uploads/images/Site/form_films_nl.jpg) no-repeat 0 0;
}
div.form_films_en {
    background: url(uploads/images/Site/form_films_en.jpg) no-repeat 0 0;
}
div.form_films_de {
    background: url(uploads/images/Site/form_films_de.jpg) no-repeat 0 0;
}
div.form_films_nl, 
div.form_films_en, 
div.form_films_de
{
	width:620px;
	padding:40px 0px 30px 120px;
	font-weight:bold;
	font-style:italic;
	vertical-align:top;
}
.form_films_nl div, 
.form_films_en div, 
.form_films_de div 
{
	padding:5px 0px 5px 0px;
	margin:0;
	height:20px;
}
/* ============= */
/* ###--- SOLAR */
div.form_solar_nl {
    background: url(uploads/images/Site/form_solar_nl.jpg) no-repeat 0 0;
}
div.form_solar_en {
    background: url(uploads/images/Site/form_solar_en.jpg) no-repeat 0 0;
}
div.form_solar_de {
    background: url(uploads/images/Site/form_solar_de.jpg) no-repeat 0 0;
}
div.form_solar_nl,
div.form_solar_en,
div.form_solar_de
{
	width:620px;
	height:320px;
	padding:40px 0px 0px 20px;
	font-weight:bold;
	font-style:italic;
	vertical-align:top;
	float: left;
}
.form_solar_nl div, 
.form_solar_en div, 
.form_solar_de div 
{
	width:210px;
	padding:3px 0px 3px 80px;
	margin:5;
	height:20px;
	float: left;
}
/* ============= */
/* ###--- SAFETY */
div.form_safety_nl {
    background: url(uploads/images/Site/form_safety_nl.jpg) no-repeat 0 0;
}
div.form_safety_en {
    background: url(uploads/images/Site/form_safety_en.jpg) no-repeat 0 0;
}
div.form_safety_de {
    background: url(uploads/images/Site/form_safety_de.jpg) no-repeat 0 0;
}
div.form_safety_nl, 
div.form_safety_en, 
div.form_safety_de {
	width:620px;
	height:100px;
	padding:40px 0px 0px 20px;
	font-weight:bold;
	font-style:italic;
	vertical-align:top;
	float: left;
}
.form_safety_nl div, 
.form_safety_en div, 
.form_safety_de div {
	width:520px;
	padding:3px 0px 3px 80px;
	margin:5;
	height:20px;
}
/* ============= */
/* ###--- PRIVACY */

div.form_privacy_nl {
    background: url(uploads/images/Site/form_privacy_nl.jpg) no-repeat 0 0;
}
div.form_privacy_en {
    background: url(uploads/images/Site/form_privacy_en.jpg) no-repeat 0 0;
}
div.form_privacy_de {
    background: url(uploads/images/Site/form_privacy_de.jpg) no-repeat 0 0;
}
div.form_privacy_nl, 
div.form_privacy_en, 
div.form_privacy_de
{
	width:620px;
	height:190px;
	padding:40px 0px 0px 20px;
	font-weight:bold;
	font-style:italic;
	vertical-align:top;
	float: left;
}
.form_privacy_nl div, 
.form_privacy_en div, 
.form_privacy_de div
{
	width:210px;
	padding:3px 0px 3px 80px;
	margin:5;
	height:20px;
	float: left;
}
/* ###--- HF */
div.form_HF_nl {
    background: url(uploads/images/Site/form_HF_nl.jpg) no-repeat 0 0;
}
div.form_HF_en {
    background: url(uploads/images/Site/form_HF_en.jpg) no-repeat 0 0;
}
div.form_HF_de {
    background: url(uploads/images/Site/form_HF_de.jpg) no-repeat 0 0;
}
div.form_HF_nl,
div.form_HF_en,
div.form_HF_de
{
	width:620px;
	height:100px;
	padding:40px 0px 20px 20px;
	font-weight:bold;
	font-style:italic;
	vertical-align:top;
	float: left;
}
.form_HF_nl div,
.form_HF_en div,
.form_HF_de div 
{
	width:520px;
	padding:3px 0px 3px 80px;
	margin:5;
	height:20px;
}
/* ============= */
/* ============= */
/* ###--- FOUND */
div.form_found_nl {
    background: url(uploads/images/Site/form_found_nl.jpg) no-repeat 0 0;
}
div.form_found_en {
    background: url(uploads/images/Site/form_found_en.jpg) no-repeat 0 0;
}
div.form_found_de {
    background: url(uploads/images/Site/form_found_de.jpg) no-repeat 0 0;
}
div.form_found_nl,
div.form_found_en,
div.form_found_de
{
	width:620px;
	padding:40px 0px 30px 120px;
	font-weight:bold;
	font-style:italic;
	vertical-align:top;
}
.form_found_nl div,
.form_found_en div,
.form_found_de div
{
	padding:5px 0px 5px 0px;
	margin:0;
	height:20px;
}
/* ============= */
/* ###--- FOUND */
div.form_text_nl {
    background: url(uploads/images/Site/form_text_nl.jpg) no-repeat 0 0;
}
div.form_text_en {
    background: url(uploads/images/Site/form_text_en.jpg) no-repeat 0 0;
}
div.form_text_de {
    background: url(uploads/images/Site/form_text_de.jpg) no-repeat 0 0;
}
div.form_text_nl,
div.form_text_en,
div.form_text_de
{
	width:620px;
	height:220px;
	padding:40px 0px 30px 15px;
	font-weight:bold;
	font-style:italic;
	vertical-align:top;
}
.form_text_nl textarea,
.form_text_en textarea,
.form_text_de textarea
{
	width:540px;
	height:200px;
	margin-left:20px;
	padding:5px;
	border:1px solid #1F4268;
}
/* ============= */
/* ###--- CAPTCHA */
div.captcha {
    background: url(uploads/images/Site/form_captcha.jpg) no-repeat 0 0;
	width:600px;
	height:140px;
	padding:20px 10px 10px 10px;
	font-weight:bold;
	font-style:italic;
	vertical-align:top;
}
.captcha img {
	margin:0px 10px 10px 20px;
	border:2px solid #1F4268;
}
.captcha input {
	margin:10px 20px 10px 20px;
	padding:5px;
	border:2px solid #1F4268;
}
/* ============= */
/* ###--- SUBMIT */
div.submit {
    background: url(uploads/images/Site/form_submit.jpg) no-repeat 0 0;
	width:590px;
	height:40px;
	margin-top:20px;
	padding:22px 0px 18px 30px;
	font-weight:bold;
	font-style:italic;
	vertical-align:top;
}
.submit input {
	width:200px;
	height:36px;
	padding:3px;
	color:#cb000c;
	font-weight:bold;
	font-size:16px;
}
/* ============= */

.error_message {
	width:656px;
	padding:10px 0px 10px 0px;
	margin-bottom:10px;
	text-align:center;
	color:#cb000c;
	font-size:14px;
	background-color:#FFF;
	border:2px solid #cb000c;
	list-style:none;
}
.error_message ul li{
	list-style:none;
}
/*###===###===###===###===###===###===###===###===###===###===###===###===###===###===###===###===###===###*/
/*###===###===###===###===###===###===###===###===###===###===###===###===###===###===###===###===###===###*/


/*  Gebruik het onderstaande formulier voor uw vraag of opmerking  */
/*  Voor meer informatie kunt U het onderstaande formulier invullen  */
/*  Vul onderstaand formulier zo compleet mogelijk in en we contacteren u binnenkort  */
/*  Vul onderstaand formulier zo compleet mogelijk in  */
/*  Vul onderstaand formulier in en klik op verzenden  */
/*  Vul het formulier in en we contacteren je binnenkort  */
/*  Vul het formulier in en klik dan op verzenden onderaan de pagina  */
/*  Vul het formulier volledig in en stuur...  */
/*  Je kunt hiervoor onderstaand formulier gebruiken. 
    Zodra wij je aanmelding ontvangen hebben, 
    krijg je een ontvangstbevestiging en nemen we zo snel mogelijk contact met je op.   */


/*  Vul hier bovenstaande woorden in Vul hier de cijfers in die je hoort. 
    Vraag een andere CAPTCHA. 
    Vraag een audio CAPTCHA.
    Vraag een afbeelding CAPTCHA  */
/*  Voer de tekens in die je op de afbeelding (Captcha) ziet  */
/*  Vul in het tekstveld hieronder de letters uit de afbeelding in  */
/*  submit  */
/*    */
/*    */
/*    */
/*    */
/*    */
/*    */
/*    */


