@font-face {
    font-family: 'vmsansmedium';
    src: url('fonts/vmsans-medium-webfont.eot');
    src: url('fonts/vmsans-medium-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/vmsans-medium-webfont.woff2') format('woff2'),
         url('fonts/vmsans-medium-webfont.woff') format('woff'),
         url('fonts/vmsans-medium-webfont.ttf') format('truetype'),
         url('fonts/vmsans-medium-webfont.svg#vmsansmedium') format('svg');
    font-weight: normal;
    font-style: normal;

}


@font-face {
    font-family: 'vmbodyregular';
    src: url('fonts/vmbody-webfont.eot');
    src: url('fonts/vmbody-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/vmbody-webfont.woff2') format('woff2'),
         url('fonts/vmbody-webfont.woff') format('woff'),
         url('fonts/vmbody-webfont.ttf') format('truetype'),
         url('fonts/vmbody-webfont.svg#vmbodyregular') format('svg');
    font-weight: normal;
    font-style: normal;

}



body, html {
	margin: 0px;
	padding: 0px 20px;
	min-height: 100%;
}
a {
	color: #229775;
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
}
#paRappa {
	font-family: vmbodyregular, sans-serif;
	
	font-size: 16px;
	
	max-width: 840px;
	margin: 20px auto;
}
#header {
	font-family: vmsansmedium, sans-serif;
	text-align: center;
	color: #229775;
	text-transform: uppercase;
	
	cursor: pointer;
}
#header h1 {
	font-weight: normal;
	font-size: 2.5em;
	margin: 10px;
	color: #000000;
}
#hamburger {
	display: none;
}
#menu {
	font-family: vmsansmedium, sans-serif;
	width: 100%;
	margin: 30px auto;
	border-bottom: solid #000000 1px;
	text-transform: uppercase;
	text-align: justify;
}
#menu a {
	display: inline-block;
	text-decoration: none;
	color: #000000;
}
#menu a:hover {
	color: #878787;
}
#menu a.active {
	color: #a33f43;
}
#menu:after {
	content: '';
	display: inline-block;
	width: 100%;
}




/* index page */
#indexItemHolder {
	width: 100%;
	margin: 0px auto;
    
    -webkit-column-rule: 1px outset #000000;
    -moz-column-rule: 1px outset #000000;
    column-rule: 1px outset #000000;
    
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
}
.indexItem {
	display:inline-block;
	margin: 0px 20px;
	padding: 0px 0px 20px 0px;
	/*
	border-bottom: solid #000000 1px;
	 text-align: justify;
	 */
	cursor: pointer;
}
h2 {
	margin: 0px;
	font-family: vmsansmedium, sans-serif;
	font-weight: normal;
	text-align: center;
	white-space: nowrap;
}
.indexItem:hover h2 {
	color: #878787;
}



img {
	width: 100%;
}




/* inspiration */
#inspiration {
	text-align: center;
	font-size: 2em;
	
	padding-bottom: 30px;
	width: 400px;
	margin: 0px auto;
}
#inspiration a {
	display: block;
	font-family: vmsansmedium, sans-serif;
	text-align: center;
	color: #000000;
	text-decoration: none;
	white-space: nowrap;
	margin: 0px 0px 10px 0px;
	
	opacity: 0;

	-webkit-transition: opacity linear 1s;
	-moz-transition: opacity linear 1s;
	-o-transition: opacity linear 1s;
	-ms-transition: opacity linear 1s;
	transition: opacity linear 1s;
}
#inspiration a:hover {
	color: #666666;
}



.justified {
	text-align: justify;
	line-height: 1.15em;
	height: 1.15em;
}
.justified:after {
	content: '';
	display: inline-block;
	width: 100%;
}



/* contact */
#contactInfo {
	font-family: vmsansmedium, sans-serif;
	color: #229775;
	text-align: left;
	line-height: 1.7;
}
#contactInfo a {
	color: #a33f43;
	text-decoration: none;
}
#contactInfo a:hover {
	color: #a33f43;
	text-decoration: underline;
}

.hr {
	border-bottom: solid #444444 1px;
	margin: 0px 20px 20px 20px;
}



/* pricing */
#pricing {
	text-align: justify;
	width: 70%;
	min-width: 400px;
	margin: 0px auto;
	line-height: 1.6;
}









/* responsive css */
@media screen and (min-width: 0px) {
	#menu {
		font-size: 2em;
		overflow: hidden;
		margin-top: 10px;
	}
	#menu a {
		display: block;
		text-align: center;
		padding: 10px;
	}
	#menu a#hamburger {
		display: block;
		font-size: 0.9em;
		background-color: #ffffff;
		border-bottom: solid #444444 1px;
	}
	
	#menu.hidden {
		height: 1.7em;
	}
	#menu.visible {
		height: 100%;
	}
}

@media screen and (min-width: 600px) {
	#menu {
		font-size: 1em;
		height: auto;
		overflow: visible;

		margin-top: 30px;
	}
	#menu a {
		display: inline-block;

		text-align: inherit;
		padding: 0px;
	}
	#menu a#hamburger {
		display: none;
	}


	#menu.hidden {
		height: auto;
	}
	#menu.visible {
		height: auto;
	}
}