#posthighlights_container {
    font-family: Arial, Helvetica, Verdana, 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 {
	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 .ph_picture {
    position: absolute;
}

#posthighlights_container #ph-next-nav, 
#posthighlights_container #ph-prev-nav  {
	position: absolute;
	width: 68px;
	height: 68px;
	z-index: 3;
	cursor: pointer;
	background-image: url(nav-feature.png);
	background-repeat: no-repeat;
}

#posthighlights_container #ph-next-nav {
	right: -40px;
	background-position: 0px 0px;
	top: 100px;
}

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

#posthighlights_container #ph-prev-nav {
	left: -40px;
	background-position: 0px -68px;
	top: 100px;
}

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

#ph-description-background, 
#posthighlights_container .ph_content {
	position: absolute !important;
	bottom: 0px !important;
	left: 0px !important; /* importants are needed for i.E 6 */
	width: 100%;
	z-index: 2;
	text-align: left;
	padding-top: 7px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
	height: 50px;
}

#posthighlights_container .ph_content a {
	text-decoration: none;
	color: white;
	font-size: 26px;
	font-weight: normal;
}

#posthighlights_container .ph_content p {
	color: #F0E926;
	font-size: 14px;
} 

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

.ph_content h2, .ph_content p {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	padding: 0px;
	margin-top: 0px;
	margin-right: 20px;
	margin-bottom: 0px;
	margin-left: 20px;
}

