﻿/* The Modal (body & content) */
.modal-panel 
{
	font-family: Arial;
}

/* The Modal (background) */
.modal-dialog {
  display: block; /* Show/Block by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 60px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height : 100%;  /* Full height */
  overflow:  auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.2); /* Black w/light opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 10px;
  border: 1px solid #888;
  font-size: 14px;
  width: 90%;
}

/* Modal Content */
.modal-content-small {
  background-color: #fefefe;
  margin: auto;
  padding: 10px;
  border: 1px solid #888;
  font-size: 14px;
  width: 50%;
}

/* Modal Footer */
.modal-footer {
  background-color: #fefefe;
  margin: auto;
  height: 100px;
  text-align: right;
  padding-right: 20px;
  padding-bottom : 20px;
}
/* The Confirm Button*/
  .modal-confirm-btn {
    border:none;
    background: #446cb3;
    color: #fff;
    width: 75px;
    text-align:center;
    padding-top: 10px;
    padding-bottom : 10px;
    font-weight: normal;
    cursor: hand; 
}
  .modal-confirm-btn:hover {
	color: #fff;
	background: #00004f; 
}

/* The Close Button */
  .modal-close {
  border: none;
  color: #aaaaaa;
  text-decoration: none;
  float: right;
  font-size: 16px;
  font-weight: bold;
}
.modal-close:hover,
.modal-close:focus {
  color: #000;
  text-decoration: none;
  cursor: hand;
}