/*
Own Style - Jon Waite
*/

body 
{
	background-color:#0d0603;
	color:#fff;
	font-family: Gill Sans,Gill Sans MT,Calibri,sans-serif; 

}

a {
	text-decoration:none;
	font-size:inherit;
}

h1 {
	font-size:14pt;
	font-weight:600;
}

p {
	font-size:12pt;
	margin:5px 0;
}

.header {
	width:100%;
}

.header img {
	padding:10px 0;
}

.footer {
	border-top: 2px solid #858384;
	width:100%;
	height:100px; 
}

.footer a {
	color:white;
	font-size:inherit;
}

.carousel-caption-ecj {
	width:100%;
	background-color:#858384;
}

ul.menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    margin-top:30px;
}

.menu li {
    float: left;
}

.menu li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.menu .selected {
	border-bottom:2px solid #fff;
}

/* Change the link color to #111 (black) on hover */
.menu li a:hover {
    background-color: #333;
}

@media screen and (max-width:767px) {
	.carousel-indicators {
		display:none;
	}
}

@media screen and (min-width:768px) {
	.footerright {
		text-align:right;
	}
}

.carousel-indicators {
	margin-bottom:-15px;
}

.carousel-indicators li {
	width:40px;
}

.carousel-indicators .active {
	width:40px;
}

/* Popup container - can be anything you want */
.popup {
    position: relative;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* The actual popup */
.popup .popuptext {
    visibility: hidden;
    width: 250px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 15px 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
}

/* Popup arrow */
.popup .popuptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

/* Toggle this class - hide and show the popup */
.popup .show {
    visibility: visible;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
    from {opacity: 0;} 
    to {opacity: 1;}
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity:1 ;}
}