body {
	background-color: white;
	background-image: url(bg.png);
	background-position: 25% 0%;
	background-repeat: repeat-y;
}

#site {
	background-image: url(content-bg.jpg);
	background-position: top right;
	background-repeat: no-repeat;
	height: 421px;
	/*
	width: 100%;
	overflow: hidden;
	*/
}

#login-status {
	margin: 1em;
	padding: 0.5em 1em;
	border: 3px solid black;
	float: right;
	font-size: 80%;
	background-color: yellow;
}

#site-id {
	position: absolute;
	top: 0;
	left: 25%;
	/*
	width: 75%;
	*/
	height: 100px;
}

#sidebar {
	position: absolute;
	top: 0;
	right: 75%;
	width: 24%;
	max-width: 16em;
	text-align: right;
}

#ie-sidebar {
	/* IE max-width hack */
	width: 16em;
}

#nav0 {
	height: 100px;
	font-size: 80%;
	background-image: url(logo.png);
	background-position: top right;
	background-repeat: no-repeat;
	padding: 10px 0 0 1%;
	color: white;
	text-align: left;
}

#nav0 a {
	color: white;
	text-decoration: none;
}

#nav0 a:hover {
	text-decoration: underline;
}

#nav1 {
	padding: 1em 0.5%;
	color: white;
	text-align: left;
}

#nav1 ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

#nav1 ul li {
	display: block;
	margin: 0;
	padding: 0;
	list-style: none;
	margin: 5px;
	padding: 0;
}

#nav1 a {
	display: block;
	width: 100%;
	text-decoration: none;
	color: white;
}

#nav1 a:hover {
	text-decoration: none;
/*	background-color: #1947a3; */
/*
	position: relative;
	left: -10px;
*/
	text-decoration: underline;
}

#nav1 a.selected {
	font-weight: bold;
	color: #deff00;
}

#nav1 ul li h6 {
	margin: 0;
	font-size: 100%;
	padding: 3px 5px;
	border-bottom: 2px solid #2456ba;
	/*
	background-color: #2456ba;
	border-style: none solid solid none;
	border-color: #6288be;
	*/
}

#nav1 ul li h6.selected {
	border-bottom-color: #6684c1;
}

#nav1 ul li h6 a {
	text-decoration: none;
	font-weight: normal;
}

#nav1 ul li h6.selected a {
	font-weight: bold;
}

#nav1 ul li.selected h6 a {
	font-weight: bold;
}

#nav1 ul li ul {
	padding: 5px 0 5px 10px;
	font-size: 80%;
}

#nav1 ul li.selected ul {
}

#nav1 ul li ul li {
	margin: 0.3em 0;
	padding: 0;
}

#nav1 ul li ul li.selected {
}

#nav1 ul li ul li ul {
	margin: 0;
	padding: 0 0 0 1.5em;
	list-style: square;
	font-size: 100%;
}

#nav1 ul li ul li.selected ul {
	border-style: none;
}

#content {
	position: absolute;
	top: 100px;
	left: 25%;
	width: 73%;
	max-width: 50em;
	padding: 1em 0 1em 1%;
	/*
	text-align: justify;
	*/
}

#ie-content {
	/* IE max-width hack */
	width: 50em;
}

/**
 * Two-Columns
 */

.two-columns {
    overflow: hidden;
	width: 100%;
}

.left-column {
    width: 49%;
    float: left;
}

.right-column {
    width: 49%;
    float: right;
}



/**
 * Tooltips
 */
#tooltip {
	width: 30em;
	font-size: 80%;
	line-height: 120%;
	background-color: white;
	background-image: url(calendar.jpg);
	background-repeat: no-repeat;
	background-position: bottom right;
	/* translucent tooltips look cool, don't they? */
	filter:alpha(opacity=95); /* Internet Explorer       */
	-moz-opacity:0.95;        /* Mozilla 1.6 and below   */
	opacity: 0.95;            /* newer Mozilla and CSS-3 */
}
#tooltip h6 {
	font-size: 100%;
	color: #003399;
	padding: 0;
	margin: 0.5em 0;
}

#tooltip {
	position: absolute;
}


td {
	vertical-align: top;
}

table.expand {
	width: 100%;
}

form td.label {
	width: 35%;
}
form td.field {
	width: 65%;
}
form .buttons {
	border-top: 1px solid #cccccc;
	margin-top: 1em;
	padding-top: 1em;
	text-align: right;
}
.buttons a, .buttons button {
	display: inline-block;
	margin: 0;
	border-width: 1px;
	border-style: solid;
	border-color: #dddddd #999999 #999999 #dddddd;
	padding: 0.4em 0.8em;
	background-color: #eeeeee;
	font-size: 100%;
	line-height: 1.3;
	text-decoration: none;
	color: black;
	vertical-align: top;
}
.buttons a:hover, .buttons button:hover {
	background-color: #f7f7f7;
}
.buttons a:hover:active, .buttons button:hover:active {
	background-color: #dddddd;
	border-color: #999999 #dddddd #dddddd #999999;
}

/* forms.css */
label { font-weight: normal; }
fieldset { padding:1.4em; margin:0 0 1.5em 0; border:1px solid #ccc; }
legend { font-weight:bold; font-size:1.2em; }
input[type=text], input[type=password], input.text, input.title, textarea, select { background-color:#fff; border:1px solid #bbb; }
input[type=text]:focus, input[type=password]:focus, input.text:focus, input.title:focus, textarea:focus, select:focus { border-color:#666; }
input[type=text], input[type=password], input.text, input.title, textarea, select { margin: 0; }
input.text, input.title { width:300px; padding:5px; }
input.title { font-size:1.5em; }
textarea { width:390px; height:250px; padding:5px; }
input[type=checkbox], input[type=radio], input.checkbox, input.radio { position:relative; top:.25em; }
form.inline { line-height:3; }
form.inline p { margin-bottom:0; }
.error, .notice, .success { padding:.8em; margin-bottom:1em; border:2px solid #ddd; }
.error { background:#FBE3E4; color:#8a1f11; border-color:#FBC2C4; }
.notice { background:#FFF6BF; color:#514721; border-color:#FFD324; }
.success { background:#E6EFC2; color:#264409; border-color:#C6D880; }
.error a { color:#8a1f11; }
.notice a { color:#514721; }
.success a { color:#264409; }

.thwissen-categories a {
	text-decoration: none;
	color: black;
}
.thwissen-categories a:hover .title {
	color: blue;
}

.thwissen-files {
	margin: 1em 0;
	padding: 0;
}
.thwissen-files li {
	list-style-type: none;
	margin: 0;
	border-bottom: 1px solid #cccccc;
}
.thwissen-files a {
	display: block;
	text-decoration: none;
	overflow: hidden;
	padding: 0.5em 0;
	color: black;
}
.thwissen-files a:hover {
	background-color: rgba(0, 0, 0, 0.05);
}
.thwissen-files a:hover .title {
	color: blue;
}
.thwissen-files .icon {
	float: left;
}
.thwissen-files .type {
	white-space: nowrap;
	font-size: 80%;
	color: gray;
}
.thwissen-files .description {
	display: block;
}
