/* ------------------------------------------------------------------------------
 <> NewVoiceForm.css
    Author:   Erik Burns
    Version:  8 January 2008
    ------------------------
    Styles the input box, title, and go button for adding a new voice to VoiceFire.
-------------------------------------------------------------------------------- */
.newvoice {
  position: relative;
  display: block;
  height: 68px; width: 850px;
  background: #fff url(/skins/VF/images/newvoice_bg.gif) repeat-x 0 0;
  }

/* ------------------------------------------------------------------------------
   ... Title for the input box that reads "Voice Something New"
/* ------------------------------------------------------------------------------ */
.newvoice h3 {
  position: absolute; top: 10px; left: 16px;
  display: block;
  height: 15px; width: 173px;
  padding: 0; margin: 0;
  background: url(/skins/VF/images/newvoice_title.gif) no-repeat 0 0;
  }

/* Dwyer Method Image Replacement
   http://mezzoblue.com/tests/revised-image-replacement/ */
.newvoice h3 span {
  display: block;
  height: 0; width: 0;
  overflow: hidden;
  }

/* ------------------------------------------------------------------------------
   ... Input form element styles
/* ------------------------------------------------------------------------------ */
.newvoice input.text {
  position: absolute; top: 10px; left: 10px;
  display: block;
  width: 610px; /* Tiny Cycloid Hack */ width: "626px";
  padding: 9px 7px 7px 9px;
/*   padding: 12px 3px 12px 7px; */
  /* Tiny Cycloid Hack so IE 5.5 doesn't clip the height of the input backgrounds */ padding: "2px 3px 1px 7px";
  background: url(/skins/VF/images/newvoice_input.gif) no-repeat 0 center;
 /* Fix an IE scrolling bug with replaced form backgrounds */
  _background-attachment: fixed !important;
  border: 0;
  font-size: 145%; font-weight: bold; font-family: Verdana, Arial, Helvetica, sans-serif;
  color: #aaa;
  }

/* TODO: We need to make this solution work with Safari too, which it probably currently does not */

/* ------------------------------------------------------------------------------
   ... Submit Button Link
/* ------------------------------------------------------------------------------ */
.newvoice a.submit {
  position: absolute; top: 13px; left: 643px;
  display: block;
  height: 39px; width: 197px;
  background: url(/skins/proto/images/newvoice_button_go2.gif) no-repeat 0 0;
  }

/* Disabled for prototype
.newvoice input.submit {
  position: absolute; top: 12px; left: 646px;
  display: block;
  height: 39px; width: 194px;
  background: url(/skins/VF/images/newvoice_button_go.gif) no-repeat 0 0;
  border: 0;
  }
*/

/* Temporary styles for the prototype */
.newvoice input.submit {
  position: absolute; top: 12px; left: 646px;
  display: block;
  height: 39px; width: 194px;
  }


/* Dwyer Method Image Replacement
   http://mezzoblue.com/tests/revised-image-replacement/ */
.newvoice a.submit span {
  display: block;
  height: 0; width: 0;
  overflow: hidden;
  }

/* ------------------------------------------------------------------------------
   ... Posting Guidelines Link
/* ------------------------------------------------------------------------------ */
.newvoice .guidelines {
  display: block;
  position: absolute;
  top: -2px;
  right: 6px;
  height: 15px;
  text-decoration: none !important;
  text-align: center;
  color: #0064BF !important;
  width: 200px;
  font-size: 65%;
/*  background: url(/skins/proto/images/newvoice_qbutton.gif) no-repeat 0 0; */
  background: none;
  }
  
