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
|
#bigwrapper {
position:absolute;
top:54px;
width:1024px;
margin: 0 auto;
left:50%;
margin-left:-351px;
}
#regWrapper {
width: 697px;
border: 1px solid #cccccc;
background: #f5f5f5;
text-align: center;
font-size: 1.6em;
line-height: 130%;
}
#regForm {
margin: 10px auto;
display: table;
border-spacing:0 10px;
}
input {
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
.confirmbuttonlooks {
padding:4px;
border:gray solid 1px;
}
.confirmbuttonlooks:hover {
background-image: linear-gradient(to bottom,#fff,#ccc);
-webkit-box-shadow: 0px 0px 1px 1px #999;
box-shadow: 0px 0px 1px 1px #999;
}
#regForm td{
padding: 5px;
}
#buttonposition {
padding-left: 0px;
}
#regformcontenttext {
padding-top:5px;
}
#grayText {
color: red;
}
#regHeader {
font-weight: bold;
font-size: 1.1em;
padding: 20px 0 10px 0;
}
|