﻿/* Accessible News Slider : Theme Default */

/*************************************
	Height and Width values
	these are extremely important!!!
*************************************/

/* the stories ul and lis must have the same height */
div.jqans-wrapper.default .jqans-stories ul,
div.jqans-wrapper.default .jqans-stories li {
	height: 90px;
    background:#ddd;
}

div.jqans-wrapper.default .jqans-stories-selector ul,
div.jqans-wrapper.default .jqans-stories-selector li {
	height: 10px;
}

/* 
	wrapper and the container must have the same width
	in order to get this value take the width value of
	of story ".jqans-stories li" and times it by the 
	number of stories you want to initially display.
	
	113px * 4 = 428px
	
 */
div.jqans-wrapper.default,
div.jqans-wrapper.default .jqans-container {
    width:auto;
	max-width: 745px;
    text-align:left;
}

/* width value for each story li */
div.jqans-wrapper.default li {
	width: 113px;
}

/* default styles */
div.jqans-wrapper.default a {
	text-decoration: none;
	font-weight: normal;
	outline: none;
}

div.jqans-wrapper.default strong {
	color: #000;
}

/* wrapper */
div.jqans-wrapper.default {
    border:1px solid #ddd;
	margin: 0 0 32px 0;
}

/* container */
div.jqans-wrapper.default .jqans-container { 
	height: 310px; 
	text-align: center;
	padding-top: 4px;
    overflow:hidden;
}

div.jqans-wrapper.default .jqans-container a {
	font-weight: bold;
} 

/* headline */
div.jqans-wrapper.default .jqans-headline {
	text-align: left;
	margin-left: 4px;
	margin-bottom: 4px;
}

div.jqans-wrapper.default .jqans-content h1 {
	text-align: left;
	color: #333333;
	margin: 8px 4px 4px 4px;
	font-size: 16px;
}

div.jqans-wrapper.default .jqans-content p {
	text-align: justify;
	color: #666666;
	margin: 4px 20px 4px 20px;
}

div.jqans-wrapper.default .jqans-content img {
    max-width:300px;
    max-height:200px;
}

/* stories */
div.jqans-wrapper.default .jqans-stories {
	background: #f3f3f3;
}

div.jqans-wrapper.default .jqans-stories li {
	overflow: hidden;
	text-align: center;
	font-size: 11px;
	color: #000;
}
    div.jqans-wrapper.default .jqans-stories li a {
        font-size:10px;
        color:#000000;
    }

div.jqans-wrapper.default .jqans-stories li.selected {
    transition:none;
	background: #ce1c8e;
}
div.jqans-wrapper.default .jqans-stories li.selected a{
    color:#fff;
}

div.jqans-wrapper.default .jqans-stories li img {
	margin-top: 10px;
	border: 1px solid #eee;
	padding: 1px;
	background-color: #FFFFFF;
}

div.jqans-wrapper.default .jqans-stories li p {
	display: none;
}

div.jqans-wrapper.default .jqans-stories li h3 {
	margin:0;
	font-size:12px;
	font-weight:normal;
}

div.jqans-wrapper.default .jqans-stories-selector li.selected div {
	margin:auto;
	height: 0px;
	width:0px;
	line-height:1px;
	font-size:0px;
	border-right: 10px solid transparent;
	border-bottom: 10px solid #ce1c8e;
	border-left: 10px solid transparent;
    transition:none;
}

/* pagination */
div.jqans-wrapper.default .jqans-pagination {
    border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	margin: 0;
	padding: 2px 10px 0 10px;
	background: #ddd;
	text-align: left;
	clear: both;
	width: auto;
	overflow: hidden;
}

div.jqans-wrapper.default .jqans-pagination-count {
    float:right;
    direction:ltr;
    text-align:right;
}

div.jqans-wrapper.default .jqans-pagination-controls {
    float:left;
}

div.jqans-wrapper.default .jqans-pagination-controls a {
	display: inline-block;
	width: 22px;
	height: 12px;
	background: no-repeat bottom center;
    text-indent:-999px;
}

div.jqans-wrapper.default .jqans-pagination-controls-back a {
	background-image: url(next.png);
}

div.jqans-wrapper.default .jqans-pagination-controls-next a {
	background-image: url(previous.png);
}

/* addition style  */

.imgMini {
    width:82px;
    height:30px;
}

.moreInfo {
    display:inline-block;
}
    .moreInfo:before {
        content:'» ';
    }
    .moreInfo:hover {
        color:#ff0000;
    }