/* 
    Document   : newsScroller
    Created on : 11-Mar-2010, 11:53:05
    Author     : Antony
    Description:
        Purpose of the stylesheet follows.
*/

/* 
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/


   http://www.devdude.com/tools/js/vertical_ticker/index.pl
*/


        #ticker-container {
            position:relative;
            overflow:hidden;
            width: 300px;
            height: 56px;
            /*background-color: ;*/
            background-repeat: repeat;
            padding: 0px;
            /*border: 1px dotted #0099cc;*/
        }

	#ticker {
            visibility:hidden; /*turned on with javascript*/
            position:relative;
            width:255px;
            /*border: 1px dotted red;*/
            padding: 0px;
            margin: 0px;
            margin-left:4px;

            color: #e6effa;
	}

	#ticker ul {
            padding: 0px;
            margin:0px;
            list-style-type:none;
}
	#ticker ul li {
            display:list-item;
            margin-top: 1px;
            margin-bottom: 1px;
            padding-top: 1px;
            padding-bottom: 1px;
            font-family: arial;
            font-size: 10pt;
            font-weight: normal;
            /*color: #e6effa;*/
            padding-left: 2px;
	}

	#ticker a { /* ul li */
            font-family: arial;
            font-size: 9pt;
            font-weight: bold;
            color: #76ade4;
            text-decoration: none;
            padding-left: 2px;
	}

        #ticker a:hover { /* ul li */
            font-family: arial;
            font-size: 9pt;
            color: #bae3f9;
            text-decoration: none;
            padding-left: 2px;
        }



