@charset "utf-8";
@import url("reset.css");
/* 
CSS by Dustin Gannon
Last updated: 04-27-2014
*/

a:link {color: #003399;}    /* unvisited link */
a:visited {color:#003399;}  /* visited link */
a:hover {color:#FF0000;}  /* mouse over link */
a:active {color:#0000FF;}  /* selected link */

* {
	margin: 0;
	padding: 0;
}


body {
	font-size: 100%;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	background: #oooooo;
}

#container {
	
}

#menuContainer {
	background-color: #ffffff;
	height: 50px;
}

#sliderbar {
	width: 1000px;
	overflow: hidden;
	margin: 50px auto;
	background: #ffffff;
	height: 300px;
	width: 3550px;
}
#mainHeader {
	font-weight:500;
	font-size:36px;
}

#menu {
	padding: 1px;
	margin-top: -45px;
	float: right;
	list-style-type: none;
}

menu ul a.yourHere:link, menu ul a.yourHere:visited {
	color: #ff0;
	display: inline;
}

#copyright {
	font-size:smaller;
	text-align: center;
	padding-top: 15px;
}

/* Slider bar animations */

.imageOne {
	animation: bannermove 30s linear infinite;
	-webkit-animation: bannermove 30s liniear infinite;
	-ms-animation: bannermove 30s linear infinite;
	-moz-animation: bannermove 30s linear infinite;
}

@keyframes "bannermove" {
	0% { margin-left: 0;}
	100% {margin-left; -2125px;}
}

@-moz-keyframes bannermove {
	0% { margin-left: 0;}
	100% {margin-left: -2125px;}
}

@-webkit-keyframes "bannermove" {
	0% { margin-left: 0;}
	100% {margin-left: -2125px;}
}	

@-ms-keyframes "bannermove" {
	0% { margin-left: 0;}
	100% {margin-left; -2125px;}
}

.slideshow {
	width: 3550px;
	height: 250px;
	margin-bottom: 80px;
}

.slideshow img {
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
}

.slideshow img:hover {
	transform: scale(1.1);
	cursor: pointer;
	-webkit-transform: scale(1.1);
	-webkit-box-shadow: 0 3px 5px rgba(0,0,0,0.2);
	-ms-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-moz-box-shadow: 0 3px 5px rgba(0,0,0,0.2);
}


/* General Display & Align CSS */

.rightit {
	text-align: right;
}

.leftit {
	text-align: left;
}

.clearit {
	clear: both;
}

.centerit {
	text-align: center;
}

.removeit {
	display: none;
}

.includeit {
	display: block;
}

.hideit {
	visibility: hidden;
}

.showit {
	visibility: visible;
}

/* General Text Color */

.redit {
	color: #ff0000;
}

.blueit {
	color: #006;
}

.greenit { 
    color: #060;
}

.brownit {
	color: #5e2f00;
}

.orangeit {
	color: #e67300;
}

.yellowit {
	color: #FF0;
}