/* --------------------------------------------------------------

   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
   * For inline forms, use .inline (even when using columns)

-------------------------------------------------------------- */

label       { font-weight: bold; }
fieldset    { padding: 1em; border: 0 none; }
legend      { font-weight: bold; font-size:1.2em; }


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

#promotion input[type=text], #promotion input[type=password], #promotion input[type=file], #promotion textarea, #promotion select {
  background-color: #E56A68;
  border: 2px solid #E56A68;
  font-family: Arial, Helvetica, sans-serif; 
  font-size: 12px;
  color: #fff;
}
#promotion input[type=text]:focus, #promotion input[type=password]:focus, #promotion textarea:focus, select:focus {
  border-color: #fff;
}

textarea { width: 300px; height: 200px; padding: 4px 2px; margin: 2px 0 20px 10px; }

input[type=checkbox], input[type=radio],
input.checkbox, input.radio {
  position:relative; top:.25em;
}

#promotion .c_red {
	background: #da2926;
	padding: 10px;
}
#promotion form h3 {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 8px;
}
#promotion form label {
	display: block;
	text-align: right;
	width: 170px;
	height: 20px;
	float: left;
}
#promotion form label span {
	color: #EFA6A4;
	display: block;
	font-size: 11px;
	font-weight: normal;
	text-align: right;
	width: 170px;
	margin: 0;
}
#promotion form input {
	float: left;
	font-size: 12px;
	padding: 5px 2px;
	width: 240px;
	margin: 2px 0 20px 10px;
}
#promotion form button {
	float: right;
	margin-right: 30px;
	width: 103px;
	height: 24px;
	line-height: 31px;
	border: 0 none;
	background: url(../images/site/article/pse.gif) no-repeat left top;
	cursor: pointer;
}

/* Contact form */
#contact_form {
	padding-top: 12px;
	width: auto;
	height: 324px;
	background: url(../images/site/box_left/bg_contact.gif) no-repeat left top;
	position: relative;
}
#contact_form form fieldset {
	padding: 0px;
}
#contact_form  h3 {
	margin-left: 30px;
	margin-bottom: 8px;
}
#contact_form div {
	padding-bottom: 8px;
	overflow: hidden;
}
#contact_form form label {
	display: block;
	text-align: right;
	width: 94px;
	padding-right: 6px;
	padding-top: 5px;
	height: 20px;
	float: left;
}
#contact_form form label.error {
	position: absolute;
	right: -40px;
	visibility: hidden;
	
}
#contact_form form input {
	float: left;
	font-size: 12px;
	padding: 2px 5px 2px 5px;
	width: 232px;
	height: 20px;
	margin: 0px;
	color: #fff;
	border: 0 none;
	background: url(../images/site/box_left/bg_in.jpg) no-repeat left top;
	font-family: Arial, Helvetica, sans-serif;
}
#contact_form form textarea {
	float: left;
	font-size: 12px;
	padding: 2px 5px 2px 5px;
	width: 232px;
	height: 138px;
	margin: 0px;
	background: url(../images/site/box_left/bg_ta.jpg) no-repeat left top;
	border: 0 none;
	font-family: Arial, Helvetica, sans-serif;
	color: #fff;
}
#contact_form form button {
	float: right;
	margin-right: 30px;
	width: 76px;
	height: 24px;
	line-height: 24px;
	border: 0 none;
	background: url(../images/site/box_left/pos.gif) no-repeat left top;
	cursor: pointer;
}
#nl_form {
	padding-top: 20px;
	padding-bottom: 20px;
}
#nl_form div {
	background: url(../images/site/box_left/bgnl.gif) no-repeat left top;
	width: 298px;
	height: 27px;
	padding-left: 40px;	
}
#nl_form input#email {
	background: none;
	width: 262px;
	height: 27px;
	float: left;
	border: 0 none;
	padding: 0px;
	margin: 0px;
	text-align: right;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #fff;
	font-weight: bold;
}
#nl_form button {
	width: 27px;
	height: 27px;
	float: right;
	background: none;
	border: 0 none;
	cursor: pointer;
	
}
/* 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; }
