*{
	/* Universal CSS reset */
	margin:0;
	padding:0;
}


p{
	line-height: 1.5em;
}

.slideOutTip{
	/* The main wrapping div of the slideout tips */
	position:absolute;
	padding:3px;
	top:0;
	left:0;
	background-color: none;
	font-size:10px;
	color: #333;
	overflow:hidden;
	height:45px;
	
	-webkit-transition:width .1s ease-out;  
   -moz-transition:width  .1s ease-out;  
   -o-transition:width  .1s ease-out; 
   transition:width  .1s ease-out; 
	
}

.slideOutTip:hover{
	/* Applying a CSS3 outer glow on hover */

}

/* The holder for the title and the icon: */
.tipVisible { 
	cursor:pointer;
	height:22px;
	padding-top: 10px;
	 }

 p.tipTitle{
	float:left;
	font-family:'Myriad Pro',Arial, Helvetica, sans-serif;
	font-size:13px;
	font-weight:bold;
	white-space:nowrap;
	line-height:15px;
	padding-right:5px;
}

.tipIcon{
	width:20px;
	height:20px;
	float:left;
	
	/* CSS3 Rounded corners */

}

/* Three color themes */
.green .tipIcon{ //background-color:#000000; border:1px solid #000000; }
.blue .tipIcon{ background-color:#000000; border:1px solid #000000; }
.red .tipIcon{ background-color:#000000; border:1px solid #000000; }

.plusIcon{
	/* The plus icon */
	width:13px;
	height:13px;
	background:url('https://s3.amazonaws.com/iw-files/interactive_graphics/2011/09/6Euro_Fish/images/plus.gif') no-repeat center center;
	margin:0 4px 4px 4px;
	
	/* 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: 175px !important; */
	background-color: #333;
	color:white;
	-webkit-transition:width .1s ease-out;  
   -moz-transition:width  .1s ease-out;  
   -o-transition:width  .1s ease-out; 
   transition:width  .1s ease-out;
   
   -moz-border-radius: 5px;
   -webkit-border-radius: 5px;
   -o-border-radius: 5px;
   border-radius: 5px; /* future proofing */
   
    
   
	
	}

.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;
	clear: both;
	padding: 0px 10px 10px 15px;
	font-size:11px;
	font-style: italic;
}

/* Hiding the original paragraphs if they have not been replaced (JS disabled): */

.sixeurofish > p{ display:none; }



/* The styles below are only necessary for the styling of the demo page: */

.sixeurofish{
	height:420px;

	width:620px;
	background: url('https://s3.amazonaws.com/iw-files/interactive_graphics/2011/09/6Euro_Fish/images/6billion_fish2.jpg') no-repeat center top #081219;
	position: relative;
	color:#333;
	font-family:Arial, Helvetica, sans-serif;

}


.spaceBottom{
	margin:0 0 10px;
}

.spaceTop{
	margin:10px 0 0;
}


