/*-----------------------------------------------------------------------------------------------*/
/*                   A BETTER TOOLTIP - POWERED BY JQUERY AWESOMENESS                            */
/*                   AUTHOR: jon cazier                                                          */
/*                   EMAIL: jon at 3nhanced dot com                                              */
/*-----------------------------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------------------------*/
/*                                  CSS RESET THANKS TO ERIC MEYER                               */
/*                   http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/                */
/*-----------------------------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------------------------*/
/*                                         TOOLTIP STYLES                                        */
/*-----------------------------------------------------------------------------------------------*/
.tip {
	width: 159px;
	padding-top: 27px;
	overflow: hidden;
	display: none;
	position: absolute;
	z-index: 500;
	background: transparent url(images/tipTop2.png) no-repeat top;}
	
.tipMid {background: transparent url(images/tipMid2.png)
	 repeat-y;
	 padding: 0 10px 20px 10px;
	 font-size: 10px;
	 text-align: center;
	 }
.tipBtm {background: transparent url(images/tipBtm2.png)
	 no-repeat bottom;
	 height: 24px;}
	 
