html, body {
	height: 100%;
	margin: 0;
	background-color: #f7f7f7;
	background-image: url("background.png");
}

body {
	padding: 1em;
}

#top {
	float: left;
	width: 1px;
	height: 140px;
}

#container {
	clear: left;
	position: relative;
	margin: 0 auto;
}

html {
	text-align: center;
	font-family: 'Open Sans', sans-serif;
	color: #706f6f;
	font-size: 14pt;
}

h1, h2{
	text-shadow:
		 1px  1px 2px #fff,
		-1px  1px 2px #fff,
		-1px -1px 2px #fff,
		 1px -1px 2px #fff;
}

::selection {
	background: #aaa;
	color: white;
	text-shadow: none;
}
::-moz-selection {
	background: #aaa;
	color: white;
	text-shadow: none;
}

section {
	max-width: 100%;
}

img {
	max-width: 100%;
}

a[href^=tel] {
	text-decoration: none;
}

a {
	color: #706f6f;
	text-decoration: unterline;
}

a:hover {
	text-decoration: none;
}

img {
	border: none;
}

figure.slideshow img {
	height: 200px;
	box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.5);
	padding: 0.5em;
	margin: 0.5em;
	background-color: white;
}

strong {
	font-size: 1.5em;
}

header ul {
	display: inline-block;
}

header ul li, footer ul li {
	display: inline-block;
}

header ul li {
	padding: 0;
}

footer ul li {
	padding: 0.5em;
}

header {
	z-index: 1;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #ddd;
	box-shadow: 1px 1px 15px 0px rgba(0,0,0,0.5);
	
	background: #eaeaea; /* Old browsers */
	background: -moz-linear-gradient(top, #eaeaea 0%, #cccccc 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eaeaea), color-stop(100%,#cccccc)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #eaeaea 0%,#cccccc 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #eaeaea 0%,#cccccc 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #eaeaea 0%,#cccccc 100%); /* IE10+ */
	background: linear-gradient(top, #eaeaea 0%,#cccccc 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eaeaea', endColorstr='#cccccc',GradientType=0 ); /* IE6-9 */
}

.right {
	float: right;
	margin-right: 1em;
	padding: 0.2em;
}

footer {
	padding-bottom: 0.5em;
}

nav {
	text-align: center;
}

section.box {
	background-color: white;
	display: inline-block;
	box-shadow: 2px 2px 10px 0px rgba(0,0,0,0.5);
}

section.box figure {
	padding: 0;
	margin: 1em;
}


/* button 
---------------------------------------------- */
.button {
	display: inline-block;
	zoom: 1; /* zoom and *display = ie7 hack for display:inline-block */
	*display: inline;
	vertical-align: baseline;
	margin: 0 2px;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	font: 14px/100% Arial, Helvetica, sans-serif;
	padding: .5em 2em .55em;
	text-shadow: 0 1px 1px rgba(0,0,0,.3);
	-webkit-border-radius: .5em; 
	-moz-border-radius: .5em;
	border-radius: .5em;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	box-shadow: 0 1px 2px rgba(0,0,0,.2);
}
.button:hover {
	text-decoration: none;
}
.button:active {
	position: relative;
	top: 1px;
}

.bigrounded {
	-webkit-border-radius: 2em;
	-moz-border-radius: 2em;
	border-radius: 2em;
}
.medium {
	font-size: 12px;
	padding: .4em 1.5em .42em;
}
.small {
	font-size: 11px;
	padding: .2em 1em .275em;
}

/* white */
.white {
	color: #606060;
	border: solid 1px #b7b7b7;
	background: #fff;
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ededed));
	background: -moz-linear-gradient(top,  #fff,  #ededed);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed');
}
.white:hover {
	background: #ededed;
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#dcdcdc));
	background: -moz-linear-gradient(top,  #fff,  #dcdcdc);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#dcdcdc');
}
.white:active {
	color: #999;
	background: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#fff));
	background: -moz-linear-gradient(top,  #ededed,  #fff);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#ffffff');
}