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

    typography.css
    * Sets up some sensible default typography

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

.clearfix:after {
    display: block;
    clear: both;
    visibility: hidden;
    height: 0;
    font-size: 0;
    content: "\0020";
    }
.clear {
    clear: both;
    }
.inner {
    overflow: hidden;
    }


/* =Headings
-------------------------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #222;
    font-family: "Times New Roman";
    font-weight: normal;
    }

h1 {
    margin: 0 0 8px;
    line-height: 40px;
    color: #00c0f3;
   /*  font-size: 36px;*/
    font-size:240%;
    }
h2 {
    margin: 0 0 8px;
    /* font-size: 24px; */
    font-size:160%;
    
    }
h3 {
    margin: 0 0 .57em;
    font-size: 1.5em;
    font-size:130%;
    }
h4 {
    margin: 0 0 .615em;
    font-size: 1.3em;  
    font-size:120%;
    }
h5 {
    margin: 0 0 .67em;
    font-size: 1.2em;
    font-size:110%;
    }
h6 {
    margin: 0 0 .8em;
    font-size: 1em;
    font-size:105%;
    }


/* =Text elements
-------------------------------------------------------------- */

a {
    color: #00c0f3;
    text-decoration: none;
    }
a:hover,
a:focus,
a:active {
    color: #222;
    text-decoration: underline;
    }
.article-text {
    overflow: hidden;
    }
.article-text a {
    text-decoration: underline;
    }
h1 a:hover,
h1 a:focus,
h1 a:active {
    color: #00c0f3;
    }

.link-block a {
    display: inline-block;
    background: url(../images/arrow_right.png) no-repeat 0;
    padding-left: 18px;
    }

html>/**/body a,
img {
    display: inline-block;
    }
html>/**/body li a {
    display: inline;
    }

img {
    border: 0;
    vertical-align: middle;
    }

blockquote {
    margin: 1.5em;
    color: #666;
    font-style: italic;
    }
strong {
    font-weight: bold;
    }
em,
dfn {
    font-style: italic;
    }
sup,
sub {
    line-height: 0;
    }

abbr,
acronym {
    border-bottom: 1px dotted #666;
    }

pre {
    white-space: pre;
    }
pre,
code {
    line-height: 1.5;
    font: 1em 'andale mono', 'lucida console', monospace;
    }

svg:not(:root) {
    overflow: hidden;
    }


/* =Lists
-------------------------------------------------------------- */

ul,
ol {
    padding-left: 1.2em;
    }

ul {
    list-style: disc;
    }
ol {
    list-style: decimal;
    }

.list ul {
    margin: 0 0 8px;
    color: #00c0f3;
    }
.list li {
    padding: 4px 0;
    }
.list a {
    display: inline-block;
    color: #222;
    }
.list-oneline a {
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    vertical-align: top;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    }


/* =Tables
-------------------------------------------------------------- */

th {
    font-weight: bold;
    }
caption,
th,
td {
    padding: 4px 9px;
    }


/* =Margins
-------------------------------------------------------------- */

p,
ul,
ol,
dl,
pre,
address,
table {
    margin-bottom: 1.6em;
    }


/* =Misc classes
-------------------------------------------------------------- */

.show {
    display: block;
    }
.hide {
    display: none;
    visibility: hidden;
    }
.visible {
    visibility: visible;
    }
.invisible {
    visibility: hidden;
    }

.mark {
    background: #ff0;
    }

.top {
    margin-top: 0 !important;
    }
.bottom {
    margin-bottom: 0 !important;
    }
.first {
    margin-left: 0 !important;
    }
.last {
    margin-right: 0 !important;
    }

.floatl {
    float: left;
    }
.floatr {
    float: right;
    }

.alignleft {
    float: left;
    margin: 0 36px 16px 0;
    padding: 0;
    }
.alignright {
    float: right;
    margin: 0 0 16px 36px;
    padding: 0;
    }
