﻿/*----------------------------------------------------------------------*/
/*--------*//* WIREFRAME NOTE BOXES */
.note
{
    position:absolute;
    display:none;
    right:10px;
    padding:10px;
    background-color:#ffffce;
    border:dashed 1px #f0c000;
    font-style:italic;
    margin-left:20px;
    width:5px;
    z-index:2;
}
.note h2
{
    color:#ffffff;
    font-weight:bold;
    font-size:1em;
    background-color:#f0c000;
    padding:2px;
    width:auto;
}
.note p
{
    margin:5px 0;
}
.note .open, .note .close
{
    float:right;    
    background-color:#ffffce;
}
.note .open a, .note .close a
{
    color:#f0c000;
    font-weight:bold;
}
.note .close
{
    display:none;
}
.note .body
{
    display:none;
}
#note-toggle
{
    position:absolute;
    top:20px;
    right:20px;
    width:auto;
    padding:10px;
    background-color:#ffffce;
    border:solid 1px #f0c000;
}
#note-toggle a
{
    color:#f0c000;
    font-weight:bold;
}
#note-toggle p
{
    margin:5px 0 5px 0;
}