/*
	$Project: Read More $
	$Author: karapuz <support@ka-station.com> $

	$Version: 2.0.1.0 $ ($Revision: 52 $)
*/

/* button style */

.read-more-button {
	padding: 3px 10px;
	font-size: 11px;
	border: 1px solid #cccccc;
	border-radius: 4px;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);

	color: #666;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	background-color: #6660;
	/*background-image: linear-gradient(to bottom, #23a1d1, #1f90bb);
	background-repeat: repeat-x;
	border-color: #1f90bb #1f90bb #145e7a;*/
}

.read-more-button:hover, .read-more-button:active, .read-more-button:focus {
   color: #fff;
   background-color: #999;
   background-position: 0 -15px;
   text-decoration: none;
}


/* style of the whole text section which read-more applies to */
.read-more-box {
  position: relative;
  overflow: hidden;
}

.read-more-box .read-more {
  position: absolute; 
  bottom: 0; 
  left: 0;
  width: 100%; 
  text-align: center; 
  margin: 0; padding: 60px 0 0 0; 
}

.read-more.expanded {
	background-image: none;
}

.read-more.collapsed {
	background-image: linear-gradient(to bottom, rgba(255,255,255,0), #ffffff);
}