/*dom_tooltip.factory.css
This file configures the look for the Tippy tooltip. Rename this file to
dom_tooltip.css and flavor to taste.
*/

a.tippy_link {
 font-weight: normal;
 border-bottom: 1px dotted blue;
 color: black;
 cursor: pointer;
}

a.tippy_link:hover {
 border-bottom: 1px solid blue;
}

div.domTip_Tip {
 width: 560px;
 height: 350px;
 border:1px solid black;
}

div.domTip_tipHeader a {
 color: blue;
 text-decoration: none;
 border-bottom: 1px solid blue;
}

div.domTip_tipHeader a:hover {
 border-bottom: none;
}

div.domTip_tipHeader {
 background-color: #F7BA00;
 width: 550px;
 padding: 5px; 
 font-family: Arial;
 font-size: 12px;
 font-weight: bold;
 color: black;
 text-align: left; 
}

div.domTip_tipCloseLink {
 float: right; 
 cursor: pointer;
 
 font-size: .85em;
 color: #444;
}

div.domTip_tipBody div.domTip_tipCloseLink {
 margin-top: -5px;
 margin-right: -10px;
 margin-left: 5px;
}

div.domTip_tipBody {

 background-color: white;
 padding: 5px 15px 5px 15px; 
 width: 530px;
 max-height: 275px;
 overflow: auto;
 font-family: Helvetica, Arial, sans-serif;
 font-size: 12px;
 color: black;
 text-align: justify;

}
