#posthighlights_container {
    font-family: Helvetica, Arial, Sans-serif;
}

/* Lets keep loading process beautiful */
#posthighlights_container .ph_post div, .ph-hide-while-loading{
    display: none;
}

/*
Basically you can play with everything in here, just keep in mind:

#posthighlights_container is the div that wraps everything.

It must have position relative, so the picures (ph_canvas) have position absolute 
and the fade between them will work
*/

#posthighlights_container {
    padding: 0px 0 0 0px;
    text-align: center;
    position: relative;
}
/*

ph-canvas are the divs where the pictures will show up
They have to have position: absolute
And its very important that they have both width and height set
In our case, it is set dynamically in the index.php
because its a theme option.
But if your theme doesnt have this option, dont forget to put it here

 */
#posthighlights_container .ph-canvas {
    position: absolute !important;
    left: 0px !important; /* importants are needed for i.E 6 */
    /* background-position: center center; */
}

#posthighlights_container {
	
	padding-top: 5px;
	
	background: url(barra-grande-top.jpg) no-repeat top center;
}

#posthighlights_container .ph_picture {
    position: absolute;
}

#posthighlights_container #ph-next-nav, 
#posthighlights_container #ph-prev-nav  {
    position: absolute;
    width: 25px;
    height: 48px;
    z-index: 3;
    cursor: pointer;
}

#posthighlights_container #ph-next-nav {
    right: 15px;
    bottom: -30px;
    background-image: url(destaques-bto-dir.jpg);
}

#posthighlights_container #ph-next-nav:hover {
    background-position: 0px 48px;
}

#posthighlights_container #ph-prev-nav {
    right: 41px;
    bottom: -30px;
    background-image: url(destaques-bto-esq.jpg);
}

#posthighlights_container #ph-prev-nav:hover {
    background-position: 0px 48px;
}

#ph-description-background, 
#posthighlights_container .ph_content {
    position: absolute !important;
    bottom: -34px !important;
    left: 12px !important; /* importants are needed for i.E 6 */
    width: 718px;
    height: 56px;
    z-index: 2;
    padding: 0px;
    text-align: left;
    
    -webkit-border-radius: 3px;    /* for Safari */
    -moz-border-radius: 3px;       /* for Firefox */

}

#posthighlights_container .ph_content a {
    text-decoration: none;
    font-size: 0.75em;
    font-weight: bold;
}

	.ph_content a:link {

		text-decoration: none;
		color: #fff;	
	}
	
	.ph_content a:visited {

		text-decoration: none;
		color: #fff;	
	}
	
	.ph_content a:hover {

		text-decoration: none;
		color: #e3cdde;	
	}


#posthighlights_container .ph_content p {
    color: white;
    font-size: 0.687em;
} 

#ph-description-background {
    background-color: #9c0079;
    z-index: 1;
 /* opacity: 0.6;
    filter: alpha(opacity=60); */
}

.ph_content h2, .ph_content p {
    margin: 18px 0 0 20px;
}


