
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* 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("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #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("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -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(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_e0f318f28712fbafda69cb4e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.133301;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('chunks/assets/font_905594cecff69e01524124c7.woff')format("woff");}.ff2{font-family:ff2;line-height:1.027832;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('chunks/assets/font_1118ccd12430b7602ac90bf0.woff')format("woff");}.ff3{font-family:ff3;line-height:0.958008;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('chunks/assets/font_00d865caea61283dfc5ee7b5.woff')format("woff");}.ff4{font-family:ff4;line-height:0.988281;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('chunks/assets/font_16b63a459ffb14f538fc1edb.woff')format("woff");}.ff5{font-family:ff5;line-height:1.133301;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;}
.m1{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);}
.m0{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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-0.240000px;}
.ls1{letter-spacing:-0.180000px;}
.ls0{letter-spacing:0.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:-13.296000px;}
.ws18{word-spacing:-2.880000px;}
.wsf{word-spacing:-2.592000px;}
.ws2{word-spacing:-1.968000px;}
.ws2b{word-spacing:-1.824000px;}
.ws5{word-spacing:-1.728000px;}
.ws6{word-spacing:-1.632000px;}
.ws1d{word-spacing:-1.392000px;}
.wsa{word-spacing:-1.104000px;}
.ws2e{word-spacing:-0.864000px;}
.ws2f{word-spacing:-0.816000px;}
.ws9{word-spacing:-0.672000px;}
.ws17{word-spacing:-0.624000px;}
.ws23{word-spacing:-0.048000px;}
.ws1{word-spacing:0.000000px;}
.ws1e{word-spacing:0.096000px;}
.ws12{word-spacing:0.240000px;}
.ws2d{word-spacing:1.248000px;}
.ws13{word-spacing:1.632000px;}
.ws3{word-spacing:2.112000px;}
.ws2a{word-spacing:2.640000px;}
.ws21{word-spacing:2.736000px;}
.ws31{word-spacing:2.928000px;}
.ws1a{word-spacing:3.024000px;}
.ws24{word-spacing:3.216000px;}
.wsc{word-spacing:3.312000px;}
.ws16{word-spacing:3.360000px;}
.ws14{word-spacing:3.792000px;}
.ws8{word-spacing:3.840000px;}
.ws22{word-spacing:4.560000px;}
.ws20{word-spacing:5.136000px;}
.ws10{word-spacing:5.184000px;}
.ws1f{word-spacing:5.712000px;}
.ws29{word-spacing:6.144000px;}
.ws26{word-spacing:6.288000px;}
.wsd{word-spacing:6.576000px;}
.ws28{word-spacing:6.624000px;}
.ws11{word-spacing:6.864000px;}
.ws4{word-spacing:7.152000px;}
.ws1c{word-spacing:7.200000px;}
.wsb{word-spacing:7.296000px;}
.ws15{word-spacing:7.440000px;}
.ws2c{word-spacing:7.536000px;}
.ws27{word-spacing:7.680000px;}
.ws7{word-spacing:8.256000px;}
.ws1b{word-spacing:8.448000px;}
.ws30{word-spacing:8.688000px;}
.wse{word-spacing:8.736000px;}
.ws25{word-spacing:9.888000px;}
.ws19{word-spacing:17.136000px;}
._b{margin-left:-5.904000px;}
._1{margin-left:-4.084800px;}
._2{margin-left:-2.827200px;}
._3{margin-left:-1.003200px;}
._4{width:1.257600px;}
._7{width:2.304000px;}
._9{width:3.374400px;}
._8{width:4.588800px;}
._5{width:5.616000px;}
._6{width:6.667200px;}
._d{width:8.695800px;}
._c{width:9.835200px;}
._0{width:12.004800px;}
._a{width:22.348800px;}
.fc1{color:rgb(115,178,170);}
.fc0{color:rgb(90,87,88);}
.fs2{font-size:36.000000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:23.952750px;}
.y9{bottom:45.519750px;}
.y8{bottom:48.088500px;}
.y68{bottom:53.929200px;}
.y7{bottom:60.088500px;}
.y67{bottom:68.329050px;}
.y6{bottom:72.088500px;}
.y66{bottom:93.359100px;}
.y65{bottom:107.759100px;}
.y2c{bottom:109.828350px;}
.y64{bottom:122.159100px;}
.y2b{bottom:124.228350px;}
.y63{bottom:136.559100px;}
.y2a{bottom:138.628350px;}
.y62{bottom:150.958950px;}
.y29{bottom:153.028350px;}
.y61{bottom:165.359100px;}
.y28{bottom:167.428350px;}
.y60{bottom:179.759100px;}
.y27{bottom:181.828350px;}
.y5f{bottom:194.159100px;}
.y26{bottom:196.228350px;}
.y5e{bottom:208.559100px;}
.y25{bottom:210.628350px;}
.y5d{bottom:222.959100px;}
.y24{bottom:225.028350px;}
.y5c{bottom:237.359100px;}
.y23{bottom:239.428350px;}
.y5b{bottom:251.759100px;}
.y22{bottom:266.584200px;}
.y5a{bottom:276.789000px;}
.y21{bottom:280.984200px;}
.y59{bottom:291.189000px;}
.y20{bottom:295.384200px;}
.y58{bottom:305.589000px;}
.y1f{bottom:309.784200px;}
.y57{bottom:319.989000px;}
.y1e{bottom:324.184200px;}
.y56{bottom:334.389000px;}
.y1d{bottom:338.584200px;}
.y55{bottom:348.789000px;}
.y1c{bottom:352.984200px;}
.y54{bottom:363.189000px;}
.y1b{bottom:367.384200px;}
.y53{bottom:377.589000px;}
.y1a{bottom:381.784200px;}
.y52{bottom:391.989000px;}
.y19{bottom:396.184200px;}
.y51{bottom:406.389000px;}
.y18{bottom:410.584200px;}
.y7f{bottom:413.645700px;}
.y50{bottom:420.789000px;}
.y17{bottom:424.984200px;}
.y7e{bottom:428.045700px;}
.y4f{bottom:435.189000px;}
.y16{bottom:439.384200px;}
.y4e{bottom:449.589000px;}
.y15{bottom:453.784200px;}
.y7d{bottom:455.201550px;}
.y14{bottom:468.184200px;}
.y4d{bottom:474.618900px;}
.y7c{bottom:482.357550px;}
.y13{bottom:482.584200px;}
.y4c{bottom:489.018900px;}
.y12{bottom:501.236250px;}
.y4b{bottom:503.418900px;}
.y7b{bottom:509.513400px;}
.y4a{bottom:517.818900px;}
.y7a{bottom:523.913400px;}
.y49{bottom:532.218900px;}
.y5{bottom:532.288350px;}
.y79{bottom:538.313400px;}
.y48{bottom:546.618900px;}
.y4{bottom:550.288350px;}
.y78{bottom:552.713400px;}
.y47{bottom:561.018900px;}
.y46{bottom:575.418900px;}
.y77{bottom:579.869250px;}
.y3{bottom:583.288350px;}
.y45{bottom:589.818900px;}
.y76{bottom:594.269250px;}
.y2{bottom:601.288350px;}
.y44{bottom:604.218900px;}
.y75{bottom:608.669250px;}
.y43{bottom:618.618900px;}
.y42{bottom:633.018900px;}
.y74{bottom:635.825250px;}
.y41{bottom:647.418900px;}
.y40{bottom:661.818900px;}
.y73{bottom:662.981100px;}
.y72{bottom:677.381100px;}
.y3f{bottom:686.848800px;}
.y3e{bottom:701.248800px;}
.y71{bottom:704.536950px;}
.y3d{bottom:715.648800px;}
.y11{bottom:718.665300px;}
.y70{bottom:718.936950px;}
.y3c{bottom:730.048800px;}
.y6f{bottom:733.337100px;}
.y10{bottom:733.665300px;}
.y3b{bottom:744.448800px;}
.y6e{bottom:747.736950px;}
.y3a{bottom:758.848800px;}
.yf{bottom:762.165300px;}
.y39{bottom:773.248800px;}
.y6d{bottom:774.892950px;}
.ye{bottom:777.165300px;}
.y38{bottom:787.648800px;}
.y6c{bottom:789.292950px;}
.y37{bottom:802.048800px;}
.yd{bottom:804.165300px;}
.y36{bottom:816.448800px;}
.y35{bottom:830.848800px;}
.y6b{bottom:835.100850px;}
.y34{bottom:845.248800px;}
.y33{bottom:863.900700px;}
.y6a{bottom:868.152750px;}
.y69{bottom:882.552750px;}
.y32{bottom:896.952750px;}
.y31{bottom:911.352750px;}
.yc{bottom:915.586950px;}
.y30{bottom:925.752750px;}
.yb{bottom:926.386950px;}
.ya{bottom:937.186950px;}
.y2f{bottom:940.152750px;}
.y2e{bottom:954.552750px;}
.y2d{bottom:968.952750px;}
.h6{height:28.089844px;}
.h5{height:33.310547px;}
.h9{height:37.453125px;}
.h8{height:39.351562px;}
.h2{height:44.414062px;}
.h4{height:45.000000px;}
.h3{height:49.189453px;}
.h7{height:59.027344px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x7{left:45.017700px;}
.x6{left:64.529550px;}
.x4{left:69.071100px;}
.x2{left:73.421700px;}
.xf{left:99.252900px;}
.xd{left:127.582950px;}
.xe{left:248.185800px;}
.xc{left:293.625300px;}
.x5{left:294.679050px;}
.xb{left:320.382750px;}
.x3{left:327.975000px;}
.x9{left:446.121000px;}
.x8{left:453.912600px;}
.xa{left:593.781750px;}
.x1{left:652.404750px;}
.x10{left:653.703900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.213333pt;}
.ls1{letter-spacing:-0.160000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-11.818667pt;}
.ws18{word-spacing:-2.560000pt;}
.wsf{word-spacing:-2.304000pt;}
.ws2{word-spacing:-1.749333pt;}
.ws2b{word-spacing:-1.621333pt;}
.ws5{word-spacing:-1.536000pt;}
.ws6{word-spacing:-1.450667pt;}
.ws1d{word-spacing:-1.237333pt;}
.wsa{word-spacing:-0.981333pt;}
.ws2e{word-spacing:-0.768000pt;}
.ws2f{word-spacing:-0.725333pt;}
.ws9{word-spacing:-0.597333pt;}
.ws17{word-spacing:-0.554667pt;}
.ws23{word-spacing:-0.042667pt;}
.ws1{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.085333pt;}
.ws12{word-spacing:0.213333pt;}
.ws2d{word-spacing:1.109333pt;}
.ws13{word-spacing:1.450667pt;}
.ws3{word-spacing:1.877333pt;}
.ws2a{word-spacing:2.346667pt;}
.ws21{word-spacing:2.432000pt;}
.ws31{word-spacing:2.602667pt;}
.ws1a{word-spacing:2.688000pt;}
.ws24{word-spacing:2.858667pt;}
.wsc{word-spacing:2.944000pt;}
.ws16{word-spacing:2.986667pt;}
.ws14{word-spacing:3.370667pt;}
.ws8{word-spacing:3.413333pt;}
.ws22{word-spacing:4.053333pt;}
.ws20{word-spacing:4.565333pt;}
.ws10{word-spacing:4.608000pt;}
.ws1f{word-spacing:5.077333pt;}
.ws29{word-spacing:5.461333pt;}
.ws26{word-spacing:5.589333pt;}
.wsd{word-spacing:5.845333pt;}
.ws28{word-spacing:5.888000pt;}
.ws11{word-spacing:6.101333pt;}
.ws4{word-spacing:6.357333pt;}
.ws1c{word-spacing:6.400000pt;}
.wsb{word-spacing:6.485333pt;}
.ws15{word-spacing:6.613333pt;}
.ws2c{word-spacing:6.698667pt;}
.ws27{word-spacing:6.826667pt;}
.ws7{word-spacing:7.338667pt;}
.ws1b{word-spacing:7.509333pt;}
.ws30{word-spacing:7.722667pt;}
.wse{word-spacing:7.765333pt;}
.ws25{word-spacing:8.789333pt;}
.ws19{word-spacing:15.232000pt;}
._b{margin-left:-5.248000pt;}
._1{margin-left:-3.630933pt;}
._2{margin-left:-2.513067pt;}
._3{margin-left:-0.891733pt;}
._4{width:1.117867pt;}
._7{width:2.048000pt;}
._9{width:2.999467pt;}
._8{width:4.078933pt;}
._5{width:4.992000pt;}
._6{width:5.926400pt;}
._d{width:7.729600pt;}
._c{width:8.742400pt;}
._0{width:10.670933pt;}
._a{width:19.865600pt;}
.fs2{font-size:32.000000pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:21.291333pt;}
.y9{bottom:40.462000pt;}
.y8{bottom:42.745333pt;}
.y68{bottom:47.937067pt;}
.y7{bottom:53.412000pt;}
.y67{bottom:60.736933pt;}
.y6{bottom:64.078667pt;}
.y66{bottom:82.985867pt;}
.y65{bottom:95.785867pt;}
.y2c{bottom:97.625200pt;}
.y64{bottom:108.585867pt;}
.y2b{bottom:110.425200pt;}
.y63{bottom:121.385867pt;}
.y2a{bottom:123.225200pt;}
.y62{bottom:134.185733pt;}
.y29{bottom:136.025200pt;}
.y61{bottom:146.985867pt;}
.y28{bottom:148.825200pt;}
.y60{bottom:159.785867pt;}
.y27{bottom:161.625200pt;}
.y5f{bottom:172.585867pt;}
.y26{bottom:174.425200pt;}
.y5e{bottom:185.385867pt;}
.y25{bottom:187.225200pt;}
.y5d{bottom:198.185867pt;}
.y24{bottom:200.025200pt;}
.y5c{bottom:210.985867pt;}
.y23{bottom:212.825200pt;}
.y5b{bottom:223.785867pt;}
.y22{bottom:236.963733pt;}
.y5a{bottom:246.034667pt;}
.y21{bottom:249.763733pt;}
.y59{bottom:258.834667pt;}
.y20{bottom:262.563733pt;}
.y58{bottom:271.634667pt;}
.y1f{bottom:275.363733pt;}
.y57{bottom:284.434667pt;}
.y1e{bottom:288.163733pt;}
.y56{bottom:297.234667pt;}
.y1d{bottom:300.963733pt;}
.y55{bottom:310.034667pt;}
.y1c{bottom:313.763733pt;}
.y54{bottom:322.834667pt;}
.y1b{bottom:326.563733pt;}
.y53{bottom:335.634667pt;}
.y1a{bottom:339.363733pt;}
.y52{bottom:348.434667pt;}
.y19{bottom:352.163733pt;}
.y51{bottom:361.234667pt;}
.y18{bottom:364.963733pt;}
.y7f{bottom:367.685067pt;}
.y50{bottom:374.034667pt;}
.y17{bottom:377.763733pt;}
.y7e{bottom:380.485067pt;}
.y4f{bottom:386.834667pt;}
.y16{bottom:390.563733pt;}
.y4e{bottom:399.634667pt;}
.y15{bottom:403.363733pt;}
.y7d{bottom:404.623600pt;}
.y14{bottom:416.163733pt;}
.y4d{bottom:421.883467pt;}
.y7c{bottom:428.762267pt;}
.y13{bottom:428.963733pt;}
.y4c{bottom:434.683467pt;}
.y12{bottom:445.543333pt;}
.y4b{bottom:447.483467pt;}
.y7b{bottom:452.900800pt;}
.y4a{bottom:460.283467pt;}
.y7a{bottom:465.700800pt;}
.y49{bottom:473.083467pt;}
.y5{bottom:473.145200pt;}
.y79{bottom:478.500800pt;}
.y48{bottom:485.883467pt;}
.y4{bottom:489.145200pt;}
.y78{bottom:491.300800pt;}
.y47{bottom:498.683467pt;}
.y46{bottom:511.483467pt;}
.y77{bottom:515.439333pt;}
.y3{bottom:518.478533pt;}
.y45{bottom:524.283467pt;}
.y76{bottom:528.239333pt;}
.y2{bottom:534.478533pt;}
.y44{bottom:537.083467pt;}
.y75{bottom:541.039333pt;}
.y43{bottom:549.883467pt;}
.y42{bottom:562.683467pt;}
.y74{bottom:565.178000pt;}
.y41{bottom:575.483467pt;}
.y40{bottom:588.283467pt;}
.y73{bottom:589.316533pt;}
.y72{bottom:602.116533pt;}
.y3f{bottom:610.532267pt;}
.y3e{bottom:623.332267pt;}
.y71{bottom:626.255067pt;}
.y3d{bottom:636.132267pt;}
.y11{bottom:638.813600pt;}
.y70{bottom:639.055067pt;}
.y3c{bottom:648.932267pt;}
.y6f{bottom:651.855200pt;}
.y10{bottom:652.146933pt;}
.y3b{bottom:661.732267pt;}
.y6e{bottom:664.655067pt;}
.y3a{bottom:674.532267pt;}
.yf{bottom:677.480267pt;}
.y39{bottom:687.332267pt;}
.y6d{bottom:688.793733pt;}
.ye{bottom:690.813600pt;}
.y38{bottom:700.132267pt;}
.y6c{bottom:701.593733pt;}
.y37{bottom:712.932267pt;}
.yd{bottom:714.813600pt;}
.y36{bottom:725.732267pt;}
.y35{bottom:738.532267pt;}
.y6b{bottom:742.311867pt;}
.y34{bottom:751.332267pt;}
.y33{bottom:767.911733pt;}
.y6a{bottom:771.691333pt;}
.y69{bottom:784.491333pt;}
.y32{bottom:797.291333pt;}
.y31{bottom:810.091333pt;}
.yc{bottom:813.855067pt;}
.y30{bottom:822.891333pt;}
.yb{bottom:823.455067pt;}
.ya{bottom:833.055067pt;}
.y2f{bottom:835.691333pt;}
.y2e{bottom:848.491333pt;}
.y2d{bottom:861.291333pt;}
.h6{height:24.968750pt;}
.h5{height:29.609375pt;}
.h9{height:33.291667pt;}
.h8{height:34.979167pt;}
.h2{height:39.479167pt;}
.h4{height:40.000000pt;}
.h3{height:43.723958pt;}
.h7{height:52.468750pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x7{left:40.015733pt;}
.x6{left:57.359600pt;}
.x4{left:61.396533pt;}
.x2{left:65.263733pt;}
.xf{left:88.224800pt;}
.xd{left:113.407067pt;}
.xe{left:220.609600pt;}
.xc{left:261.000267pt;}
.x5{left:261.936933pt;}
.xb{left:284.784667pt;}
.x3{left:291.533333pt;}
.x9{left:396.552000pt;}
.x8{left:403.477867pt;}
.xa{left:527.806000pt;}
.x1{left:579.915333pt;}
.x10{left:581.070133pt;}
}

