/*
Theme Name: Charney2
Theme URI: http://consensus-technology.net/devblog-ccc/wp-content/themes/
Description: Fixed width 4 column layout, to implement David Dodge's design.
Version: 1.0
Author: Gerard Gleeson
Author URI: http://consensus-technology.com/
Tags: 4 columns, fixed width, 1024px
*/

/***************** 4 Column Layout ******************/

body {
	margin:0;
	padding:0;
	width:100%;
	background-image: url(images/background_blog_sidebar.jpg);
	min-width:1004px;		/* Minimum width of layout - remove line if not required */
					/* The min-width property does not work in old versions of Internet Explorer */
	font-size:90%;
	text-align:center;
}

#fixed {
   margin:0 auto;
   width: 1004px;   /* you can use px, em or % */
   text-align:left;
}

#header {
	float:left;
	width:100%;
	padding:0;
	margin:0;
	height: 138px;
}
/* column container */
.colmask {
	position:relative;		/* This fixes the IE7 overflow hidden bug and stops the layout jumping out of place */
    clear:both;
    float:left;
    width:100%;				/* width of whole page */
	overflow:hidden;		/* This chops off any overhanging divs */
}
/* Start of Column CSS */
#container4 {
	clear:left;
	float:left;
	width:100%;
	overflow:hidden;
	background:#fff; 		/* column 4 background colour */
}
#container3 {
	clear:left;
	float:left;
	width:100%;
	position:relative;
	right:50px;				/* col 4 width */
	background-image: url(images/background_sidebar.jpg); /* column 3 background colour */
}
#container2 {
	clear:left;
	float:left;
	width:100%;
	position:relative;
	right:281px;			/* col 3 width */
	background:#fff; 		/* column 2 background colour */
}
#container1 {
	float:left;
	width:100%;
	position:relative;
	right:498px;			/* col 2 width */
	background:#fff; 		/* column 1 background colour */
}
#col1 {
	float:left;
	width:175px;
	position:relative;
	left: 829px;			/* total width - col1 width */
	overflow:hidden;
}
#col2 {
	float:left;
	width:498px;
	position:relative;
	left: 829px;			/* total width - col1 width */
	overflow:hidden;
}
#col3 {
	float:left;
	width:281px;
	position:relative;
	left: 829px;			/* total width - col1 width */
	overflow:hidden;
}
#col4 {
	float:left;
	width:50px;
	position:relative;
	left: 829px;			/* total width - col1 width */
	overflow:hidden;
}


/* Start of Column CSS */
#foot-container4 {
	clear:left;
	float:left;
	width:100%;
	overflow:hidden;
	background:#fff; 		/* column 4 background colour */
}
#foot-container3 {
	clear:left;
	float:left;
	width:100%;
	position:relative;
	right:50px;				/* col 4 width */
	background-image: url(images/background_sidebar.jpg); /* column 3 background colour */
}
#foot-container2 {
	clear:left;
	float:left;
	width:100%;
	position:relative;
	right:281px;			/* col 3 width */
	background:#fff; 		/* column 2 background colour */
}
#foot-container1 {
	float:left;
	width:100%;
	position:relative;
	right:498px;			/* col 2 width */
	background:#fff; 		/* column 1 background colour */
}
#foot-col1 {
	float:left;
	width:175px;
	position:relative;
	left: 829px;			/* total width - col1 width */
	overflow:hidden;
}
#foot-col2 {
	float:left;
	width:498px;
	position:relative;
	left: 829px;			/* total width - col1 width */
	overflow:hidden;
}
#foot-col3 {
	float:left;
	width:281px;
	position:relative;
	left: 829px;			/* total width - col1 width */
	overflow:hidden;
}
#foot-col4 {
	float:left;
	width:40px;
	position:relative;
	left: 829px;			/* total width - col1 width */
	overflow:hidden;
}
/********************** Global **********************/

/* Structure */

body
{
	margin: 0;
	padding: 0;
}

p
{
	margin: 0 0 1.2em 0;
}

ol, ul
{
	margin: 0 0 1.2em 1.2em;
	padding: 0;
}

h1, h2, h3, h4, h5, h6
{
	margin: 0.5em 0;
}

blockquote
{
	margin: 0 20px;
	padding: 0 20px;
}

form,
img
{
	margin: 0;
	padding: 0;
	border: 0;
}

.hidden
{
	visibility: hidden;
}

/* Typography */

body
{
	font:0.8em/1.6em Arial,Helvetica,sans-serif;
	letter-spacing: .01em;
	color:#333;
}

p
{
	font-size: 1em;
	line-height: 1.5em;
}

ol, ul
{
	font-size: 1em;
	line-height: 1.5em;
}

h1, h2, h3, h4, h5, h6
{
	font-family: Arial,Helvetica,sans-serif;
}

h1, h2
{
	font-size: 1.4em;
	letter-spacing: 0.025em;
}

h3
{
	font-size: 1.3em;
}

h4
{
	font-size: 1.2em;
}
/*
a
{
	text-decoration: none;
}
*/
input, textarea, select
{
	font-size: .9em;
	font-family: "Lucida Sans Unicode", Tahoma, Arial, sans-serif;
}

blockquote
{
	font-size: 0.9em;
}

code
{
	font-family: monospace;
}

.small
{
	font-size: 0.9em;
}

/* Colour and borders */

h1, h2, h3, h4, h5, h6
{
	color: #333;
}

a:link
{
	color: #996633;
}

a:visited
{
	color: #996633;
}

a:hover, a:active
{
	color: #663333;
}

input, textarea, select
{
	border: 1px solid #999;
	background-color: #FAFAF0;
	color: #3A291F;
}

blockquote
{
	border-left: 4px solid #E8E8CE;
}

code
{
	color: #666;
}

.small
{
	color: #999;
}

/********************** Header **********************/

/* Structure */

#header *
{
	padding: 0px;
	margin: 0px;
	border: 0px;
}


/* Colour and borders */

#header
{
	background-color: #FFF;
}


/******************* Main Content *******************/

#maincontentpad {
	padding-left: 29px;
	padding-right: 29px;
}

#col2 h1, h2
{
	bottom: 20px;
	margin: 0px;
	color: #996633;
	font-family: Arial,Helvetica,sans-serif;
	font-style: normal;
	font-variant: normal;
	font-weight: bold;
	font-size: 1.2em;
	line-height: 1.2em;
}

#col2 h3
{
	color: #777777;
	font-family: Arial,Helvetica,sans-serif;
	font-style: italic;
	font-variant: normal;
	font-weight: normal;
	font-size: 1.1em;
	line-height: 1.1em;
}

#col2 .subtitle
{
	color: #777777;
	font-family: Arial,Helvetica,sans-serif;
	font-style: italic;
	font-variant: normal;
	font-weight: normal;
	font-size: 1.1em;
	line-height: 1.1em;
	text-align: right;
}
/********** Previous and Next by Catagory ***********/

/* Structure */

#postnavigation
{
	display: inline;
	float: right;
	margin: 0px 0px 5px 5px;
	padding: 0em 0.5em 0em 0.5em;
}

#postnavigation ul
{
	margin: 0;
	padding: 0;
}

#postnavigation li
{
	margin-left: 1.0em;
}

#postnavigation .navheader
{
	margin-left: 0em;
}

/* Typography */
#postnavigation
{
	font-size: 0.75em;
}

#postnavigation .navheader
{
	font-size: 1.25em;
	font-weight: bolder;
}

/* Colour and Borders */

#postnavigation
{
	border: 1px solid #E8E8CE;
	background-color: #FAFAF0;
}

#postnavigation .navheader
{
	color: #333;
	list-style-type: none;
}

#postnavigation ul
{
	list-style-type: none;
}

/******************* Left Sidebar *******************/

/* Structure */

#leftsidebar h2
{
	display: inline;
	margin: 0.6em 0 0.3em 0;
	padding: 0 8px 0 0;
}

#leftsidebar page_item ul
{
	margin: 0 0 0 35px;
	padding: 0;
	list-style-type: none;
}


/* Typography */

#leftsidebar
{
	font-size: 1.0em;
	font-variant: normal;
	text-align:right;
}

#leftsidebar h2
{
	font-size: 1.0em;
}

#leftsidebar ul
{
	list-style-type: none;
}

/* Colour and Borders */

#leftsidebar a
{
	color: #996633;
}
#leftsidebar ul li a:hover
{
	color: #996633;
	padding-left: 12px;
	background-repeat: no-repeat;
	background-position: left center;
	background-image: url(images/background_nav_pointer.jpg);
}

#leftsidebar p
{
	color: #999;
}

#leftsidebar ul li
{
	font-size:1.0em;
	font-weight: normal;
	line-height: 25px;
	border-bottom: solid 1px #CCC;
	margin-top: 10px;
	margin-left: 10px;
	padding-bottom: 10px;
}
/* GTG should be able to do something with current_page_item */
.current_page_item  {
	color: #663300;
}
#leftsidebar .current_page_item  a {
	/* color: #663300; */
	color: #996633;
	font-weight: bold;
	padding-left: 12px;
	background-repeat: no-repeat;
	background-position: left center;
	background-image: url(images/background_nav_pointer.jpg);
}
/*
#leftsidebar ul ul
{
	border-top: 1px solid #E8E8CE;
	background-color: #FAFAF0;
}

#leftsidebar ul ul li
{
/*	border-bottom: 1px solid #E8E8CE;
}

#leftsidebar ul ul li a:hover
{
	background-color: #FFF;
}

#leftsidebar ul ul ul
{
	border: none;
}
#leftsidebar ul ul ul li
{
	border-bottom: none;
	border-top: 1px solid #E8E8CE;
}
*/

/****************** Right Sidebar *******************/

#rightsidebarpad {
	padding-left: 25px;
	padding-right: 25px;
	padding-top: 3px;
	padding-bottom: 0px;
}

#rightsidebar h2
{
	display: inline;
	margin: 0.6em 0 0.3em 0;
	padding: 0 10px 0 0;
}

#rightsidebar p
{
	font-family: Arial,Helvetica,sans-serif;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	font-size: 0.9em;
	line-height: 2em;
	color: #333;
}

#rightsidebar h3
{
	font-family: Arial,Helvetica,sans-serif;
	font-style: normal;
	font-variant: normal;
	font-weight: bold;
	font-size: 12px;
	line-height: 12px;
	text-transform: uppercase;
	color: #996633;
}

#rightsidebar h4
{
	font-family: Arial,Helvetica,sans-serif;
	font-style: italic;
	font-variant: normal;
	font-weight: bold;
	font-size: 11pt;
	line-height: 14pt;
	color: #996633;
}

#rightsidebar h5
{
	font-family: Arial,Helvetica,sans-serif;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	font-size: 1em; 
	text-align: right;
	padding: 0 20px 0 0;
	line-height: 5pt;
	color: #333333;
}

#rightsidebar ul
{
	margin: .25em 0 1em 2em;
	padding: 0;
	font-family: Arial,Helvetica,sans-serif;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	font-size: 0.9em; 
	line-height: 1.2em;
	color: #333;
}

#rightsidebar ul ul
{
	margin: 0;
}
#rightsidebar ul li
{
	margin: 5px 0 5px 0px;
	padding: 0 0 0 0px;
}

#rightsidebar ul ul li
{
	padding: 0 0 0 10px;
}

#rightsidebar ul ul li a
{
	display: block;
	margin: 0 0 0 -10px;
	padding: 0em 10px;
	width: 130px;
}
html>body #rightsidebar ul ul li a
{
	width: 110px;
}

#rightsidebar ul ul ul
{
	margin: 0;
}

#rightsidebar ul ul ul li
{
	margin: 0 0 0 -10px;
	padding: 0 0 0 25px;
}

#rightsidebar ul ul ul li a
{
	margin: 0 0 0 -25px;
	padding: 0em 10px 0em 25px;
	width: 130px;
}

html>body #rightsidebar ul ul ul li a
{
	width: 95px;
}

#rightsidebar hr 
{
	color: #999;
	background-color: #999;
	margin-top: 5px;
	margin-bottom: 10px;
	height: 1px;
	width: 180px;
	text-align: center;
}

/********************** Footer **********************/

#footer
{
	clear: both;
	text-align: left;
	margin-left: 30px;
}

#footer p {
	padding:0px;
	color:#996633;
	font:normal .75em/.75em Arial,Helvetica,sans-serif;
	letter-spacing:.01em;
	text-align: left;
}

#footer p a {
	color: #996633;
	letter-spacing:.05em;
}


/******************* Search Widget ******************/

/* Structure */

#searchform
{
	display: inline;
	color: #666633;
}

#searchform #s
{
	width: 180px;
}

/******************* Thumbs Widget ******************/

/* Structure */

#photopress_randomthumbs
{
	width: 100%;
	margin: 0.5em 0 0 0;
	padding: 0;
}

/* Typography */

#photopress_randomthumbs
{
	text-align: center;
}

/***************** Calendar Styles ******************/

/* Structure */

#wp-calendar
{
	margin: 0 0 1.2em 0;
	width: 130px;
}
html>body #wp-calendar
{
	width: 128px;
}

#wp-calendar caption
{
	margin: 1.2em 0 0 0;
	padding: 0.4em 0;
}

#wp-calendar td a
{
	display: block;
	width: 100%;
	text-decoration: underline;
}

#wp-calendar td#next,
#wp-calendar td#prev
{
	padding: 0.1em 2px;
}

#wp-calendar td#next a,
#wp-calendar td#prev a
{
	display: inline;
}

/* Typography */

#wp-calendar
{
	font-size: 0.8em;
	line-height: 1.2em;
	text-align: center;
}

#wp-calendar caption
{
	font-size: 12px;
	font-weight: bold;
	text-align: left;
	text-transform: uppercase;
}

#wp-calendar td#next
{
	text-align: right;
}

#wp-calendar td#prev
{
	text-align: left;
}

/* Colour and borders */

#wp-calendar
{
	/* border: 1px solid #E8E8CE; */
	/* background: #FAFAF0; */
}

#wp-calendar caption
{
	color: #FFF;
}

#wp-calendar td
{
	border: 0;
	border-collapse: collapse;
	/* background: #FFF; */
}

#wp-calendar td.pad
{
	background: transparent;
}

#wp-calendar td#next,
#wp-calendar td#prev
{
	background: transparent;
}

/********************** Blog ************************/

/* Structure */
.postentry,
.postfeedback
{
	margin-left: 0;
}

.posttitle
{
	margin-bottom: 0;
	width: 100%;
	overflow: auto;
	/* Width and overflow to clear '.posttitle a' */
}

.posttitle a
{
	float: left;
	padding: 0px;
}

.postmeta
{
	margin-top: 0;
	padding-top: 1px;
}

.permalink
{
	margin: 0 1.8em 0 0;
	padding: 0 0 0 14px;
}

.commentslink,
.trackbacklink
{
	margin: 0 1.8em 0 0;
	padding: 0 0 0 17px;
}

/* Typography */

.postmeta
{
	font-size: 0.9em;
}

/* Colour and borders */

.posttitle
{
	color: #996633;
}

.posttitle a:link,
.posttitle a:visited
{
	color: #996633;
}

.posttitle a:hover,
.posttitle a:active
{
	color: #663333;
}

.postmeta
{
	background: url(images/postmeta.gif) no-repeat top left;
	color: #999;
}

.postmeta .postauthor
{
	color: #666;
}

.permalink
{
	background: url(images/permalink.gif) no-repeat center left;
}

.commentslink,
.trackbacklink
{
	background: url(images/commentslink.gif) no-repeat center left;
}

/******************** Comments **********************/

/* Structure */

#comments
{
	float: left;
	margin: 0em;
	padding-bottom: 0.5em;
}

#commentlist
{
	clear:left;
	margin: 0em;
	padding: 0;
}

#commentlist li
{
	padding: 1px 20px 20px 20px;
}

.comment-author
{
	margin: 0.5em 0em 0em 0em;
}

.comment-meta
{
	margin-top: 0px;
}

#comment
{
	width: 98%;
}
.comment-author .avatar
{
	float:left;
	margin: 0px 10px 5px 0px;
}

.reply
{
	display: block;
	margin-top: -1.8em;
}

#cancel-comment-reply
{
	margin-right: 2em;
}

#respond
{
	clear: both;
	margin-top: 10px;
}

.navigation-bottom
{
	height: 1em;
	margin-top: 5px;
	margin-bottom: 15px;
}

.navigation-top
{
	height: 1em;
	margin: 0px;
	padding-top: 1em;
}

.navigation-bottom p
{
	margin-top: 0px;
	margin-bottom: 0px;
}

.navigation-top p
{
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Typography */

.children,
#commentlist
{
	list-style-type: none;
}

.comment-author
{
	font-size: 1.1em;
	font-family: "Lucida Grande", Tahoma, Arial, sans-serif;
	font-style: normal;
	font-weight: bold;
}

.fn
{
	font-style: normal;
}

.comment-meta
{
	font-size: 0.9em;
}

.reply
{
	font-size: smaller;
	text-align: right;
}

/* Colour and borders */

#commentlist
{
	border-bottom: 1px solid #E8E8CE;
}

#commentlist li
{
	border-top: 1px solid #E8E8CE;
	background-color: #FFF;
}

.comment-author
{
	color: #333;
}

.alt
{
	background-color: #FAFAF0 !important;
}

.comment-meta
{
	color: #999;
}

.bypostauthor
{
	background-color: #F0F0F0 !important;
}

li #respond
{
	/*border-top: 1px solid #E8E8CE;*/
	border-top: 1px solid black;
}

/********************* Images ***********************/
p img
{
	padding: 0;
	max-width: 100%;
}

/*
	Using 'class="alignright"' on an image will (who would've
	thought?!) align the image to the right. And using 'class="centered',
	will of course center the image. This is much better than using
	align="center", being much more futureproof (and valid)
*/

.aligncenter,
div.aligncenter,
img.centered
{
	display: block;
	margin-left: auto;
	margin-right: auto;
}

img.alignright
{
	padding: 4px;
	margin: 0 0 2px 7px;
	display: inline;
}

img.alignleft
{
	padding: 4px;
	margin: 0 7px 2px 0;
	display: inline;
}

.alignright
{
	float: right;
}

.alignleft
{
	float: left
}

.reallysmallthumbs a img
{
	width: 60px;
	height:60px;
	float: left;
	margin: 1px;
}

/******************* Geo Mashup *********************/
.locationinfo
{
	overflow:auto;
	height:195px;
	width:320px;
	font-size:70%;

	/* used to allow room for the info window x icon */
	margin: 0px 10px 0px 0px;
}

.locationinfo h2 a
{
	margin: 0px;
}

.locationinfo p
{
	margin: 0px;
}

.locationinfo img
{
	height:108px;
	width:auto;
}

/********************* Sociable *********************/
.sociable_tagline
{
	display: none;
}

.sociable ul
{
	margin: 0;
	padding: 0;
}

.sociable
{
	margin: 0em 0em -1em 0em;
}

.sociable li
{
	background: none;
	display: inline;
	list-style-type: none;
	margin: 0;
	padding: 0px 1px 0px 1px;
}

/***************** Twitter Widget *******************/
#twitter-list
{
	font-size: 0.9em;
}

/*************** Vipers Plugins Used ****************/
/* Structure */
#viperplugintable
{
	margin: 0px;
	padding: 0px;
}

#viperplugintable td
{
	padding: 3px;
}

/* Typography */
.pluginrow,
.pluginrowalt
{
	font-size: 0.9em;
}

/* Colour and borders */
.pluginrowalt
{
	background-color: #FAFAF0;
}

#viperplugintable
{
	border-right: 1px solid black;
	border-bottom: 1px solid black;
}

#viperplugintable td,
#viperplugintable th
{
	border-left: 1px solid black;
	border-top: 1px solid black;
}

/****************** Holly Hacks *********************/

/* holly hacks to fix peekabo bugs in IE */

/* Hides from IE5-mac \*/
* html li {height: 1%;}
/* End hide from IE5-mac */

/* Hides from IE5-mac \*/
* html #postnavigation {width: 145px; height: 2px;}
/* End hide from IE5-mac */

/***************** Special Cases *******************/


#navform a:hover
{
	color: #000;
	background-color: #999;
	background-image: none;
}

#search-submit {
	background-image: url(images/background_border.jpg);
}
#contactpage {
	background-image: url(images/background_contact_form.jpg);
	width: 450px;
}
#contactpagepad {
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
	padding-right: 15px;
}

input.groovybutton1
{
   font-size:11px;
   font-family:Verdana,sans-serif;
   color:#666666;
   width:75px;
   height:25px;
  /* background-image:url(<?php bloginfo('template_directory'); ?>/images/background_contact_form.jpg); */
   background-color:#CCCCCC;
   border-style:none;
   border-color:#003377;
   border-width:1px;
   margin: 0px;

}

input.groovybutton2
{
   font-size:11px;
   font-family:Verdana,sans-serif;
   color:#FFFFFF;
   width:75px;
   height:25px;
   background-image:url(images/background_website_blog_home.jpg);
   border-style:none;
   border-color:#003377;
   border-width:1px;
   margin: 0px;
}

#header-topline {
	position: relative;
	float: left;
	top: 0px;
	left: 0px;
	width:100%;
	padding:0px;
	margin:0px;
	height: 7px;
	overflow:hidden;
}
#header-main {
	position: relative;
	float: left;
	top: 0px;
	left: 0px;
	width:100%;
	padding:0px;
	margin:0px;
	height: 124px;
	overflow:hidden;
}
#header-underline {
	position: relative;
	float: left;
	top: 0px;
	left: 0px;
	width:100%;
	padding:0px;
	margin:0px;
	height: 7px;
	overflow:hidden;
}