/* 
Here you can edit the page properties, like margins from top, left, right.
Default font style, size and text align.
Of course you can add other styles if you want.
*/

html {
	margin: 0;
	padding: 0;
}
body {
	font-family: Verdana, Helvetica, Arial, sans-serif;
	font-size: 75%;
	line-height: 1.9;
	color:#333;
	background: #FFF;
	text-align: left;
	margin: 0;
	padding: 0;
}
/* 
We have setted up forms margins to 0, very usefull in many cases.
*/
form {
	margin: 0px;
	padding: 0px;
}
/* 
Forms element like input field, select field, textarea can be set here.
We used only to force Font family and size.
If you wish, you can edit background, 
*/
input, select, textarea {
}
/* 
Table cell can be set here. 
*/
td {
	padding: 2px;
	padding-left:10px;
}
/*
A very important line if you want to use also Mozilla Compatible (Firefox)
See article on Developer Site.
http://developer.mozilla.org/en/docs/Images,_Tables,_and_Mysterious_Gaps
*/
td img {
	display: block;
}
/* 
Table header can be set here. 
*/
th {
	background: #e2e2e2;
	border-bottom: 1px solid #036;
	padding:2px;
}
/* 
List elements can be set here. 
*/
ol, ul {
	margin-top:0;
	margin-bottom:0.6em;
	line-height:1.4;
}
/* 
Horizontal line settings. 
*/
hr {
/*
	color: #e2e2e2;
	height: 1px;
*/
}
/* 
Links can be edited here. 
*/
a {
	text-decoration: none;
	outline: none;
	color: #DA251A;
}
a img {
	border: none;
	padding: 3px;
}
a:link {
	font-weight: bold;
	text-decoration: none;
	color: #999;
}
a:visited {
	font-weight: bold;
	text-decoration: none;
	color: #666;
}
a:hover, a:active {
	text-decoration: underline;
}
/* 
H1, H2, H3, H4, H5 tags, if is possibble, use this for your pages,
can be very usefull for . 
*/
h1 {
	font-size: 1.6em;
	font-weight: bold;
}
h2 {
	font-size: 1.0em;
	font-weight: bold;
}
h3 {
	font-size: 1.2em;
	font-weight: bold;
}
h4 {
	font-size: 1.1em;
	font-weight: bold;
}
h5 {
	font-size: 1em;
	font-weight: bold;
}
h6 {
	font-size: 1em;
	font-weight: normal;
}
/* 
We setup here all images border to 0 
*/
img {
	border: none;/* vertical-align: middle; */
}
/* 
Fieldset and legend is a very smart tag for making a border 
for a text without table and  also to add a header to this text.
*/
legend {
	white-space: nowrap;
	font-weight: bold;
	color: #000099;
	font-size: 1em;
	font-variant: small-caps;
}
fieldset {
	display: block;
	border: 1px #969696 solid;
	margin: 5px;
	padding: 3px;
}
p {
	margin-top: 0;
	text-align: justify;
}
br {
	line-height: 6px;
}
small {
	margin-top: 0px;
	margin-bottom: 0px;
}
acronym {
	border-bottom: none;
}
.clear {
	clear: both;
}
