@charset "UTF-8";

blockquote {
  font-size: 7pt;
}

table th,td,tr {
	border:  2px solid red;
    	padding: 0px 0px;
}

table {
	width: 95%;
    	border-collapse: collapse;
	border-spacing: 1px;
}

.underline {
  text-decoration: underline;
  font-weight: bold;
  }

h1, h2, h3, h4, h5 {
	text-align: center;
	text-decoration: underline;
}
.details {
  text-align: left;
  font-size: 12pt;
}

p {
  font-size: 7pt;
  width: 100%;
}

.red {
  font-size: 7pt;
  color: red;
  font-weight: bold;
# text-decoration: underline; 
}

.mytable {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 1px;
  display: table;
}
.myheader {
  text-align: center;
  display: table-row;
}
.myrow {
  text-align: left;
  display: table-row;
}
.mycell {
  padding: 5px;
  border:  2px solid green;
  display: table-cell;
}
.mycell-r {
  text-align: right;
  padding: 5px;
  border:  2px solid green;
  display: table-cell;
}
.column0 {
  display: table-column;
  width: 90%;
}
.column1 {
  display: table-column;
  width: 80%;
}
.column2 {
  display: table-column;
  width: 70%;
}
.column2 {
  display: table-column;
  width: 60%;
}
.column3 {
  display: table-column;
  width: 50%;
}
.column4 {
  display: table-column;
  width: 10%;
}

dl {
  width: 100%;
  overflow: hidden;
#  background: #ff0;
  padding: 0;
  margin: 0
}
dt {
  float: left;
  width: 2%;
  /* adjust the width; make sure the total of both is 100% */
#  background: #cc0;
  padding: 0;
  margin: 0
}
dd {
  float: left;
  width: 98%;
  /* adjust the width; make sure the total of both is 100% */
#  background: #dd0
  padding: 0;
  margin: 0
}