1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- TABLE {
- font-size : 10pt;
- color : #404040;
- background-color: #fafafa;
- border-collapse: collapse;
- border-spacing : 0px;
- }
- TH {
- font-size : 10pt;
- text-align:center;
- background-color: #99CCCC;
- border: 1px #000000 solid;
- font-family: Verdana;
- font-weight: bold;
- font-size: 12px;
- color: #404040;
- }
- TD {
- border-bottom: 1px #6699CC dotted;
- text-align: left;
- font-family: Verdana, sans-serif, Arial;
- font-weight: normal;
- font-size: 10px;
- color: #404040;
- background-color: #fafafa;
- padding-top: 4px;
- padding-bottom: 4px;
- padding-left: 8px;
- padding-right: 4px;
- white-space : nowrap;
- }
- .link {
- border-bottom: 1px #6699CC dotted;
- text-align: left;
- font-family: Verdana, sans-serif, Arial;
- font-weight: normal;
- font-size: 10px;
- color: #2020D0;
- background-color: #fafafa;
- padding-top: 4px;
- padding-bottom: 4px;
- padding-left: 8px;
- padding-right: 4px;
- white-space : nowrap;
- cursor : pointer;
- cursor : hand;
- }
|