
/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjNDAzYzNmIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDBMNCA0Wk00IDBMMCA0WiIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2U9IiMxZTI5MmQiPjwvcGF0aD4KPC9zdmc+");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjOWU5ZTllIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDVMNSAwWk02IDRMNCA2Wk0tMSAxTDEgLTFaIiBzdHJva2U9IiM4ODgiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3goQDSYgDiGofgAAAslJREFUOMvtlM9LFGEYx7/vvOPM6ywuuyPFihWFBUsdNnA6KLIh+QPx4KWExULdHQ/9A9EfUodYmATDYg/iRewQzklFWxcEBcGgEplDkDtI6sw4PzrIbrOuedBb9MALD7zv+3m+z4/3Bf7bZS2bzQIAcrmcMDExcTeXy10DAFVVAQDksgFUVZ1ljD3yfd+0LOuFpmnvVVW9GHhkZAQcxwkNDQ2FSCQyRMgJxnVdy7KstKZpn7nwha6urqqfTqfPBAJAuVymlNLXoigOhfd5nmeiKL5TVTV+lmIKwAOA7u5u6Lped2BsbOwjY6yf4zgQQkAIAcedaPR9H67r3uYBQFEUFItFtLe332lpaVkUBOHK3t5eRtf1DwAwODiIubk5DA8PM8bYW1EU+wEgCIJqsCAIQAiB7/u253k2BQDDMJBKpa4mEon5eDx+UxAESJL0uK2t7XosFlvSdf0QAEmlUnlRFJ9Waho2Qghc1/U9z3uWz+eX+Wr+lL6SZfleEAQIggA8z6OpqSknimIvYyybSCReMsZ6TislhCAIAti2Dc/zejVNWwCAavN8339j27YbTg0AGGM3WltbP4WhlRWq6Q/btrs1TVsYHx+vNgqKoqBUKn2NRqPFxsbGJzzP05puUlpt0ukyOI6z7zjOwNTU1OLo6CgmJyf/gA3DgKIoWF1d/cIY24/FYgOU0pp0z/Ityzo8Pj5OTk9PbwHA+vp6zWghDC+VSiuRSOQgGo32UErJ38CO42wdHR09LBQK3zKZDDY2NupmFmF4R0cHVlZWlmRZ/iVJUn9FeWWcCCE4ODjYtG27Z2Zm5juAOmgdGAB2d3cBADs7O8uSJN2SZfl+WKlpmpumaT6Yn58vn/fs6XmbhmHMNjc3tzDGFI7jYJrm5vb29sDa2trPC/9aiqJUy5pOp4f6+vqeJ5PJBAB0dnZe/t8NBajx/z37Df5OGX8d13xzAAAAAElFTkSuQmCC);
  }
}
/* Fancy CSS END */



.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url("fonts/font_0000_3d6b25c3a583.woff")format("woff");}.ff1{font-family:ff1;line-height:695.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url("fonts/font_0001_4eb3e97f36a0.woff")format("woff");}.ff2{font-family:ff2;line-height:695.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url("fonts/font_0002_cd659a0f8096.woff")format("woff");}.ff3{font-family:ff3;line-height:921.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url("fonts/font_0003_a7a57c061cea.woff")format("woff");}.ff4{font-family:ff4;line-height:921.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url("fonts/font_0004_e9b6af7e203b.woff")format("woff");}.ff5{font-family:ff5;line-height:1065.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url("fonts/font_0005_9ada3b88d355.woff")format("woff");}.ff6{font-family:ff6;line-height:1065.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url("fonts/font_0006_0bb1f947ef1e.woff")format("woff");}.ff7{font-family:ff7;line-height:696.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url("fonts/font_0007_876283ce57ea.woff")format("woff");}.ff8{font-family:ff8;line-height:696.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url("fonts/font_0008_bb52ceaf93b1.woff")format("woff");}.ff9{font-family:ff9;line-height:0.937000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url("fonts/font_0009_b71147dfc1f3.woff")format("woff");}.ffa{font-family:ffa;line-height:0.821777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.000000,0.166667,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.166667,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.166667,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.000000,-0.166667,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.166667,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.166667,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-1572.480000px;}
.v5{vertical-align:-1210.980000px;}
.v4{vertical-align:-144.000000px;}
.v1{vertical-align:-129.600000px;}
.v6{vertical-align:-108.000000px;}
.v3{vertical-align:-72.000000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:307.914000px;}
.v8{vertical-align:740.904000px;}
.v9{vertical-align:2359.350000px;}
.ls43{letter-spacing:-9.720000px;}
.ls44{letter-spacing:-0.300000px;}
.ls42{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.300000px;}
.ls27{letter-spacing:0.600000px;}
.ls36{letter-spacing:0.900000px;}
.ls8{letter-spacing:1.074600px;}
.lsc{letter-spacing:1.075680px;}
.lsa{letter-spacing:1.076760px;}
.ls3{letter-spacing:1.077840px;}
.ls6{letter-spacing:1.080000px;}
.ls7{letter-spacing:1.081080px;}
.ls4{letter-spacing:1.082160px;}
.ls9{letter-spacing:1.083240px;}
.lse{letter-spacing:1.084320px;}
.ls3b{letter-spacing:1.200000px;}
.ls2{letter-spacing:1.260000px;}
.ls23{letter-spacing:1.482000px;}
.ls19{letter-spacing:1.494000px;}
.ls12{letter-spacing:1.499400px;}
.ls10{letter-spacing:1.500000px;}
.ls2a{letter-spacing:1.506000px;}
.ls15{letter-spacing:1.518000px;}
.ls38{letter-spacing:1.800000px;}
.ls40{letter-spacing:2.400000px;}
.ls16{letter-spacing:2.700000px;}
.ls39{letter-spacing:2.982000px;}
.ls37{letter-spacing:3.000000px;}
.ls25{letter-spacing:8.820000px;}
.ls26{letter-spacing:11.820000px;}
.ls3f{letter-spacing:13.680000px;}
.ls1f{letter-spacing:14.700000px;}
.ls5{letter-spacing:15.979680px;}
.ls29{letter-spacing:16.140000px;}
.ls2d{letter-spacing:16.320000px;}
.ls1c{letter-spacing:16.560000px;}
.ls1d{letter-spacing:16.800000px;}
.ls17{letter-spacing:17.160000px;}
.ls33{letter-spacing:17.280000px;}
.ls1e{letter-spacing:17.640000px;}
.ls28{letter-spacing:17.820000px;}
.ls3e{letter-spacing:18.420000px;}
.ls1b{letter-spacing:18.900000px;}
.ls22{letter-spacing:19.680000px;}
.ls21{letter-spacing:22.200000px;}
.ls3a{letter-spacing:22.680000px;}
.ls18{letter-spacing:23.160000px;}
.ls34{letter-spacing:23.340000px;}
.ls20{letter-spacing:23.700000px;}
.ls35{letter-spacing:24.720000px;}
.ls2c{letter-spacing:25.260000px;}
.ls2b{letter-spacing:25.320000px;}
.ls30{letter-spacing:27.180000px;}
.ls31{letter-spacing:27.186000px;}
.ls24{letter-spacing:27.480000px;}
.ls1{letter-spacing:27.675000px;}
.ls0{letter-spacing:27.678690px;}
.ls41{letter-spacing:27.679500px;}
.ls2f{letter-spacing:28.080000px;}
.ls14{letter-spacing:28.140000px;}
.ls13{letter-spacing:29.340000px;}
.ls2e{letter-spacing:29.880000px;}
.ls1a{letter-spacing:30.300000px;}
.ls32{letter-spacing:31.020000px;}
.lsd{letter-spacing:32.182920px;}
.lsf{letter-spacing:32.184000px;}
.lsb{letter-spacing:32.185080px;}
.ls3c{letter-spacing:35.760000px;}
.ls3d{letter-spacing:42.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-212.175000px;}
.ws10{word-spacing:-184.500000px;}
.ws1{word-spacing:-127.260000px;}
.ws2{word-spacing:-126.000000px;}
.wsc{word-spacing:-121.200000px;}
.wsd{word-spacing:-120.000000px;}
.ws5{word-spacing:-109.080000px;}
.ws4{word-spacing:-108.000000px;}
.wse{word-spacing:-98.400000px;}
.ws3{word-spacing:-98.280000px;}
.wsf{word-spacing:-96.000000px;}
.wsb{word-spacing:-63.000000px;}
.ws8{word-spacing:-62.700000px;}
.ws7{word-spacing:-61.500000px;}
.ws9{word-spacing:-60.300000px;}
.ws6{word-spacing:-60.000000px;}
.wsa{word-spacing:-59.700000px;}
.ws12{word-spacing:0.000000px;}
.ws11{word-spacing:23.904000px;}
._b{margin-left:-1946.554920px;}
._20{margin-left:-1765.917330px;}
._1a{margin-left:-1761.472380px;}
._12{margin-left:-1760.032380px;}
._29{margin-left:-1757.707620px;}
._2a{margin-left:-1751.769720px;}
._27{margin-left:-1727.340000px;}
._22{margin-left:-889.740000px;}
._21{margin-left:-802.069110px;}
._2c{margin-left:-764.352120px;}
._24{margin-left:-670.319400px;}
._c{margin-left:-488.916000px;}
._1f{margin-left:-398.847930px;}
._23{margin-left:-392.232480px;}
._2b{margin-left:-332.340000px;}
._4{margin-left:-28.105155px;}
._25{margin-left:-18.000000px;}
._d{margin-left:-16.200000px;}
._2{margin-left:-7.929810px;}
._1c{margin-left:-6.024210px;}
._15{margin-left:-4.500000px;}
._0{margin-left:-2.586690px;}
._8{margin-left:-1.260000px;}
._6{width:1.260000px;}
._3{width:3.007620px;}
._9{width:10.800000px;}
._19{width:13.454310px;}
._1d{width:14.567520px;}
._1e{width:16.032480px;}
._14{width:17.280000px;}
._17{width:18.712380px;}
._18{width:19.867620px;}
._11{width:21.907620px;}
._1b{width:23.160000px;}
._16{width:25.164210px;}
._13{width:26.700000px;}
._10{width:27.772380px;}
._f{width:29.340000px;}
._e{width:31.104000px;}
._a{width:32.901840px;}
._26{width:34.560000px;}
._5{width:36.288000px;}
._7{width:37.548000px;}
._28{width:40.500000px;}
._1{width:82.471500px;}
._2d{width:111.016620px;}
._2e{width:1341.935280px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:48.000000px;}
.fs3{font-size:60.000000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:96.000000px;}
.fs2{font-size:108.000000px;}
.fs4{font-size:120.000000px;}
.fs1{font-size:126.000000px;}
.fs0{font-size:184.500000px;}
.y0{bottom:0.000000px;}
.y2{bottom:21.259500px;}
.y8{bottom:35.998500px;}
.y1{bottom:48.754800px;}
.y9{bottom:74.166600px;}
.y4{bottom:320.208000px;}
.y3{bottom:385.008000px;}
.y5{bottom:456.856500px;}
.y6{bottom:797.511000px;}
.y7{bottom:811.063500px;}
.ya{bottom:976.924500px;}
.h9{height:30.398438px;}
.h8{height:50.832000px;}
.h2{height:892.914000px;}
.h7{height:918.426150px;}
.h0{height:990.424530px;}
.h1{height:990.750000px;}
.h5{height:74736.000000px;}
.h4{height:87192.000000px;}
.h6{height:97532.952000px;}
.h3{height:126567.000000px;}
.w2{width:629.292000px;}
.w3{width:1322.362650px;}
.w1{width:1394.250000px;}
.w0{width:1394.362515px;}
.x0{left:0.000000px;}
.x7{left:36.000000px;}
.x4{left:48.755100px;}
.x9{left:53.255850px;}
.x2{left:56.281500px;}
.x5{left:85.039500px;}
.x3{left:110.197350px;}
.x6{left:565.567500px;}
.x8{left:665.267250px;}
.x1{left:716.692800px;}
@media print{
.v2{vertical-align:-1397.760000pt;}
.v5{vertical-align:-1076.426667pt;}
.v4{vertical-align:-128.000000pt;}
.v1{vertical-align:-115.200000pt;}
.v6{vertical-align:-96.000000pt;}
.v3{vertical-align:-64.000000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:273.701333pt;}
.v8{vertical-align:658.581333pt;}
.v9{vertical-align:2097.200000pt;}
.ls43{letter-spacing:-8.640000pt;}
.ls44{letter-spacing:-0.266667pt;}
.ls42{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.266667pt;}
.ls27{letter-spacing:0.533333pt;}
.ls36{letter-spacing:0.800000pt;}
.ls8{letter-spacing:0.955200pt;}
.lsc{letter-spacing:0.956160pt;}
.lsa{letter-spacing:0.957120pt;}
.ls3{letter-spacing:0.958080pt;}
.ls6{letter-spacing:0.960000pt;}
.ls7{letter-spacing:0.960960pt;}
.ls4{letter-spacing:0.961920pt;}
.ls9{letter-spacing:0.962880pt;}
.lse{letter-spacing:0.963840pt;}
.ls3b{letter-spacing:1.066667pt;}
.ls2{letter-spacing:1.120000pt;}
.ls23{letter-spacing:1.317333pt;}
.ls19{letter-spacing:1.328000pt;}
.ls12{letter-spacing:1.332800pt;}
.ls10{letter-spacing:1.333333pt;}
.ls2a{letter-spacing:1.338667pt;}
.ls15{letter-spacing:1.349333pt;}
.ls38{letter-spacing:1.600000pt;}
.ls40{letter-spacing:2.133333pt;}
.ls16{letter-spacing:2.400000pt;}
.ls39{letter-spacing:2.650667pt;}
.ls37{letter-spacing:2.666667pt;}
.ls25{letter-spacing:7.840000pt;}
.ls26{letter-spacing:10.506667pt;}
.ls3f{letter-spacing:12.160000pt;}
.ls1f{letter-spacing:13.066667pt;}
.ls5{letter-spacing:14.204160pt;}
.ls29{letter-spacing:14.346667pt;}
.ls2d{letter-spacing:14.506667pt;}
.ls1c{letter-spacing:14.720000pt;}
.ls1d{letter-spacing:14.933333pt;}
.ls17{letter-spacing:15.253333pt;}
.ls33{letter-spacing:15.360000pt;}
.ls1e{letter-spacing:15.680000pt;}
.ls28{letter-spacing:15.840000pt;}
.ls3e{letter-spacing:16.373333pt;}
.ls1b{letter-spacing:16.800000pt;}
.ls22{letter-spacing:17.493333pt;}
.ls21{letter-spacing:19.733333pt;}
.ls3a{letter-spacing:20.160000pt;}
.ls18{letter-spacing:20.586667pt;}
.ls34{letter-spacing:20.746667pt;}
.ls20{letter-spacing:21.066667pt;}
.ls35{letter-spacing:21.973333pt;}
.ls2c{letter-spacing:22.453333pt;}
.ls2b{letter-spacing:22.506667pt;}
.ls30{letter-spacing:24.160000pt;}
.ls31{letter-spacing:24.165333pt;}
.ls24{letter-spacing:24.426667pt;}
.ls1{letter-spacing:24.600000pt;}
.ls0{letter-spacing:24.603280pt;}
.ls41{letter-spacing:24.604000pt;}
.ls2f{letter-spacing:24.960000pt;}
.ls14{letter-spacing:25.013333pt;}
.ls13{letter-spacing:26.080000pt;}
.ls2e{letter-spacing:26.560000pt;}
.ls1a{letter-spacing:26.933333pt;}
.ls32{letter-spacing:27.573333pt;}
.lsd{letter-spacing:28.607040pt;}
.lsf{letter-spacing:28.608000pt;}
.lsb{letter-spacing:28.608960pt;}
.ls3c{letter-spacing:31.786667pt;}
.ls3d{letter-spacing:37.333333pt;}
.ws0{word-spacing:-188.600000pt;}
.ws10{word-spacing:-164.000000pt;}
.ws1{word-spacing:-113.120000pt;}
.ws2{word-spacing:-112.000000pt;}
.wsc{word-spacing:-107.733333pt;}
.wsd{word-spacing:-106.666667pt;}
.ws5{word-spacing:-96.960000pt;}
.ws4{word-spacing:-96.000000pt;}
.wse{word-spacing:-87.466667pt;}
.ws3{word-spacing:-87.360000pt;}
.wsf{word-spacing:-85.333333pt;}
.wsb{word-spacing:-56.000000pt;}
.ws8{word-spacing:-55.733333pt;}
.ws7{word-spacing:-54.666667pt;}
.ws9{word-spacing:-53.600000pt;}
.ws6{word-spacing:-53.333333pt;}
.wsa{word-spacing:-53.066667pt;}
.ws12{word-spacing:0.000000pt;}
.ws11{word-spacing:21.248000pt;}
._b{margin-left:-1730.271040pt;}
._20{margin-left:-1569.704293pt;}
._1a{margin-left:-1565.753227pt;}
._12{margin-left:-1564.473227pt;}
._29{margin-left:-1562.406773pt;}
._2a{margin-left:-1557.128640pt;}
._27{margin-left:-1535.413333pt;}
._22{margin-left:-790.880000pt;}
._21{margin-left:-712.950320pt;}
._2c{margin-left:-679.424107pt;}
._24{margin-left:-595.839467pt;}
._c{margin-left:-434.592000pt;}
._1f{margin-left:-354.531493pt;}
._23{margin-left:-348.651093pt;}
._2b{margin-left:-295.413333pt;}
._4{margin-left:-24.982360pt;}
._25{margin-left:-16.000000pt;}
._d{margin-left:-14.400000pt;}
._2{margin-left:-7.048720pt;}
._1c{margin-left:-5.354853pt;}
._15{margin-left:-4.000000pt;}
._0{margin-left:-2.299280pt;}
._8{margin-left:-1.120000pt;}
._6{width:1.120000pt;}
._3{width:2.673440pt;}
._9{width:9.600000pt;}
._19{width:11.959387pt;}
._1d{width:12.948907pt;}
._1e{width:14.251093pt;}
._14{width:15.360000pt;}
._17{width:16.633227pt;}
._18{width:17.660107pt;}
._11{width:19.473440pt;}
._1b{width:20.586667pt;}
._16{width:22.368187pt;}
._13{width:23.733333pt;}
._10{width:24.686560pt;}
._f{width:26.080000pt;}
._e{width:27.648000pt;}
._a{width:29.246080pt;}
._26{width:30.720000pt;}
._5{width:32.256000pt;}
._7{width:33.376000pt;}
._28{width:36.000000pt;}
._1{width:73.308000pt;}
._2d{width:98.681440pt;}
._2e{width:1192.831360pt;}
.fs7{font-size:42.666667pt;}
.fs3{font-size:53.333333pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:85.333333pt;}
.fs2{font-size:96.000000pt;}
.fs4{font-size:106.666667pt;}
.fs1{font-size:112.000000pt;}
.fs0{font-size:164.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:18.897333pt;}
.y8{bottom:31.998667pt;}
.y1{bottom:43.337600pt;}
.y9{bottom:65.925867pt;}
.y4{bottom:284.629333pt;}
.y3{bottom:342.229333pt;}
.y5{bottom:406.094667pt;}
.y6{bottom:708.898667pt;}
.y7{bottom:720.945333pt;}
.ya{bottom:868.377333pt;}
.h9{height:27.020833pt;}
.h8{height:45.184000pt;}
.h2{height:793.701333pt;}
.h7{height:816.378800pt;}
.h0{height:880.377360pt;}
.h1{height:880.666667pt;}
.h5{height:66432.000000pt;}
.h4{height:77504.000000pt;}
.h6{height:86695.957333pt;}
.h3{height:112504.000000pt;}
.w2{width:559.370667pt;}
.w3{width:1175.433467pt;}
.w1{width:1239.333333pt;}
.w0{width:1239.433347pt;}
.x0{left:0.000000pt;}
.x7{left:32.000000pt;}
.x4{left:43.337867pt;}
.x9{left:47.338533pt;}
.x2{left:50.028000pt;}
.x5{left:75.590667pt;}
.x3{left:97.953200pt;}
.x6{left:502.726667pt;}
.x8{left:591.348667pt;}
.x1{left:637.060267pt;}
}


body.paper-page .doc-shell[data-scieee-split-doc="1"] #page-container {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: max-content !important;
  min-width: 100% !important;
  height: auto !important;
  overflow: visible !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] #sidebar,
body.paper-page .doc-shell[data-scieee-split-doc="1"] .loading-indicator {
  display: none !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] .pf {
  display: block !important;
  position: relative !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
