﻿/*
Skin Name: Nivo Slider Dark Theme
Skin URI: http://nivo.dev7studios.com
Description: A dark skin for the Nivo Slider.
Version: 1.0
Author: Gilbert Pellegrom
Author URI: http://dev7studios.com
Supports Thumbs: true
*/

/* ============================================
 NOTE - Theme spec overrides nivo-slider.css 
 */ 

/*
Background determines colour for the border
Padding determines the width of border all round the image
*/
.theme-dark.slider-wrapper {
	float:left;
    width: 980px;
	background:#019AD9;
    padding: 21px;
	padding-bottom: 0px;
	
}


/*
margin bottom sets depth of nav bar - original setting 10
Also check...

*/
.theme-dark .nivoSlider {
	position:relative;
	background:#fff url(loading.gif) no-repeat 50% 50%;
    margin-bottom:-630px; /* adjusts extended border on bottom of slider - use 'bottom' setting of controlnav to position bullets */
    overflow: visible;
	box-shadow: 0px 7px 7px rgba(0,0,0,0.3); /* drop shadow on slider images */
	-webkit-box-shadow: 0px 7px 7px rgba(0,0,0,0.3); /*css 3 shadows*/
	-moz-box-shadow: 0px 7px 7px rgba(0,0,0,0.3);
}

/*
Changes position of image relative to nav bar
*/
.theme-dark .nivoSlider img {
	position:absolute;
	top:0px;
	left:0px;
	display:none;
}

.theme-dark .nivoSlider a {
	border:10px;
	display:block;
}

.theme-dark .nivo-controlNav {
	text-align: left;
	padding: 0px 0;
	position: relative;
	z-index:10;
	bottom: -640px; /* adjusts position of bullets below slider when captions over images */
	margin-right:0px;
}


/*
Set positions of navigation buttons
Change 'display:inline-block;' to read 'display:none;'
to disable the control buttons
*/
.theme-dark .nivo-controlNav a {
	visibility:visible;
	display:inline-block;
	width:10px;
	height:10px;	
	background:url(bullets.png) no-repeat 0 2px;
	text-indent:-9999px;
	border:0;
	margin: 0 2px;
}
.theme-dark .nivo-controlNav a.active {
	background-position:0 100%;
}

/*
Added setting from default theme to put next/previous arrows on image
left and right
*/
.theme-dark .nivo-directionNav a {
	display:block;
	width:30px;
	height:30px;
	background:url(arrows.png) no-repeat;
	text-indent:-9999px;
	border:0;
	opacity: 0;
	
}

.theme-dark:hover .nivo-directionNav a { 
opacity: 1; 
}
.theme-dark a.nivo-nextNav {
	background-position:-30px 0;
	right:15px;
}
.theme-dark a.nivo-prevNav {
	left:15px;
}
/* Remove this section to make direction arrows background transparent 

.theme-dark .nivo-directionNav a:hover {
    background-color: #333;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}
*/

/*
Added lines below to control position and STYLE of CAPTION TEXT 
text-align:center;
text-indent:50px;
*/
.theme-dark .nivo-caption {
    font-size:12pt;  /* CAPTION TEXT size */
	font-family: Tahoma, Arial, Helvetica, sans-serif;
	text-align:left;
	text-indent:0px;
	padding-top:10px;
	padding-bottom:10px;
}
.theme-dark .nivo-caption a {
	color:#58257B;
	text-decoration: none;
	font-weight: normal;

}
.theme-dark .nivo-caption a:hover {
	color:#58257B;
	font-weight: normal;
	text-decoration: underline;

}

.theme-dark .nivo-controlNav.nivo-thumbs-enabled {
	width: 80%;
}
.theme-dark .nivo-controlNav.nivo-thumbs-enabled a {
	width: auto;
	height: auto;
	background: none;
	margin-bottom: 5px;
}
.theme-dark .nivo-controlNav.nivo-thumbs-enabled img {
	display: block;
	width: 120px;
	height: auto;
}
