1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
|
body{
font-family: sans-serif;
color: #000;
background-color: #FFF;
border: 0;
margin: 0;
padding: 0;
}
.title{
font-weight: bold;
font-size: 24px;
padding-left: 4px;
}
.logo{
width: 70px;
height: 40px;
}
.nowrap{
white-space: nowrap;
}
div.main{
display:block;
position:absolute;
overflow:auto;
height:auto;
width:100%;
top:4.5em;
bottom:2.3em;
left:0em;
right:0em;
border-top: 1px solid #CCC;
background-color: white;
z-index:1;
}
div.header{
position:absolute;
top: 0px;
left: 0px;
width:100%;
border:0;
margin:0;
font-size: 200%;
font-weight: bold;
}
h2.section-title {
font-weight: bold;
line-height: 1.1;
color: #800000;
padding-bottom: 0;
margin-bottom: 0;
clear:left;
}
div.section{
padding-left: 20px;
}
table.data{
background-color: #eee;
}
table.data th, table.data td.header{
background-color: #666;
color : #fff;
font-weight: bold;
font-size: 14px;
padding: 10px;
text-align: center;
}
table.data td{
background-color: #ddd;
font-size: 14px;
text-align: right;
padding: 10px;
}
center {
text-align: center
}
.title-level-3 {
text-align: left;
font-size: 14px;
font-weight: bold;
}
.notice{
font-weight: bold;
font-size:12px;
font-style: italic;
}
.small-italic{
font-size:12px;
font-style: italic;
}
td.left{
text-align: left;
}
td.right{
text-align: right;
}
|