﻿/**
 * HTML5 ✰ Boilerplate
 *
 * style.css contains a reset, font normalization and some base styles.
 *
 * Credit is left where credit is due.
 * Much inspiration was taken from these projects (%79 is an 'y', added to prevent a (undue) security warning):
 * - %79ui.yahooapis.com/2.8.1/build/base/base.css
 * - camendesign.com/design/
 * - praegnanz.de/weblog/htmlcssjs-kickstart
 */

/**
 * html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
 * v1.6.1 2010-09-17 | Authors: Eric Meyer & Richard Clark
 * html5doctor.com/html-5-reset-stylesheet/
 */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q { quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after { content: ''; content: none; }

ins { background-color: #ff9; color: #000; text-decoration: none; }

mark { background-color: #ff9; color: #000; font-style: italic; font-weight: bold; }

del { text-decoration: line-through; }

abbr[title], dfn[title] { border-bottom: 1px dotted; cursor: help; }

table { border-collapse: collapse; border-spacing: 0; }

hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }

input, select { vertical-align: middle; }


/**
 * (%79 is an 'y', added to prevent a (undue) security warning)
 * Font normalization inspired by %79UI Library's fonts.css: developer.yahoo.com/%79ui/
 */

body { font:13px/1.231 sans-serif; *font-size:small; } /* Hack retained to preserve specificity */
select, input, textarea, button { font:99% sans-serif; }

/* Normalize monospace sizing:
   en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome */
pre, code, kbd, samp { font-family: monospace, sans-serif; }


/**
 * Minimal base styles.
 */

html { overflow-y: hidden; }

/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: none; }

ul, ol { margin-left: 2em; }
ol { list-style-type: decimal; }

/* Remove margins for navigation lists */
nav ul, nav li { margin: 0; list-style:none; list-style-image: none; }

small { font-size: 85%; }
strong, th { font-weight: bold; }

td { vertical-align: top; }

/* Set sub, sup without affecting line-height: gist.github.com/413930 */
sub, sup { font-size: 75%; line-height: 0; position: relative; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }

pre {
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; white-space: pre-wrap; word-wrap: break-word;
  padding: 15px;
}

textarea { overflow: auto; } /* www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */

.ie6 legend, .ie7 legend { margin-left: -7px; } 

/* Align checkboxes, radios, text inputs with their label by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] { vertical-align: text-bottom; }
input[type="checkbox"] { vertical-align: bottom; }
.ie7 input[type="checkbox"] { vertical-align: baseline; }
.ie6 input { vertical-align: text-bottom; }

/* Hand cursor on clickable input elements */
input[type="button"], input[type="radio"], input[type="checkbox"], input[type="submit"], input[type="image"], button { cursor: pointer; }

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea { margin: 0; }

/* Colors for form validity */
input:valid, textarea:valid   {  }
input:invalid, textarea:invalid {
   border-radius: 1px; -moz-box-shadow: 0px 0px 5px red; -webkit-box-shadow: 0px 0px 5px red; box-shadow: 0px 0px 5px red;
}
.no-boxshadow input:invalid, .no-boxshadow textarea:invalid { background-color: #f0dddd; }


/* These selection declarations have to be separate
   No text-shadow: twitter.com/miketaylr/status/12228805301
   Also: hot pink! */
::-moz-selection{ background: #FF5E99; color:#fff; text-shadow: none; }
::selection { background:#ca1324; color:#fff; text-shadow: none; }

/* j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: #FF5E99; }

/* Make buttons play nice in IE:
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {  width: auto; height: 30px; overflow: visible; }

/* Bicubic resizing for non-native sized IMG:
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img { -ms-interpolation-mode: bicubic; }

/**
 * You might tweak these..
 */

body, select, input, textarea {
  /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */
  color: #444;
  /* Set your base font here, to apply evenly */
  font-family: Arial, Sans-Serif;
  font-size:12px;
  line-height:17px;
}

/* Headers (h1, h2, etc) have no default font-size or margin; define those yourself */
h1, h2, h3, h4, h5, h6 { 
	font-weight: bold;
	color:#004b7f; 
}

h2 {
	font-size:18px;
	margin:12px 0;
}
h3 {
	margin-bottom:3px;	
}

a, a:active, a:visited { color: #004b7f; }
a:hover { color: #036; }


/**
 * Primary styles
 */

html, body {
	height:100%;
}

#container {
	min-height:100%;
	border-top: solid 4px #ca1324;
	position:relative;
	background: #fff url('/Content/images/shadow.gif') no-repeat bottom center;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	min-width:987px;
}

#content {
	min-height:100%;
	margin: 0px auto;
	width:935px;
	padding: 0 26px 260px 26px;
}

#header {
	margin:15px 0 0;
	position:relative;
}

#header>img {
	display:block;
}

#header ul.menu {
	width:670px;
	overflow:hidden;
	background: url('/Content/images/menu.gif') repeat-x;
	color:#ca1324;
    font-size:13px;
}

#header ul.menu, #header ul.menu li {
	list-style:none;
	float:left;
	display:block;
	margin:0;
	padding-right: 10px;
	height:32px;
}

#header ul.menu li.divider {
	background: url('/Content/images/menu-devider.gif') no-repeat;
	width: 1px;
}

#header ul.menu li a {
	display:block;
	margin-top: 4px;
	font-size: 15px;
}

#header ul.menu li.winkelmandje {
	width:156px;
	background: url('/Content/images/menu-winkelmandje.gif') no-repeat;
	float:right;
	padding: 0 10px;
	line-height:25px;
	font-weight:bold;
}

#header ul.menu li.winkelmandje a{
	margin-top: 0px;
}

li.winkelmandje {
	vertical-align:middle;
}

li.winkelmandje span{
    color:#ca1324;
}

#header ul.top 
{
	position:absolute;
	left:700px;
	top:0px;
	color:#5685a9;
}
#header ul.top a {
	color:inherit;
}
#header ul.top li {
	list-style: none;
	float:left;
	margin-left:30px;
	line-height:20px;
	font-size:11px;
}
#header ul.top li img {
	vertical-align:middle;
}
#header ul.top input[type="text"] {
	border: solid 1px #8cacc5;
	border-right:none;
	padding:0 2px;
	float:left;
	height:20px;
	width:149px;
	background: #f3f6f8;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#f3f6f8), to(#fefeff));
	background: -moz-linear-gradient(#f3f6f8, #fefeff);
	background: -moz-linear-gradient(#f3f6f8, #fefeff);
	background: linear-gradient(#f3f6f8, #fefeff);
	font-size:11px;
	color:#5685a9;
	position:relative;
	margin:0px;
}

#left-content {
	width:247px;
	font-weight:bold;
	float:left;
}
#header a, #left-content a {
	color:inherit;
	text-decoration:none;
}

#left-content a[disabled] 
{
    color: Gray;
}

#left-content .dark-blue {
	background-color:#004b7f;
	margin-bottom:1px;
	color:#fff;
	padding: 5px 0 25px 16px;
	line-height:29px;
}
#left-content p.logged-in {
	line-height:21px;
	font-size:12px;
	font-weight:normal;
	margin:5px 0 -13px 0;
}
#left-content p.logged-in span.big {
	font-size:14px;
}
#left-content p.logged-in a {
	display:block;
	padding-left:13px;
	background:url('/Content/images/lock.gif') no-repeat left center;
	color:#a1c2d7;
	text-decoration:underline;
	margin-top:20px;
}
#left-content .light-blue {
	background-color:#538ab1;
	margin-bottom:44px;
	color:#fff;
	padding:2px 0 3px 16px;
	line-height:29px;
}
#left-content .dark-blue li, #left-content .light-blue li {
	list-style-image:url('/Content/images/login-li.gif');
}
#left-content>p {
	color:#004b7f;
	margin-bottom:10px;
}
#left-content .orange-gradients {
	margin:0 0 44px 0;
}
#left-content .orange-gradients>li,
.orange-gradient{ 
	border:solid 1px #fd9b00;
	border-bottom-color:#d88400;
	background: #FFBE56;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#FFBE56), to(#fd9c03));
	background: -moz-linear-gradient(#FFBE56, #fd9c03);
	background: -moz-linear-gradient(#FFBE56, #fd9c03);
	background: linear-gradient(#FFBE56, #fd9c03);
	list-style:none;
	color:#fff;
	line-height:37px;
	margin-bottom:4px;
	cursor:pointer;
	text-shadow:1px 1px 0px #ee9200;
	display:block;
	position:relative;
}
.orange-gradient {
	width:175px;
	text-decoration:none;
	padding-left:14px;
	font-weight:bold;
	vertical-align:middle;
}
orange-gradient img {
	float:right;
	margin:14px 12px 0 0;
}
#left-content .orange-gradients>li:hover,
.orange-gradient:hover {
	background: #fd9c03;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#fd9c03), to(#FFBE56));
	background: -moz-linear-gradient(#fd9c03, #FFBE56);
	background: -moz-linear-gradient(#fd9c03, #FFBE56);
	background: linear-gradient(#fd9c03, #FFBE56);
	text-shadow:1px -1px 0px #ee9200;
}
#left-content .orange-gradients>li:hover img {
	border-bottom: none;
	border-top: solid 1px #f89d0f;	
	margin-bottom:2px;
}
#left-content .orange-gradients>li img {
	vertical-align:middle;
	margin:0 5px;
	border-bottom: solid 1px #f89d0f;
	margin-bottom:1px;
}
#left-content .orange-gradients ul {
	display:none;
	list-style:none;
	position:relative;
	z-index:1;
}
#in-winkelmandje a.orange-gradient {
	color:#fff;	
	width:92px;
	height:24px;
	line-height:24px;
	float:right;
	margin: 0 12px 11px 12px;
}
#in-winkelmandje a.orange-gradient img {
	margin-left:10px;
}
#in-winkelmandje {
	position: absolute;
	background-color: white;
	right: 0px;
	top: 96px;
	width: 174px;
	border: solid 1px #ca1324;
	border-top: none;
	border-bottom-width: 5px;
	z-index:10;
	display:none;
}
#in-winkelmandje ul {
	margin:9px 0 0;
	padding:0px;
	list-style:none;
}
#in-winkelmandje li {
	border-top: solid 1px #ca1324;	
	padding:7px 12px 5px 14px;
	color:#ca1324;
}
#in-languages {
	position: absolute;
	left: 810px;
	top: 20px;
	width: 100px;
	z-index:10;
	display:none;
}
#in-languages ul {
	margin:0px;
	padding:0px;
	list-style:none;
	list-style-image: url('/Content/images/li-blue.gif');
}
#in-languages li {
	padding:7px 12px 5px 14px;
}
#in-languages a {
	font-size: 11px;
    color:#5286ad;
}
#left-content ul.bordered-items {
	list-style:none;
	margin:0;
	padding:0;
}
#left-content ul.bordered-items li {
	padding:12px;
	border:solid 1px #bcd4e3;
	border-bottom:none;
	color:#004c81;
	line-height:20px;
	font-weight:normal;
}
#left-content ul.bordered-items li:nth-child(even) {
	background-color:#edf3f7;
}
#left-content ul.bordered-items li:last-child {
	border-bottom:solid 1px #bcd4e3;
}
#right-content {
	float:left;
	position:relative;
	width:688px;
}
#right-content-wrapped 
{
	margin:17px 11px 0 30px;
	width: 641px;
}
a#print {
	position:absolute;
	display:block;
	top:17px;
	right:17px;
}
#breadcrumb {
	color:#004b7f;
	font-size:11px;
}
#breadcrumb a {
	text-decoration:none;
	color:inherit;
}
#breadcrumb a:hover {
	text-decoration:underline;
}
#breadcrumb span.current {
	color:#444;
}

#home .blue,
#home .blue a {
	color: #004b7f;
}

#home .red,
#home .red a {
	color: #ca1324;
}

#home .left {
	width: 297px;
	float: left;
}

#home .right {
	width: 297px;
	float: right;
}

#home .left ul,
#home .right ul {
	margin:0;
	line-height:16px;
	padding:3px 24px 0 16px;
}

#home .left li a,
#home .right li a {
	text-decoration:none;
	font-weight:bold;
}

#home .left li a:hover,
#home .right li a:hover {
	text-decoration:underline;
}

#home .blue.left ul {
	background-color: #f1f4f7;
}

#home .blue.left li {
	list-style-image:url('/Content/images/li-blue.gif');
	border-bottom:solid 1px #bcd4e3;
	list-style-position:inside;
	padding:12px 0 14px;
}

#home .blue.left li:last-child {
	border:none;
	list-style-image:url('/Content/images/li-orange.gif');
}
#home .blue.left li:last-child a {
	color:#fd9b00;	
}

#home .red h2 {
	color: #ca1324;
}

#home .red.right ul {
	background-color: #f7f1f2;
	list-style:none;
	padding-bottom:6px;
}

#home .red.right span {
	color: #444;
}

#home .red.right li {
	border-bottom:solid 1px #ecb4ba;
	padding:12px 0 14px;
}

#home .red.right li:last-child {
	border:none;
	list-style-position:inside;
	list-style-image:url('/Content/images/li-orange.gif');
}
#home .red.right li:last-child a {
	color:#fd9b00;	
}

#home .bottom {
	margin-top:24px;
}

#home .bottom ul {
	border: solid 1px #bcd4e3;
	list-style: none;
	margin:0;
	padding: 3px 24px 0 16px;
}

#home .bottom li {
	border-bottom:solid 1px #bcd4e3;
	padding:12px 0 14px;
	background:url('/Content/images/li-blue.gif') no-repeat right 20px;
}
#home .bottom li:last-child {
	border:none;
}
#home .bottom li a {
	text-decoration:none;
	font-weight:bold;
	
}
#home .bottom li a:hover {
	text-decoration:underline;
}
#home .antwoord {
	display:none;
}
#product-domeinen ul a {
	font-weight:bold;
	text-decoration:none;
}
#product-domeinen ul a:hover {
	text-decoration:underline;	
}
#product-domeinen .article {
	background-color: #f1f4f7;
	height:161px;
}

#product-domeinen .article > img {
	display:block;
	float:left;
	height:161px;
}
#product-domeinen .section {
	float:left;
	margin: 16px 5px 0 26px;
}
#product-domeinen .section h3 {
	color:#808080;
	margin:0;
}
#product-domeinen .section ul {
	list-style-position:inside;
	margin:0;
}
#product-domeinen .section li {
	margin-top:13px;
}
#product-domeinen .section .subdomeinen,
#product-domeinen .section .producten {
	float:left;
}
#product-domeinen .section div:first-child {
	width:206px;
}
#product-domeinen .section .subdomeinen ul {
	list-style-image:url('/Content/images/li-red.gif');
}
#product-domeinen .section .subdomeinen ul a {
	color:#ca1324;
}
#product-domeinen .section .producten ul {
	list-style-image:url('/Content/images/li-blue.gif');
}
#product-domeinen .section .producten li:last-child {
	list-style-image:url('/Content/images/li-orange.gif');
}
#product-domeinen .section .producten li:last-child a {
	color:#fd9b00;
}

#product-domein-account .left {
	float:left;
	width:310px;
}
#product-domein-account .right {
	float:right;
	width:297px;
}

#product-domein-account ul {
	margin:0;
	line-height:16px;
	padding:3px 24px 0 16px;
	background-color: #f1f4f7;
}

#product-domein-account li a {
	text-decoration:none;
	font-weight:bold;
}

#product-domein-account li a:hover {
	text-decoration:underline;
}

#product-domein-account li {
	list-style-image:url('/Content/images/li-blue.gif');
	border-bottom:solid 1px #bcd4e3;
	list-style-position:inside;
	padding:12px 0 14px;
}

#product-domein-account li:last-child {
	border:none;
}
ul.product-domein li:last-child {
	list-style-image:url('/Content/images/li-orange.gif');
}
ul.product-domein li:last-child a {
	color:#fd9b00;	
}

#product-detail h3, 
#faq h3 {
	border-bottom:solid 1px #bcd4e3;
	line-height:23px;
	background:url('/Content/images/open.gif') no-repeat right center;
	cursor:pointer;
	margin-top:7px;
	padding-bottom:5px;
}

#product-detail h3.opened, 
#faq h3.opened {
	background-image:url('/Content/images/close.gif');
}

#right-content #search h3 {
	margin-top:10px;
}
#right-content #search p {
	border-bottom: solid 1px #bcd4e3;
	margin-bottom:15px;
	padding-bottom:15px;
}

div.formbordered>div:last-of-type {
	padding-bottom:16px;
	border-bottom:solid 1px #bcd4e3;	
	margin-bottom:18px;
}

div.formbordered>p>a,
div.formbordered button {
	float:right;
	vertical-align:middle;
}

div.formbordered>p>a {
	line-height:26px;	
}

div.formbordered div div>span {
	display:block;
	float:left;
	margin-right:10px;
	height:25px;
	line-height:25px;
    text-align: left; 
}
div.formbordered div div>span > span {
	height:25px;
	line-height:25px;
	display: inline-block;
}

div.formborderedfield {
	margin-top:13px;
}

div.formbordered {
	display:block;
	border: solid 1px #bcd4e3;
	padding:19px;
}

div.formbordered h3,
#winkelmandje h3 {
	font-size:14px;
	margin-top:27px;
	border-bottom:solid 1px #bcd4e3;
	padding-bottom:5px;
}

form .warning,
form .required {
	color:#ca1324;
}
form span,
form img,
form label,
form input {
	vertical-align:middle;
	color:#004c81;
}
form label {
	min-height:25px;
	line-height:25px;
	color:#004c81;
	width:146px;
	display:block;
	float:left;
}
form div.paymentchoice label {
    width:300px;
}


form textarea,
form input[type="text"],
form input[type="password"] {
	border:solid 1px #bcd4e3;
	background: #f5f8fa;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#edf3f7), to(#fefeff));
	background: -moz-linear-gradient(#edf3f7, #fefeff);
	background: -moz-linear-gradient(#edf3f7, #fefeff);
	background: linear-gradient(#edf3f7, #fefeff);
	width:241px;
	margin-right:14px;
	padding-left:8px;
	color:#004c81;
	height:23px;
	resize:none;
	position:relative;
}
form textarea:disabled,
form input[type="text"]:disabled,
form input[type="password"]:disabled {
	background: #f5f8fa;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#C4C4C4), to(#F0F0EF));
	background: -moz-linear-gradient(#C4C4C4, #F0F0EF);
	background: -moz-linear-gradient(#C4C4C4, #F0F0EF);
	background: linear-gradient(#C4C4C4, #F0F0EF);
	-pie-background: linear-gradient(#C4C4C4, #F0F0EF);
	color:#666;
}
/* text input prefix */
form input.has-prefix {
    padding-left: 42px;
    width: 208px;
}

.input-prefix {
    z-index: 1;
    position: absolute;
    display: inline-block;
    vertical-align: middle;
    line-height: 25px;
    font-size: 12px;
    pointer-events: none;
    text-align: right;
    width: 40px;
    color: #666
}
.winkelmandje2 form input[type="text"] {
		width:143px;
		float:left;
		margin-top:4px;
		height:19px;
}
select {
	border:solid 1px #bcd4e3;
	color:#004c81;
	height:23px;
}
form select {
	width:251px;
	margin-right:10px;
}
#winkelmandje form select {
	width:53px;
}
@media screen and (-webkit-min-device-pixel-ratio:0) { 
    select {
			-webkit-appearance:none; 
			background: url('/Content/images/select-open.gif') no-repeat right center, -webkit-gradient(linear, 0 0, 0 bottom, from(#edf3f7), to(#fefeff));
			background: url('/Content/images/select-open.gif') no-repeat right center, linear-gradient(#edf3f7, #fefeff);
			cursor:pointer;
			padding-right:20px;
    }
    select:disabled {
			background: url('/Content/images/select-open.gif') no-repeat right center, -webkit-gradient(linear, 0 0, 0 bottom, from(#C4C4C4), to(#F0F0EF));
			background: url('/Content/images/select-open.gif') no-repeat right center, linear-gradient(#C4C4C4, #F0F0EF);    	
			cursor:default;
			color:#666;
    }
    input[type="radio"] {
    	border:solid 1px #bcd4e3;
    	width:15px;
    	height:15px;
			background: -webkit-gradient(linear, 0 0, 0 bottom, from(#edf3f7), to(#fefeff));
			background: linear-gradient(#edf3f7, #fefeff);
			cursor:pointer;
			-webkit-border-radius:7px;
			border-radius:7px;
    }
    input[type="radio"]:checked {
    	background: url('/Content/images/checked.gif') no-repeat center center, -webkit-gradient(linear, 0 0, 0 bottom, from(#edf3f7), to(#fefeff));
    	background: url('/Content/images/checked.gif') no-repeat center center, linear-gradient(#edf3f7, #fefeff);;
    }
}

form select.w47 {
	width:47px;
}
form select.w103 {
	width:103px;	
}
form select.w75 {
	width:75px;
}
form input[type="radio"] {
	display:block;
	float:left;
	margin-right:7px;
	margin-top:5px;
}
form input.w45 {
	width:37px;	
}
form input.w106 {
	width:98px;	
}
form input.w249 {
	width:241px;	
}

/* Custom blue input class for the blue portal button */
.blue-input {
	border: solid 1px #bcd4e3;
	border-bottom-color: #95b6cd;
	height:24px;
	background: #f2f7fa url('/Content/images/blue-gradient.png') repeat-x;
	color:#004b7f;
	position:relative;
	margin-top: 10px;
	margin-right: 5px;
}

div.formbordered>p>a,
div.formbordered input[type="submit"].old-button {
	float:right;
	vertical-align:middle;
	margin-left: 15px;
}
div.formbordered>p>a {
	line-height:26px;	
}

input[type="submit"].old-button {
	border:solid 1px #fd9b00;
	border-bottom-color:#d88400;
	height: 24px;
	background: #FFBE56 url('/Content/images/old-button-gradient.png') repeat-x;
	color:#fff;
	line-height:24px;
	position:relative;
}

input[type="submit"].old-button:hover {
	background: #fd9c03;
}

.MBWizardCancel
{
    border: none;
    background: none;
    color: Blue;
    text-decoration: 'underline';
}

div#saveAndCloseSection
{
    margin-top: 10px;
}

.CheckerTextExpressService
{
    width: 435px;
    float: right;
}

table#radioButtonDifferentLabelSize label
{
    width: 100px!important;
}

/* Hand cursor on clickable input elements */
/*input[type="button"], input[type="submit"]  
{
    border:solid 1px #fd9b00;
	border-bottom-color:#d88400;
	background: #FFBE56;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#FFBE56), to(#fd9c03));
	background: -moz-linear-gradient(#FFBE56, #fd9c03);
	background: -moz-linear-gradient(#FFBE56, #fd9c03);
	background: linear-gradient(#FFBE56, #fd9c03);
	-pie-background: linear-gradient(#FFBE56, #fd9c03);
	behavior: url('/_Layouts/Kiwa.SharePoint.Portal.Branding/Include/PIE.htc');
	color:#fff;
	line-height:24px;
	text-shadow:1px 1px 0px #ee9200;
	text-align:left;
	text-indent:10px;
	font-weight: normal;
}
input[type="button"]:hover, input[type="submit"]:hover
{
    background: #fd9c03;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#fd9c03), to(#FFBE56));
	background: -moz-linear-gradient(#fd9c03, #FFBE56);
	background: -moz-linear-gradient(#fd9c03, #FFBE56);
	background: linear-gradient(#fd9c03, #FFBE56);
	-pie-background: linear-gradient(#fd9c03, #FFBE56);
	text-shadow:1px -1px 0px #ee9200;
}*/
form button {
	border:solid 1px #fd9b00 !important;
	border-bottom-color:#d88400 !important;
	background: #FFBE56 !important;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#FFBE56), to(#fd9c03)) !important;
	background: -moz-linear-gradient(#FFBE56, #fd9c03) !important;
	background: -moz-linear-gradient(#FFBE56, #fd9c03) !important;
	background: linear-gradient(#FFBE56, #fd9c03) !important;
	color:#fff !important;
	margin-left:18px !important;
	line-height:24px !important;
	text-shadow:1px 1px 0px #ee9200 !important;
	position:relative !important;
}
form button:hover {
	background: #fd9c03 !important;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#fd9c03), to(#FFBE56)) !important;
	background: -moz-linear-gradient(#fd9c03, #FFBE56) !important;
	background: -moz-linear-gradient(#fd9c03, #FFBE56) !important;
	background: linear-gradient(#fd9c03, #FFBE56) !important;
	text-shadow:1px -1px 0px #ee9200;
}
div.info {
	display:none;
	position:absolute;
	background-color:#fff;
	width:400px;
	border:solid 1px #bcd4e3;
	padding:5px;
}
div.info img.info-arrow {
	position:absolute;
	bottom:-8px;
	left:87px;
}

#right-content div.filter {
	position: absolute;
	right: 0px;
	top: 24px;
	color:#004c81;
	vertical-align:middle;
}
#right-content div.filter select,
#right-content div.filter span {
	color:#004b7f;
	vertical-align:middle;	
}
#aanvragen > div, #aanvragen > div > div {
	margin-top:15px;
}
.steps {
	border-bottom:solid 1px #bcd4e3;
	padding:0 0 18px 0;
	margin:0;
	list-style:none;
}
.steps li {
	float:left;
	color:#fff;
	height:31px;
	line-height:31px;
	background-position:left top;
	background-repeat:no-repeat;
	padding-left:13px;
}
.steps li.current {
	color:#004b7f;
}
.steps li.to-current {
	padding-left:10px;
	width:92px;
	background-image:url('/Content/images/non-start-to-current.gif');
}
.steps li.to-non {
	width:89px;
	background-image:url('/Content/images/non-start-to-non.gif');
}
.steps li.current.to-non {
	padding-left:10px;
	width:92px;
	background-image:url('/Content/images/current-to-non.gif');
}
.steps li.current.to-non:first-child {
	background-image:url('/Content/images/current-start-to-non.gif');
}
.steps li:last-child {
	width:87px;
	background-image:url('/Content/images/non-to-end.gif');
}
.steps li.current:last-child {
	width:87px;
	background-image:url('/Content/images/current-to-end.gif');
}
#aanvragen form label[for="nationaliteitsbewijs-dag"] {
	margin-left: 196px;
	width: 67px;
}
#aanvragen form > div:last-of-type {
	padding-bottom: 0;
	border-bottom: 0;
	margin-bottom: 15px;
}
#aanvragen .blue {
	height:44px;
	background-color:#edf3f7;
	padding-left:16px;
	text-align: left;
	width: 600px;
}
#aanvragen .blue span {
	height:44px;
	line-height:44px;
	margin-right:23px;
	color: #538ab1;
	position: absolute;
}
#aanvragen .blue input {
	border: solid 1px #bcd4e3;
	border-bottom-color: #95b6cd;
	height:24px;
	background: #f2f7fa url('/Content/images/blue-gradient.png') repeat-x;
	color:#004b7f;
	position:relative;
	margin-top: 10px;
	margin-right: 5px;
}
#aanvragen .controlMarginTop
{
    margin-top: 13px;
}
label.DatePickerLabel
{
    width: 146px;
}
#aanvragen div#navigationButtons
{
    text-align: right;
    padding-bottom: 20px;
}
#aanvragen div#navigationButtons input
{
    margin-left: 18px;
}
#aanvragen button img,
#log-in button img,
#winkelmandje button img,
#express button img, {
	margin-top:-2px;
}
#right-content input[type="file"] {
	height:25px;
	margin-left: 146px;
	width: 254px;
}
#right-content input.added {
	margin-left:262px;
}
#right-content .blue-button {
	width:85px;
	height:23px;
	background: #84abc7;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#84abc7), to(#558cb2));
	background: -moz-linear-gradient(#84abc7, #558cb2);
	background: -moz-linear-gradient(#84abc7, #558cb2);
	background: linear-gradient(#84abc7, #558cb2);
	display:inline-block;
	margin:0px;
	float:right;
	color:#fff;
	border:solid 1px #467da4;
	text-align:center;
	cursor:pointer;
	text-shadow:1px 1px 0px #558cb2;
	line-height:23px;
	position:relative;
}
#right-content .blue-button:hover {
	background: #558cb2;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#558cb2), to(#84abc7));
	background: -moz-linear-gradient(#558cb2, #84abc7);
	background: -moz-linear-gradient(#558cb2, #84abc7);
	background: linear-gradient(#558cb2, #84abc7);
	text-shadow:1px -1px 0px #558cb2;
}
#right-content .blue-button.add-all {
	width:175px;
}
#right-content .extra {
	border-bottom:solid 1px #bcd4e3;
	margin-top:60px;
	padding-bottom:9px;
}
#right-content p {
	margin-bottom:30px;
}
#aanvragen.aanvragen2 form>div:not(:first-of-type) {
	margin-top:25px;
}

#log-in .inloggen {
	border-bottom:solid 1px #bcd4e3;
	padding-bottom:31px;
	margin-bottom:20px;
}
#log-in form>div.clearfix {
	margin-top: 13px;
}
#right-content #log-in form button {
	margin-left:146px;
}
#log-in form a {
	color: #719ebf;
}
#mijn-producten>span {
	color:#004b7f;
	display:block;
	margin-top:-7px;
}
#mijn-producten .tabbed {
	position:relative;
}
#mijn-producten .tabbed>ul {
	list-style:none;
	margin:0;
	padding:0;
	position:relative;
	top:1px;
	z-index:2;
}
#mijn-producten .tabbed>ul li {
	float:left;
	width:192px;
	height:37px;
	line-height:37px;
	border:solid 1px #538ab1;
	background-color:#538ab1;
	color:#fff;
	margin-right:2px;
	text-align:center;
	font-weight:bold;
	cursor:pointer;
}
#mijn-producten .tabbed>ul li a {
	color:inherit;
	text-decoration:none;
}
#mijn-producten .tabbed>ul li.selected {
	border-color:#bcd4e3;
	border-bottom-color:#fff;
	background-color:#fff;
	color:#004b7f;
	cursor:auto;
}
#mijn-producten .tabbed>div {
	display:none;
	position:relative;
	padding:17px 19px;
}
#mijn-producten .tabbed>div.selected {
	border:solid 1px #bcd4e3;
	display:block;
}
#mijn-producten .tabbed>div>ul {
	list-style:none;
	margin:0;
	padding:0;
}
#mijn-producten .tabbed>div>ul li {
	float:left;
	border:solid 1px #538ab1;
	border-right:none;
	height:29px;
	line-height:29px;
	padding:0 13px;
	color:#004b7f;
	cursor:pointer;
}
#mijn-producten .tabbed>div>ul li a {
	color:inherit;
	text-decoration:none;
}
#mijn-producten .tabbed>div input.search {
	width:140px;
	margin-right:0px;
	height:29px;
	line-height:29px;
	border:solid 1px #538ab1;
	padding-right:0px;
	position:relative;
}
#mijn-producten .tabbed>div .button {
	position: absolute;
	right: 34px;
	top: 18px;
	height: 29px;
	width: 29px;
	border: none;
	background: none;
	cursor: pointer;
}
#mijn-producten table,
#winkelmandje table.default {
	width:606px;
	margin-top:19px;
}
#winkelmandje table.totals {
	float:right;
	width:308px;
	margin:22px 0 22px;
}
#winkelmandje input[type='checkbox'] {
	vertical-align:-2px;
}
#mijn-producten th
{
    color:#fff;
	font-weight:normal;
	border-right: solid 1px #fff;
	text-align:left;
	padding-left:10px;
	height:29px;
	line-height:29px;
	background:#538ab1 url('/Content/images/order-column.gif') no-repeat right center;
	cursor:pointer;
}

#winkelmandje .default th {
	color:#fff;
	font-weight:normal;
	border-right: solid 1px #fff;
	text-align:left;
	padding-left:15px;
	height:29px;
	line-height:29px;
	background:#538ab1 url('/Content/images/order-column.gif') no-repeat right center;
	cursor:pointer;
}
#winkelmandje table.totals th{
	text-align:right;
	height:27px;
	line-height:27px;
	color:#004c81;
	padding-right:17px;
	font-weight:normal;
	width:110px;
	background-color:#fff;
}
#winkelmandje table.totals tbody tr:nth-child(even) {
	background-color:#edf3f7;
}
#winkelmandje .default th.no-sort {
	background:#538ab1;
	cursor:default;
}
#mijn-producten th:last-child,
#winkelmandje .default th:last-child {
	border-right: solid 1px #538ab1;	
}

#mijn-producten th.no-sort
{
    background: none repeat scroll 0 0 #538AB1;
    cursor: default;
}

#mijn-producten th.reverse-sort
{
    background:#538ab1 url('/Content/images/reverse-order-column.gif') no-repeat right center;
}

#mijn-producten th.naam {
	width:175px;
}
#mijn-producten th.product {
	width:155px;	
}
#mijn-producten th.aangevraagd {
	width:116px;
}
#mijn-producten th.aangevraagd a {
	color:#fff;
}

#mijn-producten th.verwijder {
	width:20px;
}

#mijn-producten td
{
    height:51px;
	line-height:25px;	
	padding-left:10px;
	color:#004b7f;
}
#winkelmandje .default td {
	height:51px;
	line-height:25px;	
	padding-left:15px;
	color:#004b7f;
}
#winkelmandje table.totals tbody tr td:first-of-type {
	border: solid 1px #bcd4e3;
	border-right:none;
	width:77px;
	padding-left:14px;
}
#winkelmandje table.totals tbody td:last-of-type {
	border: solid 1px #bcd4e3;
	border-left:none;
}
#winkelmandje table.totals tfoot tr th,
#winkelmandje table.totals tfoot tr td {
	padding-top:20px;
}
#winkelmandje table.totals tfoot td:last-of-type {
	font-weight:bold;
	font-size:22px;
}
#mijn-producten tbody tr,
#winkelmandje .default tbody tr {	
	border: solid 1px #bcd4e3;
	border-top:none;
	cursor:pointer;
}
#winkelmandje .default tbody tr {
	cursor:default;
}
#mijn-producten tbody tr:hover,
#mijn-producten tbody tr:hover:nth-child(even) {
	background-color:#bcd4e3;
	border-color:#bcd4e3;
	text-decoration:underline;
}
#mijn-producten tbody tr:nth-child(even),
#winkelmandje .default tbody tr:nth-child(even) {
	background-color:#edf3f7;
}
#winkelmandje>span {
	font-size:13px;
	color:#004b7f;
}
#winkelmandje form p:last-of-type {
	border-top:solid 1px #bcd4e3;
	padding-top:18px;
}
#winkelmandje.winkelmandje2 form p:last-of-type {
	margin-top:40px;
}
#winkelmandje.winkelmandje3 form p:first-of-type,
#winkelmandje.winkelmandje4 form p:first-of-type {
	margin-top:22px;
}
.paging {
	text-align:center;
	margin:22px 0 0 152px;
}
.paging>a,
#mijn-producten .back,
#winkelmandje .back,
#winkelmandje .next {
	height:27px;
	line-height:27px;
	display:block;
	float:left;
	color:#fff;
	text-decoration:none;
}
#winkelmandje .back {
	float:left !important;
}
#winkelmandje .next {
	float:right !important;
}
#winkelmandje .cancelShopping
{
    margin-right: 15px;
}

table tbody tr.alternaterow td
{
    background-color:#EEF3F7;
}
.paging>a:first-child,
#mijn-producten .back,
#winkelmandje .back {
	padding: 0 15px 0 21px;
	background:#538ab1 url('/Content/images/prev.gif') no-repeat left center;
}
#winkelmandje .next 
{
    padding: 0 15px 0 21px;
    background:#538ab1 url('/Content/images/next.gif') no-repeat right center;
}
#mijn-producten .back {
	float:none;
	width:164px;
	margin-top:15px;
}
#mijn-producten div.bordered,
#winkelmandje div.bordered {
	border:solid 1px #bcd4e3;
	padding:19px;
	color:#004b7f;
	line-height:26px;
	margin-top:20px;
}
#mijn-producten div.bordered h3 {
	font-size:14px;
	margin-top:27px;
	border-bottom:solid 1px #bcd4e3;
	padding-bottom:5px;
}
#mijn-producten div.bordered h3:first-of-type {
	margin-top:0px;
}
#mijn-producten div.bordered span.titel {
	display:block;
	float:left;
	color:#000;
	width:147px;
}
#mijn-producten div.bordered>div:last-of-type {
	margin-top:50px;
	border-top:solid 1px #bcd4e3;
	padding-top:12px;
}
#mijn-producten div.bordered>div a{
	display:block;
	border: solid 1px #bcd4e3;
	border-bottom-color: #95b6cd;
	line-height:24px;
	height:24px;
	background: #f2f7fa;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#f2f7fa), to(#c9dce8));
	background: -moz-linear-gradient(#f2f7fa, #c9dce8);
	background: -moz-linear-gradient(#f2f7fa, #c9dce8);
	background: linear-gradient(#f2f7fa, #c9dce8);
	color:#004b7f;
	text-decoration:none;
	padding: 0 9px 0 7px;
	position:relative;
}
#mijn-producten div.bordered>div a.annuleren
{
    background: none;
	color: #B03500;
    background-image: none;
    display:inherit;
    border: 0px;
    padding: 0px;
	float:right;
	padding-right:15px;
	behavior: none;
}

#mijn-producten div.bordered>div a.bewerken {
	float:left;
}
#mijn-producten div.bordered>div a.vernieuwen,
#mijn-producten div.bordered>div a.duplicaat {
	float:right;
}
#mijn-producten div.bordered>div a.vernieuwen {
	margin-left:10px;
}
#mijn-producten div.bordered>div a img {
	vertical-align:middle;
	margin-top:-2px;
}

#mijn-productenCleared TABLE {
    width: auto;
    margin-top: auto;
}

#mijn-productenCleared TBODY TR {
    border: 0px;
    border-top: none;
    cursor: auto;
}

#mijn-productenCleared TD {
    height: auto;
    line-height: normal;
    padding-left: 0px;
    color: #004b7f;
}

#mijn-productenCleared Span
{
    margin-left:0px !important;
}

.paging>a:last-child {
	padding: 0 22px 0 11px;
	background:#538ab1 url('/Content/images/next.gif') no-repeat right center;
}
.paging .pages {
	display:block;
	float:left;
	height:27px;
	line-height:27px;
	margin: 0 30px;
}
.paging .pages a {
	text-decoration:none;
}
.paging .pages a:hover {
	text-decoration:underline;
}

#winkelmandje form>p:last-of-type>a,
#winkelmandje form>p:last-of-type>button,
#express form>p:last-of-type>a,
#express form>p:last-of-type>button {
	float:right;
}
.winkelmandje2 .bewerken 
{
    position:relative;
    top:30px;
	float:right;
}
.winkelmandje2 .bewerken img {
	margin:-2px 4px 0 0;
}
#winkelmandje.winkelmandje2 h3 {
	font-size:12px;
	color:#004c81;
}
.winkelmandje2 .left {
	float:left;
	width:250px;
}
.winkelmandje2 .right {
	margin-left:10px;
	float:left;
	width:250px;
}
.winkelmandje2 .label {
	float:left;
	width:110px;
	color:#444;
}
.overlay {
	position:fixed;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	z-index:90;
	background-color: rgb(0, 0, 0);
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=25)";
	filter: alpha(opacity=25);
	opacity: 0.25;
}
.lightbox {
	position:absolute;
	top:134px;
	left:391px;
	width:569px;
	z-index:100;
	background-color:#fff;
	-webkit-box-shadow: 0px 5px 80px #505050;
	-moz-box-shadow: 0px 5px 80px #505050;
	box-shadow: 0px 5px 80px #505050;
	padding:25px;
	color:#004c81;
}
.lightbox h2,
.lightbox h3 {
	font-size:14px;
	margin-top:0px;
	border-bottom:solid 1px #bcd4e3;
	padding-bottom:5px;
}
.lightbox h3 {
	margin:40px 0 10px 0;
}
.lightbox .tarieven {
	border-bottom:solid 1px #bcd4e3;
	padding-bottom:52px;
}
.lightbox .tarieven p {
	float:left;
	width:268px;
}
.lightbox .tarieven table {
	float:right;
	width:221px;
	line-height:29px;
}
.lightbox .tarieven tr {
	height:29px;
}
.lightbox .tarieven thead tr
{
	background-color:#538ab1;
	color:#fff;
	text-align:left;
}
.lightbox .tarieven thead th
{
	border-right:solid 1px #538ab1;
}
.lightbox .tarieven thead th:first-child
{
	border-right:solid 1px #fff;
}
.lightbox .tarieven tbody tr
{
	border:solid 1px #bcd4e3;
	border-top:none;
}
.lightbox .tarieven tbody tr:nth-child(even)
{
	background-color:#edf3f7;
}
.lightbox .tarieven th,
.lightbox .tarieven td {
	padding-left:11px;
}
.lightbox form>div {
	margin-top:14px;
}
.lightbox textarea {
	height:70px;
}
.lightbox form p:last-of-type {
	border-top: solid 1px #bcd4e3;
	padding-top: 18px;
	margin: 40px 0 30px;
}
.lightbox form p:last-of-type a {
	line-height: 30px;
}
.lightbox form input[type="radio"] {
	display:inline-block;
	float:none;
	margin-left:10px;
}
.lightbox form input[type="radio"]:first-of-type {
	margin-left:0px;
}
#footer {
	position:absolute;
	height:230px;
	bottom:0px;
	background: #e3edf2 url('/Content/images/footer.gif') no-repeat bottom center;
	width:987px;
	min-width:100%;
	font-size:11px;
	color:#004b7f;
}
#footer a {
	color:inherit;
	text-decoration:none;
}
#footer a:hover {
	text-decoration:underline;
}
#footer>div.content {
	width:957px;
	border-bottom:solid 1px #83adc5;
	margin:0px auto;
	padding-top:60px;
	height:91px;
}
#footer ul.first {
	margin-left:12px;	
}
#footer ul {
	float:left;
	list-style:none;
	width: 160px;
	margin-left:72px;
}
#footer>div.copyright {
	width:957px;
	border-top:solid 1px #fff;
	margin:0px auto;
	height:65px;
	text-align:center;
}
#verwijder-box {
	display:none;
	line-height:23px;
}
form#verwijder-box button {
	margin:10px 10px 0 0;
}
#express, .overlay {
	display:none;
}
/**
 * Non-semantic helper classes: please define your styles before this section.
 */

.fl { float:left; }

.fr { float:right; }

/* For image replacement */
.ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; }

/* Hide for both screenreaders and browsers:
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden { display: none; visibility: hidden; }

/* Hide only visually, but have it available for screenreaders: by Jon Neal.
  www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden */
.visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }
/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: drupal.org/node/897638 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* The Magnificent Clearfix: Updated to prevent margin-collapsing on child elements.
   j.mp/bestclearfix */
.clearfix:before, .clearfix:after { content: "\0020"; height: 0; overflow: hidden; }
.clearfix:after { clear: both; }
.clearfix { zoom: 1; display: block !important; }
.clearfix:before, .clearfix:after { display: block; }

img.imageBlock{ display: block;}

/**
 * Print styles.
 *
 * Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
 */
@media print {
  * { background: transparent !important; color: black !important; text-shadow: none !important; filter:none !important;
  -ms-filter: none !important; } /* Black prints faster: sanbeiji.com/archives/953 */
  a, a:visited { color: #444 !important; text-decoration: underline; }
  a[href]:after { content: " (" attr(href) ")"; }
  abbr[title]:after { content: " (" attr(title) ")"; }
  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }  /* Don't show links for images, or javascript/internal links */
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } /* css-discuss.incutio.com/wiki/Printing_Tables */
  tr, img { page-break-inside: avoid; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3{ page-break-after: avoid; }
}


/** 
 * Extra styles
 */
.WiderLabel > label {
    width:180px;
}

.WideRadio > label 
{
    width:auto;
    margin-right: 10px;
}

.fileUploadBackoffice 
{
    position:absolute; left:-148px; margin-top: 3px; opacity: 0; filter:alpha(opacity=0); zoom: 1;
}

.button-green
{
    width:85px !important;
	height:23px;
	background: #84abc7;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#84abc7), to(#558cb2));
	background: -moz-linear-gradient(#84abc7, #558cb2);
	background: -moz-linear-gradient(#84abc7, #558cb2);
	background: linear-gradient(#84abc7, #558cb2);
	display:inline-block;
	margin:0px;
	float:left;
	color:#fff;
	border:solid 1px #467da4;
	text-align:center;
	cursor:pointer;
	text-shadow:1px 1px 0px #558cb2;
	line-height:23px;

    overflow: hidden !important;
    position: relative !important; 
}

.button-green:hover
{
    cursor: pointer; 
    cursor: hand;   
}

.file-upload
{
    opacity: 0 !important;
    filter:alpha(opacity=0) !important;
    width:85px !important;
	height:23px !important;
    position: absolute !important;
    top: 0px !important;
    left: 0px !important;
}

.file-upload:hover
{
    cursor: pointer; 
    cursor: hand; 
}

/* fix the z-index for the dialogs */
.ui-front, .ui-effects-wrapper
{
    z-index: 100 !important;
}

.ui-dialog
{
    z-index: 101 !important;
}

/* set the background for the overlay */
.ui-widget-overlay
{
    background: #000;
    opacity: .70;
    filter: Alpha(Opacity=70);
    z-index: 50 !important;
}

/* remove the close button */
.ui-dialog-titlebar-close
{
  visibility: hidden;
}

.newDialog.ui-dialog {
    overflow: visible;
}

.newDialog.ui-dialog .ui-dialog-content {
    overflow: visible;
}

.formcolor-blue
{
    color: #004c81;
}

.cropper-controls-group {
    margin: 10px 5px;
}

.cropper-controls-group button {
    font-size: 14px;
    height: 25px;
    width: 25px;
}

.cropper-controls-group input {
    font-size: 14px;
    height: 25px;
    width: 25px;
}

.cropper-preview {
	margin: 10px auto;
    height: 200px;
	width: 200px;
	overflow: hidden;
}