/* --------------------------------------------------------------

 typography.css
 * Sets up some sensible default typography.

 -------------------------------------------------------------- */
/* Default font settings.
 The font-size percentage is of 16px. (0.75 * 16px = 12px) */
body {
    font-size: 75%;
    color: #000000;
    font-family: verdana, Helvetica, Arial, sans-serif;
    padding: 0;
    margin: 0;
    text-align: center;
    background: url('../img/design/header_bg.jpg') #ffffff;
    background-repeat: no-repeat;
}
/* Headings
 -------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}

h1 {
    font-size: 2em;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 1.5em;
    margin-top: 0.75em;
    margin-bottom: 0.5em;
}

h3 {
    font-size: 1.2em;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

h4 {
    font-size: 1em;
    line-height: 1.25;
    margin-bottom: 1.25em;
    height: 1.25em;
}

h5 {
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 1.5em;
}

h6 {
    font-size: 1em;
    font-weight: bold;
}

h1 img, h2 img, h3 img, h4 img, h5 img, h6 img {
    margin: 0;
}
/* Text elements
 -------------------------------------------------------------- */

a {
    color: #006699;
    text-decoration: none;
}

a:hover {
    color: #2f6ca3;
    text-decoration: underline;
}

a.no-hover:hover {
    color: #006699;
    text-decoration: underline;
}

p {
    margin: 0 0 1.5em;
}

p img.left {
    float: left;
    margin: 1.5em 1.5em 1.5em 0;
    padding: 0;
    clear: left;
}

p img.right {
    float: right;
    margin: 1.5em 0 1.5em 1.5em;
    clear: right;
}

blockquote {
    margin: 1.5em;
    font-style: italic;
}

strong {
    font-weight: bold;
}

em {
    font-style: italic;
}

sup, sub {
    line-height: 0;
}

abbr, acronym {
    border-bottom: 1px dotted;
}

address {
    margin: 0 0 1.5em;
    font-style: italic;
}

pre, code {
    margin: 1.5em 0;
    white-space: pre;
}

pre, code, tt {
    font: 1em 'andale mono', 'lucida console', monospace;
    line-height: 1.5;
}
/* Block elements
 ---------------------------------------------------------------*/
div {
    margin: 0;
    padding: 0;
}
/* Lists
 -------------------------------------------------------------- */
li ul, li ol {
    margin: 0 1.5em;
}

ul, ol {
    margin: 0 1.5em 1.5em 1.5em;
}

ul {
    list-style-type: disc;
}

ol {
    list-style-type: decimal;
}

dl {
    margin: 0 0 1.5em 0;
}

dl dt {
    font-weight: bold;
}

dd {
    margin-left: 1.5em;
}
/* Tables
 -------------------------------------------------------------- */
th, td {
    vertical-align: top;
}
td.middle {
    vertical-align: middle;
}
/* Misc classes
 -------------------------------------------------------------- */
/* font */
.more_tiny {
	font-size: .7em;
}

.tiny {
    font-size: .8em;
}

.small {
    font-size: .9em;
}

.large {
    font-size: 1.2em;
}

.registration_font-size {
	font-size: 1.5em
}

.larger {
    font-size: 1.6em;
}

.huge {
    font-size: 2em;
}

.bold {
    font-weight: bold;
}

.italic {
    font-style: italic;
}

.underline {
    text-decoration: underline;
}

.underline:hover {
    text-decoration: underline;
}
/* display */
.hide {
    display: none;
}

.f-left {
    float: left;
}

.f-right {
    float: right;
}

.a-left {
    text-align: left;
}

.a-right {
    text-align: right;
}

.a-center{
	text-align:center;
}

.wide {
    width: 100%;
}

.clear {
    clear: both;
}

.close {
    margin: 0;
    padding: 0;
}

.no_border {
    border: none;
}

.no_padding {
    padding: 0;
}

.no_margin {
    margin: 0;
}

/* colors */
.white {
    color: #ffffff;
}

.orange {
    color: #ff6804;
}

.yellow {
    color: #ff9f08;
}

.black {
    color: #000000;
}

.grey {
    color: #bdbdbd;
}

.dark_grey {
    color: #696969
}

.light_blue {
    color: #a1dffe;
}

.blue {
    color: #137fb4;
}

.dark_blue {
    color: #09567c;
}

.red {
    color: red;
}

.green {
    color: green;
}

/* background colors */

.light_grey_bg {
    background-color: #f6f6f6;
}

/* borders */

.border {
    border: solid 1px;
}

.border_grey_10 {
    border: solid 10px #e4e4e4;
}

.border_grey_4 {
    border: solid 4px #e4e4e4;
}

.border_grey_3 {
    border: solid 3px #e4e4e4;
}

.border_grey_2 {
    border: solid 2px #e4e4e4;
}

.border_grey_1 {
    border: solid 1px #e4e4e4;
}