/**
 * $Id: main.css,v 1.29 2009/04/23 02:47:40 johng Exp $
 *
 * Master CSS file for the PTM application.
**/

/*
** Master bounding box and division elements
*/
.body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #FFFFFF;
    font-size: 12px;
}
#main {
    width: 785px;
    margin-left: auto;
    margin-right: auto;
}
#header {
    width: 785px;
    margin-bottom: 10px;
}
#header, #content {
    width: 100%;
}

/*
** HTML elements
*/
h1 {
    font-size : 18px;
    font-style : normal;
    font-weight : bold;
}
h2 {
    font-size : 14px;
    font-style : normal;
    font-weight : bold;
}
h5 {
    font-size : 12px;
    font-style : normal;
    font-weight : bold;
}
hr {
    height: 1px;
    border: 1px solid gray;
}
img {
    border: 0;
}
table {
    border-collapse: collapse;
}

/*
** HTML Form elements
*/
form {
    margin: 0;
    padding: 0;
}
fieldset {
    margin-bottom: 1em;
    padding: .5em;
}
.form-item {
    margin-top: 1em;
    margin-bottom: 1em;
}
.form-item input.error, .form-item textarea.error {
    border: 2px solid red;
}
.form-item .description {
    font-size: 0.85em;
}
.form-item label {
    display: block;
    font-weight: bold;
}
.form-item label.option {
    display: inline;
    font-weight: normal;
}
.marker, .form-required {
    color: #f00;
}

/*
** HTML Table elements for the main pick-a-meeting table.  This is ID
** tableGrid, created in meetings.js
*/
table#tableGrid {
    width: 98%;
    margin-left: auto;
    margin-right: auto;
    border-style: solid;
    border-width: 1px;
    border-color: #000000;
}
table#tableGrid th {
    background-color: #CCCCCC;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-style: solid;
    border-width: 1px;
    border-color: #000000;
}
table#tableGrid td {
    background-color: #CCCCCC;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-style: solid;
    border-width: 1px;
    border-color: #000000;
}

table#tableGrid td.open {
    background-color: #55FF55;
}

table#tableGrid td.reserved {
    background-color: #FF9999;
}

table#tableGrid td.mine {
    background-color: #FFFF55;
}

table#tableGrid td.mine span.memo {
    background-color: #e8e237;
    width: 100%;
}

/* style for the memo form when visible */
.ptmhide {
    display: none;
    z-index: -999;
}

/* style for the memo form when visible */
.ptmshow {
    background: white;
    position:    absolute;
    display:     block;

    background: #CCCCCC;
    border: 2px solid black;
    padding: 5px;
    width:  200px;
    height: 150px;
    /*left:   45%;*/
    /*top:    30%;*/
    left:   45%;
    top:    50%;
    z-index: 999;
}

/* not in use */
/* Used for meetings that are longer than one block, this hides the extra cells */
/*
table#tableGrid td.overflow {
    display: none;
}
*/

div#debugLog{
    background:  white;
    position:    absolute;
    display:     block;
    left:        90%;
    top:         50px;
    color:       red;

}
