/* Basic style */

body {
	color: black;
	background: #CCCCCC
}


/* Publications list */

H2 { counter-reset: my-list-order; }

OL.articles LI {
    counter-increment: my-list-order;
    list-style-type: none;
    text-indent: -3.0ex; /* should be (LI:before:) -(width + margin-right) */
}

OL.articles LI:before {
    display: inline-block;
    text-align: right;
    margin-right: 1.5ex;
    width: 1.5ex; /* increase if more than 99 items */
    content: counter(my-list-order) ". ";
}

UL.abstracts {
	font-size: small
}

LI {
	margin-top: 1ex;
	margin-bottom: 0.5ex
}

UL.bookchapters LI {
	margin-top: 0ex;
	margin-bottom: 0ex
}


/* Footer style */

P.footer {
	margin-top: 1em;
	font-size: 71%
}


/* Link style */

A {
	text-decoration: none
}

A:link {
	color: blue;
	background: transparent
}

A:visited {
	color: #663399;
	background: transparent
}

A:hover {
	text-decoration: underline
}

A:active {
	color: red;
	background: transparent
}

