/*
	Tutorial 6
	Case 4

	Millennium Computers
	Author: Taylor Sears
    Date:   8/6/15

    Filename: 			mill.css
    Supporting files:	mclogo.jpg, go.png, 
						stop.png, oform.css
*/

/* Header styles */

header {
   float: left;
   width: 100%;
   clear: left;
   text-indent: 10px;
   text-align: center;
   background: rgba(177,177,177,50);

   -o-background-size: contain;
   -moz-background-size: contain;
   -webkit-background-size: contain;
   background-size: contain;

   border-bottom: 2px solid white;
}

header img {
   float: left;
   width: 100%;
}

header h1 {
   font-size: 2.5em;
   font-family: Verdana, Geneva, sans-serif;
   font-weight: bold;
   color: rgb(0, 69, 233);
   letter-spacing: 7px;
   text-align: center;
}

header article {
	width: 70%;
	margin: 10px;
	padding-left: 150px;
	color: rgb(0,69,233);
	font-weight: bold;
}

/*Navigation list styles */

header nav {
   float: left;
   width: 100%;
   margin: auto;
   padding-top: 5px;
}

header nav li {
   display: block;
   width: 13%;
   margin-left: 1%;
   margin-bottom: 5px;
   float: left;
}

header nav li a {
   display: block;
   width: 100%;
   height: 50px;
   line-height: 50px;
   text-align: center;
   color: white;
   font-size: 0.9em;
   -moz-border-radius: 50px;
   -webkit-border-radius: 50px;
   border-radius: 10px;
   background-color: black;
   text-decoration: none;
   text-transform: uppercase;
   font-weight: bold;
}

header nav li a:hover {
   background-color: rgb(235, 235, 66);
}

/* Body 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;
   text-decoration: none;
   vertical-align: baseline;
}

body {
   background: black url("index.png") top left repeat;
   width: 95%;
   min-width: 900px;
   max-width: 900px;
   font-family: Verdana, Geneva, sans-serif;
   font-weight: normal;
   font-size: 16px;
   margin: 15px auto;
   position: relative;
   border-left: 2px solid white;
   border-right: 2px solid white;
   border-top: 2px solid white;
   padding: 0px;
}

/* Section styles */

section {
   clear: both;
   padding-left: 155px;
   background: rgba(177,177,177,50);
   text-align: left;
   margin: auto;
}

div {
   clear: both;
   padding-left: 205px;
   background: rgba(177,177,177,50);
   margin: auto;
}

section p {
   color: rgb(0, 69, 233);
}

section h2 {
	margin-left: 90px;
	color: rgb(0, 69, 233);
	font-weight: bold;
	padding-top: 10px;
	padding-bottom: 10px;
}

/* Option button styles */

fieldset {
	background-color: rgb(233, 233, 255);
	border: medium none;
	float: none;
	width: 60%;
	margin: auto 80px;
}

fieldset.optionGroup {
	border-width: 0px;
	line-height: 1.2em;
}

fieldset.optionGroup label {
	display: inline;
	float: none;
	margin: auto;
	width: 30px;
	padding-left: 60px;
	line-height: 30px;
}

fieldset.optionGroup input {
	display: inline;
	float: none;
	margin: 0px 0px 0px 0px;
	width: 20px;
	padding-left: 20px;
}

/* Text area styles */

textarea {
	display: block;
	font-size: 0.9em;
	float: left;
	height: 150px;
	margin: 10px 0px;
	width: 99%;
}

/* Table style */

table.domeSpecs {
	font-size: 16px;
	margin-bottom: 20px;
	margin-left: 20px;
	float: right;
	border-collapse: collapse;
	
	background-image: url("tableback.png");
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: 100%;
}

/* Table Data Style */

table.domeSpecs tbody td {
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 5px;
	padding-right: 5px;
}

/* Table Caption */

table.domeSpecs caption {
	font-size: 18px;
	margin-bottom: 10px;
	letter-spacing: 5px;	
}

/* Table Header */

table.domeSpecs thead {
	border-bottom: 2px solid gray;
	background-image: url("tan.jpg");
	background-repeat: repeat;
}

table.domeSpecs thead tr {
	height: 40px;
}

table.domeSpecs thead td {
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 5px;
	padding-right: 5px;
	letter-spacing: 2px;
}

/* Table Body */

table.domeSpecs tbody tr {
	height: 50px;
	border-bottom: 1px gray;
	border-bottom-style: dotted;
}

/* Footer Styles */

footer {
   border-top: 2px solid white;
   border-bottom: 2px solid white;
   background: rgba(177,177,177,50);
   clear: left;
   padding: 10px 0px;
}

footer address {
   color: rgb(255, 255, 255);
   font-style: normal;
   font-size: 0.8em;
   text-align: center;
}