/* do a custom counter to match each question header */
ol.faqlist
{
	counter-reset: cnt;
}

ol.faqlist > li
{
	/* start clean with a new FAQ item - no floating */
	clear: both;
	float: left;

	/* strip the list styling */
	list-style: none;
	margin: 10px 0;
	padding: 0;

	/* increment the counter */
	counter-increment: cnt;
	
}

/* style the counter and the question headers to match */
ol.faqlist > li:before
{
	content: counter(cnt)".";
}

ol.faqlist > li:before,
ol.faqlist h3
{
	/* put everything on one line */
	display: inline-block;
	
	font-size: 16px;
	font-weight: bold;
	padding: 0 2px;	
	margin: 0;
}

ol.faqlist > li h3 + h3
{
	margin-left: 40px;
}

.addresslist {
	margin: 0;
	list-style-type: none;
}

.addresslist li {
	margin: 10px;
	float: left;
	width: 45%;
}

p.toplink
{
	margin: 0;
	text-align: right;
	font-size: 10px;
	clear: both;
}

ol#faqtoc
{
	list-style: upper-roman;
}

ol#faqtoc > li
{
	margin: 10px 0;
}

ol#footnotes 
{
	border-top: 1px solid black;	
}
ol#footnotes li
{
	margin: 10px 0;
}

ol#footnotes p
{
	margin: 0;
	margin-left: -30px;
	font-weight: bold;
}

.faqlinklist li
{
	padding: 5px 0;
}

#workshopslist li
{
	margin-bottom: 10px;
}