Styling placeholders From http://askadeveloper.com/how-to-style-html5-placeholders/
:-webkit-input-placeholder { color:#f00; } /* Chrome/Safari */
::-moz-placeholder { color:#f00; } /* Firefox */
:-ms-input-placeholder { color:#f00; } /* for IE */
input:-moz-placeholder { color:#f00; } /* Basic/default declaration */
#name::-webkit-input-placeholder { color:#00f; margin-left:20px; } /* for an input having the ID 'name' */