|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201 |
- body
- {
- background-color: #fff;
- color: #555;
- font-family: Helvetica, Arial, sans-serif;
- font-size: 100%;
- width: 100%;
- line-height: 1.5em;
- margin: 0;
- padding: 0;
- }
-
- .warning {
- padding: 10px 15px;
- background-color: #fcfcfc;
- margin: 25px 0;
- }
-
- p
- {
- font-size: 110%;
- }
-
- #main
- {
- width: 920px;
- margin: 50px auto;
- }
-
- tr.footer {
- border-top: 1px solid #eee;
- border-bottom: 0px solid black;
- }
-
- tr.header {
- border-bottom: 1px solid #eee;
- }
-
- #header
- {
- font-size: 100%;
- /* background-color: #e8f3f4; */
- color: #999;
- text-align: left;
- margin: 0 0 0px 0;
- height: 100%;
- }
-
- #header_inner {
- margin: 0 auto;
- padding: 10px 0;
- width: 930px;
- }
-
- #header h1 {
- font-size: 180%;
- color: #555;
- }
-
- .grant {
- color: green;
- }
-
- .refuse {
- color: red;
- }
-
- a
- {
- padding: 1px 4px;
- color: #999;
- text-decoration: none;
- }
-
- a:visited
- {
- padding: 1px 4px;
- color: #111;
- text-decoration: none;
- }
-
- a:hover
- {
- background-color: #4f4f4f;
- color: #fff;
- }
-
- h1
- {
- margin: 40px 0;
- line-height: 1.4em;
- font-weight: bold;
- color: #555;
- }
-
- h2
- {
- margin: 20px 0 0 0;
- line-height: 1.5em;
- font-weight: bold;
- color: #555;
- }
-
- h3
- {
- margin: 30px 0 0 0;
- line-height: 1.5em;
- font-weight: bold;
- color: #555;
- }
-
- .highlight
- {
- background-color: #e8f3f4;
- }
-
- strong
- {
- color: #000;
- }
-
- table
- {
- border-collapse: collapse;
- margin: 20px 0 60px 0;
- }
-
- td, th
- {
- padding: 6px;
- }
-
- th {
- font-weight: bold;
- text-align: left;
- font-size: 0.8rem;
- text-transform: uppercase;
- }
-
- tr
- {
- border-bottom: 1px solid #eee;
- }
-
- nav
- {
- font-size: 85%;
- margin: 0 0 0 0;
- }
-
- .right
- {
- text-align: right;
- }
-
- .noborder
- {
- border: 0;
- }
-
- #notice {
- background-color: green;
- color: white;
- padding: 10px 20px;
- }
-
- .button, .button a, .button a:visited {
- background-color: green;
- color: white;
- padding: 5px 10px;
- margin: 10px 0;
- }
-
- .menu {
- margin: 0;
- padding: 0;
- }
-
- .menu li {
- list-style-type: none;
- display: inline;
- margin: 20px 0;
- padding: 0 10px 0 0;
- }
-
- @media print {
- .noprint, #footer, .nav, nav
- {
- display: none;
- }
-
- body
- {
- margin: 0 auto;
- color: black;
- }
-
- a, a:visited {
- background-color: #fff;
- }
- }
|