1/*	$Id: syntax_plugin_deflist.css,v 1.1 2007/08/01 08:57:31 matthias Exp $
2	Cascading Style Sheet for Definition List syntax plugin
3	Copyright (C) 2005, 2007  M.Watermann, D-10247 Berlin, FRG
4	EMail : <support@mwat.de>
5
6	NOTE:
7		This file is _not_ used by DokuWiki!
8		It is provided for informational purposes only.
9		If you want to change the styling rules either change the settings
10		in the file "style.css" or rename this file to "style.css".
11*/
12dl {
13	font-size:	1em;
14	margin:		0.5ex 0 0.5ex 1ex;
15	padding:	0.5ex 0 0.5ex 1ex;
16}
17dl dt {			/* emphazise the definition term */
18	font:		105% "Book Antiqua", "Bitstream Vera Serif", Times, serif;
19	font-weight:	bolder;
20	margin:		0.5ex 0 0 0;
21}
22dl dt a,
23dl dt a:hover {
24	/* don't emphazise local anchors */
25	text-decoration:	none;
26}
27dl dd {
28	margin:		0 0 0 2ex;
29	text-align:	justify;
30}
31dl dd dl {
32	margin:		0;
33	padding:	0;
34}
35dl dd p {
36	padding:	0;
37	text-indent:	0;
38}
39/* _EoF_ */
40