/**

"Corporate Blue"" skin for jQuery newsticker
 
Design & code by Studio 164a

**/ 
 
 
.newsticker_wrapper {
    
    color: #fff;
    border-radius: 5px;
    -moz-border-radius: 5px;
    line-height: 30px;        
    height: 30px;
    background: #402929; /* Old browsers */
	background: -moz-linear-gradient(top,  #6d4340 0%, #402929 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#6d4340), color-stop(100%,#402929)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #6d4340 0%,#402929 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #6d4340 0%,#402929 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #6d4340 0%,#402929 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #6d4340 0%,#402929 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6d4340', endColorstr='#402929',GradientType=0 ); /* IE6-9 */
	padding:3px;

	direction:rtl;
	
    
} 

.newsticker_wrapper h4 {
    color: #ffffff;
    height: 100%;
    overflow: hidden;
    padding: 0 14px 0 11px;
    margin: 0 11px 0 0;
	background:#755144;
}

.newsticker a {
    color: #ffffff;
	text-decoration:none;
}

.newsticker a:hover {
    color: #f7d9a9;
	text-decoration:none;
}


.newsticker {
    height: 30px;
    margin: 0;
    padding: 0;    
}

.newsticker li {
    padding: 0 15px;
    list-style-type: none;
    list-style-image: none;
} 

.newsticker_controls {
    position: absolute;
    right: 15px;
    top: 0;
    list-style-type: none;
    list-style-image: none;
    z-index: 30;
    margin: 0;
    padding-left: 10px;
}

.newsticker_controls li {
    float: left;    
    height: 30px;
    background-repeat: no-repeat;
    background-color: #755144;
    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('dark/pause.png');           
}

.newsticker_controls .resume {
    background-image: url('dark/resume.png');       
}

.newsticker_controls .previous {
    background-image: url('dark/previous.png');   
    background-position: left center;
}

.newsticker_controls .next {
    background-image: url('dark/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>
*/