/********************************************************************************
*                               OPERATIONS PANEL                                * 
********************************************************************************/
.mathContainer {
  display: none;
  background: #e1e2df;
  border: 1px solid #8d8d8d;
  border-right: none;
  -webkit-border-radius: 5px 0 0 5px;
  -moz-border-radius: 5px 0 0 5px;
  border-radius: 5px 0 0 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  /*-webkit-box-shadow: 0px 0px 3px #333; 
  -moz-box-shadow: 0px 0px 3px #333;
  box-shadow: 0px 0px 3px #333; */
  font: normal 12px/16px Arial, sans-serif;
  margin: 0 0 0 5px;
  position: absolute;
  width: 80px;
  z-index: 9;
  right: 0;
  /*  MATH HEADER & FOOTER  */
  /*  MATH CONTENT  */
}
.mathContainer .mathHeader {
  /*border-bottom: 1px solid #b5b5b5;*/
  padding: 5px;
  text-indent: -9999px;
}
.mathContainer .mathHeader h3 {
  color: #666;
  font-size: 12px;
  font-weight: normal;
  line-height: 8px;
  margin: 0;
  padding: 0;
}
.mathContainer .mathHeader.math {
  background: url(/static/img/pads/mathpad/mathPadLogo.png) no-repeat 7px 7px;
}
.mathContainer .mathHeader.calc {
  background: url(/static/img/pads/mathpad/calcPadLogo.png) no-repeat 7px 7px;
  background-size: 63px;
}
.mathContainer .mathHeader.phys {
  background: url(/static/img/pads/mathpad/physPadLogo.png) no-repeat 7px 7px;
  background-size: 63px;
}
.mathContainer .mathHeader.phys h3 {
  line-height: 12px;
}
.mathContainer .mathFooter {
  border: none;
  padding: 0 5px 6px 7px;
}
.mathContainer .mathFooter a {
  background: url(/static/img/pads/mathpad/helpIcon.png) no-repeat left;
  font-size: 10px;
  color: #666666;
  padding: 5px 4px 5px 20px;
  text-decoration: underline;
}
.mathContainer .mathContent {
  padding: 5px 0px 5px 5px;
}
.mathContainer .mathContent .mathPanel {
  margin: 1px 0 0;
  z-index: 50;
  position: relative;
  height: 25px;
}
.mathContainer .mathContent .mathPanel .mathPanelTitle {
  /*background:#b5b5b5;*/
  /*new css gradient*/
  background: #d2d2d2;
  /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSI4NSUiIHN0b3AtY29sb3I9IiNkMmQyZDIiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjN2M3YzdkIiBzdG9wLW9wYWNpdHk9IjEiLz4KICA8L2xpbmVhckdyYWRpZW50PgogIDxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+Cjwvc3ZnPg==);
  background: -moz-linear-gradient(top, #d2d2d2 85%, #7c7c7d 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(85%, #d2d2d2), color-stop(100%, #7c7c7d));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #d2d2d2 85%, #7c7c7d 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #d2d2d2 85%, #7c7c7d 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #d2d2d2 85%, #7c7c7d 100%);
  /* IE10+ */
  background: linear-gradient(top, #d2d2d2 85%, #7c7c7d 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d2d2d2', endColorstr='#7c7c7d',GradientType=0 );
  /* IE6-8 */
  position: absolute;
  display: block;
  text-decoration: none;
  text-transform: capitalize;
  color: #4f4f4f;
  font-size: 13px;
  line-height: 21px;
  /*text-transform:uppercase;*/
  text-align: left;
  width: 69px;
  padding: 0px 0px 0px 5px;
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
  border: 1px solid #666666;
  border-right: none;
}
.mathContainer .mathContent .mathPanel .activePanel {
  margin-left: -6px;
  border-left: none;
  padding-left: 12px;
  background: #d2d2d2;
  z-index: 49;
  -webkit-border-top-left-radius: 0px;
  -webkit-border-bottom-left-radius: 0px;
  -moz-border-radius-topleft: 0px;
  -moz-border-radius-bottomleft: 0px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
.mathContainer .mathContent .mathPanel .buttonPanel {
  display: none;
  position: absolute;
  right: 80px;
  top: 0;
  z-index: 48;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid #666666;
  background: #d2d2d2;
  /* Covers square root (#sqrt), Sub/Super script (#supSub), and nth root (#nRoot) buttons */
}
.mathContainer .mathContent .mathPanel .buttonPanel .singleRow {
  /*background:#B5B5B5;*/
  clear: left;
  overflow: hidden;
  width: 70px;
  height: auto;
  padding: 0 9px 9px 9px;
  position: relative;
}
.mathContainer .mathContent .mathPanel .buttonPanel .singleRow.singleGreek {
  width: 82px;
  padding: 0 5px;
  height: auto;
}
.mathContainer .mathContent .mathPanel .buttonPanel .singleRow:nth-of-type(1) {
  padding-top: 9px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a.operation,
.mathContainer .mathContent .mathPanel .buttonPanel a.singleRowArrow {
  border: solid 1px #4d4d4d;
  color: #484848;
  text-decoration: none;
  /*text-shadow: 0 1px 0 #fafafa;*/
  text-align: center;
  line-height: 22px;
  height: 26px;
  font-size: 22px;
  display: block;
  float: left;
  margin: 0 0 5px 13px;
  padding: 0;
  position: relative;
  width: 26px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2Q5ZDlkNiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
  background: -moz-linear-gradient(-45deg, white 0%, #d9d9d6 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, white), color-stop(100%, #d9d9d6));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(-45deg, white 0%, #d9d9d6 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(-45deg, white 0%, #d9d9d6 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(-45deg, white 0%, #d9d9d6 100%);
  /* IE10+ */
  background: linear-gradient(-45deg, white 0%, #d9d9d6 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#d9d9d6',GradientType=1 );
  /* IE6-8 fallback on horizontal gradient */
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-transition: border-color .218s;
  -moz-transition: border .218s;
  -o-transition: border-color .218s;
  transition: border-color .218s;
  font-family: Symbola, "Times New Roman", serif;
}
.mathContainer .mathContent .mathPanel .buttonPanel a.operation:hover,
.mathContainer .mathContent .mathPanel .buttonPanel .singleRowArrow:hover {
  border: solid 1px #9f9f9f;
  background: #456b90;
  /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzQ1NmI5MCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMxMzQyNzEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, #456b90 0%, #134271 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #456b90), color-stop(100%, #134271));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #456b90 0%, #134271 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #456b90 0%, #134271 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #456b90 0%, #134271 100%);
  /* IE10+ */
  background: linear-gradient(top, #456b90 0%, #134271 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#456b90', endColorstr='#134271',GradientType=0 );
  /* IE6-8 */
  color: #FFF;
}
.mathContainer .mathContent .mathPanel .buttonPanel a.operation:active {
  border: solid 1px #b5b5b5;
  background: #d0d0d0;
  background: -webkit-gradient(linear, left top, left bottom, from(#bbbbbb), color-stop(0.15, #dddddd), to(#d8d8d8));
  background: -webkit-linear-gradient(top, #bbbbbb, #dddddd 15%, #d8d8d8);
  background: -moz-linear-gradient(top, #bbbbbb, #dddddd 15%, #d8d8d8);
}
.mathContainer .mathContent .mathPanel .buttonPanel a.operation img {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -10px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a.operation:nth-of-type(1) {
  margin: 0;
}
.mathContainer .mathContent .mathPanel .buttonPanel .singleGreek a {
  margin: -1px 0 0 -1px;
}
.mathContainer .mathContent .mathPanel .buttonPanel .singleGreek a:nth-of-type(1) {
  margin: -1px 0 0 0;
}
.mathContainer .mathContent .mathPanel .buttonPanel a.singleRowArrow {
  width: 80px;
  height: 20px;
  cursor: pointer;
  display: block;
  position: relative;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-transition: border-color .218s;
  -moz-transition: border .218s;
  -o-transition: border-color .218s;
  transition: border-color .218s;
}
.mathContainer .mathContent .mathPanel .buttonPanel a.singleRowArrow span {
  /*color:#4f4f4f;*/
  display: block;
  width: 8px;
  position: absolute;
  left: 45%;
  top: 0;
  height: 8px;
  margin-top: 6px;
  background: url("/static/img/pads/mathpad/padArrows.png") no-repeat scroll 0 0 transparent;
}
.mathContainer .mathContent .mathPanel .buttonPanel a.singleRowArrow .prevPage {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
}
.mathContainer .mathContent .mathPanel .buttonPanel a.singleRowArrow:hover span {
  background-position: 0 -8px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a.operation.graphic span {
  display: block;
  position: absolute;
  top: 3px;
  left: 3px;
  background-image: url("/static/img/pads/mathpad/padsButtonSprites.png");
  width: 20px;
  height: 20px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#bold.operation span {
  background-position: -74px 0px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#bold.operation:hover span {
  background-position: -74px -20px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#plus.operation, .mathContainer .mathContent .mathPanel .buttonPanel a#divide.operation {
  font-family: "Times New Roman", Symbola, serif;
  line-height: 28px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#multiply.operation, .mathContainer .mathContent .mathPanel .buttonPanel a#minus.operation {
  font-family: Arial;
  line-height: 24px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#factorial.operation {
  line-height: 30px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#frac.operation {
  font-size: 14px;
  line-height: 13px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#frac.operation span.numerator {
  padding: 0 0.4em;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#frac.operation span.denominator {
  padding: 0;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#iUnitVec.operation {
  line-height: 28px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#jUnitVec.operation {
  line-height: 22px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#kUnitVec.operation {
  line-height: 27px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#vectorBracket.operation span {
  background-position: -98px 0px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#vectorBracket.operation:hover span {
  background-position: -98px -21px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#vector.operation span {
  background-position: -122px 0px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#vector.operation:hover span {
  background-position: -122px -21px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#hat.operation span {
  background-position: -146px 0px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#hat.operation:hover span {
  background-position: -146px -21px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#bar.operation span {
  background-position: -314px 0px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#bar.operation:hover span {
  background-position: -314px -21px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#sqrt.operation span {
  background-position: -26px 0px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#sqrt.operation:hover span {
  background-position: -26px -21px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#sup.operation {
  font-size: 24px;
  line-height: 12px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#sup.operation sup {
  font-size: 70%;
  vertical-align: .5em;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#sub.operation {
  font-size: 24px;
  line-height: 24px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#sub.operation sub {
  font-size: 70%;
  vertical-align: -0.3em;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#supSub.operation span {
  background-position: -2px 0px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#supSub.operation:hover span {
  background-position: -2px -20px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#nRoot.operation span {
  background-position: -50px 0px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#nRoot.operation:hover span {
  background-position: -50px -21px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#degree.operation {
  line-height: 28px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#exp.operation {
  font-size: 16px;
  line-height: 18px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#ln.operation {
  font-size: 13px;
  line-height: 28px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#ln.operation span.non-italicized-function {
  padding: 0px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#powerOfTen.operation {
  font-size: 13px;
  line-height: 23px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#generalLogarithm.operation {
  font-size: 12px;
  line-height: 23px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#log.operation {
  font-size: 13px;
  line-height: 28px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#log.operation span.non-italicized-function {
  padding: 0px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#pi.operation {
  font-size: 18px;
  line-height: 23px;
  font-family: "Times New Roman", Symbola, serif;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#imaginary.operation {
  font-size: 18px;
  line-height: 23px;
  font-style: italic;
  font-family: "Times New Roman", Symbola, serif;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#parallel.operation {
  line-height: 28px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#hbar.operation, .mathContainer .mathContent .mathPanel .buttonPanel a#scriptL.operation, .mathContainer .mathContent .mathPanel .buttonPanel a#scriptE.operation {
  line-height: 31px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#perpendicular.operation {
  line-height: 30px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#thetaL.operation {
  font-size: 18px;
  line-height: 28px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#lessThan.operation, .mathContainer .mathContent .mathPanel .buttonPanel a#greaterThan.operation, .mathContainer .mathContent .mathPanel .buttonPanel a#lessOrEqual.operation, .mathContainer .mathContent .mathPanel .buttonPanel a#greaterOrEqual.operation, .mathContainer .mathContent .mathPanel .buttonPanel a#equals.operation {
  font-size: 20px;
  line-height: 26px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#infinity {
  font-size: 20px;
  line-height: 23px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#parenthesis.operation, .mathContainer .mathContent .mathPanel .buttonPanel a#bracket.operation, .mathContainer .mathContent .mathPanel .buttonPanel a#brace.operation, .mathContainer .mathContent .mathPanel .buttonPanel a#abs.operation, .mathContainer .mathContent .mathPanel .buttonPanel a#lopenint.operation, .mathContainer .mathContent .mathPanel .buttonPanel a#ropenint.operation {
  font-size: 18px;
  line-height: 28px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#empty.operation, .mathContainer .mathContent .mathPanel .buttonPanel a#union.operation, .mathContainer .mathContent .mathPanel .buttonPanel a#intersect.operation {
  font-size: 20px;
  line-height: 24px;
  font-family: "Times New Roman", Symbola, serif;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#undefined.operation, .mathContainer .mathContent .mathPanel .buttonPanel a#noSolution.operation, .mathContainer .mathContent .mathPanel .buttonPanel a#doesNotExist.operation {
  font-size: 10px;
  line-height: 10px;
  padding-top: 4px;
  height: 22px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#doesNotExist.operation {
  line-height: 18px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#sin.operation, .mathContainer .mathContent .mathPanel .buttonPanel a#cos.operation, .mathContainer .mathContent .mathPanel .buttonPanel a#tan.operation, .mathContainer .mathContent .mathPanel .buttonPanel a#sec.operation, .mathContainer .mathContent .mathPanel .buttonPanel a#csc.operation, .mathContainer .mathContent .mathPanel .buttonPanel a#cot.operation,
.mathContainer .mathContent .mathPanel .buttonPanel a#sinh.operation, .mathContainer .mathContent .mathPanel .buttonPanel a#cosh.operation, .mathContainer .mathContent .mathPanel .buttonPanel a#tanh.operation, .mathContainer .mathContent .mathPanel .buttonPanel a#sech.operation, .mathContainer .mathContent .mathPanel .buttonPanel a#csch.operation, .mathContainer .mathContent .mathPanel .buttonPanel a#coth.operation {
  font-family: "Arial";
  font-size: 11px;
  line-height: 26px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#iSin.operation, .mathContainer .mathContent .mathPanel .buttonPanel a#iCos.operation, .mathContainer .mathContent .mathPanel .buttonPanel a#iTan.operation, .mathContainer .mathContent .mathPanel .buttonPanel a#iSec.operation, .mathContainer .mathContent .mathPanel .buttonPanel a#iCsc.operation, .mathContainer .mathContent .mathPanel .buttonPanel a#iCot.operation {
  font-family: "Arial";
  font-size: 11px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#iSinh.operation span {
  background-position: -170px 0px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#iSinh.operation:hover span {
  background-position: -170px -21px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#iCosh.operation span {
  background-position: -194px 0px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#iCosh.operation:hover span {
  background-position: -194px -21px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#iTanh.operation span {
  background-position: -218px 0px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#iTanh.operation:hover span {
  background-position: -218px -21px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#iSech.operation span {
  background-position: -242px 0px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#iSech.operation:hover span {
  background-position: -242px -21px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#iCsch.operation span {
  background-position: -266px 0px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#iCsch.operation:hover span {
  background-position: -266px -21px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#iCoth.operation span {
  background-position: -290px 0px;
}
.mathContainer .mathContent .mathPanel .buttonPanel a#iCoth.operation:hover span {
  background-position: -290px -21px;
}
.mathContainer .mathContent .mathPanel .firstPage a.singleRowArrow {
  margin: 5px 5px 5px 5px;
}
.mathContainer .mathContent .mathPanel .lastPage a.singleRowArrow {
  margin: 5px 5px 5px 5px;
}
.mathContainer .mathContent .mathPanel .firstPage .singleRow.singleGreek:nth-of-type(1) {
  padding-top: 5px;
}
.mathContainer .mathContent .mathPanel .lastPage .singleRow.singleGreek:nth-of-type(1) {
  padding-top: 1px;
}
.mathContainer .mathContent .mathPanel .lastPage .singleRow.singleGreek:last-of-type {
  padding-bottom: 5px;
}
.mathContainer .mathContent .mathPanel .singleGreek a.operation {
  font-size: 18px;
  font-family: "Times New Roman",Symbola,serif;
}
.mathContainer .mathContent .mathPanel .lastPage .singleGreek a.operation {
  line-height: 28px;
}
.mathContainer .mathContent .mathPanel .firstPage .singleGreek a.operation {
  font-style: italic;
  line-height: 23px;
}
.mathContainer .mathContent #trig .firstPage a.singleRowArrow {
  margin-top: 0;
}
.mathContainer .mathContent #trig .lastPage a.singleRowArrow {
  margin-bottom: 0;
}
.mathContainer .mathContent #trig a.operation sup {
  font-size: 60%;
}

/********************************************************************************
*                                   INPUT FORMULA                               * 
********************************************************************************/
.mathquill-textbox {
  width: 100%;
}

.mathquill-embedded-latex.disabled {
  background: #cbcbcb;
  padding: 2px;
  opacity: 1;
  /*LSTAB-532*/
}

.mathquill-rendered-math.mathquill-editable-focused {
  font-size: 400%;
}

.mathquill-editable, .mathquill-embedded-latex {
  min-width: 100px;
  min-height: 30px;
}

div.mathquill-scroll-wrapper {
  max-width: 580px;
  width: intrinsic;
  width: -moz-fit-content;
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid gray;
}

span.mathquill-editable span.textarea {
  position: relative;
}

.latex-source {
  display: none;
}

/*REMOVE BLUE BLINKING CURSOR - iPad*/
span.mathquill-editable span.textarea textarea {
  position: absolute;
  width: 0;
  height: 0;
}

/* iPad has a bug where if they input is too close to the bottom of the screen, the keyboard will disappear when the textarea is refocused
This is basically inserting more space with a pseudo element so there is enough room.  */
#iPadSpacer:after {
  display: block;
  height: 475px;
  content: ' ';
}
