/* should this be moved below? */
input[type="button"] {
  background: none;
  color:#120d07;
  text-decoration:none;
  border-width:0 0 1px 0;
  border-bottom:1px dotted #120d07;
  font-size: 1em;
}

/********** CSS FOR NORMAL HTML FORMS ****************/
/* currently, this effects quickrate as well as the main site,
      eg, http://localhost:8000/Main/quickrate/edit_node/30/
          http://localhost:8000/Main/add_review/190/
   to effect only quickrate, either move this code to quickrate.css
   or make use of an id or class that only appears in quickrate extension, 
   either to wrap all content or just forms */
 
 /* Blunt backgrounds and borders were added for Feb 09 development.
    They can be removed (not just commented out) when done. */
 
  form label { text-align: left; color:#097A21; font-family:Geneva,"MS Sans Serif",sans-serif; font-size:12.5px; font-weight:normal; }
  form table label { text-align: left; /*color:purple;*/ font-family:Geneva,"MS Sans Serif",sans-serif; font-size:12.5px; font-weight:normal; }
  form input[type="text"] { color:#000000; font-family:Georgia,serif; font-size:13.5px; font-weight:normal; padding: .2em .5em; }
  form input[type="password"] { color:#000000; font-family:Georgia,serif; font-size:13.5px; font-weight:normal; padding: .2em .5em; }
  form input[type="submit"] { /*background: black;*/ }
  form input[type="img"] { background-color:#FFFFFD; border:medium double #FBFAE9; }
  form textarea { color:#000000; font-family:Georgia,serif; font-size:13.5px; font-weight:normal; padding: .5em .5em;}
  form select { /*background: green;*/ }

  /* .form_prompt and .form_entry are probably duplicates with above form elements 
     (label for the former and input, textarea, select for the latter) */
  form .form_prompt {}
  form .form_entry {}
  form .form_help { font-size: .9em; float: right; color:#000000;}
  form .form_error { color: red; font-size: .8em; }
 
  /*
  form #id_label { border: 3px solid pink; }
  form #id_description { border: 3px solid purple; }
  form #id_dimension { border: 3px solid yellow; }
  form #id_skip { border: 3px solid cyan; }
  form #id_flag { border: 3px solid blue; }
  */

/********** OLD SKOOL <table class="form"> ***********
       This is used for account forms such as login, register, change password.
       It only appears in html form in template helpers/table_form.html
       however, it gets rendered many times throug macros.py and account.py
                                           ***********/
table.form { margin:auto; }
  table.form tr { margin:5px; }
  	table.form td { padding: 3px; }
    table.form tr td ul.errors { width: 100%; background-color: #FFC0C0; margin:0; padding:0; }
  table.form tr.description { text-align:center; }
    
  table.form td.label { width:20%; vertical-align:top; }
    table.form td.label label { font-size:1.1em; font-weight:bold; }
  
  table.form tr th.field { width:80%; text-align:left; }
    table.form td.field p.error {  }
    table.form td.field p.help {  }
    table.form td.field .type_text, table.form td.field .type_password { width:95%; }
    table.form td.field .type_select { width:50%; }

/*********** END <table class="form"> ************************/

/* i'm pretty sure un-used now that browse page revamped
table.filters { width:90%; margin:auto; }
  table.filters tr th { border-bottom:1px solid #888888; }
  table.filters tr th { font-size:1.2em; }
  table.filters tr td.label { font-size:1em; }
  table.filters tr td.current { font-size:0.9em; }
  table.filters tr td.select { font-size:1em; }
    table.filters tr td.select select { width:150px; }

dl.brief { text-align:left; }
dl.brief dt { font-size:1.2em; font-weight:bold; }
dl.brief dd {  }
*/

/****** AJAX BUTTONS ******/
input[type="button"].ajax_button { cursor: pointer; margin: 0px 4px 0px 4px; border-right: 1px dotted #555; }
input[type="button"].fright { float:right; }
input[type="image"] { border:0; }

/*
input[type="button"].new { }
input[type="button"].edit { background: #ffff88; }
input[type="button"].delete { background: #ff8888; }
*/

