/* product_list.css - for lists of products... duh */

html {
	background: url("../img/textures/product_list_bro.jpg") repeat scroll 0 0 #303030;
}

body div#content {
    background: url("../img/textures/product_list_bro.jpg") repeat scroll 0 0 #303030;
}

#product_list_skis {
	margin: 138px 0 120px 50%;
	position: relative;
	left: -479px;
}

.list_block {
	position: relative;
	width: 958px;
}

.list_block .geometric {
	position: absolute;
	top: -128px;
	left: -135px;
    background: url(../img/misc/geometrics.png) no-repeat 0 0;
    width: 379px;
    height: 390px;
}

.copy {
	width: 208px;
	color: #949494;
	position: relative;
}


.list_block .header {
	position: absolute;
	top: 42px;
}

div.hr {
	height: 3px;
	background: url("../img/product_list/divider.png") repeat scroll center;
    -moz-box-shadow:  0 2px 0 rgba(4,5,5,0.35);
    -webkit-box-shadow: 0 2px 0 rgba(4,5,5,0.35);
    box-shadow: 0 2px 0 rgba(4,5,5,0.35);
}
div.hr hr {
	display: none;
}

.text {
    padding-top: 15px;
    font-family: proxima-nova-extra-condensed,sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    position: absolute;
    top: 127px;
    text-shadow: 0 2px 0 rgba(4,5,5,0.75);
    line-height: 24px;
    font-weight: bold;
}

.products {
	width: 570px;
	position: relative;
	left: 300px;
	margin-top: 50px;
	list-style-type: none;
}

.product_img {
	text-align: center;
	position: relative;
	margin-bottom: 25px;
}

.product_img img {
	display: inline;
	display: inline-block;
    max-width: 500px;
}

.product_img h5 {
    color: #e6e6e1;
    font-family: proxima-nova-extra-condensed, sans-serif;
    font-size: 18px;
    font-weight: 900;
    line-height: .8em;
    position: absolute;
    text-align: center;
    text-decoration: none;
    text-shadow: 0 2px 0 rgba(4,5,5,0.75);
    -webkit-mask-image: url(../img/textures/product_h1_repeat.png);
    -moz-mask-image: url(../img/textures/product_h1_repeat.png);
    mask-image: url(../img/textures/product_h1_repeat.png);
    top: 18%;
    left: 0;
    width: 100%;
    display: none;
}

.product_img a {
    text-decoration: none;
}

.product_img .view_now {
	width: 114px;
    position: absolute;
    left: 0;
    right: 0;
    text-decoration: none;
    padding-left: 0;
    padding-right: 0;
    top: 35%;
    margin-left: 50%;
    left: -57px;
    display: none;
}

.product_img a div,
.product_img a h5,
.product_img a img {
    -webkit-transition: opacity .25s ease-in;
    -moz-transition: opacity .25s ease-in;
    -o-transition: opacity .25s ease-in;
    transition: opacity .25s ease-in;
}

.product_img a:hover div {
    opacity: 1;
    text-decoration: none;
    display: block;
}

.product_img a:hover h5 {
    opacity: 1;
    text-decoration: none;
    display: block;
}

.product_img a:hover img {
    opacity: .1;
}

