/* 
    Document   : tips
    Created on : 28-Oct-2009, 16:13:37
    Author     : sean
    Description:
        Purpose of the stylesheet follows.
*/

/* 
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

root { 
    display: block;
}

#hintbox{ /*CSS for pop up hint box */
position:absolute;
top: 0;
background-color: lightyellow;
width: 150px; /*Default width of hint.*/
padding: 3px;
border:1px solid black;
font:normal 11px Verdana;
line-height:18px;
z-index:100;
border-right: 3px solid black;
border-bottom: 3px solid black;
visibility: hidden;
}

.hintanchor{ /*CSS for link that shows hint onmouseover*/
font-weight: bold;
color: navy;
margin: 3px 0px;
}

.reqd{ /*CSS for link that shows hint onmouseover*/
font-weight: bold;
color: red;
margin: auto;
}

.reqd_ta{ /*CSS for reqd star*/
position:static;
left: 30px;
font-weight: bold;
color: red;
margin: auto;
}