| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 | 
							- .textbox {
 
-   position: relative;
 
-   border: 1px solid #D3D3D3;
 
-   background-color: #fff;
 
-   vertical-align: middle;
 
-   display: inline-block;
 
-   overflow: hidden;
 
-   white-space: nowrap;
 
-   margin: 0;
 
-   padding: 0;
 
-   -moz-border-radius: 5px 5px 5px 5px;
 
-   -webkit-border-radius: 5px 5px 5px 5px;
 
-   border-radius: 5px 5px 5px 5px;
 
- }
 
- .textbox .textbox-text {
 
-   font-size: 12px;
 
-   border: 0;
 
-   margin: 0;
 
-   padding: 4px;
 
-   vertical-align: top;
 
-   outline-style: none;
 
-   resize: none;
 
-   -moz-border-radius: 5px 5px 5px 5px;
 
-   -webkit-border-radius: 5px 5px 5px 5px;
 
-   border-radius: 5px 5px 5px 5px;
 
- }
 
- .textbox .textbox-prompt {
 
-   font-size: 12px;
 
-   color: #aaa;
 
- }
 
- .textbox-button,
 
- .textbox-button:hover {
 
-   position: absolute;
 
-   top: 0;
 
-   padding: 0;
 
-   vertical-align: top;
 
-   -moz-border-radius: 0 0 0 0;
 
-   -webkit-border-radius: 0 0 0 0;
 
-   border-radius: 0 0 0 0;
 
- }
 
- .textbox-button-right,
 
- .textbox-button-right:hover {
 
-   border-width: 0 0 0 1px;
 
- }
 
- .textbox-button-left,
 
- .textbox-button-left:hover {
 
-   border-width: 0 1px 0 0;
 
- }
 
- .textbox-addon {
 
-   position: absolute;
 
-   top: 0;
 
- }
 
- .textbox-icon {
 
-   display: inline-block;
 
-   width: 18px;
 
-   height: 20px;
 
-   overflow: hidden;
 
-   vertical-align: top;
 
-   background-position: center center;
 
-   cursor: pointer;
 
-   opacity: 0.6;
 
-   filter: alpha(opacity=60);
 
-   text-decoration: none;
 
- }
 
- .textbox-icon-disabled,
 
- .textbox-icon-readonly {
 
-   cursor: default;
 
- }
 
- .textbox-icon:hover {
 
-   opacity: 1.0;
 
-   filter: alpha(opacity=100);
 
- }
 
- .textbox-icon-disabled:hover {
 
-   opacity: 0.6;
 
-   filter: alpha(opacity=60);
 
- }
 
- .textbox-focused {
 
-   -moz-box-shadow: 0 0 3px 0 #D3D3D3;
 
-   -webkit-box-shadow: 0 0 3px 0 #D3D3D3;
 
-   box-shadow: 0 0 3px 0 #D3D3D3;
 
- }
 
- .textbox-invalid {
 
-   border-color: #ffa8a8;
 
-   background-color: #fff3f3;
 
- }
 
 
  |