ul.marquee {
	/* required styles */
	display: block;
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 3;
	position: relative;
	overflow: hidden;

	/* optional styles for appearance */
	width: 100%;
	height: 30px; /* height should be included to reserve visual space for the marquee */
}

ul.marquee li {
	/* required styles */
	cursor : pointer;
	position: absolute;
	top: -999em;
	left: 0;
	display: block;
	white-space: nowrap; /* keep all text on a single line */
	/* optional styles for appearance */
	font: 14px Arial, Helvetica, sans-serif;
	padding: 5px;
	color:white;
}

    #marquee_popup{
        position:fixed;
        top:0px;
        left:0px;
        display:none;
        z-index:10002;
        height:100%;
        width:100%;
        background-color:rgba(0,0,0,0.8);
    }
    #marquee_popup .marquee_content{
        height:auto;
        max-width:440px;
        width:95%;
        margin:auto auto;
        padding:10px;
        border-radius:5px;
        background-color:white;
        box-shadow: 0 1px 5px rgba(255,255,255,0.8);
        color:black;
    }