/* ----------------------------- CSS Reset -------------------------------- */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe, 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;
}
/* 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;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/* ---------------------------------- End CSS Reset ----------------------------------- */

@font-face {
    font-family: 'yoN';
    font-style: normal;
    font-weight: 400;
    src: local('Source Sans Pro'), local('SourceSansPro-Regular'), url(http://fonts.gstatic.com/s/sourcesanspro/v9/ODelI1aHBYDBqgeIAH2zlNV_2ngZ8dMf8fLgjYEouxg.woff2) format('woff2'), url(http://fonts.gstatic.com/s/sourcesanspro/v9/ODelI1aHBYDBqgeIAH2zlBM0YzuT7MdOe03otPbuUS0.woff) format('woff');
}
@font-face {
    font-family: 'yoB';
    font-style: normal;
    font-weight: 700;
    src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold'), url(http://fonts.gstatic.com/s/sourcesanspro/v9/toadOcfmlt9b38dHJxOBGEo0As1BFRXtCDhS66znb_k.woff2) format('woff2'), url(http://fonts.gstatic.com/s/sourcesanspro/v9/toadOcfmlt9b38dHJxOBGFkQc6VGVFSmCnC_l7QZG60.woff) format('woff');
}
.myh2 {
    font-size: 150%;
    font-family: 'yoB';
    padding-top: 30px;
    margin-left: 20px;
    margin-bottom: 0px;
}
.lead {
    font-family: 'yoN';
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
    color: white;
}
.myPanel {
    background-color: whitesmoke;
}
.myPara {
    font-family: 'yoN';
    background-color: whitesmoke;
    padding: 20px;
    margin: 10px;
}
.myArticle {
    margin: auto;
    background-color: rgba(222, 220, 213, .8);
    padding-bottom: 20px;
    margin-bottom: 30px;
}
.pageHeader {
    padding-top: 20px;
    padding-right: 0px;
}
.myHamburger {
    margin-left: 0px
}
.courseLinks {
    background-color: #AA3D3D;
    border-bottom: none;
    margin-left: -6%;
}
.welcomeText {
    font-family: 'yoB';
    margin-top: 20px;
    padding-top: 2px;
    font-size: 16px;
    margin-left: 25px;
    margin-right: auto;
    font-weight: bold;
    color: white;
}
.courseLinks a {
    font-size: 14px;
    font-weight: bold;
    color: white;
    font-family: 'yoB';
}
#dbDesignShift {
    padding-left: 0px;
}
#Top {
    height: 20px;
    width: 15px;
}
.myLink {
    background-color: brown;
    height: 40px;
    width: 40px;
}
.myChevron {
    color: #AA3D3D;
}
.myImg {
    align: center;
    max-width: 100%;
}
#mainNav {
    padding: 0px;
    background-color: #2c3e50;
    border-bottom: none;
}
#mainNav a {
    margin: 10px 0px;
    color: white;
    font-family: 'yoB';
}
.activeTab {
    padding-bottom: 2px;
    background-color: #AA3D3D;
}
.modal-body {
    height: 800px;
}
.resumeBorder {
    border: 15px solid whitesmoke;
}
.resumeSpace {
    height: 30px;
}
.intro:first-letter {
    font-family: 'yoN';
    font-size: 125%;
}
blockquote {
    font-family: 'yoN';
    padding: 5px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
    /* 1px 1px 1px #000; */
}
.shadow {
    /*

    1. The horizontal offset (required) of the shadow, positive means the shadow will be on the right of the box, a negative offset will put the shadow on the left of the box.
    2. The vertical offset (required) of the shadow, a negative one means the box-shadow will be above the box, a positive one means the shadow will be below the box.
    3. The blur radius (required), if set to 0 the shadow will be sharp, the higher the number, the more blurred it will be, and the further out the shadow will extend. For instance a shadow with 5px of horizontal offset that also has a 5px blur radius will be 10px of total shadow.
    4. The spread radius (optional), positive values increase the size of the shadow, negative values decrease the size. Default is 0 (the shadow is same size as blur).
    5. Color (required) - takes any color value, like hex, named, rgba or hsla. If the color value is omitted, box shadows are drawn in the foreground color (text color). But be aware, older WebKit browsers (pre Chrome 20 and Safari 6) ignore the rule when color is omitted.

Using a semi-transparent color like rgba(0, 0, 0, 0.4) is most common, and a nice effect, as it doesn't completely/opaquely cover what it's over, but allows what's underneath to show through a bit, like a real shadow.
   */

    -webkit-box-shadow: 4px 5px 5px 0px rgba(0, 0, 0, 0.3);
    /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */

    -moz-box-shadow: 4px 5px 5px 0px rgba(0, 0, 0, 0.3);
    /* Firefox 3.5 - 3.6 */

    box-shadow: 4px 5px 5px 0px rgba(0, 0, 0, 0.3);
    /* Opera 10.5, IE 9, Firefox 4+, Chrome 6+, iOS 5 */
}
.articleShadow {
    /*

    1. The horizontal offset (required) of the shadow, positive means the shadow will be on the right of the box, a negative offset will put the shadow on the left of the box.
    2. The vertical offset (required) of the shadow, a negative one means the box-shadow will be above the box, a positive one means the shadow will be below the box.
    3. The blur radius (required), if set to 0 the shadow will be sharp, the higher the number, the more blurred it will be, and the further out the shadow will extend. For instance a shadow with 5px of horizontal offset that also has a 5px blur radius will be 10px of total shadow.
    4. The spread radius (optional), positive values increase the size of the shadow, negative values decrease the size. Default is 0 (the shadow is same size as blur).
    5. Color (required) - takes any color value, like hex, named, rgba or hsla. If the color value is omitted, box shadows are drawn in the foreground color (text color). But be aware, older WebKit browsers (pre Chrome 20 and Safari 6) ignore the rule when color is omitted.
Using a semi-transparent color like rgba(0, 0, 0, 0.4) is most common, and a nice effect, as it doesn't completely/opaquely cover what it's over, but allows what's underneath to show through a bit, like a real shadow.
   */

    -webkit-box-shadow: 1px 10px 10px 10px rgba(0, 0, 0, 0.18);
    /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */

    -moz-box-shadow: 1px 10px 10px 10px rgba(0, 0, 0, 0.18);
    /* Firefox 3.5 - 3.6 */

    box-shadow: 1px 10px 10px 10px rgba(0, 0, 0, 0.18);
    /* Opera 10.5, IE 9, Firefox 4+, Chrome 6+, iOS 5 */
}
.hero-unit {
    background: url('../images/canyonRiver.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.hero-unit-winding {
    background: url('../images/windingRoadWeb.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.hero-unit-snowSkies {
    background: url('../images/snowSkiesWeb.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.opac {
    opacity: 0.9;
}
#myBackdrop {
    margin-top: 15%;
    background-color: rgba(38, 38, 38, .45);
    box-shadow: 0px 0px 25px 20px rgba(38, 38, 38, 0.5);
}
#myIntro {
    font-size: 200%;
    color: rgba(255, 255, 255, 1);
}
