/*   
Theme Name: FilterJoe
Theme URI: 
Description: This is a Thematic Child, developed by CSS novice Joe Golton
Author: Joe Golton (child theme), Ian Stewart (Thematic - parent theme)
Author URI: http://themeshaper.com/
Template: thematic
Version: 1.0
Tags: Thematic
.
Thematic is © Ian Stewart http://themeshaper.com/
.
*/

/* 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 */
/* It's better to actually copy over default.css into this file (or link to a copy in your child theme) if you're going to do anything outrageous */
@import url('../thematic/library/styles/default.css');

/* Prepare theme for plugins */
@import url('../thematic/library/styles/plugins.css');


/* -------------------------------------------------------------- 
  
LAYOUT: One-Column (Right) Fixed
DESCRIPTION: Two-column 950px fixed layout with one sidebar right of content
MODIFICATIONS (by Joe Golton):  Reduced body width by 110px, main body text by ??px, and sidebar by ??px.  Reduced header height (to get back default, remove this line)
FROM FILE: ../thematic/library/layouts/2c-r-fixed.css
   
-------------------------------------------------------------- */

body {
    min-width:840px;
    margin: 0 0px 0px 0px;
}

#header {
    position:relative;
}
/*
//    height: 39px;
//    width: 820px; gets width right but puts header way to left.
*/
#branding {
    width:842px;
    margin:0 auto;
    position: relative;
    left:0px;
}
/*
//JG mod added 2 pixels to width in order for border of main text to match
*/
#access {
    position:relative;
    overflow:hidden;
}
/*
//    top: -32px;
//JG mod: moving line and tabs up - must move main by same amount
//But had a nasty side effect of misaligning the link to home from blog-title
//in most browsers.  So I reverted, and made the modification to menu below.
*/
.menu {
    width:280px;
    margin:0 auto;
    position: relative;
    top: -32px;
}
/*
//JG mod: reduced width to match main-aside width
//moved menu up to match the move up from main.
*/
#main {
    width:840px;
    margin:0 auto;
    overflow:hidden;
    position:relative;
    top: -34px;
    background: #FBF5E6;
}
/*
//JG mod: background color changed to pale olive.  Discarded #F6F9ED  #fffff2;
//JG mod: background color here covers all but outside borders
//JG mod: moved main up to match moving up access (line & menu)
*/
#container {
    width:530px;
    float:left;
}
#content {
    margin:25px 0 0 50px;
    width:430px;
    overflow:hidden;
}
/*
//JG mod: I stuck in top-margin.  main-aside margin must match.
//JG mod: also increased left margin from 10px to 50px
*/
.main-aside {
    margin:25px 25px 0 0;
    width:230px;
    float:right;
    position:relative;
    right:10px;
}
/*
// background: #EEF3E2;
//JG mod: margin needs to match content margin, but pushes secondary down
//JG mod: I tried to push menu down even further to 57px
//JG mod: to provide space for menu dropdown, but I couldn't stand the appearance.
//JG mod: right margin was 0, now 50
//JG mod: background color
*/
#secondary {
    clear:right;
}
#footer {    
    clear:both;
}
#subsidiary {
    width:820px;
    margin:0 auto;
    overflow:hidden;
}
#subsidiary .aside {
    width:280px;
    float:left;
    margin:0 20px 0 0;
}
#subsidiary #third {
    margin:0;
}
#siteinfo {
    clear:both;
    width:820px;
    margin:0 auto;
}


/* -------------------------------------------------------------- 
   
STYLE: Prometheus: a new default style for Thematic
DESCRIPTION: Styling based on Thematic's default theme, Prometheus
MODIFICATIONS (by Joe Golton):  
FROM FILE: ../thematic/library/styles/default.css
NOTES:
1) links were NOT blue until I copied the CSS code below into this file.  This suggests that not everything was being grabbed correctly from the library.  Yet nothing catastrophic was happening.  Weird.
-------------------------------------------------------------- */

/*body { background:#fff url(../grids/960_grid_12_col.gif) repeat-y top center; }*/

/* =Global Elements
-------------------------------------------------------------- */

body {
    font: 15px Veranda,sans-serif;
    line-height:1.4;
    background: #cccccc;
}
/*
//    background: #FBF5E6; yyy
// JG mod: added background color #EEF3E2;#FBF5E6;
//JG mod: relplaced 15px Georgia,serif with Veranda
// KF suggests changing line-height to something slightly higher.  24?
*/
input {
    font: 15px Veranda,sans-serif;
    line-height:1.45;
    background: #cccccc;
}
/*
//    border: 1px solid #cccccc;
//JG mod border added
//JG mod: replaced Georgia w/Veranda
// JG mod: added background color #FBF5E6;#EEF3E2;
// KF suggests changing line-height to something slightly higher.  24?
*/
textarea {
    font: 15px Veranda,sans-serif;
    line-height:1.45;
    background: #FBF5E6;
}
/*
//    border: 1px solid #cccccc;
//JG mod border added
//JG mod: replaced Georgia w/Veranda
// JG mod: added background color #FBF5E6;#EEF3E2;
// KF suggests changing line-height to something slightly higher.  24?
p, dd, pre {
    margin-bottom:22px;
*/
ul, ol {
    margin-bottom:22px;
    font: 14px Veranda,sans-serif;
    line-height: 1.25;
}
/*
JG: Added font and line-height to make this smaller than regular text
*/
ol ol {
	list-style: upper-alpha;
}
/* I added this 3/14/10 in order to create an outline style (cap letters as second indent)
*/
li {margin: .3em 0}
/* I added this in to add space between list items.  Did it work?

*/
pre, code {
	font:14px Monaco, monospace;
	line-height:1.3;
}
blockquote {
    color:#666;
    font: 13px Veranda;
    line-height:1.3;
}
/*
//    font-style:italic;
*/
table {
    border:1px solid #ccc;
    border-width:1px 1px 0 1px;
    font-size:13px;
    line-height:1.35;
    margin:0 0 22px 0;
    text-align:left;
}
/*
//JG mod:  I added smaller font and reduced line-height, italics off
*/
caption {
    text-align:left;
}
tr {
    border-bottom:1px solid #ccc;
}
th, td {
    padding: .7em 1.25em;
}
a:link {
    color:#006600;
    text-decoration:underline;
}
/*
//    color:#7A8B8B;
//  JG replaced default blue color:#004B91;
//  removed underline (text decoration)
*/
a:visited {
    color:#006600;
    text-decoration:underline;
}
/*
//color:#7A8B8B;
//  JG replaced default purple color:#743399;
//  removed underline (text decoration)
*/
a:active,
a:hover {
    color:#FF4B33;
    text-decoration:underline;
}
/*
//color: #FF4B33;
// If I want to replace default red color: #FF4B33; then
// I'll need to do it in a lot of places below as well.
// the underline under links only occurs when hovering or active.
*/

/* =Header
-------------------------------------------------------------- */

#header {
    z-index:2;
}
/*
//Have experimented with adding things here - usually had bad side effects.
*/
#branding {
    height: 44px;
    padding:2px 0 4px 0px;
    background:#698B69;
}
/*
//JG mod: added background color darkseagreen4.
//JG Mod: reduced padding from 88/44
//Added height line to make banner render same on IE7.  Did not work for IE6.
*/
#blog-title {
    font-family:Georgia;
    font-size:36px;
    font-weight:normal;
    line-height:44px;
    position:relative;
    left:50px;
}
/*
//JG mod: font to Georgia, weight to normal (from bold)
//JG mod: had to move left side to right because of other mods
//JG mod: reduced font-size and line-height by 4 pixels each
//also changed font to Times
*/
#blog-title a {
    color:#FBF5E6;
    text-decoration:none;
}
/*
//JG mod:  Color flipped from black #000
*/
#blog-title a:active,
#blog-title a:hover {
    color: #25383C;
}
/*
//JG mod replaced #FF4B33;
*/
#blog-description {
    font-family:Arial,sans-serif;
    font-size:13px;
    font-style:normal;
    color: #FBF5E6;
    float:right;
    position:relative;
    top:-26px;
    left:-380px;
}
/*
//JG Mod: color changed from #666, font-style from italic to normal
//JG Mod: next few lines moves the blog-description to the right and up  
*/
/*
test
put font-family:Arial in here to correct for IE7 - was not inheriting fonts the same as Firefox
font-family:Arial,sans-serif;
*/
/* =Menu
-------------------------------------------------------------- */

.skip-link {
    display:none;
}
#access {
    border-bottom:none;
    height:32px;
    font-size:13px;
    overflow:visible;
    z-index:100;
}
/*
//JG mod: changed border-bottom from 1px sold #ccc to none
//this accomplished removing the infinite line below the header
*/

/*** ESSENTIAL STYLES ***/
.sf-menu, .sf-menu * {
        font-family:Arial,sans-serif;
	margin:			0;
	padding:		0;
	list-style:		none;
}
/*
test
put font-family:Arial in here to correct for IE7 - was not inheriting fonts the same as Firefox
font-family:Arial,sans-serif;
*/
.sf-menu {
	line-height:	1.0;
}
.sf-menu ul {
	position:		absolute;
	top:			-999em;
	width:			10em; /* left offset of submenus need to match (see below) */
}
.sf-menu ul li {


	width:			100%;
}
.sf-menu li:hover {
	visibility:		inherit; /* fixes IE7 'sticky bug' */
}
.sf-menu li {

	float:			left;
	position:		relative;
}
.sf-menu a {
	display:		block;
	position:		relative;
}
.sf-menu li:hover ul,
.sf-menu li.sfHover ul {
	left:			0;
	top:			2.5em; /* match top ul list item height */
	z-index:		99;
}
ul.sf-menu li:hover li ul,
ul.sf-menu li.sfHover li ul {
	top:			-999em;
}
ul.sf-menu li li:hover ul,
ul.sf-menu li li.sfHover ul {
	left:			10em; /* match ul width */
	top:			0;
}
ul.sf-menu li li:hover li ul,
ul.sf-menu li li.sfHover li ul {
	top:			-999em;
}
ul.sf-menu li li li:hover ul,
ul.sf-menu li li li.sfHover ul {
	left:			10em; /* match ul width */
	top:			0;
}

/*** THEMATIC SKIN ***/
.sf-menu {
    border-right:none;
    float:right;
    position:relative;
    top:-3px;
    left: 212px;
    font-size:13px;
}
/*
//added font-size here to match blog description - was blank
//JG mod: lines after border-right move the menu to the right.
//Moving up menu in this section sometimes causes problems.
*/
.sf-menu a {
	border-left:none;
	border-top:none;
	border-bottom:none;
	padding:10px 13px;
	text-decoration:none;
        background: #698B69;
}
/*
//#7A8B8B;
//JG mod reducing padding from 9,13 px caused separation from submenu
//JG mod background - matches the header color #2F4F4F;
//JG mod removed 1px solid #ccc; from all menu borders above
*/
.sf-menu .current_page_item a,
.sf-menu .current_page_ancestor a,
.sf-menu .current_page_parent a {
    border-bottom-color:#fff;
}
.sf-menu a, .sf-menu a:visited  { /* visited pseudo selector so IE6 applies text colour*/

	color:			#FBF5E6;
}
/*
//changed from #666 - this one turns the menu text a different color
*/
.sf-menu li {
	background:		#FBF5E6;
}
/*
//JG mod from FFF - don't really know what this changes
*/
.sf-menu li li {
	background:		#FBF5E6;
}
/*
//JG mod from FFF - don't really know what this changes
*/
.sf-menu li li li {
	background:		#9AAEDB;
}
.sf-menu li:hover, .sf-menu li.sfHover,
.sf-menu a:focus, .sf-menu a:hover, .sf-menu a:active {
    background:	#25383C;
    outline: 0;
    border-bottom-color:#25383C;
}
/*
//JG mod: was fff background - this one changes color hovering over menu item
//JG mod: border-bottom-color used to be ccc.
*/
.sf-menu ul {
    border-right:1px solid #ccc;
    border-bottom:1px solid #ccc;
}
.sf-menu li:hover ul,
.sf-menu li.sfHover ul {
	top:32px; /* overriding essential styles */
}
.sf-menu ul ul {
    margin-top:0;
}
.sf-menu ul a {
    background:#25383C;
	border-bottom:none;
}
/*
//JG mod from fafafa
*/
.sf-menu ul a:hover {
    color: #FF4B33;
}


/* =Content
-------------------------------------------------------------- */

#main {
    clear:both;
    padding:0px 0 66px 0;
    border:1px  solid #7A8B8B;
}
/*
//border-left:2px solid #7A8B8B;
//border-right:2px solid #7A8B8B;
//border-bottom: 2px solid #7A8B8B;
//border-left-color: #7A8B8B replaces ccc
//changed padding from 66 0 22 0
*/
.page-title {
    font-size:13px;
    line-height:18px;
    padding:0 0 44px 0;
}
.attachment .page-title {
    font-style:italic;
}

.page-title a {
    color:#666;
    text-decoration:none;
}
.page-title a:active,
.page-title a:hover {
    color: #FF4B33;
}
.page-title span {
    font-style:italic;
}
.page-title .meta-nav {
    font-style:normal;
}
.hentry {
    padding:0 0 22px 0;
}
.single .hentry {
    padding:0;
}
.home #content .sticky {
    border:0px solid #ccc;
    margin:0 0 66px 0;
    padding:22px 20px 0 20px; 
}
/*
//JG mod: set this border to 0px to remove from bottom of page.
//not sure what rest of this section impacts.
*/
.entry-title {
    font-family:Arial,sans-serif;
    font-size:26px;
    font-weight:bold;
    line-height:26px;
    padding:0 0 7px 0;
}
.entry-title a {
    color:#000;
    text-decoration:none;
}
.entry-title a:active,
.entry-title a:hover {
    color: #FF4B33;
}
/*
//xxx change this ???
*/
.entry-meta {
    color:#666;
    font-family:Arial,sans-serif;
    font-size:13px;
    font-style:normal;
    line-height:18px;
}
/*
test
put font-family:Arial in here to correct for IE7 - was not inheriting fonts the same as Firefox
font-family:Arial,sans-serif;
*/
/*
//JG mod italic to normal
*/
.entry-meta .author {
}
.entry-meta .n {
    font-size:11px;
    font-style:normal;
    letter-spacing:0.05em;
    text-transform:uppercase;
}
.entry-meta a {
    color:#666;
    text-decoration:none;
}
.entry-meta a:active,
.entry-meta a:hover {
    color: #FF4B33;
}
.entry-meta abbr {
    border:none;
    cursor:text;
    font-size:11px;
    font-style:normal;
    letter-spacing:0.05em;
    text-transform:uppercase;
}
.entry-content {
    padding:22px 0 0 0;
}
/*
  //  font-family:Veranda,sans-serif;
//JG mod:  Veranda in place of what was there before (Georgia)?
*/
.entry-content h1 {
    font-family:Arial,sans-serif;
    font-size:20px;
    font-weight:bold;
    padding:16px 0 10px 0;
}
/*
//JG mod reduced padding from 28 0 14 0, reduced font size from 19
*/
.entry-content h2 {
    font-family:Arial,sans-serif;
    font-size:18px;
    font-weight:bold;
    padding:12px 0 10px 0;
    line-height:28px;
}
/*
//JG mod reduced padding from 28 0 14 0
//JG mod Georgia instead of Arial - it;s a smaller font
//JG mod put in a line height as it was too tight previously
*/
.entry-content h3 {

    font-size:15px;
    font-style:italic;
    padding:6px 0 6px 0;
}
/*
//JG reduced font size from 17, padding from 28 and 14
*/
.entry-content h4 {
    font-size:16px;
    font-family:Arial,sans-serif;
    font-weight:bold;
    text-transform:none;
    letter-spacing:0.0em;
    padding:6px 0 6px 0;
}
/*
//JG: letter-spacing reduced from .05em
//JG: I added some padding - there was none before
*/
.entry-content table {
    margin-left:1px;
}
.entry-content embed {
    margin:0 0 22px 0;
}

.entry-utility {
    color:#666;
    font-size:13px;
    line-height:18px;
    margin:0 0 44px 0;
}
.entry-utility a {
    color:#666;
    font-style:normal;
    text-decoration:none;
}
/*
//JG mod italic to normal zzz
*/
.entry-utility a:active,
.entry-utility a:hover {
    color: #FF4B33;
}
.page-link {
    font-size:13px;
    font-weight:bold;
    line-height:18px;
    margin:0 0 22px 0;
    padding:22px 0 0 0;
    word-spacing:0.5em;
}
.page-link a {
    border:1px solid #ccc;
    color:#666;
    font-weight:normal;
    padding:0.5em 0.75em;
    text-decoration:none;
}
.page-link a:active,
.page-link a:hover {
    color: #FF4B33;
}


ul#links-page,
ul#archives-page {
    list-style:none;
    margin-left:0;
    overflow:hidden;
}
li.content-column {
    float:left;
    margin-right:20px;
    width:45%;
}
.gallery {
    padding:0 0 22px 0;
}
.wp-caption-text,
.gallery-caption {
    color:#666;
    font-size:13px;
    line-height:18px;
}
#author-info {
    margin:0 0 44px 0;
    overflow:hidden;
}
#author-info .avatar {
    float:left;
    margin:.3em 1em 0 0;
}

/* =Attachments
-------------------------------------------------------------- */

.attachment-jpeg #container,
.attachment-png #container {
    width:100%;
}
.attachment-jpeg #content,
.attachment-png #content {
    width:930px;
}
.attachment-jpeg #comments,
.attachment-png #comments {
    width:540px;
    overflow:hidden;
}
.attachment-jpeg .main-aside,
.attachment-png .main-aside {
    display:none;    
}


/* =Navigation
-------------------------------------------------------------- */

.navigation {
    color:#666;
    font-size:13px;
    line-height:18px;
    margin:0px 0 22px 0;
    overflow:hidden;
}
.navigation a {
    color:#666;
    font-style:italic;
    text-decoration:none;
}
.navigation a:active,
.navigation a:hover {
    color: #FF4B33;
}
.navigation .meta-nav {
    font-style:normal;
}
.nav-previous {
	float: left;
	width:50%;
}
.nav-next {
	float: right;
	width:50%;
	text-align:right;
}
#nav-above,#nav-below {
	width: 100%;
}
#nav-above {
    display:none;
}
.paged #nav-above {
    display:block;
    padding:0 0 44px 0;
}


/* =Comments
-------------------------------------------------------------- */

#comments {
    padding:12px 0 0 0;
}
/*
//JG mod: reduced from 22 to 12px
*/
#comments,
#comments input,
#comments textarea {
    font-size:14px;
    line-height:20px;
}
/*
//JG mod: I increased comment font size/height slightly
*/
#comments code {
    font-size:12px;
    line-height:18px;
}
#comments h3 {
    font-family:Arial,sans-serif;
    font-size:15px;
    font-weight:bold;
    line-height:22px;
    padding:0 0 18px 0;
}
#comments-list {
    padding:0 0 18px 0;
}
#comments-list ol,
#comments-list ul {
    list-style:none;
    margin:0;
}
#comments-list ol {
    border:0px solid #ccc;
    border-top:1px solid #ccc;
    margin:0 0 18px 0;
}
/*
//JG mod changed border style from box to bottom line
*/
#comments-list li {
    background:#FBF5E6;
    border-bottom:1px solid #ccc;
    padding:22px 1.5em 32px 0;
    position:relative;
}
/*
//JG changed bottom padding from 0 to >30px px to accommodate
//move to bottom of the author and meta.  Also got rid of 1.5em margin.
//JG mod replaced #fafafa;
*/
#comments-list li.alt {
    background: #FBF5E6;
}
/*
//JG mod replaced #fff;
//Note that this is where to make alternating background colors if I so choose.
*/
#comments-list li.bypostauthor {
    background: #FBF5E6;
}
/*
//JG mod replaced #FFFFCC;
*/
#comments-list ul li {
    border:1px solid #ccc;
    margin:0 0 18px 0;
}
#comments-list li .avatar {
    position:absolute;
    bottom:100px;
    left:1.5em;
    width:36px;
    height:36px;
}
/*
//JG mod changed top to bottom but was unable to position reasonably.
//this is now really screwed up and must be fixed if I'm going to
//enable avatars.
*/
#comments-list .comment-author {
    font-weight:normal;
    font-size:12px;
    padding:18px 0 0px 0px;
    position:absolute;
    bottom:20px;
}
/*
//JG mod reduced left padding from 46 to 0
//JG mod moved to bottom of comment
*/
#comments-list .unapproved {
    font-style: italic;
    background: #ccc;
}
/*
//JG mod: aaa Here I changed style of "Your comment is awaiting moderation"
*/
#comments-list .comment-meta {
    color:#666;
    font-family:Arial,sans-serif;
    font-size:11px;
    padding:18px 0 0px 0px;
    position:absolute;
    bottom:19px;
    right: 0px;
}
/*
test
put font-family:Arial in here to correct for IE7 - was not inheriting fonts the same as Firefox
font-family:Arial,sans-serif;
*/
/*
//JG mod reduced left padding from 46 to 0
//JG mod moved to bottom and right side of comment
//note that the method I used to move the position of author and meta
//has screwed up many things.  If I want to use avatars or threaded
//comments (reply), I'll need to overhaul this section again.
*/
#comments-list .comment-meta a {
    color:#666;
    font-style:italic;
    text-decoration:none;
}
#comments-list .comment-meta a:active,
#comments-list .comment-meta a:hover {
    color: #FF4B33;
}
.comment-reply-link {
    font-size:11px;
    padding:0 0 18px 0;
    text-align:right;
}
.comment-reply-link a {
    color:#666;
    font-style:italic;
    text-decoration:none;
}

.comment-reply-link a:active,
.comment-reply-link a:hover {
    color: #FF4B33;
}
.comment-navigation {
    font-weight:bold;
    padding:0 0 18px 0;
    margin-right:0.5em;
}
.comment-navigation a {
    border:1px solid #ccc;
    color:#666;
    font-weight:normal;
    padding:0.5em 0.75em;
    text-decoration:none;
}
.comment-navigation a:active,

.comment-navigation a:hover {
    color: #FF4B33;
}
.comment-navigation a,
.comment-navigation span {
    margin-right:0.5em;
}
#trackbacks-list .comment-content {
    position:absolute;
    left:-9000px;
}
#respond {
    background:#FBF5E6;
    margin-bottom:22px;
    overflow:hidden;
    padding:18px 0 0 0;
    position:relative;
}
/*
//JG mod replaced #fff;

*/
#comments-list #respond {
    border-bottom:1px solid #ccc;
    margin:0 0 18px 0;
    padding:18px 1.5em;
}
#comments-list ul #respond {
    border:1px solid #ccc;
    margin:0;
}
#cancel-comment-reply {
    font-size:11px;
    position:absolute;
    top:18px;
    right:1.5em;
}
#cancel-comment-reply a {
    color:#666;
}
#respond .required {
    color:#FF4B33;
    font-weight:bold;
}
.form-section label {
    font-size:11px;
}
.form-section input {
    margin:0 0 18px 0;
    width:98%;
}
.form-section textarea {
    width:99%;
    border: 1px solid #cccccc;

}
/*
//    background: #EEF3E2;
//JG mod background line added
//JG mod border added
*/
#form-allowed-tags p {
    color:#666;
    font-size:11px;
    margin:0;    
}
#form-allowed-tags span {
    font-style:italic;
}
.form-submit {
    padding:18px 0 0 0;
    text-align:right;
}
.subscribe-to-comments {
    color:#666;
    float:left;
    font-size:11px;
    margin:0;
    padding:18px 0 0 0;
}
.solo-subscribe-to-comments {
    color:#666;
    font-size:11px;
    padding:18px 0 0 0;
}
.comment_license {
    color:#666;
    clear:both;

    font-size:11px;
    margin:0;
    padding:18px 0 0 0;
}

/* =Asides, Sidebars & Widget-Ready Areas
-------------------------------------------------------------- */

.aside,
.aside input {
    font-size:11px;
    line-height:14px;
    margin-bottom:6px;
}
/*
//JG mod reduced font size from 13 to 11 px, line-height from 18 to 16.
stuck letter-spacing line in there because IE7 was putting in 0.5em, but didn't work
letter-spacing:0.0em;
*/
.aside p,
.aside ul,
.aside ol,
.aside dd,
.aside pre {
    margin-bottom:18px;
}
.aside pre,
.aside code {
    font-size:12px;
    line-height:18px;
}
.aside .current_page_item a {
    color: #FF4B33;
}
.aside .current_page_item .page_item a {
color:#666;
}
.aside .current_page_item .page_item a:hover,
.aside .current_page_item .page_item a:active {
    color: #FF4B33;
}

.aside {
    color #7A8B8B;
}
/*
//JG mod repaced color:#666 with something more neutral
//this impacted all the meta information around the links, but not
//the links themselves hhh
*/
.aside a {
    color #7A8B8B;
    text-decoration:none;
}
/*
//JG mod text-decoration stripped out line
//JG mod replaced color:#666 with something more neutral
//this impacted the links, not the meta information around the links
*/
.aside a:active,
.aside a:hover {
    color: #FF4B33;
}
.aside h3 {
    font-size:13px;
    font-style:normal;
    line-height:21px;
    color #7A8B8B;
}
/*
//JG mod italic to normal zzz
//JG mod reduced font size from 15 to 13 px, line-height from 22 to 21.
*/
.aside h3 a {
    text-decoration:none;
}
.aside caption {
    font-size:11px;
    font-family:Arial,sans-serif;
    font-weight:bold;
    text-transform:uppercase;
    letter-spacing:0.5em;
}
/*
reduced letter-spacing line from .05em to 0em because IE7 was putting in 0.5em inheriting the 0.5m from this section and putting it
into the content of the aside!!
*/
.aside ul {
    list-style:none;
    margin-left:0;
    font-size:11px;
}
/*
JG reduced to 11px font, 16px height (nothing here before - but then I took it out)
*/
.aside ul ul {
    list-style:disc;
    margin:0 0 22px 20px;
}
.aside ul ul li {
    padding:2px 0;
}
*/ JG mod 1px to 2px because I had a lot of two-line titles that were cramped.
*/
.aside ul ul ul {

    margin-bottom:0;
}
.aside form,
.aside table {
    margin-bottom:22px;
}
.aside table {

    border:none;
}
.aside thead {
    border:1px solid #ccc;
}
.aside tbody {
    border:1px solid #ccc;
}
.aside th, .aside td {
    border-right:1px solid #ccc;
    padding:.25em .8em;
}
.aside tfoot tr {
    border:none;
}
.aside tfoot td {
    border-color:transparent;
}
.widget_tag_cloud {
    margin:0 0 22px 0;
}
/*
    Main Asides
*/
.main-aside ul {
    padding:0 20px;
    font-family:Arial,sans-serif;
}
/*
test
put font-family:Arial in here to correct for IE7 - was not inheriting fonts the same as Firefox
font-family:Arial,sans-serif;
*/
.main-aside h3 {
}
.main-aside ul ul {
    padding:0;
}
#primary {
    border:1px solid #ccc;
    padding:18px 0 0 0;

    margin-bottom:22px;
}
/*
    Content Asides
*/
#content .aside {
    border:1px solid #ccc;
    margin:0 0 22px 0;
    padding:18px 0 0 0;
}
#content .aside ul {
    padding:0 20px;
}
#content .aside h3 {
    font-family:Georgia,serif;

    font-weight:normal;
    font-size:17px;
    font-style:italic;
    padding:0 0 7px 0;
    text-transform:none;
}
#content .aside ul ul {
    padding:0;
}
/*
    Footer Asides
*/
#subsidiary {
    padding:0px 0 0 0;   
}
/*
//JG mod: padding reduced from 33 0 0 0 
*/

/* =Footer
-------------------------------------------------------------- */

#footer {
    border-top:1px solid #ccc;
    margin-top:0px;
}
/*
//JG mod: reduced from 22px
*/
#siteinfo {
    color:#666;
    font-size:11px;
    line-height:18px;
    padding:8px 0 8px 0;
}
/*
//JG mod: padding reduced from 22 0 44 0
*/
#siteinfo a {
    color:#666;
}
#siteinfo a:active,
#siteinfo a:hover {
    color: #FF4B33;
}


/* =PageNavi
-------------------------------------------------------------- */

/* Using !important to override PageNavi CSS */

.wp-pagenavi {
    margin:0 0 0 -.5em;




    padding:0.5em 0;    
}

.wp-pagenavi a, .wp-pagenavi a:link {
    border:1px solid #ccc !important;

    color:#666!important;

    font-style:normal;
    margin:0 .375em !important;
    padding:0.5em 0.25em !important;
}
.wp-pagenavi a:visited {
    border:1px solid #ccc !important;
    color:#666 !important;
}
.wp-pagenavi a:hover {
    border:1px solid #ccc !important;
    color:#FF4B33 !important;
}
.wp-pagenavi a:active {
    border:1px solid #ccc !important;
    color:#FF4B33 !important;
}
.wp-pagenavi span.pages {
    border:none !important;
    color:#666 !important;
    margin:0 !important;
    padding:0 !important;
}
.wp-pagenavi span.current {
    border:none !important;
    color:#666 !important;
    font-weight:normal !important;
    margin:0 !important;
    padding:0 !important;
}
.wp-pagenavi span.extend {
    background-color:#FFFFFF;
    border:1px solid #000000;
    color:#000000;
    margin:2px;
    padding:2px 4px;
}


/* -------------------------------------------------------------- 
   
STYLE: Default styles for Images for Thematic
DESCRIPTION: Styling based on Thematic's default theme
MODIFICATIONS (by Joe Golton):  
FROM FILE: 
http://www.filterjoe.com/wp-content/themes/thematic/library/styles/images.css
NOTES:

I needed to reduce the margins on alignments, which were too wide for a certain pair of EEE PC pictures.  I tried reducing below but that was a bad idea - text too cramped against picture.  Instead, copy specific code from here into the the picture css itself . . .
-------------------------------------------------------------- */   

.entry-content img {
    margin: 0 0 18px 0;
}
.alignleft,
img.alignleft {
	float: left;
    margin-right:20px;
}
.alignright,
img.alignright {
	display: block;
	float: right;
    margin-left:20px;
}
.aligncenter,
img.aligncenter {
	margin-left:auto;
	margin-right:auto;
	display: block;
	clear: both;
}
.wp-caption {
	text-align: center;
	margin-bottom:18px;
}
.wp-caption img {
	margin: 0;
	padding: 0;
	border: 0 none;
}
.wp-caption p.wp-caption-text {
	margin: 0;
	padding:4px;
font-family:Arial,sans-serif;
}
/*
//JG moved padding down from 5px
*/
/*
test
put font-family:Arial in here to correct for IE7 - was not inheriting fonts the same as Firefox
font-family:Arial,sans-serif;
*/
.gallery img {
    margin:0;
}
.wp-smiley { /* Prevent the smileys from breaking line-height */
	max-height:12px;
	margin:0 !important;
}

/*

Adapt the following for use in your Child Themes when using
different font-sizes and line-heights

.entry-content img,
.wp-caption {
    margin-bottom:--px;
}
.wp-smiley {
    max-height:--px;
}

All other styles can be overridden--or ignored!--in Child Theme stylesheets

*/
