body {
	font-family: Georgia, "Times New Roman", Times, serif;
	background: #333333;
	color: #999999
}


h1, h2, h3 {
	text-align: center
}

h3, dl, ul, p {
	width: 600px;
	margin-left: auto;
	margin-right: auto
}

h3 {
	margin-top: 40px;
}

dl {
	margin-top: 10px;
}

dt {
	margin: 10px 0 0 0
}

dd {
	margin: 0 0 10px 0
}

a  {
	color: #FFFFFF
}

a.bottom {
	color: #666666
}

.fl {
	color: #FFFFFF;
}

#titlea {
	text-align: center;
	font-size: 1.5em;
}

#titleb {
	text-align: center;
	font-size: 1.2em
}

#titlec {
	text-align: center;
	font-size: .8em
}

#small {
	width: auto;
	font-size: .5em;
	margin-top: 50px;
	margin-left: 10px;
	margin-right: 10px
}

#smallish {
	width: auto;
	font-size: .7em;
	margin-top: 10px;
	margin-left: 10px;
	margin-right: 10px;
	text-align: center
}

.tab { 
	text-indent:40px 
}

#container{
width: 600px; 
margin: 0 auto;

}
div#container2 {
	width: 400px;
	margin: 0 auto;
}

.clear {
    clear:both;
 } 

div.img {
    margin: 5px;
    padding: 5px;
    width: 180px;
    float: left;
    text-align: center;
}   

div.img img {
    display: inline;
    margin: 5px;
}

div.desc {
  text-align: left;
  font-weight: normal;
  margin: 5px;
}

div.desc2 {
  text-align: center;
  font-weight: normal;
  margin: 5px;
}

.right {
	float: right;
	margin: 10px 5px;
	
}

.left {
	float: left;
	margin: 1px 10px;
	
}

#container3 {
	width: 710px;
	margin: 0 auto;
}

/* Container styles */
.scrolling-text-container {
    background-image: url("images/bgdarkwater.gif");
    border-radius: 30px;
    overflow: hidden;
}

/* Inner container styles */
.scrolling-text-inner {
    display: flex;
    white-space: nowrap;
    font-size: 10px;
    font-weight: 600;
    padding: 12px 0;
}

/* Text styles */
.scrolling-text {
    display: flex;
}

.scrolling-text-item {
    padding: 0 30px;
}

/* Apply the animation to the text items */
.scrolling-text-inner>div {
    animation: var(--direction) var(--marquee-speed) linear infinite;
}

/* Pause the animation when a user hovers over it */
.scrolling-text-container:hover .scrolling-text-inner>div {
    animation-play-state: paused;
}

/* Setting the Animation using Keyframes */
@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0%);
    }
}