.tooltip-container{
    /*position:absolute;*/
    display:inline-block; 
    background-repeat: no-repeat;
    z-index:3;
}

.tooltip-container.bottom-left{
    padding:0 0 5px 0;
    background-image: url("../images/icon-tooltip-pointer-bottom-left.png");
    background-position: bottom left;
}

.tooltip-container.bottom-right{
    padding:0 0 5px 0;
    background-image: url("../images/icon-tooltip-pointer-bottom-right.png");
    background-position: bottom right;
}

.tooltip-container.top-left{
    padding:5px 0 0 0;
    background-image: url("../images/icon-tooltip-pointer-top-left.png");
    background-position: top left;
}

.tooltip-container.top-right{
    padding:5px 0 0 0;
    background-image: url("../images/icon-tooltip-pointer-top-right.png");
    background-position: top right;
}

.tooltip-container.left{
    padding:0 0 0 5px;
    background-image: url("../images/icon-tooltip-pointer-left.png");
    background-position:center left;
}

.tooltip-container.right{
    padding:0 5px 0 0;
    background-image: url("../images/icon-tooltip-pointer-right.png");
    background-position:center right;
}

.tooltip-container.top{
    padding:5px 0 0 0;
    background-image: url("../images/icon-tooltip-pointer-top.png");
    background-position:top center;
}

.tooltip-container.bottom{
    padding:0 0 5px 0;
    background-image: url("../images/icon-tooltip-pointer-bottom.png");
    background-position:bottom center;
}

.tooltip{
    font-family:'Lucida Grande',Verdana,Arial,sans-serif;
    display:inline-block; 
    padding:10px;
    font-size:11px;
    color:#FFFFFF;
    max-width:250px;
    background-color:#4280C1;
    border-radius:4px;
}

.modal-wrapper{
/*  position:absolute; */
    z-index:1001;
    width:500px; 
}

.modal-pointer-top{
    position:relative;
    height:10px;
    top:1px;
    background-image:url(../images/icon-modal-pointer-top.png);
    background-position:top center; 
    background-repeat:no-repeat;
    z-index:10;
}


.modal-pointer-bottom{
    position:relative;
    height:10px;
    background-image:url(../images/icon-modal-pointer-bottom.png);
    background-position:bottom center; 
    background-repeat:no-repeat;
    margin:-1px 0 0 0;
    z-index:10;
}

.modal-pointer-left{
    float:left;
    height:20px; 
    width:10px;
    background-image:url(../images/icon-modal-pointer-left.png);
    background-position:center left;
    background-repeat:no-repeat;
    margin-top:56px;
}

.modal-pointer-right-container{
    width:511px;
}

.modal-pointer-right{
    float:right;
    height:20px; 
    width:10px;
    background-image:url(../images/icon-modal-pointer-right.png);
    background-position:center right;
    background-repeat:no-repeat;
    margin-top:60px;
}

.modal-container{
    font-family:'Lucida Grande',Verdana,Arial,sans-serif;
/*  position:absolute;*/
    width:500px;
    margin:0;
    padding:0;
    border-radius:5px;
    border:1px solid #CCCCCC;
}

.modal-container.left{
    margin-left:9px;
}

.modal-container.right{
    
}

.modal-dialog{
    border-radius:5px;
    box-shadow:0 2px 10px rgba(0,0,0, 0.45);
    background-color:#fff;
    padding:4px; 
}

.modal-dialog .header{
    padding:10px;
    height:12px;
    background:#e4e4e4;
    background: -moz-linear-gradient(center top, #DEDEDE 43%, #CECECE 100%) repeat scroll 0 0 transparent;
    background: -webkit-gradient(linear, left top, left bottom, from(#DEDEDE), to(#CECECE));
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#DEDEDE', endColorstr='#CECECE');
    -webkit-border-radius:3px;
    -moz-border-radius:3px;
    border-radius:3px;
}

.modal-container.draggable .modal-dialog .header{
    cursor:move; 
}


.modal-dialog .header .close{
    text-decoration:none; 
    float:right;
    font-size:14px;
    font-weight:bold;
    color:#666666;
    margin:-3px 0 0 0;
}

.modal-dialog .header .close:hover{
    color:#333333;
}


.modal-dialog .header h3{
    font-size:12px;
    margin:0;
    padding:0;

}

.modal-dialog .body{
/*  font-size:12px;*/
    padding:15px;
    background-color:#FFFFFF; 
/*  border:1px solid #CDCDCD;*/
    border-bottom:0;
}

.modal-dialog .body p{
    font-size:inherit;
    margin:0;
    padding:0;
    width:auto;
}


.modal-dialog .footer{
    padding:0 15px 15px 15px;
    background-color:#FFFFFF;
/*  border-bottom-left-radius:4px;
    border-bottom-right-radius:4px;
    border:1px solid #CDCDCD;
    border-top:0;*/
}