<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html><head><meta content="text/html; charset=ISO-8859-1" http-equiv="content-type"><title>base.css</title></head><body>/* Copyright (C) YOOtheme GmbH, http://www.gnu.org/licenses/gpl.html GNU/GPL */<br>
<br>
/*<br>
&nbsp;* Base Style Sheet - Reduces inconsistencies across all browsers<br>
&nbsp;* Stripped down and improved collection of best practises<br>
&nbsp;* To avoid redundant code it sets new default values instead of baseline defaults and re-resetting them later<br>
&nbsp;* Thanks to HTML5 Boilerplate, Yahoo! User Interface (YUI) Library, Normalize.css<br>
&nbsp;*/<br>
<br>
<br>
/* Useful Snippets<br>
----------------------------------------------------------------------------------------------------*/<br>
<br>
/* Force vertical scrollbar, force body height to fit at least the
browser window, prevent iOS text size adjust on device orientation
change */<br>
html {<br>
&nbsp;&nbsp;&nbsp; overflow-y: scroll;<br>
&nbsp;&nbsp;&nbsp; min-height: 100%;<br>
&nbsp;&nbsp;&nbsp; -webkit-text-size-adjust: 100%;<br>
}<br>
<br>
/* Create a stacking context to prevent z-index issues */<br>
body { position: fixed;&nbsp; }<br>
<br>
/* Remove outline when clicking links: people.opera.com/patrickl/experiments/keyboard/test */<br>
a:hover, a:active { outline: none; }<br>
<br>
/* Removes scrollbar in IE */<br>
textarea { overflow: auto; }<br>
<br>
/* Remove background from selected images */<br>
img::selection { background: transparent; }<br>
img::-moz-selection { background: transparent; }<br>
<br>
/* Remove borders */<br>
fieldset,<br>
img,<br>
iframe { border: 0; }<br>
<br>
/* Consistency of cursor style, Corrects inability to style clickable 'input' types in iOS */<br>
button,<br>
input[type="button"],<br>
input[type="reset"],<br>
input[type="submit"] {<br>
&nbsp;&nbsp;&nbsp; cursor: pointer;<br>
&nbsp;&nbsp;&nbsp; -webkit-appearance: button;<br>
}<br>
<br>
button[disabled],<br>
input[disabled] { cursor: default; }<br>
<br>
/* Removes inner padding and border in FF3+ */<br>
button::-moz-focus-inner,<br>
input::-moz-focus-inner {<br>
&nbsp;&nbsp;&nbsp; border: 0;<br>
&nbsp;&nbsp;&nbsp; padding: 0;<br>
}<br>
<br>
<br>
/* HTML5 display definitions<br>
----------------------------------------------------------------------------------------------------*/<br>
<br>
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section, summary { display: block; }<br>
audio, canvas, video { display: inline-block; }<br>
audio:not([controls]) { display: none; }<br>
[hidden] { display: none; }<br>
<br>
<br>
/* New Base Values<br>
----------------------------------------------------------------------------------------------------*/<br>
<br>
body { margin: 0; }<br>
<br>
/* Block Space */<br>
p, hr,<br>
ul, ol, dl,<br>
blockquote, pre,<br>
fieldset, figure { margin: 15px 0; }<br>
<br>
h1, h2, h3, h4, h5, h6 { margin: 25px 0 15px 0; }<br>
<br>
/* Lists */<br>
ul, ol, dl { padding-left: 30px }<br>
dd { margin-left: 40px; }<br>
<br>
/* Headings */<br>
h1, h2, h3, h4, h5, h6 { font-weight: normal; }<br>
<br>
h1 { font-size: 30px; line-height: 30px; }<br>
h2 { font-size: 22px; line-height: 22px; }<br>
h3 { font-size: 18px; line-height: 18px; }<br>
h4, h5, h6 { font-size: 16px; line-height: 16px; }<br>
<br>
/* Links */<br>
a, a:hover { text-decoration: none; }<br>
<br>
/* Text-level Semantics */<br>
b, strong { font-weight: bold; }<br>
<br>
small { font-size: 11px; }<br>
<br>
ins { text-decoration: none; }<br>
del { text-decoration: line-through; }<br>
<br>
abbr[title], dfn[title] {<br>
&nbsp;&nbsp;&nbsp; border-bottom: 1px dotted;<br>
&nbsp;&nbsp;&nbsp; cursor: help;<br>
}<br>
dfn[title] { font-style: normal; }<br>
<br>
/* Horizontal Rule */<br>
hr {<br>
&nbsp;&nbsp;&nbsp; display: block;<br>
&nbsp;&nbsp;&nbsp; height: 1px;<br>
&nbsp;&nbsp;&nbsp; padding: 0;<br>
&nbsp;&nbsp;&nbsp; border: 0;<br>
&nbsp;&nbsp;&nbsp; border-top: 1px solid;<br>
}<br>
<br>
/* Quotes */<br>
q, blockquote {<br>
&nbsp;&nbsp;&nbsp; quotes: '\201C' '\201D' '\2018' '\2019';<br>
&nbsp;&nbsp;&nbsp; font-family: "Times New Roman", Times, serif;<br>
&nbsp;&nbsp;&nbsp; font-style: italic;<br>
}<br>
&nbsp;&nbsp;&nbsp; <br>
blockquote {<br>
&nbsp;&nbsp;&nbsp; padding: 0 20px;<br>
&nbsp;&nbsp;&nbsp; font-size: 16px;<br>
&nbsp;&nbsp;&nbsp; line-height: 22px;<br>
}<br>
<br>
blockquote:before { content: '\201C'; }<br>
blockquote:after { content: '\201D'; }<br>
<br>
/* Code */<br>
code, pre { font-family: "Courier New", Courier, monospace; }<br>
<br>
code { word-spacing: -2px; }<br>
<br>
pre {<br>
&nbsp;&nbsp;&nbsp; padding: 10px;<br>
&nbsp;&nbsp;&nbsp; font-size: 12px;<br>
&nbsp;&nbsp;&nbsp; line-height: 18px;<br>
&nbsp;&nbsp;&nbsp; white-space: pre-wrap;<br>
&nbsp;&nbsp;&nbsp; word-wrap: break-word;<br>
}<br>
<br>
/* Tables */<br>
table {<br>
&nbsp;&nbsp;&nbsp; border-collapse: collapse;<br>
&nbsp;&nbsp;&nbsp; border-spacing: 0;<br>
}<br>
<br>
th, td { padding: 1px; }<br>
<br>
/* Forms */<br>
input, select { vertical-align: middle; }<br>
<br>
select, input, textarea, button { font: 12px aller,Arial,sans-serif; }<br>
<br>
form, textarea { margin: 0; }<br>
legend, fieldset, input { padding: 0; }<br>
<br>
textarea,<br>
input[type='text'],<br>
input[type='password'],<br>
select { padding: 2px; }<br>
select { line-height: 19px; } /* Needed for Safari */<br>
<br>
button,<br>
input[type='button'],<br>
input[type='submit'] { padding: 2px 3px; }<br>
<br>
<br>

</body></html>