/*
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/
*/



.custom #header_area {
height:160px;
background: url('http://conversationmedia.com.au/wp-content/themes/thesis_16/custom/images/bg.jpg');}
	.custom #header {border-bottom:0;}

#header_area .page {background:transparent;}

#header #logo {margin-left:15%}
#header #tagline {margin-left:30%}



/*body.custom {
    background: #545454 url('http://conversationmedia.com.au/wp-content/themes/thesis_16/custom/images/pbg.jpg') 50% 0 no-repeat;
}


*/

.custom #header { border-bottom:none;
height:98px;
margin-left:10%;
padding-top:10;
padding-bottom:0;
background:url(http://conversationmedia.com.au/wp-content/themes/thesis_16/custom/images/cm_logo.png)
center left no-repeat; }

.custom #multimedia_box, .custom #image_box, 
.custom #video_box, .custom #custom_box 
{background:#fff;
height:220px
}

.custom #content_box {background:none;}


.custom .format_text blockquote.left {
   color: #111;
   background-color: #fff;
font-family: Georgia;
  font-weight: bold;
  font-size: 1.8em;

}

.custom .format_text blockquote.right {
   color: #111;
   background-color: #fff;
font-family: Georgia;
  font-weight: bold;
  font-size: 1.8em;
border: 3px double #AAAAAA;
   border-width: 3px 0;
   padding: 5px 0;

}



/* Make all widget headings red 
.custom .widget h3 {
   background: #bf3535;
}

*/


.custom .widget_recent_entries h3 {
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
background:transparent url(http://conversationmedia.com.au/wp-content/themes/thesis_16/custom/images/recentposts.png) no-repeat scroll left center;
height:40px;
margin-right:-0.835em;
text-indent:-9999px;

}



.social { border: dashed #ddd; border-width:1px 0 1px 0; margin: -15px auto 10px; display:block; padding: 3px 0 1px 0px;  overflow: hidden; }
	.social .social_button {float: left; display: inline; overflow: hidden; height:22px; }

	.social .social_button.dg { margin: 0px 0 0 20px ; padding-top: 4px;}
	.social .social_button.tm { margin: 0px 0 0 12px;  padding-top: 4px;}
	.social .social_button.fb { margin: 0 0 0 15px;  padding-bottom:0px;}
	.social .social_button.su { margin: 0px 0 0 30px;  padding-top: 2px;}
        .social .social_button.em { margin: 0 0 0 20px;  padding-top: 0px;}
        .social .social_button.em a{background:#eee url(images/emailthis.gif) 3px 50% no-repeat; padding:2px 3px 2px 20px;  font-size:10px; border:#ddd 1px solid; text-decoration:none; -moz-border-radius: 3px; -webkit-border-radius: 3px;}
		.social .social_button.em a:hover {background:#ddd url(images/emailthis.gif) 3px 50% no-repeat}
	.social .social_button a img { border: 0; padding: 0; }
	.social strong { font-size: 11px; float: left; margin:2px 0 0 0; color:#555;}

.clear{clear:both;}




.custom li#text-5.widget h3 {
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
background:transparent url(http://conversationmedia.com.au/wp-content/themes/thesis_16/custom/images/contactus.jpg) no-repeat scroll left center;
height:40px;
margin-right:-0.835em;
text-indent:-9999px;

}


/* Bubble with an isoceles triangle
------------------------------------------ */

.triangle-isosceles {
	position:relative;
	padding:15px;
	margin:1em 0 3em;
	color:#000;
	background:#f3961c; /* default background for browsers without gradient support */
	
	/* css3 */
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	border-radius:10px;
	/* NOTE: webkit gradient implementation is not as per spec */
	background:-webkit-gradient(linear, left top, left bottom, from(#f9d835), to(#f3961c));
	background:-moz-linear-gradient(top, #f9d835, #f3961c);
	background:-o-linear-gradient(top, #f9d835, #f3961c);
	background:linear-gradient(top, #f9d835, #f3961c);
}

/* creates triangle */
.triangle-isosceles:after {
	content:"\00a0";
	display:block; /* reduce the damage in FF3.0 */
	position:absolute;
	z-index:-1;
	bottom:-30px; /* value = - border-top-width - border-bottom-width */
	left:50px; /* controls horizontal position */
	width:0;
	height:0;
	border-width:15px 15px; /* vary these values to change the angle of the vertex */
	border-style:solid;
	border-color:#f3961c transparent transparent;
}



