﻿/* -------------------------------------------------------------- 
   
   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
   
-------------------------------------------------------------- */
label       {color:#000; line-height:1.5em; font-size:1em; font-weight:bold;}


/* Form fields
-------------------------------------------------------------- */

input.text, input.title,
textarea,  input.inputtext {  
  border:1px solid #999;
  background:#fbfbfb !important;
  width:96%;
  
}

input.inputtext2 {  
  border:1px solid #999;
  background:#fbfbfb;
  width:96%;
}

select  
{	
  border:1px solid #999;
  background:#fbfbfb !important;
  width:99%;
}

.search input, .search input.text, .search input.title,.search textarea,  .search input.inputtext,  .search input.inputtext2
{
	width:96%;
}

input.inputlogintext {  
  border:1px solid #999;
  background:#fbfbfb;
  font-size:2em;
  width:99%;
  margin-top:.5em;
  margin-bottom:.625em;
}

form .submit.right {text-align:right; margin-top:0;}
form .submit input 
{
	background: #21759B repeat-x scroll left top;
	border:1px solid #298CBA;
	color:white;
	font-weight:bold;
	cursor:pointer;
	font-size:1.16em;
	margin-top:-3px;
	padding:3px 10px;
	text-decoration:none;
}

form .button input 
{
    /*
	background: white repeat-x scroll left top;
	border:1px solid black;
	color: black;
	font-weight:bold;
	cursor:pointer;
	font-size:1.16em;
	margin-top:-3px;
	padding:3px 10px;
	text-decoration:none;
    */
}

/* Success, notice and error boxes
-------------------------------------------------------------- */


.notice, 
.success    { padding: 5px; margin-bottom: 1em; border: 2px solid #ddd; }

.error      { color: #8a1f11; }
.notice     { background: #FFF6BF; color: #514721; border-color: #FFD324; }
.success    { background: #E6EFC2; color: #264409; border-color: #C6D880; }
.error a    { color: #8a1f11; }
.notice a   { color: #514721; }
.success a  { color: #264409; }