﻿.VerObjetos {
    padding: 5px;
}

    .VerObjetos .VO_Indice {
        background-color: #ffffff;
        display: inline-block;
        height: 100%;
        overflow-y: auto;
        cursor: default;
    }

        .VerObjetos .VO_Indice .VOI_Items {
            width: auto;
            height: 120px;
            background-color: #dddddd;
            margin: 3px 4px 0px 3px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }

            .VerObjetos .VO_Indice .VOI_Items i {
                font-size: 52px;
                color: #a0a0a0;
            }

            .VerObjetos .VO_Indice .VOI_Items span {
                display: inline-block;
                font-size: 12px;
                text-align: center;
                margin-top: 5px;
                max-height: 36px;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .VerObjetos .VO_Indice .VOI_Items.Selected {
                background-color: #aeaeae;
            }

                .VerObjetos .VO_Indice .VOI_Items.Selected i {
                    color: #dddddd;
                }

                .VerObjetos .VO_Indice .VOI_Items.Selected span {
                    color: #dddddd;
                }

            .VerObjetos .VO_Indice .VOI_Items:hover {
                background-color: #9a9a9a;
            }

                .VerObjetos .VO_Indice .VOI_Items:hover i {
                    color: #dddddd;
                }

                .VerObjetos .VO_Indice .VOI_Items:hover span {
                    color: #dddddd;
                }

    .VerObjetos .VO_Contenido {
        background-color: #ffffff;
        display: inline-block;
        height: 100%;
        overflow: scroll;
        text-align: center;
    }
