/* Style sheet created by: Ben Menard */

/* Style for body specifies a background color */
body {
	background-color: #E6E6FA;
}

img {
	max-width: 100%;
}

/* Styles for Mobile Layout */

/* Style for the container centers the page and specifies the width */
#container {
	width: auto;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0.5em;
}

/* Style for the header specifies top margin, background color, rounded corners, and center align content */
.header {
	
	margin-top: 0.2em;
	margin-bottom: 0.3em;
	text-align: center;
	padding: 0.2em;
	color: #000066;
}

/* Style for title */
.header .title	{
	font-family: Verdana, Arial, serif;
	font-size: 5em;
	font-weight: bold;
}

/* Style for div class slogan */
.header .slogan {
	font-family: Verdana, Arial, serif;
	font-size: 1.5em;
}

#banner {
	text-align: center;
}

/* Style for nav specifies text properties */
nav {
	font-family: Lucida, "Times New Roman", serif;
	font-size: 1em;
	font-weight: bold;
	text-align: center;
}

/* Style specifies padding and margins for unordered list */
nav ul {
	padding: 1em;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}

/* Style for nav li specifies the background color, rounded corners, and applies margins and padding for list items within the navigation */
nav li {
	background-color: #000066;
	list-style-type: none;
	margin: 0.4em;
	padding: 0.5em;
}

/* Style changes navigation link text color to white */
nav li a {
	color: #FFFFFF;
	text-decoration: none;
}

/* Style for the main specifies a block display, text properties, margins, padding, rounded corners, and borders  */
main {
	display: block;
	font-family: Georgia, "Times New Roman", sans-serif;
	font-size: 1em;
	margin-top: 0.5em;
	padding: 0.5em;
	border-radius: 1em;
	background-color: #E6E6FA;
	text-align: center;
}


/* Style for the footer specifies font size, text alignment, and top margin */
footer {
	font-size: .70em;
	text-align: center;
	margin-top: 2em;
}

/* Style displays the mobile class */
.mobile {
	display: inline;
}

/* Style for article h3 indicates alignment */
article h3 {
	text-align: center;
}

h2 {
	font-family: "Arial Black", "Arial Bold", Gadget, sans-serif;
	font-weight: 500;
}

h3 {
	font-family: "Arial Black", "Arial Bold", Gadget, sans-serif;
	font-weight: 500;
}
/* Style for figure indicates text alignment */
figure {
	text-align: center;
}

/* Style for figcaption specifies color */
figcaption {
	color: #000066;
}

/* Style for section specifies padding */
section {
	padding: 1em;
}

/* Style for article specifies margin, padding, and background color */
article {
	margin: 1em;
	padding: 1em;
	background-color: #ACB7E6;
}

/* Style rules for input, select, textarea */
input, select, textarea {
	display: block;
	margin-bottom: 1em;
	
}

/*Style rule for label */
label {
	display: block;
}

/*Style rule for form ul */
form ul {
	list-style-type: none;
	
}

/* Style rule for service class display */
.svc {
	display: inline-block;
}

/*media query for tablet viewport targets screen size with a minimum width of 481px */

@media only screen and (min-width: 481px) {

/* Style specifies horizontal display for navigation links */
nav li {
	display: inline;
	float: left;
	margin-left: 1%;
	margin-right: 1%;
	padding-left: 0;
	padding-right: 0;
	width: 18%;
}

/* Style specifies clear property for the main */
main {
	clear: left;
}

/* Style for mobile class specifies display */
.mobile {
	display: none;
}

/* Style for desktop class specifies display */
.desktop {
	display: inline;
}

/*Style rules for label */
label {
	float: left;
	padding-right: 0.5em;
	text-align: left;
	width: 8em;
}
}

/* Media query for desktop viewport targets screen size with a minimum width of 769px */

@media only screen and (min-width: 1045px) {
	
/* Style specifies width for container */
#container {
	width: 80%;
}

/* Style specifies margin and padding for unordered list */
nav ul {
	margin: 0;
	padding-left: 0.50%;
	padding-right: 0.50%;
}

/* Style specifies border, margin, padding, width, and white space properties for navigation list items */
nav li {
	border-radius: 0;
	margin-left: 0;
	margin-right: 0;
	padding: 0;
	width: 20%;
	white-space: nowrap;
}

/* Styles for navigation links specify display, padding, font size */
nav li a {
	display: inline-block;
	padding: 0.7em;
	font-size: 1.25em;
}

/* Styles for main specifies border, box shadow, margin top */
main {
	border: none;
	border-radius: 1em;
	box-shadow: 1em 1em 1em #331400;
}

/* Style specifies a gradient for the body element */
body {
	background: -moz-linear-gradient(#E6E6FA, #3366CC); /* Firefox */
	background: -o-linear-gradient(#E6E6FA, #3366CC); /* Opera */
	background: -webkit-linear-gradient(#E6E6FA, #3366CC); /* Chrome, Safari */
	background: linear-gradient(#E6E6FA, #3366CC);
	background-attachment: fixed;
}

/* Style for section article specifies width, float, height */
section article {
	width: 22%;
	float: left;
	height: 15em;
}

}
/* Style rules for pseudo-classes */
nav li a:link {
	color: #FFFFFF;
}

nav li a:hover {
	color:rgb(255,255,0);
	font-size: 1.5em;
}

	