/*
 * Ext - JS Library 1.0 Alpha 2
 * Copyright(c) 2006-2007, Jack Slocum.
 * jack.slocum@yahoo.com
 * 
 * http://www.extjs.com/license.txt
 */

/*png*/
* html img {/*consideracao do bug para IE em relacao a transparencia de PNG = FIXADO*/
 filter:expression(
   this.alphaxLoaded ? "" :
   (
    this.src.substr(this.src.length-4)==".png"
    ?
    ((!this.complete)
     ? "" : this.runtimeStyle.filter=
      ("progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+this.src+"')")+
      (this.onbeforeprint="this.runtimeStyle.filter='';this.src='"+this.src+"'").substr(0,0)+
      String(this.alphaxLoaded=true).substr(0,0)+
      (this.src="blank.gif").substr(0,0)
    )
    : this.runtimeStyle.filter=""
   )
  );
}
/*png*/

* { margin: 0; padding: 0; /* padronizando nos navegadores */ }

img { border: 0;}
fieldset { display: block; border: 2px ridge #FFF; padding: 10px; /* padronizando nos navegadores */ }
ul, ol { margin-left: 10px; /* padronizando nos navegadores */}
input[type=hidden]{ display: none !important; visibility: hidden !important; /* esconde mesmo inputs hidden no FF */}
button { border: 1px outset #AAA;}
form button { text-align: center; margin: 5px auto; display: block; }
form ul { list-style: none; margin-left: 0; }
fieldset label { display: block;}
fieldset .radios label { display: inline; }
p { margin-top: 5px; }
li { list-style-type:none}

/* padronizando tamanhos de cabecalho em todos os browsers */
h1 { font-size: 120%;}
h2 { font-size: 105%;}
h3 { font-size: 90%;}
h4 { font-size: 80%;}
h5 { font-size: 70%;}
h6 { font-size: 60%;}