blob: 9ee3ab13991c10c2092e8fca0570e1125d26db89 (
plain)
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
|
body {
font-family:Arial, Helvetica, sans-serif;
font-size: 1em;
margin: 0;
padding: 0;
text-align: center;
background: #FFFFFF url(../images/top_bg.jpg) repeat-x top left;
}
h3 {
text-align:left;
border-bottom: 1px dotted #cccccc;
padding-left: 10px;
}
/* Header */
#header {
width: 90%;
min-height: 85px;
height: 85px;
margin: 0 auto;
padding: 0;
text-align: left;
font-size: smaller;
display: block;
}
#header h1 {
margin: 0;
padding-top: 16px;
color: #000;
font-weight: bold;
font-size: large;
}
#header p {
font-size: smaller;
color: #000;
margin: 0px;
}
/* Content */
#text-box {
width: 90%;
min-height: 85px;
height: 85px;
display: block;
margin: 0 auto;
padding: 0;
text-align: left;
font-size: smaller;
}
.error {
color: #ff0033;
font-weight: bold;
}
.notify {
border: 1px solid #cccccc;
background-color: #f4f4f4;
padding: 5px;
margin-top: 3px;
}
.content {
border: 1px solid #cccccc;
padding: 5px;
margin-top: 3px;
}
/* Table style */
td{
padding:5px;
//background-color: #D9E0E8;
font-size: smaller;
}
.align{
text-align:right;
}
/* Estilos para formas */
input, radio, select, textarea {
border: 1px solid #ddd;
background: #f2f2f2;
font: 11px verdana, sans-serif;
color: #443;
padding: 2px;
outline: none;
}
input:hover,
textarea:hover,
input:focus,
textarea:focus{
border: 1px solid #aaa;
}
/* Extras */
.ok {
font-weight:bold;
color:#009900;
margin:10px 10 10px 10px;
}
.notok {
font-weight:bold;
color:#FF3300;
margin:10px 10 10px 10px;
}
/* Bottom */
#bottom {
border-top: 1px dotted #cccccc;
margin-top: 10px;
margin-bottom: 10px;
padding:5px;
}
#bottom p {
font-size:10px;
}
|