.mysmallbox {
    position: relative;
    margin: 10px auto;
    padding: 0;
    width:258px;
    height: 185px;
}

    .mysmallboxContainer {
        position: relative;
        width:258px;
        height: 185px;
        margin: 0 auto;
        padding: 0;
    }

        .mysmallboxWindow {
            position: absolute;
            width: 239px;
            height: 84px;
            top:9px;
            left:10px;
            overflow: hidden;
            z-index: 22;
        }

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

		        .mysmallboxNavigation {
		            list-style-type: none;
		            position: absolute;
					overflow: hidden;
					top:103px;
					left:10px;
					height: 10px;
					margin: 0;
					padding: 0;
		            z-index: 30;
		        }
		
		            /* style below however you want */
		            .mysmallboxNavigation li {
		                float: left;
		                width: 10px;
		                height: 10px;
		                /*line-height: 60px;   used for vertical centering; set as the same as the 'height' */
		                margin: 0 4px 0 0;
		                padding: 0px;
		                font-size: 1px;
		                line-height: 7px;
		                font-family: Century Gothic,Tahoma,Arial,sans-serif;
		                color: #535354;
		                text-align: center;
		                background: url('../images/layouts/nebnav.jpg') no-repeat center top;
		            }
		    
						/* style below however you want */
						.mysmallboxNavigation li.on, .mysmallboxNavigation li:hover {
						    background-position:bottom;
						    color: #c2a95b;
						    cursor: pointer;
						}
    
    
        .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: 239px;
            height: 55px;
            top: 120px;
            left: 10px;
            color: #FFFFFF;
            font-size: 12px;
            font-family: Arial,Helvetica,sans-serif;
            line-height: 18px;
            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:258px;
        	height: 185px;
       		top:0;
       		left:0;
            z-index: 25;
        }
    
        .mysmallboxOverlay {
            position: absolute;
            width:258px;
        	height: 185px;
        	top:0;
        	left:0;
            z-index: 22;
            background: url('../images/layouts/neboverlay.png') no-repeat center top;
        }