body {
	background-color: black;
	color: white;
	font-family: Arial;
}

body::-webkit-scrollbar {
	width: 0.4em;
	padding-left: 10px;
}

body::-webkit-scrollbar-thumb {
	background-color: white;
	border-radius: 5px;
}

/* top content */
#topContent {
    padding: 0;
    padding-top:15px;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 10%;
    overflow-y: auto;   
}

.downMenuItem {
    margin: auto;
    margin-top: 10px;
    font-size: 20px;
    height: 35px;
    text-align: center;
    cursor: pointer;
}

.menuLegend {
	font-size:12px;
}

/* main content div */

#mainContent {
    padding: 0;
    padding-top:10px;
    position: absolute;
    top: 0;
    left: 0px;
    width: 100%;
    height: 90%;
    overflow-y: auto;
}

#mainContent .row {
    margin-bottom: 20px;
}

#bottomContent {
	border-top: 1px rgba(255,255,255,0.3) solid;
	background-color: rgba(255,255,255,0.1);
	padding:0;
	padding-top:0px;
	position: absolute;
	bottom:0;
	height:10%;
	width:100%;
}

#loading {
	width: 150px;
	text-align: center;
	margin-top: 20px;
}

#tabs {
	margin-top: 5px;
}

/*override bootstrap navbar styling*/
#tabs>li>a {
	border-radius: 0;
}

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover {
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-bottom: 1px solid transparent;
	background-color: black;
	color: white;
}

a {
	color: rgba(255, 255, 255, 0.5);
}

.uptime {
	display: inline-block;
	margin-left: 3px;
}

.tweetBox {
	width: 90%;
	display: inline-block;
	background-color: rgba(255, 255, 255, 0.1);
	margin-bottom: 5px;
	margin-top: 5px;
	margin-left: 5px;
	margin-right: auto;
	word-wrap: break-word;
	padding-top: 5px;
	padding-right: 5px;
	padding-left: 5px;
	border-radius: 5px;
}

.footer {
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 10px;
	padding-bottom: 10px;
	color: rgba(255, 255, 255, 0.4);
	margin-top: 10px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	text-align: center;
}

.textContainer {
	width: 100%;
	height: 18px;
	background-repeat: repeat;
	background-size: auto;
	overflow: hidden;
	position: relative;
}

.textContainer .slidingText {
	font-size: 15px;
	position: absolute;
	height: 100%;
	margin: 0;
	text-align: center;
	/* Starting position */
	-moz-transform: translateX(100%);
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
}

/* Move it (define the animation) */
@keyframes example1 {
	0% {
		-moz-transform: translateX(10%);
		/* Firefox bug fix */
		-webkit-transform: translateX(10%);
		/* Firefox bug fix */
		transform: translateX(10%);
	}

	100% {
		-moz-transform: translateX(-100%);
		/* Firefox bug fix */
		-webkit-transform: translateX(-100%);
		/* Firefox bug fix */
		transform: translateX(-100%);
	}
}