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

    .mysmallboxContainer {
        position: relative;
        width: 262px;
   		height: 228px;
        margin: 0 auto;
        padding: 0;
    }

        .mysmallboxWindow {
            position: absolute;
            width: 228px;
            height: 135px;
            top:16px;
            left:16px;
            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: 162px;
            left: 16px;
            padding: 0px;
            margin: 0px;
        }

            /* style below however you want */
            .mysmallboxNavigation li {
            	float: left;
                width: 15px;
                height: 15px;
                line-height: 15px;  /* used for vertical centering; set as the same as the 'height' */
                text-align: center;
                margin-right: 2px;
                padding: 0px;
                font-size: 12px;
                overflow: hidden;
                font-family: Arial,Helvetica,sans-serif;
                background: transparent;
				color:  #ffffff;
            }
    
            /* style below however you want */
            .mysmallboxNavigation li.on {
                background: #ffc32a;
            }
    
    
        .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: 228px;
            height: 30px;
            top: 185px;
            left: 16px;
            font-size: 12px;
            color: #FFFFFF;
			font-family: Arial,Helveitca,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: 262px;
   			height: 228px;
       		top:0;
       		left:0;
            z-index: 25;
        }
    
        .mysmallboxOverlay {
            position: absolute;
            width: 262px;
   			height: 228px;
        	top:0;
        	left:0;
            z-index: 22;
            display: none;
        }