@charset "UTF-8";
/* CSS Document */

html, 
html * {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;}

header {
	padding: 20px;
}

body {
	width:70%;
	margin:0 auto;
	font-family:	"Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
	font-size: .9em; 
	background-image:url('img/bg_lr.png');
	background-repeat: repeat-y;
	 background-size: 100% auto;
}
p {
	margin-top:10px
}

h1 {
	margin: 80px 0 50px 0;
	font-size: 1.5em;
	text-transform: uppercase;
	}
h2 {
	margin-top:20px;
	font-size: 1.1em;
	text-transform: uppercase;
	}
h3 {
	margin-top:20px;
	font-size: 1em; 
	text-transform: uppercase;
	}
h4 {
	margin-top:20px;
	font-size: 1em; 
	text-transform: uppercase;
	}


.border {
    border: 2px solid #aaaaaa; padding: 5px;
}


.style-logo {
	margin-left: auto;
	margin-right: auto;
	display: block;
}

.style-nav ul {
	list-style-type: none;
}

.style-nav ul li a {
	text-decoration: none;
	color: #2F322A;
	text-align: center;
	display: block;
	text-transform: uppercase;
	padding: 8px;
}

/*Tablet View*/

@media (min-width: 768px){
	
	.style-nav ul li {
		display: inline-block;
	}
	
	.style-nav ul {
		text-align: center;
	}
}

/*Desktop View*/

@media (min-width: 1024px){
	
	.style-logo {
		float: left;
	}
	
	.style-nav {
		float: right;
	}
	
}

/*Flexbox*/
.flexbox {
	width: 100%;
	margin: 0 auto;
	background-color:white;
	display:flex;
	-moz-display:flex;
	-webkit-display:flex;
	-ms-display:flex;
	-o-display:flex;
	flex-diretion: row;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center
	}

.flexelement {
	width: 30%;
	background-color: white;
	color:black;
	text-align:center;
	margin:10px;
	padding:0;
}

.flexbox3 {
	width: 100%;
	margin: 0 auto;
	background-color:white;
	display:flex;
	-moz-display:flex;
	-webkit-display:flex;
	-ms-display:flex;
	-o-display:flex;
	flex-diretion: row;
	justify-content: space-between;
	flex-wrap: wrap;
	}

.flexelement3 {
	width: 30%;
	background-color: white;
	color:black;
	text-align:center;
	margin:10px;
	padding:0;
}

.flexbox2 {
	width: 100%;
	margin: 0 auto;
	background-color:white;
	display:flex;
	-moz-display:flex;
	-webkit-display:flex;
	-ms-display:flex;
	-o-display:flex;
	flex-diretion: row;
	justify-content: space-between;
	flex-wrap: wrap;
	}


.flexelement2 {
	width: 45%;
	background-color: white;
	color:black;
	text-align:left;
	padding:0;
}
/*Button*/
.myButton {
	-moz-box-shadow:inset 0px 39px 0px -24px #666;
	-webkit-box-shadow:inset 0px 39px 0px -24px #666;
	box-shadow:inset 0px 39px 0px -24px #666;
	background-color:#333;
	-moz-border-radius:2px;
	-webkit-border-radius:2px;
	border-radius:2px;
	border:1px solid #000;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-weight:bold;
	padding:6px 15px;
	text-decoration:none;
	text-shadow:0px 1px 0px #283760;
}
.myButton:hover {
	-moz-box-shadow:inset 0px 39px 0px -24px #333;
	-webkit-box-shadow:inset 0px 39px 0px -24px #333;
	box-shadow:inset 0px 39px 0px -24px #333;
	background-color:#000;
	color:#ccc;
}
.myButton:active {
	position:relative;
	top:1px;
}

/*Footer*/
footer {
position:fixed;
bottom:0px;
padding:4px;
left:0;
right:0;
text-align:center;
margin:0px auto; 
border-top: 1px solid rgba(0,0,0,0.8);
width:100%;
background: rgba(255,255,255,0.8);
box-shadow: inset 0 1px rgba(255,255,255,0.3), inset 0 7px rgba(255,255,255,0.18), inset 0 10px 40px rgba(255,255,255,0.4), inset 0 -15px 60px rgba(0, 0, 0, 0.3) 
}
