/*<!-- Author: Tom LeBar CIS126 2015 Winter Term-->*/
/* So the HTML5 structural tags work in older browsers */
article, aside, figure, footer, header, nav, section {
    display: block;
}

/* remove all of the styles for the elements */
* {
	margin: 0;
	padding: 0;
}

/* entire page styling */
html {
	background-color: rgba(255, 255, 255, .5);
	padding-top: .7em;	
}

/* body styling */
body {
	font-family: Arial, Helvetica, sans-serif;
    font-size: 87.5%;  
	font-weight: 500;
	width: 900px;
    margin: 0 auto;   
	background-color: rgba(255, 255, 255, .5);
}	

/* the styles for the header */
header {
	border: 2px solid blue;
	border-radius: 0 0 .75em .75em;
	box-shadow: .7em .7em .7em rgba(0,0,0,.5);
	padding: 1.25em 0;	    
	background-image: -moz-linear-gradient(left, #fff 0%, #008 115%);
	background-image: -webkit-linear-gradient(left, #fff 0%, #008 115%);
	background-image: -ms-linear-gradient(left, #fff 0%, #008 115%);
	/* background-image: linear-gradient(left, #fff 0%, #008 115%); */	
}
header h1 {
	color: #008;
}
header h2 {
	font-style: italic;
}
header img {
	float: left;	
	padding: 0em 3em;
}
header .shadow {
	text-shadow: .1em .1em .1em #008;
}
header a {
	text-decoration: none;
}
/* link default color is black */
a:link {
	color: #000;
}

/* change font-style and color when hovering over link*/
a:focus, a:hover {
	font-style: italic;
	color: #00f;
}

/* change current page link to red */
.current { 
	color: #f00; 
}

/* styling for the navigation buttons below header section */
nav {		
	margin: .75em;		
	padding: .3em;
}
nav ul {
	margin: .5em 0 .2em 5em;/*adds space between button row and header*/
}
nav li {	
	display: inline;	
}
nav a{
	padding: .75em 2.75em; /*padding around <a> elements, adds separation*/
	text-decoration: none; /*removes the underlines from the <a> elements*/
	color: black; /*text color for the <a> elements*/
	background-color: #9f9;	
	border: 2px solid black;
	border-radius: .75em;
	box-shadow: .7em .7em .7em rgba(0,0,0,.5);	
}

/* the styles for the section */
section {
	margin: .5em .75em .5em 1.5em;	
	width: 60%;
	float: left;	
}
section h2, h3 {	
	font-size: 120%;	
}
section p {
	padding: .25em;
}

/* the styles for the article image*/
article img {
	width: 18em; 
	float: left;
	margin: .25em 1em .75em 0em;
	border: 2px solid black;
	border-radius: .3em;
	box-shadow: .7em .7em .7em rgba(0,0,0,.5);
}

/* specifics for .article1 style (top article) */
.article1  h2 {
	color: #800;
	padding-left: 1em;
}

/* style top article */
.article1{
	border: 2px solid #008;
	border-radius: .75em;
	box-shadow: .7em .7em .7em rgba(0,0,0,.5);
	padding: .25em;
	background-color: #fff;	
	-moz-column-count: 2; /* provide two columns for content */
	-webkit-column-count: 2;
	column-count: 2;	
}

/* specifics for .article2 style (bottom article sign in form) */
.article2 {
	clear: both;
	margin: .7em 0 0 0;
	background-color: #fff;	
	border: 2px solid #008;
	border-radius: .75em;
	box-shadow: .7em .7em .7em rgba(0,0,0,.5);
	padding: .2em .5em;		
}
.article2 h2, h3{	
	color: #008;
	padding: .5em 0;
	text-align: center;	
}
.textpic1 {
	width: 12em;
	height: 12em;
	margin: 1em 0 0 5em;						
	float: left;
	border: 2px solid black;
	border-radius: .3em;
	box-shadow: .7em .7em .7em rgba(0,0,0,.5);
	margin: .5em  ;
	padding: .3em;
	background-color: #9f9;
}
/* the .tab classes contain and group the drop down content. */
.tabs{	
	width: 35em;
	list-style-type: none;/*remove bullets from unordered list*/
	margin: 0 auto;/*center the unordered list is article2*/
	padding: 0;
	text-align: left;	
}
.tab {
	margin: 0 0 .65em 0;/*add padding between each phase - not stuck together*/
	border: 2px solid black;/*add a border to visually separate each phase*/
	border-radius: .35em;
	box-shadow: .7em .7em .7em rgba(0,0,0,.5);
	padding: .1em;	
}
.tab-name {	
	background-color: #9f9;
}
.tab-content {
	width: 45em;
	height: 25em;
	margin: 1em auto;
	padding: .3em;
	font-size: 75%;
	border: 1px solid black;/*put a black box around the phase text*/
	background-color: #fcc;
	display: none;	
}

/* here is the code for the .article2 hover magic no JavaScript!*/
.tab:hover .tab-content{
	display: block;	
}
.tabs:hover .tab {
		display:none;		
}	
.tabs:hover .tab:hover {
		display: block;		
}

/* style for the hidden table in the .article2 tab-content (lower section) */
figcaption {
	display:block;
	font-weight: bold;
	text-align: center;
	font-size: 120%;
	padding-bottom: .25em;
}
figure table {
	border-collapse: collapse;
	margin: .2em 0;
}
.launchstats th, td {
	border: 1px solid black;
	padding: .2em .7em;
}

/* the styles for both of the aside side bars*/
aside h2 {
	font-size: 120%;
	padding-bottom: .25em;
	padding-top: .25em;
	color: #008
}

/* the styles for #aside1 (left sidebar) including block quote*/
 #aside1 {
	width: 18%;
	height: 48em;
	background-color: #fff;	
	float: left;
	border: 2px solid #008;
	border-radius: .75em;
	box-shadow: .7em .7em .7em rgba(0,0,0,.5);
	margin: .5em 0;
	padding: .2em .5em;
}
#aside1 li {	
	list-style-type: none;		
	margin: 0 .1em .65em .1em;
	padding: .2em;
	border: 2px solid black;
	border-radius: .3em;
	box-shadow: 10px 10px 10px rgba(0,0,0,.5);
	background-color: #9f9;	
}
#aside1 a {
	text-decoration: none;
}
#aside1 blockquote {
	width: 85%;
	margin: 1.5em 0em 0em .15em;
	padding: .25em;
	font-family: Arial, Helvetica, sans-serif;
    font-size: 200%;
	font-weight: 500;
	border: 2px solid black;
	border-radius: .5em 1em 0 1em;
	box-shadow: .7em .7em .7em rgba(0,0,0,.5);
	background-image: -moz-linear-gradient(left, #fff 0%, #008 115%);
	background-image: -webkit-linear-gradient(left, #fff 0%, #008 115%);
	background-image: -ms-linear-gradient(left, #fff 0%, #008 115%);
	/* background-image: linear-gradient(left, #fff 0%, #008 115%); */
}

/* the styles for #aside2 (right sidebar) */
#aside2 {
	/* width: 125px; */
	width: 14%;
	height: 48em;
	float: right;
	background-color: #fff;	
	border: 2px solid #008;
	border-radius: .75em;
	box-shadow: .7em .7em .7em rgba(0,0,0,.5);
	margin: .5em auto;
	padding: .2em .5em;
}
#aside2 h4 {
	margin-top: .5em;
	margin-bottom: .25em;
	color: #008;
}
#aside2 li {	
	list-style-type: none;	
}
#aside2 a {
	text-decoration: none;
}
#aside2 ul .pic {	
	width: 58%;
	border: 2px solid black;
	border-radius: .3em;
	box-shadow: .7em .7em .7em rgba(0,0,0,.5);
	margin: .2em 0 .2em 1.3em;
	padding: .3em;
	background-color: #9f9;
}

/* the styles for the footer */
footer {	
	clear: both;
	border: 2px solid #008;
	border-radius: .7em .7em 0 0;
	box-shadow: .7em .7em .7em rgba(0,0,0,.5);
	padding: 1em 0;		
	background-image: -moz-linear-gradient(left, #fff 0%, #008 115%);
	background-image: -webkit-linear-gradient(left, #fff 0%, #008 115%);
	background-image: -ms-linear-gradient(left, #fff 0%, #008 115%);
	/* background-image: linear-gradient(left, #fff 0%, #008 115%); */
}
footer p {
	text-align: center;
}
