a
{
    color: #346abf;
    text-decoration: underline;
}

a:visited
{
    color: #346abf;
}


a:hover
{
    color: #85e1f5;
    text-decoration: none;
}

a:active
{
    color: #e5f9fb;
}

#page-container
{
	position: relative;
    background-color: #FFFFFF;
    top: 0px;
    bottom: auto;
    width: 1000px;
    padding: 0px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    clear: both;
    text-align: left;
    border-left: solid 1px #DDDDDD;
    border-right: solid 1px #DDDDDD;
    border-bottom: solid 1px #DDDDDD;
    overflow-x: hidden;
}

#page-container #header
{
    padding: 0px;
    margin: 0px;
}


#page-container #logo-globe
{
    width: 201px;
    height: 206px;
    background: url(../images/admin_site_corner.jpg) no-repeat top left;
}

#page-container #logo-globe h2
{
    display: none;
}


#page-container #logo-title
{
    position: absolute;
    width: 799px;
    height: 107px;
    top: 0px;
    left: 201px;
    background: url(../images/admin_site_bar.jpg) no-repeat top left;
}

#page-container #logo-title h3
{
    display: none;
}


#page-container #menu
{
    position: absolute;
    width: 900px;
    height: 42px;
    top: 107px;
    left: 201px;
    background: url(../images/registration_grey-bar.jpg) no-repeat top left;
    padding: 12px;
    line-height: normal;
    font-size: 9pt;
}


#page-container #body
{
    position: relative;
    width: 920px;
    top: -20px;
    padding-top: 0px;
    padding-bottom: 40px;
    left: 40px;
    min-height: 500px;
}

#page-container .leftContentBlock
{
    width: 63%;
    padding-right: 20px;
    float:left;   
}
#page-container .rightContentBlock
{
    width: 32%;
    padding-right: 20px;
    float: left;
}

#warnings
{
    color: red;
    font-style: italic;
}
#warnings span 
{
    clear: both;
}

#leftBar
{
    padding-left: 40px;
    width: 400px;
}

#leftBar dl
{
    width: 440px;
}


#rightBar
{
    left: 480px;
    width: 400px;
}


table.scheduledEventList
{
    width: 900px;
    table-layout: fixed;
}

.adminForm
{
    width: 870px;
    margin-left: 25px;
}

.adminInfoPage
{
    width: 870px;
    margin-left: 25px;
}

dl
{
    width: 800px;
}


#button
{
    /*text-align: center;*/
    left: 275px;
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
}

#button input
{
    font-weight: bold;
    font-size: 1.1em;
}

.line-through
{
    text-decoration: line-through;
}

#docs
{
    z-index: 100;
    float: right;
    position: absolute;
    top: 15px;
    right: 15px;
}

#helpMenuButton
{
    color: rgba(0,0,0,0.5);
    font-size: 2em;
    font-weight: bolder;
    text-decoration: none;
}

#helpMenuButton:hover
{
    color: rgba(0,0,0,0.25);
}

#helpMenu
{
    visibility: hidden;
    z-index: 101; position: absolute; top: 25px; right: 20px;
    width: 340px;
    background-color: rgba(255, 255, 255, 0.95);
    border: solid rgba(0,0,0,0.2) 1px;
    text-align: right;
    font-size: 1em;
    padding: 0.4em;
}

/****************************************************************************
Schedule List Modal
****************************************************************************/

/* The Modal (background) */
.schedule_modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 999; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    /*height: 100%; !* Full height *!*/
    height: 100vh;
    /*overflow: auto; !* Enable scroll if needed *!*/
    overflow: hidden;;
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.schedule_modal_content {
    background-color: #fefefe;
    /*margin: 10% auto; !* 15% from the top and centered *!*/
    /*padding: 20px;*/
    border: 1px solid #888;
    /*width: 80%; !* Could be more or less, depending on screen size *!*/
    max-width: 1202px;
    max-height: 794px;
    width: 100%;
    height: 100vh;
    position: relative;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* The Close Button */
.schedule_modal_close {
    color: #FFFFFF;
    /*float: right;*/
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 1px;
    right: 1px;
}

.schedule_modal_close:hover,
.schedule_modal_close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}