﻿/**
 * Sitekin CSS Framework
 *
 * Version 1.1
 *
 * Core reset stylesheet
 *
 * Don't make any changes in this file!
 *
 * @copyright       Copyright 2011
 */

body {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;    /* Firefox, other Gecko */
  box-sizing: border-box;         /* Opera/IE 8+ */
}
div, p, dl, dt, dd, ul, ol, li,
h1, h2, h3, h4, h5, h6, pre, code,
form, fieldset, legend, input, button,
textarea, th, td, img, address, font,
header, footer, section, aside, nav {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: inherit; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: inherit;    /* Firefox, other Gecko */
  box-sizing: inherit;         /* Opera/IE 8+ */
}
var {
  -webkit-box-sizing: content-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: content-box;    /* Firefox, other Gecko */
  box-sizing: content-box;         /* Opera/IE 8+ */
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
fieldset, img {
  border: 0;
}
p {
  margin: 0.4em 0;
}
h2 {
  font-weight: bold;
  font-size: 18px;
  margin: 1.4em 0 0.5em 0;
}
h3 {
  font-weight: bold;
  font-size: 16px;
  margin: 1em 0 0.5em 0;
}
h4 {
  font-weight: bold;
  font-size: 14px;
  margin: 0.8em 0 0.5em 0;
}
nav ul {
  list-style: none;
}
ul { 
  list-style-type: disc; 
  list-style-position: outside; 
  margin-left: 20px; 
}
ol { 
  list-style-type: decimal; 
  list-style-position: outside; 
  margin-left: 20px; 
}
ul ul { 
  list-style-type: circle; 
  list-style-position: outside;
}
ol ol { 
  list-style-type: lower-latin; 
  list-style-position: outside; 
}
table {
  border: none;
  width: 100%;
  -webkit-box-sizing: inherit; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: inherit;    /* Firefox, other Gecko */
  box-sizing: inherit;         /* Opera/IE 8+ */
}
th, td {
  vertical-align: top;
  text-align: left;
  padding: 0.2em;
}
th:first-child, td:first-child {
  padding-left: 0em;
}
:focus {
  outline: 0;
}
/*@purpose To enable resizing for IE */
/*@branch For IE6-Win, IE7-Win */
input, button, textarea, select {
  *font-size: 100%;
}
/* Remove special stylesheet in firefox */
button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
  border: none;
  padding: 0;
}
