@charset "iso-8859-1";
.clear
{
	clear: both;
	padding-bottom: 1px;	/* for Gecko-based browsers */
	margin-bottom: -1px;	/* for Gecko-based browsers */
}
.hide
{
	display: none !important;
}
.inside
{
	/* glitch in IE caused by vertical padding in this class, so 0 padding is
	 * set here and those blocks that need the vertical padding must be 
	 * applied to the parent element. the purpose of this class is to provide
	 * horizontal padding without using hacks to get around IE's broken box 
	 * model. so it's okay to apply vertical padding to the parent element, 
	 * just not horizontal padding.
	 */
	padding: 0 1em;
}

/* margin values and font sizes for headings, and margins on paragraphs
 * and lists are not consistent across browser platforms. to achieve a
 * consistent look we need to explicity set these values here. it may
 * seem an odd way to declare the margins like this but you never
 * know what kind of horizontal padding a browser may be using on an
 * element, and I only want to change the vertical padding.
 *
 * pixels are used here, rather than ems, because I want a consistent
 * margin on the different headings. if I use ems, 1em for an h1 element
 * is much larger than 1em on an h6 element. I don't wnat this.
 *
 * salt to taste
 */
ul, ol, dl, p, h1, h2, h3, h4, h5, h6
{
	margin-top: 14px;
	margin-bottom: 14px;
	padding-top: 0;
	padding-bottom: 0;
}
h1
{
	font-size: 220%;
}
h2
{
	font-size: 190%;
}
h3
{
	font-size: 160%;
}
h4
{
	font-size: 130%;
}
h5
{
	font-size: 100%;
}
h6
{
	font-size: 70%;
}

/* alter some HTML elements' default style
 */
a, a:link, a:visited, a:active
{
	text-decoration: underline;
}
a:hover
{
	text-decoration: none;
}
code
{
	font-family: "Courier New", Courier, monospace;
}
label
{
	cursor: pointer;
}
table
{
	font-size: 100%;
}
td, th
{
	vertical-align: top;
}

/* now we craft the core layout of the page. this includes positioning and
 * gutter space. colors and fonts should not come into play at this point.
 * when defining a border, default its color to white which is probably
 * the safest thing to do.
 */
body
{
	font-size: 100.1%;	/* resolve some font size issues in some layouts for
				   some browsers. (in other words, i got no clue.) */
	margin-top: 25px;
	margin-right: 10%;
	margin-bottom: 25px;
	margin-left: 10%;
	overflow-x:hidden;
}

#pageWrapper
{
	border: solid 1px #fff;
	border-width: 0 1px;
	min-width: 40em;	/* IE doens't understand this property. EMs are used
				   so that as the font size increases, the proportional
				   limitations (min-width) increase with it, rather
				   than creating a middle column that can only fit
				   3 or 4 characters in it. */
	width: auto;

}
#masthead
{
	border: solid 1px #fff;
	border-width: 1px 0;
	/*padding: 0.5em;*/
	height:110px;
}

#masthead h1
{
	padding: 0;
	margin: 0;
}
#outerColumnContainer
{
	/* reserves space for the left and right columns. you can use either
	 * padding, margins, or borders, depending on your needs. however you
	 * can use the border method to create a background color for both left
	 * and right columns
	 */
	border-left: solid 14.5em #fff;
	/*border-right: solid 12em #fff; removed right column*/ 
}
#innerColumnContainer
{
	border: solid 1px #fff;
	border-width: 0 1px;
	margin: 0 -1px;		/* compensate for the borders because of
				   100% width declaration */
	width: 100%;
	z-index: 1;
}
#leftColumn, #middleColumn, #rightColumn, * html #SOWrap
{
	overflow: visible;	/* fix for IE italics bug */
	position: relative;	/* fix some rendering issues */
}

#SOWrap
{
	float: left;
	margin: 0 -1px 0 0;
	width: 100%;
	z-index: 3;
}
#middleColumn
{
	float: right;
	width: 100%;
	z-index: 3;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 15px;
	margin-left: -1px;
}
#leftColumn
{
	float: left;
	margin: 0 1px 0 -14.5em;
	width: 14.5em;
	z-index: 4;
}
#rightColumn
{
	float: right;
	width: 12em;
	margin: 0 -12em 0 1px;
	z-index: 2;
}
#footer
{
	border: solid 1px #fff;
	border-width: 1px 0;
	padding: 0.2em;
}

p.fontsize-set
{
	text-align: center;
}
p.fontsize-set img
{
	border-width: 0;
}

/* vertical navigation stuff. mostly exactly as seen in the vnav.css styleheet
 * in the original skidoo layout.
 */
.vnav
{
	margin: 1em 0;
}
.vnav ul, .vnav ul li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: block;
}
.vnav ul
{
	border: solid 1px #fff;
	border-bottom-width: 0;
}
.vnav ul li
{
	border-bottom: solid 1px #fff;
}
.vnav ul li, .vnav ul li a
{
	margin: 0;
	display: block;
	padding: 0;
	line-height: normal;
}
#jumpsbox .vnav ul li a  {
	margin-bottom:5px;
}
.vnav ul li a
{
	display: block;
	padding: 2px 5px 3px 5px;
}
.vnav ul li a, .vnav ul li a:link, .vnav ul li a:visited, .vnav ul li a:active, .vnav ul li a:hover
{
	text-decoration: none;
	cursor: pointer;
}

.vnav h3
{
	margin-bottom: 0;
	padding-bottom: 0;
	font-size: 126%;
}
* html .vnav ul li a/* hide from IE5.0/Win & IE5/Mac */
{
	height: 0.01%;
}
* html .vnav ul
{
	position: relative;	/* IE needs this to fix a rendering problem */
}

/* horizontal navigation elements. create a DIV element with the class hnav
 * and stick one unordered list inside it to generate a horizontal menu.
 */
.hnav
{
	border-bottom: solid 1px #fff;
}
.hnav, .hnav ul li a
{
	/* need to middor veritcal padding on .hnav and child anchor elements
	 * because the anchors are _not_ block elements. since they are not
	 * block elements web browsers will not expand .hnav to contain them
	 * even with the extra padding. by applying the same padding to both
	 * the parent .hnav _looks_ like its containing the child anchor
	 * elements. 
	 */
	padding-top: 3px;
	padding-bottom: 4px;
}
.hnav ul, .hnav ul li
{
	display: inline;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.hnav ul li a
{
	margin: 0 -1px 0 0;
	padding-left: 10px;
	padding-right: 10px;	/* short-hand padding attribute would overwrite
				   top/bottom padding set in a previous rule */
	border-left: solid 1px #000;
	border-right: solid 1px #000;
	white-space: nowrap;
}
.hnav ul li a:link, .hnav ul li a:visited, .hnav ul li a:active, .hnav ul li a:hover
{
	text-decoration: none;
}
.hnav ul li span.divider
{
	display: none;
}

* html .HNAV
{
	padding: 0;	/* IE5/Win will resize #hnav to fit the heights of its
			   inline children that have vertical padding. So this
			   incorrect case selector hack will be applied only by
			   IE 5.x/Win */
}

/* everything below this point is related to the page's "theme" and could be
 * placed in a separate stylesheet to allow for multiple color/font scemes on
 * the layout. you should probably leave a default theme within this stylesheet
 * just to be on the safe side.	
 */
#pageWrapper, #masthead, #innerColumnContainer, #footer, .vnav ul, .vnav ul li, .hnav, .hnav ul li a
{
	border-color: #565;
}
html, body
{
	/* note that both html and body elements are in the selector.
	 * this is because we have margins applied to the body element
	 * and the HTML's background property will show through if
	 * it is ever set. _DO_NOT_ apply a font-size value to the
	 * html or body elements, set it in #pageWrapper.
	 */
	background-color: #eee;
	color: #565;
	font-family: arial, helvetica, sans-serif;
}
a {
	color:#006600;
	font-weight:bold;
}
a:hover {
	color:#000;
}
#pageWrapper
{
	font-size: 80%;	/* set your default font size here. */
}
#masthead
{
	color: #fff;
	background: #79ae79 ;
}
.hnav
{
	background-color: #aba;
	color: #fff;
}
#outerColumnContainer
{
	border-left-color: #ded;	/* left column background color */
	border-right-color: #cdc;	/* right column background color */
	background-color: #fff;		/* set the background color for the
					   middle column here */
}
.vnav ul li a:link, .vnav ul li a:visited, .vnav ul li a:active
{
	text-decoration: none;
	background-color: #cdc;
	color: #000;
}
#rightColumn .vnav ul li a:link, #rightColumn .vnav ul li a:visited, #rightColumn .vnav ul li a:active
{
	background-color: #ded;
}
.vnav ul li a:hover, #rightColumn .vnav ul li a:hover
{
	text-decoration: none;
	background-color: #898;
	color: #fff;
}
.hnav ul li a:link, .hnav ul li a:visited
{
	background-color: #bcb;
	color: #000;
}
.hnav ul li a:hover
{
	background-color: #787;
	color: #fff;
}
#rightColumn .inside
{
	/* if you apply a font size to just #rightColumn, then its width,
	 * which is specified in EMs, will also be affected. you don't want
	 * that. so apply font size changes to the .inside element which exists
	 * inside underneath all three columns
	 */
	font-size: 90%;
}
#rightColumn .inside .vnav
{
	/*font-size: 100%;*/
}
#footer
{
	background-color: #898;
	color: #fff;
	font-size:80%;
	height:13px;
}
#footer a
{
	color: #fff;
	text-decoration:none;
	font-weight:bold;
}
#footer a:hover
{
	color: #060;
	text-decoration:underline;
}

#hoekje {
	background-image: url(../images/hoekje.gif);
	background-repeat: no-repeat;
	background-position: right top;
	position: relative;
	text-align:right;
	top:-1px;
	height:20px;
	right:-14px;
}
#hoekje2 {
	background-image: url(../images/hoekje2.gif);
	background-repeat: no-repeat;
	background-position: left bottom;
	position:relative;
	left:-3px;
	bottom:3px;
	height:19px;
}

* html #hoekje2 {display:none;}
#links {
	padding-top:10px;
	padding-bottom:10px;
	border-bottom: dotted 1px #565;
}
#links img {
	vertical-align:middle;
}
#content a {
	text-decoration:none;
}
#content_text {
	padding-top:10px;
}
#footer_text {
	top:-18px;
	left:25px;
	position:relative;
	z-index:10;
}
* html #footer_text {
	top:0px;
	left:5px;
}

#favbar
{
	border-top:solid 1px #565;
	padding-top:5px;
	padding-left:5px;
	color:#000;
	margin-top:2px;
	font-size:80%;
}
#favbar a
{
	color:#006600;
	text-decoration:none;
}
#favbar a:hover {
	color:#fff;
	text-decoration:underline;
}
#favbar img
{
	vertical-align: middle;
}

#search_icon {
	padding-left:5px;
}

#layoutform, #searchform,#attachform {
	display:inline;
}

#layouttype {
	font-size: 80%;
	background-color: #ded;
	border: 1px solid #898;
	color:#898;
}
#search {
	font-size:80%;
	background-color: #ded;
	border: 1px solid #898;
	color:#898;
	padding-left:2px;
}
#select_attach {
	font-size: 80%;
	background: #ded;
	border: 1px solid #898;
	color:#898;
}
#theme {
	height:20px;
}
.thistheme {
	background: #fff;
	font-weight:bold;
}
#submitsearch, #searchimg, .arrow, #bread img, #search_icon, #edit {
	vertical-align: middle;
	line-height: 20px;
}
#edit {
	margin-right:5px;
}
#language {
	color:#79ae79;
}
#language a {
	color:#4D6E4D;
	font-size:80%;
	text-decoration:none;
}
#language a:hover {
	color:#fff;
}
#searchresults {
	padding-top:10px;
	padding-bottom:10px;
	border-bottom:dotted 1px #565;
}
#parentsbox,#currentbox,#childrenbox,#jumpsbox {
	background: transparent;
	margin-top: 0em;
	margin-right: 0em;
	margin-bottom: 0.5em;
	margin-left: 0em;
}
.xtop, .xbottom {display:block; background:transparent; font-size:1px;}
.xb1, .xb2, .xb3, .xb4 {display:block; overflow:hidden;}
.xb1, .xb2, .xb3 {height:1px;}
.xb2, .xb3, .xb4 {
	border-left:1px solid #898;
	border-right:1px solid #898;
	background-color: #FFFFFF;
}
.xb1 {margin:0 5px; background:#898;}
.xb2 {margin:0 3px; border-width:0 2px;}
.xb3 {margin:0 2px;}
.xb4 {height:2px; margin:0 1px;}
.xboxcontent, .xboxchildren {
	display:block;
	border:0 solid #898;
	border-width:0 1px;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	background-color: #FFFFFF;
}
.xboxchildren {
	height:120px;
	overflow:auto;
}
.xboxchildren a, .xboxcontent a {
	color:#006600;
	text-decoration:none;
}
.xboxchildren a:hover, .xboxcontent a:hover {
	text-decoration:underline;
	color:#898;
	font-weight:bold;
}
.xb1c, .xb2c, .xb3c, .xb4c {display:block; overflow:hidden;}
.xb1c, .xb2c, .xb3c {height:1px;}
.xb2c, .xb3c, .xb4c {
	border-left:1px solid #FFFFFF;
	border-right:1px solid #FFFFFF;
	background-color: #898; 
}
.xb1c {margin:0 5px; background:#FFFFFF;}
.xb2c {margin:0 3px; border-width:0 2px;}
.xb3c {margin:0 2px;}
.xb4c {height:2px; margin:0 1px;}
.xboxcurrent {
	display:block;
	border:0 solid #FFFFFF;
	border-width:0 1px;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	background-color: #898; 
	color:#FFFFFF;
	text-align:center
}
.xboxcurrent img {
	vertical-align:bottom;
}
.xboxcurrent a {
	color:#FFFFFF;
	font-size:1.2em;
	text-decoration:none;
}
/******************************************************************************/
/*~  login
----------------------------------------------------------------------*/

#loginbox{
	display: none;
	position:absolute;
	top: 5px;
	right: 5px;
	border: 2px solid #fff;
	background-color: #79ae79;
	font-size: 62.5%;
	color: #fff;
	padding:5px;
	z-index:10000;
}
#login_user, #login_pass {
	border: 1px solid #FFFFFF;
	background-color: #ded;
	color: #000;
	width: 60px;
	height: 12px;
	font-size: 1.1em;
	margin-top:5px;
}
#login_submit, #login_cancel {
	border: 1px solid #FFFFFF;
	background-color: #ded;
	color: #000;
	height: 17px;
	font-size: 1.1em;
	margin-top:10px;
}

#login_message {
	color:#f00;
	padding:2px;
	text-align: center;
	font-weight:bold;
	background:#8AC48A;
	height:15px;
	border: 1px dotted #9ADC9A;
	margin-top:-2px;
}
#loginform2 {display:inline;}
#loginform2 label,#user, #pass {display: block; width: 150px ;float: left; margin-bottom: 5px;padding:5px;}
#loginform2 label {text-align: right; width: 75px; padding-right: 20px;}
#loginform2 br {clear: left;}
