
@media only screen and (max-width:992px)
{
	#left-buttons
	{
		display: none;
	}
}
@media only screen and (min-width:992px)
{
	#left-buttons
	{
		display: block;
		left: 0;
		position: fixed;
		top: 20%;
		width: 60px;
		z-index: 100;
	}
	#left-buttons div>a
	{
		/*background: #145914;*/
		/*background: #34620a;*/
		/* background: #559903; */
		background: #b8be78;
		/*background: url("../images/bg53.png")repeat;*/
		border-top: 1px solid #4c4c4c;
		display: block;
		height: 60px;
		text-align: center;
	}
	#left-buttons div.buy-supplement>a
	{
		border-top: 0;
		border-top-right-radius: 3px;
		moz-border-radius-topright: 3px;
		webkit-border-top-right-radius: 3px;
	}
	#left-buttons div.support>a
	{
		border-bottom-right-radius: 3px;
		moz-border-radius-bottomright: 3px;
		webkit-border-bottom-right-radius: 3px;
	}
	#left-buttons div>a:hover
	{
		background: #335100;
	}
	#left-buttons div>a i
	{
		color: #fff;
		font-size: 18px;
		line-height: 60px;
	}
}

.field-tip
{
	position: relative;
}
.field-tip .tip-content
{
	background: #38271f;
	box-shadow: 2px 2px 5px #aaa;
	color: #fff;
	margin-right: -220px;
	moz-box-shadow: 2px 2px 5px #aaa;
	moz-transition: opacity 250ms ease-out;
	ms-transition: opacity 250ms ease-out;
	opacity: 0;
	o-transition: opacity 250ms ease-out;
	padding: 10px;
	position: absolute;
	right: 9999px;
	top: 4px;
	transition: opacity 250ms ease-out;
	webkit-box-shadow: 2px 2px 5px #aaa;
	webkit-transition: opacity 250ms ease-out;
	width: 200px;
}
.field-tip .tip-content:before
{
	border: 8px solid transparent;
	border-right-color: #38271f;
	color: #141414;
	content: ' ';
	height: 0;
	left: -16px;
	margin-top: -8px;
	position: absolute;
	top: 50%;
	width: 0;
}
.field-tip:hover .tip-content
{
	opacity: 1;
	right: 0px;
}