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, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
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;
    vertical-align : baseline;
    background     : transparent;
}

body{
    font-size   : 10px;
    font-family : Arial, Helvetica, sans-serif;
}

textarea, input, select{
    font-family        : Helvetica, Arial, sans-serif;
    -webkit-box-sizing : border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing    : border-box; /* Firefox, other Gecko */
    box-sizing         : border-box; /* Opera/IE 8+ */
}

ol, ul{
    list-style : none;
}

blockquote, q{
    quotes : none;
}

:focus{
    outline : 0;
}

ins{
    text-decoration : none;
}

del{
    text-decoration : line-through;
}

table{
    border-collapse : collapse;
    border-spacing  : 0;
}

a {
    cursor          : pointer;
    text-decoration : none;
}

p {
	color: #333;
}

html, body{
    height : 100%;
}

body {
    overflow-x : auto;
    overflow-y : scroll;
}

body[contenteditable]{
    overflow-x : auto;
    overflow-y : auto;
}

.root{
    position   : relative;
    margin     : 0 auto;
}

.bold{
    font-weight : bold;
}

.italic{
    font-style : italic;
}

.underline{
    text-decoration : underline;
}

.lineThrough{
    text-decoration : line-through;
}

.singleLineText{
    white-space   : nowrap;
    text-overflow : ellipsis;
}

.alignLeft{
    text-align : left;
}

.alignCenter{
    text-align : center;
}

.alignRight{
    text-align : right;
}

.alignJustify{
    text-align : justify;
}