/* -------------------------------------------------------------- 
   
   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
   
-------------------------------------------------------------- */



/* Form fields
-------------------------------------------------------------- */

input.text, input.title,
textarea, select {
  font-size: 1.25em;
}

input.submit
	{
		font-size:1.5em;
		margin-top:1em;
	}
	
body
	{
		border-top:10px solid navy;
		padding-top:20px;
		padding-left:50px;
	}

p, li
	{
		font-size:14px;
	}
	
.small 
	{
		line-height:1.5em;
	}
	
h1
	{
		font-size:2.5em;
	}

h2
	{
		font-size:22px;
		margin-bottom:.25em;
	}
	
#errorlist
	{
		color:red;
	}
	
.error      { color:red;background:none;border:none; margin:0;padding:0; }
