/*
 * Wilburton Fireworks Style Sheet
 *
 * S. Griffiths, Oct 2014
 */

body {
	font-family: Arial;
	width: 960px;
	margin-top: 10px;
	margin-left: auto;
	margin-right: auto;
	color: #000000;
	background: #ffffff url("../images/background2.jpg") no-repeat;
	background-size: cover;

	-ms-behavior: url("/scripts/backgroundsize.min.htc");
}
/***
    background: -moz-linear-gradient(top, #2B477D, #ffffff);
    background: -webkit-gradient(linear, left top, left bottom, from(#2B477D), to(#ffffff));
***/

hr {
margin-top: 20px;
margin-bottom: 20px;
color: silver;
background-color: silver;
width: 80%;
}

.container {
height: 100%;
padding-bottom: 10px;
}

blockquote {
font: 14px/20px italic Times, serif;
padding: 8px;
background-color: #e6ecee;
border-top: 1px solid #e1cc89;
border-bottom: 1px solid #e1cc89;
margin: 5px;
background-image: url(/images/openquote.png);
background-position: top left;
background-repeat: no-repeat;
text-indent: 24px;
}
blockquote span {
display: block;
background-image: url(/images/closedquote.png);
background-repeat: no-repeat;
background-position: bottom right;
}

.left {
float: left;
}

.right {
float: right;
}

.clear {
clear: both;
}

.page {
/*
	background-color: #ffffff;
*/
	background: rgba(0,0,0,0.7);
	color: #ffffff;

	border: 2px solid black;

	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

.header {
	margin-left: 0px;
	height: 280px;

	background-image: url("../images/headerbackground.gif");
	background-repeat: no-repeat;
	background-position: 0px 0px;

	color: white;
	font-size: 2em;
}

.header p {
	margin-top: 0px;
	width: 50%;
	text-align: center;
}

.header img {
	margin-top: 10px;
}

.navigationcontent {
	clear: both;
	height: 50px;
}

.content {

	min-height: 400px;

	clear: both;
	margin: 10px 10px 10px 10px;
}

.content ul {
list-style-image: url("../images/arrow.png");
}

.content ul li {
line-height: 1.5em;
}

.footer {
	clear: both;
	height: 260px;
}

.footer p {
	text-align: center;
}

.footer hr {
	color: silver;
	background-color: silver;
	width: 80%;
}


.imagecontainer {
	width: 100%;
	margin: 0px;
	margin-left: auto;
	margin-right: auto;
	clear: both;
}

.imagelist {
	float: left;
	padding: 5px;
	margin: 0px;
}

.imagelist p {
	text-align: center;
}


/* Navigation Menu */

ul#navigation {
	height: 36px;
	padding: 20px 10px 0 70px;
	width: 880px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	list-style: none;
}

ul#navigation li {
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	float: left;
	width: 130px;
	margin: 0 5px 0 0;
	background-color: #2B477D;
	border: solid 1px #ff0000;
	position: relative;
	z-index: 1;
}

ul#navigation li.selected {
	z-index: 3;
}

ul#navigation li.shadow {
	width: 100%;
	height: 2px;
	position: absolute;
	bottom: -3px;
	left: 0;
	border: none;
	background: none;
	z-index: 2;
	-webkit-box-shadow: #111 0 -2px 8px;
	-moz-box-shadow: #111 0 -2px 8px;
	box-shadow: #111 0 -2px 8px;
}

ul#navigation li a:link, ul#navigation li a:visited {
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	display: block;
	text-align: center;
	width: 130px;
	height: 40px;
	line-height: 36px;
	font-family: Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	text-decoration: none;
	font-size: 13px;
	font-weight: bold;
	color: #fff;
	letter-spacing: 1px;
	outline: none;
	float: left;
	background: #111111;
	-webkit-transition: background-color 0.3s linear;
	-moz-transition: background-color 0.3s linear;
	-o-transition: background-color 0.3s linear;
}

ul#navigation li a:hover {
	background-color: #ffcc00;
}

ul#navigation li.selected a:link, ul#navigation li.selected a:visited {
	color: #2B477D;
	border: solid 1px #fff;
	-webkit-transition: background-color 0.2s linear;
	background: -moz-linear-gradient(top center, #cca300, #ffcc00 80%) repeat scroll 0 0 #ffcc00 ;
	background: -webkit-gradient(linear,left bottom,left top,color-stop(.2, #ffcc00),color-stop(.8, #cca300));
	background-color: #ffcc00;
}

a:link {
    color: white;
}
a:visited {
    color: white;
}


