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


/** TAGS **/

body {
	font-size:12px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	background: url(/images/bgTex_2.gif) repeat;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000;
	height: 100%;
}

h1 {
	font-size:200%;
	}



/** HEADER **/

#header h1 {
	margin: 0;
	padding: 0;
	text-indent:-9999px;
	display:none
}	

	
	
/** FOOTER **/

#footer div {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 12px 0 10px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color:#333;
	font-size: 95%;
}

#copy {
	float:left;
	position:relative; left:20px; top:-24px
	}
#author {
	float:right;
	position:relative; right:20px; top:-24px
	}
#author A {color:#333 }
#author A:hover { color:#666; text-decoration:none }

