@charset "utf-8";
/* CSS Document */

{
	margin: 0;
	padding: 0;
}

/* Tell the browser to render HTML 5 elements as block */
header, footer, aside, nav, article {
	display: block;
}

body {
	margin: 0 auto;
	width: 320px;
	font: 13px/22px Helvetica, Arial, sans-serif;
	background: #f0f0f0;
}
h2 {
	font-size: 28px;
	line-height: 44px;
	padding: 22px 0;
}

h3 {
	font-size: 18px;
	line-height: 22px;
	padding: 11px 0;
	margin: 1em 20px -.5em 20px;
}

p {
	padding-bottom: 22px;  
}

.even {background-color:#CCC;
}

/*------------------------------
=COMMENT FORM
------------------------------*/

form {
	margin-top: 21px;
/*	padding-top: 22px;*/
/*	border-top: 1px solid #d7d7d7;*/
}

	form p {
		display: table;
		margin-bottom: 0px;
		padding: 0 10px;
	}

		form label {
			display: table-cell;
			width: 135px;
			padding-right: 20px;
			text-align: right;
			font-weight: bold;
			vertical-align: top;
		}
	
		form input[type="text"], form input[type="email"], form input[type="url"], form input[type="date"] {
			display: table-cell;
			width: 100px;
			height: 20px;
			border: 1px solid #d7d7d7;
			margin-bottom: 5px;
		}
		
		form textarea {
			width: 300px;
			height: 100px;
			border: 1px solid #d7d7d7;
		}
		
		form input[type="submit"] {
			margin-left: 162px;
		}