@charset "utf-8";
/****************************************************
*					  style.css 				  
*****************************************************
* Description: cascading style sheet	   
* Created: 26 Mar 11		By: Scott O'Dell	
* Last Updated: 10 Jul 11	By: Scott O'Dell	
*****************************************************
*					Color Chart
*	Hex			Name			Use
*	-------------------------------------------------
*	
* Remember: [top] [right] [bottom] [left]
*			[top] [right,left] [bottom]
*			[top,bottom] [right,left]
*			[all]
*****************************************************/

/******************/
/*** CSS RESET ***/
/****************/

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td { 
	margin:0;
	padding:0;
}
fieldset,img { border:0; }
h1,h2,h3,h4,h5,h6 {
	font-size:100%;
	font-weight:normal;
}


/*********************************/
/*** page construction styles ***/
/*******************************/

html, body { height: 100%; }

body {
	color: black;
	font-family: Verdana, sans-serif;
	font-size: 13px;
	text-rendering: optimizeLegibility;
	background-color: #b7c;
	padding-top: 71px;
	padding-left: 90px;
}

a:link {
	color: #222;
	text-decoration: none;
} 
a:visited {
	color: #666;
	text-decoration: none;
}   
a:hover {
	color: #ccc;
	text-decoration: line-through;
}

ol {
	margin-top: 64px;
	margin-bottom: 85px;
	list-style-position: inside;
	color: #222;
	font-size: 12px;
}
ol a {
	margin-left: -2px;
}

.poem_main_title {
	color: #222;
	font-size: 13px;
}
.poem_main_title:hover {
	text-decoration: line-through;
	cursor: pointer;
}
.poem_main_body {
	margin-top: 1em;
	margin-bottom: 1em;
	display: none;
}
.poem_main_book {
	font-size: smaller;
	margin-top: 1em;
}

#footer {
	font-size: 10px;
	margin-bottom: 1em;
}
#footer ul {
	margin-top: 1em;
	margin-bottom: 5em;
	list-style-type: none;
}
#footer ul li {
	margin-bottom: 1em;
}


/****************************/
/*** specifc item styles ***/
/**************************/

#poem {padding-bottom: 1em;}
#book {
	padding-bottom: 1em;
	font-size: smaller;
}
.info {
	font-size: smaller;
	color: red;
}
.adding label, #poem_input input {
	display: block;
	float: left;
	margin-bottom: .5em;
}
.adding label {
	width: 7em;
	text-align: right;
	padding-right: 1em;
}
.adding input {
	width: 15em;
}
.adding textarea {
	margin-bottom: .5em;
	width: 25em;
	height: 20em;
}
.adding br {
	clear: both;
}
.adding #submit {
	width: 8em !important;
	margin-left: 13.2em;
}
