@import "uni-form-generic.css";
/* Keep in mind that wherever you see 'Required property' it means that the property must exist */

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

  /* Generals */
  .registration fieldset{ width:700px;}
    .uniForm fieldset legend{ color: #333; font-weight: bold; font-size: 100%; margin: 0; padding: 1.5em 0; }
    
    /* This is the main unit that contains our form elements */
    .uniForm .ctrlHolder{ padding: 7px; border-bottom: 1px solid #dfdfdf; }
    
    .uniForm .buttonHolder{ text-align: right; }
      .uniForm .resetButton{ float: left; }
      .uniForm .primaryAction{ font-weight: bold; }
    
    /* This class gets added to div.ctrlHolder to highlight the row */
    .uniForm .focused{ background: #fffcdf; }
      
      /* .inlineLabel is used for inputs within labels - checkboxes and radio buttons */
      .uniForm .inlineLabel input,
      .uniForm .inlineLabels .inlineLabel input,
      .uniForm .blockLabels .inlineLabel input{ float: left; margin: 0 .4em 0 0; }
        .uniForm .inlineLabel span{ float: left; width: 90%; }
		
	#form-holder {border:3px solid #eeeeee;-moz-border-radius:20px 20px;}
        
/* ------------------------------------------------------------------------------ */

    /* .blockLabels (default style, will be applied even if you don't class the parent element) */
    .uniForm .blockLabels .ctrlHolder{}
      
      .uniForm label,
      .uniForm .blockLabels label,
      .uniForm .blockLabels .label{ margin: 0 0 .5em 0; }
      
      .uniForm .textInput,
      .uniForm .blockLabels .textInput,
      .uniForm .blockLabels .fileUpload{ width: 53%; /* <- Required property */ }
    
      .uniForm .selectInput,
      .uniForm select,
      .uniForm .blockLabels .selectInput,
      .uniForm .blockLabels select{ width: 53.5%; /* <- Required property */ }
      .uniForm textarea,
      .uniForm .blockLabels textarea{ width: 53%; /* <- Required property */ height: 12em; }

      .uniForm .formHint,
      .uniForm .blockLabels .formHint{ width: 45%; /* <- Required property */ font-size: .9em; color: #777; position: relative; top: -.5em; }
      
      .uniForm .multiField,
      .uniForm .blockLabels .multiField{ width: 53%; }
        .uniForm .multiField .inlineLabel,
        .uniForm .blockLabels .multiField .inlineLabel{ display: block; margin: 0 0 .5em 0; }
        .uniForm .multiField .blockLabel,
        .uniForm .blockLabels .multiField .blockLabel{ width: 30%; margin: 0 10px 0 0; }
        .uniForm .multiField .blockLabel .textInput,
        .uniForm .multiField .blockLabel .selectInput,
        .uniForm .multiField .blockLabel select,
        .uniForm .blockLabels .multiField .blockLabel .textInput,
        .uniForm .blockLabels .multiField .blockLabel .selectInput,
        .uniForm .blockLabels .multiField .blockLabel select{ width: 100%; margin: .3em 0 0 0; }

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

    /* .inlineLabels */
    .uniForm .inlineLabels .ctrlHolder{}
    
    .uniForm .inlineLabels label,
    .uniForm .inlineLabels .label{ width: 25%; /* <- Required property */ margin: .3em 2% 0 0; /* <- Required property */ }
    
    .uniForm .inlineLabels .textInput,
    .uniForm .inlineLabels .fileUpload{ width: 70%; /* <- Required property */ font: 12px verdana, sans-serif;}
    
    .uniForm .inlineLabels .selectInput,
    .uniForm .inlineLabels select{ width: 45%; /* <- Required property */ font: 12px verdana, sans-serif;}
    
    .uniForm .inlineLabels textarea{  width: 70%; /* <- Required property */ height: 12em; font: 12px verdana, sans-serif; }

    .uniForm .inlineLabels .formHint{ margin-top: 0; margin-left: 27%; font-size: .9em; color: #777; position: static; width:65%;}
	.formHint {width:70%;}
    
    .uniForm .inlineLabels .multiField{ width: 46%; /* <- Required property */ margin: 0 0 .3em 0; font: 12px verdana, sans-serif; }
      .uniForm .inlineLabels .multiField .inlineLabel{ display: block; margin: 0 0 .5em 0; }
      .uniForm .inlineLabels .multiField .blockLabel{ float: left; width: 26%; margin: 0 3% 0 0; }
      .uniForm .inlineLabels .multiField .blockLabel .textInput,
      .uniForm .inlineLabels .multiField .blockLabel .selectInput,
      .uniForm .inlineLabels .multiField .blockLabel select{ width: 110%; margin: .3em 0 0 0; }

/* Focus pseudoclasses */
.uniForm .ctrlHolder .textInput:focus{ outline: none; /* Get rid of the 'glow' effect in WebKit, optional */ }
.uniForm .ctrlHolder textarea:focus{ outline: none; /* Get rid of the 'glow' effect in WebKit, optional */ }
.uniForm div.focused .formHint{ color: #333; }

/* Columns (they are floated left by default) */
.uniForm .col{ width: 47.9%; /* <- Required property */ margin: 0 2% 20px 0; }
/* Use .first and .last classes to control the layout/spacing of your columns */
.uniForm .col.first{ width: 49%; /* <- Required property */ float: left; clear: none; }
.uniForm .col.last{ width: 49%; /* <- Required property */ float: right; clear: none; margin-right: 0; }

/* Messages */
.uniForm #errorMsg{ background: #ffdfdf; border: 1px solid #df7d7d; border-width: 1px; margin: 0 0 1.5em 0; padding: 7px; width:735px; -moz-border-radius:20px 20px;}
.uniForm .error{ background: #ffdfdf; border: 1px solid #df7d7d; border-width: 1px 0; }

  .uniForm #errorMsg dt, .uniForm #errorMsg h3{ margin: 0 0 .5em 0; font-size: 100%; line-height: 100%; font-weight: bold; color: #af4c4c; }
  .uniForm #errorMsg dd{ margin: 0; padding: 0; }
    .uniForm #errorMsg ol{ margin: 0; padding: 0; }
      .uniForm #errorMsg ol li{ margin: 0; padding: 2px; list-style-position: inside; border-bottom: 1px dotted #df7d7d; position: relative; }
    .uniForm .errorField{ color: #af4c4c; margin: 0 0 6px 0; padding: 4px; background: #ffbfbf; }

.uniForm #OKMsg{ background: #C8FFBF; border: 1px solid #A2EF95; border-width: 1px 0; margin: 0 0 1.5em 0; padding: 7px; }
  .uniForm #OKMsg p{ margin: 0; }
  
/* update Messages */

#errorMsg{ background: #ffdfdf; border: 1px solid #df7d7d; border-width: 1px; margin: 5px 5px 0 10px ; padding: 7px;}
.error{ background: #ffdfdf; border: 1px solid #df7d7d; border-width: 1px 0; }

#errorMsg dt, #errorMsg h3{ margin: 0 0 .5em 0; font-size: 100%; line-height: 100%; font-weight: bold; color: #af4c4c; }
#errorMsg dd{ margin: 0; padding: 0; }
#errorMsg ol{ margin: 0; padding: 0; }
#errorMsg ol li{ margin: 0; padding: 2px; list-style-position: inside; border-bottom: 1px dotted #df7d7d; position: relative; }
errorField{ color: #af4c4c; margin: 0 0 6px 0; padding: 4px; background: #ffbfbf; }

#OKMsg{ background: #C8FFBF; border: 1px solid #A2EF95; border-width: 1px 0; margin: 5px 5px 0 10px ; padding: 7px; }
#OKMsg p{ margin: 0; }

/*
IT IS STRONGLY ADVISED TO MAKE YOUR CHANGES AFTER THIS COMMENT BY REPEATING (COPYING) THE SELECTOR FROM ABOVE, 
AND MODIFYING IT WITH YOUR OWN PROPERTIES/VALUES. THIS IS RECOMMENDED BECAUSE IF YOU HAPPEN TO RUN INTO TROUBLE, 
YOU CAN VERY EASILY REVERT TO A GENERIC STYLE OF UNI-FORM. BEST OF LUCK... 
*/

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

.uniForm{ padding: 10px; background: #fefefe; -webkit-border-radius: 7px; width:750px; }

.uniForm .multiField, .uniForm .blockLabels .multiField{ width: 60%; }
.uniForm .formHint, .uniForm .blockLabels .formHint{ width: 48%; margin-top: .3em; }
.uniForm .textInput, .uniForm select, .uniForm textarea{ border: 2px solid #dfdfdf; background:#fff; }
.ctrlHolder.focused .textInput{ border-color: #DFD77D; }
.uniForm .buttonHolder{ padding: 10px 10px 10px 10px; font-size: 120%; margin: 1em 0;border: 1px solid #ccc; border-width: 1px 0; background: #f9f9f9; }
.registration_button {} 

.uniForm, .uniForm fieldset, .uniForm .ctrlHolder, .uniForm .formHint, .uniForm .buttonHolder, .uniForm .ctrlHolder .multiField, .uniForm .inlineLabel{ zoom:1; }
.uniForm .inlineLabels label, .uniForm .inlineLabels .label, .uniForm .blockLabels label, .uniForm .blockLabels .label, .uniForm .inlineLabel span{ padding-bottom: .2em; }
.uniForm .inlineLabel input, .uniForm .inlineLabels .inlineLabel input, .uniForm .blockLabels .inlineLabel input{ margin-top: -.3em; }

.uniForm .inlineLabels .ctrlHolder .multiField .blockLabel #city.textInput {}

.uniForm #errorMsg ol li a { color:#000; text-decoration:none;}
.uniForm #errorMsg ol li a:hover { text-decoration:underline;}

.uniForm .inlineLabels label a {color:red; text-decoration:none;}
     
.buttonHolder .passwordConfirm .password {width:100px; float:right; margin: 1px 10px 0 10px;}
.buttonHolder .passwordCofirm .passwordLabel {float:right; font-size: 60%;}
	
.form-holder {width:730px;padding:10px;}


/* changes to sell_item.php*/
input#quantity {width:40px;}
input#start_price, input#sale_price, input#postage_amount, input#insurance_amount {width:60px;}
input#end_time, input#alternate {width:120px;}
input#start_date, input#end_date, input#start_time, input#end_time {width:230px;}
textarea#description_sell, input#name_sell{width:62%;}
select#duration {width:100px;}
input#pin_value {width:100px;}
select#shipping_options {width:150px;}
p.categoryHint {margin-left:0%}
select#dim_unit, select#weight_unit{width:100px;margin:2px;}
input#length, input#width, input#height, input#weight{width:100px;}
input#c_spec, input#c_spec_val{margin:2px;}

/* changes to register.tpl.php*/
input#name, input#surname, select#countrySelect, select#stateSelect, input#city, input#zip, input#telephone, input#mobile, input#email, input#email_confirm, input#alias, input#password, input#password2 {width:220px;}
input#address, input#address2 {width:300px;}
input#terms, input#newsletter, input#min_age {margin:5px; margin-right:50px;}
.form_title {font-weight:bold;margin:5px;}
.form_para {margin:5px;}
label#t-c {}

/* changes to articles.tpl.php   */

textarea#a_description {height:50px;}
select#start_hour, select#start_min, select#end_hour, select#end_min {width:50px; margin-left:10px;}
input#www{width:300px;}
