﻿.c-form
{
   font: 12px verdana,arial,sans-serif;
   margin: 0;
   padding: 0;
   min-width: 400px;
   max-width: 600px;
   width: 410px;
   text-transform:inherit;
}
.c-form .pre-text {
     margin-top:10px;
   margin-bottom:10px;
   font-weight:bold;
}
.c-form label
{
   display: block; /* block float the labels to left column, set a width */
   float: left;
   width: 410px;
   padding: 0;
   margin: 5px 0 0; /* set top margin same as form input - textarea etc. elements */
   text-align: left;
}

.c-form fieldset label:first-letter
{
   /* use first-letter pseudo-class to underline accesskey, note that */
   text-decoration: underline; /* Firefox 1.07 WIN and Explorer 5.2 Mac don't support first-letter */ /* pseudo-class on legend elements, but do support it on label elements */ /* we instead underline first letter on each label element and accesskey */ /* each input. doing only legends would  lessens cognitive load */ /* opera breaks after first letter underlined legends but not labels */
}

.c-form input, .c-form textarea
{
   /* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
   width: 410px; /* set width of form elements to auto-size, otherwise watch for wrap on resize */
   margin: 5px 0 0 0px; /* set margin on left of form elements rather than right of                               label aligns textarea better in IE */
}

.c-form input#reset
{
   margin-left: 0px; /* set margin-left back to zero on reset button (set above) */
}

textarea
{
   overflow: auto;
}

.c-form small
{
   display: block;
   margin: 0 0 5px 160px; /* instructions/comments left margin set to align w/ right column inputs */
   padding: 1px 3px;
   font-size: 88%;
}

.c-form .required
{
   font-weight: bold;
}
/* uses class instead of div, more efficient */

.c-form br
{
   clear: left; /* setting clear on inputs didn't work consistently, so brs added for degrade */
}

.c-form .button
{
   width: auto;
   float: left;
}

.c-form .privacy
{
   float: right;
   margin: 10px 5px 0 0;
  
}

.c-form .store-db
{
   clear: both;
   float: none;
   position: relative;
   text-align:center;
}

.c-form .store-db input
{
   left: -190px;
   *left: -190px;
   position: relative;
   top: 1px;
    *top:-3px;
}

.c-form .store-db label
{
   display: block;
   margin-left: 40px;
   position: relative;
   
   top: -18px;
    *top:-25px;
}

label.error
{
   color: Red;
   font-style: italic;
   list-style-type:none;
   width:350px;
}

