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

/*-----------------Content section----------------*/
#introduction-section
{
	margin-bottom:35px;
}
#introduction-section img
{
	width:180px;
	height:auto;
	float:left;
	vertical-align:top;
	margin:-0px 10px 0px 0px;
	box-shadow: 0 0 10px #666;
}

.content-column
{
	clear:both;
	display:inline-block;
	vertical-align:top;
	width:290px;
	margin: 0px 30px 0px 0px;
	text-align:left;
	
	/* For IE 7 */
	zoom: 1;
	*display: inline;
	
}
.content-column.right
{
	margin-right:0;
}
.content-column-imgLink
{
	position:relative;
	margin-bottom:20px;
	width:290px;
}
.content-column-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; 
}
.content-column-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; 
}
.corner-triangle 
{
	position: absolute;
	top: -1px;
	left: -1px;
	width: 38px;
	height: 42px;
	background: url("../img/corner-triangle.png") no-repeat;
}
.content-column-title h2
{
	position:absolute;
	width:100%;
	bottom:0px;
	text-align:center;
	background:#333;
	background:rgba(0, 0, 0, 0.53);
}
.content-column-title a
{
	display:block;
	padding-top:8px;
	height:35px;
	font-size:18px;
	font-weight:100;
	color:#DEDEDE;
	text-decoration:none;
}
.content-column-title a:hover
{
	text-decoration:underline;
	color:#fff;
}

#pic-shadow-bottom
{
	position:absolute;
	height:30px;
	width:1000px;
	top:230px;
	left:0;
	z-index:100;
}
#pic-shadow-bottom img
{
	width:1000px;
}