#sc-inventory-wrapper{
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
	
	flex-flow: row wrap;
	-webkit-flex-flow: row wrap;
	
    justify-content: space-around;
	-webkit-justify-content: space-around;
	
    background-color: #E6E6E6;
    border-radius: 4px;
	margin: 0 auto;
	font-size: 12px;
	padding: 2% 0 3%;
}
.sc-item-wrapper{
    -webkit-box-flex: 1 1 auto;
    -moz-box-flex: 1 1 auto;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
	
    border: 4px solid #FFFFFF;
    border-radius: 4px;
    padding: 1%;
    margin: 1% 1% 2%;
    box-shadow: 6px 6px 4px #888888;
    font-size: 100%;
    font-weight: bold;
	
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
	
	flex-flow: column nowrap;
	-webkit-flex-flow: column nowrap;

    align-items: center;
	-webkit-align-items: center;
	
    justify-content: center;
	-webkit-justify-content: center;
	
	max-width: 160px;
}
.sc-item-wrapper:hover{
    border: 4px solid #888888;
    box-shadow: none;
}
.sc-item-wrapper a{
    color: #FFF;
    text-decoration: none;
    display: block;
    text-align: center;
}
.sc-item-wrapper a:hover{
    color: #FFF;
}
.sc-item-wrapper > a > div{
    background-color: #888888;
}
.sc-title-wrapper{
    border-radius: 4px 4px 0 0;
    overflow: hidden;
}
.sc-title-wrapper span{
    margin: 0 1%;
	display: inline-block;
}
.sc-title-wrapper .sc-model{
    font-size: 1.2em;
    font-style: italic;
}
.sc-img-wrapper{
    display: block;
    overflow: hidden;
}
.sc-img-wrapper img{
    width: 94%;
    margin: 0 auto;
}
.sc-price-wrapper{
    border-radius: 0 0 4px 4px;
    font-size: 1.8em;
    line-height: 1.4em;
}
.sc-price-wrapper .sc-price-symbol{
    font-size: .7em;
    vertical-align: top
}
.sc-not-found{
    margin: 0 0 0 5%;
    color: #FE0000;
}
.sc-item-wrapper a:visited {
    color: #d1d1d1;
}
