@charset "utf-8";
/* CSS Document */

#container {
	background-color: #fff;
	/* background-image: url(assets/images/container_bg.jpg); */
	background-repeat: repeat-y;
	width: 400px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}

#sidebar {
	float: left;
	width: 400px;
	margin-top: 0px;
	margin-left: 0px;
	display: inline;
}
#sidecontent {
	font-size: 80%;
	width: 400px;
        margin-right: 0px;
	margin-left: 0px;
}
#maincontent {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}

#footer {
	color: #FFF;

	background-image: linear-gradient(45deg,blue,red);
	height: 45px;
	padding: 0px;
	margin-right: 20px;
	margin-left: 20px
}
#footer_info {
	text-align: center;
	font-size: 50%;
	margin: 0px;
	padding: 0px;
}

#header {
	height: 157px;
	background-repeat: no-repeat;
	width: 200px;
	background-image: url(assets/images/AlfordprojectsLogo200x158.jpg);

}
#headername {
	background-color: #999;
	background-repeat: no-repeat;
	height: 158px;
	width: 200px;
	margin-left: 200px;
	float: left;
	background-image: url(assets/images/headername.jpg);
}

h4 {
	color: #000000;
	font-family: Georgia, "Times New Roman", Times, serif;
}

h3 {
	color: #9966CC;
	font-family: Georgia, "Times New Roman", Times, serif;
}
h2 {
	color: #000;
	font-family: Georgia, "Times New Roman", Times, serif;
        font-size: 15px;
}

h1 {
	color: #000;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 20px;
}


.clearfloat {
	font-size: 1px;
	line-height: 0px;
	margin: 0px;
	clear: both;
	height: 0px;
}
.leftimg {
	float: left;
	margin-right: 0px;
}
.rightimg {
	float: right;
	margin-left: 8px;
}

.centered {
	text-align: center;
}
#nav ul {
	margin: 0px;
	padding: 0px;
}
#nav li {
	font-size: 90%;
	list-style-type: none;
}
#nav a {
	text-align: center;
	display: block;
	width: 174px;
	margin-bottom: 5px;
	padding-top: 5px;
	padding-bottom: 5px;
	border: 3px solid #666;
}
#nav {
	width: 180px;
}

#nav a:link, #nav a:visited {
	color: #000;
	text-decoration: none;
	background-color: #fff;
}
#nav a:hover, #nav a:focus, #nav a:active {
	color: #fff;
	background-color: #ff9900;
}
#maincontent a:link, #maincontent a:visited {
	color: #FFA500;
}
#maincontent a:hover, #maincontent  a:focus , #maincontent a:active{
	color: #9CC;
}

#footer ul {
	text-align: center;
	padding: 0px;
	margin-top: 0px;
	margin-right: 20px;
	margin-bottom: 0px;
	margin-left: 20px;
}
#footer a:link, #footer a:visited {
	font-size: 80%;
	color: #fff;
	margin-right: 5px;
	margin-left: 5px;
}
#footer a:hover, #footer a:focus, #footer a:active {
	background-color: #fff;
	color: #124680;
}
#footer li {
	display: inline;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
	color: #000;
	background-color: #012258;
}

img {
	margin-right: 0px;
	margin-left: 0px;
	float: none;
	border: 0px solid #799;
       
}
#FlashID {
	margin-left: 160px;
}
form {
	width: 390px;
}
input.highlighted {
	background-color: #d6d6d6;
	display: block;
	border: 1px solid #525358;
	width: 250px;
}
textarea {
	border: 1px solid #62655e;
	background-color: #d6d6d6;
	margin-top: 5px;
}
* {box-sizing: border-box}
body {font-family: Verdana, sans-serif; margin:0}
.mySlides {display: none}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 380px;
  
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #000;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #000;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}
.navbar {
  overflow: hidden;
  background-color: #DCDCDC;
margin-top: 5px;  
margin-bottom: 5px;
  width: 400px;
 }

.navbar a {
  float: left;
  font-size: 16px;
  color: #FFA500;
  text-align: centre;
  padding: 14px 16px;
  text-decoration: none;
  width: 400px;
}

.dropdown {
  float: left;
  overflow: hidden;
 width: 400px;
}

.dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: black;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
  text-align: left;
width: 400px;

}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #999;
  min-width: 100px;
 }

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 100px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}