/*
 * Well, background has stripes. Main color is yellow, font small,
 * sans-serif (I like it on screen). Padding makes visible stripes
 * around black boxes of <div class="black">.  Color and background
 * is later inherited, only in div.black the background is switched
 * to black color without image.
 */
body {
	color: #ffff55;
	background-color: #000000;
	font-family: sans-serif;
	font-size: small;
	margin: 0;
	padding: 10px;
}

/* Common paragraphs. */
p {
	text-align: justify;
	color: inherit;
	background: inherit;
	font-size: small;
}

p.center {
	text-align: center;
}
p.right {
	text-align: right;
}
p.left {
	text-align: left;
}

span.error {
	color: #ff0000;
	font-weight: bold;
}
p.profile {
	font-style: italic;
}
p.song {
	text-align: center;
	font-style: italic;
}

img.rfloat {
	float: right;
	margin: 5px;
}
img.lfloat {
	float: left;
	margin: 5px;
}

/* Headers... no comment needed I think. */
h1, h2, h3, h4 {
	text-align: center;
	font-weight: bold;
	font-family: sans-serif;
	color: inherit;
	background: inherit;
}
h2, h4 {
	font-style: italic;
}

/*
 * Link... there are normal link (white/gray), external (blue/less-blue ;-))
 * and green class for menu (actual location on site).
 */
a {
	font-weight: bold;
	color: inherit;
	background: inherit;
}
a.here:link {
	background-image: url("../imgs/icon-here.gif");
	background-repeat: no-repeat;
	color: #00ff00;
	padding-left: 17px;
}
a.here:visited {
	background-image: url("../imgs/icon-here.gif");
	background-repeat: no-repeat;
	color: #00ff00;
	padding-left: 17px;
}
a.dir {
	background-image: url("../imgs/icon-dir.gif");
	background-repeat: no-repeat;
	padding-left: 17px;
}
a.file {
	background-image: url("../imgs/icon-file.gif");
	background-repeat: no-repeat;
	padding-left: 17px;
}
a.index {
	background-image: url("../imgs/icon-index.gif");
	background-repeat: no-repeat;
	padding-left: 17px;
}
a:link {
	color: #ffffff;
}
a.externy:link {
	color: #a0a0ff;
}
a:visited {
	color: #d0d0d0;
}
a.externy:visited {
	color: #8080ff;
}
a.green:visited {
	color: #00ff00;
}
a:active {
	color: #ff0000;
}

/*
 * This is common table for all purposes...
 * Some of tricks are explained two comments downward.
 */
table {
	border-style: solid;
	border-width: 1px;
	border-bottom-width: 2px;
	border-right-width: 2px;
	border-spacing: 0;
	border-color: #444400;
	border-top-color: #ffffaa;
	border-left-color: #ffffaa;
	padding: 0px;
	color: inherit;
	background: inherit;
}

table.plain {
	background-color: #000000;
	border-style: none;
	border-width: 0;
	padding: 0em;
	margin: 0em;
	width: 100%;
	color: inherit;
	background: inherit;
}

table.foto {
	background-color: #000000;
	border-style: none;
	border-width: 0;
	padding: 0em;
	margin: 0em;
	width: 100%;
	color: inherit;
	background: inherit;
}
td.foto {
	padding: 0.2em;
	margin: 0em;
	text-align: center;
	vertical-align: middle;
}

/*
 * Other table components... inherits from parent table nearly all...
 * Good way how to do tables. ;-)
 * Well - now there are made changes on the level just under the table
 * tag... thead/tbody/tfood changes border colors (left-top are switched
 * with right-bottom for 3d effect) and also padding (in table it was
 * set to 0 for no space between border of table and border of cells).
 * Border width is increased to 2 for shade-borders.
 * Great thing is that there will be no border for "plain" table still,
 * because of its none border-style. Any changes made to other aspects
 * of border are just ignored. Love CSS!
 */
thead {
	border: inherit;
	border-color: #444400;
	border-bottom-color: #ffffaa;
	border-right-color: #ffffaa;
	border-width: 1px;
	border-top-width: 2px;
	border-left-width: 2px;
	padding: 2px;
	color: inherit;
	background: inherit;
	background-color: #333333;
}
tbody {
	border: inherit;
	border-color: #444400;
	border-bottom-color: #ffffaa;
	border-right-color: #ffffaa;
	border-width: 1px;
	border-top-width: 2px;
	border-left-width: 2px;
	padding: 2px;
	color: inherit;
	background: inherit;
}
tfoot {
	border: inherit;
	border-color: #444400;
	border-bottom-color: #ffffaa;
	border-right-color: #ffffaa;
	border-width: 1px;
	border-top-width: 2px;
	border-left-width: 2px;
	padding: 2px;
	color: inherit;
	background: inherit;
}
tr {
	border: inherit;
	padding: inherit;
	color: inherit;
	background: inherit;
}
th {
	border: inherit;
	padding: inherit;
	color: inherit;
	background: inherit;
	background-color: #333333;
}
td {
	vertical-align: top;
	border: inherit;
	padding: inherit;
	color: inherit;
	background: inherit;
}

/* non-float image */
img {
	border-width: 0;
	vertical-align: middle;
	float: none;
	color: inherit;
	background: inherit;
}

/* This is used in menus... for indenting of inner menu items. */
div.vnor {
	margin-left: 1em;
	color: inherit;
	background: inherit;
}

/* This is box for menu */
td.menu {
	margin: 0em;
	padding: 0.5em;
	width: 1em;
	white-space: nowrap;
	color: inherit;
	background-color: #000000;
}

/* Box for main contents */
td.page {
	margin: 0em;
	padding: 0.5em;
	padding-left: 0em;
	color: inherit;
	background-color: #000000;
}

/*
 * This box is placed into page and menu for padding effect and mainly to
 * switch background to black. And... I like that thin red line on left
 * and top...
 */
div.black {
	padding: 0.5em;
	background-color: #000000;
	border: black;
	border-left: #aa0000;
	border-top: #aa0000;
	border-style: solid;
	border-width: thin;
	color: inherit;
}

/*
 * This is error box placed under menu.
 */
div.error {
	padding: 0.5em;
	border: #ff0000;
	border-style: solid;
	border-width: thin;
	background-color: #ff8080;
	color: inherit;
	text-align: left;
	white-space: normal;
}

/*
 * This... well, this is applied in fact only on virgo/index.php page now.
 * In mozilla engine <hr /> goes through my photo and this solved the problem...
 */
hr {
	clear: both;
	color: #800000;
	border-style: solid;
	height: 0px;
}
input.smalltext {
	margin: 0px;
	padding: 0px;
	padding-left: 2px;
	font-size: smaller;
	background-color: black;
	border-style: solid:
	border-width: thin;
	border-color: #444400;
	border-bottom-color: #ffffaa;
	border-right-color: #ffffaa;
	color: #ffff55;
}
input.smallbutton {
	color: #ffff55;
	margin: 0px;
	padding: 0px;
	font-size: smaller;
	border-style: solid:
	border-width: thin;
	border-color: #444400;
	border-top-color: #ffffaa;
	border-left-color: #ffffaa;
	background-color: black;
}
tt {
	font-size: larger;
	font-weight: bold;
}
