.slideOutTip{
	/* The main wrapping div of the slideout tips */
	position:absolute;

	top:0;
	left:0;
	font-size:13px;
	color:white;
	/*overflow:hidden;*/
	height:22px;
}

.slideOutTip:hover{
	/* Applying a CSS3 outer glow on hover */

}

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

.tipTitle{
	float:left;
    color: #ffffff;
    display:none;
	white-space:nowrap;
	line-height:22px;
	padding-right:5px;
    width:1px;
    
}

.tipIcon{
	width:21px;
	height:21px;
	float:left;
	background-color:#61b035;
	border:1px solid #70c244;
	margin-right:0px;
	
	/* CSS3 Rounded corners */
	
	-moz-border-radius:1px;
	-webkit-border-radius:1px;
	border-radius:1px;
}



.plusIcon{
	/* The plus icon */
	width:13px;
	height:13px;
	background:url('/files/plus.gif') no-repeat center center;
	margin:3px;
	
	/* 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; width: 380px !important; }

.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 */
	margin:0 0 0 8px;
	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;
    width: 360px;
}
.slideOutContent p{
    margin-top:-30px;
}
/* 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: */

.house{
	background: url('/media/house.jpg') no-repeat center top #ffffff;
	height:486px;
	margin:20px auto;
	position:relative;
	width:710px;
    padding: 6px;
}

.house span {
    font-size: 15px;
    padding: 5px 5px 0px 0px;

    font-weight: bold;


}
.house p {
    font-size: 15px;
    padding: 1px 5px 5px 10px;

    margin-left: 6px;
    background: #61B035;
    margin-top: -32px;
    box-shadow: -3px 3px 6px #444;
}
.house a{
    
    font-size: 12px;
    color: #CEFFBE;
    background: #61B035;
    padding: 2px;
    text-decoration: underline;



}
.house a:hover{
    color: #ffffff;
    cursor: pointer;


}
.spaceBottom{
	margin:0 0 10px;
}

.spaceTop{
	margin:10px 0 0;
}