/*HOVER POPUP LINKS*/

/*hoverpopups type 1*/

#popup { /*color: #000; background-color: #c0c0c0;*/ }

#popup a, #popup a:visited {
position: relative;
display: block;
text-decoration: none;
/*width: 130px;
line-height: 30px;
text-align: right;
padding: 0 10px;
margin: 0;
border: 1px solid #666;

font-size: 1em;
font-weight: bold;*/
}

#popup a span {display: none;}

#popup a:hover { background-color: #262626; }

/* the IE correction rule */
#popup a:hover	{
color: white; background-color: #262626;
text-indent: 0; /* added the default value */
}

#popup a:hover span{
display: block;
position: absolute;
top: 0px;
left: -360px;
width: 320px;
margin: 0px;
padding: 10px;
color: white;
font-weight: normal;
background: #262626;
text-align: left;
border: 1px solid white;
}

