
/*	-----------
		BASE STYLES
		-----------
*/

/* If you feel comfortable editing here, go ahead. I promise to add a function soon to easily change the button */

.imgshare_buttons {
	position: relative;
	display: block;
}
.imgshare_buttons .imgshare_pin {
	/*width: 80px; height: 50px; /* Please note that the button is 80px x 50px. If you use a different size button, change this */
	/*background-image: url('ppibfi_button.png'); background-repeat: none; /* This is the buttons image. Image can be found in the plugin folder */
	background-image: url('pinterest.jpg');
	width: 250px; height: 78px; 
	position: absolute;
	top: 25%;
	margin-left: -1px;
	opacity: 0;
	cursor: pointer;
	display: none;
	left: 30%;
}
.imgshare_buttons .imgshare_fb {
	/*width: 80px; height: 50px; /* Please note that the button is 80px x 50px. If you use a different size button, change this */
	/*background-image: url('ppibfi_button.png'); background-repeat: none; /* This is the buttons image. Image can be found in the plugin folder */
	background-image: url('facebook.jpg');
	width: 250px; height: 78px; 
	position: absolute;
	bottom: 30%;
	margin-left: -1px;
	opacity: 0;
	cursor: pointer;
	display: none;
	left: 30%;
}
.imgshare_buttons img.left + .imgshare_pin {
	margin-left: 0;
}
.imgshare_buttons img.left + .imgshare_fb {
	margin-left: 0;
}

/*	-----------------
		INTERACTIONS / FX
		-----------------
*/

.imgshare_buttons .imgshare_pin, 
.imgshare_buttons .imgshare_fb,
.imgshare_buttons img {
	-webkit-transition:opacity .2s ease-out; -moz-transition:opacity .2s ease-out; transition:opacity .2s ease-out;
}
.imgshare_buttons img:hover ~ span, 
.imgshare_buttons_hover {
	opacity: .7;
}
.imgshare_buttons .imgshare_pin:hover, 
.imgshare_buttons .imgshare_fb:hover {
	opacity: 1;
}
