/*
    Document   : apple_faq.css
    Created on : Nov 24, 2014, 1:27:44 PM
    Author     : gmadapoosi
    Description:
        Apple FAQ page styles with bootstrap CSS
*/

/* Base Styles */
/* Generic Styles for FAQ page */
@font-face {
    font-family: 'source_sans_prolight';
    src: url('../../fonts/sourcesanspro-light-webfont.eot');
    src: url('../../fonts/sourcesanspro-light-webfont.eot?#iefix') format('embedded-opentype'),
         url('../../fonts/sourcesanspro-light-webfont.woff') format('woff'),
         url('../../fonts/sourcesanspro-light-webfont.ttf') format('truetype'),
         url('../../fonts/sourcesanspro-light-webfont.svg#source_sans_prolight') format('svg');
    font-weight: normal;
    font-style: normal;
}

html{
    background-color: #FFF;
}

body {
    font-family: source_sans_prolight, MyriadPro-Regular,Myriad Pro Regular,MyriadPro,Myriad Pro,Helvetica,sans-serif;
    font-size: 12px;
    margin: 0px;
    padding: 0px;
    border: 0;
    line-height: 20px;
}
h1 {
    font-size: 1.7em;
    color: #24A0DB;
    font-weight: normal;
}
h2 {
    font-size: 1.3em;
    margin-top: 2em;
    font-weight: normal;
}
/* Main Layout elements */
#faq-wrapper {
    padding-left: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
#hd {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    background: #24A0DB;
    display: block;
    height:10px;
    position: fixed;
    z-index: 10000;
}
#sidebar {
    z-index: 1000;
    position: fixed;
    left: 25%;
    top: 10px;
    width: 0;
    height: 100%;
    overflow-y: scroll;
    margin-left: -25%;
    background: #F8F8F8;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    padding-top:25px;
    -webkit-overflow-scrolling: touch;
}
.dock {
    width: 80%;
    margin: auto;
}
#menu-toggle {
    display: block;
    background-color: #24A0DB;
    text-align: center;
    cursor: pointer;
    position: fixed;
    top: 10px;
    z-index: 10000;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
#menu-hamburger {
    height:40px;
}
#page-content {
    width: 100%;
    padding: 15px;
    height: 100%;
}

/* Sidebar Menu Active styles */
#faq-wrapper.active #sidebar {
    width: 75%;
}
#faq-wrapper.active #page-content {
    position: absolute;
}
#faq-wrapper.active #menu-toggle {
 	margin-left: 75%;
    z-index:1;
}
#faq-wrapper.active #hd {
    z-index:1;
}

/* Sidebar Styles */
.navDock {
    margin-left: 5em;
    margin-top: 3em;
}

.smallGreyBar {
    width: 90%;
    text-align: center;
    clear: both;
    border: 1px solid #DBDBDB;
}
p.heading {
    font-size: 1.7em;
    color: #24A0DB;
}

p.subHeading {
    font-size: 1.3em;
    margin-top: 2em;
}
#sidebar ul li {
    line-height: 15px;
    list-style-type: none;
    margin-bottom: 1em;
    margin-left: -40px;
}
#sidebar a{
    text-decoration: none;
    color: #24A0DB;
    font-weight: bold;
}
.hidden {
    display:none;
}
.arrow {
    margin-left: -2em;
    float: left;
}
span.arrow img {
    height: 16px;
}

/* Page Content Styles */
.main-card {
    text-align: center;
}
.content {
    font-size: 1.2em;
}
.content a {
    color: #24A0DB;
    text-decoration: underline;
}
p.faqHeading {
    font-size: 2em;
    color: #24A0DB;
    line-height: 1.2em;
}
p.faqSubHeading {
    font-size: 1.2em;
    color: #898989;
}
p.imgText {
    color: #24A0DB;
    font-size: 1.3em;
    line-height: 20px;
    margin-top: 0.5em;
}
p.imgText sup {
    font-size: 0.9em;
    position: relative;
    top: 0px;
}

p.indent, div.indent {
    margin-left: 4em;
}
.greyBar {
    width: 100%;
    text-align: center;
    clear: both;
    border: 1px solid #DBDBDB;
    margin-bottom: -15px;
}
#content ol {
    margin-left: -2em;
}
p.question {
    font-size: 1.7em;
    color: #24A0DB;
    padding-top: 1em;
    margin-bottom: 0.5em;
    line-height: 1.2em;
}
.sectionHd {
    line-height: 2.5em;
    margin-bottom: -2.5em;
}
.return-top {
    position: fixed;
    bottom: 2%;
    right: 5%;
    z-index: 10000;
}
.return-top img {
    width: 75px;
    height: 50px;
}

@media screen and (max-width:480px) {
    p.indent, div.indent {
        margin-left:0;
    }
    p.question {
        padding-top: 2em;
    }
    p.faqHeading {
        margin-top: 40px;
    }
}
/* Samsung Tablet specific (600X1024px) */
@media only screen and (device-width : 600px) and (orientation : portrait) {
    p.question {
        padding-top: 2em;
    }
    p.faqHeading {
        margin-top: 40px;
    }    
}

@media screen and (min-width:480px) and (max-width:768px) {
    #sidebar ul li{
        margin-left: -30px;
    }
    p.faqHeading {
        font-size: 2em !important;
    }
}

@media screen and (min-width:768px) {
    #menu-toggle {
        display: none;
    }
    #faq-wrapper {
        padding-left: 25%;
    }
    #sidebar {
        width: 25%;
    }
    #page-content {
        padding: 50px;
    }
    /* Font Styles */
    p.faqHeading {
        font-size: 2.5em;
    }
    p.imgText {
        font-size: 1.3em
    }
    p.imgText sup {
        font-size: 19px;
        top: 2px;
    }
}
