/************************/
/* Reset Browser Styles */
/************************/
html, body, div, span, 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, 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%;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1.2;
}

ol {
    padding-left: 1.4em;
    list-style: decimal;
}

ul {
    padding-left: 1.4em;
    list-style: square;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Box Sizing */
* {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/******************/
/* General Styles */
/******************/
html {
    font-family: Arial, Helvetica, sans-serif;
   /* background-color: #84ff95;*/
    background-color: rgb(250,250,250);
}

#wrapper {
    max-width: 100%;
    margin: 0.3em 0.3em 0.3em;
}

header {
    background-color: #668552;
    text-align: center;
    color: rgb(240, 240, 240);
    text-shadow: 1px 1px black;

}

header{
    position: fixed;
    display: block;
    top: 0;
    right:  0;
    width: 100%;
}

header h1 {
    font-size: 35px;
}

header h2 {
    font-size: 25px;
    font-style: italic;
}

section{
    margin: 3em auto auto;
}

section article .articleContent {
    background-color: #45BF55;
    padding: 0.5em 0.5em 1em;
}

section article .articleContent p{
    margin-bottom: 1em;
}

section article:hover .articleContent {
    background-color: #46d556;
}

section article h1, section article .articleContent{
     margin: 2.5%;
}

section article{
    border: solid #45BF55 5px;
    border-radius: 25px;
    background-color: #45BF55;
}
section article:hover {
    background-color: #46d556;
}

section article {
  /*  border: 2px solid black;*/
    margin-top: 1.5em;
}

section article a h1 {
    background-color: #b7ffbb;
    text-align: center;
    color: #3d8e47;
    font-size: 25px;
    border-bottom: dashed 0 black;
    padding: 0.5em;
    text-decoration: underline;
    text-decoration-color: #00261C;
}

section article .articleContent a{
    border-radius: 1px;
    margin: 0.3em;
    padding: 0.2em;
    background-color: #668552;
    color: rgb(240, 240, 240);
    text-shadow: 1px 1px black;
    border: 1px solid black;
}

section article {
    overflow: auto;
}

section article .articleContent a:hover{
    box-shadow: inset 0 0 2px 2px rgb(240, 240, 240);
}

section article .articleContent a:active{
    box-shadow: inset 0 0 3px 3px rgb(240, 240, 240);
}

section article form input, section article form label{
    margin-top: 0.20em;
    width: 100%;
}

section article form{
    margin-top: 0.5em;
    width: 100%;
}

section article a h1:hover {
    box-shadow: inset 0 0 10px 5px #668552;
}

section article a h1:active {
    box-shadow: inset 0 0 20px 10px #668552;
}

section article a {
    text-decoration: none;
}

article img {
    max-width: 50%;
    float: left;
    margin-right: 1%;
    margin-bottom: 1em;
}

.banner-logo{
    max-width: 100%;
}

footer p {
    text-align: center;
}
.bolcomBanner {
    position: fixed; /* Absolute of fixed */
    left: 10px;
    top: 100px;
}

@media (max-width: 1350px) {
    .bolcomBanner{
        display: none;
    }
}
/**************************/
/* Mobile Specific Styles */
/**************************/
@media (max-width: 480px) {

    section{
        margin: 5em auto auto;
    }
}

/**************************/
/* Tablet Specific Styles */
/**************************/
@media (min-width: 481px) and (max-width: 768px) {
    #content_wrapper {
        max-width: 80%;
        margin: auto;
    }
    section article:nth-of-type(3n+3){
        clear: left;
    }
}

/* Desktop and tablet styles */
@media (min-width: 481px) {
    header{
        margin-bottom: -2.5em;
    }
    #content_wrapper {
        max-width: 70%;
        margin: auto;
    }
    section{
        border-spacing: 1em;
    }
    section .articleContent{
        display: block;
        height: inherit;
    }
    section article{
        float: left;
        width: 48%;
        margin-left: 1%;
    }
    footer{
        clear:both;
    }
    #wrapper{
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
    }
    header{
        border-top: 0;
        border-left: 0;
        border-right: 0;
    }
    section article:last-of-type:nth-of-type(odd){
        width: 100%;
    }
}

/**************************/
/* Desktop Specific Styles*/
/**************************/
@media (min-width: 769px) {
    section{
        max-width: 1000px;;
    }
    section article{
        display: table-cell;
        width: 32.32%;
        margin-left: 1%;
    }
    section article:nth-of-type(4n+4){
        clear: left;
    }

    section article:last-of-type:nth-of-type(odd){
        width: 65.64%;
    }
}

/**********/
/* Extras */
/**********/

/* Clear Fix */
.clearfix:before, .clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    zoom: 1;
}

/* Temp Testing Area */

.articleContent a{
    display: block;
}