/* styles for journal */
body
{		
	font-family: Garamond, serif;
	font-size: 18px;
	line-height: normal;
	color: #333333;

}
input
{ background: lightgrey; border: 1px dashed red; }
textarea
{ background: lightgrey; border: 1px dashed red; }

#login /* settings for separate login page */
{
	text-align: center;
	vertical-align: middle;
	margin-left: auto;
	margin-right: auto;
	
	font-family: Monotype Corsiva, script;
	font-style: strong;
	font-size: 30px;
	font-align: left, top;
	
	background: orange;
	border: 1px solid red;
	
	padding: 10px;
	font-size: 11px;
}

#main /* integratable version */
{
	position: relative;
	top: 10px;
	width: 640px;
	min-width: 300px;
	min-height: 100px;
	
	margin-left: auto;
	margin-right: auto;

	background: #999;
	border: 1px solid orange;
	display: block;
	
	padding: 10px;
}

h1 
	{		
		font-family: Monotype Corsiva, script;
		font-style: strong;
		font-size: 30px;
		font-align: left, top;
		line-height: normal;
		color: #333333;
	}

.entries
{
	background: #999;
	/*border: 1px dashed red;*/
	
	font-family: Garamond, serif;
	font-size: 18px;
	line-height: normal;
	color: #333333;
	
	margin: 10px;
	padding: 5px;
}
.header /*positions the "next page" link in journal.php*/
{
	position: absolute;
	bottom: 10px;
	left: 20px;
	
	background: #FF9900;
	/*border: 1px dashed red;*/
	padding: 5px;
	display: block;
	
	font: 11px arial;
}
.footer /*positions the "prev page" link in journal.php*/
{
	position: absolute;
	bottom: 10px;
	right: 20px;
	
	background: #669900;
	/*border: 1px dashed red;*/
	padding: 5px;
	display: block;
	
	font: 11px arial;
}