* {
	margin:0;
	padding:0;
	font-family: 'Anonymous Pro', sans-serif;
}

body {
	/* background: #B0ECFF; */
	background: #DDD;
}

a {
	color: black;
	text-decoration:none;
}

a:hover {
	color: #7C1A1A;
}

h1 {
	color: #7C1A1A;
	font-size: 5.21em;
	text-shadow: 1px 1px 10px #1A1A1A;
}

h2 {
	color: black;
}

p {
	text-indent: 60px;
	margin: 5px 0 5px 0;
}

#header{
	text-align: center;

	margin: auto;
	padding-top: 20px;
	width: 700px;
	height: 100px;
	background: white;
	border-style: solid;
	border-width: 3px;
	border-top: 0;
	box-shadow: 0px 0px 50px 5px gray;
	/* background: beige; */
	background-image: url('/img/post_texture.png');
	background-repeat: repeat;
}

#floating-nav{
	margin: auto;
	left: 0; /* magic sauce to center with fixed position */
	right: 0;
	width: 700px;
	height: 30px;
	z-index: 3;
	border-style: solid;
	border-width: 3px;
	border-top: 0px;
	box-shadow: 0px 10px 50px 5px gray;
	
	border-bottom-left-radius: 14px;
	border-bottom-right-radius: 14px;
	
	background-image: url('/img/floating_nav_texture.png');
	background-repeat: repeat;
}

#footer
{
	position: fixed;
	bottom: 0;
	margin: auto;
	left: 0; /* magic sauce to center with fixed position */
	right: 0;
	width: 700px;
	height: 30px;
	z-index: 3;
	border-style: solid;
	border-width: 3px;
	border-bottom: 0px;
	box-shadow: 0px 10px 50px 5px gray;
	
	border-top-left-radius: 14px;
	border-top-right-radius: 14px;
	
	background-image: url('/img/floating_nav_texture.png');
	background-repeat: repeat;
}


#floating-nav table,
#footer table {
	table-layout: fixed;
	padding-top: 5px;
	text-shadow: 1px 1px 10px #1A1A1A;
}

#floating-nav table td,
#footer table td {
	width: 175px;
	text-align: center;
}

#content{
	margin: auto;
	width: 680px;
	padding-bottom: 65px;
}

.post {
	margin: 30px 15px 0px 15px;
	/* margin-top: 30px; */
	padding: 15px;
	width: 620px;
	position: relative;
	z-index: 2;
	background-image: url('/img/post_texture.png');
	background-repeat: repeat;
	border-radius: 14px;
	color: #7C1A1A;
	font-size: 1.21em;
	/* text-shadow: 1px 1px 10px #1A1A1A; */ /* standard text shadow */
	/* text-shadow: -1px -1px 1px #fff, 1px 1px 1px #000; */ /* embossed… kinda sucks */
	box-shadow: 0px 5px 25px 5px gray;
}

.post-footer {
	margin-top: 15px;
}

.comment {
	display: none;
	margin: auto;
	width: 560px;
	padding: 15px;
	background-image: url('/img/floating_nav_texture.png');
	background-repeat: repeat;
	border-bottom-left-radius: 14px;
	border-bottom-right-radius: 14px;
	box-shadow: 0px 5px 25px 5px gray;
}

/* SQL log */
.cake-sql-log {
	background: #fff;
}
.cake-sql-log td {
	padding: 4px 8px;
	text-align: left;
	font-family: Monaco, Consolas, "Courier New", monospaced;
}
.cake-sql-log caption {
	color:#fff;
}