/*
To get started customizing with CSS, we recommend you 
go to http://headwaythemes.com/documentation/customizing-your-headway-site/custom-css/ 
to get started.

When writing the selectors for the elements, put body.custom at the
beginning.

For an example on how to change the background with custom CSS
we can use the following code.

body.custom {
	background: red;
}
*/
blockquote {
    border:0px;
    color: #69a;
    font-style: normal;
 }

a {text-decoration:none !important;}
a:hover{text-decoration:underline !important;}

.widget-title, .entry-title, .header-link-text{
        text-shadow: 1px 1px 2px black;
}


blockquote {
	text-shadow: 1px 1px 1px black;
	position:relative;
	padding:5px 0 5px 25px;
	margin:2em 0 3em;
	color:#fff;
	background:#534E4E; /* 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(#413F3F), to(#4F4D4D));
	background:-moz-linear-gradient(top, #413F3F, #4F4D4D);
	background:-o-linear-gradient(top, #413F3F, #4F4D4D);
	background:linear-gradient(top, #413F3F, #4F4D4D);
}

/* creates triangle */
blockquote:after {
	content:"\00a0";
	display:block; /* reduce the damage in FF3.0 */
	position:absolute;
	bottom:-40px; /* value = - border-top-width - border-bottom-width */
	left:50px; /* controls horizontal position */
	width:0;
	height:0;
	border-width:20px 0 20px 20px; /* vary these values to change the angle of the vertex */
	border-style:solid;
	border-color:#4F4D4D transparent transparent; 
}

.linkwithin_posts a{ 
        border:0px !important; 
        text-decoration:none !important;
}  

.linkwithin_posts a:hover{ 
        background: #4F4D4D !important;
        -moz-border-radius:10px;
	-webkit-border-radius:10px;
	border-radius:10px;
        border-color:#413F3F;
} 
.linkwithin_posts div{ 
        border:0px !important; 
        padding-bottom: 5px !important;
}  
.wp-caption { 
        background: #333333;
	position:relative;
	padding:8px 5px 5px 5px;
	margin:2em 1em 3em;
	color:#fff;
        -moz-border-radius:10px;
	-webkit-border-radius:10px;
	border-radius:10px;
        border-color:#413F3F;
} 
.wp-caption-text {
	color:#fff;
}

#idc-container, #idc-container a {color:#cccccc;}
