@charset "utf-8";
/* CSS Document */

body {
	font: 100%/1.2 Verdana, Arial, Helvetica, sans-serif;
	background: #339999; /* Old browsers */
background: -moz-linear-gradient(top, #339999 1%, #339999 52%, #72e2e2 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#339999), color-stop(52%,#339999), color-stop(100%,#72e2e2)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #339999 1%,#339999 52%,#72e2e2 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #339999 1%,#339999 52%,#72e2e2 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #339999 1%,#339999 52%,#72e2e2 100%); /* IE10+ */
background: linear-gradient(to bottom, #339999 1%,#339999 52%,#72e2e2 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#339999', endColorstr='#72e2e2',GradientType=0 ); /* IE6-9 */
	background-repeat: no-repeat;
	margin-top: 10px;
	padding: 0;
	color: #000;
}

header {
	width: 97%;
	box-shadow: 4px 4px 6px #666;
	border-radius: 10px;
	background-color: #339999;
	text-align: left;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: auto;
	margin-left: auto;
	border: thin solid #000;
	height: 102px;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 36px;
	font-weight: bold;
	font-style: oblique;
	color: #FF3;
}

nav {
	width: 95%;
	border-style: solid;
	border-color: #336666;
	border-width: thin;
	box-shadow: 4px 4px 7px #103305;
	border-radius: 5px;
	background-color: #339999;
	text-align: center;
	text-decoration: none;
	margin-top: auto;
	margin-right: auto;
	margin-bottom: 1em;
	margin-left: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: bold;
}

nav ul {
	list-style: none;
	padding: 0px;
	display: block;
}

nav ul li {
	display: inline;
	border-right: 1px solid #ccc;
	font-weight: bold;
	padding-top: 0px;
	padding-right: 5px;
	padding-bottom: 1px;
	padding-left: 5px;	
}

nav ul li a {
	color: #000000;
	text-decoration: none;
	font-weight: bold;
	font-size: 24px;
}

nav ul li a:hover {
	color: #FFF;
	font-weight: bold;
	font-size: 24px;
}
lamps1 {
	border-radius: 5px;
	margin: 5px;
	border: thin solid #000;
}

ul, ol, dl {
	padding: 0;
	margin: 0;
}

h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}

p {
	font-size: 95%;
}

a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
p a:link {
	color: #0000CC;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
p a:visited {
	color: #990066;
	text-decoration: underline;
}
p a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

.content {

	padding: 10px 0;
}
.container {
	background-color: #fff;
	width: 85%;
	margin-top: 3px;
	margin-right: auto;
	margin-bottom: auto;
	margin-left: auto;
	padding-top: 5px;
}
.logo {
	float: left;
	margin: auto;
	height: 100px;
	width: 133px;
}


/* ~~ The footer ~~ */
footer {
	padding: 10px 0;
	background-color: #339999;
	text-align: center;
}


/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
