/* based on http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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, 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,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
/*body {
	line-height: 1;
}*/
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* No More IE6 Background Flicker 
   http://www.hedgerwow.com/360/bugs/dom-fix-ie6-background-image-flicker.html
   http://habrahabr.ru/blogs/webdev/18506/#comment_378431 */
/*
html {
	filter: expression(runtimeStyle.filter = '', document.execCommand('BackgroundImageCache', false, true));
} */

/* set proper mode for VML elements */
v\:group, v\:shape, v\:textbox, v\:line, v\:polyline, v\:rect, v\:roundrect, v\:arc, v\:oval {
	behavior: url(#default#VML);
	display: inline-block;
}

/* new clearfix
  http://rotorweb.ru/mysli-vslux/saying-goodbye-overflow-hidden.html 
  http://perishablepress.com/press/2009/12/06/new-clearfix-hack/
  http://aloestudios.com/2009/12/goodbye-overflow-clearing-hack/ 
.clearfix:after {
  visibility: hidden;
  display: block;
  clear: both;
  content: " ";
  height: 0;
  font-size: 0;
}

* html .clearfix {
	zoom: 1; 
} */ /* IE6 */ /*

*:first-child+html .clearfix {
	zoom: 1; 
} */ /* IE7 */

/* Utilities */
.hidden {
  display: none;
}

/* Diagnostic Styling */

/* Highlight unsized images during development
  http://habrahabr.ru/blogs/css/125806/#comment_4141264 */
img:not([width]), img:not([height]), img[width=""], img[height=""] {
  border: 2px solid red !important;
}

/* http://meyerweb.com/eric/thoughts/2007/09/07/diagnostic-styling/ */

a[href="#"] {
  background: lime;
}

a[href=""] {
  background: fuchsia;
}

img {
  outline: 5px solid red;
}

img[alt][title] {
  outline-width: 0;
}

img[alt] {
  outline-color: fuchsia;
}

img[alt], img[title] {
  outline-style: double;
}

img[alt=""][title], img[alt][title=""] {
  outline-width: 3px;
}

img[alt=""][title=""] {
  outline-style: dotted;
}

