#tlWrapper
{
	width: 630px;
	height: 100%;
	min-height: 600px;
	margin: 20px auto;
	border: 1px solid #c0c0c0;
	padding: 10px;
	
}

#newMessageInput
{
	width: 100%;
	height: 100px;
}

.submitBtn
{
	
	width: 100%;
}

.timeline_message_wrapper
{
	list-style-type: none;
	margin-top: 10px;
	padding: 0px;
}

.timeline_message_wrapper li
{
	width: 100%;
	min-height: 60px;
	border: 1px solid #e4e4e4;
	margin-bottom: 15px;
	padding: 15px;
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box; /* Firefox, other Gecko */
	box-sizing: border-box;
}

.hidden
{
	display:none;
}

.newMessage
{
	background-color:#ceffce;
}


#tickerTable
{

margin: 20px auto;
	border: 1px solid #c0c0c0;
	padding: 10px;
	border-collapse:collapse;
	width:800px;
}

#tickerTable input
{
	height:26px;
	width:100%;
	padding:0px;
}

#tickerTable td
{
	padding:5px;
}
#tickerTable th
{
	text-align:left;
	background-color:#069;
	color:white;
	padding:5px;
	font-weight:normal;
	width:100%;
}
.glyphicon-refresh-animate
	{
		-animation: spin .7s infinite linear;
		-webkit-animation: spin2 .7s infinite linear;

	}

	@-webkit-keyframes spin2 {
	from
	{
		-webkit-transform: rotate(0deg);
	}
	to
	{
		-webkit-transform: rotate(360deg);
	}
	}

	@keyframes
	spin
	{
		from {
		transform: scale(1) rotate(0deg);
	}
	to
	{
		transform: scale(1) rotate(360deg);
	}
	}