/**
*
* forms
* last update 06-12-08
* mb
*
*/
@media screen, projection {
  form {
    display: inline;
  }
  form label {
    cursor: pointer;
  }
  fieldset {
    border: none;
  }
  input, select, textarea {
    font-size: 100%;
    font-family: inherit;
  }
  textarea {
    line-height: 1.25;
  }
  button {
   cursor: pointer;
  }

  /** checkboxes */
  .checkbox {
    margin: 0;
    padding: 0;
    width: auto !important;
    border: 0 !important
  }
  /** radio */
  .radio {
    margin: 0 0 -2px 0 !important;
    padding: 0;
    width: auto !important;
    border: 0 !important
  }
  /** textarea */
  .textarea {
    width: 380px;
    height: 150px;
    background: transparent;
    margin-bottom: .3em
  }
  /** upload */
  .file {
    width: auto !important;
    border: 1px solid #ccc !important;
  }

  /** form */
  .form {
  	font-size: 1.1em;
  }

  .form input,
  .form select,
  .form textarea {
  	border: 1px solid #ccc;
  	color: #000;
  	padding-left: 2px;
  	font-size: 1.1em
  }
  .form input {
  	width: 170px;
  	margin-bottom: .7em
  }
  .form select {
  	margin-bottom: .7em;
  	background: #fff;
  	color: #000;
  	height: auto;
  	font-size: 1.1em
  }
  .form label {
  	position: relative;
  	float: left;
  	width: 110px;
   	padding-top: .2em;
  }
  .form button {
   	margin-left: 110px;
  	border: 1px solid #ccc;
  	background: #fff;
  	margin-top: .3em;
  	height: auto
  }
  .form fieldset {
  	margin-bottom: 20px
  }
  .form legend {
  	font-size: 1.2em;
  	font-weight: bold;
  	padding-bottom: 0.5em;
  }
  .form br {
  	clear: left
  }
  .form em {
  	color: #fc0000;
  }
}