.mysmallbox {
    position: relative;
    margin: 10px auto;
    padding: 0;
    width: 280px;
    height: 235px;
    background: #FFFFFF;
}

    .mysmallboxContainer {
        position: relative;
        width: 280px;
        height: 235px;
        margin: 0 auto;
        padding: 0;
    }

        .mysmallboxWindow {
            position: absolute;
            width: 250px;
            height: 150px;
            top:15px;
            left:15px;
            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 {
		            list-style-type: none;
		            position: absolute;
					overflow: hidden;
					top:172px;
					left:15px;
					height: 17px;
					margin: 0;
					padding: 0;
		            z-index: 30;
		        }
		
		            /* style below however you want */
		            .mysmallboxNavigation li {
		                float: left;
		                width: 17px;
		                height: 17px;
		                /*line-height: 60px;   used for vertical centering; set as the same as the 'height' */
		                margin: 0 2px 0 0;
		                padding: 0px;
		                font-size: 12px;
		                line-height: 17px;
		                font-family: Verdana,Geneva,Arial,sans-serif;
		                background-color: #b0a586;
		                color: #FFFFFF;
		                text-align: center;
		                font-weight: bold;
		     
		            }
		    
						/* style below however you want */
						.mysmallboxNavigation li.on, .mysmallboxNavigation li:hover {
						    background-color: #692601;
						}
    
    
        .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: 250px;
            height: 40px;
            top: 194px;
            left: 15px;
            color: #000000;
            font-size: 13px;
		    font-family: Verdana,Geneva,Arial,sans-serif;
            line-height: 15px;
            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: 280px;
	        height: 235px;
       		top:0;
       		left:0;
            z-index: 25;
        }
    
        .mysmallboxOverlay {
            position: absolute;
	        width: 280px;
	        height: 235px;
        	top:0;
        	left:0;
        	display: none;
            z-index: 22;
        }