body{
	background-color: #f4f4f4;
	color: 555;
	font-family: Arieal, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.6em;
	margin: 0;
}

.info{
	color: blue;
}

.container{
	width: 80%;
	margin: auto;
	overflow: hidden;
}

.email-image{
	width: 80%;
	margin: auto;
	overflow: hidden;
}

.image { 
    width:auto; 
    text-align:center; 
    padding:20px; 
     } 
     img { 
        max-width:100%; 
        height:auto; 
} 

#main-header{
	background-color: #48494B;
	color: #fff;
}

#navbar{
	background-color: #333;
	color: #fff;
}

#navbar ul{
	padding: 0;
	list-style: none;
}

#navbar li{
	display: inline;
}

#navbar a{
	color: #fff;
	text-decoration: none;
	font-size: 18px;
	padding-right: 15px;
}

#showcase{
	/* background-image: url('../images/showcase.jpg'); */
	/* background-image: url("/static/images/showcase.jpg") no-repeat 0px 0px; */
	/* background-color: #48494B; */
	/* background-image: url( "../images/showcase.jpg" ); */
	/* background-image: url( "../showcase.jpg" ); */
	background-image: url( "../stone9.png" );
	background-position: center right;
	min-height: 120px;
	margin-bottom: 30px;
	text-align: center;
}

#showcase h1{
	color: #fff;
	/* color: black; */
	font-size: 30px;
	line-height: 1.6em;
	padding-top: 15px;
}

#main{
	/* float: left; */
	width: 100%;
	padding: 0 30px;
	box-sizing: border-box;
}

#adventure_txt{
	background: #808080;
	color: #fff;
	padding: 10px;
	box-sizing: border-box;
}

#version_txt{
	text-align: right;
}

#sidebar{
	float: right;
	width: 30%;
	background: #333;
	color: #fff;
	padding: 10px;
	box-sizing: border-box;
}

#main-footer{
	background: #333;
	color: #fff;
	text-align: center;
	padding: 20px
	margin-top: 40px;
}

@media(max-width: 600px){
	#main{
		width: 100%;
		float: none;
	}
	#sidebar{
		width: 100%;
		float: none;
	}
}

/* Notes */

/* Lorem */
/*
Duck is the common name for numerous species in the waterfowl family Anatidae which also includes swans and geese. Ducks are divided among several subfamilies in the family Anatidae; they do not represent a monophyletic group (the group of all descendants of a single common ancestral species) but a form taxon, since swans and geese are not considered ducks. Ducks are mostly aquatic birds, mostly smaller than the swans and geese, and may be found in both fresh water and sea water.
*/


/* id vs. class: */
	/* id is for uniqe elements */
	/* class is for element to be used repeatedly */

/* for background-image - sometimes it's not clear in the iOS filer whether an image already has a ".jpg"... during rename this can lead to "image.jpg.jpg" and lots of issues linking to the correct image name (which will lead to a blank white background). When in doubt, inspect the file in Working Copy - it will report the true file name. */
