1
2table.timetable
3{
4	position		: static;
5	width			: 95%;
6	padding			: 0px;
7	margin			: 0px;
8	top				: auto;
9	left			: auto;
10	bottom			: auto;
11	right			: auto;
12	border-style	: none;
13	border-width	: 1px;
14	border-color	: #C0C0C0;
15	border-collapse	: collapse;
16	empty-cells		: hide;
17	font-family		: "Arial";
18	font-style		: normal;
19	font-weight		: bold;
20	font-size		: 10pt;
21	background-color: transparent;
22}
23
24table.timetable th
25{
26	width			: 48px;
27	border-style	: solid;
28	border-width	: 1px;
29	font-weight		: bold;
30	text-align		: center;
31	color			: black;
32	background-color: #EEEEFF;
33}
34
35table.timetable td
36{
37	width			: auto;
38	border-style	: solid;
39	border-width	: 1px;
40	font-weight		: bold;
41	text-align		: center;
42	color			: black;
43	background-color: transparent;
44}
45
46table.timetable td.dummy
47{
48	border				: 0px;
49	background-color	: transparent;
50}
51
52table.timetable td.empty
53{
54	background-color	: transparent;
55}
56
57table.timetable td.prefetch
58{
59	background-color	: #6666FF;
60}
61
62table.timetable td.fetch
63{
64	background-color	: #6699FF;
65}
66
67table.timetable td.decode
68{
69	background-color	: #6699FF;
70}
71
72table.timetable td.exec
73{
74	background-color	: #99FF99;
75}
76
77table.timetable td.post
78{
79	background-color	: #99FF99;
80}
81
82table.timetable td.drop
83{
84	background-color	: #999999;
85}
86
87table.timetable td.flow
88{
89	background-color	: #FFFF99;
90}
91
92table.timetable td.read
93{
94	background-color	: #CCFFCC;
95}
96
97table.timetable td.write
98{
99	background-color	: #00FF00;
100}
101
102table.timetable td.stall
103{
104	background-color	: #999999;
105}
106
107table.timetable td.wait
108{
109	background-color	: #CCCCCC;
110}
111
112table.timetable td.cancel
113{
114	background-color	: #33CC33;
115}
116
117table.timetable td.NOP
118{
119	background-color	: #CCCCCC;
120}
121
122table.timetable td.ADD
123{
124	background-color	: #99CCFF;
125}
126
127table.timetable td.MUL
128{
129	background-color	: #CC99FF;
130}
131
132table.timetable td.EXP
133{
134	background-color	: #33CCFF;
135}
136
137table.timetable td.FLOOR
138{
139	background-color	: #FF99FF;
140}
141
142table.timetable td.LOG
143{
144	background-color	: #33CCFF;
145}
146
147table.timetable td.MAX
148{
149	background-color	: #FF99FF;
150}
151
152table.timetable td.MIN
153{
154	background-color	: #FF99FF;
155}
156
157table.timetable td.MOV
158{
159	background-color	: #CCFFFF;
160}
161
162table.timetable td.MOVA
163{
164	background-color	: #CCFFFF;
165}
166
167table.timetable td.RCP, table.timetable td.RSQ
168{
169	background-color	: #CC66CC;
170}
171
172table.timetable td.SGE
173{
174	background-color	: #FF99FF;
175}
176
177table.timetable td.SLT
178{
179	background-color	: #FF99FF;
180}
181
182table.timetable td.CMP
183{
184	background-color	: #FFCC00;
185}
186
187table.timetable td.LITP
188{
189	background-color	: #FF99FF;
190}
191
192table.timetable tr
193{
194	background-color: transparent;
195}
196