@charset "UTF-8";

/* --------------------------------------------

	COLORS
	-------------------------------------------
	dark blue: 		#006699 (color 1, titles etc)
	blue:			#81c4e9 (color 2)
	light blue:		#a2d5f2 (color 3)
	beige:			#f2dca2 (color 4)
	black			#333333 (plain text)
	
	CHAPTERS
	-------------------------------------------
	1.	CSS reset
	2.	Page building
	3.	Navigation
	4.	Text
	5.	Blocks
	6.	Colors
	7.	Events
	8.	Links
	9.	Footer
	10.	Forms
	11. Flash elements
	12.	Ajax elements
	13.	Tell a Friend
	14.	Banners
	15.	Lightbox
	16.	Feedback
	17. Afsluitstraat
	18. Clausule vragen
	19. Discount
	*.	Helpers
	
	
	
	1. CSS RESET v1.0 | 20080212 (meyerweb.com)
-------------------------------------------- */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: top;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

/* remember to define focus styles! */
:focus {
	outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/* --------------------------------------------
	2. PAGE BUILDING
-------------------------------------------- */

body {
	background: #a2d5f2;
	font-size: 62.5%;
	font-family: Arial, Helvetica, Verdana, sans-serif;
}

#container {
	width: 100%;
}
.wrapper {
	width: 900px;
	margin: 0px auto;
	overflow: hidden;
}

#top {
	clear: both;
	background: #81c4e9;
	height: 70px;
}
#top #logo {
	margin: 15px 0 0 15px;
	float: left;
}
#top #logo a {
	display: block;
	width: 282px;
	height: 36px;
	background: url(/img/logo_dier_en_zorg.gif) no-repeat;
}
#top #logo h1 {
	text-indent: -9999px;
}
#top #slogan h1 {
	position: absolute;
	padding-top: 25px;
	width: 990px;
	text-align:center;
	font-size: 2em;
	color: #000;
}
#top #theme_logo {
	display: block;
	width: 247px;
	height: 37px;
	float: right;
	margin: 15px 0 0 0;
	
	background: url(/img/logo_sns.gif) no-repeat;
	
}
#top #theme_logo h3 {
	text-indent: -9999px;
}


#top #site_search {
	padding-top: 20px;
	float: right;
	width: 310px;
}

#nav {
	background: #f2dca2;
	height: 50px;
	text-align: center;
}

#fq_container {
	clear: both;
	background: #f2dca2;
}
#fq_container .wrapper {
	padding: 30px;
	width: 840px;
	height: 245px;
	background: transparent url(img/bg_full_quote_01.jpg) no-repeat;
}
#fq_container.fq_bottom {
	padding: 15px 0 0 0;
}



#content {
	clear: both;
	background: #FFFFFF;
	
}
#content .wrapper {
	position: relative;
	padding: 50px 0 100px 0;
}
#footer {
	clear: both;
	padding: 50px 0;
}

#feedback {
}

/* --------------------------------------------
	3. NAVIGATION
-------------------------------------------- */

#nav ul {
	padding: 15px 0 0 0;
}
#nav ul li {
	display: inline;
	margin: 0px 3px;
}
#nav ul li a {
	color: #000000;
	text-decoration: none;
	font-size: 1.4em;
	margin: 0px 0px 0px 2px;
	padding: 3px 15px 4px 13px;
	width: auto;
}
*:first-child+html #nav ul li a { /* IE7 hack */
	height: 20px;
	line-height: 20px;
}
#nav ul li.active a,
#nav ul li a:hover {
	background: #fcf6e8;
}

ul.sub_nav {
	padding: 0px !important;
}

ul.sub_nav li {
	line-height: 2em;
	font-size: 1.2em;
	list-style-type: none !important;
	padding: 0px !important;
}
ul.sub_nav li a {
	color: #999999;
	text-decoration: none;
}
ul.sub_nav li a:hover,
ul.sub_nav li.active a {
	color: #006699;
}

/* --------------------------------------------
	4. TEXT
-------------------------------------------- */
h1, h2, h3 {
	font-size: 1.6em;
	font-weight: bold;
	margin-bottom: 10px;
	color: #006699;
}
h2 {
	font-size: 1.4em;
}
h3 {
	font-size: 1.2em;
}

p {
	font-size: 1.2em;
	margin-bottom: 1.8em;
}
#content p {
	line-height: 1.8em;
}
p.small, span.small {
	font-size: 10px;
}

#content ul {
	margin-bottom: 1.8em;
	padding: 0 0 0 15px;
}
#content ul li {
	font-size: 1.2em;
	list-style-type: disc;
	line-height: 1.8em;
}
#content ul.actions {
	padding: 0;
	margin: 0 0 10px 0;
}
#content ul.actions li {
	list-style-type: none;
	margin: 0 0 10px 0;
}

/* --------------------------------------------
	5. BLOCKS
-------------------------------------------- */

.crumb {
	position: absolute;
	top: 18px;
	left: 10px;
	font-size: 1.2em;
	color: #999999;
	z-index: 10;
}
.three_quad_colm {
	width: 655px;
	padding: 0 10px; 
	float: left;
}
.half_colm {
	width: 430px;
	padding: 0 10px; 
	float: left;
}
.quad_colm {
	width: 205px;
	padding: 0 10px 0 10px; 
	float: left;
}

.half_colm .quad_colm {
	width: 210px;
	padding: 0px;
}

.three_quad_colm .half_colm {
	width: 307px;
}

.boxed {
	border: 1px solid #a2d5f2;
	color: #333333;
	padding: 9px;
}

.boxed h1,
.boxed h2,
.boxed h3 {
	color: #006699;
	border-bottom: 1px solid #a2d5f2;
	padding: 0 0 10px 0;
}

.slotverklaring {
	height: 350px;
	overflow: scroll;
	display: block;
}


/* --------------------------------------------
	6. COLORS
-------------------------------------------- */


/* --------------------------------------------
	8. LINKS
-------------------------------------------- */
a {
	color: #006699;
}
a:hover {
	color: #000000;
	cursor: pointer;
}

a.more {
	font-weight: bold;
	text-decoration: none;
	background: transparent url(img/bullet_right.gif) right 4px no-repeat;
	padding-right: 8px;
	font-size: 1.2em;
}
a.more:hover {
	text-decoration: underline;
}
a.grey {
	color: #999999;
	font-size: 1.2em;
	text-decoration: none;
	font-weight: bold;
}
a.grey:hover {
	color: #333333;
	text-decoration: underline;
	
}
a.btn_beslis_nu {
	display: block;
	float: left;
	width: 205px;
	height: 71px;
	overflow: hidden;
	background: transparent url(img/btn_beslis_nu.gif) no-repeat;
	text-indent: -1000px;
}
a.btn_beslis_nu:hover {
	background: transparent url(img/btn_beslis_nu.gif) left -71px no-repeat;
}
a.btn_beslis_later {
	display: block;
	float: left;
	width: 205px;
	height: 71px;
	overflow: hidden;
	background: transparent url(img/btn_beslis_later.gif) no-repeat;
	text-indent: -1000px;
}
a.btn_beslis_later:hover {
	background: transparent url(img/btn_beslis_later.gif) left -71px no-repeat;
}
a.btn_sluit_af {
	display: block;
	width: 249px;
	height: 72px;
	background: transparent url(img/btn_sluit_af_5180260.gif) 0 0 no-repeat;
	text-indent: -2000px;
}

a.select_ras {
	font-size: 1.2em;
	margin-right: 10px;
	text-decoration: none;
}
a.select_ras:hover {
	text-decoration: underline;
}

/* --------------------------------------------
	9. FOOTER
-------------------------------------------- */

#footer h3,
#footer p,
#footer li {
	font-size: 1.2em;
	color: #333333;
	text-decoration: none;
}
#footer h3 {
	margin-bottom: 8px;
}
#footer a {
	color: #333333;
}
ul.footer_nav {
	width: 80%;
	
}

ul.footer_nav li {
	float: left;
	width: 50%;
	margin-bottom: 5px;
}
ul.footer_nav li a {
	text-decoration: none;
}
ul.footer_nav li a:hover {
	text-decoration: underline;
}

/* --------------------------------------------
	10. FORMS
-------------------------------------------- */


/* DEAFULT FORM SETTINGS */

form { }

fieldset {
	clear: both;
	background:transparent url(img/stroke_dotted.gif) repeat-x scroll left 10px;
	_background: transparent url(img/stroke_dotted.gif) left 30px repeat-x; /* IE FIX */
}

legend {
	color: #006699;
	font-size: 1.4em;
	font-weight: bold;
	margin-bottom: 24px;
}

label {
	width: 30%;
	margin-right: 1%;
	float: left;
	padding: 3px 1% 0 0;
	font-size: 1.2em;
	text-align: right;
}
label.required {
	background: transparent url(img/required.gif) no-repeat scroll right 5px;
}
label.error {
	color: #990000;
}

div.element {
	clear: both;
	width: 100%;
	overflow: hidden;
	margin-bottom: 18px;
	font-size: 1.2em;
}

div.radio_group {
	float: right;
	width: 68%;
	_width: 67.5%;
}
div.radio_group label {
	width: auto;
	clear: left;
	text-align: left;
}

input, select, textarea {
	font-size: 13px;
	padding: 7px;
	border: 1px solid #666666;
}
input:focus, select:focus, {
	border: 1px solid #006699;
}
input.radio {
	border: none;
	padding: 0;
}
input.submit {
	background: #1a76a3;
	color: #FFFFFF;
	border: 1px solid #FFFFFF;
}
input.submit:hover {
	background: #006699;
}

/* INPUT SIZES */
input.xx_small {
	width: 5% !important;
}
input.extra_small {
	width: 10% !important;
}
input.small {
	width: 15% !important;
}
textarea.large {
	width: 35%;
	height: 150px;
}

/* search */
div#site_search input#s_search_q {
	width: 180px;
	padding: 0.3em 0.5em;
	margin-right: 10px;
	border: 1px solid #CCCCCC;
	color: #999999;
}

div#site_search input.submit {
	width: 90px;
	padding: 0.2em 0.5em 0.4em 0.5em;
	color: #FFFFFF;
	background: #a2d5f2;
	border: none;
}
div#site_search input.submit:hover {
	background: #006699;
}

/* form navigation */
.actions .primary, 
.actions .secundary {
	background: #1a76a3;
	color: #FFFFFF;
	border: 1px solid #FFFFFF;
	text-decoration: none;
	padding: 5px 10px 4px 10px;
}
.actions .primary:hover {
	background: #006699;
}
.actions .secundary {
	background: #CCCCCC;
	color: #333333;
}
.actions .secundary:hover {
	background: #d9d9d9;
}

/* --------------------------------------------
	11. FLASH ELEMENTS
-------------------------------------------- */


/* --------------------------------------------
	12. AJAX ELEMENTS
-------------------------------------------- */


/* --------------------------------------------
	13. TELL A FRIEND
-------------------------------------------- */


/* --------------------------------------------
	14. BANNERS
-------------------------------------------- */
.banner img {
	border: none;
}

/* --------------------------------------------
	14. FULL QUOTE
-------------------------------------------- */

#fq {
	width: 380px;
	height: 200px;
	padding: 10px 20px;
	background: transparent url(img/bg_full_quote_overlay.png) no-repeat;
	position: relative;
}
#fq .fq_title {
	width: 420px;
	height: 40px;
	text-transform: uppercase;
}
#fq label {
	width: 100%;
	text-align: left;
	font-weight: bold;
	margin-bottom: 10px;
}
#fq .radio_group label {
	margin: 0px;
}
#fq .radio_group label .radio {
	width: 15px;
}
#fq input,
#fq select {
	width: 90%;
	padding: 0.5em 0.4em;
	margin-bottom: 10px;
}

#fq_nav {
	height: 30px;
	position: absolute;
	top: 175px;
	left: 20px;
}

#fq .submit {
	width: auto;
	padding: 0.2em 1.2em 0.3em 1.2em;
	background: #1a76a3 url(img/bg_button_blue.gif) repeat-x;
	border: none;
	font-size: 1.4em;
	float: left;
	margin-right: 10px;
}
#fq .submit:hover {
	background: #1a76a3;
	cursor: pointer;
}

#fq .submit_grey {
	padding: 0.3em 1.2em 0.4em 1.2em;
	background: #CCCCCC;
	color: #666666;
	font-weight: bold;
	text-decoration: none;
}
#fq .submit_grey:hover {
	background: #999999;
	color: #FFFFFF;
}


#fq .error {
    border: 1px solid;
    margin: 0px 0px 5px 0px;
    padding:5px 10px;
    background: #FFBABA !important;
}

/* --------------------------------------------
	15. PRODUCT
-------------------------------------------- */

.product {
	width: 205px;
	float: left;
}
.product .image {

}
.product .title {
	font-size: 1.1em;
	font-weight: bold;
	margin-bottom: 5px;
	height: 55px;
}
.product .price {
	border-top: 1px solid #999999;
	border-bottom: 1px solid #999999;
	width: 205px;
	overflow: hidden;
	padding: 5px 0px;
	margin: 0 0 15px 0;
	position: relative;
}
.product .price .prefix {
	font-size: 1.2em;
	color: #006699;
	float: left;
	position: absolute;
	bottom: 15px;
	left: 0px;
}
* html .product .price .prefix { /* IE6 hack*/
	bottom: 20px;
	left: 0px;
}
.product .price .amount {
	font-size: 4.5em;
	color: #006699;
	float: right;
	font-weight: bold;
	margin-left: 32px;
}
* html .product .price .amount { /* IE6 hack*/
	margin-left: 20px;
}


.boxed .product {
	width: 100%;
}
.boxed .product .price {
	border-top: 1px solid #A2D5F2;
	border-bottom: none;
	width: auto;
	margin: 0px;
}
.boxed .product .title {
	font-weight: normal;
}
.boxed .product .price .prefix,
.boxed .product .price .amount {
	color: #006699;
}

.product_properties {
	width: 205px;
	float: left;
}
.product_properties ul {
	padding: 0px !important;
}
.product_properties ul li {
	font-size: 1.2em;
	background: transparent url(img/bullet_product.gif) left 5px no-repeat;
	padding-left: 25px;
	margin-bottom: 10px;
	line-height: 1.8em;
	list-style-type: none !important;
}
.half_colm .product_properties {
	float: right;
}
.half_colm .product_properties:before {
	padding: 0px 10px;
}

#other_products .quad_colm {
	opacity: 0.25;
	filter: Alpha(opacity=25);

}
#other_products .product_mouse_over {
	opacity: 1;
	cursor: pointer;
	filter: Alpha(opacity=100);

}

.result_detail {
	text-align: right;
}
.result_detail .image {
	margin-bottom: 20px;
}
.result_detail .label {
	font-size: 1.2em;
	color: #999999;
}
.result_detail .value {
	font-size: 1.4em;
	color: #006699;
	font-weight: bold;
	margin-bottom: 15px;
}

.final_check .result_detail {
	text-align: left;
}
.final_check .result_detail .label {
	width: 100px;
	float: left;
	overflow: hidden;
}
.final_check .result_detail .value {
	font-weight: normal;
}

/* --------------------------------------------
	16. FEEDBACK
-------------------------------------------- */
.info, .success, .warning, .error, .validation, .inline_error {
	clear: left;
    border: 1px solid;
    margin: 0px 0px 10px 0px;
    padding:15px 10px 15px 15px;
    background-repeat: no-repeat;
    background-position: 12px center;
	font-size: 1.2em;
}
.info ul, .success ul, .warning ul, .error ul, .validation ul {
	margin-bottom: 0px !important;
	padding: 0px !important;
}
.info li, .success li, .warning li, .error li, .validation li {
	list-style-type: none !important;
	font-size: 1.2em;
}
.info {
    color: #00529B;
    background-color: #BDE5F8;
    /*background-image: url('img/info.png');*/
}
.success {
    color: #4F8A10;
    background-color: #DFF2BF;
    /*background-image:url('img/success.png');*/
}
.warning {
    color: #9F6000;
    background-color: #FEEFB3;
    /*background-image: url('img/warning.png');*/
}
.inline_error {
	display: none;
	margin: 5px 0 0 209px;
	font-size: 1em;
	padding: 5px;
	border: none;
}

.error,
.error a,
.inline_error,
.inline_error a {
    color: #D8000C;
    background-color: #FFBABA;
    /*background-image: url('img/error.png');*/
}
.el_error {
    color: #D8000C;
}


/* --------------------------------------------
	17. Afsluitstraat
-------------------------------------------- */
.aflsuitstraat {
	height: 35px;
	margin-bottom: 20px;
	background: url(img/bg_aflsuitstraat.gif) no-repeat;
}
.aflsuitstraat ol {
	margin: 0 !important;
	padding: 0 !important;
}
.aflsuitstraat ol li {
	display: block;
	float: left;
	width: 160px;
	height: 35px;
	padding: 0 0 0 5px;
	line-height: 35px;
	vertical-align: middle;
	font-size: 1.2em;
	background: url(img/bg_aflsuitstraat_sep.gif) top right no-repeat;
	color: #336699;
}
.aflsuitstraat ol li.first {
	padding: 0 0 0 10px;
}
.aflsuitstraat ol li.active {
	color: #FFFFFF;
}
.aflsuitstraat ol li.last {
	background: none;
	width: 140px;
}

/* --------------------------------------------
	18. Clausule vragen
-------------------------------------------- */

#questions { }

#questions .question {
	border-top: 1px dashed #CCCCCC;
	padding: 10px 0 0 0;
	font-size: 1.2em;
}
#questions .question h4 {
	width: 500px;
	float: left;
}
#questions .question .ja_nee {
	float: right;
	width: 140px;
}
#questions .question .ja_nee label {
	width: 60px;
	float: left;
	clear: none;
	margin: 0;
	padding: 0;
}

#answers_1 {
	clear: both;
}
#questions .question .question_holder {
	clear: left;
	margin: 7px 0 15px 0;
	padding: 8px 0 0 0;
}
#questions .question .question_holder span {
	float: left;
	width: 180px;
	height: 30px;
}
#questions .question .question_holder .datum,
#questions .question .question_holder .body,
#questions .question .question_holder .disorder {
	float: left;
	clear: left;
	width: 450px;
}
#questions .question .question_holder select {
	width: 150px;
	padding: 2px;
	margin: 0 0 0 5px;
}
#questions .question .add_question {
	clear: both;
	margin: 10px 0 0 0;
	padding: 5px;
	background: #CCCCCC;
	overflow: hidden;
}


/* --------------------------------------------
	19 DISCOUNT
-------------------------------------------- */

.product .price .prefix_old {
	float: left;
}
.product .price .amount_old {
	float: right;
	text-decoration: line-through;
}

.boxed .product .price .prefix {
	clear: left;
}
.boxed .product .price .amount {
	clear: right;
}

.discount_banner {
	border: 1px solid #CCCCCC;
	padding: 10px;
	margin: 0 0 20px 0;
}
.discount_banner h2 {
	font-size: 26px;
	margin: 0;
}
.discount_banner p {
	margin: 0;
	line-height: 16px !important;
}
.discount_banner p.voorwaarden {
	color: #999999;
	font-size: 10px;
}
.discount_banner p.voorwaarden a {
	color: #999999;
	text-decoration: none;
}
.discount_banner p.voorwaarden a:hover {
	text-decoration: underline;
}

.refund_coupon {
	margin: 20px 10px 40px 10px;
	font-size: 16px;
	border: 1px solid #CCCCCC;
	padding: 15px 0;
	text-align: center;
}
.refund_coupon p {
	margin: 0;
	padding: 0;
}
.refund_coupon a {
	font-weight: bold;
}

/* --------------------------------------------
	*. HELPERS
-------------------------------------------- */
.stroke {
	margin: 10px 0px;
	height: 1px;
	background: #CCCCCC;
	width: 100%;
	overflow: hidden;
}
.gutter {
	clear: both;
	height: 50px;
	width: 100%;
	overflow: hidden;
}
.gutter_extra_small {
	clear: both;
	height: 25px;
	width: 100%;
	overflow: hidden;
}
.gutter_small {
	clear: both;
	height: 25px;
	width: 100%;
	overflow: hidden;
}
.gutter_large {
	clear: both;
	height: 100px;
	width: 100%;
	overflow: hidden;
}
.left {
	float: left;
}
.right {
	float: right;
}
.hide,
.tmp_holder {
	display: none;
}
.clear {
	clear: both;
}
.no_padding {
	padding: 0 !important;
}
.no_margin{
	margin: 0 !important;
}
.small_margin_right {
	margin-right: 5px;
}