#loading {
    margin-left: 188px;
    width: 752px;
    width: 100px;
    height: 100px;
    position: fixed;
    top: 50%;
    left: 38%;
    background: url(/images/elements/sitewide/loading.gif) no-repeat center;
    text-align: center;
    padding: 10px;
    z-index: 2;
    overflow: auto;
}



/* Product Listing Item
--------------------------------------------------------------------------- */

ul.listing {
	list-style: none;
}
	
	.grid_3 ul.listing.grid_3, .grid_6 ul.listing.grid_6, .grid_9 ul.listing.grid_9, .grid_12 ul.listing.grid_12 {
		margin: 0;
	}

	ul.listing li {
		height: 365px;
	}
	
		ul.listing li span {
			display: block;
		}
	
		ul.listing li a {
			position: relative;
			display: block;
			margin-bottom: 0;
			text-decoration: none;
		}
			
			ul.listing li a:active {
				outline: none;
			}
			
			ul.listing li a span.image {
				height: 232px;
				overflow: hidden;
				position: relative;
				border: 1px solid #cccccc;
				border-bottom: none;
				background: url(/images/elements/sitewide/angled-lines.png) top left repeat #eee;
			}
			
				ul.listing li a span.image img {
					width: 100%;
					display: block;
				}
				
					ul.listing li.sold-out a span.image img {
						filter: alpha(opacity=30);
						opacity: 0.3;
						-webkit-transition: opacity 250ms ease-in-out;
						-moz-transition: opacity 250ms ease-in-out;
						transition: opacity 250ms ease-in-out;
					}
					
						ul.listing li.sold-out:hover a span.image img {
							filter: alpha(opacity=100);
							opacity: 1;
						}
				
				/*	Parent containers with block or metric attributes cause images in IE7 to inherit hasLayout causing
					links (with aformentioned attributes) impossible to click through. Covering the image with a different
					hasLayout element allows the wrapping link to trigger as intended. */
				
					ul.listing li a span.image span.link {	/* This background-filled overlay allows the link to be clicked */
						width: 100%;
						height: 100%;
						display: block;
						position: absolute;
						z-index: 1;
						background: url(/images/elements/blank.gif) top left repeat;
					}
				
				ul.listing li a span.overlay {
					color: white;
					float: left;
					padding: 3px 7px;
					position: absolute;
					z-index: 1;
					top: 10px; right: -1px;
					font-size: 12px;
					font-weight: bold;
					line-height: 13px;
					text-shadow: 1px 1px 0 rgba(0,0,0,0.2);
					text-transform: uppercase;
				}
				
					ul.listing li.sold-out a span.overlay {
						background-color: #333;
					}
					
					ul.listing li.new a span.overlay {
						background-color: #cd1c00;
					}
					
					ul.listing li.pre-order a span.overlay {
						background-color: #76D1FF;
					}
				
				ul.listing li a span.sizes {
					width: 100%;
					display: block;
					position: absolute;
					left: 0; bottom: -50%;
					margin: 0;
					opacity: 0;
					cursor: pointer;
					padding: 10px 0;
					text-align: center;
					text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
					background-color: #333;
					background-color: rgba(70,70,70,0.8);
					-webkit-transition: all 250ms 100ms ease-in-out;
					-moz-transition: all 250ms 100ms ease-in-out;
					transition: all 250ms 100ms ease-in-out;
				}
				
					ul.listing li a:hover span.sizes {
						bottom: 0;
						opacity: 1;
						-webkit-transition: all 250ms ease-in-out;
						-moz-transition: all 250ms ease-in-out;
						transition: all 1s 250ms ease-in-out;
					}
				
					ul.listing li a span.sizes strong {
						color: white;
						display: block;
						padding: 0 0 6px;
						font-size: 18px;
					}
					
					ul.listing li a span.sizes em {
						color: #ccc;
						display: inline-block;
						padding: 5px 10px;
						font-size: 12px;
						font-style: normal;
						text-transform: capitalize;
					}
					
						ul.listing li a span.sizes em.sold-out {
							color: #999;
							text-decoration: line-through;
						}
			
			ul.listing li a span.price {
				color: white;
				padding: 6px 0;
				font-size: 20px;
				line-height: 18px;
				font-weight: bold;
				text-align: center;
				text-shadow: 1px 1px 0 rgba(0,0,0,0.5);
				background-color: #333;
			}
				
				ul.listing li a span.price * {
					display: inline;
				}
				
				ul.listing li a span.price strong.amount {
					vertical-align: bottom;
				}
				
				ul.listing li a span.price em.was {
					vertical-align: middle;
				}
				
				ul.listing li a span.price em {
					font-size: 11px;
					padding-left: 5px;
					font-style: normal;
					border-left: 1px solid white;
				}
				
				ul.listing li a span.price sup {
					vertical-align: super;
					top: 0.2em;
				}
					
				ul.listing li a span.price sup {
					font-size: 66%;
				}
			
				ul.listing li.sale a span.price {
					text-shadow: 1px 1px 0 rgba(0,0,0,0.2);
					background-color: #cd1c00;
				}
			
			ul.listing li a span.offer {
				color: white;
				height: 12px;
				padding: 4px 0;
				font-size: 12px;
				line-height: 1em;
				font-weight: 500;
				text-align: center;
				text-shadow: 1px 1px 0 rgba(0,0,0,0.1);
				visibility: hidden;
			}
			
				ul.listing li.shipping a span.offer {
					background-color: #76d1ff;
					visibility: visible;
				}
			
			ul.listing li a span.title {
				color: #333;
				font-weight: 500;
				font-size: 14px;
				line-height: 16px;
				padding: 5px 0;
			}
			
				ul.listing li.preview a span.title {
					display: none;
				}
		
		ul.listing li small {
			color: #666;
			font-size: 11px;
			line-height: 1em;
			display: block;
			position: relative;
		}
		
			ul.listing li small a {
				display: inline;
				text-decoration: underline;
			}
			
			ul.listing li.preview small {
				display: none;
			}
		
		ul.listing li.preview {
			height: 283px;
		}



/* Listing Page Filters
--------------------------------------------------------------------------- */

#container-filter div.filter-navigation ul {
	margin: 0;
	list-style: none;
}

	#container-filter div.filter-navigation ul li {
		font-size: 11px;
		line-height: 1em;
		margin: 5px 0;
	}
	
		#container-filter div.filter-navigation ul li a {
			color: #666;
			padding-left: 15px;
			display: block;
			background: url(/images/elements/filter-navigation/checkbox.gif) no-repeat;
		}
		
			#container-filter div.filter-navigation ul li a.checkbox-enabled {
				background-position: -70px 1px;
			}
			
			#container-filter div.filter-navigation ul li a.checkbox-enabled.checkbox-selected {
				background-position: -50px -19px;
			}
			
			#container-filter div.filter-navigation ul li a.checkbox-disabled {
				background-position: -30px -39px;
			}
			
			#container-filter div.filter-navigation ul li a.checkbox-disabled.checkbox-selected {
				background-position: -10px -59px;
			}
			
			#container-filter div.filter-navigation ul li a.checkbox-selected {
				font-weight: bold;
			}

#container-filter h3, #container-filter h5 {
	line-height: 1em;
	margin-top: 30px;
	border-bottom: 1px solid #ccc;
}

	#container-filter h3 {
		padding-bottom: 7px;
		margin-bottom: 8px;
		font-size: 12px;
		font-weight: normal;
		text-transform: uppercase;
	}
	
		#container-filter h3 a {
			color: black;
		}
	
	#container-filter h5 {
		font-size: 18px;
		padding-bottom: 3px;
		margin-bottom: 4px;
	}


#container-filter dl {
	color: white;
	padding: 10px;
	margin: 20px auto 10px;
	text-align: center;
	text-shadow: 0 0 2px rgba(0,0,0,0.2);
	line-height: 1.2em;
	background-color: #cd1c00;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
	-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
	box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
}
	
	#container-filter div.filter-navigation dl a {
		color: white;
		font-weight: bold;
		text-decoration: underline;
		display: inline;
	}
	
	#container-filter dl .hide {
		display: none;
	}
	
	#container-filter dl img {
		display: block;
		margin: auto auto;
	}
	
	#container-filter dl select {
		width: 100%;
		display: block;
		border-color: #d84a36;
	}
	
	#container-filter dl dd {
		margin-top: 10px;
	}
