/* span.helpFloat contains the data shown on mouseover
   for download links. */
span.helpFloat {
	position: relative;
}
/* Floating box, starts invisible. */
span.helpFloat span {
	display: none;
	position: absolute;
	top: 1em;
}
/* Hide the inline punctuation. */
span.helpFloat span b {
	display: none;
}
/* Make the floating box appear on mouseover. */
span.helpFloat:hover span {
	display: table;
	padding: 4px 4px 4px 4px;
}
/* Display the lines one per row */
span.helpFloat span em {
	display: table-row;
}
/* Background color for help box */
span.helpFloat:hover,
span.helpFloat span {
	background: #FFC;
}

/* div.content contains the page content on the right
   side. */
.content {
	margin-left: 8.5em;
	font-family: sans-serif;
	max-width: 40em;
}

body {
	background: #EEE;
	margin: 0;
	padding: 0;
	border: none;
}

/* Areas under construction are marked with the fixme class. */
.fixme {
	color: #B44;
	quotes: "\00AB" "\00BB";
	text-transform: uppercase;
}
.fixme:before {
	content: open-quote;
}
.fixme:after {
	content: close-quote;
}

/* ul.tabs contains the list of page links on the left. */
.tabs {
	border-right: 1px solid #00F;
	float: left;
	font-family: Verdana, sans-serif;
	width: 8em;
	margin: 0;
	padding: 0;
	height: 20em;
}
.tabs li {
	text-align: right;
	list-style: none;
	margin-top: .7em;
}
.tabs li a {
	background: #447;
	border: 1px solid #00F;
	border-right: none;
	margin-right: -1px;
	padding: 1px .2em;
	text-decoration: none;
}
.tabs li a:link {
	color: #FFF;
}
.tabs li a:visited {
	color: #EEE;
}
.tabs li a:hover,
.tabs li#active a:hover {
	background: #EEE;
	color: #00F;
}
.tabs li#active a {
	background: #EEE;
	border-right: 1px solid #EEE;
	color: #447;
}

/* Markup for individual inline classes. */
b.stepButton:before {
	content: "[";
}
b.stepButton:after {
	content: "]";
}

.listBlock {
	color: #477;
	background: #EEE;
	border: 1px solid #477;
	padding: .5em;
	margin-top: 1em;
}

.QandA dt {
	font-weight: bold;
	margin-top: 1em;
	margin-left: 0;
	padding-left: 0;
}
.QandA dd {
	margin-left: 0;
	padding-left: 1em;
	border-left: 1px solid #00F;
}	

/* a.linkDownload shows download links in smallcaps. */
a.linkDownload {
	font-size: smaller;
	font-variant: small-caps;
	text-decoration: none;
}
a.linkDownload:before {
	content: "[";
}
a.linkDownload:after {
	content: "]";
}


/* The title class sets off headers boldly. */
.title {
	background: #447;
	color: #FFF;
	font-family: Verdana, sans-serif;
	font-weight: normal;
	padding: 0 1em;
}
h1.title {
	font-size: 120%;
	text-align: center;
}
h2.containerTitle {
	background: #FFF;
	border: 1px dashed #00F;
	border-bottom: none;
	display: inline;
	font-size: 100%;
	font-weight: bold;
	margin-bottom: -1px;
	padding: .5em 1em 2px;
}
h2.title {
	border: 2px solid #00F;
	display: inline;
	font-size: 100%;
}
h3.title {
	background: #FFF;
	border: 1px solid #477;
	color: #477;
	display: inline;
	font-family: inherit;
	font-size: 90%;
	font-weight: bold;
}	
/* div's following containerTitle's hold each section of
   content in a white box with a pretty dotted border. */
.containerTitle + div {
	background: #FFF;
	border: 1px dashed #00F;
	padding: .5em 1em;
	padding-top: 0;
	margin-top: 0;
	margin-right: 5px;
}
/* Redundant assignment for IE browser, which does not
   support + sibling selectors. Currently, all the relevant 
   div's match both selectors. */
.content > div {
	background: #FFF;
	border: 1px dashed #00F;
	padding: .5em 1em;
	padding-top: 0;
	margin-top: 0;
	margin-right: 5px;
}

@media print {
	.content {
		margin-left: 0;
		font-family: serif;
	}
	.tabs {
		display: none;
	}

	abbr, acronym  {
		border-style: none;
	}
	abbr:after, acronym:after {
		content: " [" attr(title) "] ";
		font-variant: small-caps;
	}


	span.helpFloat {
		position: static;
	}
	span.helpFloat span {
		display: inline;
		position: static;
	}
	span.helpFloat span b {
		display: inline;
	}
	span.helpFloat:hover span {
		position: static;
		padding: 0;
	}
	span.helpFloat span em {
		display: inline;
	}
	

	.content {
		font-family: "Times New Roman", serif;
	}
	
	.container {
		border: none;
	}

	.title {
		font-weight: bold;
	}
	h1.title {
		font-size: 1.4em;
	}
	h2.title {
		border: none;
		font-size: 1.2em;
	}
	h3.title {
		border: none;
		font-size: 1.2em;
	}

	a.linkExternal,
	a.linkDownload {
		text-decoration: none;
		font-variant: normal;
		color: inherit;
	}

	a.linkExternal:before {
		content: "";
	}
	a.linkExternal:after {
		content: "[" attr(href) "]";
	}

	a.linkDownload:before {
		content: "(";
	}
	a.linkDownload:after {
		content: ": " attr(href) ")";
	}

	span.helpFloat a.linkDownload {
		display: none;
	}
}