/* * * * * http://slenz.ac.nz/v7 * * * * */
/* * * * * http://slenz.edumuve.ac.nz/ * * * * */
/* using layout hints from http://www.tjkdesign.com/articles/3cols.asp (heavily modified) */
/* -- -- -- -- --
blue border: #99e
pale yellow: #ffc
pale green: #eec
link blue: #66e
text black: #444
-- -- -- -- -- -- -- */

/* -- Body Attributes -- */
body {
	color: #444;
	font-family: Helvetica, sans-serif;
	margin-top: 21px;
	margin-right: 8%;
	margin-bottom: 21px;
	margin-left: 0;
	padding-top: 0;
	padding-bottom: 0;
	background: #eec url('../img/bg.korufern.png') repeat;
	background-attachment: fixed;
	font-size: 1em;
}

hr {
	background: #99e;
	border: none;
	height: 3px;
	width: 85%;
}

h4 {
	font-style: italic;
	margin-bottom: -7px;
}

ul {
	margin-top: -7px;
}

img {
	border: 0;
}

/* -- Links -- */
a {
	color: #66e;
	text-decoration: none;
}
a:hover {
	background: #fff;
	color: #00c;
	text-decoration: none;
}
a:visited {
	color: #339;
	text-decoration: none;
}

/* -- Outer Wrapper -- */
#wrapper {
	background: #eec;
/* because "min-width" is not supported by IE, these pages use a script from PVII */
	min-width: 740px;
/* this is to "minimize" an IE bug related to background painting, but because it creates a gap below the footer, the same declaration is also added to #footer */
	width: 100%;
/* faux-column technique, this is the left one */
	border-top: 3px solid #99e;
	border-right: 1px dotted #99e;
	border-bottom: 3px solid #99e;
	-moz-border-radius-topright: 21px;
	-khtml-border-radius-topright: 21px;
	-webkit-border-top-right-radius: 21px;
	border-top-right-radius: 21px;
	-moz-border-radius-bottomright: 21px;
	-khtml-border-radius-bottomright: 21px;
	-webkit-border-bottom-right-radius: 21px;
	border-bottom-right-radius: 21px;
}

/* -- Header -- */
#header {
	background: #eec;
/* this is to "give layout" to the element and fix some peek-a-boo bug in  IE (v6 sp2) */
	width: 100%;
/* the above declaration creates an horizontal scroll bar in IE, this is to get rid of it */
	margin: 0 -1px;
	-moz-border-radius-topright: 21px;
	-khtml-border-radius-topright: 21px;
	-webkit-border-top-right-radius: 21px;
	border-top-right-radius: 21px;
}
#header a {
	background: none;
	text-decoration: none;
	color: #444;
}

.hdng1 {
	font-family: times, serif;
	letter-spacing: -3px;
	color: #000;
	padding-right: 21px;
	padding-bottom: 0;
	padding-left: 0;
	margin-bottom: -1px;
	width: 305px;
	line-height: 60px;
	font-size: 3.5em;
	font-weight: bold;
	vertical-align: middle;
}
.hdng2 {
	font-family: Verdana, sans-serif;
	letter-spacing: 9px;
	color: #000;
	position: top;
	width: 100%;
	padding-bottom: 0;
	padding-left: 21px;
	margin-bottom: 0;
	margin-left: 0;
	line-height: 60px;
	font-size: .8em;
	font-weight: bold;
	vertical-align: text-bottom;
}

/* -- Banner -- */
#banner {
	background: #e9e9e9;
	border-top: 12px dotted #ffc;
}

/* -- Top Menu Bar (unused)  -- */

/*URL: http://www.dynamicdrive.com/style/ */
#topmenu{
	background: #ffe;
	margin-top: -1px;
	border-bottom: 3px solid #900;
	width: 100%;
	font-weight: bold;
	font-size: 100%;
}
#topmenu ul{
	width: 100%;
	height: 14px;
	background: url('img/chrome1x28.png') repeat-x;
	padding: 7px 0;
	margin: 0;
	text-align: center;
}
#topmenu ul li{
	display: inline;
}
#topmenu ul li a{
	padding: 6px 12px 6px 12px;
	margin: 0;
	color: #000;
	text-decoration: none;
	border-right: 1px solid #cecece;
}
#topmenu ul li a:hover {
	color: #900;
}

/* -- Left Sidebar -- */

#left {
	float: left;
	background: #eec;
	font-family: verdana, arial, tahoma;
	font-size: 1em;
	font-weight: bold;
	text-align: center;
	width: 12%;
	margin-top: 0;
	padding-top: 21px;
/* this is to keep the content of #sidebar to the right of #main even if the content of "main is shorter */
	/* padding-left: 100%; */
}

#left li {
	list-style-position: outside;
	list-style: none;
	width: 150%;
}
#left li a {
	color: #66e;
	text-decoration: none;
}
#left li a:hover {
	background: #ffc;
	color: #66e;
	text-decoration: none;
	border-top: 3px solid #ffc;
}

.item {
	background: none;
	display: block;
	width: 100%;
	border-top: 3px solid #ffc;
}
.here {
	background: #99e;
	color: #ffc;
	display: block;
	width: 100%;
	border-top: 3px solid #ffc;
}

/* -- Container -- */

#container {
	background: #eec;
	width: 82%;
	float: right;
/* IE doubles the margins on floats, this takes care of the problem */
	display: inline;
/* this is where Ryan Brill (author of the ALA's article) and I go in "opposite directions" */
	/* margin-left: -200px; */
	-moz-border-radius: 21px;
	-khtml-border-radius: 21px;
	-webkit-border-radius: 21px;
	border-radius: 21px;

}

/* -- Main -- */

#main {
	margin-right: 12px;
	background: #ffc;
	padding-right: 21px;
	padding-bottom: 100%;
	padding-left: 21px;
	border-top: 3px solid #99e;
	border-right: 1px dotted #99e;
	border-bottom: 3px solid #99e;
	border-left: 1px dotted #99e;
	-moz-border-radius: 21px;
	-khtml-border-radius: 21px;
	-webkit-border-radius: 21px;
	border-radius: 21px;
}
#main h1 {
	font-family: times, serif;
	text-align: center;
	margin-bottom: -12px;
}
#main h2 {
	font-family: times, serif;
	text-align: center;
	padding-bottom: 5px;
	border-bottom: 3px dotted #99e;
}

#main small {
	font-size: .6em;
	font-style: italic;
}

/* - - - Tables - - - */

#tableblock {
	text-align: left;
	vertical-align: middle;
	padding-top: 12px;
}

#tableblock th {
	background: #99e;
	color: #ffc;
	font-family: tahoma, arial, times, courier;
	font-size: 1em;
	padding: 2px;
	text-align: center;
}

#tableblock td {
	background: #eec;
	padding: 12px;
	font-size: .8em;
	text-align: right;
}

#tableblock li {
	text-align: left;
	list-style-image: url(../img/point06.png);
	line-height: 100%;
	list-style-position: outside;	
}



/* -- Right Sidebar -- */
#right {
	background: #fff;
	float: right;
	font-size: .8em;
	width: 30%;
/* IE doubles the margins on floats, this takes care of the problem */
	display: inline;
	margin-top: 7px;
	padding: 0 7px 21px 7px;
	text-align: justify;
	-moz-border-radius: 21px;
	-khtml-border-radius: 21px;
	-webkit-border-radius: 21px;
	border-radius: 21px;
	border-top: 3px solid #99e;
	border-right: 1px dotted #99e;
	border-bottom: 3px solid #99e;
	border-left: 1px dotted #99e;
}
#right  a {
	color: #000;
	text-decoration: none;
}
#right  a:hover {
	color: #ffe;
	background-color: #99e;
}
#right  a:visited {
	color: #000;
}

#right h1 {
	background: #99e;
	color: #fff;
	margin: 0 -7px 0 -7px;
	font-family: times, serif;
	font-size: 18px;
	text-align: center;
	-moz-border-radius-topright: 21px;
	-khtml-border-radius-topright: 21px;
	-webkit-border-top-right-radius: 21px;
	border-top-right-radius: 21px;
	-moz-border-radius-topleft: 21px;
	-khtml-border-radius-topleft: 21px;
	-webkit-border-top-left-radius: 21px;
	border-top-left-radius: 21px;
}
#right h2 {
	background: #ffc;
	color: #66e;
	margin: 7px 0 0 0;
	font-family: times, serif;
	font-size: 1.2em;
	text-align: center;
	-moz-border-radius-topright: 21px;
	-khtml-border-radius-topright: 21px;
	-webkit-border-top-right-radius: 21px;
	border-top-right-radius: 21px;
	-moz-border-radius-topleft: 21px;
	-khtml-border-radius-topleft: 21px;
	-webkit-border-top-left-radius: 21px;
	border-top-left-radius: 21px;
	border-top: 3px solid #99e;
	border-right: 1px solid #99e;
	border-bottom: 0;
	border-left: 1px solid #99e;
}
#right p {
/* this is to make sure IE (v6 sp2) *displays* this element (same problem as #header, but using a different fix) */
	position: relative;
}

.column {
	margin-bottom: -7px;
	padding-bottom: 3px;
	border-bottom: 3px dotted #99e;
}


/* -- Footer -- */
#ftr {
	background: #eec;
	width: 100%;
	clear: both;
	display: block;
	position: relative;
	width: 100%;
	bottom: 0px;
	font-family: verdana, arial, tahoma;
	font-size: 7pt;
	text-align: left;
	margin-top: -9px;
	-moz-border-radius-bottomright: 21px;
	-khtml-border-radius-bottomright: 21px;
	-webkit-border-bottom-right-radius: 21px;
	border-bottom-right-radius: 21px;
}
#ftr p {
	padding: 7px;
}

/* -- Disclaimer -- */

.disclaimer {
	font-style: italic;
}

/* -- Images -- */

.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding: 0;
}
.alignleft {
	float: left;
}
.alignright {
	float: right;
}

.boundary {
	border-top: 3px solid #99e;
	border-right: 1px dotted #99e;
	border-bottom: 3px solid #99e;
	border-left: 1px dotted #99e;
	padding: 0;
}

.portrait {
	background: #99e;
	border-top: 3px solid #99e;
	border-right: 1px dotted #99e;
	border-bottom: 0;
	border-left: 1px dotted #99e;
	padding: 0;
	margin: 16px 12px 3px 0;
}
.caption {
	border-top: 3px solid #99e;
	border-right: 1px dotted #99e;
	border-bottom: 3px solid #99e;
	border-left: 1px dotted #99e;
	text-align: right;
	background-color: #f3f3f3;
	padding: 0;
	font-size: .6em;
}

/* .caption img {
	margin: 0;
	padding: 0;
	border: 0 none;
} */

/* -- etc -- */

.clearing {height: 0; clear: both}