/* liScroll styles */
@media only screen and (min-width: 1200px){
	.tickercontainer { /* the outer div with the black border */
	margin: 0; 
	margin-top:15px;
	padding: 0;
	overflow: hidden; 
	}

	ul.newsticker { /* that's your list */
	position: relative;
	font: bold 1.1em Verdana;
	list-style-type: none;
	margin: 0;
	padding: 0;
	width:1000%;
	}
	ul.newsticker li {
	float: left; /* important: display inline gives incorrect results when you check for elem's width */
	margin: 0;
	padding: 0;

	}
	ul.newsticker a {
	white-space: nowrap;
	padding: 0;
	color: #ff0000;
	font: bold 1.1em Verdana;
	margin: 0 50px 0 0;
	} 
	ul.newsticker span {
	margin: 0 20px 0 0;
	} 
}

@media only screen and (min-width: 601px) and (max-width: 1199px){ /* Tablettes*/
	.tickercontainer { /* the outer div with the black border */
	margin: 0; 
	margin-top:5px;
	padding: 0;
	overflow: hidden; 
	}

	ul.newsticker { /* that's your list */
	position: relative;
	font: bold 0.8em Verdana;
	list-style-type: none;
	margin: 0;
	padding: 0;
	width:1000%;
	}
	ul.newsticker li {
	float: left; /* important: display inline gives incorrect results when you check for elem's width */
	margin: 0;
	padding: 0;
	color:#fff;
	}
	ul.newsticker a {
	white-space: nowrap;
	padding: 0;
	color: #ff0000;
	font: bold 0.8em Verdana;
	margin: 0 50px 0 0;
	} 
	ul.newsticker span {
	margin: 0 20px 0 0;
	} 
}

@media only screen and (max-width: 600px){ /* Mobiles */
	.tickercontainer { /* the outer div with the black border */
	margin: 0; 
	margin-top:5px;
	padding: 0;
	overflow: hidden; 
	}

	ul.newsticker { /* that's your list */
	position: relative;
	font: bold 0.8em Verdana;
	list-style-type: none;
	margin: 0;
	padding: 0;
	width:1000%;
	}
	ul.newsticker li {
	float: left; /* important: display inline gives incorrect results when you check for elem's width */
	margin: 0;
	padding: 0;
	color:#fff;
	}
	ul.newsticker a {
	white-space: nowrap;
	padding: 0;
	color: #ff0000;
	font: bold 0.8em Verdana;
	margin: 0 50px 0 0;
	} 
	ul.newsticker span {
	margin: 0 20px 0 0;
	} 
}
