@charset "utf-8";
/* CSS Document */


	

.productShowcase {
	position: relative;
    overflow: hidden;
    height: 340px;
}
	
	.productShowcase .product a {
		color: #D80;
	}
	
.productShowcase li, .productShowcase ul  {
	margin: 0;
	padding: 0;
	list-style: none;
}

	.productShowcase .product {
		height: 64px;
		display: block;
		position: relative;
		margin: 1px;
		padding: 10px 8px;
		background-color: #fff;
		overflow: hidden;
		line-height: 1.4em;
        width: 92%;
	}

        .productShowcase .product:hover {
            background-color: #F0F6FF;
        }
		
	
		.productShowcase .product .image {
			float: left;
		}
	
		.productShowcase .product .details{
			padding-left: 72px;
			font-size: 12px;
		}
	
		.productShowcase .product .name{
			margin-bottom: 4px;
			font-weight: bold;
			color: #D80;
		}
		
	
	
		.productShowcase .product .options {
			display: none;
		}
	
		.productShowcase .product:hover .options {
			position: absolute;
			display: block;
			bottom: 10px;
			right: 8px;
		}
		
		.productShowcase .product .options a {
                    margin-bottom: 2px;
		}
		
		.productShowcase .product .options a:last-child {
			color: #c00;
		}

.productShowcaseContainer {
    position: relative;
}

.productShowcaseContainer .navigationUp {
    position: absolute;
    top: 0;
    right: 0;
}

.productShowcaseContainer .navigationDown {
    position: absolute;
    bottom: 0;
    right: 0;
}

/*
--------------------------------------------------------------------------------
Quando showcase está vazio
--------------------------------------------------------------------------------
*/

.productShowcaseContainer .emptyProductShowcase {
    line-height: 1.6em;
    padding-top: 10px;
}
.productShowcaseContainer .emptyProductShowcase .title {
    font-family: Verdana;
    position: absolute;
    width: 230px;
    top: 18px;
    left: 145px;
    font-size: 16px;
    color: #888;
}
.productShowcaseContainer .emptyProductShowcase .subtitle {
    position: absolute;
    width: 230px;
    top: 70px;
    left: 145px;
    font-size: 14px;
}


.productShowcaseContainer .emptyProductShowcase .addButton {
    position: absolute;
    left: 102px;
    top: 74px;
}

