/********************************************************************
 *    .: JavaScript ShowCase :.
 * < http://www.mottaweb.com.br/ >
 * 
 * @author  Quildreen <quildreen@gmail.com>
 * @version 0.1.0 beta
 * 
 * Copyright (c) 2009 Quildreen <quildreen@gmail.com>
 * 
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 *******************************************************************/

/**************
 * Showcase
 ***********/
.showcase {
    border: 3px solid #ccc;
    background: #fff;
    height: 256px;
    width: 544px;
    position: relative;
    overflow: hidden;
} .showcase-frame {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    width: 480px;
    height: 256px;
	background-color: #333;
    overflow: hidden;
    cursor: pointer;
} .showcase-icons {
    position: absolute;
    top: 0px;
    left: 480px;
    width: 64px;
    height: 256px;
    overflow: hidden;
    z-index: 1000;
} .showcase-icon {
    display: block;
    width: 64px;
    height: 64px;
    background-position: 0px 0px;
    text-decoration: none;
	border: 0;
} .showcase-icons a.selected {
    background-position: 0 -64px;
} .showcase-icon:hover {
    background-position: 0 -64px;
} .showcase-subtitle {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 470px;
    z-index: 10;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
} .showcase-shadow {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 470px;
    z-index: 9;
    font-weight: bold;
    color: #000;
    cursor: pointer;
} .showcase-description {
    position: absolute;
    top: 150px;
    left: 0px;
    width: 460px;
    height: 86px;
    padding: 10px;
    z-index: 5;
    background-color: #000;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}
.showcase-arrow-left{
	position: absolute;
	height: 100%;
	width: 70px;
	background: none;
	text-decoration: none;
	border: 0;
	z-index: 100;
	cursor: pointer;
}
.showcase-arrow-left:hover{
	background: url(../imgs/arrow.gif) no-repeat left center;
}
.showcase-arrow-right{
	position: absolute;
	height: 100%;
	width: 70px;
	left: 410px;
	background: none;
	text-decoration: none;
	border: 0;
	z-index: 100;
	cursor: pointer;
}
.showcase-arrow-right:hover{
	background: url(../imgs/arrow.gif) no-repeat -70px center;	
}

/***************
 * SlideShow
 ************/
.slideshow {
    border: 3px solid #ccc;
    background: #fff;
    height: 256px;
    width: 480px;
    position: relative;
    overflow: hidden;
	margin: 0 auto;
}
.slideshow .showcase-icons {
    display: none;
}
.slideshow .showcase-description {
    display: none;
}