
.slideOutTip{
	/* The main wrapping div of the slideout tips */
	position:absolute;
	padding:3px;
	margin:0 0 0 0;
	top:0;
	left:0;
	background-color:#121212;
	font:normal 20px Verdana, Arial, Helvetica, sans-serif;
	color:#535353;
	overflow:hidden;
	height:auto;
}

.slideOutTip:hover{
	/* Applying a CSS3 outer glow on hover */
	-moz-box-shadow:0 0 1px #999;
	-webkit-box-shadow:0 0 1px #999;
	box-shadow:none;
}

/* The holder for the title and the icon: */
.tipVisible{ cursor:pointer; height:auto; }

.tipTitle{
	float:left;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:14px;
	font-weight:normal;
	white-space:nowrap;
	line-height:16px;
	padding-right:2px;
	
}

.tipIcon{
	width:4px;
	height:6px;
	float:left;
	background-color:#121212;
	border:1px solid #70c244;
	margin-right:6px;
	
	/* CSS3 Rounded corners */
	
	-moz-border-radius:1px;
	-webkit-border-radius:1px;
	border-radius:1px;
}

/* Three color themes */
.green .tipIcon{ background-color:#61b035; border:1px solid #70c244; }
.blue .tipIcon{ background-color:#1078C7; border:1px solid #1e82cd; }
.grey .tipIcon{ background-color:#121212; border:none; }

.plusIcon{
	/* The plus icon */
	width:4px;
	height:7px;
	background:url(../images/locate_arrow.gif) no-repeat 0 0;
	margin:5px 0 0 0;
	
	/* Defining a CSS3 animation. Currently only works in Chrome and Safari */
	-webkit-transition: -webkit-transform 0.2s linear;
	-moz-transition: -moz-transform 0.2s linear;
	transition: transform 0.2s linear;
}

.slideOutTip.isOpened{ z-index:10000; }

.slideOutTip.isOpened .plusIcon{
	/* Applying a CSS3 rotation  to the opened slideouts*/
	-moz-transform:rotate(-90deg);
	-webkit-transform:rotate(-90deg);
	transform:rotate(-90deg);
}

/* Special rules for the left and top - opening versions */

.openLeft .tipIcon{
	/* Floating the title and the icon to the right */
	margin:0 0 0 8px;
	float:right;
}
.openLeft .tipTitle{ float:right; padding:0 0 0 5px; }
.openLeft .slideOutContent{ margin-top:10px; }
.openLeft.openTop .slideOutContent{	margin-top:0; }


.slideOutContent{
	/* Hiding the div with the slide out content: */
	display:none;
	padding:6px;
	font-size:20px;
}

/* 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:300px;
	margin:21px auto;
	position:relative;
	width:auto;	
	left:-90px;
	}
.spaceBottom{
	margin:0 0 10px;
}

.spaceTop{
	margin:3px 0 0 0;
}



a, a:visited {
	color:#000000;
	text-decoration:none;
	outline:none;
}

a:hover{
	text-decoration:none;
}

a img{
	border:none;
	text-decoration:none;
}

.clear{
	clear:both;
}


