/* -------------------------------------------------------------- 
   
   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       {
	line-height: 2;
}
fieldset    {
	background-color: #ededee;
	display: block;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	clear: both;
	width: 550px;
	padding: 0em;
	margin: 0em;
}
legend      {
	font-family: Georgia, "Times New Roman", Times, serif;
	display: block;
	font-size: 18px;
	color: #636466;
	line-height: 1.8em;
	position: relative;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
}
legend span {
	background-color: #dbdbdc;
	display: block;
	position: relative;
	width: 540px;
	padding-left: 10px;
}

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

input.text,input.title,
textarea, select, input.checkbox {
	border:1px solid #bbb;
	margin: 0em;
}
input.text:focus, input.title:focus,
textarea:focus, select:focus, input.checkbox {
  border:1px solid #666;
}

input.text, 
input.title   {
	padding:5px;
	width: 98%;
}
input.title   { font-size:1.5em; }
textarea      {
	width: 98%;
	padding:5px;
}




/* Success, notice and error boxes
-------------------------------------------------------------- */

.error,
.notice, 
.success    { padding: .8em; margin-bottom: 1em; border: 2px solid #ddd; }

.error      { background: #FBE3E4; color: #8a1f11; border-color: #FBC2C4; }
.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; }
.form p {
	margin-top: 0.5em;
	margin-right: 1em;
	margin-bottom: 0.5em;
	margin-left: 1em;
}
p.uploadFile {
	display: block;
	width: 400px;
	float: left;
	margin-top: 2em;
	margin-bottom: 2em;
}
p.uploadFile .text {
	width: 275px;
}

p.submitbtn a 
  {
	background-image: url(../images/btn-submit.png);
	background-repeat: no-repeat;
	background-position: center center;
	height: 63px;
	width: 62px;
	display: block;
	float: right;
	text-indent: -9999px;
	margin-top: 0.5em;
	margin-bottom: 2em;
	cursor:pointer;
}
p.formOptions {
	display: block;
	clear: both;
	float: none;
	margin-top: 2em;
	margin-bottom: 2em;
}

p.formOptions .option1 {
	display: block;
	float: left;
}
p.formOptions .option2 {
	display: block;
	float: right;
}
p.captcha {
	display: block;
	clear: both;
	text-align: center;
	float: none;
	padding: 5px;

}

body.blogPostpage    p.submitbtn  {
	display: block;
	width: 100%;
}
body.blogPostpage p.submitbtn a {
	display: block;
	text-align: center;
	height: 63px;
	width: 62px;
	float: none;
	margin-right: auto;
	margin-left: auto;
}
.closebtn {
	background-image: url(../images/btn-close.gif);
	background-repeat: no-repeat;
	background-position: center center;
	display: block;
	height: 24px;
	width: 24px;
	position: absolute;
	right: 0px;
	top: -50px;
}
.closebtn a {
	display: block;
	text-indent: -9999px;
	height: 24px;
	width: 24px;
}

