     /*  
Theme Name: Wishaw Golf Club
Theme URI: http://www.barques.co.uk
Description: Theme for Wishaw Golf Club by <a href="http://www.barques.co.uk">Barques</a>
Version: 2.0
Author: David Elliott
Author URI: http://www.barques.co.uk

*/
body {
	margin: 0;
	padding: 0;
	color: #000;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 18px;
	background-color: #C4BFAC;
	background-image: url(images/wishawbg.jpg);
	background-repeat: repeat-x;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin: 0px;
	padding: 0px;
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
	margin: 0px;
	padding: 0px;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a {
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
	color:#033;
}

a:hover { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/* ~~ This fixed width container surrounds all other divs ~~ */
.container {
	width: 960px;
	background: #FFFFFF;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}

/* ~~ The header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo. ~~ */
.header {
	background-color: #292B2D;
	height: 120px;
	background-image: url(images/wishaw2010-header.jpg);
	background-repeat: repeat-x;
}

/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.

3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.

4) If you prefer your nav on the right instead of the left, simply float these columns the opposite direction (all right instead of all left) and they'll render in reverse order. There's no need to move the divs around in the HTML source.

*/
.sidebar1 {
	float: left;
	width: 150px;
	padding-bottom: 10px;
	background-color: #FFF;
	padding-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 15px;
	_margin-left: 5px;
	padding-top: 5px;
	padding-right: 0px;
}
.content {
	width: 575px;
	float: left;
	margin-right: 9px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
	margin-left: 9px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: dotted;
	border-left-style: dotted;
	border-right-color: #42433B;
	border-left-color: #42433B;
	margin-top: 10px;
	margin-bottom: 10px;
}
.sidebar2 {
	float: left;
	width: 190px;
	background-color: #FFF;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
.sidebar1 ul,
.sidebar2 ul {
	list-style: none; /* this removes the list marker */
	margin-bottom: 10px;
}

.sidebar1 ul.nav a { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	display: block; /* this gives the anchor block properties so it fills out the whole LI that contains it so that the entire area reacts to a mouse click. */
	width: 145px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
	text-decoration: none;
	background-color: #FFF;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #999;
	padding-top: 3px;
	padding-right: 0px;
	padding-bottom: 3px;
	padding-left: 0px;
	margin-left: 0px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #333;
}

.sidebar2 ul.nav a { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	display: block; /* this gives the anchor block properties so it fills out the whole LI that contains it so that the entire area reacts to a mouse click. */
	width: 190px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
	text-decoration: none;
	background-color: #FFF;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #999;
	padding-top: 3px;
	padding-right: 0px;
	padding-bottom: 3px;
	padding-left: 0px;
	margin-left: 0px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #333;
	list-style:none;
}

.sidebar1 ul.nav li ul a { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	display: block; /* this gives the anchor block properties so it fills out the whole LI that contains it so that the entire area reacts to a mouse click. */
	width: 135px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
	text-decoration: none;
	background-color: #FFF;
	border-bottom-width: 0px;
	border-bottom-style: dotted;
	border-bottom-color: #999;
	padding-top: 2px;
	padding-right: 0px;
	padding-bottom: 2px;
	padding-left: 10px;
	margin-left: 0px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #333;
	line-height: 14px;
	list-style:none;
}
 
.sidebar2 ul.nav li ul a { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	display: block; /* this gives the anchor block properties so it fills out the whole LI that contains it so that the entire area reacts to a mouse click. */
	width: 175px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
	text-decoration: none;
	background-color: #FFF;
	border-bottom-width: 0px;
	border-bottom-style: dotted;
	border-bottom-color: #999;
	padding-top: 2px;
	padding-right: 0px;
	padding-bottom: 2px;
	padding-left: 10px;
	margin-left: 0px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #333;
	line-height: 14px;
	list-style:none;
}
.sidebar1 ul.nav li h4 ,
.sidebar2 ul.nav li h4{ /* grouping these selectors makes sure that your links retain their button look even after being visited */
	display: block; /* this gives the anchor block properties so it fills out the whole LI that contains it so that the entire area reacts to a mouse click. */
	width: 145px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
	text-decoration: none;
	background-color: #FFF;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #999;
	padding-top: 3px;
	padding-right: 0px;
	padding-bottom: 3px;
	padding-left: 0px;
	margin-left: 0px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #1798CD;
	font-weight: lighter;
	text-transform: uppercase;
}

.sidebar1 ul.nav a:hover,
.sidebar2 ul.nav a:hover { /* this changes the background and text color for both mouse and keyboard navigators */
	 color: #91B136;
}

/* ~~ The footer styles ~~ */
.footer {
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
	color: #999;
	background-color: #363530;
	font-size: 11px;
	height: 30px;
	padding: 10px;
	width: 940px;
	text-align:center;
}
.footer a {
	
	
	color: #999;
	text-decoration:none;
}
.footer a:hover {
	
	
	color: #fff;
}


/* ~~ Miscellaneous float/clear classes ~~ */
.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-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the .container) if the .footer is removed or taken out of the .container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
.topMenuBox {
	float:left;
	height: 30px;
	text-align: center;
	display: inline-block;
	padding-left: 440px;
	width: 350px;
	}
.menuBox {
	float:left;
	width: 790px;
	height: 50px;
	margin-top: 18px;
	}
.menuBox .buttonNav  ul {
	list-style: none;
	margin: 0;
	list-style-type: none;
}
.menuBox .buttonNav  li {
	float: left;
	position: relative;
	list-style-type: none;
}
.menuBox .buttonNav li a {
	/* MENU link */
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 11px;
	text-transform: uppercase;
	text-decoration: none;
	color: #FFF;
	list-style-type: none;
	display: block;
	margin: 0px;
	font-weight: lighter;
	padding-top: 20px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	height: 30px;
	text-align: center;
	line-height: 11px;
	width: 112px;
	display:block;
}
.menuBox ul.buttonNav li.bullion a {
	background-image:url(images/bullion.gif);
	background-repeat:no-repeat;
	}
.menuBox ul.buttonNav li.rings a {
	background-image:url(images/rings.gif);
	background-repeat:no-repeat;
	}
.menuBox ul.buttonNav li.findings a {
	background-image:url(images/findings.gif);
	background-repeat:no-repeat;
	}
.menuBox ul.buttonNav li.mounts a {
	background-image:url(images/mounts.gif);
	background-repeat:no-repeat;
	}
.menuBox ul.buttonNav li.jewellery a {
	background-image:url(images/jewellery.gif);
	background-repeat:no-repeat;
	}
.menuBox ul.buttonNav li.tools a {
	background-image:url(images/tools.gif);
	background-repeat:no-repeat;
	}
.menuBox ul.buttonNav li.services a {
	background-image:url(images/services.gif);
	background-repeat:no-repeat;
	}
.menuBox ul.buttonNav li.bullion a:hover,
.menuBox ul.buttonNav li.rings a:hover,
.menuBox ul.buttonNav li.findings a:hover,
.menuBox ul.buttonNav li.mounts a:hover,
.menuBox ul.buttonNav li.jewellery a:hover,
.menuBox ul.buttonNav li.tools a:hover,
.menuBox ul.buttonNav li.services a:hover, {
	background-image:url(images/white.gif);
	background-repeat:no-repeat;
	color:#000;
	}
.logoBox {
	float:left;
	}
/* MENU TOP
----------------------------------------------------------------------------------------------- */

.topMenuBox {
	/* MENU Box */
	text-align: center;
	display: inline-block;
	margin-top: 15px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	position: relative;
	float: left;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
}
.topMenuBox  ul {
	list-style: none;
	margin: 0;
}
.topMenuBox li {
	float: left;
	position: relative;
}
.topMenuBox a {
	/* MENU link */
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 11px;
	text-transform: uppercase;
	text-decoration: none;
	color: #FFF;
	list-style-type: none;
	display: block;
	border-left-width: 1px;
	border-left-style: dotted;
	border-left-color: #999;
	margin: 0px;
	font-weight: lighter;
	padding-top: 1px;
	padding-right: 8px;
	padding-bottom: 1px;
	padding-left: 8px;
}
.topMenuBox li:hover > a {
	/* MENU hover */
	color: #000 !important;
	background-color: #fff;
}

.topMenuBox ul li ul {
	/* SUBmenu */
	display: none;
	position: absolute;
	top: 22px;
	left: 0;
	float: left;
	width: 180px;
	z-index: 99999;
	background: #00326F;
	text-align:left;
	font-size:12px;
}
.topMenuBox ul li ul li {
	/* individual SUBmenu item */
	min-width: 180px;
	border-bottom:#69C 1px dotted;
}
.topMenuBox ul li ul a {
	/* SUBmenu link */
	background: #00326F;
	line-height: 1em;
	padding: 10px;
	width: 160px;
	height: auto;
	text-align:left;
	font-size:11px !important;
}
.topMenuBox ul li ul :hover > a {
	/* SUBmenu hover */
	color: #06225D !important;
	background-color: #fff;
}

.topMenuBox ul li ul ul {
	left: 100%;
	top: 0;
}

.topMenuBox ul li:hover > ul {
	display: block;
}
.topMenuBox ul li.current_page_item > a,
.topMenuBox ul li.current-menu-item > a {
	color:#FFF;
	text-decoration: none;
	background-color: #666;	
}
* html .topMenuBox ul li.current_page_item a,
* html .topMenuBox ul li.current-menu-item a,
* html .topMenuBox ul li a:hover {
	color: #fff;
}

/* end MENU TOP ------------------ */

/* SIDEBAR 2 ------------------ */

.sidebar2 h3 {
	display: block;
	margin-top: 5px;
	margin-bottom: 5px;
	background-color: #4E4D48;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 13px;
	text-transform: uppercase;
	color: #FFF;
	font-weight: lighter;
	padding-top: 8px;
	padding-right: 5px;
	padding-bottom: 8px;
	padding-left: 5px;
	background-image: url(images/main-header.gif);
	background-repeat: repeat-x;
	}
.sidebar2 h4 {
	display: block;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 11px;
	text-transform: uppercase;
	color: #FE2C66;
	font-weight: lighter;
	padding-bottom: 5px;
	line-height: 12px;
	}
.sidebar2 p, .sidebar1 p {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 15px;
	color: #666;
	padding-bottom: 5px;		
	}
.sidebar2 a {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 15px;
	color: #666;		
	}

/* end SIDEBAR 2 ------------------ */
/* CONTENT ------------------ */

.content h1 {
	display: block;
	margin-top: 0px;
	margin-bottom: 5px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 16px;
	text-transform: uppercase;
	color: #FFF;
	font-weight: lighter;
	padding-top: 8px;
	padding-right: 10px;
	padding-bottom: 8px;
	padding-left: 10px;
	background-image:url(images/main-header.gif);
	background-color: #4E4D48;
	background-repeat: repeat-x;
	}
.back {
	display: block;
	margin-top: 5px;
	margin-bottom: 5px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 14px;
	text-transform: capitalize;
	color: #FFF;
	font-weight: lighter;
	padding-top: 8px;
	padding-right: 10px;
	padding-bottom: 8px;
	padding-left: 10px;
	background-image:url(images/blue-header.gif);
	}
.back a {
	color:#FFF !important;
	text-decoration:none;
	}
.back a:hover {
	color:#000 !important;
	text-decoration:none;
	}
.content h1 a {
	color:#FFF;
	text-decoration:none;
	}
.content h1 a:hover {
	color:#000;
	text-decoration:none;
	}
.content h2 {
	display: block;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 16px;
	text-transform: uppercase;
	color: #4E4D48;
	font-weight: lighter;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 0px;
	border-bottom-width: 2px;
	border-bottom-style: dotted;
	border-bottom-color: #4E4D48;
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 10px;
	}
.blogTitle {
	display: block;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 22px;
	text-transform: uppercase;
	color: #6F6D66;
	font-weight: lighter;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 0px;
	margin: 0px;
	}
.content h3 {
	display: block;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 14px;
	text-transform: capitalize;
	color: #91B136;
	font-weight: bold;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
	margin: 0px;
	}
.content h4 {
	display: block;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-transform: capitalize;
	color: #91B136;
	font-weight: bold;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
	margin: 0px;
	}
.content h5 {
	display: block;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 11px;
	text-transform: uppercase;
	color: #91B136;
	font-weight: lighter;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
	margin: 0px;
	}
.content h6 {
	display: block;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 13px;
	text-transform: capitalize;
	color: #FFF;
	font-weight: lighter;
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 3px;
	margin-left: 10px;
	padding: 5px;
	background-color: #91B136;
	}

.content p {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 18px;
	padding-bottom: 5px;
	padding-right: 10px;
	padding-left: 10px;
	}
.content a {
	color: #76736C;
	}
.content address {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 18px;
	padding-bottom: 5px;
	padding-right: 10px;
	padding-left: 10px;
	}
.content pre {
	font-size: 12px;
	line-height: 13px;
	padding-bottom: 0px;
	padding-right: 10px;
	padding-left: 10px;
	}
/* end SIDEBAR 2 ------------------ */
/* Captions */
.aligncenter,
div.aligncenter {
display: block;
margin-left: auto;
margin-right: auto;
}

.wp-caption {
	text-align: center;
	background-color: #C4BFAC;
	padding-top: 5px;
	color: #FFFFFF;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
}

.wp-caption p.wp-caption-text {
	text-align: center !important;
	color: #FFFFFF !important;
	font-size: 11px !important;
	margin-top: 0px !important;
	margin-bottom: 0px  !important;
	padding-top: 0px  !important;
	padding-right: 3px  !important;
	padding-bottom: 5px  !important;
	padding-left: 3px  !important;
}
.wp-caption img {
	padding: 0px;
	border: 0 none;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;

}
.page .wp-caption img, .single .wp-caption img  {
	border: 0 none;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 3px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 5px;
	padding-bottom: 0px;
	padding-left: 5px;
}

.wp-caption p.wp-caption-text {
	font-size: 11px;
	line-height: 14px;
	padding: 5px;
	margin: 0;
	color:#FFFFFF;
}
.wp-caption p.wp-caption-text a {

	color:#FFFFFF !important;
	
}
.wp-caption p.wp-caption-text a:hover {

	color:#000000 !important;
	
}
.left, .alignleft {
	float:left;
	border: 1px solid #FFFFFF;
	}

.right, .alignright {
	float:right;
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 10px;
	margin-left: 10px;
	color: #FFFFFF;
	padding: 0px;
	}
/* End Captions */
.postBox {
	padding:0px;
	float: left;
	width: 400px;
	margin: 0px;
	}
.team .postBox {
	padding:0px;
	float: left;
	width: 475px;
	margin: 0px;
	}
.team .contentBox {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #1798CD;
	padding-top: 3px;
	padding-right: 0px;
	padding-bottom: 3px;
	padding-left: 0px;
	border-top-width: 1px;
	border-top-style: dotted;
	border-top-color: #1798CD;
	}

.team .contentBox .postBox h1 {
	display: block;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 16px;
	text-transform: uppercase;
	color: #91B136;
	font-weight: lighter;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 10px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	background-image: none;
	}
.team .content h1 {
	display: block;
	margin-top: 5px;
	margin-bottom: 5px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 16px;
	text-transform: uppercase;
	color: #FFF !important;
	font-weight: lighter;
	padding-top: 8px;
	padding-right: 10px;
	padding-bottom: 8px;
	padding-left: 10px;
	}
.team .postBox h1 a {
	color:#91B136;
	text-decoration:none;
	}
.team .postBox h1 a:hover {
	color:#000;
	text-decoration:none;
	}
	.postBox h2 a {
	padding:0px;
	margin-bottom: 0px;
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	text-decoration: none;
	font-size: 18px;
	text-transform: uppercase;
	line-height: 14px;
	}
	.postBox h2 a:hover {
		color:#FFF;
	}
.meta {
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #999;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 3px;
	padding-left: 10px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #999;
	text-transform: uppercase;
	}


/* FOOTER MENU ------------------ */

.footerMenu {
	/* MENU Box */
	text-align: center;
	display: block;
	position: relative;
	float: left;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 15px;
	width: 935px;
}
.footerMenu  ul {
	list-style: none;
	margin: 0;
}
.footerMenu li {
	float: left;
	position: relative;
}
.footerMenu a {
	/* MENU link */
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 11px;
	text-transform: capitalize;
	text-decoration: none;
	color: #999;
	list-style-type: none;
	display: block;
	border-left-width: 1px;
	border-left-style: dotted;
	border-left-color: #999;
	margin: 0px;
	font-weight: lighter;
	padding-top: 1px;
	padding-right: 8px;
	padding-bottom: 1px;
	padding-left: 8px;
}
.footerMenu li:hover > a {
	/* MENU hover */
	color: #000 !important;
	background-color: #fff;
}

.footerMenu ul li ul {
	/* SUBmenu */
	display: none;
	position: absolute;
	top: 22px;
	left: 0;
	float: left;
	width: 180px;
	z-index: 99999;
	background: #00326F;
	text-align:left;
	font-size:12px;
}
.footerMenu ul li ul li {
	/* individual SUBmenu item */
	min-width: 180px;
	border-bottom:#69C 1px dotted;
}
.footerMenu ul li ul a {
	/* SUBmenu link */
	background: #00326F;
	line-height: 1em;
	padding: 10px;
	width: 160px;
	height: auto;
	text-align:left;
	font-size:11px !important;
}
.footerMenu ul li ul :hover > a {
	/* SUBmenu hover */
	color: #06225D !important;
	background-color: #fff;
}

.footerMenu ul li ul ul {
	left: 100%;
	top: 0;
}

.footerMenu ul li:hover > ul {
	display: block;
}
.footerMenu ul li.current_page_item > a,
.footerMenu ul li.current-menu-item > a {
	color:#999;
	text-decoration: none;
	background-color: #333;
}
* html .footerMenu ul li.current_page_item a,
* html .footerMenu ul li.current-menu-item a,
* html .footerMenu ul li a:hover {
	color: #fff;
}

/* end FOOTER MENU ------------------ */
.widgetBox blockquote {
	display: block;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 3px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 3px;
	padding-left: 0px;
	}
.widgetBox ul {
	list-style: none;
	padding:0px;
	margin:0px;
	}
.widgetBox ul li {
	list-style: none;
	display: block;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 4px;
	margin-left: 0px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #999;
	}
.widgetBox ul li a {
	list-style: none;
	color:#333;
	text-transform: capitalize;
	}
	
	
	
h4.faq-header {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 16px;
	text-decoration: none !important;
	color: #666 !important;
	font-weight: bold;
	line-height: 18px;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
	text-transform: uppercase !important;
}

.faq-question a {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 14px;
	text-decoration: none !important;
	color: #1798CD !important;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 0px;
	display: block;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #999999;
	font-weight: bold;
	margin: 0px;
}
.faq-answer {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-decoration: none;
	color: #333333;
	display: block;
	font-weight: normal;
	line-height: 18px;
	padding: 5px;
	background-color: #ffffff;
	margin-top: 0px;
	margin-right: 2px;
	margin-bottom: 20px;
	margin-left: 2px;
}
 .thrColFixHdr #navigation {
	
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin:10px;
	padding:10px;

} 
.thumbbox {
	width:150px;
	float: left;
	padding-bottom: 10px;
	padding-left: 10px;
	padding-top: 4px;
	}
.team .thumbbox {
	width:98px;
	float: left;
	padding-bottom: 0px;
	}
.singleteam .thumbbox {
	width:190px;
	float: left;
	padding-bottom: 10px;
	}
	.featuredPosts {
	padding-bottom:5px;
	padding-top:0px;
	float:left;
	padding-left: 10px;
	margin: 0px;
	padding-right: 0px;
	}
	.callusBox {
	height: 240px;
	margin: 0px;
	padding: 0px;
	}
.callusSq {
	padding-bottom:5px;
	width:180px;
	height:180px;
	border: 3px #999 solid;
	float: left;
	margin-right: 2px;
	margin-left: 3px;
	_margin-right: 1px;
	_margin-left: 1px;
	}
.callusSq h5 {
	display: block;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 16px;
	text-transform: uppercase;
	color: #91B136;
	font-weight: lighter;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	margin: 0px;
	}
.callusSq h5 a {

	color: #91B136;
	text-decoration:none;

	}
.callusSq h5 a:hover {

	color: #000;
	text-decoration:none;

	}	
.callusSq p {
	display: block;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #666;
	font-weight: lighter;
	padding-top: 2px;
	padding-right: 5px;
	padding-bottom: 0px;
	padding-left: 5px;
	margin: 0px;
	line-height: 13px;
	}
.callusSq .craftysyntax {
	display: block;
	font-weight: lighter;
	padding-top: 15px;
	padding-right: 5px;
	padding-bottom: 0px;
	padding-left: 18px;
	margin: 0px;
	line-height: 13px;
	height: 95px;
	}
	
.callusSq p a {
	
	color: #666;
	text-decoration:none;
	
	}
.callusSq p a:hover {
	
	color: #000;
	text-decoration:none;
	
	}
	
	
	
.contentBoxhome {
	padding-bottom:5px;
	width:180px;
	border: 3px #999 solid;
	float: left;
	margin-right: 2px;
	margin-left: 3px;
	margin-top: 5px;
	margin-bottom: 5px;
	padding-top: 0px;
	padding-right: 0px;
	padding-left: 0px;
	height: 270px;
	_margin-right: 1px;
	_margin-left: 1px;
	background-color: #1590C5;
	}
.contentBoxhome h3 {
	display: block;
	background-color: #91B136;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 14px;
	text-transform: uppercase;
	color: #FFF;
	font-weight: lighter;
	background-image: url(images/blue-header.gif);
	background-repeat: repeat-x;
	margin: 0px;
	padding: 5px;
	}
.contentBoxhome h3 a {

	color: #FFF;
	text-decoration:none;

	}
.contentBoxhome h3 a:hover {

	color: #000;
	text-decoration:none;

	}	
.postBoxhome {
	display: block;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #FFF;
	font-weight: lighter;
	padding-top: 2px;
	padding-right: 5px;
	padding-bottom: 0px;
	padding-left: 5px;
	margin: 0px;
	line-height: 12px;
	background-color: #1590C5;
	overflow: hidden;
	height: 65px;
	float: left;
	width: 170px;
	}
.thumbboxhome {
	height: 180px;
	margin: 0px;
	padding: 0px;
	width: 180px;
	background-color: #333;
}
.postBoxhome p a {
	
	color: #fff;
	text-decoration:none;
	
	}
.postBoxhome p a:hover {
	
	color: #000;
	text-decoration:none;
	
	}
.jdGallery a.right, .jdGallery a.left
{
border:0;
}
/* Comments*/
#comments {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 11px;
	padding-bottom: 10px;
	padding-top: 10px;
	border-top-width: 1px;
	border-top-style: dotted;
	border-top-color: #003054;
	color: #003054;
	}
.commentlist li, #commentform input, #commentform textarea {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 11px;
	list-style:none !important;
	}
.commentlist ol {
	font-size: 11px !important;
	list-style:none !important;
	padding:0;
	margin:0;
}

.commentlist li ul li {
	font-size: 11px;
	list-style:none !important;
	padding:0 !important;
	margin:0 !important;
}

.commentlist li {
	font-weight: bold;
	list-style:none !important;
}

.commentlist li.depth-2 .comment-body,
.commentlist li.depth-3 .comment-body,
.commentlist li.depth-4 .comment-body,
.commentlist li.depth-5 .comment-body {
	background-color:#DFDACC;
	padding: 10px;
	margin-top: 2px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}


.commentlist cite, .commentlist cite a {
	font-weight: bold;
	font-style: normal;
	font-size: 12px;
	color: #7C7970;
	}

.commentlist p {
	font-weight: normal;
	text-transform: none;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 11px !important;
	}

#commentform p {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	}
.comment-author {
	font-weight: normal;
	padding-bottom: 3px;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-left: 0px;
	}
.comment-author img {
	float: right;
	border: 1px solid #eee;
	padding: 2px;
	background: #fff;
	margin-right: 0px;
	display: block;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 5px;
	}
.comment-author a{
	color:#c0d824;
	text-decoration:underline;
	}
.comment-author a:hover{
	color:#c0d824;
	text-decoration:underline;
	}
.commentmetadata {
	font-weight: normal !important;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #C4BFAC;
	padding-bottom: 3px;
	margin-bottom: 5px;
	margin-right: 0px;
	height: 20px;
	margin-top: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-left: 0px;
	}
.commentmetadata a{
	font-weight: normal;
	color:#4D4B47;
	text-decoration:none;
	}
.reply a {
	font-weight: bold;
	color:#0060cc;
	}
a.comment-reply-link  {
	font-weight: bold;
	color:#7F7C73;
	display: block;
	padding: 2px;
	}
	a:hover.comment-reply-link  {
	
	color:#000;
	
	}
a#cancel-comment-reply-link  {
	font-weight: bold;
	color:#91B153;
	display: block;
	padding: 10px;
	}
	a:hover#cancel-comment-reply-link  {
	
	color:#000;
	
	}
.commentmetadata a:hover{
	font-weight: normal;
	color:#000000;
	text-decoration:none;
	}
.comment-body {
	background-color: #F2ECDC;
	margin-right: 0px;
	margin-left: 0px;
	margin-bottom: 5px;
	padding: 5px;
	font-size: 11px;
	color: #000000;
	margin-top: 1px;
	}
.content #comments ul, .content #comments ol { 
	padding: 0 15px 15px 20px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}
/* End comments */
