
.slideOutTip{
	/* The main wrapping div of the slideout tips */
	position:absolute;
	top:0;
	left:0;
	font-size:13px;
	color:white;
	overflow:hidden;
	height:44px;
	background-image: url(../img/popup_buttn.png);
	background-repeat: repeat;
}


/* The holder for the title and the icon: */
.tipVisible{ cursor:pointer; height:44px; }

.tipTitle{
	float:left;
	font-family:'Myriad Pro',Arial, Helvetica, sans-serif;
	font-size:15px;
	font-weight:bold;
	white-space:nowrap;
	line-height:22px;
	width:60px;
	height:60px;
}

.tipIcon{
	width:50px;
	height:50px;
	float:left;
	align:center;
	
	background-image: url(../images/star_small_blinking.gif);color:#fff;opacity:.9; 
	background-repeat: no-repeat;
	-moz-border-radius: 35px;
	border-radius: 35px;
}




.slideOutTip.isOpened{ z-index:10000; }

.slideOutTip.isOpened .plusIcon{
	/* Applying a CSS3 rotation  to the opened slideouts*/
	-moz-transform:rotate(45deg);
	-webkit-transform:rotate(45deg);
	transform:rotate(45deg);
}

/* Special rules for the left and top - opening versions */

.openLeft .tipIcon{
	/* Floating the title and the icon to the right */
	
	float:right;
}
.openLeft .tipTitle{ float:right; padding:0 0 0 5px; }
.openLeft .slideOutContent{ margin-top:22px; }
.openLeft.openTop .slideOutContent{	margin-top:0; }


.slideOutContent{
	/* Hiding the div with the slide out content: */
	display:none;
	padding:10px;
	font-size:11px;
}

/* Hiding the original paragraphs if they have not been replaced (JS disabled): */

.main > p{ display:none; }



/* The styles below are only necessary for the styling of the demo page: */

.main{
	height:700px;
	position:relative;
	width:550px;
	top: 150px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
}

.spaceBottom{
	margin:0 0 10px;
}

.spaceTop{
	margin:10px 0 0;
}


