@CHARSET "ISO-8859-1";
/**************** Slider post title ****************/
.wa_rhps_slider_title {
	clear: both;
	height: 40px;
	overflow: hidden;
}

/****************  Post content excerpt ****************/
.wa_rhps_foo_con{
	clear: left;
	font-family:Verdana,Geneva,sans-serif;
	font-size:11px;
	font-weight:normal;
	font-style:normal;
	color:#222222;
	height:60px;
	overflow: hidden;
	margin-bottom: 8px;
}

/****************  read more text ****************/
.wa_rhps_more {
	color:#ca7700;
	font-size:11px;"
}

/****************  Carousel ****************/
.wa_rhps_image_carousel {
	position: relative;
	width: auto;
	padding: 15px 10px 15px 10px;

}

.wa_rhps_image_carousel ul{	
	list-style: none;
	display: block;
	margin: 0;
	padding: 0;
}

/****************  Slider post image ****************/
.wa_rhps_image_carousel li img {
	/*border: 1px solid #ccc;
	background-color: white;
	padding: 9px;*/
    display: block;
    float: left;

	-webkit-box-shadow: 1px 1px 1px -1px #aaa !important;
	-moz-box-shadow: 1px 1px 1px -1px #aaa !important;
	box-shadow: 1px 1px 1px -1px #aaa !important;

}

/****************  slider item ****************/
.wa_rhps_image_carousel li {
	 position: relative;
    height: auto;
    padding: 5px;
    margin: 6px;
    display: block;
    float: left;
}

/* clear fix */
.wa_rhps_clearfix {
	float: none;
	clear: both;
}

/**************** slider controllers - horizontal ****************/
.wa_rhps_image_carousel .wa_rhps_prev, .wa_rhps_image_carousel .wa_rhps_next {
	background: transparent url(../images/carousel_control.png) no-repeat 0 0;
	display: block;
	width: 15px;
	height: 21px;	
	position: absolute;
	top: 70px;
	z-index: 250;			
}
.wa_rhps_image_carousel .wa_rhps_prev {
	background-position: 0 0;
	left: -0px;
}
.wa_rhps_image_carousel .wa_rhps_prev:hover {
	left: -1px;
}			
.wa_rhps_image_carousel .wa_rhps_next {
	background-position: -18px 0;
	right: -0px;
}
.wa_rhps_image_carousel .wa_rhps_next:hover {
	right: -1px;
}	

a.wa_rhps_prev span, a.wa_rhps_next span {
    display: none;
}

/**************** slider controllers - vertical ****************/
.wa_rhps_image_carousel .wa_rhps_prev_v{
	background: transparent url(../images/carousel_control_vertical.png) no-repeat 0 0;
	display: block;
	width: 30px;
	height: 15px;
	position: absolute;
	top: 0px;	
	z-index: 250;	
	margin-left:50%;
}
.wa_rhps_image_carousel .wa_rhps_next_v {
	background: transparent url(../images/carousel_control_vertical.png) no-repeat 0 0;
	display: block;
	width: 30px;
	height: 15px;
	position: absolute;
	bottom: 0px;	
	z-index: 250;	
	margin-left:50%;
}
.wa_rhps_image_carousel .wa_rhps_prev_v {
	background-position: 0 0;
	text-align: center;
}
.wa_rhps_image_carousel .wa_rhps_prev_v:hover {
	text-align: center;
}			
.wa_rhps_image_carousel .wa_rhps_next_v {
	background-position: 0 -18px;
	text-align: center;
}
.wa_rhps_image_carousel .wa_rhps_next_v:hover {
	text-align: center;}

a.wa_rhps_prev_v span, a.wa_rhps_next_v span {
    display: none;
}

/**************** Pagination controls ****************/
.wa_rhps_image_carousel .wa_rhps_pagination {
	text-align: center;
	margin: 0 auto;
	margin: 20px;
}
.wa_rhps_image_carousel .wa_rhps_pagination a {
	background: transparent url(../images/carousel_control.png) no-repeat -2px -32px;
	text-decoration: none;
	text-indent: -999px;
	display: inline-block;
	overflow: hidden;
	width: 8px;
	height: 8px;
	margin: 0 5px 0 0;
	z-index: 250;	
}
.wa_rhps_image_carousel .wa_rhps_pagination a.selected {
	background: transparent url(../images/carousel_control.png) no-repeat -12px -32px;
	text-decoration: underline;				
}

/**************** Overlay styles ****************/
.wa_chpcss_text_overlay_p_container {
	margin: 0 auto;
	max-width: 100%;
}

.wa_chpcs_text_overlay_caption {
    position: relative;
    overflow: hidden;

    -webkit-transform: translateZ(0);
            transform: translateZ(0);
}

.wa_chpcs_text_overlay_caption::before {
    content: ' ';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: transparent;
    transition: background .35s ease-out;
}

.wa_chpcs_text_overlay_caption:hover::before {
    background: rgba(0, 0, 0, .5);
}

.wa_chpcs_text_overlay_caption_media {
    display: block;
    min-width: 100%;
    max-width: 100%;
    height: auto;
}

.wa_chpcs_text_overlay_caption_overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center;
    color: white;

    -webkit-transform: translateY(100%);
            transform: translateY(100%);

    transition: -webkit-transform .35s ease-out;
    transition:         transform .35s ease-out;
}

.wa_chpcs_text_overlay_caption:hover .wa_chpcs_text_overlay_caption_overlay {
    -webkit-transform: translateY(0);
            transform: translateY(0);
}

.wa_chpcs_text_overlay_caption_overlay_title {

	font: normal 16px/1.5 Arial, sans-serif;
    padding: 0 0 0.5em;
    -webkit-transform: translateY( -webkit-calc(-100% - 10px) );
            transform: translateY( calc(-100% - 10px) );

    transition: -webkit-transform .35s ease-out;
    transition:         transform .35s ease-out;
}
.wa_chpcs_text_overlay_caption:hover .wa_chpcs_text_overlay_caption_overlay_title {
    -webkit-transform: translateY(0);
            transform: translateY(0);
}

/***** lazy load ******/
.wa_lazy{
	display: none;
}