/*
Theme Name: Holt Chamber of Trade
Theme URI: http://holtchamber.org
Description: Custom theme
Author: Josh.biz (based upon Twenty Ten)
Version: 1.0
Tags: 
*/


/* Reset default browser CSS. Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html
-------------------------------------------------------------- */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
	background: transparent;
}
body  {
	background: #e9dabe url(../../../images/bg.jpg) repeat-x center top;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: left; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #wrapper selector */
	color: #000000;
	font: 62.5% Arial, Helvetica, sans-serif;
}

img {
	padding: 0;
	border: solid 1px #333;
}

#wrapper {
	width: 100%;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: none;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

/* Tips for sidebar1:
1. since we are working in percentages, it's best not to use padding on the sidebar. It will be added to the width for standards compliant browsers creating an unknown actual width. 
2. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the " #sidebar1 p" rule.
3. Since Explorer calculates widths after the parent element is rendered, you may occasionally run into unexplained bugs with percentage-based columns. If you need more predictable results, you may choose to change to pixel sized columns.
*/

#left {
	float: left;
	width: 250px; /* since this element is floated, a width must be given */
}



#sidebar1 {
	padding: 30px 0 10px; /* top and bottom padding create visual space within this div  */
	background: #000000 url(../../../images/corner.png) no-repeat right bottom;
	text-align: center;
}
#sidebar1 h3,  #sidebar1 p {
	font-size: 1.4em;
	color: #FFF;
	text-align: center;
	margin: 0px 10px 6px;
	padding: 0px;
}

 #sidebar1 a:link,  #sidebar1 a:visited {
	color: #a6ca59;
	text-decoration: none;
	}
	
 #sidebar1 a:hover,  #sidebar1 a:active {
	color: #a6ca59;
	text-decoration: underline;
	}

/* Tips for mainContent:
1. the space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
2. to avoid float drop at a supported minimum 800 x 600 resolution, elements within the mainContent div should be 430px or smaller (this includes images).
3. in the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs.
*/
 #mainContent {
	margin: 0 20px 200px 290px; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. */
	padding-top: 40px;
} 

/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin: 0px 0px 20px 20px;
	border: solid 1px #333;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 20px;
	margin-bottom: 20px;
	border: solid 1px #333;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

.clearfloat2 { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:right;
    height:0;
    font-size: 1px;
    line-height: 0px;
}


h1 {
	font-family: Georgia, Times, serif;
	color: #23321F;
	font-size: 40px;
	font-weight: normal;
	margin: 0;
	padding: 0;
	line-height: 40px;
}

h1 span {
	font-size: 30px;
	color: #415f3a;
}

.single-post h1 {
	margin-bottom: 20px;
}

h2 {
	color: #415f3a;
	margin: 40px 0 0 0;
	padding: 0;
	font: normal 20px Georgia, Times, serif;
}

h2.first {
	margin: 10px 0 0 0;
	padding: 0;
}

h2.entry-title {
	background: #92634A;
	padding: 10px;
	font-size: 24px;
	margin-bottom: 10px;
}

#mainContent h2.entry-title a:link, #mainContent h2.entry-title a:visited {
	color: #fff;
	text-decoration: none;
	}
	
#mainContent h2.entry-title a:hover, #mainContent h2.entry-title a:active {
	color: #fff;
	text-decoration: underline;
	}

h3 {
	font-size: 2em;
	color: #92634A;
	font-weight: bold;
	margin: 10px 0 0 0;
	padding: 0;
	font-family: Georgia, Times, serif;
}

p {
	color: #3C3C3C;
	font-size: 1.6em;
	margin: 6px 0 20px;
	padding: 0;
	line-height: 1.4em;
}

#sidebar1 img.logo {
	margin: 0;
}

/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

 #wrapper #sidebar1 .wireframemenu {
	/*	border: 1px solid #C0C0C0;*/
	background: #000000;
	margin-left: 20px;
	width: 200px;
	margin-top: 20px;
	margin-bottom: 20px;
	text-align: left;
	}

* html  #wrapper #sidebar1 .wireframemenu { /*IE only rule. Original menu width minus all left/right paddings */
	width: 124px;
	}

 #wrapper #sidebar1 .wireframemenu ul {
	padding: 10px 0 10px 0;
	margin: 10px 0 10px 0;
	list-style-type: none;
	}

 #wrapper #sidebar1 .wireframemenu a{
	padding: 6px 10px;
	display: block;
	color: #92634A;
	text-decoration: none;
	font-size: 1.6em;
	font-weight: bold;
	background: #000000;
	width: 180px;
}

 #wrapper #sidebar1 .wireframemenu a:visited{
	color: #92634A;
}

#wrapper #sidebar1 .wireframemenu li.current_page_item a, #wrapper #sidebar1 .wireframemenu li.current_page_parent a {
	color: #E9DAD1;
}

html>body  #wrapper #sidebar1 .wireframemenu a{ /*Non IE rule*/
	width: auto;
}

 #wrapper #sidebar1 .wireframemenu a:hover{
	background-color: #333;
	color: #ffffff;
}

 #wrapper #sidebar1 p span {
	font-size: 1.6em;
}

img.photo {
	margin-right: 20px;
	margin-bottom: 20px;
	border: none;
}

#map {
	width: 300px;
	height: 400px;
	float: right;
	margin: 0 0 20px 20px;
	padding: 0;
}

#map2 {
	width: 600px;
	height: 400px;
	margin: 20px 0;
	padding: 0;
}

 #wrapper #mainContent ul {
	color: #3C3C3C;
	font-size: 1.6em;
	margin: 16px 0 0 0;
	padding: 0 0 20px 50px;
}

 #wrapper #mainContent ul li {
	margin-bottom: 6px;
}

 #wrapper #mainContent ol {
	color: #a6ca59;
	font-size: 1.6em;
	margin: 6px 0 20px 0px;
	padding: 0 0 0 50px;
}

 #wrapper #mainContent ol li {
	margin-bottom: 6px;
}

#mainContent a:link, #mainContent a:visited {
	color: #666;
	text-decoration: underline;
	}
	
#mainContent a:hover, #mainContent a:active {
	color: #666;
	text-decoration: none;
	}
	
 #wrapper #mainContent hr {
	margin-bottom: 36px;
	color: #963;
	background-color: #963;
	height: 3px;
	border: none;
	margin-top: 60px;
}

blockquote {
	float: right;
	width: 300px;
	margin: 0 0 20px 20px;
	background: #637c2d url(../images2/pullquote_top.gif) no-repeat;
	position: relative;
}

#contentArea > blockquote {
margin-right: -60px;
}

p.quoteBody {
	color: #363636;
	font-size: 1.8em;
	line-height: 1.5em;
	font-weight: bold;
	padding: 40px 10px 20px 25px;
	text-align: center;
	background: url(../images2/quotemark_bottom.gif) bottom right no-repeat;
	width: 285px;
	voice-family: "\"}\"";
	voice-family:inherit;
	width: 250px;
}

p.quoteCite {
	color: #ffffff;
	font-size: 1.4em;
	font-weight: bold;
	text-align: right;
	padding-right: 15px;
	padding-bottom: 30px;
	background: url(../images2/pullquote_bottom.gif) left bottom no-repeat;
	margin-bottom: 0;
}
 #wrapper #sidebar1 .owl {
	margin-bottom: 50px;
}
 #wrapper #sidebar1 a .logo {
	border-style: none;
}

.alignright {
	float: right;
	margin: 0 0 20px 20px;
}

.alignleft {
	float: left;
	margin: 0 20px 20px 0 ;
}

.feature {
	margin-bottom: 20px;
}

#primary {
	display: none;
}

.entry-meta, .entry-utility {
	font-size: 14px;
	margin-bottom: 20px;
}

 #wrapper #mainContent table {
	font-size: 1.6em;
	color: #3C3C3C;
	margin-top: 10px;
}

.pdf_logo {
	border: none;
}

.member_logo {
	width: 150px;
	height: 150px;
	line-height: 150px;
	background: #666;
	text-align: center;
	padding: 12px;
	float: left;
	margin: 0 10px 10px 0;
	border-bottom-right-radius: 20px;
	}

.member_logo img {
	border: none;
	vertical-align: middle;
}

.rounded {
  curvyCorners.init();
  -moz-border-bottom-right-radius:20px;
  -webkit-border-bottom-right-radius:20px;
}

.entry-utility {
	padding-top: 20px;
}

.form-allowed-tags {
	display: none;
}

.navigation {
	height: 60px;
}

.nav-previous, .nav-next {
	font-size: 16px;
	padding: 6px 0;
}

.nav-previous {
	float: left;
}

.nav-next {
	float: right;
}
