/*
	
	GwyddionGames Style Sheet
	Author:	JP Dhabolt
	Date: 8/29/2015
	
	Filename:			arrays.css
	Supporting Files:
	
*/

/* Display HTML5 structural elements as blocks */

article, aside, figure, figcaption, footer, hgroup, header, 
section, nav {
   display: block;
}


/* Set the default page element styles */

body * {
   font-family: Verdana, Geneva, sans-serif;
   font-size: 100%;
   font-weight: inherit;
   line-height: 1.2em;
   list-style: none;
   margin: 0px;
   padding: 0px;
	position: relative;
   text-decoration: none;
   vertical-align: baseline;
}


/* Body Styles */
body {
	background-color: orange;
   background: -o-linear-gradient(black, orange 40%, rgb(0, 100, 0) 80%) no-repeat;
	background: -ms-linear-gradient(black, orange 40%, rgb(0, 100, 0) 80%) no-repeat;
	background: -moz-linear-gradient(black, orange 40%, rgb(0, 100, 0) 80%) no-repeat;
	background: -webkit-linear-gradient(black, orange 40%, rgb(0, 100, 0) 80%) no-repeat;
	background: linear-gradient(black, orange 40%, rgb(0, 100, 0) 80%) no-repeat;
	
   min-width: 1000px;
   max-width: 1400px;
	width: 95%;

   font-family: Verdana, Geneva, sans-serif;
   font-weight: normal;
	margin: auto;
	text-align: center;
}

/* Header Styles */

header {
	float: left;
	text-align: center;
	width: 100%;
}

header img {
	width: 30%;
}

header nav {
	float: left;
	margin: 10px auto;
	width: 100%;

}

header nav li {
	background-color: rgb(0, 100, 0);
	
	-moz-border-radius: 20px;
   -webkit-border-radius: 20px;
	border-radius:20px;
	
	float: left;
	font-size: 1.3em;
	height: 30px;
	margin: 2%;
	text-align: center;
	width: 16%;
}

header nav li a {
	color: orange;
}

header nav li:hover {
	background-color: black;
}


/* Section Styles */

section {
	border: 5px solid black;
	float: left;
	width: 100%;
	margin-bottom: 20px;
	text-align: center;
}

section:last-of-type {
	margin-bottom: 0px;
}

section p {
	margin: 40px auto;
	text-align: center;
	width: 60%;
}

em {
	color: rgb(0, 100, 0);
	font-size: 1.5em;
}

cite {
	color: orange;
	font-size: 1.3em;
}

/* Form Styles */

form {
	margin: 10px auto;
}

input[type="button"] {
	background-color: orange;
	border: 3px solid rgb(0, 100, 0);
	
	-moz-border-radius: 10px;
   -webkit-border-radius: 10px;
	border-radius:10px;
	
	color: rgb(0, 100, 0);
	
	padding: 5px;
}

input#toStr, input#sum {
	background-color: rgba(0,0,0,0);
	border: 1px dotted orange;
}

input#sum {
	width: 50px;
}



/* Table Styles */

table {
	background-color: rgb(0, 100, 0);
	border: 2px solid orange;
	color: orange;
	margin: 5px auto;
}

td {
	border: 1px solid orange;
	padding: 5px;
}

/* Footer Styles */

footer {
	background-color: orange;
	border-right: 5px solid black;
	border-left: 5px solid black;
	border-bottom: 5px solid black;
	float: left;
	text-align: center;
	width: 100%;
}

footer img {
	width: 50px;
}

footer img:first-of-type {
	-o-transform: rotate(30deg);
	-moz-transform: rotate(30deg);
	-webkit-transform: rotate(30deg);
	-ms-transform: rotate(30deg);
	transform: rotate(30deg);
}

footer img:last-of-type {
	-o-transform: rotate(-30deg);
	-moz-transform: rotate(-30deg);
	-webkit-transform: rotate(-30deg);
	-ms-transform: rotate(-30deg);
	transform: rotate(-30deg);
}