/**
 * = Reset (remix)
 *
 * @author	Ivan Zhekov <http://joneff.info>
 */


/*--------------------------------------------------------------------------*/




/**
 * #region	Reset
 */




/*--------------------------------------------------------------------------*/




/**
 * == Reset Elements
 */
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,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
}
body {
	line-height: 1;
}




/**
 * === Ordered and unordered lists
 *
 * Bullets are preserved.
 */
ol, ul {
	/*list-style: none;*/
}




/**
 * === Tables
 *
 * Tables still need 'cellspacing="0"' in the markup.
 */
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}




/**
 * === Quotes' generated contet
 */
blockquote, q {
	quotes: "";
	quotes: none;
}




/**
 * === Insets and deletes
 *
 * Remember to highlight inserts somehow!
 */
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}




/**
 * === Focus styles
 *
 * Remember to define focus styles!
 */
:focus {
	outline: 0;
}




/*--------------------------------------------------------------------------*/




/**
 * #region	Basic styling
 */




/*--------------------------------------------------------------------------*/




/**
 * == Elements
 */




/**
 * === Root elements
 */
html {}
body {}




/**
 * === Block Elements
 */
div {}
p {
	margin: 1em 0;
}
blockquotes {
	margin: 1em;
	padding: 0 40px;
}




/**
 * === Headings
 *//*
h1, h2, h3, h4, h5, h6 {
	margin: 1em 0 .5em;
	color: @title-color;
	font-family: @title-font-family;
}
h1 {
	font-size: 2em;
	font-weight: normal;
}
h2 {
	font-size: 1.7em;
	font-weight: normal;
}
h3 {
	font-size: 1.4em;
	font-weight: normal;
}
h4 {
	font-size: 1.2em;
	font-weight: normal;
}
h5 {
	font-size: 1em;
	font-weight: bold;
}
h6 {
	font-size: .8em;
	font-weight: bold;
}




/**
 * === Tables
 */
table {}
caption {}
thead, tbody ,tfoot {}
th, td {
	vertical-align: top;
}




/**
 * === Lists
 */
ol, ul {
	margin: 1em 0;
	padding: 0 0 0 40px;
}
ol:first-child, ul:first-child {
	margin-top: 0;
}
ul:last-child, ol:last-child {
	margin-bottom: 0;
}




/**
 * === Quotes
 */
blockquote {
	margin: 1em 40px;
}
cite {
	font-style: italic;
}




/**
 * === Links
 */
a {
	text-decoration: underline
}
a:hover {}
a:focus {
	outline: 1px dotted;
}




/**
 * === Phrase elements
 */
i, em {
	font-style: italic;
}
b, strong {
	font-weight: bold;
}
small {
	font-size: .8em;
}
big {
	font-size: 1.2em;
}




/**
 * === Images
 */
img, a img {
	border: none;
	vertical-align: bottom;
}