/**
 * Styled form
 */
.styled_form
{
	width: 100%;
}

.styled_form img
{
	max-width: 150px;
	width: expression(document.body.clientWidth > 150? "150px" : "auto");
}

/**
 * P
 */
.styled_form p
{
	clear: both;
	width: 100%;
	margin: 0 0 5px 0;
}

/**
 * Label
 */
.styled_form label
{
	float: left;
	width: 150px;
	font-weight: bold;
}

/**
 * Textarea
 */
.styled_form textarea
{
	height: 100px;
	width: 350px;
}

/**
 * Span - legend
 */
.styled_form .legend
{
	margin-left: 150px;
	font-size: 0.9em;
	font-weight: normal;
	text-align: left;
}

/**
 * Second line
 */
.styled_form .second_line
{
	margin-left: 150px;
}