@charset "utf-8";
/* CSS Document */

/*********************
 VIEW CART
********************/
#viewCart{
	position: absolute;
	top: 0;
	right: 60px;
	z-index: 20;
	font-size: 11px;
	line-height: 18px;
}

	/* Light Cart */
	.lightCart{}
	
		.lightCart a{
			background: #FFF url(../images/viewCartBg-light.png) top left repeat-x;
			border: #fff solid;
			border-width: 0 1px 1px;
			-moz-border-radius-bottomleft: 5px; 
			-webkit-border-bottom-left-radius: 5px; 
			-moz-border-radius-bottomright: 5px; 
			-webkit-border-bottom-right-radius: 5px; 
			padding: 2px 10px 4px;
			display: block;
			-moz-box-shadow:0 0 5px #FFF;
			text-decoration: none;
		}
	
			.lightCart a span{
				color: #000;
				text-decoration: none;
				background:url(../images/basket-light.png) top right no-repeat; 
				padding: 0 25px 0 0;
				height: 16px;
				line-height: 18px;
				display: block;
				text-align: left;
			}
			
				.lightCart a:hover{
					background: #fff;
				}
				
					.lightCart a:hover span{
					}

	/* Dark Cart */
	.darkCart{}
	
		.darkCart a{
			background: transparent url(../images/viewCartbg-dark.png) top left repeat-x;
			border: #5b5b5b solid;
			border-width: 0 1px 1px;
			-moz-border-radius-bottomleft: 5px; 
			-webkit-border-bottom-left-radius: 5px; 
			-moz-border-radius-bottomright: 5px; 
			-webkit-border-bottom-right-radius: 5px; 
			padding: 2px 10px 4px;
			display: block;
			-moz-box-shadow:0 0 5px #5b5b5b;
			text-decoration: none;
		}
	
			.darkCart a span{
				color: #fff;
				text-decoration: none;
				background:url(../images/basket-dark.png) top right no-repeat; 
				padding: 0 25px 0 0;
				height: 16px;
				line-height: 18px;
				display: block;
				text-align: left;
			}
			
				.darkCart a:hover{
					background: transparent url(../images/viewCartbg-darkhover.png) top left repeat-x;
				}
				
					.darkCart a:hover span{
					}
