/* Reset */

* {
    box-sizing: border-box;
    -o-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
}

html, body, header, nav, footer, ul, ol, li, div, p, span, strong, em {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

body {
    line-height: 1;
    overflow-x: hidden;
}

img {
    border: none;
    outline: none;
    max-width: 100%;
    display: block;
    padding: 0;
    margin: 0;
}

figure {
    display: inline-block;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    outline: none;
    color: inherit;
}

input, textarea {
    outline: none;
}

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    opacity:  0.3;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    opacity:  0.3;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
    opacity:  0.3;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    opacity:  0.3;
}

/* Typography */

p, blockquote {
    margin-bottom: 30px;
}

p {
    line-height: 24px;
}

p:last-child {
    margin-bottom: 0;
}

blockquote {
    font-style: italic;
    margin-left: 45px;
    letter-spacing: 0.5px;
    position: relative;
    font-size: 16px;
    color: #aaa;
}

blockquote,
blockquote p {
    line-height: 30px;
}

blockquote:before {
    width: 25px;
    display: inline-block;
    border-top: 2px solid #a57a50;
    content: '';
    position: absolute;
    bottom: 7px;
    left: -40px;
}

cite {
    display: block;
    margin-bottom: 30px;
}

dl {
    border: 2px solid #f0f0f0;
    padding: 30px 30px 10px 30px;
    margin-bottom: 30px;
}

dt {
    float: left;
    clear: left;
    width: 200px;
    text-align: right;
    font-weight: bold;
	margin-bottom: 20px;
	margin-top: 5px;
}

dt:after {
    content: ":";
}

dd {
    margin: 0 0 0 230px;
	padding-bottom: 20px;
	line-height: 24px;
}

pre {
	margin-bottom: 30px;
	background: #fafafa;
	padding: 30px;
	line-height: 24px;
	overflow: hidden;
}

address {
	line-height: 24px;
}

hr {
    border: 0;
    background: #f0f0f0;
    height: 1px;
}

ul, ol {
    margin-bottom: 30px;
}

ul {
    list-style-type: none;
    list-style-position: inside;
}

ol {
    list-style-position: inside;
}

li {
    line-height: 24px;
}


h1, h2, h3, h4, h5 {
    margin-top: 0;
    margin-bottom: 30px;
}

h1 {
    font-size: 48px;
    line-height: 60px;
}

h2 {
    font-size: 40px;
    line-height: 52px;
}

h3 {
    font-size: 30px;
    line-height: 40px;
}

h4 {
    font-size: 24px;
    line-height: 32px;
}

h5 {
    font-size: 18px;
    line-height: 26px;
}

h6 {
    font-size: 14px;
    line-height: 24px;
}

h4, h5, h6 {
    text-transform: uppercase;
}

hr {}

/* Input */

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled],
input[disabled] {
    cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input {
    line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    border: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

input[type="search"] {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

textarea {
    overflow: auto;
}

input,
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

select {
    position: relative;
    color: #aaa;
    cursor: pointer;
}

input,
select, textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    outline: none;
    border: none;
    border-radius: 0;
}

input[type="checkbox"] {
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    appearance: checkbox;
}

input[type="radio"] {
    -webkit-appearance: radio;
    -moz-appearance: radio;
    appearance: radio;
}

input,
select {
    height: 45px;
    line-height: 45px;
    width: 100%;
    padding: 0 30px;
}

input,
select, textarea {
    border: 1px solid #f0f0f0;
}

textarea {
    max-height: 100px;
    height: 100px;
    width: 100%;
    padding: 30px;
    line-height: 24px;
}

input[type="submit"],
input[type="reset"] {
    width: 150px;
    text-align: center;
    padding: 0;
    text-transform: uppercase;
    font-size: 12px;
    color: #222;
    font-weight: 600;
}

input[type="submit"]:hover,
input[type="reset"]:hover {
    border-bottom: 1px solid #f0f0f0;
    color: #222;
}

table {
    width: 100%;
}

th,
td {
    text-align: center;
}

/* Commons */

.un-clear {
    clear: both;
}

.un-txt-ellips {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.un-txt-center {
    text-align: center;
}

.un-txt-left {
    text-align: left;
}

.un-txt-right {
    text-align: right;
}

.un-txt-justy {
    text-align: justify;
}

.un-txt-upp {
    text-transform: uppercase;
}

.un-txt-cap {
    text-transform: capitalize;
}

.un-txt-low {
    text-transform: lowercase;
}

.un-hide {
    display: none;
}

.un-block {
    display: block;
}

.un-line {
    display: inline-block;
}

.un-float-l {
    float: left;
}

.un-float-r {
    float: right;
}

.un-float-n {
    float: none;
}

.un-pos-abs {
    position: absolute;
}

.un-pos-rel {
    position: relative;
}

.un-pos-fix {
    position: fixed;
}

.un-over-h {
    overflow: hidden;
}

.un-over-v {
    overflow: visible;
}

.un-bg-center {
    background-position: center center;
}

.un-bg-cover {
    background-size: cover;
}

.un-bg-contain {
    background-size: contain;
}

.un-bg-attach-s {
    background-attachment: scroll;
}

.un-bg-attach-f {
    background-attachment: fixed;
}

.un-bg-black-30 {
    background: rgba(2,2,2,0.3);
}

.un-bg-black-60 {
    background: rgba(2,2,2,0.6);
}

.un-bg-black-85 {
    background: rgba(2,2,2,0.85);
}

.un-bg-black-90 {
    background: rgba(2,2,2,0.9);
}

.un-bg-white-30 {
    background: rgba(255,255,255,0.3);
}

.un-bg-white-60 {
    background: rgba(255,255,255,0.6);
}

.un-bg-white-90 {
    background: rgba(255,255,255,0.9);
}
