/**
 * GUIWindow
 */ 
div.window table {
    margin: 10px auto 5px;
    text-align: left;
}

div.window td.header {
    padding: 4px 8px;
}
div.window td.content {
    padding: 10px 10px 0px;
}
div.window td.buttons {
    padding: 15px 10px 10px;
}
div.window .button {
    cursor: hand;
}

div.window table.default,
div.window table.confirmation {
    background-color: #DDEBF3;
    border: 2px #003366 solid;
}

div.window .default .header,
div.window .confirmation .header {
    background-color: #006699;
    color: #FFFFFF;
    font-weight: bold;
}

div.window .confirmation .content {
    text-align: center;
    font-weight: bold;
}

div.window .confirmation .buttons { text-align: center; }
div.window .default .buttons { text-align: right; }

div.window .confirmation .button,
div.window .default .button {
    background-color: #006699;
    border: 1px #000000 solid;
    color: #FFFFFF;
    padding: 1px 7px;
}

div.window .closeImg {
    background-color: transparent;
    background-image: url('../images/close_white.gif');
    background-repeat: no-repeat;
    border: none;
    cursor: hand;
    margin: 0;
    width: 14px;
    height: 14px;
}

/**
 * ConfirmationW
 */
div.window .confirmation div.info {
    margin-top: 5px;
    font-size: 90%;
    font-weight: normal;
}
 
/**
 * Field types.
 */
div.window input.name,
div.window textarea.note,
div.window input.imageUpload { width: 300px; }
div.window input.code { width: 100px; }
