@charset "utf-8";

/**
 * RESET Browsers Default Styles, slows down the rendering by 5-7%
 *
 */


/*****************************************************************************************************
 * Clear All Tags
 *****************************************************************************************************/
html, body, div, span, object, embed, iframe,
h1, h2, h3, h4, h5, h6, p, pre, blockquote, address,
ins, del, em, strong, i, b, small, q, mark, cite, abbr, dfn, kbd, code, samp, var,
dl, dt, dd, ol, ul, li,
form, fieldset, legend, label, textarea, input, button, select, optgroup, option,
table, caption, thead, tbody, tfoot, tr, th, td, /* col, colgroup, */
a,
img,
hr,
article, aside, details, figcaption, figure, footer, header, hgroup, nav, menu, section,
audio, canvas, meter, summary, time, video
{
	margin: 0;
	padding: 0;
	border: 0 none;
	outline: 0 none;
	vertical-align: baseline;
}


/*****************************************************************************************************
 * Root Elements
 *****************************************************************************************************/
html,
body {
	width: 100%;
	height: 100%;
}
body {
	font-size: 62.5%;
}


/*****************************************************************************************************
 * HTML5 Elements Displaying
 *****************************************************************************************************/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section { /* Corrects block display not defined in IE7/8/9 and FF3 */
	display: block;
}
audio,
canvas,
video {
	display: inline-block;
}
.ie7 audio,
.ie7 canvas,
.ie7 video { /* Corrects inline-block display not defined in IE7/8/9 and FF3 */
	display: inline;
	zoom: 1.0;
}
audio:not([controls]) { /* Prevents modern browsers from displaying 'audio' without controls */
	display: none;
}


/*****************************************************************************************************
 * Link
 *****************************************************************************************************/
a {
	text-decoration: underline;
}
a:hover,
a:focus,
a:active {
	text-decoration: none;
	noFocusLine: expression(this.onFocus=this.blur()); /* ie7 fix */
	outline: 0 none; /* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
}
a img {
	border: 0 none;
}
:focus {
	outline: 0 none;
}


/*****************************************************************************************************
 * List
 *****************************************************************************************************/
li {
	display: list-item;
}
nav ul,
nav ol {
	list-style: none outside none;
	margin: 0;
	padding: 0;
}


/*****************************************************************************************************
 * Embedded content
 *****************************************************************************************************/
img {
	display: inline-block;
	background-color: transparent;
}
.ie7 img { /* Bicubic resizing for non-native sized IMG. Improve image quality when scaled in IE7: code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
	-ms-interpolation-mode: bicubic;
}
svg:not(:root) { /* Correct overflow not hidden in IE9 */
	overflow: hidden;
}


/*****************************************************************************************************
 * Form Elements
 *****************************************************************************************************/
textarea,
input,
button,
select {
	display: inline-block;
}
textarea { /* Remove default vertical scrollbar in IE7/8/9: www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */
	overflow: auto;
	vertical-align: top;
	resize: vertical; /* Allow only vertical resizing */
}
input[type=radio],
input[type=checkbox] { /* Align checkboxes, radios, text inputs with their label by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css */
	vertical-align: middle;
	position: relative;
	top: -2px;
}
.ie7 input[type=checkbox],
.ie7 input[type=radio] { /* extra margin fix in IE7 */
	width: 12px;
	height: 12px;
}
input[type=button],
input[type=submit],
input[type=reset],
button {
	cursor: pointer; /* Hand cursor on clickable input elements */
	-webkit-appearance: button; /* Allow styling of clickable form elements in iOS */
}
/* Consistent box sizing and appearance (BEGIN) */
input[type=checkbox],
input[type=radio] {
	box-sizing: border-box;
}
input[type=search] {
	-webkit-appearance: textfield;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}
input[type=search]::-webkit-search-decoration {
	-webkit-appearance: none;
}
/* Consistent box sizing and appearance (END) */

button::-moz-focus-inner,
input::-moz-focus-inner { /* Remove inner padding and border in FF3/4: http://www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ (BEGIN) */
	border: 0;
	padding: 0;
}
.ie7 input[type=button],
.ie7 input[type=submit],
.ie7 input[type=reset],
.ie7 button { /* Correct inner spacing displayed oddly in IE7: www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
	width: auto;
	overflow: visible;
}
form label { /* Indicate that 'label' will shift focus to the associated form element */
	cursor: pointer;
}


/*****************************************************************************************************
 * Table
 *****************************************************************************************************/
table {
	display: table;
	table-layout: auto;
	border-collapse: collapse;
	border-spacing: 0;
	border: 0 none;
	empty-cells: show;
}
caption {
	display: table-caption;
	text-align: right;
	font-weight: bolder;
}
col {
	display: table-column;
}
colgroup {
	display: table-column-group;
}
thead {
	display: table-header-group;
}
tbody {
	display: table-row-group;
}
tfoot {
	display: table-footer-group;
}
tr {
	display: table-row;
}
td,
th {
	display: table-cell
}
th {
	font-weight: bolder;
	text-align: left;
}
td {
	vertical-align: top;
}


/*****************************************************************************************************
 * Text Decoration
 *****************************************************************************************************/
strong,
b,
dt {
	font-weight: bolder;
}
cite,
em,
var,
address,
i {
	font-style: italic;
}
code,
pre,
kbd,
samp,
var { /* Redeclare monospace font family: http://en.wikipedia.org/wiki/User:Davidgothberg/Test59 */
	font-family: monospace, sans-serif;
	font-size: 92%;
}
code,
pre { /* W3C uses about the same colors for codes */
	color: #c33;
}
pre { /* Improve readability of pre-formatted text in all browsers www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}
sup,
sub { /* Position subscript and superscript content without affecting line-height: https://gist.github.com/413930 */
	font-size: 75%;
	line-height: 0;
	vertical-align: baseline;
	position: relative;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.3em;
}
del {
	color: #666;
	text-decoration: line-through;
}
ins {
	text-decoration: underline;
}
small {
	font-size: 75%;
}
dfn { /* Addresses styling not present in S5, Chrome */
	font-style: italic;
}
abbr {
	text-transform: uppercase;
	font-size: 85%;
	letter-spacing: 0.1em;
}
abbr[title],
dfn[title] { /* Addresses styling not present in IE7/8/9, S5, Chrome */
	border-bottom: 1px dotted;
	cursor: help;
}
mark { /* Addresses styling not present in IE7/8 */
	display: inline;
	background-color: #ffff00;
	color: #000;
}
s {
	text-decoration: line-through;
}
blockquote {
	quotes: none;
	font-style: italic;
	margin: 0 2em 20px;
}
q {
	quotes: "\201c" "\201d";
}
.ie7 q {
	z-index: expression(runtimeStyle.zIndex = 1,
	insertAdjacentHTML("afterBegin", '&ldquo;'),
	insertAdjacentHTML("beforeEnd", '&rdquo;'));
	zoom: 1.0;
}


/*****************************************************************************************************
 * Divider
 *****************************************************************************************************/
hr {
	display: block;
	clear: both;
	overflow: hidden;
	height: 0;
	font-size: 0;
	line-height: 0;
}


/*****************************************************************************************************
 * 'hidden' attribute
 *****************************************************************************************************/
[hidden] { /* Addresses styling for 'hidden' attribute not present in IE7/8/9, FF3, S4 */
	display: none;
}

/*****************************************************************************************************
 * Remove Skype browser plugin styles
 *****************************************************************************************************/
span.skype_pnh_print_container {
	display: inline !important;
}
span.skype_pnh_container {
	display: none !important;
}
