/* Full page modifiers */
* {
	margin: 0;
	padding: 0;
}

html, body {
	height: 100%;
	background-color: rgb(0, 0, 20);
	font-family: helvetica, arial, sans-serif;
	font-size: 16px;
	color: rgb(0, 0, 20);
	text-shadow: 1px 1px 1px rgb(40, 40, 40);
	width: 100%;
}

#wrapper {
	position: relative;
	min-height: 100%;
}

/* Title bar */
#header {
	background-color: #1E1E50;
	color: #DCE6FF;
}

h1 {
	font-family: 'Audiowide', helvetica, arial, sans-serif;
	font-size: 35px;
	padding: 10px 20px 0px;
	margin-bottom: 0;
}

#logo {
	float: right;
	font-size: 70px;
	padding: 0px 20px;
}

h2 {
	font-family: 'Audiowide', helvetica, arial, sans-serif;
	font-size: 15px;
	font-style: italic;
	padding: 0px 30px 10px;
	margin-top: 0;
	margin-bottom: 10px;
}

.search {
	display: block;
	width: 260px;
	hieght: 32px;
	margin: auto;
	margin-bottom: 5px;
}

#mic, #micImg {
	float: left;
	background-color: rgb(0, 0, 20);
	border: none;
	width: 32px;
	height: 32px;
	padding: 0;
	margin: 0 8px 0 0;
}

#search-form {
	padding-top: 5px;
}

#query {
	width: 165px;
	margin: 0 5px 0 0;
}

#submit {
	float: right;
	width: 45px;
}

/* Results */
#feedback {
	clear: both;
	text-align: center;
	color: rgb(220, 230, 255);
	padding: 0;
	margin-bottom: 10px;
}

.result {
	display: block;
	overflow: auto;
	width: 32%;
	height: 400px;
	margin-left: .85%;
	margin-bottom: 15px;
	float: left;
	background-color: rgb(220, 230, 255);
	text-shadow: none;
	border-radius: 10px;
	border: 1px solid black;
	box-shadow: 5px 5px 5px black;
}

.result img {
	display: block;
	width: 40%;
	height: auto;
	margin: 10px 5%;
	float: left;
}

.info {
	display: inline-block;
	width: 40%;
	margin: 10px 0px;
}

.title, .title:visited, .title:active, h3 {
	font-size: 18px;
	font-weight: bold;
	color: rgb(0, 0, 20);
	padding: 5px 10px 0px;
}

p {
	padding: 10px 10px 0px;
}

.description {
	font-style: italic;
	font-size: 14px;
}

.moreInfo {
	clear: left;
	width: 90%;
	margin: auto;
	padding: 5px;
	text-align: center;
	background-color: #1E1E50;
	color: #DCE6FF;
	cursor: pointer;
}

.moreInfo:hover {
	text-decoration: underline;
}

.prices {
	clear: left;
	text-align: center;
}

a {
	color: rgb(0, 200, 255);
	text-decoration: none;
	padding: 5px 0px;
	margin-bottom: 10px;
}

a:visited {
	color: rgb(90, 150, 170);
}

a:active {
	color: rgb(150, 230, 255);
}

a:hover {
	text-decoration: underline;
}

/* Forces footer to bottom */
#spacer {
	clear: left;
	margin: 0;
	padding: 0;
	display: hidden;
	height: 100px;
}

/* Information Footer */
#footer {
	text-align: center;
	width: 100%;
	height: 100px;
	position: absolute;
	bottom: 0;
	background-color: #1E1E50;
	color: #DCE6FF;
}