/* Last updated June 1, 2010. Visit http://www.pikachoose.com for FAQs and general information */

/* to get positioning out of the way */
.pikachoose ul li, .pikachoose ul li div img, .pika_main, .pika_subdiv, .pika_play a {position: relative;}
.pika_caption, .pika_play, .pika_prev_hover, .pika_next_hover {position: absolute;}

/* Begin basic Pikachoose Styles */
.pikachoose {
	width: 953px; /* width of your image including borders, padding and margin on .pikachoose ul li */
	height:326px;
	position:relative;
	} 
	
/* This is the ul you have all your images in */
.pikachoose ul {
	padding: 0;
	width: 415px; /*will fill into the width of .pikachoose, unless you want it to be something else */
	margin: 0;
	overflow: hidden;
	position:absolute;
	bottom:0;
	right:0;
	}

/*styles the thumbnails */
.pikachoose ul li {
	float: left;
	margin: 0 6px 4px 0;
	overflow: hidden;
	cursor:pointer;
	/* following is optional */
	padding: 2px;
	border: 1px solid #ccc;
	background: #f5f5f5;
	}

/* this is the surroundner for all your elements. This is also the border around the main img and room for caption */
.pika_main {
	width: 953px; /*width of your image including borders & padding */
	height: 326px; /* height of images including borders & padding*/
	display: block;
}

.pika_animationDivs {
	/* must match top/left padding for .pika_subdiv. If no padding - set to 0px. Positions images according to padding. */
	top: 0px; 
	left: 0px;
	} 

.pika_subdiv img, .pika_subdiv a img {border: none;}

/* Caption styles */
.pika_caption {
	color: #f2f2f2;
	padding: 5px;
	height: 15px;
	width: 490px; /* width of your image minus padding */
	bottom: 3px; /*adjust according to padding and borders */
	left: 3px;
	background:url('80-black.png') top left; /*semi-transparent background */
	}

.pika_caption a {color: #f2f2f2;}

/* Image navigation */
.pika_play {
	z-index:1;
	left: 50%;
	top: 50%;
	width: 46px;
	height: 46px;
	margin: -21px 0 0 -21px; /* to officially center button */
	}

.pika_play a {
	margin-left: auto;
	cursor: pointer;
	display: block;
	width:100%;
	height:100%;
	background:url('play.png') top center no-repeat;
	}

.pika_play a.pika_stop_button {background:url('pause.png') top center no-repeat;}

/* if you want to 'hide' these just make their height and width 1px */
.pika_prev_hover{
	top: 3px;
	left: 2px;
	height:100%;
	width:100px;
	background:url('prev.png') 50% left no-repeat;
	cursor: pointer;
	}

.pika_next_hover {
	top: 3px;
	right: 2px;
	height: 100%;
	width:100px;
	background:url('next.png') 50% right no-repeat;
	cursor: pointer;
	}

/* Text Navigation */

.pika_navigation {
	padding-top:10px;
	clear:both;
	text-align: right;
	cursor: pointer;
	}
	
.pika_navigation a {
	font-size: 12px; 
	text-decoration: none;
	}

.pika_navigation a:hover {text-decoration: underline;}



