/*
	jquery.tippy.css
	
	Tippy Tooltip by Chris Roberts
	chris@dailycross.net
	http://croberts.me/
*/

.tippy {
    display: none;
}

.tippy_link {
    font-weight: normal;
    cursor: pointer;
    display: inline-block;
    position: relative;
}

.tippy_tip {
    width: 300px;
    border-radius: 5px;
    box-shadow: 3px 3px 3px 3px #888;
    z-index: 5000;

}

.tippy_header {
    background-color: #666;
	color: #FC9;
    width: 300px;
    padding: 5px;
    border-radius: 5px 5px 0 0;
    font-weight: bold;
    text-align: left;
}

.tippy_draggable {
    cursor: move;
}

.tippy_body {
	padding: 5px;
    width: 300px;
    overflow: auto;
    border-radius: 0 0 5px 5px;
	background-color: #FC9;
	font-size: 14px;
}

.tippy_body p {
    margin-bottom: .75em;
}
