﻿#toolTipBox
{
    display: none;
    padding: 0;
    font-size: 12px;
    border: black solid 1px;
    font-family: verdana;
    position: absolute;
    background-color: #ffffff;
    color: 000000;
    z-index: 10000;
    cursor: hand;
    visibility: visible;
}
.cursor_mano
{
    cursor: pointer;
}

#box
{
    display: none;
    position: fixed;
    top: 10%;
    left: 24%;
    width: 660px;
    height: 660px;
    max-height: 660px;
    padding: 0;
    margin: 0;
    border: 1px solid black;
    background-color: white;
    z-index: 11;
    overflow: hidden;
}

#boxheader
{
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 30px;
    padding: 0;
    margin: 0;
    margin-right: 20px; /*margin-right:20px;*/
    background-color: #666666;
    border-bottom: 1px solid #666666;
}

#boxheader #TituloBox span
{
    margin-left: 20px;
}

#boxclose
{
    float: right;
    position: absolute;
    top: 0;
    right: 0px;
    background-image: url(../imagenes/close.gif);
    background-repeat: no-repeat;
    background-color: #CCC;
    border: 1px solid black;
    width: 20px;
    height: 20px;
    margin-right: 0px;
}

#boxcontent
{
    position: absolute;
    top: 23px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 0 0 0;
    padding: 8px;
    overflow: auto;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
#shadowing
{
    display: none;
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: #CCA;
    z-index: 10;
    opacity: 0.5;
    filter: alpha(opacity=50);
}