/* ==================================================
* nFamous Creations LLC
* Copyright 2013, nFamous Creations LLC
* www.nfamouscreations.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
=====================================================*/

/* Table of Content
=====================================================
#Google Font
#Reset & Basics
#Basic Styles
#Typography
- Intro Page
- About Pages
- Blockquotes
#Links
#Lists
#Images
#Forms
#Misc */

/* #Google Font
===================================================== */

@import url(//fonts.googleapis.com/css?family=Karla:400,400italic,700|Homenaje|Nunito:300);
/*
font-family: 'Nunito', sans-serif;
font-family: 'Karla', sans-serif;
font-family: 'Homenaje', sans-serif;
*/

/* #Reset & Basics (Inspired by E. Meyers)
===================================================== */

html, body, div, span, applet, object, iframe,  h1, h2, h3, h4, h5, h6, p, blockquote, pre,  a, abbr, acronym, address, big, cite, code,  del, dfn, em, img, ins, kbd, q, s, samp,  small, strike, strong, sub, sup, tt, var,  b, u, i, center, dl, dt, dd, ol, ul, li,  fieldset, form, label, legend,  table, caption, tbody, tfoot, thead, tr, th, td,  article, aside, canvas, details, embed,  figure, figcaption, footer, header, hgroup,  menu, nav, output, ruby, section, summary,  time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    text-decoration: none;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,  footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,  q:before, q:after {
    content: '';
    content: none;
}

/* #Basic Styles
================================================== */

body {
    background: url(../images/bg-tile.gif) #33cc66;
    font: 1em "Karla", sans-serif;
    color: #000;
    -webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
    -webkit-text-size-adjust: 100%;
    -webkit-backface-visibility: hidden; /* Addresses a small issue in webkit: http://bit.ly/NEdoDq */
}
.fleft {
    float: left;
}
.fright {
    float: right;
}
.clearfix:after {
    content: ".";
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
}
.hline {
    background: url(../images/hline.png) repeat-x;
    height: 2px !important;
}
.vline {
    background: url(../images/vline.png) right repeat-y;
}
.unselectable {
    -webkit-user-select: none;	/* Chrome all / Safari all */
    -moz-user-select: none; 	/* Firefox all */
    -ms-user-select: none;	/* IE 10+ */
    user-select: none;	/* Disable user select (dblclick) */
}

/* #Typography
================================================== */

h1, h3, #intro-menu, #menu {
    font-family: "Homenaje", sans-serif;
}
h2, h4 {
    font-family: "Nunito", sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    font-weight: inherit;
}
h1 {
    font-size: 5em; /* 80/16 */
    line-height: 66px;
}
h2 {
    font-size: 2.125em; /* 34/16 */
    line-height: 45px;
}
h3 {
    font-size: 3.125em; /* 50/16 */
    line-height: 40px;
    margin-bottom: 8px;
}
h4 {
    font-size: 1.375em; /* 22/16 */
    line-height: 22px;
}
h5 {
    font-size: 1.125em; /* 18/16 */
    line-height: 24px;
}
h6 {
    font-size: 0.8125em; /* 13/16 */
    line-height: 18px;
}
p {
    font: normal 0.9375em "Karla", sans-serif;
}
p {
    margin: 0 0 20px 0;
}
p img {
    margin: 0;
}
p.indent {
    padding-left: 3.125em;
}
em {
    font-style: italic;
}
strong {
    font-weight: bold;
}
small {
    font-size: 80%;
}
/*	Blockquotes  */
blockquote,  blockquote p {
    line-height: 24px;
    font-style: italic;
}
blockquote cite {
    display: block;
    font-size: 0.8125em;
}
blockquote cite:before {
    content: "\2014 \0020";
}

/* #Links
================================================== */

p a, td a, h4 a {
    font-weight: normal;
}
p a, p a:visited, td a, td a:visited, h4 a, h4 a:visited {
    color: #3397B8;
    outline: 0;
    text-shadow: 0 1px rgba(255,255,255,0.65);
}
p a:hover, p a:focus, td a:hover, td a:focus, h4 a:hover, h4 a:focus {
    border-bottom: 1px dotted #000;
}
p a, p a:visited, td a, td a:visited, h4 a, h4 a:visited {
    line-height: inherit;
}

/* #Images
================================================== */

img {
    max-width: 100%;
    height: auto;
}

/* #Forms
================================================== */

input[type="text"],  input[type="password"],  input[type="email"],  textarea,  select {
    border: 1px solid #ccc;
    padding: 0.5em 0.375em; /* 8px 6px */
    outline: none;
    font: 0.875em "Karla", sans-serif;
    color: #777;
    margin: 0;
    max-width: 100%;
    display: block;
    margin-bottom: 5px;
    background: #FFF;
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 0 10px rgba(0,0,0,0.2);
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
input[type="text"],  input[type="password"],  input[type="email"] {
    width: 200px;
}
textarea {
    width: 260px;
    min-height: 60px;
}
select {
    padding: 0;
}
input[type="text"]:focus,  input[type="password"]:focus,  input[type="email"]:focus,  textarea:focus {
    border: 1px solid #65bedb;
    color: #444;
    -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 0 3px rgba(0,0,0,0.2);
    box-shadow: 0 0 3px rgba(0,0,0,0.2);
}
label,  legend {
    display: block;
    font-size: 0.9375em;
}
select {
    width: 220px;
}
input[type="checkbox"] {
    display: inline;
}

/* MISCS
==================================================================================*/

.add-bottom {
    margin-bottom: 10px !important;
}
.add-top {
    margin-top: 30px;
}