/*------------------------------------------------------------------------------------
/	HTML
/-------------------------------------------------------------------------------------*/
body {
	margin: 0;
	padding: 0;	
}

body, html{
	font-family:Arial, Tahoma, sans-serif;	
}

a img {
	border:0;
}

*:focus {  
    outline: none;
}

h1,h2,h3,h4,h5,h6 {
	font-family:Arial, Tahoma, sans-serif;
	margin-bottom: 0px;
	margin-top: 0px;
	font-weight: normal;	
}

input, textarea, select, button {
	box-sizing: border-box; /* css3 rec */
	-moz-box-sizing: border-box; /* ff2 */
	-ms-box-sizing: border-box; /* ie8 */
	-webkit-box-sizing: border-box; /* safari3 */
	-khtml-box-sizing: border-box; /* konqueror */
	margin: 0;
}

input[type="text"], input[type="password"], textarea {
	width: 100%;	
}

button, input[type="button"], input[type="submit"], input[type="reset"] {
	display: inline-block;
	min-height: 26px;
	padding-left: 10px;
	padding-right: 10px;
}
/*------------------------------------------------------------------------------------
/	CLASSES PADRÃO
/-------------------------------------------------------------------------------------*/
.error-div {
	line-height: 25px;
	font-size: 10px;
	color: #ff0000;	
}

.word-wrap {
	white-space: pre-wrap; /* css-3 */
	white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
	white-space: -pre-wrap; /* Opera 4-6 */
	white-space: -o-pre-wrap; /* Opera 7 */
	word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.clearnext {
	clear: left;	
}
.clear {
	clear:both;
	content:' ';
	display:block;
	font-size:0;
	line-height:0;
	visibility:hidden;
	width:0;
	height:0;
}
.clearfix:after {
	content: ' ';
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
 
.clearfix {
	display: inline-block;
	zoom: 1;
}
 
html[xmlns] .clearfix {
	display: block;
}
 
* html .clearfix {
	height: 1%;
}
.block {
	display:block;
}
.fl {
	float:left;
}
.fr {
	float:right;
}

.centralizar-vertical {
	display: table;
	width: 100%;
	height: 100%;	
}

.centralizar-vertical > * {
	margin: 0;
	display: table-cell; 
  	vertical-align: middle; 
  	text-align: center; 
}
