/*
 * jQuery Nivo Slider v2.3
 * http://nivo.dev7studios.com
 *
 * Copyright 2010, Gilbert Pellegrom
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 * 
 * March 2010
 */

/* www.jq22.com */
/* The Nivo Slider styles */
.nivoSlider
{
    position: relative;
    width: 700px;
    height: 176px;
    top: 0px;
    left: 0px;}

/* 显示正常图片 
.nivoSlider img {
	position:relative;
	top:0px;
	left:0px;
}*/
/* If an image is wrapped in a link */
.nivoSlider a.nivo-imageLink
{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    margin: 0;
    z-index: 60;
    display: none;}


/* The slices in the Slider 切片效果 */
.nivo-slice
{
    display: block;
    position: absolute;
    z-index: 20;
    height: 100%;}

/* Caption styles 标题样式
    
 
.nivo-caption {
	position:absolute;
	left:0px;
	bottom:0px;
	background:#000;
	color:#fff;
	
	width:600px;
	z-index:50;
}
.nivo-caption p {
	padding:10px;
	margin:0;
}
.nivo-caption a {
	display:inline !important;
}
.nivo-html-caption {
    display:none;
}*/


/* Direction nav styles (e.g. Next & Prev) 
   导航方向的样式，上一张和下一张的图标或字体所在图片的位置
   top：45%, 距离顶部45%的位置
 */
.nivo-directionNav a
{
    position: absolute;
    top: 20%;
    z-index: 1;
    cursor: pointer;}
.nivo-prevNav
{
    left: 0px;}
.nivo-nextNav
{
    right: 0px;}


/* Control nav styles (e.g. 1,2,3...) 数字导航 */
.nivo-controlNav a
{
    position: relative;
    z-index: 99; /*z-index 仅能在定位元素上奏效（例如 position:absolute;）！z-index 可用于将在一个元素放置于另一元素之后。*/
    cursor: pointer;}
.nivo-controlNav a.active
{
    font-weight: bold;}

/* www.jq22.com */