1/**
2 * AMPS - AMule PHP Statistics
3 * Written by �berpenguin, AMPS is an adaptation of BigBob's aStats
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18 */
19
20/* Be VERY careful with this one... I'm providing it because I'm a nice guy */
21
22body.thebody
23{
24}
25
26/* High level table */
27
28table.toplevel
29{
30	width: 50%;
31}
32
33/* Top table for each section box */
34
35table.sec
36{
37	width: 100%;
38	background-color: #486591;
39}
40
41/* Lowest level table where the data is arranged */
42
43table.organize
44{
45	width: 100%;
46}
47
48/* Area where the title of each section lives */
49
50tr.secheader
51{
52	background-color: #486591;
53}
54
55/* Area where the data table is placed in each section */
56
57tr.secbody
58{
59	background-color: #e6e6e6;
60}
61
62
63/* Area where the title of each section lives */
64
65td.secheader
66{
67	color: #fefefe;
68	text-align: center;
69}
70
71/* Area where the data table is placed in each section */
72
73td.secbody
74{
75	color: #00000;
76}
77
78/* Place where the statistics are put */
79
80td.organize
81{
82	border-style: none;
83	border-width: thin;
84	background-color: #fefefe;
85}
86