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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
@charset "UTF-8";
/* CSS Document */
@font-face {
font-family: 'PT Sans';
font-style: normal;
font-weight: normal;
src: local('PT Sans'), local('PTSans-Regular'), url('http://themes.googleusercontent.com/static/fonts/ptsans/v2/7YGmE4Ls5b94ct65u07hVQLUuEpTyoUstqEm5AMlJo4.woff') format('woff');
}
body {
padding-top: 20px;
font-family: 'PT Sans', sans-serif;
background-image: linear-gradient(bottom, rgb(245,245,245) 66%, rgb(239,239,239) 83%);
background-image: -o-linear-gradient(bottom, rgb(245,245,245) 66%, rgb(239,239,239) 83%);
background-image: -moz-linear-gradient(bottom, rgb(245,245,245) 66%, rgb(239,239,239) 83%);
background-image: -webkit-linear-gradient(bottom, rgb(245,245,245) 66%, rgb(239,239,239) 83%);
background-image: -ms-linear-gradient(bottom, rgb(245,245,245) 66%, rgb(239,239,239) 83%);
background-image: -webkit-gradient(
linear,
left bottom,
left top,
color-stop(0.66, rgb(245,245,245)),
color-stop(0.83, rgb(239,239,239))
);
}
.mainshell {
width: 98%;
margin: auto;
}
.gradBox {
width: 98%;
margin: auto;
}
.myclear {
clear: both;
height: 20px;
}
.centerbox {
text-align:center;
min-height: 45px;
}
.rightbox {
text-align:right;
}
.innerBox {
width: 100%;
margin-top: 20px;
}
.tt {
font-family: "courier new",courier,monospace;
font-size: 13px;
}
.cl {
text-decoration:none;color:black;
}
.cHead {
font-size:large;
font-weight:bold;
}
.innerBoxTop {
height: 28px;
color: #000000;
font-weight: bold;
font-size: 16px;
padding-left: 20px;
padding-top: 11px;
border: 1px solid #b6b6b6;
border-top-left-radius: 6px;
border-top-right-radius: 6px;
-moz-border-radius-topleft: 6px;
-moz-border-radius-topright: 6px;
-webkit-border-top-left-radius: 6px;
-webkit-border-top-right-radius: 6px;
border-bottom: 1px solid #dcdcdc;
background-image: linear-gradient(bottom, rgb(246,246,246) 31%, rgb(234,234,234) 83%);
background-image: -o-linear-gradient(bottom, rgb(246,246,246) 31%, rgb(234,234,234) 83%);
background-image: -moz-linear-gradient(bottom, rgb(246,246,246) 31%, rgb(234,234,234) 83%);
background-image: -webkit-linear-gradient(bottom, rgb(246,246,246) 31%, rgb(234,234,234) 83%);
background-image: -ms-linear-gradient(bottom, rgb(246,246,246) 31%, rgb(234,234,234) 83%);
background-image: -webkit-gradient(
linear,
left bottom,
left top,
color-stop(0.31, rgb(246,246,246)),
color-stop(0.83, rgb(234,234,234))
);
}
.innerBoxMiddle {
border: 1px solid #b6b6b6;
border-bottom-left-radius: 6px;
border-bottom-right-radius: 6px;
-moz-border-radius-bottomleft: 6px;
-moz-border-radius-bottomright: 6px;
-webkit-border-bottom-left-radius: 6px;
-webkit-border-bottom-right-radius: 6px;
border-top: 0px hidden;
background-color: #FFFFFF;
min-height: 500px;
height: auto;
padding-top: 21px;
padding-right: 2px;
}
.innerBoxComments {
padding-left: 20px
}
label span {
width: 6%;
float: left;
}
label input {
display: block;
}
|