/*
File Name: wp-sss.css
Description: A very simple slideshow written for jQuery (http://www.jquery.com/)
Version: 1.0
Author: Wallace Rodrigues
Author URI: http://www.dreamyguy.com
Tags: javascript, jquery, slideshow

	WP-SimplestSlideShow v1.0
	http://www.dreamyguy.com

	I'm Wallace Rodrigues and you will find me at http://www.dreamyguy.com

 	------------ Please link out to me if you like it :) ------------

	Copyright 2009  Wallace Rodrigues  (email : i@dreamyguy.com)

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

*/

/* -----------------------------------------------------------
                      dg slideshow - begins
------------------------------------------------------------*/

#wp-sss-slideshow {
    position: relative;
/* ---- width and height are set dynamically in the plugin's options page ----*/
/*	width: 669px; */
/*	height: 294px; *//* set the height (and width) to match your images. at least height must be there. */
}

#wp-sss-slideshow div {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 8;
    opacity: 0.0;
}

#wp-sss-slideshow div.active {
    z-index: 10;
    opacity: 1.0;
}

#wp-sss-slideshow div.last-active {
    z-index: 9;
}

/* -----------------------------------------------------------
                      dg slideshow - ends
------------------------------------------------------------*/