| 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
 | html, body{margin: 0;padding:0}
body{
	font-family: Verdana,arial,sans-serif;
	font-size: 11px;
	text-align: center;
/* 	background: #93045a; */
}
td {
	font-size: 12px;
}
img {
	border:none;
}
td.editForm, td.delForm, td.associateForm, td.moveupForm, td.movedownForm {
	width:3%;
}
td.editForm input, td.delForm input, td.associateForm input, td.moveupForm input, td.movedownForm input
{
	height:30px;
}
/*alert string*/
.alert {
	font:bold 12px/1.5 Verdana,arial;
	padding:5px;
	margin:5px 5px 15px 5px;
	background:TOMATO;
	border-top:2px solid MAROON;
	border-bottom:2px solid MAROON;
	color:MAROON;
}
/*executed operation string*/
.executed {
	font:bold 12px/1.5 Verdana,arial;
	padding:5px;
	margin:5px 5px 15px 5px;
	background:#E0FFFF;
	border-top:2px solid #ADD8E6;
	border-bottom:2px solid #ADD8E6;
	color:#4169E1;
}
/*action:main*/
tr.listRow {
	background:#E6E6FA;
}
tr.listHead {
	font-weight: bold;
	background:#d1deed;
	border:1px solid #4169E1;
	border-bottom:1px solid #4169E1;
}
tr.listHead td {
/* 	font-weight: bold; */
/* 	background:#d1deed; */
	border-top:1px solid #4169E1;
	border-bottom:1px solid #4169E1;
}
.recordsBox {
	margin:10px 0px;
}
.recordsBox table {
	width:100%;
}
.listItemForm {
	margin:0px;
}
a.linkItem {
/* 	background:red; */
	font:bold 12px/1 Verdana,arial;
}
/*controller:panel
/*action:main*/
.main_box {
	padding:50px 20px;
	width:700px;
	height:250px;
}
.top_color {
	text-align:center;
	width:160px;
	height:35px;
	margin:0;
	padding:0;
}
.bottom_color {
	background:lavender;
	text-align:center;
	width:160px;
	margin:0;
	padding:5px 0;
}
 |