@charset "utf-8";

html {
	
background-color: #203;
}

body {
  padding: 10px;
  color: #a5f;
  font-size: large;
}



.navMenu {
  text-align: center;
}

/*
  Navigation buttons that look and act like buttons,
*/
.nav_btn a, input[type="submit"] {
  text-align: center;
  font-size: 1em;
  text-decoration: none;
  font-weight: bold;
  width: 10em;
  color: #3F4;
  padding: 3px;
  background-color: #040F04;
  border: .1em outset #3F4;
  border-radius: 1em;
  box-shadow: 3px 3px 5px rgba(0,0,0,.80);
}

input[type="submit"] {
 font-size: large;
}

.nav_btn a:hover, input[type="submit"]:hover { 
  background-color: #2A3;
  color: #040F04;
}


.nav_btn a:active, input[type="submit"]:active { 
  background-color: #3F4;
  border: .1em inset #3F4;
  color: #040F04;
}

/* Menu buttons that are more traditional square buttons */
.menu_btn a, .menu_disabled {
  display: inline-block;
  text-align: center;
  font-size: 1em;
  text-decoration: none;
  font-weight: bold;
  width: 8em;
  color: #3F4;
  padding: 3px;
  background-color: #040F04;
  border: .1em outset #3F4;
  box-shadow: 3px 3px 5px rgba(0,0,0,.80);
}

.menu_disabled {
  color: #262;
  background-color: #131;	
}

.menu_btn a:hover, .menu_btn a:hover { 
  background-color: #2A3;
  color: #040F04;
}

.menu_btn a:active, .menu_btn a:active { 
  background-color: #3F4;
  border: .1em inset #3F4;
  color: #040F04;
}


/* Form */
form {
 padding: 1em;
 border: .1em solid black;
}

input, select, textarea {
  background-color: #CEF;
  border: .1em inset #405;
  color: #405;
  padding: .25em;
  margin: .25em;
  border-radius: .25em;

}

label {
	display: inline-block;
	
	text-align: right;
	width: 8em;
}

/* Images */
.left_image {
	float: left;
}

img {
	text-align:left;
	margin:.5em;
}

/* Layout */
.outerwrap {
    text-align: center;
}

.contentwrap {
    display: inline-block;
    background-color: azure;
    width: 1100px;
    color: indigo;
}

.fullcontent {
    text-align: left;
    display: inline-block;
    padding: 10px;
}

.leftcontent {
    text-align: left;
    width: 700px;
    padding: 10px;
    float: left;
    display: inline-block;
    color: indigo;
}

.rightcontent {
    text-align: left;
    width: 360px;
    padding: 10px;
    float: right;
    display: inline-block;
    background-color: darkgoldenrod;
    color: indigo;
}

