
/* general styles 
********************************************************************/

body {
	color: #000;
	background-color: #fff;
	overflow-y: scroll; /* always show the vertical scrollbar for Firefox to not jump between long and short pages */
}
/* headlines */
h1, h2, h3, h4, h5, h6, caption, legend {
    font-weight: bold;
    text-align: left;
	margin: 0 0 .5em 0;
}
h1 { font-size: 1.3em; }
h2 { font-size: 1.2em; }
h3, caption, legend { font-size: 1.1em; }
h4 { font-size: 1.0em; }
h5 { font-size: .9em; }
h6 { font-size: .85em; }

/* common elements */
p, dt, dd, td, th, li {
}
li, dd { margin-left: 1.5em; }
ul li { list-style: disc outside; }
ol li { list-style: decimal outside; }
dt { font-weight: bold; }
li li, td td { font-size: 100%; }
p, ul, ol, dl,
hr, fieldset, table {
	margin: 0 0 1.0em 0;
}
ul ol, ol ul, ul ul, ol ol, dl dl {
	margin-bottom: 0;
}
/* tables */
table { border: 1px solid #ccc; border-collapse: collapse; empty-cells: show;}
table th { font-weight: bold; color: #333; background-color: #eee; }
table th, table td { padding: .3em .5em; border: 1px solid #ccc; }
table td {  }

/* links */
a {
	background-color: inherit;
	font-weight: bold;
}
a:link,
a:visited {
    text-decoration: underline;
}
a:hover,
a:active,
a:focus {
    text-decoration: none;
}

/*____________ general classes ____________*/

div.clearFloat {
	clear: both;
	height: 0;
	line-height: 0;
	font-size: 1px;
	visibility: hidden;
}

.a11y {
	position: absolute;
	left: -5000px;
	top: -2000px;
	width: 0;
	height: 0;
	overflow: hidden;
	display: inline;
}

.hide {
	display: none;
}
.show {
	display: block;
}

