/*
 * Note that this file is arranged mostly (but not necessarily) by generic styles, classes,
 * and then id elements--each alphabetized.  There are some exceptions where it made sense.
 */

/* top (command) form error (i.e. "There was a problem with the information..."). */
.commandError
{
   color: #900;
   font-weight: bold;
   margin: 0 auto;
   width: 500px;
}

/* top (command) form success (i.e. "The information has been saved..."). */
.commandMessage
{
   background: #fff;
   border: 3px solid #090;
   color: #090;
   font-weight: bold;
   margin: 0 auto;
   padding: 5px;
   text-align: center;
   width: 400px;
}

/* pager. */
div.pager
{
   margin: 0px;
   padding-top: 5px;
   text-align: left;
}

.pager select
{
   vertical-align: middle;
   width: 40px;
}

.pager .goToPage
{
   padding-left: 10px;
}



/* error block used for JS errors - on all pages. */
#errorBlock
{
   display: none;
}

/* message block used for JS messages - on all pages. */
#messageBlock
{
   display: none;
}


