/********************************************
   HTML ELEMENTS
*******************************************/ 
/* top elements */
* { padding: 0; margin: 0; }
body {
	margin: 20px 0 20px 0; 	padding: 0;
	font: normal .72em/1.5em 'Trebuchet MS', sans-serif;
	color: #111;
	background: #333;
	text-align: center;	
	height: 100%;	
}
/* links */
a { background: inherit; color: #000; text-decoration: none; font-weight:bold;}
a:hover { background: inherit; color: #555; text-decoration: underline; }
/* headers */
h1, h2, h3 {
	font: bold 1em 'Trebuchet MS', Tahoma, Sans-serif;
	color: #444;
}
h1 { font-size: 1.4em; }
h2 { font-size: 1.2em; text-transform: uppercase;}
h3 { font-size: 1.2em; }

p, h1, h2, h3 {
	margin: 10px 15px;
}
ul, ol {
	margin: 1px 11px;
	padding: 0 15px;	
	color: #444;	
}
ul span, ol span {
	color: #333;
}
/* images */
img {
  border: 1px solid #DDD; 
  padding: 3px;
  background-color: #FFF;
}
img.float-right {
  margin: 5px 0px 5px 15px;  
}
img.float-left {
  margin: 5px 15px 5px 0px;
}

code {
  margin: 5px 0;
  padding: 10px;
  text-align: left;
  display: block;
  overflow: auto;  
  font: 500 1em/1.5em 'Lucida Console', 'courier new', monospace;
  /* white-space: pre; */
  background: #dfdfdf;
  border: 1px solid #f1f1f1;    
}
acronym {
  cursor: help;
  border-bottom: 1px solid #777;
}
blockquote {
	margin: 15px; 	padding: 0 0 0 10px;
  	background: #dfdfdf; 
	border: 1px solid #f1f1f1; 
	font: italic 1em/1.5em 'Trebuchet MS', Tahoma, sans-serif; 
	color: #444;	
}
/***********************
	  LAYOUT
************************/
#wrap {
	width: 770px;
	margin: 0 auto;
	background: #000 repeat-y;
	border: 1px solid #ddd;
}
#header-content, #content {
	width: 740px;	
}
/* header */
#header {
	position: relative;
	height: 10px;
	text-align: left;		
	margin: 0; padding: 0;	
	background: #c7c7c7;
}
/* header menu */
#menu {	
	clear: both;
	margin: 0; 
	padding: 0 0 10px 0;		
	width: 770px;		
	background: #c7c7c7;
	float: left;
}
#menu ul {
	font: bolder 14px 'Trebuchet MS', sans-serif;
	width: 740px;
	color: #FFF;
	background-color: #000;
	margin: 0 15px;
	padding: 0;
	display: inline;
	float: left;	
}
#menu li {
	float: left;
	list-style: none;
}
#menu li a {
	display: block;
	padding: 5px 15px;	
	color: #FFF;	
	text-decoration: none;	
}
#menu li a:hover {
	background: #CC9966;
	color: #FFF;
}
#menu li a#current  {
	background: #993333;
	color: #FFF;
}
/* content */
#content-wrap {
	clear: both;
	float: left;
	width: 100%;
	background: #c7c7c7;
}
#content {
	clear: both;
	text-align: left;	
	padding: 0;
	margin: 0 auto;			
}
/* main */
#main {
	float: left;
	width: 100%;	
	margin: 0; padding: 0;	
}
#main h1 {
	padding: 10px 0 5px 5px;
	margin: 0 10px 0 10px;
	border-bottom: 1px dashed #777; 	
}

.post {
	margin: 0; padding: 0;	
}
.post .post-footer {
	background-color: #ddd;
	padding: 5px; margin-top: 5px;
	font-size: 95%;
	border: 1px solid #eee;
}
/* footer */
#footer {
	clear: both;
	margin: 0; padding: 0;
	width: 770px;
	height: 85px;
	background: #c7c7c7;
	color: #777;
	text-align: center;
}
#footer p {
        width: 740px;
        background-color: #000;
        margin: 0 15px;
        padding: 10px 0 0 0;
        display: inline;
        float: left;
}
#footer a {
	text-decoration: none;
	color: #777;	
}
#footer a:hover {
	text-decoration: underline;
	color: #eee;
}

/* alignment classes */
.float-left  { float: left; }
.float-right { float: right; }
.align-left  { text-align: left; }
.align-right {	text-align: right; }

/* additional classes */
.clear { clear: both; }
.gray  { color: #c7c7c7; }

