@charset "UTF-8";
/**
 * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
 *
 * (en) CSS-component for creating vertical forms
 * (de) CSS-Baustein zur Erstellung von Formularen mit untereinander angeordneten Elementen
 *
 * @note            Many thanks to Ansgar Hein (http://www.anatom5.de) for contribution
 *
 * @copyright       Copyright 2005-2009, Dirk Jesse
 * @license         CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/),
 *                  YAML-C (http://www.yaml.de/en/license/license-conditions.html)
 * @link            http://www.yaml.de
 * @package         yaml
 * @version         3.1
 * @revision        $Revision: 343 $
 * @lastmodified    $Date: 2009-01-19 23:41:32 +0100 (Mo, 19. Jan 2009) $
 */

@media all
{
 
 form label {
 display: inline-block;
 width: 150px;
 vertical-align: top;
 
 }
 .contactFormClass_text {
 	padding: 3px;
 	border-color: #a9a9a9;
 	border-width: 1px;
 	border-style: solid;
 	width: 300px;
 }
 .contactFormClass_select {
 	padding: 3px;
 	border-color: #a9a9a9;
 	border-width: 1px;
 	border-style: solid;
 	width: 300px;
 }
 .contactFormClass_textarea {
 	padding: 3px;
 	border-color: #a9a9a9;
 	border-width: 1px;
 	border-style: solid;
 	width: 300px;
 }
legend {
 	display: none;
 }
fieldset {
 	margin: 0px;
 	padding: 0px;
 	border-style: none;
 }
form {
 	margin-top: 10px;
 	padding-bottom: 15px;
 	padding-top: 15px;
 	
 }
input.contactFormClass_button {
 	margin-left: 150px;
 }
table.contact tr td {
 	padding-left: 0px;
 	padding-bottom: 0px;
 	padding-right: 15px;
 	padding-top: 0px;
 	border-style: none;
 }

}

