*{
	/* Universal CSS reset */
	margin:0;
	padding:0;
}

img{
       border:0;
}

body{
	/* Setting default text color, background and a font stack */
	color:#ccdb2c;
	background: url('img/main_bg.gif') no-repeat center #000; /* older color #9D9FA0 */
	font-family:'Segoe UI','Trebuchet MS','Myriad Pro',Verdana,Arial, Helvetica, sans-serif;
}

.slideOutTip{
	/* The main wrapping div of the slideout tips */
	position: absolute;
	padding: 3px;
	top: 0;
	left: 0;
	background-color: #000;
	font-size: 14px;
	color: #fff;
	overflow: hidden;
	height: 20px;
	border: 3px solid #991d20;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	behavior: url(PIE.htc);
}

.slideOutTip:hover{
	/* Applying a CSS3 outer glow on hover */
	background-color: #000;
	border: 3px solid #ccdb2c;
	-moz-box-shadow: 0px 0px 5px #000;
	-webkit-box-shadow: 0px 0px 5px #000;
	box-shadow: 0px 0px 5px #000;
	behavior: url(PIE.htc);
}

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

.tipTitle{
	float:left;
	font-family:'Segoe UI','Trebuchet MS','Myriad Pro',Arial, Helvetica, sans-serif;
	font-size:13px;
	font-weight:bold;
	letter-spacing:0px;
	white-space:nowrap;
	line-height:20px;
	padding-right:5px;
}

.tipTitle:hover{
	color:#ccdb2c;
}

.tipIcon{
	width:20px;
	height:20px;
	float:left;
	background-color:#61b035;
	border:0px solid #ff0000;
	margin-right:8px;
	
	/* CSS3 Rounded corners */
	
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	behavior: url(PIE.htc);
}

/* Three color themes */
.green .tipIcon{ background-color:#61b035; border:0px solid #70c244; }
.blue .tipIcon{ background-color:#1078C7; border:0px solid #1e82cd; }
.red .tipIcon{ background-color:#CD3A12; border:0px solid #da421a; }
.nicegreen .tipIcon{ background-color:#ccdb2c; border:0px solid #da421a; }
.black .tipIcon{ background-color:#000; border:1px solid #fff; }
.white .tipIcon{ background-color:#fff; border:0px solid #fff; }

.plusIcon{
	/* The plus icon */
	width:13px;
	height:13px;
	background:url('img/mais.gif') 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*/
	width:13px;
	height:13px;
	background:url('img/fechar.png') no-repeat center center;
	margin:4px;
}

/* 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;
	color:#999;
	padding:10px;
	font-size:10px;
	font-weight:bold;
	letter-spacing:1px;
	text-shadow: #404220 0px 0px 0px;
}

/* 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:650px;
	margin:0px auto;
	position:relative;
	width:960px;
	border:0px solid red;
}

.spaceBottom{
	margin:0 0 10px;
}

.spaceTop{
	margin:10px 0 0;
}

h1{
	background-color:#000;
	border-bottom:2px solid #292929;
	font-size:25px;
	font-weight:normal;
	margin-bottom:15px;
	padding:10px;
	text-align:center;
}

h2 {
	font-size:12px;
	font-weight:normal;
	padding-right:40px;
	position:relative;
	right:0;
	text-align:right;
	text-transform:uppercase;
	top:-55px;
}

a, a:visited {
	color:#0196e3;
	text-decoration:none;
	outline:none;
}

a:hover{
	text-decoration:underline;
}

a img{
	border:none;
}

.clear{
	clear:both;
}

h1,h2,p.tutInfo{
	font-family:'Segoe UI','Trebuchet MS','Myriad Pro',Arial,Helvetica,sans-serif;
}