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
|
.br_table {
width: 100%;
border:1px solid navy;
border-collapse:collapse;
background-color:white;
}
.br_th {
border:1px solid navy;
color: navy;
background-color: #ffffcc;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
font-weight: bold;
text-align: left;
padding: 2px;
}
.br_td {
border-right:1px solid navy;
border-left:1px solid navy;
vertical-align: text-top;
font-family: Arial, Helvetica, sans-serif;
font-size: 10px;
text-align: left;
padding: 2px;
}
.br_heading {
width: 110px;
height: 16px;
}
.plat_heading {
width: 80px;
height: 16px;
}
.ua_heading {
height: 16px;
overflow: hidden;
}
.br_cell {
width: 110px;
height: 14px;
}
.plat_cell {
width: 80px;
height: 14px;
}
.ua_cell {
overflow: hidden;
height: 14px;
}
.tr0
{
background-color:#efefef;
}
.tr1
{
background-color:white;
}
|