
    <style type="text/css">
        *
        {
            margin: 0;
            padding: 0;
            font-family: 'Oswald' , sans-serif;
        }
        body
        {
            
            background-color: White;
        }
        .content
        {
            width: 60%;
            margin: 50px auto;
            padding: 20px;
        }
        .content h1
        {
            font-weight: 400;
            text-transform: uppercase;
            margin: 0;
        }
        .content h2
        {
            font-weight: 400;
            text-transform: uppercase;
            color: #333;
            margin: 0 0 20px;
        }
        .content p
        {
            font-size: 1em;
            font-weight: 300;
            line-height: 1.5em;
            margin: 0 0 20px;
        }
        .content p:last-child
        {
            margin: 0;
        }
        .content a.button
        {
            display: inline-block;
            padding: 10px 20px;
            background: #ff0;
            color: #000;
            text-decoration: none;
        }
        .content a.button:hover
        {
            background: #000;
            color: #ff0;
        }
        .content.title
        {
            position: relative;
            background: none;
            border: 2px dashed #333;
        }
        .content.title h1 span.demo
        {
            display: inline-block;
            font-size: .5em;
            padding: 5px 10px;
            background: #000;
            color: #fff;
            vertical-align: top;
            margin: 7px 0 0;
        }
        .content.title .back-to-article
        {
            position: absolute;
            bottom: -20px;
            left: 20px;
        }
        .content.title .back-to-article a
        {
            padding: 10px 20px;
            background: #f60;
            color: #fff;
            text-decoration: none;
        }
        .content.title .back-to-article a:hover
        {
            background: #f90;
        }
        .content.title .back-to-article a i
        {
            margin-left: 5px;
        }
        .content.white
        {
            background: #fff;
            box-shadow: 0 0 10px #999;
        }
        .content.black
        {
            background: #000;
        }
        .content.black p
        {
            color: #999;
        }
        .content.black p a
        {
            color: #08c;
        }
        .accordion-container
        {
            width: 100%;
            margin: 0 0 0px;
            clear: both;
            border: 1px solid #EDEDED ;
            
        }
        .accordion-toggle
        {
            position: relative;
            display: block;
            padding: 5px;
            font-size: 1.2em;
            font-weight: 300;
            
            color: #000;
            text-decoration: none;
            /* border-bottom: 1px solid #ADA9A9;
             background: #EDEDED;*/
        }
        .accordion-toggle.open
        {
            background: #EDEDED;
            color: #000;
        }
        
        .accordion-toggle:hover
        {
            background: #D3D1D1;
            color: #000;
        }
        .accordion-toggle span.toggle-icon
        {
            position: static;
            top: 9px;
            right: 20px;
            font-size: 1.5em;
        }
        .accordion-content
        {
            display: none;
            padding: 20px;
            overflow: auto;
            border: 1px ridge #EDEDED;
           
        }
        .accordion-content img
        {
            display: block;
            float: left;
            margin: 0 15px 10px 0;
            max-width: 100%;
            height: auto;
        }
        /* media query for mobile */@media (max-width: 767px)
        {
            .content
            {
                width: auto;
            }
            .accordion-content
            {
                padding: 5 5 5 5;
                overflow: inherit;
            }
        }
    </style>