/*
* Skeleton V1.2
* Copyright 2011, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 6/20/2012
*/

/* Table of Content
==================================================
	#Site Styles
	#Page Styles
	#Media Queries
	#Font-Face */

/* #Site Styles
================================================== */
body {
	background-color: #fff;
    font-weight: 200;
}

div{
    display: block;
    width: 100%;
}

/* -- Logo -- */
.logo {
    display: inline-block;
    width: 25%;
    float: left;
}
.logo-link {
    display: block;
}
.logo img {
    width: 100%;
}

/* -- Titel -- */
.title {
    display: inline-block;
    width: 40%;
    float: left;
    text-align: right;
    margin-top: 4%;
    line-height: 4rem;
    height: 8rem;
    overflow: hidden;
}

/* -- Headings -- */
h1,h2,h3,h4 {
	padding-top: 0px;
    color: rgb(231,0,36);
}
h1 {
    font-size: 4rem;
}
h2 {
    margin-top: 2rem;
    font-size: 2rem;
}

/* -- List -- */
ul {
    list-style: none;
}
ul li {
	margin-bottom: 0;
}
ul li label {
    margin-bottom: 0rem;
    margin-right: 0rem;
    font-weight: 200;
    font-size:1.1rem;    
}

/* -- Inputs -- */
input:focus {
    outline:none;
    border-color: rgb(231,0,36);
    color: rgb(231,0,36);
}

/* -- Radio buttons -- */
input[type="radio"] {
    margin-top: 5px;
    margin-bottom: 0rem;
}
.radio-label {
    font-size: 1.5rem;
    margin-bottom: .5rem;
}
.radio-title {
    margin-bottom: 0rem;
}
.postalcode {
    margin-left: 4%;
}

/* -- Send button -- */
.send:hover {
    background-color: rgb(231,0,36);
    color: #fff;
    border: 1px solid rgb(231,0,36);
}
/*.verzenden {
	-moz-box-shadow:inset 0px 1px 0px 0px #f29c93;
	-webkit-box-shadow:inset 0px 1px 0px 0px #f29c93;
	box-shadow:inset 0px 1px 0px 0px #f29c93;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #fe1a00), color-stop(1, #ce0100) );
	background:-moz-linear-gradient( center top, #fe1a00 5%, #ce0100 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fe1a00', endColorstr='#ce0100');
	background-color:#fe1a00;
	border:1px solid #d83526;
	display:inline-block;
	color:#ffffff;
	font-family:arial;
	font-size:15px;
	font-weight:bold;
	padding:6px 12px;
	margin-right: 0px;
	text-decoration:none;
	text-shadow:1px 1px 0px #b23e35;
	float: right;
	position: relative;
	left: 12px; top: -60px;
}
.verzenden:hover {
	-moz-box-shadow:inset 0px 1px 0px 0px #f29c93;
	-webkit-box-shadow:inset 0px 1px 0px 0px #f29c93;
	box-shadow:inset 0px 1px 0px 0px #f29c93;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ce0100), color-stop(1, #fe1a00) );
	background:-moz-linear-gradient( center top, #ce0100 5%, #fe1a00 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ce0100', endColorstr='#fe1a00');
	background-color:#ce0100;
	border:1px solid #d83526;
	display:inline-block;
	color:#ffffff;
	font-family:arial;
	font-size:15px;
	font-weight:bold;
	padding:6px 12px;
	text-decoration:none;
	text-shadow:1px 1px 0px #b23e35;
}*/
/* #Page Styles
================================================== */

/* #Media Queries
================================================== */

	/* Big screens (larger than 960) */
	@media only screen and (min-width: 960px) {
		/*
		#naw{
			border-right: none;
		}
		*/
	}

	/* Smaller than standard 960 (devices and browsers) */
	@media only screen and (max-width: 959px) {
	}

	/* Tablet Portrait size to standard 960 (devices and browsers) */
	@media only screen and (min-width: 768px) and (max-width: 959px) {
	
		#titel-infopakket {
			padding-top: 0px;
		}
	}
	/* All Mobile Sizes (devices and browser) */
	@media only screen and (max-width: 767px) {
		h1 {
			padding-top: 20px;
            font-size: 2rem;
		}

        .title {            
            line-height: 2rem;
            height: 4rem;
        }
	}

	/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
	@media only screen and (min-width: 480px) and (max-width: 767px) {}

	/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
	@media only screen and (max-width: 479px) {}


/* #Font-Face
================================================== */
/* 	This is the proper syntax for an @font-face file
		Just create a "fonts" folder at the root,
		copy your FontName into code below and remove
		comment brackets */

/*	@font-face {
	    font-family: 'FontName';
	    src: url('../fonts/FontName.eot');
	    src: url('../fonts/FontName.eot?iefix') format('eot'),
	         url('../fonts/FontName.woff') format('woff'),
	         url('../fonts/FontName.ttf') format('truetype'),
	         url('../fonts/FontName.svg#webfontZam02nTh') format('svg');
	    font-weight: normal;
	    font-style: normal; }
