/*
Theme Name: EDJMatic
Theme URI: http://ericdavidjohnson.net/
Description: Child Theme for Thematic
Author: EDJ
Author URI: http://ericdavidjohnson.net
Template: thematic
Version: 0.3
.
This work is released under the GNU General Public License 2:
http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
.
*/

/* Imports all styles from thematic... but it's not working for me so I'm imorting everything one at a time below...
@import url("../thematic/style.css"); */

/* Reset browser defaults */
@import url('../thematic/library/styles/reset.css');

/* Apply basic typography styles */
@import url('../thematic/library/styles/typography.css');

/* Apply a basic layout */
@import url('../thematic/library/layouts/2c-r-fixed.css');

/* Apply basic image styles */
@import url('../thematic/library/styles/images.css');

/* Apply default theme styles and colors WITH MODIFICATIONS 
@import url('default-edjmodified.css');  */

/* Apply default theme styles and colors */
@import url('../thematic/library/styles/default.css'); 

/* Prepare theme for plugins */
@import url('../thematic/library/styles/plugins.css');

/* =Global Elements
-------------------------------------------------------------- */
body, input, textarea {
   	font: 14px Helvetica, Arial, sans-serif;  
    line-height:20px;
}
a:link, 
a:visited {
	    color:red;
}
a:active,
a:hover {
	    color:black;
}


/* =Header
-------------------------------------------------------------- */
#branding {
    padding:12px 0 6px 0; /*  modified: to make header shorter. was 88px 0 44px 0;   */
}
/* code below is recommended by the thematic creater Ian Stewart to insert an image in lieu of the blog title
http://themeshaper.com/forums/topic/blog-name-image#post-644
it doesn't make a draggable, foregrounded image...*/
#blog-title a {
	background:url(images/me_by_jay.gif) no-repeat top center;
	display:inline-block;
	text-indent:-9000px;
	width: 199px;
	height: 215px;
}
#blog-title a:hover, a:active {
	background:url(images/me_by_jay_grayscale.gif) no-repeat top center;
}
/* code below is recommended by the thematic creater to make the blog description lie adjecant to the title instead of below it.
http://themeshaper.com/forums/topic/moving-blog-description-to-right-of-blog-title#post-2588
it doesn't play well with using a logo...*/
#blog-title {
	display: inline;
}
#blog-description {
	display: none;
	margin-left: 10px;
}
#header {
	background-color:white; 
}
/* below is my attempt to copy what I think Ian is doing to make his secondary menu appear in line and to the right of his #branding. doesn't work... */
#access {
/*	left:50%;
	margin-left:0;
	position:absolute;
	top:200px;
	width:494px;
	background: transparent; */
	/*height of placeholder image i've got in there now */
	background-color: #EFEFEF; 
	border-top:1px solid #ccc;
	height:32px;
}

/*** EDJMATIC SKIN ***/
.sf-menu { /* modified: borders removed from navigation bar   */
    border-right:none; 
}
.sf-menu a {
	border-left:none; 
	border-top:none;  
	border-bottom:none; 
	padding:0;
	margin: 9px 13px;
	text-decoration:none;	
}
.sf-menu a, .sf-menu a:visited  { /* visited pseudo selector so IE6 applies text colour*/
	color:			red;
}
.sf-menu .current_page_item a,
.sf-menu .current_page_ancestor a,
.sf-menu .current_page_parent a {
    border-bottom-color:none; 
}
.sf-menu li, .sf-menu li li, .sf-menu li li li {
	background:		#EFEFEF; /*  modified: to match color of access bar*/
}
.sf-menu li:hover, .sf-menu li.sfHover,
.sf-menu a:focus, .sf-menu a:hover, .sf-menu a:active {
    background:     #EFEFEF;  /*  modified: to match color of access bar*/
	outline:		0;
}
.sf-menu a:hover, .sf-menu a:active {
	color: black;
	border-bottom: solid 1px red;
}	
.sf-menu ul {
    border-right:none;
    border-bottom:none; 
}
.sf-menu li:hover ul,
.sf-menu li.sfHover ul {
	top:32px; 
}


/* =Content
-------------------------------------------------------------- */
.entry-title {
    font-family:Helvetica, Arial,sans-serif; /* modified: was Arial*/
    font-size:18px; /*  modified: was 26  */
    font-weight:normal; /* modified: was bold*/
}
.entry-title a {
    color:red; /* modified: was some other color*/
}
.entry-title a:active,
.entry-title a:hover {
    color: black; /* modified: was some other color*/
	border-bottom: solid 1px red; /* modified: added this to make a the underlining a different color than the link*/
}
.entry-meta {
    font-size:10px; /* modified: was 13px*/
    line-height:12px;  /* modified: was 18px*/
}
.entry-meta .n {
    font-size:10px;  /* modified: was 11px*/
    text-transform:none;   
}
.entry-meta abbr {
    font-size:10px;  /* modified: was 11px*/
    text-transform:none;	
}
.entry-content {
    padding:6px 0 0 0; /*  modified: was 22px  */
}
.entry-utility, 
.entry-meta .author, 
.entry-meta .meta-prep, .entry-meta .meta-prep-author,
.entry-meta .meta-sep, .entry-meta .meta-sep-entry-date {
	display:none;
}


/* =Footer
-------------------------------------------------------------- */
#footer {
	background:#EFEFEF none repeat scroll 0 0;
}
#siteinfo {
	margin:0 auto;
	position:relative;
	width:988px;
}
