#posthighlights_container {
    font-family: Arial, Helvetica, Verdana, Sans-serif;
	margin:0 10px 0 12px;
	float:left;
}

#posthighlights_container img {
    width:449px;
}




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

/*
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:0;
    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: 40px;
    height: 40px;
    z-index: 3;
    cursor: pointer;
    background-image: url(arrows.gif);
	top:132px;
}

#posthighlights_container #ph-next-nav {
    right: 0;
    background-position: -65px 0px;
}

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

#posthighlights_container #ph-prev-nav {
    left: 0;
    background-position: -33px 0px;
}

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

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

#posthighlights_container .ph_content {
	position:absolute;
	width:100%;
	z-index:2;
	padding:0;
	margin:0;
	bottom:-43px;
	text-align:left;
}

#posthighlights_container .ph_content a {
    text-decoration: none;
	color:#222222;
    font-size: 16px;
	font-weight:none;
	font-family:Arial, "Times New Roman", Times, serif;
	
	padding:0;
	margin:0;
}

#posthighlights_container .ph_content p {
    color: #7b7b7b;
    font-size: 11px;
	font-family: Georgia, "Times New Roman", Times, serif;
	width:auto;
	font-style:italic;
	
	padding:0;
	margin:0;
} 

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

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

