﻿html {
    color: #263746;
    font-size: 1em;
    line-height: 1.4;
	height: 100%;
}

::-moz-selection {
    background: #57c1e8;
    text-shadow: none;
}

::selection {
    background: #57c1e8;
    text-shadow: none;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #263746;
    margin: 1em 0;
    padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

ul {
	margin: 5px 0;
}

li {
	display: inline;
	list-style-type: none;
	padding-right: 20px;
}

body {
    font: 16px/26px Roboto, Helvetica, Helvetica Neue, Arial;
	margin: 0;
	height: 100%;
}

.wrapper {
	min-height: 100%;
	position: relative;
}

.main {
    width: 90%;
    margin: 0 auto;
    padding: 50px 0 100px;
	max-width: 1000px;
}
a {
    text-decoration: none;
    color: #57c1e8;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
.header-image {
	background-image: url("../imgs/hello_mobile.png");
	background-repeat: no-repeat;
	width: 369px;
	height: 145px;
	margin: 0 auto;
    padding-bottom: 20px;
}

.item-wrapper {
	border-bottom: 1px solid #ccc;
}

.first-item {
	border-top: 1px solid #ccc;
}

.item-wrapper:last-child {
	border-bottom: none;
}

.question {
	color: #57c1e8;
	text-decoration: none;
	font-size: 20px;
}

.answer {
    padding: 0 15px 15px;
    display: none;
}

.footer-container {
	position: absolute;
	bottom: 0;
    left: 0;
	width: 100%;
	height: 100px;
	background-color: #243344;
	color: #fff;
	overflow: hidden;
}

.footer-items {
	text-align: center;
	padding: 10px 0;
	font-size: 12px;
}
/* ==========================================================================
   Media Queries
   ========================================================================== */

@media only screen and (min-width: 768px) {
	.header-image {
		background-image: url("../imgs/hello_desktop.png");
		height: 66px;
		width: 640px;
	}

	.question {
		font-size: 20px;
	}
}


/* ==========================================================================
   Print styles
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:link {
        color: #37BC98;
        text-decoration: none;
    }
    a:visited {
        text-decoration: none;
        color: #37BC98;
    }
    a:hover {
        text-decoration: none;
        color: #37BC98;
    }
    a:active {
        text-decoration: none;
        color: #37BC98;
    }
    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}