/* These CSS definitions are part of the flatPHPbook script (c) 2003 by Thomas Hettenhausen */

body	{
	background-color: #ffffff;
	color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
}

/* styles the headline part of the page which initially reads " PHP Simple Guestbook Test Page" */
h1	{
	color: #333399;
	font-size: 18px;
	/* font-style: normal; */
	font-weight: bold;
	text-align: left;
	/*
	background-color: #c0c0e0;
	border-style: solid;
	border-width: 1px;
	border-color: #000000;
	margin-left: 10%;
	margin-right: 10%;
	margin-bottom: 20px;
	*/
	padding: 10px;
	margin: 0px;
}

h2	{
	color: #333399;
	font-size: 16px;

	/*
	border-top: thin solid #C0C0C0;
	border-bottom: thin solid #C0C0C0;
	*/
	/* font-style: normal; */
	/* line-height: 22px; */
	/* text-align: center; */

	/* alternative might be: */
	/*
	color: #000000;
	font-size: 14px;
	font-weight: bold;
	*/
}

/* NOTES
 * - hilfetexte sollten auftauchen in der reihenfolge de, en, fr, es
 *   - formatierung sollte sein de: #333399/normal, en: #666666/oblique,
 *     fr: #000000/normal, es: #666666&oblique
 *
 * => classen dafuer anlegen. Entweder nach lang oder (wahrscheinlicher nach ordnung)
 *
 * - feld beschriftungen sollten vermutlich #000000/10px sein.
 *   (vorerst auf 12px belassen, weil ich sonst nur noch fliegendreck sehe)
 *
 * - Zum Hinterlegen von Feldern/Flaechen etc kommen in frage:
 *   - #D3D3D3; (dunkel graeulich -- header/navigation auf hauptseite)
 *   - #F2F2F2; (hell graeulich -- active nav element)
 *   - #D7D1DE; (lilaisch -- body/hintergrund auf hauptseite)
 *   - #668899; (blaeulich -- footer auf hauptseite)
 *   - garnix bzw. #ffffff;
 *
 * - links should probably left alone (uncolored/browser default)
 *
 * - p {} should be defined
 */


/* for some reason, this is not inherited from the body tag */
td	{
	font-size: 12px;
}

a {
	color: #404080;
}

a:visited {
	color: #202040;
}

a:active {
	color: #6060b0;
}

a.adminmode	{
	color: #f00;
}


/* styles the top part, where the welcomeMessage and the input forms etc. are at  */
div.gbinputarea	{
	/* background-color: #f8f8f8; */
	/*
	border-style: solid none solid none;
	border-width: 1px;
	border-color: #000000;
	*/
	border-top: thin solid #C0C0C0;
	border-bottom: thin solid #C0C0C0;
	border-left: none;
	border-right: none;
	/*
	margin-left: 10%;
	margin-right: 10%;
	margin-top: 25px;
	margin-bottom: 25px;
	*/
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 0px;
	padding-bottom: 0px;
}

/* styles the input part, where the textarea etc. is at  */
div.gbinput	{
	/* background-color: #f8f8f8; */
	border-style: none;
	/*
	margin-left: 0%;
	margin-right: 0%;
	margin-top: 20px;
	margin-bottom: 20px;
	*/
	/* padding: 10px; */
	padding: 0px;
}

/* styles the table holding the entries, the border-collapse is important or you will get double lines between the table cells */
table.gbdisplay	{
	border-collapse: collapse;
	padding: 10px;
	margin: 0px;
	width: 100%;

	/*
	border-collapse: collapse;
	margin: 0px;
	margin-left: 10%;
	margin-right: 10%;
	padding: 0px;
	width: 80%;
	*/
}

/* styles the left (nickname) part of the entries */
td.posttopleft	{
	/* background-color: #c0c0e0; */
	background-color: #D3D3D3;
	font-size: 12px;
	border-style: solid;
	border-width: 1px;
	border-bottom-width: 0px;
	border-color: #000000;
	width: 20%;
	padding: 5px;
}

/* styles the right (date, time) part of the entries */
td.posttopright	{
	/* background-color: #c0c0e0; */
	background-color: #D3D3D3;
	font-size: 12px;
	border-style: solid;
	border-width: 1px;
	border-bottom-width: 0px;
	border-color: #000000;
	width: auto;
	padding: 5px;
}

/* styles the left (homepage, email) part of the entries */
td.postbottomleft	{
	/* background-color: #f8f8f8; */
	background-color: #F2F2F2;
	font-size: 12px;
	border-style: solid;
	border-width: 1px;
	border-top-width: 0px;
	border-color: #000000;
	width: 20%;
	height: auto;
	padding: 5px;
	padding-top: 10px;
}

/* styles the right (message) part of the entries */
td.postbottomright	{
	/* background-color: #f8f8f8; */
	background-color: #F2F2F2;
	font-size: 12px;
	border-style: solid;
	border-width: 1px;
	border-top-width: 0px;
	border-color: #000000;
	width: auto;
	height: auto;
	padding: 5px;
	padding-top: 10px;
	padding-bottom: 15px;
}

td.posttop	{
	/* background-color: #c0c0e0; */
	background-color: #D3D3D3;
	font-size: 12px;
	border-style: solid;
	border-width: 1px;
	border-bottom-width: 0px;
	border-color: #000000;
	height: auto;
	padding: 5px;
}

td.postbottom	{
	/* background-color: #f8f8f8; */
	background-color: #F2F2F2;
	font-size: 12px;
	border-style: solid;
	border-width: 1px;
	border-top-width: 1px;
	border-color: #000000;
	padding: 5px;
	padding-top: 10px;
	padding-bottom: 15px;
}

/*
#captchaRow.hidden {
	display: none !important;
}

#captchaRow.visible {
	display: table-row !important;
}
*/

/* span.required { } */

span.forgotten	{
	color: #ff0000;
}

span.nickname	{
	font-weight: bold;
}

span.dateandtime	{
	color: #000;
	font-weight: bold;
}

span.simpleDateandtime	{
	color: #606060;
	font-weight: bold;
}

/* the div which contains the link to the admin mode at the end of the script */
div.adminlink	{
	clear: both;
	font-size: 9px;
	text-align: center;
	margin-top: 8px;
}

div.jsHelpLine	{
	color: #707070;
}

div.pageNavigation	{
	float: left;
	font-weight: bold;
	text-align: left;
	margin: 0px;
	padding: 3px;

	/*
	text-align: center;
	width: 100%;
	font-weight: bold;
	margin-bottom: 0px;
	*/
}

div.pageNavigation > p	{
	margin: 0px;
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 3px;
	padding-bottom: 3px;
}


div.htmlFooter	{
	clear: both;
	text-align: center;
	font-size: 9px;
	margin-top: 10px;
}

#editConfigLink	{
	background-color: #fff;
	color: #f00;
	border-style: solid;
	border-width: 1px;
	border-color: #ff0000;
	/*
	margin-left: 10%;
	margin-right: 10%;
	margin-top: 25px;
	margin-bottom: 25px;
	*/
	padding: 3px;
}

.totalNumber	{
	float: right;
	color: #000000;
	/* font-size: 14px; */
	font-weight: bold;
	text-align: left;
	margin: 0px;
	padding: 3px;

	/*
	font-weight: bold;
	text-align: center;
	background-color: #f8f8f8;
	border-style: solid;
	border-width: 1px;
	border-color: #000000;
	margin-left: 10%;
	margin-right: 10%;
	margin-top: 25px;
	margin-bottom: 25px;
	*/
}

.totalNumber > p	{
	margin: 0px;
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 3px;
	padding-bottom: 3px;
}


/* this gives the buttons and the other input fields their stylish flat look - disabled if unwanted */
input, textarea	{
	/* background-color: #ffffff; */
	background-color: #F2F2F2;
	border-width: 1px;
	border-style: solid;
	border-color: #666666;
	padding: 1px;
}

img	{
	border-style: none;
	border-width: 0px;
}

.deleteButton	{
	color: #f00;
	background-color: #fff;
	border-color: #f00;
	margin: 5px;
}

.formHelp {
	/* background-color: #eeddff; */
	/* background-color: #D7D1DE; */
	background-color: #D3D3D3;
	margin-top: 3px;
}

.intro {
	border-width: 1px;
	border-style: none none solid none;
	border-color: #C0C0C0;
	margin: 0px;

	padding-top: 10px;
	padding-bottom: 10px;
}

#recaptcha_widget_div {
	/* float: left; */
}

.previewarea {
	border-top: thin solid #C0C0C0;
	border-bottom: none;
	border-left: none;
	border-right: none;

	margin: 0px;
	padding-top: 10px;
	padding-bottom: 10px;
}

