/* -------------------------------------------------------------- 
   
   forms.css
   * Sets up some default styling for forms
   * Gives you classes to enhance your forms
   
   Usage:
   * For text fields, use class .title or .text
   
-------------------------------------------------------------- */




input
{
	font-size: 13px;
}
input[type="text"]
{
	background: url(/images/layout/button_gradient.jpg) top left repeat-x;
	border: 1px solid #B6C7CC;
	margin: 0.5em 0.5em 0.5em 0;
}
/* Can't just tack onto the class above as it effects rendering in
   other parts of the site  :/ */
.inputTypePassword
{
	background: url(/images/layout/button_gradient.jpg) top left repeat-x;
	border: 1px solid #B6C7CC;
	margin: 0.5em 0.5em 0.5em 0;
}



