/*
    display
    position
    box
    list
    text
        color
        font-style
        font-variant
        font-weight
        font-size
        line-height
        font-family
    background
    misc
        table
        overflow
        z-index
        css3
*/

/*
	ELEMENTS.CSS
    Table of Contents

    I.      FONT-FACE
    II.     HTML / BODY
	III.   	TEXT
    IV.     LINKS
    V.      LISTS
    VI.     FORMS
    VII.    TABLES
*/

/* @TYPE: @FONT-FACE ---------------------------------- */

@font-face {
	font-family: 'AlternateGothicFSNo2';
	src: url('../fonts/alternategothicfs_no2/AlternateGothicNo2-webfont.eot');
	src: local('☺'), url('../fonts/alternategothicfs_no2/AlternateGothicNo2-webfont.woff') format('woff'), url('../fonts/alternategothicfs_no2/AlternateGothicNo2-webfont.ttf') format('truetype'), url('../fonts/alternategothicfs_no2/AlternateGothicNo2-webfont.svg#webfontSQOd6sof') format('svg');
	font-weight: normal;
	font-style: normal;
	}
@font-face {
	font-family: 'SerifaBlack';
	src: url('../fonts/serifa_black/serifbla-webfont.eot');
	}
@font-face {
	font-family: 'SerifaBlack';
	src: url('#') format('no404'), url('../fonts/serifa_black/serifbla-webfont.woff') format('woff'), url('../fonts/serifa_black/serifbla-webfont.ttf') format('truetype'), url('../fonts/serifa_black/serifbla-webfont.svg#webfontk98XVcV1') format('svg');
	font-weight: normal;
	font-style: normal;
	}


/* -----------------------------------------------------------
		@HTML / BODY
----------------------------------------------------------- */
html {

}
body {
	background: url(../img/backgrounds/body.jpg) center top repeat;
	background-color: #ededed;
	color: #333;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 93%;
    line-height: 1.5em;
	}

/* -----------------------------------------------------------
		@TEXT
----------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    margin: 1.2em 0 0;
    padding: 0;
    font-weight: normal;
}
h1, h2, h3 {
    color: #e31921;
    font-family: 'AlternateGothicFSNo2', 'Helvetica Neue' , 'Helvetica', 'Arial', sans-serif;
    text-transform: uppercase;
}
h1:first-child, h2:first-child, h3:first-child {
    margin-top: .1em;
}
h1 {
    font-size: 18px;
	line-height: 1.5;
}
h2 {
    font-size: 48px;
	line-height: 1.5;
    text-shadow: 1px 2px 0 #fcd325;
}
h3 {
    margin-top: 40px;
    font-size: 20px;
	line-height: 1.4;
}
h4 {
    color: #e31921;
    font-weight: bold;
    font-size: 16px;
	line-height: 1.3;
}
h5 {
	line-height: 1.6667;
}
h6 {
}
h2 .reg {
    font-size: 21px;
    vertical-align: top;
}
h3 + p {
    margin-top: .3em;
}
p {
	margin: 1.2em 0;
}
p.lg {
    font-size: 1.8em;
    padding-left: 45px;
    margin: 1.2em 0 0;
}
p.lg small {
    font-size: 0.5em;
}
blockquote {
	margin: 1em .2em;
	padding: 0 1em;
    border-left: 4px solid #fff;
	font-style: italic;
}
blockquote em {
	font-style: normal;
}
figcaption {
    color: #666;
	font-style: italic;
	font-size: 0.857em;
	line-height: 1.4286;
}
hr {
    height: 0.1em;
    margin: 1.25em 0;
	border: none;
	background: #ccc;
	background-color: rgba(0,0,0,0.2);
}


/* -----------------------------------------------------------
		@LINKS
----------------------------------------------------------- */
a {
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
a,
a:visited {
	color: #e52729;
}
h1 a, h2 a, h3 a {
	border: none;
}


/* -----------------------------------------------------------
		@LISTS
----------------------------------------------------------- */
ul, ol {
    margin: 1.25em 0;
}
ul ul, ul ol,
ol ol, ol ul {
    margin: .5em 0 1.25em;
}
ul li {
	margin-left: 40px;
    padding-left: 20px;
    list-style: none;
    background: url(../img/misc/ul_star.gif) no-repeat left .2em;
    overflow: auto;
}
ol li {
	margin-left: 1.5em;
    padding-left: .5em;
}

/* -----------------------------------------------------------
		@IMAGES
----------------------------------------------------------- */
img.fr {
    margin: 0 0 55px 55px;
    -webkit-box-shadow: 2px 3px 0 #fcd325;
    -moz-box-shadow: 2px 3px 0 #fcd325;
    box-shadow: 2px 3px 0 #fcd325;
}
h3 img.fr {
    margin-top: 10px;
}

/* -----------------------------------------------------------
		@FORMS
----------------------------------------------------------- */
/* Structure */
form {
    margin: 1.25em 0;
}
fieldset {
    margin: 0;
    padding: 8px 0;
}
label {
   	float: left;
  	margin: 5px 0 5px;
    padding-left: 2px;
    width: auto;
}
input.text {
    height: 34px;
    padding: 0 10px;
    border: #ccc 1px solid;
}
textarea {
    width: 618px;
    height: 102px;
    padding: 8px 10px;
    border: #ccc 1px solid;
    resize:vertical;
    overflow: auto;
}
.status-error,
.status-success {
    color: #21b92b;
    font-style: italic;
    font-weight: bold;
    margin: 1em 0 1em;
    padding: 15px 20px;
}
fieldset.form-bottom {
    margin-top: 15px;
}
/* Theme */
label,
input.text,
button,
textarea {
    color: #999;
    font-family: 'AlternateGothicFSNo2', "Helvetica Neue", Helvetica, Arial, sans-serif;
}
input:focus,
textarea:focus,
select:focus {
	outline: none;
	border-color: #666;
}
label {
	cursor: pointer;
	color: #333;
	font-size: 18px;
	text-transform: uppercase;
}
label.required {
    padding-right: 9px;
	background: url(../img/backgrounds/form-required.gif) right 3px no-repeat;
}
label.note {
	color: #ccc;
	text-shadow: none;
}
input.text {
	font-size: 17px;
    line-height: 34px; /* match to input height */
    background-color: #fff;
    background: url(../img/backgrounds/form-input.gif) left top repeat-x;
}
input.checkbox:hover {
    cursor: pointer;
}
textarea {
    font-size: 17px;
    background: #fdfdfd url(../img/backgrounds/form-textarea.gif) top left repeat-x;
}
button:hover {
	text-shadow: 1px 1px 0 #a30006;
}
button:disabled {
	cursor: default;
	opacity: 0.5;
}
form .focus {
	color: #666;
}
.status-error {
    border: #e13137 1px solid;
}
.status-success {
    border: #28e130 1px solid;
}
form .error {
    color: #e13137;
}

/* -----------------------------------------------------------
		@TABLES
----------------------------------------------------------- */
table {
    margin: 1.25em 0;
}
tr {

}
th {

}
td {

}
