/* CSS 3
================================== */
/* I wanted to try out some of the 
new CSS3 features, so have separated
them into this stylesheet. I realise
the  -moz and -webkit selectors in
this file will not validate with the
W3C validator. It's not that I don't 
care about web standards, I do 
but just wanted to experiment...*/	

/* RGBa
================================== */	

.footer .contact {
	color: rgba(255,255,255,0.8);
	}
	
.links,
.links a  {
	color: rgba(255,255,255,0.5);
	}
	
/* Opacity
================================== */
	
.feature-box .portfolio-inner .text-wrapper h3 a,
.feature-box .portfolio-inner .text-wrapper h4 a {
	opacity: 0.9;
	}
	
/* Border radius
================================== */	

.feature-box,
.postmetadata-wrapper,
.comment {
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	}
	
/* Box shadow
================================== */

.main-wrapper {
	box-shadow:0 0 25px #000000;
	-moz-box-shadow:0 0 25px #000000;
	-webkit-box-shadow:0 0 25px #000000;
	}

.feature-box {
	box-shadow:	0em 1.5em 0em #000;
	-moz-box-shadow: 0em 1.5em 0em #000;
	-webkit-box-shadow: 0em 1.5em 0em #000;
	}