/* Minify_CSS_UriRewriter::$debugText

*/

/* style.css */

/* 1  */ a#scroll-to-top {
/* 2  */
/* 3  */ 	/* Background image, replace in images folder */
/* 4  */ 	background: url(../images/arrow.png) no-repeat center center;
/* 5  */
/* 6  */ 	/* Match to background image size */
/* 7  */ 	width: 35px;
/* 8  */ 	height: 35px;
/* 9  */
/* 10 */ 	/* Postion on the page */
/* 11 */ 	position: fixed;
/* 12 */ 	right: 30px;
/* 13 */ 	bottom: 30px;
/* 14 */
/* 15 */ 	/* Hide link text */
/* 16 */ 	text-indent: -9999px;
/* 17 */ 	font-size: 0;
/* 18 */
/* 19 */ 	/* Other */
/* 20 */ 	cursor: pointer;
/* 21 */ 	outline: 0;
/* 22 */
/* 23 */ }
/* 24 */
/* 25 */ body.rtl a#scroll-to-top {
/* 26 */ 	left: 30px;
/* 27 */ }
/* 28 */
/* 29 */ /* Responsive Design Support */
/* 30 */ @media only screen and (max-width: 480px) {
/* 31 */
/* 32 */ 	a#scroll-to-top {
/* 33 */
/* 34 */ 		/* Changing Position */
/* 35 */ 		right: 0;
/* 36 */ 		bottom: 0;
/* 37 */ 	}
/* 38 */
/* 39 */ 	body.rtl a#scroll-to-top {
/* 40 */ 		left: 0;
/* 41 */ 		bottom: 0;
/* 42 */ 	}
/* 43 */ }
