/*  
Theme Name: Blog
Theme URL: http://www.danielhuff.com/Default.aspx
Description: Website CSS File.
Author: John D Huff
*/

/* Generic
---------------------------------------------------------------------------------*/
body
{
	margin: 20px;
	padding: 0;
	font-family: Helvetica, Lucida Sans Unicode, Verdana, Georgia, Arial, Sans-serif;
	font-size: 12px;
	color: #7d7573;
	background-image: url(bg.gif);
	background-repeat: repeat;
}
h1
{
	margin: 0px 0px 15px 0px;
	padding: 0px;
	font-size: 28px;
	font-weight: 900;
	color: #0087c9;
}
h2
{
	margin: 0px 0px 22px 0px;
	color: #0087c9;
	border-bottom: 1px dashed #4d4543;
	font-size: 18px;
	color: #a8a09d;
	font-weight: bold;
	padding: 19px 0 8px;
}
p
{
	font: 11px/20px verdana, arial, helvetica, sans-serif;
	margin: 0px 0px 16px 0px;
	padding: 0px;
}
.Content > p
{
	margin: 0px;
}
.Content > p + p
{
	text-indent: 30px;
}

img
{
	border: 0;
}

a
{
	font-size: 11px;
	font-family: verdana, arial, helvetica, sans-serif;
	font-weight: 600;
	text-decoration: none;
	color: #0087c9;
}
a:visited
{
	color: #07a;
}
a:hover
{
	color: #6f871d;
	text-decoration: underline;
	border: none;
}


/* All the content boxes belong to the content class. */
.content
{
	position: relative; /* Position is declared "relative" to gain control of stacking order (z-index). */
	width: auto;
	min-width: 640px;
	margin: 0px 300px 20px 300px;
	border: 1px solid black;
	background-color: #2c2422;
	padding: 10px;
	z-index: 3; /* This allows the content to overlap the right menu in narrow windows in good browsers. */
}
.footer
{
	position: relative; /* Position is declared "relative" to gain control of stacking order (z-index). */
	width: auto;
	min-width: 950px;
	margin: 0 300px 20px 300px;
	border: 1px solid black;
	background-color: #2c2422;
	color: #CDBD9C;
	height: 200px;
	padding: 25px 0 0 20px;
	text-shadow: 0 1px 0 #111111;
	z-index: 3; /* This allows the content to overlap the right menu in narrow windows in good browsers. */
}
.footer ul
{
	float: left;
	list-style: none outside none;
	margin: 0 20px 0 10px;
	padding: 0 0 0;
	width: 160px;
}
.footer ul li
{
	display: block;
	margin: 4px 0 3px;
}
.footerh1
{
	color: #cdbd9c;
	font-size: 12px;
	font-weight: bold;
}
.footer a
{
	text-decoration: none;
	color: #817e73;
}
.footer a:hover
{
	color: #6f871d;
	border: none;
}
.post
{
	border-bottom: 2px solid #4d4543;
	padding-bottom: 8px;
}
.postImg
{
	text-align: center;
}
.postDate
{
	font-size: 11px;
	color: #a8a09d;
}
.titleHeader
{
	color: #a8a09d;
	font-size: 13pt;
	font-weight: bold;
	font-style: italic;
}

/* PHOTO GALLERY
------------------------------------------------------------------------------*/
*
{
	margin: 0;
	padding: 0;
	font-size: 100%;
}
#wrap
{
	width: 720px;
	margin: 0 auto;
	position: relative;
}
#main-content li
{
	width: 200px;
	border: solid #2c2422;
	border-width: 0 1px 1px 0; /* uncomment and adjust this if you want a rounded frame in Mozilla browsers 	-moz-border-radius:20px;  */
	background: #2c2422;
	padding: 10px;
	text-align: center;
	position: relative;
	float: left;
	display: inline;
	margin: 5px;
}
#main-content a span
{
	/*\*/
	position: absolute;
	left: -9999px;
}
#main-content a:hover span
{
	top: 10px;
	left: 10px;
	width: 202px;
	font-weight: bold;
	background: #FFF;
	color: #999;
	padding: 5px 0 5px 0;
	text-transform: uppercase;
	font-size: 80%;
	border: 1px solid #EEE;
	border-width: 0 0 10px 0;
	filter: alpha(opacity=100); /*-moz-opacity:.8; 		opacity:.80;*/ /**/
}
/* IMAGE POPUP ON ROLL OVER
------------------------------------------------------------------------------*/
.thumbnail
{
	position: relative;
	z-index: 0;
}
.thumbnail:hover
{
	background-color: transparent;
	z-index: 50;
}
.thumbnail span
{
	/*CSS for enlarged image*/
	position: absolute;
	background-color: Silver;
	padding: 5px;
	left: -1000px;
	border: [] border: 1px solid gray;
	visibility: hidden;
	color: black;
	text-decoration: none;
}
.thumbnail span img
{
	/*CSS for enlarged image*/
	border-width: 0;
	padding: 2px;
}

.thumbnail:hover span
{
	/*CSS for enlarged image on hover*/
	visibility: visible;
	top: 0;
	left: 60px; /*position where enlarged image should offset horizontally */
}

