1body {
2/*	background	:	url("paper.jpg"); */
3	font-family	:	sans-serif;
4	font-size	:	0.9em;
5}
6
7A:visited, A:link, A:active {
8	text-decoration	:	none;
9	color		:	black;
10	background	:	transparent;
11}
12A:hover {
13	text-decoration	:	none;
14	background	:	#ff9900;
15	color		:	white;
16}
17/* normal links and paging links */
18A.link:visited, A.link:link, A.link:active, A.page:visited, A.page:link, A.page.active {
19	text-decoration	:	none;
20	color		:	blue;
21	background	:	transparent;
22}
23A.link:hover, A.page:hover {
24	text-decoration	:	none;
25	background	:	#ff9900;
26	color		:	white;
27	border		:	none;
28}
29/* resource links for resource URLs */
30A.rLink:visited, A.rLink:link, A.rLink:active {
31	text-decoration	:	none;
32	background	:	transparent;
33}
34A.rLink:hover {
35	text-decoration	:	none;
36	background	:	#ff9900;
37	color		:	white;
38	border		:	none;
39}
40/* image links */
41A.imgLink:visited, A.imgLink:link, A.imgLink:active {
42	text-decoration	:	none;
43	background	:	transparent;
44}
45A.imgLink:hover {
46	text-decoration	:	none;
47	background	:	transparent;
48}
49/*****
50*  .titleTable:  the table containing the title bar
51*****/
52.titleTable {
53	width		:	96%;
54}
55/*****
56*  .mainTable:  the table containing the main content of WIKINDX
57*****/
58.mainTable {
59	border		:	#ff9900 3px groove;
60	width		:	96%;
61	padding		:	0.2em;
62	clear		:	both;
63}
64/*****
65*  .styleTable:  the table containing administration of bibliographic styles
66*****/
67.styleTable {
68	border		:	#ff9900 1px groove;
69	width		:	100%;
70	padding		:	0.2em;
71	clear		:	both;
72}
73/*****
74*  redefine HTML headings - see /core/html/MISC.php
75*****/
76h1, h2, h3, h4	{
77	color		:	#ff9900;
78	margin		:	0 0 1em 0;
79}
80/*****
81* .error: <p>error messages</p>
82*****/
83.error {
84	background	:	red;
85	color		:	black;
86}
87/*****
88* .success: <p>success messages</p>
89*****/
90.success {
91	background	:	#33ff00;
92	color		:	black;
93}
94/*****
95*	.small: small text
96*****/
97.small, .hint {
98	font-size	:	0.8em;
99}
100/*****
101*	.hint: text hints given to provide further information usually on form input.  Often used in conjunction
102*		with .small and usually the class of <span>....</span>
103*****/
104.hint	{
105	color		:	grey;
106}
107/*****
108*	alternate background colours and font sizes for <td>resources</td> in a bibliographic list
109*****/
110.alternate1 {
111	background	:	#f8e8cc;
112/*	background	:	#f8efdf; */
113	font-size	:	0.9em;
114}
115.alternate2 {
116/*	background	:	#ede5d8; */
117	background	:	#ead9be;
118	font-size	:	0.9em;
119}
120/*****
121*	.required:	highlighting for <span>required</span> form input elements.
122*****/
123.required {
124	color		:	red;
125}
126/*****
127*	.linkHidden:	Hide 'preview' hyperlink for browsers without javascript.
128*****/
129.linkHidden {
130display:none; /* used to hide from non-JavaScript user agents */
131}