/*
File:			custom.css
Description:	Custom styles for Thesis

BASIC USAGE:

If you have enabled the custom stylesheet in the Thesis options panel, the <body> tag 
will be appended with the "custom" class, like so: <body class="custom">. You can use 
the "custom" class to override *any* CSS declarations contained in the style.css file.

For example, if you wish to change the default link color to green, you would add the 
following declarations to this file:

	.custom a, .custom a:visited { color: #090; }	<--- This makes links green
	.custom a:hover { color: #00f; }				<--- This makes links blue when you mouse over them

WHY THIS WORKS:

By using the "custom" class, you are creating more specific CSS declarations for HTML
elements. CSS styling is applied through rules of specificity, and because declarations
prepended with .custom are more specific, they get applied when the page is rendered!

More information about styling your Thesis installation using this file can be found
in the User's Guide:
	http://diythemes.com/thesis/rtfm/customizing-thesis-with-customcss/
*/

body.custom { background: #44443f url(images/paisley_bg.png); }
	
.custom #container { margin-top: 2em; margin-bottom: 2em; padding: 0.3em; background: #33332f; border: 0.4em solid #161616; }

.custom #page { background: #fff; }

.custom #header {
	padding: 0;
	border: 0;
	background: #880000 url(images/header.png) no-repeat;
	height: 200px;
	position: relative;
}

.custom #header #logo a { display: block; height: 140px; width: 430px; position: absolute; top: 30px; left: 25px; overflow: hidden; }

/* This line gets rid of the site title & tagline by casting them out to far left field */
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }

/* This line collapses the vertical space of the tagline so that there isn't unnecessary white space after the header image */

/* This is a bit of a kludge, but it seems to work. */
.custom #header #tagline { height: 0; }

/* This line removes the padding from the header so that the background image sits close to the nav menu, the bottom border of the header, and the sides of the content */
.custom #header { padding: 0; }

.custom #content {
	/*background: #bfbfbf;*/
	background: #ffffff url(images/posts_bg.png) repeat-x top;
}

.custom div.post_box {
	margin: 0.5em;
	padding: 1.25em;
	border: 3px solid #f5f5f5 !important;
	background: #ffffff;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

.custom h2.entry-title a, .custom h1.entry-title {
	color: #990000;
}
.custom #header {
	border-bottom: none;
}
.custom .wwsgd {
	background: #990000 url(images/paisley.png) repeat-x bottom;
	border: none;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	color: #ffffff;
}
.custom p.to_comments {
	margin-bottom: 0;
}

.custom .prev_next {
	border-top: none;
}
.custom .prev_next a {
	color: #990000;
}

.custom #footer {
	border-top: none;
	background: #525252 url(images/page_bottom_bg.gif) repeat-x scroll center top;
	color: #ffffff;
	padding: 1em;
	text-align: left;
	font-family: Verdana,Arial,Helvetica,sans-serif;
}


.cols .col {
	float: left;
}
.cols .col.col20 {
	width: 19%;
}
.cols .col.col40 {
	width: 39%;
}

div .clear {
	clear: both;
	height: 1px;
	overflow: hidden;
}

.custom #footer h3 {
	font-size: 1.25em;
	text-transform: uppercase;
	color: #bbbbbb;
}
.custom #footer p {
	margin: 0.75em 0;
	line-height: 1.45em;
	font-size: 1em;
}

.custom .floatRight {
	float: right;
}
.custom #footer a.withArrow {
	padding-right: 25px;
	background: transparent url(images/arrow.gif) no-repeat center right;
	text-decoration: none;
	border: none;
	color: #ffffff;
}

.custom #footer a {
	border: none;
	color: #ffffff;
	text-decoration: underline;
}
.custom #footer a:hover {
	color: #dddddd;
	text-decoration: underline;
}

.custom #footer ul {
	font-size: 1em;
	list-style-type: square;
	line-height: 1.3em;
}
.custom #footer ul li {
	margin: 0.5em 0.5em 0.5em 1em;
}
.custom #footer ul li a {
	text-decoration: none;
}

.custom #multimedia_box {
	display: none;
}
.custom #sideTabs {
	margin: 1.1em;
}
.custom #sideTabs .st_tabs {
	list-style: none;
	float: left;
	padding-left: 0.5em;
}
.custom #sideTabs .st_content .widget {
	clear: both;
	padding: 1em;
	background: #eeeeee;
	margin-bottom: 0;
	list-style: none;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	width: auto;
}
.custom #sideTabs .st_tabs li {
	display: block;
	float: left;
	padding: 0.5em 0.75em;
	margin: 0 1px;
	border: 1px solid #eeeeee;
	border-bottom: none;
	-moz-border-radius-topright:5px;
	-moz-border-radius-topleft:5px;
	-webkit-border-top-right-radius:5px;
	-webkit-border-top-left-radius:5px;
	font-size: 1.2em;
	cursor: pointer;
}
.custom #sideTabs .st_tabs li.active {
	background: #eeeeee url(images/tab_bg_active.png) repeat-x top;
}


.custom .multimedia_box {
	width: 100%;
}
.custom .multimedia_box .custom_box {
	/*background: #eeeeee;*/
	padding: 1.1em;
	border-bottom: 1px solid #dddddd;
}

.colleft {
	float: left;
}
.colright {
	float: right;
}
.col125 {
	width: 125px;
}
.colright .cell_1 {
	margin-bottom: 1em;
}

#subscribe_cell {
	background: #eeeeee;
	width: 285px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	position: relative;
}
#subscribe_cell_content {
	padding:10px;
}
#subscribe_cell a:hover span {
	text-decoration: underline;
}
#subscribe_cell h3 {
	text-transform:uppercase;
	margin-bottom:0.25em;
}
#subscribe_cell p {
	font-size: 0.8em;
}

#rss_twitter_links {
	background:#333333;
	clear:both;
	-moz-border-radius-bottomleft:5px;
	-moz-border-radius-bottomright:5px;
	-webkit-border-bottom-left-radius:5px;
	-webkit-border-bottom-right-radius:5px;
}

.custom #sidebars #rss_twitter_links a {
	color: #ffffff;
	font-size: 1.25em;
	width: 120px;
	margin: 15px;
	margin-right: 0;
	float:left;
	display:block;
}
#rss_twitter_links a img {
	float: left;
	margin-right:10px;
}
#subscribe_cell form {
	font-size: 1.5em;
}
#subscribe_cell p {
	margin-bottom: 1.5em;
}
#subscribe_cell .formtext {
	width: 200px;
	margin: 10px 0 0.5em 10px;
	padding: 0.2em;
	background-color:#f5f5f5;
}
.custom .formsubmit {
	float: right;
	background: none;
	border: none;
	margin-bottom: 10px;
}


.custom #comments {
	margin-left: 5px;
	margin-right: 5px;
}
.custom #comment_list, .custom #trackback_list {
	background: #eeeeee;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
}
.custom dl#comment_list dd, .custom dl#comment_list, .custom #trackback_list {
	border: none;
}
.custom .comment.alt {
	background: #e3e3e3;
}
.custom .comment.author_comment {
	background: #E7F8FB;
}


.custom #findus_links a {
	height: 25px;
	padding-top: 6px;
	padding-left: 36px;
	display: block;
	background-repeat:no-repeat;
	background-position:left;
}
.custom #findus_linkedin {
	background-image: url(images/find_us_linkedin.png);
}
.custom #findus_technorati {
	background-image: url(images/find_us_technorati.png);
}
.custom #findus_twitter {
	background-image: url(images/find_us_twitter.png);
}
.custom #findus_stumbleupon {
	background-image: url(images/find_us_stumbleupon.png);
}

.custom .search_form .text_input {
	width: 97%;
	padding: 0.25em;
	background: #f5f5f5;
}
.custom .search_form .text_input:focus {
	background: #ffffff;
}

.cols .col50 {
	width: 49%;
}


.custom .post_box .headline_area {
	display: none;
}
.custom .post_box.hentry .headline_area {
	display: block;
}
.custom #content h2.entry-title {
	font-size: 2.2em;
	margin-top: 0;
}


.custom #content h1, .custom #content h2 {
	margin-bottom: 0.5em;
}
.custom #content h2 {
	font-size: 1.5em;
	margin-top: 1em;
	margin-bottom: 0.5em;
}
.custom #content ul.services h2 {
	font-size: 1.75em;
}
.custom #content ul.services h3 {
	margin-top: 0.5em;
}
.custom ul.services {
	float:left;
	list-style-type: none;
	margin-left: 0;
}
.custom ul.services li {
	float:left;
	background:transparent url(images/arrow_large.gif) 25px 10px no-repeat;
	padding-left:125px;
	margin-bottom:2em;
}
.custom ul.normal, .custom ol {
	list-style:square;
	margin:0.5em;
	margin-left:2em;
	background: none;
}
.custom ol {
	list-style-type:decimal;
}
.custom ul.normal li, .custom ol li {
	margin:0.25em 0;
	padding:0;
	background:none;
	float:none;
}
.custom .uppercase {
	text-transform:uppercase;
}
.custom .getintouch, .custom .enquire {
	display:block;
	float:right;
	margin-top:-2em;
}
.custom .getintouch {
	background:url(images/button_getintouch.gif);
	width:90px;
	height:42px;
}
.custom .enquire {
	background:url(images/button_enquire.gif);
	width:70px;
	height:42px;
}
.custom .enquire span, .custom .getintouch span {
	display:none;
}
.custom ul.ticks {
	margin:0.5em;
	margin-left:2em;
	list-style-image:url(images/tick_small.gif);
}

.custom .contact_form {
	margin: 5px;
	background-color: #f5f5f5;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	padding: 1em;
}
.custom .contact_form .text_input {
	width: 300px;
}


.custom #sidebars a {
	color: #666666;
}