/**
GUESTBOOK stylesheet

You mighht need to modify the paths for background images.
At the moment all images are referenced like "images/pic.gif" .
*/


/* GB <div> element */
#guestbook {
	margin: 0;
	padding: 1em 0 0 0;
	text-align: center;
	font-size: 100%;
	font-family: sans-serif;
}

/* images always vertically centered */
#guestbook img {
	vertical-align: middle;
}

/* images that are clickable links without border */
#guestbook a img {
	border: none;
}

/* menue row */
#guestbook p#menue {
	display: none;
}

/* the form */
#guestbook form {
	display: none;
}


/* This is how the GB output is structured. It is a <dl> list where <dt> contains
all about the author and <dd> contains the actual entry. */
#guestbook dl {
	margin: 0 2em;
	padding: 0;
}

/* all the info about the author */
#guestbook dt {
	text-align: left;
	margin: 0;
	padding: 1em 0 0.5em 4em;
	color: #204060;
	border: 1px solid #c0c0c0;
	border-bottom: none;
}

/* the author's name is inside an extra <span> element */
#guestbook dt span {
	font-weight: bold;
}

/* instant messenger icons vertically centered */
#guestbook dt img {
	vertical-align: middle;
}

/* the actual message */
#guestbook dd {
	text-align: left;
	margin: 0;
	padding: 0.5em 2em 1em 2em;
	margin-bottom: 1em;
	border: 1px solid #c0c0c0;
	border-top: none;
}

/* Settings for some notices and stuff */

/* error (<p>-element) */
#guestbook .error,
#guestbook .warning,
#guestbook .success,
#guestbook #notice {
	display: none;
}

/* This <p> contains a notice after submission if the GB is set to "moderated mode". */
#guestbook #moderated-notice {
	text-align: left;
	width: 75%;
	border: 1px solid red;
	background: #ffe0e0;
	padding: 5px 15px;
	margin: 0 auto 5px;
}


/* smilies box (<div> element) */
#smilies {
	display: none;
	float: right;
	width: 45%;
}

#guestbook .new-line {
	clear: both;
}

#guestbook span.float-left {
	float: left;
}

#guestbook span.float-right {
	float: right;
}

/* link to start a new entry */
#guestbook #new-entry {
	display: none;
}

/* This element should be hidden from human visitors (anti SPAM mechanism) */
#guestbook #sig {
	display: none;
}

#guestbook #icon {
	display: none;
}

