/* CSS Main Stylings for AGGases Website */
/*copyright 2011*/

/*-----------------Content section----------------*/
#content-section
{
}

.product-group
{
	clear:both;
}
.product-text
{
	float:left;
	vertical-align:top;
	width:550px;
}
.imgLink
{
	float:right;
	vertical-align:top;
	position: relative;
	margin:-20px 80px 20px 0;
}
.imgLink img
{
	width:290px;
	height:220px;
	cursor:pointer;
	
	box-shadow: 0px 0px 12px #BBB;
	-moz-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.3);
	
	-webkit-transition: -webkit-box-shadow 0.3s ease-in-out;  
   -moz-transition: -moz-box-shadow 0.3s ease-in-out; 
   -o-transition: box-shadow 0.3s ease-in-out; 
   transition: box-shadow 0.3s ease-in-out; 
}
.imgLink img:hover
{
	-webkit-box-shadow: 0px 0px 19px 1px rgba(0, 10, 50, 0.3);
	-moz-box-shadow: 0px 0px 19px 1px rgba(0, 10, 50, 0.3);
	box-shadow: 0px 0px 19px 1px rgba(0, 10, 50, 0.3);
	
	-webkit-transition: -webkit-box-shadow 0.3s ease-in-out;  
   -moz-transition: -moz-box-shadow 0.3s ease-in-out; 
   -o-transition: box-shadow 0.3s ease-in-out; 
   transition: box-shadow 0.3s ease-in-out; 
}
.imgLink-title
{
	position:absolute;
	width:100%;
	bottom:0px;
	background:#333;
	background:rgba(0, 0, 0, 0.53);
}
.imgLink-title h2
{
	position:absolute;
	width:100%;
	bottom:0px;
	text-align:center;
	background:#333;
	background:rgba(0, 0, 0, 0.53);
}
.imgLink-title a
{
	display:block;
	padding-top:8px;
	height:35px;
	font-size:18px;
	font-weight:100;
	color:#DEDEDE;
	text-decoration:none;
}
.imgLink-title a:hover
{
	text-decoration:underline;
	color:#fff;
}
