/**
 * Theme Name: InkBlot Child
 * Theme URI: http://maikeruon.com/wcib/
 * Description: An example of a child theme based on InkBlot.
 * Author: Michael Sisk
 * Author URI: http://maikeruon.com/
 * Template: inkblot
 * Version: 1.0.0
 */

/** Load the Cascade Failure CSS Framework - The CSS framework should always be loaded */
@import url( '../inkblot/includes/css/cf-reset.css' );
@import url( '../inkblot/includes/css/cf-layout.css' );
@import url( '../inkblot/includes/css/cf-typography.css' );

/** Load the default InkBlot styles - This gives us the basic InkBlot appearance to build upon */
@import url( '../inkblot/includes/css/ib-default.css' );

	
/* change the site width */
.group {
	width:900px;
}

.content-main {
	width:650px;
}

.sidebar-one {
	width:250px;
}
/* 
Uncomment this block and adjust widths as necessary to override InkBlot's default content and sidebar widths.
By default, the content block will be 62% (for two-column layouts) or 50% (for three-column layouts) as wide as the site.
By default, the sidebars will be 38% (for two-column layouts) or 25% (for three-column layouts) as wide as the site.

This particular stylesheets assumes a two column layout, so we aren't using .sidebar-two.
.sidebar-two   { width: 0; }
*/

	
/* change links */
a {
	color:#aa4f1d;
	text-decoration:none;
}

a:hover {
	color:#672806;
}


	
/* Remove the site trim and use background images isntead */
html {
	background:#000000 url(images/background.png) repeat-y;
	background-position:center;
	background-attachment:fixed;
}
#wrap-outer { background: none; }
#wrap-inner { background: none; }



	
/* Give the sidebar a background */
#body {
	background:url(images/body.png) 100% 0 repeat-y;
}

#body .comic { /* This rule ensures that our sidebar background doesn't show up in the "comic" area if our comic isn't as wide as the site */
	background:#fff;
}

	
/* Use an image for the logo */
#head .interior {
	padding:0;
}

#head .name {
	margin:0;
}

#head .name span,#head .description {
	display:none;
}

#head .name a {
	background:url(images/logo.png);
	display:block;
	height:120px;
}



/* Use images for comic navigation and always show all the navigation links */
.navi-comic {
	background:#fff;
	float:right;
}

.navi-comic span {
	display:none;
}

.navi-comic a {
	height:36px;
}

.navi-comic .current-comic {
	visibility:visible;
}

.navi-comic .first-comic-link {
	background:url(images/navi_first.png) 20% 50% no-repeat;
}

.navi-comic .previous-comic-link {
	background:url(images/navi_back.png) 0% 50% no-repeat;
}

.navi-comic .next-comic-link {
	background:url(images/navi_next.png) 100% 50% no-repeat;
}

.navi-comic .last-comic-link {
	background:url(images/navi_latest.png) 80% 50% no-repeat;
}

/* Use images for comic navigation and always show all the navigation links */
.navi-comic-b {
	background:#fff;
	float:right;
}

.navi-comic-b span {
	display:none;
}

.navi-comic-b a {
	height:36px;
}

.navi-comic-b .current-comic {
	visibility:visible;
}

.navi-comic-b .first-comic-link {
	background:url(images/menu_first.png) 20% 50% no-repeat;
}

.navi-comic-b .previous-comic-link {
	background:url(images/menu_back.png) 0% 50% no-repeat;
}

.navi-comic-b .next-comic-link {
	background:url(images/menu_next.png) 100% 50% no-repeat;
}

.navi-comic-b .last-comic-link {
	background:url(images/menu_latest.png) 80% 50% no-repeat;
}



/* tables */
table {
	caption-side:bottom;
	margin:0 0 1em;
	width:100%;
}

caption {
	font-size:85%;
	padding:.25em .75em;
	text-align:center;
}

th {
	font-weight:bold;
	padding:.25em .75em;
	text-align:left;
}

td {
	padding:0 0;
}
.entry { text-align:left; }