body {
    font-size: 16px;
}
td {
    height: 25px;
}
input[type="text"] {
    font-size: 100%;
    width: calc( 100% - 8px ) ;
　  border-width: 0px;
    border-style: None;
}
textarea {
    font-size: 100%;
    resize: none;
    width: calc( 100% - 8px ) ;
    height: calc( 100% - 8px ) ;
　  border-width: 0px;
    border-style: None;
}
table.fixed{
    table-layout: fixed;
}
.inputarea {
    position:absolute;
    top: 0;
    left: 4;
    width: 98%;
    height: 100%;
    vertical-align: middle;
    background:url(spacer.gif);
}
.inputarea.center {
    left: 0;
    text-align: center;
}
.inputarea.initial {
    left: 0;
}
.inputarea.initial.textarea1 {
    width: 95%;
    height: 95%;
}
.inputarea.initial.textarea2 {
    width: 98%;
    height: 90%;
}
.inputarea.initial.textarea3 {
    width: 99%;
    height: 94%;
}
.inputarea.initial.textarea4 {
    width: 97%;
    height: 94%;
}
.inlineframe {
  background-color:#987;
  height: 83vh;
  overflow: auto;
  overflow-y: scroll;
  overflow-x: hidden;
  align: center;
  padding: 12px;
}

.celltitle {
	background-color: #765;
        color: #fff;
	text-align: center;
        text-shadow: 2px 2px 1px #000;
        user-select:none;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: solid;
	border-top-color: #000;
	border-right-color: #000;
	border-bottom-color: #000;
	border-left-color: #000;
}
.celltitle.alignleft {
        text-align: initial;
	padding-left: 4px;
}
.celltitle.borderright {
	border-right-style: solid;
}
.celltitle.borderbottom {
	border-bottom-style: solid;
}
.celltitle.alignleft.borderright {
	border-right-style: solid;
}
.celltitle.alignleft.borderbottomright {
	border-right-style: solid;
	border-bottom-style: solid;
}
.celltitle.bordernottop {
	border-top-style: none;
}
.celltitle.bordernottop.right {
	border-right-style: solid;
}
.portrait {
	background-color: #FFF;
	text-align: left;
	vertical-align: top;
        user-select:none;
	border: 1px solid #000;
}
.txtsmall {
	font-size: small;
}
.txtxxsmall {
	font-size: xx-small;
}
.autocalc {
	background-color: #EEE;
	text-align: center;
        user-select:none;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: solid;
	border-top-color: #000;
	border-right-color: #000;
	border-bottom-color: #000;
	border-left-color: #000;
}
.autocalc.borderbottom {
	border-bottom-style: solid;
}
.autocalc.borderright {
	border-right-style: solid;
}
.autocalc.borderbottomright {
	border-right-style: solid;
	border-bottom-style: solid;
}
.autocalc.borderall {
	border: 1px solid #000;
}
.blankcell {
        position:relative;
        user-select:none;
	background-color: #FFF;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: solid;
	border-top-color: #000;
	border-right-color: #000;
	border-bottom-color: #000;
	border-left-color: #000;
        text-align: center;
}
.blankcell.borderright {
	border-right-style: solid;
}
.blankcell.borderbottom {
	border-bottom-style: solid;
}
.blankcell.borderbottomright {
	border-right-style: solid;
	border-bottom-style: solid;
}
.blankcell.borderall {
	border: 1px solid #000;
}
.blankcell.alignleft {
        text-align: initial;
	padding-left: 4px;
}
.blankcell.alignleft.borderright {
	border-right-style: solid;
}
.blankcell.alignleft.borderbottom {
	border-bottom-style: solid;
}
.blankcell.alignleft.borderbottomright.nottop {
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
}

.spacer {
        user-select:none;
	height: 8px;
}
.spacer.vartical {
	height: initial;
	width: 8px;
}

.misc {
        user-select:none;
}


input[type=checkbox] {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    position: relative;
    right: 0;
    bottom: 0;
    left: 0;
    height: 20px;
    width: 20px;
    vertical-align: -0.8rem;
    transition:all .15s ease-out 0s;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    margin: .4rem;
    outline: none;
    border-radius: 10%;
}
/* Checkbox */
input[type=checkbox]:before,input[type=checkbox]:after {
    position: absolute;
    content: "";
    background: #fff;
    transition: all .2s ease-in-out;
}
input[type=checkbox]:before {
    left: 2px;
    top: 6px;
    width: 0;
    height: 2px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}
input[type=checkbox]:after {
    right: 9px;
    bottom: 3px;
    width: 2px;
    height: 0;
    transform: rotate(40deg);
    -webkit-transform: rotate(40deg);
    -moz-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    -o-transform: rotate(40deg);
    transition-delay: .2s;
}
input[type=checkbox]:checked:before {
    left: 1px;
    top: 10px;
    width: 6px;
    height: 2px;
}
input[type=checkbox]:checked:after {
    right: 5px;
    bottom: 1px;
    width: 2px;
    height: 14px;
}
input[type=checkbox]:indeterminate:before,input[type=checkbox]:indeterminate:after {
    width: 7px;
    height: 2px;
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
}
input[type=checkbox]:indeterminate:before {
    left: 1px;
    top: 7px;
}
input[type=checkbox]:indeterminate:after {
    right: 1px;
    bottom: 7px;
}
input[type=checkbox] {
    border: 2px solid #888;
}
input[type=checkbox]:checked,input[type=checkbox]:indeterminate {
    background: #888;
}
