/*
Template Name: Comic Styles
Description: Cascading Style Sheet for comic panels
*/
/******************* Base Element Specs **********************/
/* set the base font, margin, padding & alignment */
body, div, span, h1, h2, h3, p, th, td, ul, li, dd, label, a {
  /* redundant selectors to help NS4 remember */
  font-family:Verdana, Arial, Helvetica, sans-serif;
  font-size:12px; font-weight:normal; font-style:normal;
  color:#666; background:transparent;
  margin:0; padding:0;
  text-align:left;
}

.wrap { /* class to close the "real" content to the 800px width */
	margin:0 auto;
	width:800px;
	display:block;
}

/************************ clear out all floats ********************/
.clearfix:after {
    content: "."; 
    display: block; 
    height:0; 
    clear: both; 
    visibility: hidden;
    font-size:0px;
}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
/* End hide from IE-mac */
/*************************** end clear floats *********************/

img {border:none;}

/* anchor tag */
a { color:#666; }

.l {float:left;}
.r {float:right;}
.center {text-align:center;}

/************** single comic specs ******************/
#single_comic { color:#666; background:#000; }

#panel_content { margin-top: 15px; }
/*#panel_content div { text-align:center; }*/

#panel_content #head{}
#head p { font-size:14px; color:#888; background:transparent;}
#head a { font-size:14px; }

#panel_content #body{height:450px; }

#panel_content #body p, #panel_content #body a {font-size:14px;} 

#panel_content #foot{margin:15px 0;}
#foot #panel_nav {width:100%;}
#foot #panel_nav li {display:inline; list-style-type:none;}
#foot #panel_nav li a {color:#b586ce; background:transparent;}

#foot #unav {clear:both; margin:10px 0; width:100%; text-align:center;}
#foot #unav li {display:inline; list-style-type:none; padding:0; margin:0;}
#foot #unav li span {color:#b9b4a0; background:transparent; padding:0 10px;}
#foot #unav li a {font-size:.9em; color:#3cf;}


