/*
 * Stylesheet for the fifth- (sixth?) generation LOSURS web site
 * Extra values for portal-style content
 *
 * vim:ft=css
 *
 * (C)Copyright Scott Wunsch, 2001-2002
 * You may redistribute the contents of this file only under the terms of
 * the GNU GPL, a copy of which may be found at:
 *   http://www.losurs.org/COPYING
 */

/* ============================================ The portal box area itself == */

Div.portalboxes {
	position: absolute;
	right: 10px;
	width: 200px;
	left: auto;
	top: 10px;
	padding-bottom: 2em;
}

/* ======================================== Basic Structure of a Portalbox == */

Div.portalboxes Div.portalbox {
	border: thin solid #3D5192;
	font-size: 80%;
	padding-bottom: 3px;
	margin-bottom: 10px;
}

Div.portalbox Div.boxcontent {
	padding-left: 10px;
	padding-right: 10px;
}

Div.portalbox H2 {
	font-weight: bolder;
	text-align: center;
	font-size: 125%;
	background-color: #3D5192;
	color: white;
	padding-top: 2px;
	padding-bottom: 3px;
	margin-top: 0;
}
Div.portalbox H2 A {
	color: inherit;
	text-decoration: inherit;
}
Div.portalbox H2 A:hover {
	text-decoration: underline;
}

/* ===================================== Things That Can Be in a Portalbox == */

/* --------------------------------------------------------- Form Elements -- */

Div.portalbox Input[type=text], Div.portalbox Input[type=password] {
	border: thin solid #888;
	background: #EEE;
	font-family: monospace;
	width: inherit;
	padding-left: 0.5ex;
	padding-right: 0.5ex;
}
Div.portalbox Input[type=text]:focus, Div.portalbox Input[type=password]:focus {
	background: white;
	border: thin solid black;
}

Div.portalbox P.buttons {
	text-align: center;
	word-spacing: 1em;
}

Div.portalbox Input[type=submit], Div.portalbox Input[type=button] {
	background: white;
	color: #333;
	font: inherit;
	border: thin solid #888;
	padding-left: 1ex;
	padding-right: 1ex;
}
Div.portalbox Input[type=submit]:hover, Div.portalbox Input[type=button]:hover {
	border: thin solid #3D5192;
	background-color: #3D5192;
	color: white;
}
Div.portalbox Input[type=submit]:active, Div.portalbox Input[type=button]:active {
	border: thin inset #3D5192;
}

/* --------------------------- Bulletted Lists (Especially Lists of Links) -- */

Div.portalbox UL {
	list-style-type: disc;
	padding-left: 0;
	margin-left: 1ex;
}

Div.portalbox UL.linklist A {
	color: black;
	text-decoration: inherit;
	font-weight: inherit;
}
Div.portalbox UL.linklist A:hover {
	text-decoration: underline;
	color: blue;
}

Div.portalbox UL LI {
	margin-left: 0.8ex;
	margin-top: 0;
	padding-left: 0;
	line-height: 110%;
}
