/* CSS Document */



/* FORM STYLES */

.container form {
	margin: 0;	
}
label {
float: left;
width: 150px;
font-weight: bold;
}
.story input, .story select, .story textarea {
	margin-bottom: 5px;
	border: 1px dotted #4A4A4A;
	background-color:#E6E6E6;
	color: #4A4A4A;
}
.story input:focus, .story select:focus, .story textarea:focus {
	background-color: #FFFFFF;
	border: 1px solid #4A4A4A;

}
.story textarea {
	width: 400px;
	height: 70px;
}
form em {
	font-style:italic;
	font-size: smaller;
}
fieldset {
	border: 0;
}
.story fieldset legend {
	font-size: 150%;
	color: #175A69;
	border-bottom: 1px solid #175A69;
}
form .countdown, form .countdown:focus {
	margin-bottom: 5px;
	border: 1px dotted #4A4A4A;
	background-color: transparent;
	color: #4A4A4A;
	text-align: center;
	vertical-align: middle;
	width: 25px;
}
form .example {
	font-size: 85%;
	font-style: italic;
	vertical-align: middle;
}
/* THIS IS FOR SEPERATING DIFFERENT SECTIONS IN A FORM BY A HEADLINE */ 
form h2 {
	color:#FFFFFF;
	background-color: #626262;
	border: 1px solid #000000;
	padding: 2px;
	margin-bottom: 10px;
}
form .expanded {
}
form .expanded label {
width: 250px;
}
form .expanded input {
	width: 200px;
}

.form_error, .alert {
	background-image:url(../images/structural/forms/errorback.png);
	border-top: 1px solid #df7d7d;
	border-bottom: 1px solid #df7d7d;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 5px;
	color: #FF4040;
	margin-bottom: 20px;
}
.form_error img {
	border: 0px;
	margin: 0;
	padding: 0;
	vertical-align: text-top;
}
p.error_title {
	font-weight:bold;
	margin:0;
	font-size: 125%;
}

/* BUTTONS */

.buttons a, .buttons button{
    display:block;
    float:left;
    margin:0 7px 0 0;
    background-color:#f5f5f5;
    border:1px solid #dedede;
    border-top:1px solid #eee;
    border-left:1px solid #eee;

    font-family:"Lucida Grande", Tahoma, Arial, Verdana, sans-serif;
    font-size:100%;
    line-height:130%;
    text-decoration:none;
    font-weight:bold;
    color:#565656;
    cursor:pointer;
    padding:5px 10px 6px 7px; /* Links */
}
.buttons button{
    width:auto;
    overflow:visible;
    padding:4px 10px 3px 7px; /* IE6 */
}

.buttons button[type]{
    padding:5px 10px 5px 7px; /* Firefox */
    line-height:17px; /* Safari */
}
.buttons button img, .buttons a img{
    margin:0 3px -3px 0 !important;
    padding:0;
    border:none;
    width:16px;
    height:16px;
}

/* STANDARD */

button:hover, .buttons a:hover{
    background-color:#dff4ff;
    border:1px solid #c2e1ef;
    color:#336699;
}
.buttons a:active{
    background-color:#6299c5;
    border:1px solid #6299c5;
    color:#fff;
}

/* POSITIVE */

button.positive, .buttons a.positive{
    color:#529214;
}
.buttons a.positive:hover, button.positive:hover{
    background-color:#E6EFC2;
    border:1px solid #C6D880;
    color:#529214;
}
.buttons a.positive:active{
    background-color:#529214;
    border:1px solid #529214;
    color:#fff;
}

/* NEGATIVE */

.buttons a.negative, button.negative{
    color:#d12f19;
}
.buttons a.negative:hover, button.negative:hover{
    background:#fbe3e4;
    border:1px solid #fbc2c4;
    color:#d12f19;
}
.buttons a.negative:active{
    background-color:#d12f19;
    border:1px solid #d12f19;
    color:#fff;
}