/*
	jquery.tippy.css
	
	Tippy Tooltip by Chris Roberts
	chris@dailycross.net
	http://croberts.me/
*/

.tippy {
    display: none;
}

.tippy_link {
    color: #0066CC;
    font-weight: bold;
    border-bottom: 1px solid;
    cursor: pointer;
}

.tippy_link img {
    z-index: 1;
}

.tippy_link img.tippy_swap {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
}

.tippy_tip {
    width: 250px;
    height: 300px;

    border-radius: 2px;
    box-shadow: 0px 0px 3px #888, 4px 4px 6px #0066CC;

    z-index: 10000;
    font-size: 10px;
}

.tippy_header {
    color: white;
    background-color: #0066CC;
    width: 246px;
    padding: 2px;
    border-radius: 1px 1px 0 0;

    font-size: 1.5em;
    font-weight: bold;
    text-align: left;
}

.tippy_draggable {
    cursor: move;
}

.tippy_closelink {
    float: right; 
    cursor: pointer;

    font-size: .85em;
    color: white;
    padding: 0 2px 2px 4px;
}

.tippy_noheader .tippy_closelink {
    padding-right: 0;
}

.tippy_closelink:hover {
    color: red;
}

.tippy_body {
    background-color: white;
    padding: 2px 4px 2px 4px;

    width: 242px;
    max-height: 275px;

    position: relative;
    
    overflow: auto;
    border-radius: 0 0 2px 2px;
    font-size: 1.25em;
    line-height: 1.5em;
}

.tippy_body.tippy_noheader {
    border-radius: 2px;
}

.tippy_body p {
    margin-bottom: .75em;
}
.tippy_content_container {
    display: none;
}