/*
 * WordPress Ajax Load More
 * http://wordpress.org/plugins/ajax-load-more/
 
 * https://github.com/dcooney/wordpress-ajax-load-more
 *
 * Copyright 2014 Connekt Media - http://connekthq.com/
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Author: Darren Cooney
 * Twitter: @KaptonKaos
*/

button.alm-load-more-btn, 
button.alm-load-less-btn {	
   background-color: #f5f6f6;
	border-top: 1px solid #56b7af;
	border-bottom: 1px solid #56b7af;
	border-left: 2px solid #56b7af;
	border-right: 2px solid #56b7af;
	padding: 15px 0;
	font-family: 'Gotham-Light';
	font-size: 22px;
	color: #56b7af !important;
		
   position: relative;
   -webkit-transition: padding 0.25s ease-in-out;
   -moz-transition: padding 0.25s ease-in-out;
   transition: padding 0.25s ease-in-out;
   text-align: center;	
   text-decoration: none;
   -webkit-appearance: none; 
   -moz-appearance: none;   
   appearance: none;      
   /* Prevents text selection */
   -webkit-touch-callout: none;
   -webkit-user-select: none;
   -khtml-user-select: none;
   -moz-user-select: -moz-none;
   -ms-user-select: none;
   -o-user-select: none;
   user-select: none;
   cursor: pointer;
}

button.alm-load-more-btn:hover,
button.alm-load-less-btn:hover {
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	border-left: 2px solid #000;
	border-right: 2px solid #000;
	color: #000 !important;
	background-color: #f5f6f6;
}

button.alm-load-more-btn:active, 
button.alm-load-less-btn:active {
	text-decoration: none;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	border-left: 2px solid #000;
	border-right: 2px solid #000;
	color: #000 !important;
	background-color: #f5f6f6;
}	

    
/* Loaded / Done */
button.alm-load-more-btn.done{
	cursor: default;
	border-top: 1px solid #8c8f91;
	border-bottom: 1px solid #8c8f91;
	border-left: 2px solid #8c8f91;
	border-right: 2px solid #8c8f91;
	color: #8c8f91 !important;
	background-color: #f5f6f6;
}  
      
.alm-btn-wrap,
.alm-btn-less-wrap {
	text-align:center;
	padding:0 0 60px;
	overflow: hidden;
	display: block;
	clear:both;
	margin: 0 auto;
}