.mysmallbox {
    position: relative;
    margin: 10px auto 20px;
    padding: 0;
    width: 260px;
    height: 220px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background: #d8d8d8;
	background: -moz-linear-gradient(top,  #eaeaea 0%, #d8d8d8 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eaeaea), color-stop(100%,#d8d8d8));
	background: -webkit-linear-gradient(top,  #eaeaea 0%,#d8d8d8 100%);
	background: -o-linear-gradient(top,  #eaeaea 0%,#d8d8d8 100%);
	background: -ms-linear-gradient(top,  #eaeaea 0%,#d8d8d8 100%);
	background: linear-gradient(to bottom,  #eaeaea 0%,#d8d8d8 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eaeaea', endColorstr='#d8d8d8',GradientType=0 );
	box-shadow: 0px 0px 10px 1px #666666;
}

    .mysmallboxContainer {
        position: relative;
	    width: 260px;
	    height: 220px;
        margin: 0 auto;
        padding: 0;
    }

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

            .mysmallboxWindow div {}
                .mysmallboxWindow div img {
                	-webkit-border-radius: 0px !important;
					-moz-border-radius: 0px !important;
					border-radius: 0px !important;
					box-shadow: none !important;
					border: 0px !important;
                }
    

		        .mysmallboxNavigation {
		            list-style-type: none;
		            position: absolute;
					overflow: hidden;
					top:138px;
					left:10px;
					height: 14px;
					margin: 0;
					padding: 0 !important;
		            z-index: 30;
		        }
		
		            /* style below however you want */
		            .mysmallboxNavigation li {
		                float: left;
		                width: 12px;
		                height: 12px;
		                /*line-height: 60px;   used for vertical centering; set as the same as the 'height' */
		                margin: 0 6px 0 0;
		                padding: 0px;
		                font-size: 1px;
		                line-height: 11px;
		                font-family: Century Gothic,Tahoma,Arial,sans-serif;
					    background: #eaeaea;
					    color: #eaeaea;
		                text-align: center;
		                -webkit-border-radius: 3px;
			            -moz-border-radius: 3px;
			            border-radius: 3px;
			            border: 1px solid #999999;
		            }
		    
						/* style below however you want */
						.mysmallboxNavigation li.on, .mysmallboxNavigation li:hover {
			                background: #FF3E7D;
			                color: #FF3E7D;
						}
    
    
        .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: 240px;
			height: 54px;
			top: 158px;
			left: 10px;
			color: #3F3F3F;
			font-family: 'Lucida Grande','Lucida Sans Unicode',Helvetica,Arial,Verdana,sans-serif;
			font-size: 14px;
			line-height: 18px;
            text-align: left;
            z-index: 24;
            text-shadow: 0px 1px 1px white;
        }
    
            /* 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: 260px;
		    height: 220px;
       		top:0;
       		left:0;
            z-index: 25;
        }
    
        .mysmallboxOverlay {
            position: absolute;
            width: 309px;
        	height: 160px;
        	top:0;
        	left:0;
        	display: none;
            z-index: 22;
        }