/*
 * SmallPortal by Anzuhan
 * ----------------------
 * 
 * This is the CSS file containing mostly layout and text styling/positioning.
 * Colours can be found in colours.css.
 *
 */


/* General layout */

body {
	font-size: 13px;
	font-family: Verdana, sans-serif;
	margin: 0px;
	padding: 0px;
}

#logo {
	font-size: 2em;
	font-weight: bold;
	text-align: center;
	letter-spacing: 0.5em;
	margin: 0.5cm 0px 0.5cm 0px; /* used for spacing */
}

#mainlinkbar {
	font-size: 1em;
	font-weight: bold;
	height: 20px;
	padding-left: 180px;
	border-top: 1px solid #333;
	border-bottom: 1px solid #333;
	padding-top: 5px;
}

#mainlinkbar a {
	text-decoration: none;
}

#mainlinkbar a:hover {
	text-decoration: underline;
}

#main {
	width: 100%;
}

#content {
	margin: 0px 250px 20px 170px;
	position: relative; 
	z-index: 3; 
	width: auto;
	padding: 10px;
	text-align: justify;
	font-size: 1.0em;
}

#content>p {
	line-height: 20px;
}



/* Now comes the tricky part - sidebars */

/* left */

#leftsidebar {
	float: left;
	width: 150px;
	z-index: 2;
	height: 700px;
	border-right: 1px dashed #ccc;
	padding-top: 40px;
	padding-left: 10px;
	padding-bottom: 10px;
	border-bottom: 1px dashed #ccc;
}

#leftsidebar a.menulink {
	padding-left: 20px;
	text-decoration: none;
}

#leftsidebar a.menulink:hover {
	text-decoration: underline;
}

#leftsidebar .topmost {
	padding: 5px;
	font-size: 1.3em;
	display: block;
	text-decoration: none;
}

#leftsidebar input {
	border: 1px solid #ccc;
	width: 135px;
	background-color: #fff;
	margin-left: 5px;
}

#leftsidebar hr {
	width: 135px;
	height: 1px;
}

#leftsidebar span.normal {
	font-size: 0.85em;
	color: #333;
	margin-left: 5px;
	width: 140px;
	text-align: justify;
}

#leftsidebar span.small {
	font-weight: bold; 
	font-size: 0.8em;
	margin-left: 5px;
	padding-left: 0px;
}

/* right */

#rightsidebar {
	float: right;
	width: 150px;
	z-index: 1;
	margin: 0px 50px 20px 30px;
	padding: 10px;
}

#rightsidebar .box {
	width: 170px;
	padding: 0px;
	margin-top: 10px;
	text-align: justify;
}

#rightsidebar .title {
	font-weight: bold;
	padding: 0px;
	border: 1px solid #777;
	border-bottom: 1px dashed #777;
	padding: 3px;
	text-align: left;
}

#rightsidebar .boxbody {
	padding: 3px;
	border: 1px solid #777;
	border-top: none;
}

/* Other stuff */


/* Doesn't work on IE6. */
input[type~="text"] {
	width: 140px;
	border: 1px solid #ccc;
}

input[type~="submit"] {
	padding: 2px;
	border: 1px solid #ccc;
}

