﻿@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,600);

body {
}

/*-------------- Slidout Tool Tip ----------------*/

.slideOutTip{
	/* The main wrapping div of the slideout tips */
	position:absolute;
	
	top:0;
	left:0;
	/*background-color:#111;*/
	
	font-size:13px;
	color:white;
	overflow:hidden;
	height:10px;
}

.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:0 0 1px #999;*/
}

/* The holder for the title and the icon: */
.tipVisible{ cursor:pointer; height:5px; }

.tipTitle{
	float:left;
	font-family:Open Sans;
	font-size:12px;
	font-weight:bold;

	line-height:22px;
	padding-right:5px;
	color:#ffffff;
}

.size
{
    width:50;
}

.tipIcon{
	width:10px;
	height:10px;
	float:left;
	/*background-color:#61b035;
	border:1px solid #70c244;
	margin-top:6px;
	margin-right:8px;
	margin-left:5px;
	*/
	/* 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; }
.red .tipIcon{ background-color:#CD3A12; border:1px solid #da421a; }

.link
{
    color:#66FFFF;
    
}
.link:hover
{
    
color:	lightyellow;
}
.plusIcon{
	/* The plus icon */
	width:10px;
	height:10px;
	/*background:url('img/plus.gif') no-repeat center center;*/
	background:url('../images/suspended.png') no-repeat center center;
	/*margin: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; }

.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:10 0 0 8px;
	float:right;
}
.openLeft .tipTitle{ float:right; padding:8 0 0 5px; }
.openLeft .slideOutContent{ margin-top:22px; }
.openLeft.openTop .slideOutContent{	margin-top:0; }


.slideOutContent{
	/* Hiding the div with the slide out content: */
	font-family:Open Sans;
	display:none;
	padding:10px;
	font-size:13.5px;
	  background:url(../images/bgHeader.png);
border-radius: 7px;
height:auto;
z-index:9999999;
	line-height:21px;
}
.slideOutContent p{
	color:#ffffff;
	text-align:  justify;
}

/* Hiding the original paragraphs if they have not been replaced (JS disabled): */

.main_Tool > p{ display:none; }



/* The styles below are only necessary for the styling of the demo page: margin:20px auto;*/

.main_Tool{
	
	
	position:relative;
	/*width:960px;
	top:150px;*/
}

.spaceBottom{
	margin:0 0 10px;
}

.spaceTop{
	margin:10px 0 0;
}

/*-------------- Slidout Tool Tip ----------------*/