/*------------------------------*\
	Placeholder plugin
\*------------------------------*/





/*
CSS by Harry Roberts -- @csswizardry
Built to accompany the placeholder plugin built by Dan Bentley -- @dan_bentley

github.com/danbentley/placeholder

*/





/*--- FORMS ---*/
/*
This is the bit you need.

label{
	position:absolute;
	left:-9999px;
}
input,
textarea{
	font:inherit;
	resize:none;
}
*/




/*--- THE MAGIC ---*/
/*
This is the best bit!

[placeholder]{
	padding:5px;
	border:1px solid #999;
	
	-moz-border-radius:2px;
	-webkit-border-radius:2px;
	border-radius:2px;
}
[placeholder]:active,
[placeholder]:focus{
	cursor:text;
	border:1px solid #0a0;
}*/