.mysmallbox {
    position: relative;
    padding: 10px;
}

    .mysmallboxContainer {
        position: relative;
        width: 216px;
        height: 302px;
        margin: 0 auto;
        padding: 0;
    }

        .mysmallboxWindow {
            position: absolute;
            width: 186px;
            height: 118px;
            top:12px;
            left:16px;
            overflow: hidden;
        }

            .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: 124px;
            left: 16px;
            padding: 0px;
        }

            /* style below however you want */
            .mysmallboxNavigation li {
                width: 16px;
                height: 16px;
                line-height: 16px;  /* used for vertical centering; set as the same as the 'height' */
                text-align: center;
    			float: left;
                margin-right: 2px;
                padding: 0px;
                font-size: 11px;
                font-family: Verdana,Geneva,Arial,Helvetica,sans-serif;
                background-color: #004178;
                color: #fff;
            }
    
            /* style below however you want */
            .mysmallboxNavigation li.on {
                background-color: #ad0000;
            }
    	
    
        .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: 166px;
            height: 106px;
            top: 172px;
            left: 26px;
            color: black;
            font-size: 11px;
            font-family: Helvetica,Verdana,Geneva,Arial,sans-serif;
            text-align: left;
            z-index: 23;
        }
    
            /* 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: 194px;
       		height: 214px;
       		top:0;
       		left:0;
            z-index: 25;
        }
    
        .mysmallboxOverlay {
            position: absolute;
            width: 216px;
        	height: 302px;
        	top:0;
        	left:0;
        	background: url('/images/layouts/eb_overlay.png') no-repeat center top;
            z-index: 22;
        }