/* Create the Modal components */

#modalBackground
{
  display: none;
}

#modalContainer
{
  display: none;
  width: 982px;
  margin: auto;
}

div.modalBackground
{
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #000000;
  opacity: 0.5;
  -moz-opacity: 0.50;
  filter: alpha(opacity=50);
}

div.modalTextContact
{
  display: none;
  position: fixed;
  margin-left: 206px;
  top: 60px;
  width: 570px;
  height: 630px;
  background-color: #ffffff;
  z-index: 9999;
  border: 3px solid #d7d9da;
  border-radius: 4px;
}

div.signedIn
{
  height:520px;
}

div.modalTextLogin
{
  display: none;
  position: fixed;
  margin-left: 206px;
  top: 60px;
  width: 570px;
  background-color: #ffffff;
  z-index: 9999;
  border: 3px solid #d7d9da;
  border-radius: 4px;
}

div.modalTextLogoutNotification
{
  display: none;
  position: fixed;
  margin-left: 206px;
  top: 60px;
  width: 570px;
  height: 300px;
  background-color: #ffffff;
  z-index: 9999;
  border: 3px solid #d7d9da;
  border-radius: 4px;
}

div.modalHeader
{
  position: relative;
  height: 42px;
  font-size: 22px;
  line-height: 36px;
  border-bottom: 2px solid #dbdbdb;
  color: #606060;
  text-indent: 24px;
  padding-top: 6px;
  font-weight: 300;
}

div.modalBody
{
  position: relative;
}

div.modalContent
{
  font-size: 14px;
  font-weight: 300;
  color: #5f5f5f;
  margin: 22px 24px 22px 24px;
}

div.modalFooter
{
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 72px;
  background-color: #f6f6f6;
  border-top: 1px solid #c1c1c1;
}

div.modalFooter div.loginForgot
{
  position: absolute;
  top: 15px;
  left: 30px;
  width: 315px;
  line-height: 15px;
  font-size: 11px;
  color: #777777;
}

/* div.modalFooter div.buttons
{
  position: absolute;
  right: 20px;
  top: 15px;
} */

/* Define the modal sub-components */

table.modal
{
  border-spacing: 0px;
  width: 100%;
  margin-top: 35px;
}

table.modal tr td.label
{
  width: 150px;
  height: 53px;
  font-size: 14px;
  font-weight: 300;
  color: #a0a0a0;
  text-align: right;
}

table.modal tr td.help
{
  width: 40px;
  text-align: center;
}

table.modal tr td.field
{
  color: #a0a0a0;
  width: 275px;
}

table.modal tr td.field input
{
  width: 20px;
  height: 20px;
}

table.modal tr td.field input.field
{
  width: 240px;
  height: 33px;
  padding-left: 10px;
  padding-right: 10px;
  border: 1px solid #d1d1d1;
  border-radius: 4px;
  font-size: 14px;
  color: #333333;
}

table.modal tr td.field textarea.field
{
  width: 240px;
  height: 200px;
  padding-left: 10px;
  padding-right: 10px;
  border: 1px solid #d1d1d1;
  border-radius: 4px;
  font-size: 14px;
  color: #333333;
}

/* Handle the modal warning popups */

img.modalWarningIcon
{
  cursor: pointer;
}

div.modalWarningContainer
{
  position: relative;
  display: none;
}

div.modalWarning
{
  position: absolute;
  width: 320px;
  height: 100px;
  left: 24px;
  top: -60px;
  border: 2px solid #797979;
  background-color: #ffffff;
  border-radius: 4px;
}

div.modalWarning div.modalWarningHeader
{
  position: absolute;
  height: 35px;
  width: 320px;
  top: 0px;
  left: 0px;
  background-color: #f6f6f6;
}

div.modalWarning div.modalWarningHeader div.text
{
  position: absolute;
  top: 10px;
  left: 18px;
  color: #333333;
  font-size: 16px;
}

div.modalWarning div.modalWarningBody
{
  position: absolute;
  height: 50px;
  width: 284px;
  bottom: 4px;
  left: 18px;
  color: #929292;
  font-size: 14px;
  line-height: 20px;
}

