#right-reserved {
	color: whitesmoke;
	text-align: left;
}

#dd-by {
	color: whitesmoke;
	text-align: right;
}

.post-tabs {
	padding: 10px;
	background: whitesmoke;
}

.highlight {
	font-size: 1.1em;
	color: white;
	background: #0a2048;
	text-align: center;
	margin: auto auto;
}

.highlight-content {
	background-color: #0a2048;
	height: 40px;
}


.footer-menu ul li {
	width: 100% !important;
}

.main-bodies{
	text-align: center;
}

.main-body-details{
	text-align: center;
	font-size: 16px;
	font-weight: bold;
}

.team-thumb{
	text-align: center;
}


.team-thumb img{
	width: 60%;
}


.marquee-container {
	overflow: hidden;
	width: 100%;
}

.marquee {
	white-space: nowrap;
	animation: marquee 20s linear infinite;
}

.marquee span {
	display: inline-block;
	padding: 0 20px;
	color: white;
}

.marquee span a {
	color: white;
	font-size: 0.8em;
}

.marquee span a:hover {
	color: #fdc800;
}


@keyframes marquee {
	0% {
		transform: translateX(100%);
	}
	100% {
		transform: translateX(-100%);
	}
}

