/**
 *
 * @author: SkyNeti - Soluções em TI 
 * @site: http://www.skyneti.com
 * @date: 2011/07/20
 *
 * Copyright(c) Todos os direitos reservados
 *
**/

/* Geral
___________________ */

*{
	font-family:Arial, Helvetica, sans-serif; /*Fontes padrões do projeto*/
	list-style:none;
	margin:0;
	padding:0;
}
a{
	text-decoration:underline;
}
a:hover{
	text-decoration:none;
}
input
, select
, textarea{
	background-color:#EBEBEB;
	border-color:#ACACAC #E7E7E7 #E7E7E7;
	border-right:1px solid #E7E7E7;
	border-style:solid;
	border-width:1px;
	font-size:12px;
	padding:4px;
}
select{
	padding:3px 4px;
}
ol{
	display:list-item;
}
ol li{
	list-style-type:decimal;
	list-style-position:inside;
}
button{
	cursor:pointer;
}
object{
	outline:none;
}
img{
	border:none;
}

/* CLASSES ÚTEIS
________________ */

.clearBoth{
	clear:both !important;
}
.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;
}
.floatLeft{
	float:left !important;
}
.floatRight{
	float:right !important;
}
.displayNone{
	display:none !important;
}