 /* glowny div z like box'em */
#like-box {
	position: fixed;
	z-index: 1002;
	top: 150px;  /* jego polozenie od gory */
	left: -296px; /* szerokosc wygenerowanego boxa + 4px obramowania */
	-webkit-transition: left 0.5s ease-out;
	-moz-transition: left 0.5s ease-out;
	-o-transition: left 0.5s ease-out;
	transition: left 0.5s ease-out;
}

/* wysuniecie like box'a */
#like-box:hover {
	left: 0px;
}

/* zewnetrzna ramka boxa */
#like-box .outside {
	position: relative;
	z-index: 1;
	background: #3b5999;
	padding: 2px;
	min-width: 1px;
	float: left;
}

/* wewnetrzne tlo boxa */
#like-box .inside {
	position: relative;
	z-index: 2;
	background: #fff;
}

/* pasek z logo FB */
#like-box .belt {
	position: relative;
	z-index: 0;
	/*transform: rotate(90deg);
	-webkit-transform: rotate(90deg); /* obrot o 90 stopni */
/*	-moz-transform: rotate(90deg); /* wiec wysokosc zamienia sie z szerokoscia */
/*	-o-transform: rotate(90deg); /* obrot o 90 stopni */
/*	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); /* obrot o 90 stopni dla IE */
	float: left;
	width: 33px; /* wysokosc */
	height: 120px; /* szerokosc */
/*	padding: 7px 0px 0px 20px;
	margin: 50px 0px 0px -55px;*/
	color: #fff;
	font-weight: bold;
	font-family: Verdana;
	font-size: 16px;
/*	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px; */
	background-color: #3b5999;
	background-image: url(facebook.png);
	background-repeat: no-repeat;
	background-position: center center;
}