/* -----[ RESET ALL COMMON ELEMENTS ]---------------------------------------- */

html {min-height: 100%; padding-bottom: 1px !important; }

/* -----[ main elements reset ]---------------------------------------------- */
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, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-weight: inherit;
font-style: inherit;
font-size: 100%;
font-family: inherit;
vertical-align: baseline;
text-align: left;
}

a, button { cursor: pointer; }
a, a:visited { text-decoration: none; }
a:hover { text-decoration: underline; }
ol, ul { list-style: none; }
legend { display: none; }
address {font-style: normal;}

/* -----[ forms reset ]------------------------------------------------------ */
input.button_ie, button { overflow: visible } /* For IE */

/* -----[ table reset ]------------------------------------------------------ */
table { border-collapse: collapse; border-spacing: 0;}
caption, th, td { text-align: left; vertical-align: top; font-weight: normal;}

/* All popular browsers has default font size equal 16px.
If we set font size equal 62.5% then font size is equal 10px at screen (but not set 10px, IE6 not resize this rule).
Now we have 1em = 10px, so 1..1em=11px etc.
It is easier way to calculate font size.
font-size: 62.5%; 1e5d8e */

body, input, textarea, select, option, optgroup, button { font-family: Arial, sans-serif; }
body { background: #fff url(../img/bg/body.gif) repeat-x 50% top; color: #484848; font-size: 62.5%; line-height: 1.5em }

/* Clearing floats without extra markup
Based on How To Clear Floats Without Structural Markup by PiE
[http://www.positioniseverything.net/easyclearing.html] FROM Blueprint CSS Framework */

/* -----[ clear styles ]----------------------------------------------------- */

.clear { display: inline-block; }
.clear:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
* html .clear { height: 1%; }
.clear { display: block; }