*, *:before, *:after
{
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing:border-box;
}
img {
	max-width: 100%;
	max-height: 100%;
	height: auto;
}
p:empty {
	display: none;
	}

/* Mura stuff
----------------------------------------------------------------------------- */
.mura-edit-mode {	/* push page down page when in editing mode*/
	margin-top:50px;
}

/* Page setup
----------------------------------------------------------------------------- */
html, body, form
{
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	-ms-overflow-style: scrollbar;
}
html {
	font-size:initial;
}
body
{
	font-family: Verdana,​Geneva,​Tahoma,​sans-serif;
	font-size: 62.5%;
	font-weight: 400;
	line-height: 2.0rem;
	color: #1a3f69;
	background-color: #fff;
	overflow-x: hidden;
	overflow-y: scroll;
}
#pagewrap
{
	min-height: 100%;
	height: auto !important;
	height: 100%;
	margin-bottom: -40px;
}
#pagetop
{
	display: block;
	width: 100%;
	min-height: 140px;
	margin-bottom: 20px;
}
#pagetop #home > img {
 vertical-align: baseline;
}
.push
{
	height: 40px;
}
#footer
{
	min-height: 40px;
	line-height: 40px;
	padding: 0 10px;
	margin: 0 auto;
	font-size: 1.1rem;
	background: #ffffff url('../images/bg-footer.gif') repeat-x 0 0;
	color: #545454;
}


/* HTML overrides
----------------------------------------------------------------------------- */

hr {
	border: none;
	border-top: 1px solid #cceaf1;
	margin: 9px 0 12px;
}

/* Tool classes
----------------------------------------------------------------------------- */

.nomargin {margin: 0;}

.text-align-right { text-align: right !important;}
.float-right { float: right !important;}
.mb10 { margin-bottom: 10px !important; }
.mb30 { margin-bottom: 30px !important; }
.display-none { display: none !important; }
.pad10 { padding: 10px !important; }
.no-list { list-style: none !important; padding: 0; margin: 0; }
.border { border: 1px solid #38a9d1 !important; }

/* Color settings
----------------------------------------------------------------------------- */

.darkblue { color: #1a3f69 !important; }
.mediumblue { color: #38a9d1 !important; }
.lightblue { color: #e2f4f9 !important; }
.orange { color: #ff8a00 !important; }
.green { color: #69b45c !important; }
.red { color: #FF0000 !important; }

.bg-darkblue { background-color: #1a3f69 !important; }
.bg-mediumblue { background-color: #38a9d1 !important; }
.bg-lightblue { background-color: #e2f4f9 !important; }
.bg-orange { background-color: #ff8a00 !important; }



/* Nav
----------------------------------------------------------------------------- */

ul.nav {
	list-style: none;
	padding: 0;
	margin: 0;
}
ul.nav li {
	display: block;
	float: left;
}
ul.nav li a {
	text-decoration: none;
}
ul.nav li a:hover {
	text-decoration: underline;
}

/* Breadcrumb
----------------------------------------------------------------------------- */

ul.breadcrumb
{
	display: block;
	width: 100%;
	min-height: 32px;
	overflow: hidden;
	list-style: none;
	padding: 0 0 0 0;
	margin: 0;
	font-size:1rem;
	background-color: transparent;
}
ul.breadcrumb li {
	display: block;
	float: left;
	font-size: 1rem;
	margin-right: 6px;
	color: #38a9d1;
}
.breadcrumb li:before {
    content: " " !important;
}
ul.breadcrumb li strong {
	color: #666;
}
ul.breadcrumb li a
{
	color: #38a9d1;
	text-decoration: none;
}
ul.breadcrumb li:first-child a {
	margin-left:0;
}
ul.breadcrumb li a:hover {
	text-decoration: underline;
}
ul.breadcrumb li span {
	color: #1A3F69;
}
/* Form Elements
----------------------------------------------------------------------------- */

.form-container {
}
.form-container .row,
.mura-form-textfield,
.mura-form-textarea,
.mura-form-dropdown  {
	padding:5px 0;
	margin:0 0 0 0;
}
.form-container .row.hilite {
	background-color:#e2f4f9;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.form-container .req ins {
	font-size: 0;
	text-indent: -9999px;
	text-decoration: none;
}
.form-container .req ins:after {
	content:"*";
	font-size:13px;
	color:red;
	text-decoration: none;
}

fieldset {
	border:none;
	padding:0;
	margin:0 0 20px 0;
}
label, .formvalue {
	display:block;
	float:left;
	width: 320px; /* 180px; */
	min-height:32px;
	font-size: 1.3rem;
	padding: 7px 0 0 0;
	font-weight: initial;
}
label[for^='chk'] > * {
    display: inline-block;
}
.formvalue {
	width:auto;
}
label.auto {
	width:auto;
	height:auto;
}
input, textarea, select, .radio, .checkbox, .button {
	border-radius: 4px;
	transition: all 0.5s ease-in-out 0s;
	outline: none;
}
input[type="text"],
input[type="password"],
select {
	font-size: 1.3rem;
	border: 1px solid #c5c5c5;
	width: 420px;
	height:32px;
	padding: 1px 7px;
	background-color: #fff;
}
input[type="text"]:focus {
	border:1px solid #38a9d1;
	background-color:#fff;
}
input[type="text"]::-ms-clear {
	display: none;
}
input[type="file"] {
	font-size: 1.3rem;
	width: 420px;
	padding: 3px 0;
}
.required:after {
	content: "*";
	display: inline-block;
	color: red;
}
.invalid {
	color: #DD0000 !important;
	border-color: #DD0000 !important;
	background-color: #f9d1d1 !important;
}
label.invalid {
	color: #DD0000 !important;
	border-color: transparent !important;
	background-color: transparent !important;
}

.datebox input[type="text"].day,
.datebox input[type="text"].month {
	width:40px;
}
.datebox input[type="text"].year {
	width:50px;
}

textarea {
	font-size: 1.3rem;
	padding: 5px;
	border: 1px solid #c5c5c5;
	width: 420px;
}
input[type="radio"],
input[type="checkbox"] {
	height: inherit;
	/*left: 0;
	opacity: 0;
	position: absolute;*/
	width: auto;
}
.form-container .row.hilite label {
	padding: 7px 0 0 5px;
}
.form-container .row.hilite input[type="text"] {
	background-color: #e2f4f9;
	border-color:#e2f4f9;
}
.form-container .row.hilite input[type="text"]:focus {
	background-color: #fff;
}
.form-container .elements-box {
	display: block;
	padding-left: 320px;
}
/*
.form-container .radio:before {
	border-radius: 10px;
}
.form-container .radio:before, .checkbox:before {
	background: #38A9D1;
	content: "";
	display: none;
	height: 7px;
	margin: 4px;
	width: 7px;
}
.checkbox:before {
	height: 17px;
	margin: 0px;
	width: 17px;
}
.form-container .radio {
	border-radius: 20px;
}
.form-container .radio,
.form-container .checkbox {
	background: white;
	border: 3px solid #b5c1c7;
	display: inline-block;
	float:left;
	height: 21px;
	margin-right: 5px;
	position: relative;
	top: 0;

	width: 21px;
}
input:checked + .checkbox:before, input:checked + .radio:before {
	display: block;
}
input:checked + .checkbox:before {
	background: transparent url('../images/checkbox-sprite.png') no-repeat 0 0;
}
.form-container .radiolabel, .form-container .checkboxlabel {
	display: block;
	padding-left:30px;
}
*/

.before-checkbox-sprite:before {
	content: "";
	display: inline-block;
	height: 2rem;
	width: 1.9rem;
	margin-top: .4rem;
	margin-right: 1rem;
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg width='1792' height='1792' viewBox='0 0 1792 1792' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z' fill='%233aa9d1'/%3E%3C/svg%3E%0A");
	background-size: 1.9rem auto;
	background-position: center;
	background-repeat: no-repeat;
}

.mura-form-radio label {
	width:100%;
	line-height:32px;
	padding:0 0 0 20px;
}
.mura-form-radio p:first-child {
	display:none;
}
.mura-form-radio input[type="radio"] {
	opacity: 1;
}
.mura-form-checkbox .checkbox {
	min-height: 32px;
	font-size: 1.3rem;
	padding: 7px 0px 0px;
}

.address { width: 315px !important; }
.housenumber, .housenumberadd { width: 50px !important; }
.zipcode { width: 80px !important; }
.city { width: 335px !important; }

/* TABLES
----------------------------------------------------------------------------- */
table
{
	table-layout: fixed;
	width: 100%;
	font-size: 1.3rem;
	background-color: #fff;
	border-top: 1px solid #d4d4d4;
	border-bottom: 1px solid #d4d4d4;
}
table thead
{
	background-color: #EFEFEF;
	color: #333333;
	border-top: 1px solid #d4d4d4;
	border-bottom: 1px solid #d4d4d4;
}
table td {
	text-align: left;
	white-space:nowrap;
	overflow:hidden;
	padding: 0 10px;
	height: 39px;
	line-height: 39px;
	border-bottom: 1px solid #d4d4d4;
	text-overflow:ellipsis;
	vertical-align: top;
}
table td.wrap {
	white-space:normal;
}
table thead td {
	border: none;
}
table td:last-child {
	text-align: right;
	width:50px;
}
table .col1 { width: 100px;}
table .col2 { width: 200px;}
table .col3 { width: 300px;}
table .col4 { width: 400px;}
table .col5 { width: 500px;}

table.cleantable td {
	border: none;
	vertical-align: top;
}

table.nolastpointer td:last-child {
	text-align: inherit;
	width: inherit;
}

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

.row .buttons {
	text-align: right;
	margin-bottom: 30px;
}

#loginbar {
	display: block;
	height: 24px;
	font-size: 1.1rem;
	text-align: right;
	padding: 0 10px;
}
#footer ul.nav li {
font-size: 1rem;
padding: 0 8px;
 }



#mainmenu .row.menucontainer {
	overflow: visible;
	margin-top:-40px;
	margin-bottom: -3px;
}

#mainmenu ul.tabs, #mobilemenu  ul.tabs {
	position:relative;
	display: block;
	float: left;
	width: auto;
	font-size: 1.4rem;
	min-height: 40px;
	list-style: none;
	padding: 0 10px;
	margin: 0 auto -1px;
}
#mainmenu ul.tabs li {
	display: block;
	float: left;
	height: 40px;
	line-height: 40px;
	font-size: 1rem;
}

#mainmenu ul.tabs li a {
	position:relative;
	display: block;
	float: left;
	height: 38px;
	line-height: 40px;
	margin-right: 5px;
	padding: 0 27px;
	font-weight: bold;
	background: #fff url('../images/menuBg.png') repeat-x 0 0;
	border: 1px solid #e5e5e5;
	border-radius: 11px 11px 0 0;
}
#mainmenu ul.tabs li.active a {
	margin-bottom:-1px;
	color:#1a3f69;
	height: 41px;
	border-color: #79c1d9 #79c1d9 #d9eef5;
	background-image: url('../images/menuCurrentBg.png');
}

#mainmenu ul.tabs li.active span a {
	color: #1a3f69;
}

#mainmenu ul.sidemenu {
	display: block;
	float: right;
	width: auto;
	min-height: 40px;
	font-size: 1.1rem;
	overflow: hidden;
	list-style: none;
	margin: 0;
	padding: 0 10px;
}

#mainmenu ul.sidemenu li {
	display: block;
	float: left;
	height: 40px;
	line-height: 40px;
	margin: 0 0 0 12px;
	font-size: 1.1rem;
}
#mainmenu ul.sidemenu li a {
	font-size: 1.1rem;
	font-weight: bold;
}

#mainmenu .menubar {
	display: block;
	width: 100%;
	margin: 2px auto 0;
	min-height: 32px;
	background: #fff url('../images/menubar.png') repeat-x 0 0;
}
#mainmenu .menubar .inner {
	display: block;
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
}
#mainmenu .menubar ul {
	display: block;
	float: left;
	width: 100%;
	max-width: 1180px;
	min-height: 32px;
	list-style: none;
	padding: 0 10px;
	margin: 0 auto;
	font-size: 13px;
	color: #38a9d1;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
#mainmenu .menubar ul li {
	position: relative;
	display: block;
	float: left;
	min-height: 32px;
	font-size: 1.0rem;
	line-height: 20px;
	margin: 0 3px;
	padding: 0 10px;
	color: #03779c;
	white-space:nowrap;
	cursor: pointer;
}
#mainmenu .menubar ul li:after {
	content: "";
	position:absolute;
	right: 0;
	top: 7px;
	bottom: 7px;
	display:block;
	width: 1px;
	background-color: #7ac1d9;
}
#mainmenu .menubar ul li a {
	display:block;
	height:100%;
	padding: 5px 0;
	color: #03779c;
}
#mainmenu .menubar ul li a:hover {
	color: #1a3f69;
	text-decoration: none;
}
#mainmenu .menubar ul li a.lock {
	padding-left: 15px;
	background:transparent url('../images/lock.png') no-repeat 0 -12px;
}
#mainmenu .menubar ul li .lock.open {
	background:transparent url('../images/lock.png') no-repeat 0 -44px;
}
#mainmenu .menubar ul li div.menubar-panel {
	position: absolute;
	z-index: 100000;
	top:26px;
	display: none;
	min-width:230px;
	border: 1px solid #7ac1d5;
	padding: 10px;
	margin-left: -10px;
	background-color: #e2f3fa;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
#mainmenu .menubar ul li.hover > div.menubar-panel {
	display: block;
}
div.menubar-panel div.menubar-panel {
	left: 185px;
	top: 0 !important;
	min-height: 30px !important;
}
span.submenutitle {
	float: left;
}
span.submenuindicator {
	float: right;
}
span.submenuactive,
#mainmenu .menubar ul li.active a,
#mainmenu .menubar ul li.active li.active a {
	font-weight: bold;
}
#mainmenu .menubar ul li.active li a {
	font-weight: normal;
}
#mainmenu .menubar ul li div.menubar-panel.width1 {
	width: 300px;
}
#mainmenu .menubar ul li div.menubar-panel.width2 {
	width: 600px;
}
#mainmenu .menubar ul li div.menubar-panel.width3 {
	width: 900px;
}
#mainmenu .menubar ul li ul {
	position: relative;
	display: block;
	float: left;
	width: 100%;
}
#mainmenu .menubar ul li div.menubar-panel.width2 ul li {
	width: 50%;
}
#mainmenu .menubar ul li div.menubar-panel.width3 ul li {
	width: 33.33333%;
}
#mainmenu .menubar ul li ul li {
	position: relative;
	display: block;
	float: left;
	width: 100%;
	height: 26px;
	line-height: 26px;
	padding: 0;
	margin: 0;
	font-size: 13px;
	border: none;
}
#mainmenu .menubar ul li ul li:after {
	content: none;
	position:absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 0;
	background-color: transparent;
}
#mainmenu .menubar ul li ul li a {
	display:block;
	padding: 0;
	color: #03779c;
	white-space:nowrap;
}
#mobilemenu {
	position:relative;
	display: none;
	float: left;
	min-height: 20px;
	width:100%;
	margin: 6px 0;
	padding: 0;
	color: #03779c;
	border-left: 1px solid #7ac1d9;
	background-color:#fff;
}
#mobilemenu #menutoggle {
	display: block;
	float: left;
	width:100%;
	height: 32px;
	background: #e2f4f9 url('../images/menutoggle.png') no-repeat right top;
}
#mobilemenudropdown {
	position:absolute;
	z-index:1000;
	display: none;
	top:32px;
	background-color:#fff;
	-webkit-box-shadow: 0px 5px 5px 0px rgba(50, 50, 50, 0.75);
	-moz-box-shadow:    0px 5px 5px 0px rgba(50, 50, 50, 0.75);
	box-shadow:         0px 5px 5px 0px rgba(50, 50, 50, 0.75);
}
#mobilemenu  ul.tabs li {
	display: block;
	float: left;
	height: 40px;
	line-height: 40px;
	margin: 0 5px 0 0;
	padding: 0;
}
#mobilemenu ul.tabs li {
	padding: 0;
	width: 100%;
}
#mobilemenu ul.tabs li a {
	display: block;
	float: left;
	font-weight: bold;
	height: 40px;
	line-height: 40px;
	padding: 0;
}

.panel
{
	position: relative;
	display: block;
	width: 100%;
	margin-bottom: 30px;
	border: 5px solid #fff;
}
.panel:before
{
	content: "";
	position: absolute;
	z-index:-1;
	display: block;
	width: 100%;
	height: 100%;
	webkit-box-shadow: 0px 0px 25px 0px rgba(50, 50, 50, 0.5);
	-moz-box-shadow:    0px 0px 25px 0px rgba(50, 50, 50, 0.5);
	box-shadow:         0px 0px 12px 2px rgba(0, 0, 0, 0.5);
}
.panel.big {
	height: 320px;
}
.panel .inner {
	display: block;
	width: 100%;
	height: 100%;
	overflow:hidden;
	padding: 0;
	margin:0;
}
.panel .inner p, .panel .inner a, .panel .inner img {
	display: block;
	padding: 0;
	margin:0;
	width:100%;
	height: auto;
}

.bluebox {
	position: relative;
	display: block;
	min-height: 100px;
	margin-bottom: 30px;
	background-color:#38A9D1;
	text-align:center;
	color:#fff;
	padding:15px 15px 0 !important;
}
.bluebox a {
	color:#fff;
	font-weight: bold;
}

.buttonpanel {
	position: relative;
	display: block;
	min-height: 140px;
	margin-bottom: 30px;
	background-color:#E2F4F9;
	/* text-align:center; */
	text-align:left;
	font-size:1.4rem;
	line-height:1.4rem;
	/* font-weight:bold; */
	padding:20px 15px 28px 10px;
}
.buttonpanel.bigtext {
	text-align:center;
	font-weight:bold;
	font-size:2rem;
}
a.buttonpanel:hover {
	text-decoration:none;
}
a.buttonpanel img {
	display:block;
	clear:both;
	margin:0 auto 10px;
}
a.buttonpanel .text {
	display: block;
	padding-right:14px;
}

.chevron-right:after,
._auto-chevron a:after {
	content: "";
	position: absolute;
	height: 1rem;
	width: 14px;
	margin-top:2px;
	background: transparent url('../images/chevron-right-blue.png') no-repeat right bottom;
}

.steps.buttonpanel p {
	font-size: 1.1rem;
}

._chevron-right:after {
	top:3px;
}
a.no-chevron,
a.no-chevron:after {
	background: none !important;
}

.kader {
	display: block;
	float:left;
	width: 100%;
	margin-bottom: 30px;
	background-color:#E2F4F9;
	text-align:left;
	padding:15px 15px 20px;
}

.kader br:first-child { display: none;}

.sidebar.pushdown {
	padding-top:50px;
}

.profileicon {
	display:block;
	width:100px;
	height:100px;
	float:left;
	background: transparent url('../images/icon-profile.gif') no-repeat 0 0;
}






.collapsable {
	display:block;
	width:100%;
}
.collapsable-header {
	display:block;
	overflow:hidden;
	width:100%;
	min-height: 44px;
	background-color:#38a9d1;
	margin:0 0 5px 0;
	cursor:pointer;
}
.collapsable-header  br { display: none;}
.collapsable-header a,
.collapsable-header.auto {
	display:block;
	float:left;
	width: 100%;
	min-height:44px;
	color:#fff;
	font-size:1.8rem;
	padding:12px;
	font-weight:bold;
	text-indent: -30px;
    padding-left: 30px !important;
}
.collapsable-header a:hover {
	text-decoration:none;
}
.collapsable-header a:before {
	content: "+";
	display:block;
	float:left;
	width:20px;
	height:20px;
	text-align:center;
	margin-right:10px;
	text-indent: -60px;
}
.collapsable-header.active a:before {
	content: "-";
	display:block;
	float:left;
	width:20px;
	height:20px;
	text-align:center;
	margin-right:10px;
}

.collapsable-header .filterbox {
	display:block;
	float:right;
	height:44px;
	width:300px;
	padding:6px 5px 0 12px;
}
.collapsable-header .filterbox span {
	display:block;
	float:left;
	padding-top:8px;
	color:#fff;
	font-weight:bold;
}
.collapsable-header .filterbox select {
	float:right;
	width:200px;
}
.collapsable-body {
	display:none;
	width:100%;
	margin:0 0 30px 0;
}
.collapsable-body .info-row {
	display:block;
	padding:10px 0;
	font-weight:bold;
	color:#38a9d1;
}
.collapsable-body .info-row .info-link  {
	display:block;
	float:left;
	padding-top:10px;
}
.collapsable-body .info-row .info-link:after {
	content: "";
	position: absolute;
	height: 1rem;
	width: 14px;
	top:22px;
	margin-left:3px;
	background: transparent url('../images/chevron-right-blue.png') no-repeat right bottom;
}

.btn,
.btn-back {
	display: inline-block;
	font-size:1.3rem;
	font-weight:bold;
	height: auto;
	min-height:36px;
	color:#fff;
	background-color:#38a9d1;
	padding: 8px 30px 10px 10px;
	border:none;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.btn-sm, .btn-sm:visited {
	display: inline-block;
	font-size: 13px;
	font-weight: bold;
	height: auto;
	min-height: 12px;
	color: #fff;
	background-color: #38a9d1;
	padding: 1px 18px 1px 5px;
	border: none;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.btn[disabled]{
	cursor: default;
	background-color: #B8E8F9;
}
.btn-next {
	float: right;
}
.btn-cta {
	float: right;
	background-color:#ff8a04;
}
.btn.btn-prev {
	padding:8px 10px 8px 8px;
}
.btn.btn-prev:before {
    background: transparent url(../images/chevron-button-white-back.png) no-repeat 0 center;
    margin-right: 3px;
    content: "";
    margin-top: 2px;
    height: 1rem;
    width: 14px;
    display: inline-block;
}
.btn.btn-prev:after {
	display: none;
}

input.btn-back  {
	padding:0 10px 0 30px;
	background: #38a9d1  url('../images/chevron-button-white-back.png') no-repeat 10px center;
}

input.btn  {
	padding:0 30px 0 10px;
	background: #38a9d1 url('../images/chevron-button-white-extraspace.png') no-repeat right center;
}
.btn:hover {
	text-decoration:none;
}
.btn:after {
	content: "";
	display: inline-block;
	height: 1rem;
	width: 14px;
	margin-top:2px;
	margin-left:3px;
	background: transparent url('../images/chevron-button-white.png') no-repeat right center;
}

.btn-no-after:after {
	content: "";
	background: none;
	height: 0px;
	width: 0px;
	margin-top:0px;
	margin-left:0px;
}

.btn.back {
	padding: 8px 10px 10px 30px;
}
.btn.back:after {
	left:30px;
	background: transparent url('../images/chevron-button-white-back.png') no-repeat left center;
}

.footerblock img {
	float:left;
	margin-right:20px;
	max-width:100%;
	height:auto;
}
.footerblock .thumbnail {
	display:block;
	float:left;
	width:120px;
	height:65px;
	margin:0 10px 10px 0;
	background-color:#eee;
}

.boxed-text {
	position: relative;
	display: block;
	background-color:#E2F4F9;
	padding:20px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

blockquote {
	display:table;
	width:100%;
	margin:0 0 20px 0;
	background-color:#e2f3fb;
	font-size:2.2rem;
	line-height:1.5rem;
	color:#38a9d1;
	padding:0 0 0 80px;
	background: #e2f3fb url('../images/quote-icon.png') no-repeat 35px 50px;
}

blockquote p {
	display:table-cell;
	vertical-align:top;
	margin:0;
}
blockquote p:first-child {
	padding:40px 20px 40px 0;
}
blockquote img {
	display:block;
}

.icontext {
	margin-bottom: 2rem;
}
.icontext p:first-child img {
	display:block;
	float:left;
	margin: 0 20px 0 0;
}
.icontext h1 {
	margin-bottom: 0.35rem;
}
.icontext p {
	padding-left:0;
}

.block {
	position: relative;
	display: block;
	width:100%;
	overflow:hidden;
	background-color:#E2F4F9;
	padding:20px;
	margin:0 0 20px 0;
}
#pensioencalculator {
	display: block;
}
#pensioencalculator .block {
	padding:20px 20px 0;
}
#pensioencalculator .block .row {
	margin-bottom:20px;
}
#pensioencalculator .block .block-left {
	display: block;
	float:left;
	width:60%;
}
#pensioencalculator .block .block-right {
	display: block;
	float:left;
	width:40%;
}
#pensioencalculator .block label {
	display: block;
	float:left;
	width:100%;
	height:auto;
	color: #38a9d1;
	font-size:1.4rem;
	font-weight: bold;
}
#pensioencalculator .block .inputbox {
	display: flex;
	justify-content: flex-end;
	float: left;
	width: 100%;
	height: 32px;
	font-size: 1.4rem;
	/*background:transparent url('../images/pensioencalculator-inputbox.png') no-repeat 20px 0;*/
}
#pensioencalculator .block .inputbox span {
	flex-shrink: 0;
	margin-left: 10px;
}
#pensioencalculator .block .inputbox div.euro {
	display: inline-block;
	margin-right: auto;
	font-size:1.5rem;
	color: #38a9d1;
	font-weight: bold;
}

#pensioencalculator .block .inputbox input[type="text"] {
	/*width: auto;*/
	min-width: 0;
	height:30px;
	margin:1px 2px 1px 3px;
	font-size:1.3rem;
	color: #38a9d1;
	font-weight: bold;
	text-align:right;
}
#pensioencalculator .block .inputbox input[type="text"]:focus {

}
#pensioencalculator .block .inputbox input[type="text"].decimals {
	width:35px;
	flex-shrink: 0;
}
#pensioencalculator .block .inputbox input[type="text"][disabled="disabled"] {
	background-color:#E2F4F9;
	color: #38a9d1;
	border-color:transparent;
	padding: 1px 0;
	width: 152px;
	margin-right: 9px;
}
#pensioencalculator .block .value {
	display: block;
	float:right;
	/*width:200px;*/
	text-align:right;
}
#pensioencalculator .block .value .row {
	margin-bottom: 0;
}
#pensioencalculator .block .value .bar {
	display: block;
	float:right;
	/*width: 205px;*/
	/*height: 50px;*/
	margin-bottom:10px;
}

#pensioencalculator .block .value .bar .barcup {
	display: block;
	float:right;
	width:40px;
	height: 20px;
	margin-bottom:10px;
	background: transparent url('../images/pensioencalculator-icons.png') no-repeat right 0;
}
#pensioencalculator .block .value .bar .barcup.green {
	background: transparent url('../images/pensioencalculator-icons.png') no-repeat right 0;
}
#pensioencalculator .block .value .bar .barcup.orange {
	background: transparent url('../images/pensioencalculator-icons.png') no-repeat right -50px;
}
#pensioencalculator .block .value .bar .barcup.red {
	background: transparent url('../images/pensioencalculator-icons.png') no-repeat right -100px;
}
form .helptext {
	display: none;
}
.helptext {
	display: inline-block;
	padding:10px 20px;
	background-color:#eee;
}
.error-message {
	display: none;
	width:auto;
	height: 18px;
	color:#ff0000;
	font-size:1.3rem;
	margin-bottom: 10px;
}

.popupAlert {
	display: none;
}

.alert {
	position: relative;
	display: block;
	width: 100%;
	overflow: hidden;
	padding: 10px;
	margin-bottom: 20px;
	font-size: 1.3rem;
	background-color: #F5F5F5;
	border: 1px solid #D8D8D8;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.alert p:last-child {
	margin-bottom: 0;
}
.alert .close {
	position:absolute;
	top: 5px;
	right: 5px;
	width: 18px;
	height: 18px;
	color: #fff;
	line-height: 16px;
	font-size: 12px;
	padding: 0px 0px 0px 5px;
	background: rgba(0, 0, 0, 0.5);
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	cursor: pointer;
}
.alert.error {
	color: #dd0000;
	background-color: #f9d1d1;
	border-color: #dd0000;
}

#searchbar {
	position: absolute;
	top:30px;
	right:0;
}
#searchBox {
	position: relative;
	margin-bottom: 20px;
	padding: 4px 10px;
	background-color: #e2f4f9;
}
#searchbar #searchBox {
	background-color: transparent;
}
#searchBox input[type="text"] {
	display:block;
	float:left;
	width:300px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	-moz-border-radius-topleft: 4px;
	-webkit-border-top-left-radius: 4px;
	 border-top-left-radius: 4px;
	-moz-border-radius-bottomleft: 4px;
	-webkit-border-bottom-left-radius: 4px;
	border-bottom-left-radius: 4px;
}
#searchBox input.btn,
#searchBox button.btn {
	height:32px;
	min-height:32px;
	padding:0 12px 0 10px;
	background-image:none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	-moz-border-radius-topright: 4px;
	-webkit-border-top-right-radius: 4px;
	border-top-right-radius: 4px;
	-moz-border-radius-bottomright: 4px;
	-webkit-border-bottom-right-radius: 4px;
	border-bottom-right-radius: 4px;
}
#searchBox input.btn:after,
#searchBox button.btn:after {
	background-image:none;
}
#searchBox label {
	width: auto;
	margin-right:10px;
	font-weight: bold;
}
#searchBox #filterBox {
	width: 220px;
}
#searchResultsPopup {
	position: absolute;
	z-index: 100000;
	display: none;
	width: 375px;
	min-height: 32px;
	left: 116px;
	background-color: #fff;
	border: 1px solid #c5c5c5;
	border-radius: 4px;
	transition: all 0.5s ease-in-out 0s;
	outline: none;
	cursor: pointer;
}
#searchResultsPopup ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
#searchResultsPopup ul li {
	display: block;
	width: 100%;
	height: 32px;
	padding: 0;
	margin: 0;
}
#searchResultsPopup ul li a {
	display: block;
	width: 100%;
	height: 32px;
	line-height: 32px;
	padding: 0 10px;
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.messages {}
.messages ol {
	list-style: none;
	display:block;
	width:100%;
	padding:0;
}
.messages ol li ,
.messages ol li dl {
	display:block;
	width:100%;
	cursor: pointer;
}
.messages ol li {
	overflow: hidden;
	min-height: 42px;
	line-height: 42px;
	border-top: 1px solid #c5c5c5;
}
.messages ol li:before {
	display: none;
}
.messages ol li dl dd,
.messages ol li dl dt {
	display:block;
	float:left;
	margin:0;
}
.messages ol li dl dd {
	width:46px;
}
.messages ol li dl dt.date {
	width:105px;
}
.messages ol li dl dt.title {
	width:450px;
}
.messages ol li dl dt.link a {
	color:#38a9d1;
	font-weight:bold;
}
.messages ol li dl dt.link a:after {
	content: "";
	content: "";
	position: absolute;
	height: 1rem;
	width: 14px;
	margin-top:15px;
	background: transparent url('../images/chevron-right-blue.png') no-repeat right bottom;
}
.messages ol li dl dd span.envelope {
	display:block;
	width: 30px;
	height:16px;
	margin: 12px 0;
	background: transparent url('../images/envelopes.png') no-repeat 0 -16px;
}
.messages ol li.new {
	font-weight: bold;
}
.messages ol li.new dl dd span.envelope {
	display:block;
	width: 30px;
	height:16px;
	background: transparent url('../images/envelopes.png') no-repeat 0 0;
}
.messages .message-details {
	display:none;
	width: 100%;
	overflow: hidden;
	font-size: 1rem;
	line-height: 1.5;
	padding: 10px 10px 10px 47px;
}


.servicebalie {}
.servicebalie ul {
	list-style: none;
	display:block;
	width:100%;
	padding:0;
}
.servicebalie ul li {
	display:block;
	width:100%;
	height: 42px;
	font-size: 1.3rem;
	line-height: 42px;
	padding:0 15px;
	border-top: 1px solid #c5c5c5;
}
.servicebalie ul li:before {
    content: "";
}
.servicebalie ul li a {
	color: #1a3f69;
}
.servicebalie ul li a:after {
	content: "";
	position: absolute;
	right:15px;
	height: 2rem;
	width: 14px;
	margin-top: 8px;
	background: transparent url('../images/chevron-right-blue.png') no-repeat right bottom;
}

.welkom p {
	margin: 0;
}
.themas {
	position: relative;
}
.themas .prevnext {
	position: absolute;
	top:8px;
	right: 0px;
	height: 16px;
	z-index: 1000;
	text-align: right;
}
.themas .prevnext .prev,
.themas .prevnext .next {
	display: inline-block;
	width:20px;
	height:20px;
	line-height:20px;
	text-align: center;
	font-size:10px;
	font-weight: bold;
	color:#fff;
	background-color: #38A9D1;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.themas .prevnext .prev:hover,
.themas .prevnext .next:hover{
	color:#fff;
	background-color: #E2F4F9;
	text-decoration: none;
}
.themas p {
	display:block;
	width:100%;
	margin: 0 0 5px 0;
}
/*.slider {
	position: relative;
	width:100%;
	height:350px !important;
	padding:0;
	margin:0;
}
.slider ul {
	position: relative;
	width:100%;
	overflow: hidden;
	list-style: none;
	padding:0;
	margin:0;
}
.slider li {
	list-style: none;
	padding:0;
	margin:0;
	display:block;
	float: left;
	width:100%;
}
.slider .dots {
	position: absolute;
	top:325px;
	left:0;
	right:0;
	list-style: none;
	padding:0;
	margin:0;
	display:block;
	width:100%;
	text-align:center;
}
.slider .dots  .dot {
	display:inline-block;
	float:none;
	width: 12px;
	height:12px;
	margin:0 3px;
	text-indent:-9999px;
	background-color: #E2F4F9 ;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	cursor:pointer;
}
.slider .dots  .dot.active {
	background-color: #38A9D1;
}*/

#gepensioneerd .sidebar .buttonpanel {
	height: 234px;
}

#gepensioneerd .sidebar p {
	font-size: 13px;
}

.buttonpanelGepensioneerd{
	width: 466px;
}

.messagecount {
	position: absolute;
	z-index:1000;
	top: 5px;
	right: 5px;
	min-width: 24px;
	height:24px;
	font-size: 13px;
	font-weight: bold;
	line-height:24px;
	text-align: center;
	color:#fff;
	background-color: #CE1042;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

ul.tagcloud {
	display:block;
	text-align: center;
}
ul.tagcloud li {
	display:inline-block;
	margin: 0 5px;
	max-width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.25rem;
}
ul.tagcloud li a {
	line-height: 1.25rem;
}
ul.tagcloud .size-one {
	font-size: 1rem;
}
ul.tagcloud .size-two {
	font-size: 1.15rem;
}
ul.tagcloud .size-three {
	font-size: 1.35rem;
}
ul.tagcloud .size-four {
	font-size: 1.5rem;
}

.pensioenblok {
	min-height:170px;
	text-align: center;
	padding: 15px 5px;
	border: 1px solid #38A9D1;
}
.pensioenblok h3 {
	display: block;
	width: 100%;
	min-height: 60px;
	margin-bottom: 10px;
}
.pensioenblok .amount {
	display: block;
	width: 100%;
	margin-bottom: 10px;
	font-size: 2.3rem;
	font-weight: bold;
}

.contactbox {
	padding: 10px 0;
	text-align: center;
	min-height: 200px;
	overflow: hidden;
	font-size:1.3rem;
	border: 1px solid #38a9d1 !important;
}
.contactbox .icon {
	display: block;
	width: 100%;
}


.wizard {
	position:relative;
	display:block;
	width:100%;
	height:350px;
	background: transparent url('../images/bg-wizard.jpg') no-repeat 0 0;
}
.wizard .inner {
	position:absolute;
	top:0;
	left:0;
	width: 570px;
	height:350px;
	padding: 20px;
	background-color: #e2f3fa;
}
.wizard .inner.first {
	top:60px;
	left:120px;
	width: 320px;
	padding: 0;
	text-align: center;
	background-color: transparent;
}
.wizard h1 {
	font-size: 2.5rem;
}
.wizard p {
	font-size: 1.6rem;
	margin: 0 0 5px 0;
	color: #1A3F69;
}
.wizard a{
	color: #38A9D1;
}
.wizard a:hover {
	color: #1A3F69;
	text-decoration: none;
}
.wizard .btn {
	font-size: 1rem;
	color: #fff;
}
.wizard .btn:hover {
	color: #fff;
}
.wizard .btn.back  {
	position: absolute;
	bottom: 20px;
}
.wizard .btn.back:after {
	left:10px;
	background: transparent url('../images/chevron-button-white-back.png') no-repeat left center;
}
#wizardcontainer {
	width: 100%;
	height:350px;
	border:none;
	overflow:hidden;
}

#set-combinator,
#set-plain ,
#set-combineaddress {
	margin:0;
}
#set-combinator legend,
#set-plain legend,
#set-combineaddress legend {
	display: none;
}
#set-combinator .mura-form-textfield,
#set-combineaddress .mura-form-textfield {
	display: inline-block;
	width: auto;
}
#set-combinator label[for="plaats"],
#set-combineaddress label[for="huisnummer"],
#set-combineaddress label[for="toevoeging"] {
	display: none;
}

ul.pager {
	display: block;
	width:100%;
	height: 28px;
	list-style: none;
	padding:0;
	margin: 0 0 10px;
}

ul.pager li {
	display: block;
	float: left;
	padding: 0;
	margin: 0 5px 0 0;
}
ul.pager li:before {
	display: none;
}
ul.pager li a.btn {
	font-size: 13px;
	height: auto;
	min-height: 28px;
	padding: 0 30px;
}
ul.pager li a.btn:after {
	margin-top: 8px;
}
ul.pager li a.btn.back:after {
	left:10px;
	margin-top: 8px;
	background: transparent url('../images/chevron-button-white-back.png') no-repeat left center;
}
.pager li>a, .pager li>span {
	padding: initial;
	border: initial;
	background-color: initial;
	border-radius: initial;
}
.pager li>a:focus, .pager li>a:hover {
	text-decoration: initial;
	background-color: initial;
}
.mura-index {
	font-size: 1.3rem;
}

.video-content {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}

.video-content embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.step {
	padding-bottom: 10px;
}

.step:after {
	clear: both;
	content: " ";
	display: table;
}

.step img {
	float: left;
	height: 29px !important;
	margin-right: 20px;
	width: 52px !important;
}

a.buttonpanel.side {
	text-align: center;
	width: 270px;
	float:  none;
}

a.buttonpanel.side:after {
	content: none !important;
}

a.buttonpanel.side img {
	width: auto;
}

.fullwidth {
	width: 100% !important;
}

/* P123 */

.p123-accordion {
	margin: 0 0 40px;
}

.p123-accordion .collapsable:first-child {
	padding-top: 20px;
}

.p123-accordion .accordion-icon {
	padding: 0 12px;
}

.p123-accordion .collapsable-header.p123-btn {
	background-color: #E2F4F9;
	margin-bottom: 12px;

}

.p123-accordion .collapsable-header.p123-btn a {
	color: #1a3f69;
	font-size: 13px;
}

.sidebar .p123-panel {
	min-height: auto;
}

.sidebar #p123-logo {
	height: 40px;
}

.sidebar .p123-logo-1,
.sidebar .p123-logo-2,
.sidebar .p123-logo-3 {
	background: no-repeat center center;
}

.sidebar .p123-logo-1 {
	background-image: url('../images/p123-logo-1.png');
}

.sidebar .p123-logo-2 {
	background-image: url('../images/p123-logo-2.png');

}

.sidebar .p123-logo-3 {
	background-image: url('../images/p123-logo-3.png');
}

/* submenu */

.menuBlock {
	margin-bottom: 20px;
}
.menuBlock .title {
	background: #38a9d1;
	font-weight: bold;
	color: #fff;
	padding: 7px 10px 7px 10px;
	font-family: Verdana,Arial,Helvetica,Tahoma,sans-serif;
	border-radius: 10px 10px 0 0;
	font-size: 13px;
	line-height: 1.2rem;

	position: relative;
  }


.menuBlock .items {
	background: #e2f4f9;
	padding: 7px 10px 8px 10px;
	font-family: Verdana,Arial,Helvetica,Tahoma,sans-serif;
	border-radius: 0 0 10px 10px;
	font-size: 13px;
	line-height: 1.2rem;

	position: relative;
}

.menuBlock .title a {
	color: #fff;
	text-decoration: none;
}

.menuBlock .items ul {
	display: block;
	border-bottom: 1px solid #f1fafc;
}

.menuBlock .items li {
	display: block;
	font-size: 13px;
}

.menuBlock .items li:before {
	display: none;
}

.menuBlock .items li.current>a {
	color: #1a3f69;
	text-decoration: none;
	font-weight: bold;
}
.menuBlock .items li a {
	display: block;
	border-top: 1px solid #f1fafc;
	border-bottom: 1px solid #cbedf4;
	padding: 8px 0 7px 0;
}

.infotext {
	margin-top: 10px;
	margin-left:320px;
	font-size: 0.75rem;
}
.infotext2 {
	display: block;
	width: 100%;
	overflow: hidden;
	padding-left: 338px;
	font-size: 9.75px;
}

.btn-link{
	display: block;
	color: #38a9d1;
	padding: 10px 5px;
}

.kader.small.image{
	padding: 0;
}

.kader.small.image{
	text-align: center;
}

.kader.small.image .banner-text{
	text-align: left;
	padding: 15px 15px 20px 15px;
}

@media print {

	* {
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
	}

	.collapsable-body {
		display: block !important;
	}

	#pagetop,
	.sidebar,
	#footer {
		display: none;
	}
}

/* FEEDBACKTOOL */

#feedbackbutton{
	position: absolute;
	right:-36px;

}

.pollSlider{
	z-index: 1500;
	position:fixed;
	background: #e1f3f9;
	border: 1px solid #38a9d1;
	width:320px;
	right:0px;
	top:0px;
	margin-right: -320px;
	border-bottom-left-radius: 5px;
	-webkit-box-shadow: 8px 13px 18px -12px rgba(0,0,0,0.75);
	-moz-box-shadow: 8px 13px 18px -12px rgba(0,0,0,0.75);
	box-shadow: 8px 13px 18px -12px rgba(0,0,0,0.75);

}

@media (min-height:768px){
	.pollSlider{
		top: 240px;
	}
}

#pollSlider-button {
    z-index: 100;
    position: fixed;
    right: 0px;
    top: 318px;
    padding: 0 10px;
    background: #38a9d1;
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    -ms-transform: rotate(270eg);
    transform: rotate(270deg) translateY(-100%);
    transform-origin: 100% 0;
    -webkit-appearance: none;
    border-style: none;
    border-color: none;
    border-image: none;
    font-size: 15px;
    font-weight: bold;
	font-family: Verdana, serif;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    height: 36px;
    color: #fff;
    outline: 0;
}

.pollSlider .close{
	float: right;
	-webkit-appearance: none;
	border-style: none;
	border-color: none;
	border-image: none;
	background-color: transparent;
	font-size: 17px;
	color: #38a9d1;
	font-weight: 700;
	padding-top: 4px;
	margin-right: 5px;
}

.pollSlider .center-content{
	margin-left:auto;
	margin-right: auto;
	padding: 20px;
}

.pollSlider .center-content p{
	text-align: left;
}

.pollSlider .center-content h2{
	text-align: center;
}
ul.emoji-list li:before {
	content: none;
}
ul.emoji-list{
	list-style-type: none;
	-webkit-padding-start: 0;
	text-align: center;
}
ul.emoji-list li{
	display: inline-block;
	padding-right: 7px;
	cursor: pointer;
	padding-left: 0px;
}

ul.emoji-list li.disabled img{
	opacity: 0.5;
}

ul.emoji-list li.active img{
	 -webkit-box-shadow: 0 0 0 5px #fff;
	-moz-box-shadow: 0 0 0 5px #fff;
	box-shadow: 0 0  0 5px #fff;
	border-radius: 50%;
}

.btn#submitFeedback{
	float:right;
	margin: 10px;
}

.feedback-form{
	margin-top:30px;
}


.feedback-form input:focus { outline:none;background-color: transparent;border: none; }


/* form starting stylings ------------------------------- */
.feedback-form  .group 			  {
  position:relative;
  margin-bottom:35px;
}
.feedback-form input 				{
  font-size:15px;
  display:block;
  width: 275px;
  border:none;
	border-radius: 0;
  border-bottom:2px solid #38a9d1;
	background-color: transparent;
}
.feedback-form input:focus { outline:none; }

/* LABEL ======================================= */
.feedback-form label 				 {
  color:#38a9d1;
  font-size:14px;
  font-weight: 700;
  position:absolute;
  pointer-events:none;
  left:5px;
  top:0px;
  transition:0.2s ease all;
  -moz-transition:0.2s ease all;
  -webkit-transition:0.2s ease all;
width: auto;
}

/* active state */
.feedback-form input:focus ~ label,
.feedback-form input:valid ~ label {
  top: -30px;
  font-size:12px;
  color:#38a9d1;
}

/* BOTTOM BARS ================================= */
.feedback-form  .bar 	{ position:relative; display:block; width:275px; }
.feedback-form .bar:before, .feedback-form .bar:after 	{
  content:'';
  height:2px;
  width:0;
  bottom:2px;
  position:absolute;
  background:#38a9d1;
  transition:0.2s ease all;
  -moz-transition:0.2s ease all;
  -webkit-transition:0.2s ease all;
}

.feedback-form .bar:before {
  left:50%;
}

.feedback-form  .bar:after {
  right:50%;
}

/* active state */
.feedback-form  input:focus ~ .bar:before,
.feedback-form input:focus ~ .bar:after {
	width:50%;
}

/* HIGHLIGHTER ================================== */
.feedback-form .highlight {
  position:absolute;
  height:60%;
  width:100px;
  top:25%;
  left:0;
  pointer-events:none;
  opacity:0.5;
}

/* active state */
.feedback-form input:focus ~ .highlight {
  -webkit-animation:inputHighlighter 0.3s ease;
  -moz-animation:inputHighlighter 0.3s ease;
  animation:inputHighlighter 0.3s ease;
}

/* ANIMATIONS ================ */
@-webkit-keyframes inputHighlighter {
	from { background:#38a9d1; }
  to 	{ width:0; background:transparent; }
}
@-moz-keyframes inputHighlighter {
	from { background:#38a9d1; }
  to 	{ width:0; background:transparent; }
}
@keyframes inputHighlighter {
	from { background: #38a9d1; }
  to 	{ width:0; background:transparent; }
}
