/**
jQuery newsticker
**/ 

.demo {
  margin-top: 2em;
  margin-bottom: 3em;
  width: 860px;
  margin: 0px auto;  
  position: relative;
}


.wrapper {
  width: 100%;
  background-color: #00A4FF;
}
 
.newsticker_wrapper {
    font: 14px Arial, Helvetica, sans-serif;
    color: #fff;    
    line-height: 43px;        
    height: 43px;
    background-color: #00A4FF;
    -webkit-text-size-adjust: none;
} 

.newsticker_wrapper h4 {
    color: transparent;
    height: 40px;
    overflow: hidden;
    padding: 0 14px 0 11px;
    margin: 0 11px 0 0;
    font-style: italic;
    background: transparent url('/storage/upload/ptga/images/newsticker/title_separator.png') no-repeat 100% 6px;
	width: 20px;
}

.newsticker a {
    color: white;
}

.newsticker a:hover, .events a:hover {
    text-decoration:underline;
}

.newsticker b {
    color: #fff46f;
}

.newsticker {
    margin: 0;
    padding: 0;    
}

.newsticker li {
    padding: 0 15px;
    list-style-type: none;
    list-style-image: none;
} 

.newsticker_controls {
    position: absolute;
	right: 15px;
	top: 5px;
	list-style-type: none;
	list-style-image: none;
	background-color: #00A4FF;
	z-index: 30;
	margin: 0;
	padding-left: 10px;
}

.newsticker_controls li {
    float: left;    
    height: 30px;
    background-repeat: no-repeat;
    background-color: #00A4FF;
    cursor: pointer;
}

.newsticker_controls .previous,
.newsticker_controls .next {
    width: 12px;
}

.newsticker_controls .pause,
.newsticker_controls .resume {
    width: 13px;
    padding: 0 10px;
    background-position: center;
}

.newsticker_controls .pause {
    background-image: url('/storage/upload/ptga/images/newsticker/pause.png');           
}

.newsticker_controls .resume {
    background-image: url('/storage/upload/ptga/images/newsticker/resume.png');       
}

.newsticker_controls .previous {
    background-image: url('/storage/upload/ptga/images/newsticker/previous.png');   
    background-position: left center;
}

.newsticker_controls .next {
    background-image: url('/storage/upload/ptga/images/newsticker/next.png');   
    background-position: right center;
}

.newsticker_style_reveal .newsticker li {
    left: 15px !important;
}

/* Reveal */
.newsticker_style_reveal .newsticker li {
    left: 15px !important;
}

/* Scroll */
.newsticker_style_scroll .newsticker li {
    margin-right: 80px;
    padding: 0;
}

.newsticker_scroller {
    margin: 0 10px;
}



/*
THE MARKUP:

<div class="newsticker_wrapper">
	<h4>The Latest</h4>
	<ul class="newsticker">
		<li>Lorem ipsum dolor sit amet, consectetur adipisicing elit...</li>
		<li>Lorem ipsum dolor sit amet, consectetur adipisicing elit...</li>
		<li>Lorem ipsum dolor sit amet, consectetur adipisicing elit...</li>
		<li>Lorem ipsum dolor sit amet, consectetur adipisicing elit...</li>
		<li>Lorem ipsum dolor sit amet, consectetur adipisicing elit...</li>
	</ul>
</div>
*/