/*===========================================
	DEFAULT TABLE
===========================================*/
.DefaultTable {
	background: #FFF;
	border-collapse: collapse;
	width: 100%;
	margin-bottom: 20px;
}
	
	/*	TABLE HEADER	*/
	.DefaultTable th {
		border: 1px solid #e5e6e8;
		font-size: 0.9em;
		font-weight: 700;
		padding: 6px 6px;
		vertical-align: middle;
	}		
	
	/*	TABLE ROWS	*/
	.DefaultTable tr {
		font-weight: normal;
	}
		
	.DefaultTable tr:hover td {
		background: #DEDEDE;
	}
		.DefaultTable tr:hover td a {
			color: #666B85;
		}
	 
	.DefaultTable tr:nth-child(even) td {
		background: #FFF;
	}
		.DefaultTable tr:nth-child(even):hover td {
			background: #DEDEDE;
		}
		
		
	/*	TABLE CELLS	*/
	.DefaultTable td {
		font-size: 0.9em;
		background: #F2F2F2;
		padding: 6px 6px;
		vertical-align: middle;
		border-right: 1px solid #e5e6e8;
		border-bottom: 1px solid #e5e6e8;
	}
		.DefaultTable tr td:first-child  {
			border-left: 1px solid #e5e6e8;
		}
		
		
		.DefaultTable tr td span.delivey-availability {
			cursor: pointer;
			background: #23452e;
			color: #FFF;
			padding: 2px 10px;
			-moz-border-radius: 20px;
			-webkit-border-radius: 20px;
			border-radius: 20px;
		}
			.DefaultTable tr td span.delivey-availability.Unavailable {
				background: #720000;
			}
			
			
/*===========================================
	SHOPPING CART
===========================================*/			
.ShoppingCart {
	
}			
	.ShoppingCart .DefaultTable td {
		
	}
	
	
	.ShoppingCart .ProductName {
		padding-bottom: 5px;
		font-size: 1.15em;
	}
	.ShoppingCart .ProductValue {
		font-size: 1.15em;
	}
	.ShoppingCart a {
		text-decoration: none;
		color: #222;
	}
		.ShoppingCart a:hover {
			color: #222;
		}			