/*
File Name: dg-slideshow-css.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

	Simplest jQuery Slideshow v1.0
	http://www.dreamyguy.com

	This script was modified from the original designed by Jon Raasch (jonraasch.com).
	I'm Wallace Rodrigues and you will find me at http://www.dreamyguy.com

	Released under FreeBSD license: free to use or modify, not responsible for anything, etc.  Please link out to me if you like it :)
*/

/* -----------------------------------------------------------
                      dg slideshow - begins
------------------------------------------------------------*/

#dg-slideshow {
    position: relative;
    height: 294px; /* set the height (and width) to match your images. at least height must be there. */
	width: 669px;
}

#dg-slideshow div {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 8;
    opacity: 0.0;
}

#dg-slideshow div.active {
    z-index: 10;
    opacity: 1.0;
}

#dg-slideshow div.last-active {
    z-index: 9;
}

/* -----------------------------------------------------------
                      dg slideshow - ends
------------------------------------------------------------*/
