
/* MiniCart */
.MiniCartItem{
	 position: absolute;
	 background:#fff;
	 padding:5px;
	 z-index:99999999;
	 right:0;
}

.CartTextInlineInfo{
	margin:5px 0 0 0;
	display:block;
	font-size: 15px; 
	margin: 9px 0px 0px; 
	line-height: 25px; 
	font-weight: 500;
}


/*back to top style*/

#back-top {
	position: fixed;
	bottom: 20px;
	right:20px;
}
#back-top a {
	width: 65px;
	display: block;
	text-align: center;
	font: 8px/100% Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	text-decoration: none;
	color: #bbb;
	/* background color transition */
	-webkit-transition: 1s;
	-moz-transition: 1s;
	transition: 1s;
}
#back-top a:hover {
	color: #000;
}
/* arrow icon (span tag) */
#back-top span {
	width: 65px;
	height: 65px;
	display: block;
	margin-bottom: 5px;
	background: #ddd url(../images/up-arrow.png) no-repeat center center;
	/* rounded corners */
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	/* background color transition */
	-webkit-transition: 1s;
	-moz-transition: 1s;
	transition: 1s;
}
#back-top a:hover span {
	background-color: #777;
}