 /* CSS for the pop-up */
        .popup {
            width:300px;
			height:170px;
			position: fixed;
            bottom: -200px; /* Start off the screen */
            right: 10px;
            background-color: #f1f1f1;
            border: 1px solid #d3d3d3;
            padding: 5px;
            z-index: 1;
            transition: bottom 0.5s; /* Add a transition effect for the 'bottom' property */
        }

        /* Close button for the pop-up */
        .closebtn {
            position: absolute;
			height: auto;
			width: auto;
			left: auto;
			right: 0px;
			bottom: auto;
			top: 0px;
			padding: 8px;
			color: #ffffff;
			font-family: inherit;
			font-weight: 400;
			font-size: 12px;
			font-style: inherit;
			line-height: 36px;
			border: 1px none #ffffff;
			border-radius: 0px;
			box-shadow: 1px 1px 3px 0px rgba( 2, 2, 2, 0.23 );
			text-shadow: 0px 0px 0px rgba( 0, 0, 0, 0.23 );
			background-color: rgba( 23, 23, 23, 1.0 );			
			cursor: pointer;
		}
			
		.closebtn:hover {
			background-color: rgba( 207, 86, 0, 1.00 );
		}
			
		.poplink{
			color:#000;
		}
		
		.poplink:hover{
			color:#C93F02;
		}
		
		.pophd{
			font-size:2em;
			text-align:left;
		}
		
		.popimg{
			width:100px;
		}
		
		.poptxt{
			position: fixed;
			width:130px;
            right: 80px;
			color:#6E6E6E;
			padding-left:20px;
			line-height:18px;
		}