body {
	background-image:url(../images/background.jpg);
	font-family:UbuntuRegular;
	font-size:12px;
	color:#3a3a3a;
}

@font-face {
    font-family: "UbuntuRegular";
    src: url("../font/Ubuntu-R.ttf") format("truetype");
}

@font-face {
    font-family: "UbuntuBold";
    src: url("../font/Ubuntu-B.ttf") format("truetype");
}

.content {
	padding: 63px 12px 10px 8px;
}

a:link {
	text-decoration:none;
	color:#000;
}

a:visited {
	text-decoration:none;
	color:#000;
}

li {
	list-style:none;
}

.logo {
	width:100%;
	position:absolute;
	height:39px;
	top:0px;
	left:0px;
	padding-top:11px;
	padding-bottom:11px;
	
	/* Gradient */
	background: #6489bb; /* Old browsers */
	background: -moz-linear-gradient(top, #6489bb 0%, #85abe0 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#6489bb), color-stop(100%,#85abe0)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #6489bb 0%,#85abe0 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #6489bb 0%,#85abe0 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #6489bb 0%,#85abe0 100%); /* IE10+ */
	background: linear-gradient(top, #6489bb 0%,#85abe0 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6489bb', endColorstr='#85abe0',GradientType=0 ); /* IE6-9 */
	
	/* Inner Shadow */
	-moz-box-shadow: inset 0 -6px 9px -6px #484848;
	-webkit-box-shadow: inset 0 -6px 9px -6px #484848;
	box-shadow: inset 0 -6px 9px -6px #484848;
	
	border-bottom: 2px solid #e9eef5;
}

.logo img {
	display:block;
	margin: 0 auto;
}

.pattern {
	position:absolute;
	width:100%;
	height:63px;
	background:transparent url(../images/pattern.png) top center repeat;
	z-index:1;
	top:0px;
	left:0px;
}

.innerShadow {
	display:block;
    position:relative;
	z-index:1;
}

.innerShadow::before {
	margin-top:1px;
	margin-left:1px;
	width:100%;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    -webkit-box-shadow: inset 1px 1px 3px 0px #fff;
	box-shadow: inset 1px 1px 0px 0px #fff;
}

.arrow {
	background-image:url("../images/arrow.png");
	background-repeat:no-repeat;
	height:15px;
	width:15px;
	display:block;
	float:right;
	padding:10px;
	margin-top:-16px;
}

.arrow_grey {
	background-image:url("../images/arrow_grey.png");
	background-repeat:no-repeat;
	height:15px;
	width:15px;
	display:block;
	float:right;
	padding:10px;
	margin-top:-16px;
}

.arrow_down {
	background-image:url("../images/arrow_down.png");
	background-repeat:no-repeat;
	height:15px;
	width:15px;
	display:block;
	float:right;
	padding:10px;
	margin-top:-16px;
}

.corners {
	-webkit-border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	border-radius: 5px;
}

.top_corners {
	-webkit-border-top-right-radius: 5px;
	-webkit-border-top-left-radius: 5px;
	-moz-border-radius-topright: 5px;
	-moz-border-radius-topleft: 5px;
	border-top-right-radius: 5px;
	border-top-left-radius: 5px;
}

.bottom_corners {
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-bottomright: 5px;
	-moz-border-radius-bottomleft: 5px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
}

.button_back {
	margin-top:2px;
	margin-left:8px;
	width:62px;
	height:40px;
	position:absolute;
	z-index:10;
	
	/* Gradient */
	background-color:#6489bb;
	background-image:-webkit-gradient(linear, left bottom, left top, color-stop(0.20, #6489bb), color-stop(0.40, #7da3d5)); /* chrome 2+, safari 4+; multiple color stops */
	background-image:-webkit-linear-gradient(#6489bb, #7da3d5); /* chrome 10+, safari 5.1+ */
	background-image:-moz-linear-gradient(top, #6489bb, #7da3d5); /* firefox; multiple color stops */
	background-image: -ms-linear-gradient(#6489bb, #7da3d5); /* ie10 */
	background-image: -o-linear-gradient(#6489bb, #7da3d5); /* opera 11.1 */
	background-image: linear-gradient(#6489bb, #7da3d5); /* The "standard" */
	
	/* Border Radius */
	-webkit-border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	border-radius: 5px;
	
	/* Inner Shadow */
	-webkit-box-shadow: inset 0px 0px 7px 2px rgba(0,0,0,0.25), 1px 1px 0px 0px rgba(255,255,255,0.26);
	box-shadow: inset 0px 0px 7px 2px rgba(0,0,0,0.25), 1px 1px 0px 0px rgba(255,255,255,0.26); 
}

.button_back:hover {
	/* Inner Shadow */
	-webkit-box-shadow: inset 0px 0px 10px 2px rgba(0,0,0,0.25), 1px 1px 0px 0px rgba(255,255,255,0.26);
	box-shadow: inset 0px 0px 10px 2px rgba(0,0,0,0.25), 1px 1px 0px 0px rgba(255,255,255,0.26); 
}

.button_back_text {
	text-align:center;
	margin-top:13px;
	color:#dfe8f3;
	font-size:11px;
}

.button_home {
	float:right;
	display:block;
	margin-top:2px;
	margin-right:10px;
	width:62px;
	height:40px;
	background-color:#6489bb;
	position:relative;
	z-index:10;
	
	/* Gradient */
	background-color:#6489bb;
	background-image:-webkit-gradient(linear, left bottom, left top, color-stop(0.20, #6489bb), color-stop(0.40, #7da3d5)); /* chrome 2+, safari 4+; multiple color stops */
	background-image:-webkit-linear-gradient(#6489bb, #7da3d5); /* chrome 10+, safari 5.1+ */
	background-image:-moz-linear-gradient(top, #6489bb, #7da3d5); /* firefox; multiple color stops */
	background-image: -ms-linear-gradient(#6489bb, #7da3d5); /* ie10 */
	background-image: -o-linear-gradient(#6489bb, #7da3d5); /* opera 11.1 */
	background-image: linear-gradient(#6489bb, #7da3d5); /* The "standard" */
	
	/* Border Radius */
	-webkit-border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	border-radius: 5px;
	
	/* Inner Shadow */
	-webkit-box-shadow: inset 0px 0px 7px 2px rgba(0,0,0,0.25), 1px 1px 0px 0px rgba(255,255,255,0.26);
	box-shadow: inset 0px 0px 7px 2px rgba(0,0,0,0.25), 1px 1px 0px 0px rgba(255,255,255,0.26); 
}

.buttom_home_text {
	text-align:center;
	margin-top:11px;
}

.button_home:hover {
	/* Inner Shadow */
	-webkit-box-shadow: inset 0px 0px 10px 2px rgba(0,0,0,0.25), 1px 1px 0px 0px rgba(255,255,255,0.26);
	box-shadow: inset 0px 0px 10px 2px rgba(0,0,0,0.25), 1px 1px 0px 0px rgba(255,255,255,0.26); 
}

.text_restaurant {
	text-transform:uppercase;
	font-size:14px;
	color:#a2bace;
	padding-left:20px;
	margin-top:12px;
}

/************** BLOK RESTAURANT **************/

.blok_restaurant {
	width:100%;
	position:relative;
	margin-top:20px;
	
	/* Shadow */
	-webkit-box-shadow: 0px -5px 4px -5px #333;
	box-shadow: 0px -5px 4px -5px #333;
	
}

.blok_restaurant img {
	width:100%;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border: 1px solid #213242;
}

.blok_restaurant .restaurant {
	margin-top:-5px;
	height: 42px;
	width:100%;
	border: 1px solid #213242;
	z-index:2;
	position:relative;
	
	/* Gradient */
	background-color:#063053;
	background-image:-webkit-gradient(linear, left bottom, left top, color-stop(0.20, #3f627f), color-stop(0.40, #3f627f), color-stop(0.6, #2e4f6f), color-stop(0.8, #2e4f6f)); /* chrome 2+, safari 4+; multiple color stops */
	background-image:-webkit-linear-gradient(#3f627f, #3f627f, #2e4f6f, #2e4f6f); /* chrome 10+, safari 5.1+ */
	background-image:-moz-linear-gradient(top, #3f627f, #3f627f, #2e4f6f, #2e4f6f); /* firefox; multiple color stops */
	background-image: -ms-linear-gradient(#3f627f, #3f627f, #2e4f6f, #2e4f6f); /* ie10 */
	background-image: -o-linear-gradient(#3f627f, #3f627f, #2e4f6f, #2e4f6f); /* opera 11.1 */
	background-image: linear-gradient(#3f627f, #3f627f, #2e4f6f, #2e4f6f); /* The "standard" */
	
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-bottomright: 5px;
	-moz-border-radius-bottomleft: 5px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
	
	/* Inner Shadow */
	-webkit-box-shadow: inset 0px 0px 1px 0px #fff;
	box-shadow: inset 0px 0px 1px 0px #fff; 
}

.blok_restaurant:after {
    z-index: -1;
    position: absolute;
    content: "";
    bottom: 15px;
    right: 3px;
    left: auto;
    width: 92%;
    top: 50%;
    max-width:300px;
    -webkit-box-shadow: 0 17px 8px #000;
    -moz-box-shadow: 0 17px 8px #000;
    box-shadow: 0 17px 8px #000;
    -webkit-transform: rotate(3deg);
    -moz-transform: rotate(3deg);
    -o-transform: rotate(3deg);
    -ms-transform: rotate(3deg);
    transform: rotate(3deg);
}

.blok_restaurant .text {
	text-transform:uppercase;
	color:#a2bace;
	font-size:14px;
	position:absolute;
	height:28px;
	width:92%;
}

.blok_restaurant a.text {
	padding-top:12px;
	position:absolute;
}

.blok_restaurant .arrow {
	background-image:url("../images/arrow.png");
	background-repeat:no-repeat;
	height:15px;
	width:15px;
	display:block;
	float:right;
	padding:10px;
	margin-top:-28px;
	z-index:5;
	position:relative;
}

.blok_restaurant a:link.text {
	padding-left:20px;
	padding-right:20px;
}

.blok_restaurant a:hover.text {
	color:#a2bace;
}

.blok_restaurant a:hover.text b {
	color:#a2bace;
}

.blok_restaurant li {
	width:100%;
	height: 40px;
	border: 1px solid #213242;
	z-index:2;
	position:relative;
	margin-top:-5px;
	
	/* Gradient */
	background-color:#063053;
	background-image:-webkit-gradient(linear, left bottom, left top, color-stop(0.20, #3f627f), color-stop(0.40, #3f627f), color-stop(0.6, #2e4f6f), color-stop(0.8, #2e4f6f)); /* chrome 2+, safari 4+; multiple color stops */
	background-image:-webkit-linear-gradient(#3f627f, #3f627f, #2e4f6f, #2e4f6f); /* chrome 10+, safari 5.1+ */
	background-image:-moz-linear-gradient(top, #3f627f, #3f627f, #2e4f6f, #2e4f6f); /* firefox; multiple color stops */
	background-image: -ms-linear-gradient(#3f627f, #3f627f, #2e4f6f, #2e4f6f); /* ie10 */
	background-image: -o-linear-gradient(#3f627f, #3f627f, #2e4f6f, #2e4f6f); /* opera 11.1 */
	background-image: linear-gradient(#3f627f, #3f627f, #2e4f6f, #2e4f6f); /* The "standard" */
	
	/* Inner Shadow */
	-webkit-box-shadow: inset 0px 0px 1px 0px #fff;
	box-shadow: inset 0px 0px 1px 0px #fff; 
}

.blok_restaurant li:hover {
	width:100%;
	height: 40px;
	border: 1px solid #213242;
	z-index:2;
	position:relative;
	
	/* Gradient */
	background-color:#063053;
	background-image:-webkit-gradient(linear, left bottom, left top, color-stop(0.20, #2e4f6f), color-stop(0.40, #2e4f6f), color-stop(0.6, #3f627f), color-stop(0.8, #3f627f)); /* chrome 2+, safari 4+; multiple color stops */
	background-image:-webkit-linear-gradient(#2e4f6f, #2e4f6f, #3f627f, #3f627f); /* chrome 10+, safari 5.1+ */
	background-image:-moz-linear-gradient(top, #2e4f6f, #2e4f6f, #3f627f, #3f627f); /* firefox; multiple color stops */
	background-image: -ms-linear-gradient(#2e4f6f, #2e4f6f, #3f627f, #3f627f); /* ie10 */
	background-image: -o-linear-gradient(#2e4f6f, #2e4f6f, #3f627f, #3f627f); /* opera 11.1 */
	background-image: linear-gradient(#2e4f6f, #2e4f6f, #3f627f, #3f627f); /* The "standard" */
	
	/* Inner Shadow */
	-webkit-box-shadow: inset 0px 1px 20px 0px rgba(0,0,0,0.33);
	box-shadow: inset 0px 1px 20px 0px rgba(0,0,0,0.33); 
}

.blok_restaurant b {
	font-weight:normal;
	font-family:UbuntuBold;
	text-align:left;
	padding:15px;
	text-transform:uppercase;
	margin-left:-10px;
	color:#fff;
}

/************** CONTACT **************/


.Contact {
	width:100%;
	position:relative;
	margin-top:-132px;
}

.Contact .text {
	text-align:left;
	color:#000;
	font-size:13px;
	width:73%;
	height:28px;
	position:absolute;
	font-weight:normal;
	font-family:UbuntuBold;
}

.Contact a.text {
	padding-top:13px;
	position:absolute;
}

.Contact .arrow_grey {
	background-image:url("../images/arrow_grey.png");
	background-repeat:no-repeat;
	height:15px;
	width:15px;
	display:block;
	float:right;
	padding:10px;
	margin-top:-29px;
	z-index:5;
	position:relative;
}

.Contact a:link.text {
	padding-left:70px;
	padding-right:20px;
}

.Contact a:hover.text {
	color:#333;
}

.Contact li {
	width:100%;
	height: 42px;
	border: 1px solid #213242;
	z-index:2;
	position:relative;
	margin-top:-1px;
	
	/* Gradient */
	background-color:#063053;
	background-image:-webkit-gradient(linear, left bottom, left top, color-stop(0.20, #fff), color-stop(0.40, #b8bdc8)); /* chrome 2+, safari 4+; multiple color stops */
	background-image:-webkit-linear-gradient(#fff, #b8bdc8); /* chrome 10+, safari 5.1+ */
	background-image:-moz-linear-gradient(top, #fff, #b8bdc8); /* firefox; multiple color stops */
	background-image: -ms-linear-gradient(#fff, #b8bdc8); /* ie10 */
	background-image: -o-linear-gradient(#fff, #b8bdc8); /* opera 11.1 */
	background-image: linear-gradient(#fff, #b8bdc8); /* The "standard" */
	
	/* Inner Shadow */
	-webkit-box-shadow: inset 0px 2px 0px 0px rgba(255,255,255,0.75);
	box-shadow: inset 0px 2px 0px 0px rgba(255,255,255,0.75); 
}

.Contact li:hover {
	width:100%;
	height: 42px;
	border: 1px solid #213242;
	z-index:2;
	position:relative;
	
	/* Gradient */
	background-color:#063053;
	background-image:-webkit-gradient(linear, left bottom, left top, color-stop(0.20, #b8bdc8), color-stop(0.40, #fff)); /* chrome 2+, safari 4+; multiple color stops */
	background-image:-webkit-linear-gradient(#b8bdc8, #fff); /* chrome 10+, safari 5.1+ */
	background-image:-moz-linear-gradient(top, #b8bdc8, #fff); /* firefox; multiple color stops */
	background-image: -ms-linear-gradient(#b8bdc8, #fff); /* ie10 */
	background-image: -o-linear-gradient(#b8bdc8, #fff); /* opera 11.1 */
	background-image: linear-gradient(#b8bdc8, #fff); /* The "standard" */
	
	/* Inner Shadow */
	-webkit-box-shadow: inset 0px 2px 0px 0px rgba(255,255,255,0.75);
	box-shadow: inset 0px 2px 0px 0px rgba(255,255,255,0.75); 
}

.Contact .icon_bg {
	height:42px;
	width:50px;
	border: 1px solid #213242;
	position:absolute;
	z-index:10;
	
	/* Gradient */
	background-color:#063053;
	background-image:-webkit-gradient(linear, left bottom, left top, color-stop(0.20, #b8bdc8), color-stop(0.40, #fff)); /* chrome 2+, safari 4+; multiple color stops */
	background-image:-webkit-linear-gradient(#b8bdc8, #fff); /* chrome 10+, safari 5.1+ */
	background-image:-moz-linear-gradient(top, #b8bdc8, #fff); /* firefox; multiple color stops */
	background-image: -ms-linear-gradient(#b8bdc8, #fff); /* ie10 */
	background-image: -o-linear-gradient(#b8bdc8, #fff); /* opera 11.1 */
	background-image: linear-gradient(#b8bdc8, #fff); /* The "standard" */
	
	/* Inner Shadow */
	-webkit-box-shadow: inset 0px 0px 1px 0px #fff;
	box-shadow: inset 0px 0px 1px 0px #fff;
}

.Contact .icon {
	text-align:center;
	margin-top:13px;
	color:#000;
	font-weight:bold;
	font-size:14px;
}

.BelOns .tekst_bg {	
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.BelOns .icon_bg {
	/* Inner Shadow */
	-webkit-box-shadow: inset 0px 2px 0px 0px rgba(255,255,255,0.75);
	box-shadow: inset 0px 2px 0px 0px rgba(255,255,255,0.75);
	
	-webkit-border-top-left-radius: 5px;
	-moz-border-radius-topleft: 5px;
	border-top-left-radius: 5px;	
}

.EmailOns .icon_bg {
	/* Inner Shadow */
	-webkit-box-shadow: inset 0px 2px 0px 0px rgba(255,255,255,0.75);
	box-shadow: inset 0px 2px 0px 0px rgba(255,255,255,0.75);
}

.Routebeschrijving .icon_bg {
	/* Inner Shadow */
	-webkit-box-shadow: inset 0px 2px 0px 0px rgba(255,255,255,0.75);
	box-shadow: inset 0px 2px 0px 0px rgba(255,255,255,0.75);
	
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-bottomleft: 5px;
	border-bottom-left-radius: 5px;	
}

.ShadowContact {
	width:100%;
	height:130px;
	position:relative;
	margin-top:32px;
}

.ShadowContact:after {
	z-index: -1;
	position: absolute;
    content: "";
    bottom: 15px;
    right: 3px;
    left: auto;
    width: 90%;
    top: 50%;
    max-width:300px;
    -webkit-box-shadow: 0 15px 8px #222;
    -moz-box-shadow: 0 15px 8px #222;
    box-shadow: 0 15px 8px #222;
    -webkit-transform: rotate(3deg);
    -moz-transform: rotate(3deg);
    -o-transform: rotate(3deg);
    -ms-transform: rotate(3deg);
    transform: rotate(3deg);
}

/************** SUBPAGINA MENU **************/

.subpaginaMenu {
	width:100%;
	position:relative;
	margin-top:30px;
}

.subpaginaMenu .text {
	text-align:left;
	text-transform:uppercase;
	color:#fff;
	font-size:14px;
	width:92%;
	height:35px;
	position:absolute;
}

.subpaginaMenu a.text {
	padding-top:18px;
	position:absolute;
}

.subpaginaMenu .arrow {
	background-image:url("../images/arrow.png");
	background-repeat:no-repeat;
	height:15px;
	width:15px;
	display:block;
	float:right;
	padding:10px;
	margin-top:-35px;
	z-index:5;
	position:relative;
}

.subpaginaMenu a:link.text {
	padding-left:20px;
	padding-right:20px;
}

.subpaginaMenu a:hover.text {
	color:#9ab3c8;
}

.subpaginaMenu li {
	font-family:UbuntuBold;
	width:100%;
	height: 53px;
	border: 1px solid #213242;
	z-index:2;
	position:relative;
	margin-top:-1px;
	
	/* Gradient */
	background-color:#063053;
	background-image:-webkit-gradient(linear, left bottom, left top, color-stop(0.20, #3f627f), color-stop(0.40, #3f627f), color-stop(0.6, #2e4f6f), color-stop(0.8, #2e4f6f)); /* chrome 2+, safari 4+; multiple color stops */
	background-image:-webkit-linear-gradient(#3f627f, #3f627f, #2e4f6f, #2e4f6f); /* chrome 10+, safari 5.1+ */
	background-image:-moz-linear-gradient(top, #3f627f, #3f627f, #2e4f6f, #2e4f6f); /* firefox; multiple color stops */
	background-image: -ms-linear-gradient(#3f627f, #3f627f, #2e4f6f, #2e4f6f); /* ie10 */
	background-image: -o-linear-gradient(#3f627f, #3f627f, #2e4f6f, #2e4f6f); /* opera 11.1 */
	background-image: linear-gradient(#3f627f, #3f627f, #2e4f6f, #2e4f6f); /* The "standard" */
	
	/* Inner Shadow */
	-webkit-box-shadow: inset 0px 0px 1px 0px #fff;
	box-shadow: inset 0px 0px 1px 0px #fff; 
}

.subpaginaMenu li:hover {
	width:100%;
	height: 53px;
	border: 1px solid #213242;
	z-index:2;
	position:relative;
	
	/* Gradient */
	background-color:#063053;
	background-image:-webkit-gradient(linear, left bottom, left top, color-stop(0.20, #2e4f6f), color-stop(0.40, #2e4f6f), color-stop(0.6, #3f627f), color-stop(0.8, #3f627f)); /* chrome 2+, safari 4+; multiple color stops */
	background-image:-webkit-linear-gradient(#2e4f6f, #2e4f6f, #3f627f, #3f627f); /* chrome 10+, safari 5.1+ */
	background-image:-moz-linear-gradient(top, #2e4f6f, #2e4f6f, #3f627f, #3f627f); /* firefox; multiple color stops */
	background-image: -ms-linear-gradient(#2e4f6f, #2e4f6f, #3f627f, #3f627f); /* ie10 */
	background-image: -o-linear-gradient(#2e4f6f, #2e4f6f, #3f627f, #3f627f); /* opera 11.1 */
	background-image: linear-gradient(#2e4f6f, #2e4f6f, #3f627f, #3f627f); /* The "standard" */
	
	/* Inner Shadow */
	-webkit-box-shadow: inset 0px 1px 20px 0px rgba(0,0,0,0.33);
	box-shadow: inset 0px 1px 20px 0px rgba(0,0,0,0.33); 
}

.subpaginaMenu b {
	text-align:left;
	padding:15px;
	text-transform:uppercase;
	color:#fff;
	margin-left:-8px;
}

/************** RESERVEREN ***************/

.Reserveren {
	margin-top:30px;
	background-color:#a9bad3;
	width:100%;
	height:670px;
	border: 1px solid #213242;
	
	/* Border Radius */
	-webkit-border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	border-radius: 5px;
	
	/* Inner Shadow */
	-webkit-box-shadow: inset 0px 1px 0px 0px #fff;
	box-shadow: inset 0px 1px 0px 0px #fff;
}

.Reserveren .content {
	padding:20px;
	margin-top:-5px;
}

.Reserveren .content p b {
	font-family:UbuntuBold;
	font-weight:normal;
}

.Reserveren .content table {
	margin-left:-3px;
	width:100%;
}

.Reserveren .content td {
	width:33%;
}

.Reserveren .content td b {
	font-family:UbuntuBold;
	font-weight:normal;
}

.Reserveren .content td select {
	width:100%;
}

.Reserveren h1 {
	font-size:14px;
	text-transform:uppercase;
	font-weight:normal;
	color:#2c4260;
}

.Reserveren hr {
	color:#adbed7;
	background-color:#adbed7;
	margin-top:12px;
}

input[type=radio] {
	margin-top:11px;
	margin-bottom:10px;
}

input[type=text] {
	margin-top:5px;
	height:30px;
	border:1px solid #8798b2;
	width:94%;
	position:relative;
	
	/* Inner Shadow */
	-webkit-box-shadow: inset 2px 2px 4px 0px rgba(0, 0, 0, 0.17), 1px 1px 0px 0px rgba(255, 255, 255, 0.5);
	box-shadow: inset 2px 2px 4px 0px rgba(0, 0, 0, 0.17), 1px 1px 0px 0px rgba(255, 255, 255, 0.5);
}

select {
	font-family:UbuntuRegular;
	border:1px solid #8798b2;
	padding-left:10px;
	padding-top:8px;
	height:33px;
	background-color:#fff;
	
	/* Inner Shadow */
	-webkit-box-shadow: inset 2px 2px 4px 0px rgba(0, 0, 0, 0.17), 1px 1px 0px 0px rgba(255, 255, 255, 0.5);
	box-shadow: inset 2px 2px 4px 0px rgba(0, 0, 0, 0.17), 1px 1px 0px 0px rgba(255, 255, 255, 0.5);
}

.reserveren_text {
	margin-top:-10px;
}

.reserveren_text li {
	font-family:UbuntuBold;
	padding-top:23px;
}

.reserveren_tijd {
	padding-left:80px;
	margin-top:-100px;
}

.reserveren_tijd select {
	width:47%;
}

.fields {
	position:relative;
	padding-left:80px;
	margin-top:-280px;
}

.reserveren_button {
	width:125px;
	float:right;
	margin-top:10px;
	margin-right:6px;
}

.reserveren_button .text {
	text-transform:uppercase;
	color:#fff;
	font-family:UbuntuBold;
	font-size:14px;
	height:29px;
	width:83px;
	position:absolute;
	padding-top:12px;
	padding-left:19px;
	padding-right:21px;
}

.reserveren_button li {
	height: 40px;
	border: 1px solid #213242;
	
	/* Gradient */
	background-color:#063053;
	background-image:-webkit-gradient(linear, left bottom, left top, color-stop(0.20, #3f627f), color-stop(0.40, #3f627f), color-stop(0.6, #2e4f6f), color-stop(0.8, #2e4f6f)); /* chrome 2+, safari 4+; multiple color stops */
	background-image:-webkit-linear-gradient(#3f627f, #3f627f, #2e4f6f, #2e4f6f); /* chrome 10+, safari 5.1+ */
	background-image:-moz-linear-gradient(top, #3f627f, #3f627f, #2e4f6f, #2e4f6f); /* firefox; multiple color stops */
	background-image: -ms-linear-gradient(#3f627f, #3f627f, #2e4f6f, #2e4f6f); /* ie10 */
	background-image: -o-linear-gradient(#3f627f, #3f627f, #2e4f6f, #2e4f6f); /* opera 11.1 */
	background-image: linear-gradient(#3f627f, #3f627f, #2e4f6f, #2e4f6f); /* The "standard" */
	
	/* Inner Shadow */
	-webkit-box-shadow: inset 0px 0px 1px 0px #fff;
	box-shadow: inset 0px 0px 1px 0px #fff; 
}

.reserveren_button li:hover {
	height: 40px;
	border: 1px solid #213242;
	z-index:2;
	position:relative;
	
	/* Gradient */
	background-color:#063053;
	background-image:-webkit-gradient(linear, left bottom, left top, color-stop(0.20, #2e4f6f), color-stop(0.40, #2e4f6f), color-stop(0.6, #3f627f), color-stop(0.8, #3f627f)); /* chrome 2+, safari 4+; multiple color stops */
	background-image:-webkit-linear-gradient(#2e4f6f, #2e4f6f, #3f627f, #3f627f); /* chrome 10+, safari 5.1+ */
	background-image:-moz-linear-gradient(top, #2e4f6f, #2e4f6f, #3f627f, #3f627f); /* firefox; multiple color stops */
	background-image: -ms-linear-gradient(#2e4f6f, #2e4f6f, #3f627f, #3f627f); /* ie10 */
	background-image: -o-linear-gradient(#2e4f6f, #2e4f6f, #3f627f, #3f627f); /* opera 11.1 */
	background-image: linear-gradient(#2e4f6f, #2e4f6f, #3f627f, #3f627f); /* The "standard" */
	
	/* Inner Shadow */
	-webkit-box-shadow: inset 0px 1px 20px 0px rgba(0,0,0,0.33);
	box-shadow: inset 0px 1px 20px 0px rgba(0,0,0,0.33); 
}

/************** IETS TE VIEREN ***************/

.IetsTeVieren {
	margin-top:30px;
	background-color:#a9bad3;
	width:100%;
	height:100%;
	border: 1px solid #213242;
	
	/* Border Radius */
	-webkit-border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	border-radius: 5px;
	
	/* Inner Shadow */
	-webkit-box-shadow: inset 0px 1px 0px 0px #fff;
	box-shadow: inset 0px 1px 0px 0px #fff;
}

.IetsTeVieren .content {
	padding:20px;
	margin-top:-5px;
}

.IetsTeVieren h1 {
	font-size:14px;
	text-transform:uppercase;
	font-weight:normal;
	color:#2c4260;
	font-family:UbuntuBold;
}

.IetsTeVieren hr {
	color:#adbed7;
	background-color:#adbed7;
	margin-top:12px;
}

.IetsTeVieren a:link {
	color:#fff;
}

.IetsTeVieren a:hover {
	color:#f4f4f4;
}

/************** MENUKAART ***************/

.subpaginaMenukaart {
	width:100%;
	position:relative;
	margin-top:30px;
}

.subpaginaMenukaart .text {
	text-align:left;
	text-transform:uppercase;
	color:#fff;
	font-size:14px;
	width:92%;
	height:28px;
	position:absolute;
	padding-top:12px;
}

.subpaginaMenukaart .arrow {
	background-image:url("../images/arrow.png");
	background-repeat:no-repeat;
	height:15px;
	width:15px;
	display:block;
	float:right;
	padding:10px;
	margin-top:-28px;
	z-index:5;
	position:relative;
}

.subpaginaMenukaart a:link.text {
	padding-left:20px;
	padding-right:20px;
}

.subpaginaMenukaart a:hover.text {
	color:#9ab3c8;
}

.subpaginaMenukaart li {
	font-family:UbuntuBold;
	width:100%;
	height:40px;
	border:1px solid #213242;
	z-index:2;
	position:relative;
	
	/* Gradient */
	background-color:#063053;
	background-image:-webkit-gradient(linear, left bottom, left top, color-stop(0.20, #3f627f), color-stop(0.40, #3f627f), color-stop(0.6, #2e4f6f), color-stop(0.8, #2e4f6f)); /* chrome 2+, safari 4+; multiple color stops */
	background-image:-webkit-linear-gradient(#3f627f, #3f627f, #2e4f6f, #2e4f6f); /* chrome 10+, safari 5.1+ */
	background-image:-moz-linear-gradient(top, #3f627f, #3f627f, #2e4f6f, #2e4f6f); /* firefox; multiple color stops */
	background-image: -ms-linear-gradient(#3f627f, #3f627f, #2e4f6f, #2e4f6f); /* ie10 */
	background-image: -o-linear-gradient(#3f627f, #3f627f, #2e4f6f, #2e4f6f); /* opera 11.1 */
	background-image: linear-gradient(#3f627f, #3f627f, #2e4f6f, #2e4f6f); /* The "standard" */
	
	/* Inner Shadow */
	-webkit-box-shadow: inset 0px 0px 1px 0px #fff;
	box-shadow: inset 0px 0px 1px 0px #fff; 
}

.subpaginaMenukaart li:hover {
	width:100%;
	height:40px;
	border:1px solid #213242;
	z-index:2;
	position:relative;
	
	/* Gradient */
	background-color:#063053;
	background-image:-webkit-gradient(linear, left bottom, left top, color-stop(0.20, #2e4f6f), color-stop(0.40, #2e4f6f), color-stop(0.6, #3f627f), color-stop(0.8, #3f627f)); /* chrome 2+, safari 4+; multiple color stops */
	background-image:-webkit-linear-gradient(#2e4f6f, #2e4f6f, #3f627f, #3f627f); /* chrome 10+, safari 5.1+ */
	background-image:-moz-linear-gradient(top, #2e4f6f, #2e4f6f, #3f627f, #3f627f); /* firefox; multiple color stops */
	background-image: -ms-linear-gradient(#2e4f6f, #2e4f6f, #3f627f, #3f627f); /* ie10 */
	background-image: -o-linear-gradient(#2e4f6f, #2e4f6f, #3f627f, #3f627f); /* opera 11.1 */
	background-image: linear-gradient(#2e4f6f, #2e4f6f, #3f627f, #3f627f); /* The "standard" */
	
	/* Inner Shadow */
	-webkit-box-shadow: inset 0px 1px 20px 0px rgba(0,0,0,0.33);
	box-shadow: inset 0px 1px 20px 0px rgba(0,0,0,0.33); 
}

/***************** MENUKAART GERECHTEN *******************/

.menukaart_gerechten {
	margin-top:30px;
	background-color:#a9bad3;
	width:100%;
	height:100%;
	border: 1px solid #213242;
	
	/* Border Radius */
	-webkit-border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	border-radius: 5px;
	
	/* Inner Shadow */
	-webkit-box-shadow: inset 0px 1px 0px 0px #fff;
	box-shadow: inset 0px 1px 0px 0px #fff;
}

.menukaart_gerechten .content {
	padding:20px;
	margin-top:-5px;
}

.menukaart_gerechten h1 {
	font-size:14px;
	text-transform:uppercase;
	font-weight:normal;
	color:#2c4260;
	font-family:UbuntuBold;
}

.menukaart_gerechten hr {
	color:#adbed7;
	background-color:#adbed7;
	margin-top:12px;
}

.menukaart_gerechten b {
	font-weight:normal;
	font-family:UbuntuBold;
	color:#2c4260;
}

.menukaart_gerechten b.prijs {
	float:right;
	padding-bottom:15px;
}

.reservationForm .label { width:50%; margin-top:10px; }
.reservationForm input.invulveld { width:60%; }
.reservationForm input.invulveld-medium { width:40%; }
.reservationForm input.invulveld-short { width:14%; }
