.og-grid {
    list-style: none;
    padding: 20px 0;/* 20px vertical padding*/
    margin: 0 auto;
    text-align: center;
    width: 100%;/* 100%,  60% creates two columns */
}

.og-grid img {
    opacity: 0.7;/* 0.6 */
    
    /* leftRight -(to the left, +to the right), Bottom, blur(0=no blur), color */
/*    box-shadow: 10px 10px 10px rgba(33,33,33, 1.0);/* shadow on Expanded View */
}

.og-grid img:hover {
    opacity: 1.0;
    filter: alpha(opacity=100); /* For IE8 and earlier */
}

.og-grid li {
    display: inline-block;
    margin: 10px 30px 0 30px;/* 10px 30px 0 30px top, right, bottom, left; */
    vertical-align: top;
    height: 150px;/* 250px Thumbnail Height */
}

.og-grid li > a,
.og-grid li > a img {
    border-style: solid;
    border-width: 2px;
/*    border-color: rgba(255,33,33, 1.0);/* Thumbnail Image Border Color xal*/
    border-color: black;
    
    display: block;
    position: relative;
}

/*************************************************************************/
.og-grid li.og-expanded > a::after {
    top: auto;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-bottom-color: rgb(251, 194, 14);/* Color of Arrow pointing to the thumbnail - Yellow */
    border-width: 15px;
    left: 50%;
    margin: -20px 0 0 -15px;
}

.og-expander {
    position: absolute;
    background: rgba(0, 0, 0, 1.0);/* BG color expanded view */
    top: auto;
    left: 0;
    width: 100%;
    margin-top: 10px;
    text-align: left;
    height: 0;
    overflow: hidden;
}

.og-expander-inner {
    padding: 50px 30px;
    height: 100%;
}

.og-close {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.og-close::before,
.og-close::after {
    content: '';
    position: absolute;
    width: 100%;
    top: 50%;
    height: 1px;
    background: rgb(251, 194, 14);/* Color of "X" Not on hover #888 */
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

.og-close::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.og-close:hover::before,
.og-close:hover::after {
    background: red;/* Color of "X" on hover */
}

.og-fullimg  {
    width: 50%;
    float: left;
    height: 100%;
    overflow: visible;
    position: relative;
    margin-top: 6.0em;
}

.og-details {
    width: 50%;/*jal 50% */
    float: right;
    height: 100%;
    overflow: auto;/*jal visible */
    position: relative;
}

.og-details {
    padding: 0 0px 0 10px;/*jal top right bottom left; 0 40px 0 20px */
}

.og-fullimg {
    text-align: center;
}

.og-fullimg img {
    display: inline-block;
    max-height: 100%;
    max-width: 100%;/* size of expanded image */
    
    opacity: 1.0;
    filter: alpha(opacity=100); /* For IE8 and earlier */
}

.og-details h3 {/* Title Properties */
    font-weight: 300;
    font-size: 150%;/* 24px */
    padding: 40px 0 10px;
    margin-bottom: 10px;
    /*    color: rgba(150, 124, 124, 1.0);/* Title font color */
    color: rgba(255, 154, 14, 0.8);
}

/*** Description ***/
.og-details p {
    font-weight: 400;
    font-size: 110%;
    line-height: 22px;
    color: rgba(153, 153, 153, 1.0);/* Description in expanded view */
}

.og-details a {
    font-weight: 700;
    font-size: 16px;
    color: rgba(107, 107, 107, 1.0);/* Website link font color */
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 20px;
    border: 3px solid #333;
    display: inline-block;
    margin: 30px 0 0;
    outline: none;
}

.og-details a::before {
    content: '\2192';
    display: inline-block;
    margin-right: 10px;
}

.og-details a:hover {
    border-color: #999;
    color: #999;
}

.og-loading {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: black;
    box-shadow: 0 0 1px #ccc, 15px 30px 1px #ccc, -15px 30px 1px #ccc;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    -webkit-animation: loader 0.5s infinite ease-in-out both;
    -moz-animation: loader 0.5s infinite ease-in-out both;
    animation: loader 0.5s infinite ease-in-out both;
}

@-webkit-keyframes loader {
    0% { background: #ddd; }
    33% { background: #ccc; box-shadow: 0 0 1px #ccc, 15px 30px 1px #ccc, -15px 30px 1px #ddd; }
    66% { background: #ccc; box-shadow: 0 0 1px #ccc, 15px 30px 1px #ddd, -15px 30px 1px #ccc; }
}

@-moz-keyframes loader {
    0% { background: #ddd; }
    33% { background: #ccc; box-shadow: 0 0 1px #ccc, 15px 30px 1px #ccc, -15px 30px 1px #ddd; }
    66% { background: #ccc; box-shadow: 0 0 1px #ccc, 15px 30px 1px #ddd, -15px 30px 1px #ccc; }
}

@keyframes loader {
    0% { background: #ddd; }
    33% { background: #ccc; box-shadow: 0 0 1px #ccc, 15px 30px 1px #ccc, -15px 30px 1px #ddd; }
    66% { background: #ccc; box-shadow: 0 0 1px #ccc, 15px 30px 1px #ddd, -15px 30px 1px #ccc; }
}

@media screen and (max-width: 650px) {/* was 600 */
    
    .og-fullimg {
        display: block; /* Remove any inline display behavior */
        margin-left: auto;
        margin-right: auto;
        max-width: 100%; /* Ensure the image scales to container size */
        width: 70%;      /* 50%, 60% ok, 70?  */
        height: auto; /* KEEP */
    }
    
    .og-details {
/*        float: none;/*jal none */
        width: 100%;/*jal 100% */
        text-align: center;/**/
/*        padding: 0 0px 0px 30px;/*jal Added top right bottom left; 0 40px 0 20px */
/*        background-color: lightblue;    /**/
        margin-top: 0px;
        margin-bottom: auto;
        height: 50%;    /* needs to be small for overflow scroll bar to work */
        overflow: auto;
/*        position: relative;   /*?? not needed ?*/
    /*        height: auto; /**/

    }
    
    .og-details h3 {/* Title Properties */
        font-weight: 300;
        font-size: 120%;
    }
    
}