.mysmallbox {
    position: relative;
    margin: 10px auto;
    width: 197px;
    height: 210px;
    background: url('/images/layouts/eb_bg.png') no-repeat center top;
}

    .mysmallboxContainer {
        position: relative;
        width: 197px;
        height: 210px;
        margin: 0 auto;
        padding: 0;
    }

        .mysmallboxWindow {
            position: absolute;
            width: 176px;
            height: 116px;
            top:11px;
            left:10px;
            overflow: hidden;
            z-index: 23;
        }

            .mysmallboxWindow div { /* do not style the individual divs in the imageWindow */ }
                .mysmallboxWindow div img { /* do not style the individual images in the imageWindow */ }
    

        .mysmallboxNavigation {
            position: absolute;
            z-index: 30;
            list-style-type: none;

            /* style below however you want */
            top: 131px;
            left: 10px;
            padding: 0px;
            margin: 0px;
        }

            /* style below however you want */
            .mysmallboxNavigation li {
                width: 19px;
                height: 6px;
                line-height: 6px;  /* used for vertical centering; set as the same as the 'height' */
                text-align: center;
    			float: left;
                margin-right: 5px;
                padding: 0px;
                font-size: 1px;
                font-family: Verdana,Geneva,Arial,Helvetica,sans-serif;
                background-color: #FFFFFF;
                color: #FFFFFF;
            }
    
            /* style below however you want */
            .mysmallboxNavigation li.on {
                background-color: #004c77;
                color: #004c77;
            }
    
    
        .mysmallboxDescriptions {
            position: absolute;
            overflow: hidden; /* highly recommend that the overflow is hidden to prevent image bleeding on the website */
            z-index: 20; /* keep this: it sets the position */

            /* style below however you want */
            width: 176px;
            height: 50px;
            top: 150px;
            left: 10px;
            color: #FFFFFF;
            font-size: 11px;
            line-height: 14px;
            font-family: Arial,Helvetica,sans-serif;
            text-align: left;
            z-index: 24;
        }
    
            /* style below however you want */
            .mysmallboxDescriptions div {
                position: relative;
                height: 100%;            /* keep this as it ensures there is not a flicker on the text */
                padding: 0;
                margin: 0 auto;
            }
    
        .mysmallboxAnchor {
            position: absolute;
            width: 197px;
        	height: 210px;
       		top:0;
       		left:0;
            z-index: 25;
        }
    
        .mysmallboxOverlay {
            position: absolute;
            width: 197px;
       		height: 210px;
        	top:0;
        	left:0;
            z-index: 22;
            display: none;
        }