﻿@charset "utf-8";
/* ARQUIVO BASE PARA TODO O PROJETO
___________________________________ */

*{
	outline: none;
	font-family:Arial, Helvetica, sans-serif;
	list-style:none;
	margin:0;
	padding:0;
}
a{
	color: #666;
	text-decoration:underline;
}
a:hover{
	text-decoration:none;
}
a.toContent{
	display:none;
}
input
, select
, textarea{
	border:none;
	padding:3px;
	font-size:12px;
}
ol{
	display:list-item;
}
ol li{
	list-style-type:decimal;
	list-style-position:inside;
}
button{
	cursor:pointer;
}
object{
	outline:none;
}
img{
	border:none;
}
code{
	display:block !important;
}

/* CLASSES ÚTEIS
________________ */

.noMarginRight{
	margin-right:0 !important;
}
.noMarginLeft{
	margin-left:0 !important;
}
.noMarginBottom{
	margin-bottom:0 !important;
}
.noBorder{
	border:none !important;
}
.noPadding{
	padding:0 !important;
}
.noBorderBottom{
	border-bottom:none !important;
}
.noBackground{
	background-image:none !important;
}
.noPaddingLeft{
	padding-left:0 !important;
}
