/*######################################################################
#                          Form Replacer                               #
########################################################################
#       Autor:        Frank Herrmann                                   #
#       Homepage:     www.codeking.eu                                  #
########################################################################
# This program is free software; you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation; either version 3 of the License, or    #
# (at your option) any later version.                                  #
#                                                                      #
# This program is distributed in the hope that it will be useful,      #
# but WITHOUT ANY WARRANTY; without even the implied warranty of       #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        #
# GNU General Public License for more details.                         #
#                                                                      #
# You should have received a copy of the GNU General Public License    #
# along with this program; if not, see <http://www.gnu.org/licenses/>  #
# or write to the                                                      #
# Free Software Foundation, Inc.,                                      #
# 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.            #
#######################################################################*/

  span.checkbox_on, span.checkbox_off {
    display: block;
    width: 16px; height: 16px;
    background: url(./images/checkbox_on.gif) no-repeat;
    cursor: pointer;
  }
  span.checkbox_off { background-image: url(./images/checkbox_off.gif) }
        
  span.radio_on,
  span.radio_off {
    display: block;
    width: 16px; height: 16px;
    background: url(./images/radio_on.gif) no-repeat;
    cursor: pointer;
  }
  span.radio_off { background-image: url(./images/radio_off.gif) }
        
  span.select {
    position: absolute;
  	width: 175px; height: 21px;
    margin: 0 auto;
    padding-left: 15px; padding-top: 3px;
  	color: #111; font-size: 12px;
    background: url(./images/select.gif) no-repeat;
  	display: block; 
    overflow: hidden; 
    text-align: left;
  }
  
  select { position: relative; width: 190px; height: 21px; padding: 0; border: 0; z-index: 5; right: 0; }