/**
/*	CSS Style Sheet
/*	Website:		nudge.online
/*	Date:			2017/04/30
/*	Author:			Hashimori Iwato
/*	Description:	Non-@media rule styling	
*/

/********************************************************/
/*  Basic Document
/********************************************************/

/* Both padding and border are included in the dimensions of all elements */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/* Insures vertical scroll when the content overflows the viewport.*/
html {
	overflow-y: auto;
}

/* Provides for a horizontal gradient of the entire visible background.  Also sets the overall font-size, font-family, and text-color for the entire document */
body {
	background: #999999; /* For browsers that do not support gradients */
	background: -webkit-linear-gradient(90deg,#5a4149,#fadb9d,#ffffff); /* For Safari 5.1 to 6.0 */
	background: -o-linear-gradient(90deg,#5a4149,#fadb9d,#ffffff); /* For Opera 11.1 to 12.0 */
	background: -moz-linear-gradient(90deg,#5a4149,#fadb9d,#ffffff); /* For Firefox 3.6 to 15 */
	background: linear-gradient(90deg,#5a4149,#fadb9d,#ffffff); /* Standard syntax */
	font-size: 14px;
	color: #333333;
	font-family: Arial, helvetica, sans-serif;
}

/* Sets the basic to an unformatted starting point that will be consistent throughout the document. */
ol, ul {
	list-style: none; margin: 0;
}
ul li {
	margin: 0; padding: 0;
}
a, img {
	outline: none; border:none;font-weight: none;
}
img {
	display: block;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { 
	display: block;
}         

/********************************************************/
/*   The Container DIV
/********************************************************/

/* Centers the visible content on the page, sets a maximum width for the content, and circumscribes the content with 2 percent buffer zone. */
div.container {
	height: 94%
	width: 94%; 
	padding: 3%;
	max-width: 600px;
	margin: auto;
}
div.wrapper {
	width: 100%;
	padding-bottom: 177%;
	background-color: transparent;
}
header {
	position:absolute;
	top:0;
	right:0;
	bottom:85%;
	left:0;
	background-color: transparent;
}
main {
	position:absolute;
	top:15%;
	right:0;
	bottom:15%;
	left:0;
	background-color: transparent;
	background-image: url('../../_images/elephant_trans_bg.png');
	background-position: left top;
	background-size: contain;
	background-repeat: no-repeat;
    background-origin: content-box;
}
footer {
	margin-top: 2.0em;
	position:absolute;
	top:85%;
	right:0;
	bottom:0;
	left:0;
	background-color: transparent;
	color: #4E7F4E;
	font-size: 0.9em;
	font-weight: bold;
	text-align: right;
	vertical-align: bottom;
}

div.content {
	padding: 4%;
}

section, nav {
	position: relative;
	float:left;
	border: 0;
	margin: 0;
}

section {
	width: 69%;
	color: #ffffff;
	font-size: 1.2em;
	padding-right: 20%;
}

nav {
	width: 31%;
	color: #000000;
	text-align: right;
	font-weight: bold;
}

nav p a:link {color:#cccccc; font-weight: normal; text-decoration: none; display: inline;}
nav p a:visited {color:#ff4f4c; font-weight: normal; text-decoration: none; display: inline;}
nav p a:hover {color:#666666; font-weight: bold; text-decoration: none; display: inline;}
nav p a:active {color:#ff4f4c; font-weight: normal; text-decoration: none; display: inline;}