/* 
Este arquivo reseta o padrão de formatação dos brownsers.
Preparado para rodar sem DOCTYPE DEFINITION no cabeçalho html 
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, select, option , input{
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
	font-family: Arial,sans-serif;
}

input::-ms-clear {
	display: none;
}

strong {
	font-weight: bold;	
}
table, caption, tbody, tfoot, thead, tr, th, td {
	vertical-align:top; /*corrigindo para o IE, corrige a área de scroll da treeview*/
}
:focus {
	outline: 0;
}
html{
	height: 100%;
	width: 100%;
	max-height:100%;
	overflow:hidden;
}
body {
	overflow:hidden;
	height:100%;
	width:100%;
	background:#eaf4fd;
	line-height:1em;
	color: black;
}

/*
Resolve problema de padding na DIV com Firefox x IE
http://css-tricks.com/box-sizing/
http://quirksmode.org/css/user-interface/boxsizing.html
*/
div {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
ol, ul {
	list-style: none;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
blockquote:before, blockquote:after,q:before, q:after {	content: ""; }
blockquote, q {	quotes: "" "";}

