/*//////////////////////////////
	Header CSS
//////////////////////////////*/

body 
{
	margin: 0px;
	padding: 0px;
	background-color: #353831;
}

img{
  margin: 0;
  margin-left: 15px;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.banner1
{
	background-color: #4B4B4B;
	width: 100%;
  height: 150px;
  position: relative;
}

.banner2
{
	background-color: #A8A8A8;
	width: 100%;
	height: 25px;
	margin-bottom: 0px;
	padding-bottom: 0px;
}

#container
{
	background-color: #FFFFFF;
	width: 60%;
	min-width: 500px;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 75px;
}

/*//////////////////////////////
	Font CSS
//////////////////////////////*/

.titleFont { 
	font-family: 'do not matter', Arial, sans-serif; 
	color: #353831; 
	font-size: 1.6em;
}

.headerFont { 
	font-family: 'do not matter', Arial, sans-serif; 
	color: #353831; 
	font-size: 1.1em;
  display: inline-block; 
  margin-bottom: 3px;
}

.generalFont { 
	font-family: 'do not matter', Arial, sans-serif; 
	color: #4B4B4B;  
	font-size: .9em;
}

.headerFont { 
  font-family: 'do not matter', Arial, sans-serif; 
  color: #353831; 
  font-size: 1.1em;
}

/*//////////////////////////////
	General CSS
//////////////////////////////*/

.agreement{
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
  padding-top: 10px;
  padding-bottom: 10px;

  text-align: left;

  border-style: solid;
  border-width: 1px;
  border-color: #d4d4d4;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;

  height: auto;
  width: 390px;
}

.components {
	font-family: 'do not matter', Arial, sans-serif;
	font-size: 1.92em;
	color: #4B4B4B;
	text-align: left;
}

.params{
	display: none;
}

.key{
	text-align: center;
	font-family: 'do not matter', Arial, sans-serif;
	font-size: 1.1em;
	color: #4B4B4B;
}

.value{
	text-align: left
}

#resultsTable{
	border-collapse: collapse;
}

.results{
	border: 1px solid black;
	border-color: #4a4d51;
}

input, select, textarea {
	font-family: 'do not matter', Arial, sans-serif;
	font-size: .9em;
	color: #272823;
}

input {
  width: 220px
}

#requestType {
  width: 228px
}


/*//////////////////////////////
  ToolTip CSS
//////////////////////////////*/

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 220px;
    background-color: #4B4B4B;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 10px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 0%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity .5s;
    font-family: 'do not matter', Arial, sans-serif;
    font-size: .9em;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: .95;
}

/*//////////////////////////////
	Button CSS
//////////////////////////////*/

.button {
    background-color: #4B4B4B;
    border: none;
    color: white;
    padding: 15px 42px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 17px;
    margin: 4px 2px;
    cursor: pointer;
}

.button:active {
	padding: 14px 40px;
	font-size: 16px;
	margin-top: 3px;
	margin-bottom: 9px;
}

.button2 {
    background-color: #75777a;
    border: none;
    color: white;
    padding: 8px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    margin: 4px 2px;
    cursor: pointer;
    margin-top: 8px;
}

.button2:active {
	font-size: 11px;
	margin-bottom: 5px;
}

/*//////////////////////////////
	CHECKBOX
//////////////////////////////*/

/* The container */
.container {
    display: inline;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default checkbox */
  .container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: rgb(250, 244, 244);
    border-style: solid;
    border-width: thin;
  }
  
  /* On mouse-over, add a grey background color */
  .container:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
  .container input:checked ~ .checkmark {
    background-color: #0085CA;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .container input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }


  .dropdown-check-list {
    display: inline-block;
  }
  .dropdown-check-list .anchor {
    position: relative;
    cursor: pointer;
    display: inline-block;
    padding: 5px 50px 5px 10px;
    border: 1px solid #ccc;
  }
  .dropdown-check-list .anchor:after {
    position: absolute;
    content: "";
    border-left: 2px solid black;
    border-top: 2px solid black;
    padding: 5px;
    right: 10px;
    top: 20%;
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  .dropdown-check-list .anchor:active:after {
    right: 8px;
    top: 21%;
  }
  .dropdown-check-list ul.items {
    padding: 2px;
    display: none;
    margin: 0;
    border: 1px solid #ccc;
    border-top: none;
  }
  .dropdown-check-list ul.items li {
    list-style: none;
  }
  .dropdown-check-list.visible .anchor {
    color: #0094ff;
  }
  .dropdown-check-list.visible .items {
    display: block;
  }

.pageTables {
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 80%;
}

#entityTable{
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 60%;
}

.pageTables td, .pageTables th {
  border: 1px solid #ddd;
  padding-left: 5px;
  text-align: left
}

#entityTable td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left
}

#entityTable th {
    border: 1px solid #ddd;
  padding: 8px;
    text-align: center
}

.pageTables tr:nth-child(even){background-color: #f2f2f2;}

.pageTables tr:hover {background-color: #ddd;}

.pageTables th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #0085CA;
  color: white;
  text-align :center
}

th{
    text-align: center
}

img:hover {
    cursor: pointer
}

.entityTr:hover {
    cursor: pointer
}

#daterange {
    cursor: pointer
}