/* Global reset */
* {
	margin: 0;
	padding: 0;
}

body {
	font-family: Arial, Tahoma, Helvetica;
	font-size: 76.1%;
	color: black;
	padding: 10px;
	background: white url(../images/bg.gif) top left;
}

ul, ol {
	list-style-type: none;
}

a:link,
a:visted,
a:hover {
  text-decoration: underline;
  color: blue;
}
a img {
	border: none;
}


/* Global layout */
#container {
	width: 790px;
	background: #0077b1; /*#0099CC;*/
	padding: 5px;
	margin: 0 auto;
}

/* Header and Logo */
#header {
	border: 1px solid white; /*2px ridge white;*/
	margin-bottom: 5px;
	overflow: auto;
}

/* Wrapper 1 - contains Sidebar and Wrapper 2 */
#wrapper1 {
	overflow: auto;
	background: white url(../images/sidebar.png) -145px top repeat-y;
}

/* Sidebar - contains Categorys, Search, Login, Info and Note */
#sidebar {
	float: left;
	width: 148px;
	border: 1px solid white; /*2px ridge white;*/
	padding-top: 3em;
}

/* Wrapper 2 - contains Navi and Body */ 
#wrapper2 {
	margin-left: 5px; /*155px;*/
	overflow: auto;
}

/* Navigation */
#navi {

}

/* Body with main content */
#body {
	clear: left;
	padding: 10px;
	font-size: 1.2em;
}

/* Bottom - for clearence */
#bottom {
	clear: both;
}


/* Sidebar modules */
/* Category list */
#categorys {
	list-style-type: none;
}
#categorys li {
	width: 144px;
	border: 2px inset #96ddff; /*#006699;*/
}
#categorys li a:link,
#categorys li a:visited,
#categorys li a:active {
	display: block;
	padding: 5px 10px;
	color: white;
	font-size: 1.5em;
	letter-spacing: 0.2em;
	text-decoration: none;
}
#categorys li a:hover {
	background: #96ddff;
	color: black;
}

/* Searchform */
#search input {
	width: 75%;
	margin: 2px;
	font-size: 1em;
}
#search button {
	width: 16px;
	heigth: 16px;
	border: none;
	padding: 0px;
	background: transparent;
}

/* Loginform */
#login {
	width: 100px;
	margin: 10px auto 0 auto;
	border-bottom: 1px solid #96ddff;
	padding-bottom: 5px;
}
#login label {
	color: white;
}
#login input {
	width: 90px;
}
#login button {
	border: none;
	padding: 0px;
	background: transparent;
}

/* Info and Note */
#note,
#info {
	margin-top: 10px;
	margin-left: 24px;
	color: white;
	font-size: 1em;
}
#info ul li {
	list-style-type: disc;
	margin: 4px 1px;
}


/* Navigation bar */
#navi ul {
	list-style-type: none;
}
#navi ul li {
	display: block;
	float: left;
	border: 1px solid white;
}
#navi ul li a:link,
#navi ul li a:visited,
#navi ul li a:active {
	display: block;
	padding: 5px;
	color: white;
	font-size: 1.2em;
	/*
	font-weight: bold;
	letter-spacing: 0.2em;
	*/
	letter-spacing: 0.1em;
	text-decoration: none;
	background: #0077b1; /*#0099CC;*/
	border-top: 1px solid black;
	border-left: 1px solid black;
}
#navi ul li a:hover {
	border-top: none;
	border-left: none;
	border-bottom: 1px solid black;
	border-right: 1px solid black;
}
