div.top_pict_display_container {
    margin-left: auto;
    margin-right: auto;
    margin-top: 6px;
    margin-bottom: 6px;
    /*display: table; lost to history why this added, img does not scale on IE */
    /*width: 1%; origin prob related to above, kept text under image */
}
div.top_pict_img_container {
    text-align: center;
    width: 100%;
    /*max-height: 800px;*/
    /*max-height: 1000px;*/
    line-height: 0px; /* putting extra space below other content? */
}
img.top_pict_full_pict {
    max-width: 1000px;
    max-height: 800px;
    height: auto;
    vertical-align: top;
    line-height: 0px; /* maintaining display: inline; with out the space on bottom for text, not working? */
}
span.top_pict_full_arrows_container {
    position: relative;
    display: inline-block;

}
span.top_pict_full_arrows {
    /*background-color: pink;*/
    opacity: 0.0;
    position: absolute;
    top: 0px;
    bottom: 0px;
    width: 10%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    
    /*display: none;*/
}
/* works span.top_pict_full_arrows:hover {
    opacity: 1.0;
}*/
span.top_pict_full_arrows_container:hover span.top_pict_full_arrows {
    opacity: 1.0;
}
div.top_pict_title {
    text-align: center;
    font-size: 200%;
    margin-bottom: 4px;
}
div.top_pict_date {
    text-align: right;
    color: grey;
    padding-right: 1em;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
div.top_pict_caption {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0px 1em;
}

div.top_pict_display_other_links {
    max-width: 1000px;
    height: 170px; /* overridden by padding-bottom for window < 1000px */
    margin-left: auto;
    margin-right: auto;
    background-color: #CCC;
    border-radius: 8px;
    position: relative;
    /*padding-bottom: 17%; /*set this for window < 1000px. This in conjunction with div.top_pict_ratio holds this other links div/rectangle at a constant aspect ratio */
}
div.top_pict_ratio {
    position: absolute;
	top: 0; bottom: 0; left: 0; right: 0;
}
div.top_pict_other_link {
    display: inline-block;
    box-sizing: border-box;
    padding: 0px 1px;
    width: 17.2%;
    height: 100%;
    position: relative;
    vertical-align: top;
    text-align: center;
}
div.background_image {
    background-repeat: no-repeat;
    /*background-attachment: fixed;*/
    background-position: center;
    background-size: 100%;
    
    height:100%;
}
div.top_pict_arrow {
    display: inline-block;
    width: 7%;
    height: 100%;
    position: relative; /* for centering */
    /*vertical-align: center; /* does not work*/
    /*text-align: center;
    font-size: 30px;
    background-color: pink;
    opacity: 0.4;*/
    
}
div.top_pict_arrow img { /* is this still used? */
    width: 100%;
    height: 100%;
    /* for centering */
    position: absolute;  
    top: 0;  
    bottom: 0;  
    left: 0;  
    right: 0;
    margin: auto;

}
input.top_pict_other_arrow {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: none;
    cursor: pointer;
    padding: 0px; /* default inputs have lots of padding */
    margin: 0px; /* undoing what set for consistenty */
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 8px; /* should not have to reset this, but do */
    background-color: #CCC; /* user agent style sheet sets this (input?) to silver */
}

@media screen and (max-width:1000px) {
div.top_pict_display_container {
    width: auto;
}
img.top_pict_full_pict {
    /*width: 100%; causes portraite img to stretch horz */
    max-width: 100%;
    /*max-height: 1000px;*/
}
div.top_pict_display_other_links {
    height: auto;
    padding-bottom: 17%; /* This in conjunction with div.top_pict_ratio holds this other links div/rectangle at a constant aspect ratio */
}
}



/* Other Trys: delete if no issues found with current
img.top_pict_other_link {
    //position: absolute;
    //left: 0px;
    //top: 0px;
    vertical-align: center;
    box-sizing: border-box;
    //padding: 0px 1px;
    width: 100%;
    
    // these make a vertical image work
    //height: 100%;
    //width: auto;
    
    // this might do exactally what I want, but is very new
    //object-fit:
    
}

div.ryan {
    display: inline-block;
    box-sizing: border-box;
    padding: 0px 1px;
    width: 18%;
    height: 100%;
    position: relative;
    background-color: red;
    vertical-align: top;
    text-align: center;
    overflow: hidden;
}
img.ryan {
    position: absolute;
    top: -100%;
    bottom: -100%;
    left: -100%;
    right: -100%;
    margin: auto;
    min-height: 100%;
    min-width:  100%;
}


table.table_try {
    width: 100%;
    background-color:red;
}
table.table_try td {
    width:20%;
    position:relative;
}
table.table_try td:after{
    content:'';
    display:block;
    margin-top:100%;
}
table.table_try td.content {
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    background:gold;
}
	/* this will crop off the bottoms of vertical pictures
	overflow: hidden;
	*/

*/