
    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_68c0bed3d5bc9f0c0ef5907d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_b7f10dc2c4e7802ab13e81dc.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_47e09f45d52599144c08d336.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_e4122b508105eaaa35f0abeb.woff')format("woff");}.ff4{font-family:ff4;line-height:0.731445;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_3f04a832a5655670d5bbfe3f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.946289;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('chunks/assets/font_e1d6b41780ed466e932fdc85.woff')format("woff");}.ff6{font-family:ff6;line-height:0.926000;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('chunks/assets/font_1982c972a19ff2ec58660212.woff')format("woff");}.ff7{font-family:ff7;line-height:0.925293;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('chunks/assets/font_02353788a40203190aa573b4.woff')format("woff");}.ff8{font-family:ff8;line-height:1.010742;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('chunks/assets/font_4a2927752b6dfac6c10418fe.woff')format("woff");}.ff9{font-family:ff9;line-height:0.989258;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('chunks/assets/font_9a2b71b044ce96b37a20c79e.woff')format("woff");}.ffa{font-family:ffa;line-height:1.006000;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:ffb;src:url('chunks/assets/font_c54b290f98489915e1b8da09.woff')format("woff");}.ffb{font-family:ffb;line-height:0.711000;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:ffc;src:url('chunks/assets/font_a5be28e5c7da1f24adea5416.woff')format("woff");}.ffc{font-family:ffc;line-height:0.940000;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:ffd;src:url('chunks/assets/font_552f468f49eb97f3cc2a3728.woff')format("woff");}.ffd{font-family:ffd;line-height:0.862000;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:ffe;src:url('chunks/assets/font_40787b9974786633694169b9.woff')format("woff");}.ffe{font-family:ffe;line-height:0.896000;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:fff;src:url('chunks/assets/font_17272500dd138e33bfaaec15.woff')format("woff");}.fff{font-family:fff;line-height:0.998000;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:ff10;src:url('chunks/assets/font_3bfd1a0d737bbfcb05305554.woff')format("woff");}.ff10{font-family:ff10;line-height:0.983000;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:ff11;src:url('chunks/assets/font_3912d8c7872aa9d17c3a978e.woff')format("woff");}.ff11{font-family:ff11;line-height:0.912000;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;}
.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);}
.m1{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;}
.v1{vertical-align:65.688000px;}
.ls4{letter-spacing:-28.457400px;}
.ls7{letter-spacing:-14.227200px;}
.lse{letter-spacing:-9.081600px;}
.ls10{letter-spacing:-0.147000px;}
.ls2{letter-spacing:-0.051600px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.006600px;}
.lsd{letter-spacing:0.021600px;}
.ls8{letter-spacing:0.029400px;}
.ls6{letter-spacing:0.038400px;}
.ls3{letter-spacing:0.051600px;}
.lsa{letter-spacing:0.057600px;}
.lsf{letter-spacing:0.064800px;}
.ls9{letter-spacing:0.088200px;}
.ls5{letter-spacing:0.127200px;}
.ls1{letter-spacing:0.129600px;}
.lsc{letter-spacing:0.171000px;}
.ls12{letter-spacing:0.230400px;}
.lsb{letter-spacing:80.712000px;}
.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;}
}
.ws3{word-spacing:-76.728000px;}
.ws2{word-spacing:-65.145600px;}
.ws4{word-spacing:-51.152056px;}
.ws5{word-spacing:-48.710400px;}
.ws8{word-spacing:-40.032000px;}
.ws6{word-spacing:-14.922600px;}
.ws7{word-spacing:-14.916000px;}
.ws0{word-spacing:0.000000px;}
.ws1{word-spacing:0.864000px;}
._13{margin-left:-33.839400px;}
._10{margin-left:-32.224200px;}
._16{margin-left:-30.375000px;}
._d{margin-left:-26.004600px;}
._14{margin-left:-24.725628px;}
._8{margin-left:-23.142600px;}
._9{margin-left:-21.259200px;}
._1b{margin-left:-20.208084px;}
._5{margin-left:-18.580320px;}
._2{margin-left:-15.732000px;}
._3{margin-left:-13.441428px;}
._a{margin-left:-11.429400px;}
._7{margin-left:-9.494400px;}
._1{margin-left:-7.833000px;}
._4{margin-left:-6.378372px;}
._b{margin-left:-4.863000px;}
._0{margin-left:-3.801000px;}
._11{margin-left:-2.511228px;}
._6{margin-left:-1.080000px;}
._12{width:1.953684px;}
._15{width:3.739200px;}
._c{width:4.968000px;}
._1a{width:6.654684px;}
._19{width:8.064000px;}
._18{width:9.216000px;}
._f{width:28.380000px;}
._17{width:80.712000px;}
._e{width:1507.410000px;}
.fc9{color:rgb(11,78,18);}
.fca{color:rgb(75,89,106);}
.fc8{color:rgb(141,0,7);}
.fc7{color:rgb(0,0,255);}
.fc4{color:rgb(99,109,110);}
.fc6{color:transparent;}
.fc2{color:rgb(187,0,0);}
.fc5{color:rgb(255,255,255);}
.fc3{color:rgb(95,95,95);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(42,42,42);}
.fs14{font-size:66.000000px;}
.fsb{font-size:96.000000px;}
.fs18{font-size:144.000000px;}
.fs19{font-size:162.000000px;}
.fs13{font-size:184.000200px;}
.fs4{font-size:192.000000px;}
.fs15{font-size:204.000000px;}
.fs2{font-size:210.000000px;}
.fs9{font-size:216.000000px;}
.fs1a{font-size:222.000000px;}
.fsc{font-size:234.000000px;}
.fs16{font-size:240.000000px;}
.fs3{font-size:252.000000px;}
.fsa{font-size:258.000000px;}
.fs11{font-size:264.000000px;}
.fs10{font-size:270.000000px;}
.fs6{font-size:276.000000px;}
.fsf{font-size:288.000000px;}
.fse{font-size:294.000000px;}
.fsd{font-size:318.000000px;}
.fs8{font-size:336.600000px;}
.fs12{font-size:342.000000px;}
.fs1{font-size:360.000000px;}
.fs7{font-size:360.360000px;}
.fs5{font-size:408.000000px;}
.fs0{font-size:432.000000px;}
.fs17{font-size:768.000000px;}
.yab{bottom:-17.411550px;}
.y0{bottom:0.000000px;}
.yea{bottom:1.175550px;}
.yde{bottom:1.176300px;}
.y81{bottom:22.555500px;}
.y5b{bottom:22.927500px;}
.ye{bottom:23.445000px;}
.y9{bottom:30.475350px;}
.y45{bottom:31.711200px;}
.y83{bottom:32.275350px;}
.y77{bottom:34.560150px;}
.y5c{bottom:37.665000px;}
.yd{bottom:38.088300px;}
.y5a{bottom:38.829600px;}
.y53{bottom:40.739700px;}
.y4d{bottom:40.740750px;}
.y2b{bottom:41.972400px;}
.y2d{bottom:41.972850px;}
.y2c{bottom:45.591000px;}
.y96{bottom:50.963700px;}
.yf{bottom:52.269900px;}
.y94{bottom:54.649650px;}
.y58{bottom:55.120200px;}
.y1c{bottom:55.620750px;}
.y57{bottom:57.328650px;}
.ya7{bottom:63.617850px;}
.y2a{bottom:63.931500px;}
.ya9{bottom:65.149500px;}
.y74{bottom:73.938000px;}
.yc{bottom:77.758500px;}
.y54{bottom:88.505100px;}
.y4a{bottom:94.018950px;}
.y47{bottom:95.659650px;}
.y59{bottom:100.842000px;}
.y82{bottom:104.284350px;}
.y55{bottom:104.403000px;}
.y73{bottom:104.932350px;}
.y76{bottom:112.590150px;}
.y19{bottom:113.712450px;}
.y31{bottom:127.523850px;}
.ycd{bottom:129.596400px;}
.ya6{bottom:129.611850px;}
.y52{bottom:133.709700px;}
.y3c{bottom:142.413750px;}
.y80{bottom:151.534350px;}
.y56{bottom:154.795650px;}
.y49{bottom:155.603100px;}
.yb{bottom:160.648500px;}
.y8{bottom:168.512700px;}
.yec{bottom:169.010250px;}
.y4f{bottom:184.740000px;}
.y75{bottom:190.590150px;}
.ya5{bottom:195.605850px;}
.y67{bottom:199.163250px;}
.ycc{bottom:200.096400px;}
.y93{bottom:201.669150px;}
.y30{bottom:208.546350px;}
.y72{bottom:212.932500px;}
.y3b{bottom:224.937750px;}
.y51{bottom:226.724700px;}
.yeb{bottom:227.510250px;}
.y7{bottom:237.497700px;}
.ya{bottom:241.648500px;}
.y18{bottom:247.556550px;}
.y44{bottom:256.389750px;}
.ya4{bottom:261.599850px;}
.y89{bottom:264.584850px;}
.ycb{bottom:270.596400px;}
.y7f{bottom:283.546350px;}
.y92{bottom:287.149650px;}
.y2f{bottom:289.546350px;}
.y20{bottom:293.481450px;}
.y29{bottom:294.981450px;}
.yaa{bottom:295.752750px;}
.y26{bottom:299.326350px;}
.y6{bottom:306.482700px;}
.ya8{bottom:309.946800px;}
.y50{bottom:319.739700px;}
.y71{bottom:320.932500px;}
.y88{bottom:327.602850px;}
.y66{bottom:329.663250px;}
.y3a{bottom:338.913750px;}
.y1d{bottom:342.643050px;}
.y1f{bottom:368.494950px;}
.y28{bottom:369.994950px;}
.y25{bottom:374.339850px;}
.y17{bottom:381.400650px;}
.y87{bottom:390.620850px;}
.ya3{bottom:393.587850px;}
.ye9{bottom:410.622000px;}
.yca{bottom:414.521400px;}
.y7e{bottom:415.558350px;}
.ydd{bottom:417.946500px;}
.y39{bottom:421.437750px;}
.y70{bottom:428.932500px;}
.y91{bottom:434.169150px;}
.y1e{bottom:443.508450px;}
.y5{bottom:444.505200px;}
.y27{bottom:445.008450px;}
.y24{bottom:449.353350px;}
.yb6{bottom:451.561350px;}
.y86{bottom:453.638850px;}
.ye8{bottom:455.309550px;}
.ya2{bottom:459.581850px;}
.y65{bottom:460.163250px;}
.ydc{bottom:462.658800px;}
.yc9{bottom:470.045400px;}
.yb5{bottom:495.049350px;}
.ye7{bottom:498.797550px;}
.ybf{bottom:504.062700px;}
.ydb{bottom:506.146800px;}
.y1b{bottom:510.751500px;}
.y4{bottom:513.490200px;}
.yc8{bottom:513.533400px;}
.y16{bottom:515.244750px;}
.y90{bottom:519.649650px;}
.y23{bottom:524.366850px;}
.ya1{bottom:525.575850px;}
.y38{bottom:535.413750px;}
.y43{bottom:535.437750px;}
.y6f{bottom:536.932500px;}
.ybe{bottom:547.550700px;}
.y7d{bottom:547.570350px;}
.yda{bottom:549.634800px;}
.yb4{bottom:550.549350px;}
.ye6{bottom:554.333550px;}
.yc7{bottom:557.021400px;}
.y64{bottom:560.663250px;}
.y85{bottom:563.137800px;}
.y3{bottom:582.475200px;}
.ya0{bottom:591.569850px;}
.yd9{bottom:593.122800px;}
.ye5{bottom:597.821550px;}
.y22{bottom:599.380350px;}
.ybd{bottom:603.050700px;}
.y48{bottom:605.526450px;}
.yb3{bottom:606.085350px;}
.yc6{bottom:612.545400px;}
.y37{bottom:617.937750px;}
.y84{bottom:624.817800px;}
.ye4{bottom:641.309550px;}
.y6e{bottom:644.932500px;}
.yd8{bottom:648.634800px;}
.y15{bottom:649.088850px;}
.y42{bottom:649.365750px;}
.yb2{bottom:649.573350px;}
.yc5{bottom:656.033400px;}
.ybc{bottom:658.586700px;}
.y63{bottom:661.163250px;}
.y8f{bottom:666.649650px;}
.y21{bottom:674.393850px;}
.y7c{bottom:679.582350px;}
.ye3{bottom:684.797550px;}
.yd7{bottom:692.122800px;}
.yb1{bottom:693.061350px;}
.y2{bottom:697.653300px;}
.yc4{bottom:699.521400px;}
.ybb{bottom:702.074700px;}
.y9f{bottom:723.557850px;}
.y46{bottom:725.256600px;}
.y41{bottom:731.889750px;}
.y36{bottom:731.913750px;}
.y4e{bottom:733.658550px;}
.yb0{bottom:736.549350px;}
.ye2{bottom:740.309550px;}
.yba{bottom:745.562700px;}
.yd6{bottom:747.634800px;}
.y6d{bottom:752.932500px;}
.yc3{bottom:755.033400px;}
.y62{bottom:761.663250px;}
.y14{bottom:782.932950px;}
.y4b{bottom:783.191250px;}
.ye1{bottom:783.797550px;}
.yb9{bottom:789.050700px;}
.y9e{bottom:789.551850px;}
.yd5{bottom:791.122800px;}
.yaf{bottom:792.073350px;}
.yc2{bottom:798.521400px;}
.y95{bottom:806.195850px;}
.y7b{bottom:811.594350px;}
.y8e{bottom:813.669150px;}
.y40{bottom:814.413750px;}
.y35{bottom:814.437750px;}
.y1{bottom:828.057000px;}
.yae{bottom:835.561350px;}
.ye0{bottom:839.309550px;}
.y2e{bottom:843.324750px;}
.yb8{bottom:844.562700px;}
.yd4{bottom:846.634800px;}
.yc1{bottom:854.033400px;}
.y9d{bottom:855.545850px;}
.y6c{bottom:860.932500px;}
.y61{bottom:862.163250px;}
.yad{bottom:879.049350px;}
.ydf{bottom:882.797550px;}
.yb7{bottom:888.050700px;}
.yd3{bottom:890.122800px;}
.y3f{bottom:896.937750px;}
.yc0{bottom:897.521400px;}
.y8d{bottom:899.149650px;}
.y13{bottom:916.777050px;}
.y9c{bottom:921.539850px;}
.y34{bottom:928.413750px;}
.y7a{bottom:943.606350px;}
.y6b{bottom:968.932500px;}
.y60{bottom:992.663250px;}
.y1a{bottom:996.729750px;}
.y33{bottom:1010.937750px;}
.y4c{bottom:1019.413500px;}
.y8c{bottom:1046.149650px;}
.y12{bottom:1050.621150px;}
.y9b{bottom:1053.563850px;}
.y79{bottom:1075.618350px;}
.y6a{bottom:1076.932500px;}
.y9a{bottom:1119.557850px;}
.y5f{bottom:1123.202250px;}
.y3e{bottom:1178.223450px;}
.y69{bottom:1184.932500px;}
.y99{bottom:1185.551850px;}
.y8b{bottom:1193.169150px;}
.y78{bottom:1207.630350px;}
.y5e{bottom:1208.682750px;}
.yd0{bottom:1214.934900px;}
.ycf{bottom:1214.946900px;}
.yd2{bottom:1216.012200px;}
.y32{bottom:1218.729450px;}
.y11{bottom:1230.780750px;}
.y98{bottom:1251.545850px;}
.y3d{bottom:1259.229450px;}
.y8a{bottom:1278.649650px;}
.yce{bottom:1282.434900px;}
.yd1{bottom:1283.512200px;}
.y68{bottom:1292.932500px;}
.y5d{bottom:1294.163250px;}
.y97{bottom:1317.539850px;}
.yac{bottom:1483.968150px;}
.y10{bottom:1485.683550px;}
.h24{height:47.388000px;}
.hf{height:69.000000px;}
.h2a{height:114.768000px;}
.h2b{height:118.422000px;}
.h1a{height:128.172000px;}
.h18{height:130.500000px;}
.he{height:135.999000px;}
.h6{height:138.000000px;}
.h13{height:139.155000px;}
.h2e{height:140.352000px;}
.h27{height:152.184000px;}
.h26{height:152.796000px;}
.h4{height:152.885742px;}
.h3{height:153.090820px;}
.h22{height:153.937500px;}
.h2c{height:162.282000px;}
.hc{height:173.179688px;}
.h23{height:173.231887px;}
.h28{height:176.953125px;}
.h7{height:177.718500px;}
.h20{height:180.576000px;}
.h5{height:183.462891px;}
.h21{height:185.800781px;}
.h10{height:187.611328px;}
.hd{height:197.909180px;}
.h1e{height:199.072266px;}
.h11{height:200.935547px;}
.h9{height:201.756000px;}
.h1c{height:206.784000px;}
.h19{height:216.767578px;}
.h17{height:217.512000px;}
.h12{height:219.972000px;}
.h1b{height:225.524414px;}
.h14{height:234.462891px;}
.h16{height:234.750000px;}
.hb{height:245.382715px;}
.h1f{height:245.556000px;}
.ha{height:262.351934px;}
.h2{height:262.441406px;}
.h1d{height:273.189000px;}
.h8{height:300.820312px;}
.h1{height:314.929688px;}
.h15{height:418.155000px;}
.h2d{height:507.000000px;}
.h29{height:566.250000px;}
.h25{height:1382.520000px;}
.h0{height:1620.000000px;}
.wb{width:413.970000px;}
.wc{width:419.970000px;}
.w8{width:1402.792500px;}
.w7{width:1659.000000px;}
.w4{width:1677.625500px;}
.w6{width:1866.721500px;}
.w5{width:2034.604500px;}
.wa{width:2138.430000px;}
.w1{width:2172.462000px;}
.w3{width:2266.674000px;}
.w2{width:2393.220000px;}
.w9{width:2718.522000px;}
.w0{width:2880.000000px;}
.x0{left:0.000000px;}
.x60{left:16.319850px;}
.x1e{left:27.750300px;}
.x37{left:45.870600px;}
.x23{left:52.123200px;}
.x31{left:57.736200px;}
.x1{left:63.289500px;}
.x4c{left:66.957000px;}
.x73{left:71.234850px;}
.x44{left:74.295000px;}
.x2{left:76.319250px;}
.x3d{left:79.644900px;}
.x51{left:80.739000px;}
.x72{left:81.909000px;}
.x8{left:102.090300px;}
.x4b{left:108.827850px;}
.x61{left:109.950900px;}
.x45{left:114.834450px;}
.x47{left:119.334450px;}
.x49{left:138.497250px;}
.x10{left:143.449200px;}
.x4f{left:152.345250px;}
.x55{left:154.757250px;}
.x3e{left:156.998400px;}
.x56{left:181.757250px;}
.x53{left:203.611200px;}
.x76{left:210.767550px;}
.x46{left:216.834450px;}
.x57{left:229.277250px;}
.x38{left:232.775100px;}
.x77{left:235.583550px;}
.x39{left:237.361650px;}
.x1d{left:244.555500px;}
.xb{left:256.778100px;}
.x36{left:275.406750px;}
.x4d{left:305.495250px;}
.x20{left:307.828500px;}
.x3a{left:320.837100px;}
.x2e{left:336.606000px;}
.x58{left:339.653250px;}
.x7{left:353.769000px;}
.x2d{left:410.911950px;}
.x41{left:516.130500px;}
.x43{left:611.665500px;}
.x54{left:629.467200px;}
.x75{left:653.712000px;}
.x3c{left:683.550000px;}
.x6b{left:700.277250px;}
.x5f{left:720.142500px;}
.x74{left:724.947000px;}
.x25{left:729.796950px;}
.x26{left:758.496300px;}
.x17{left:891.231000px;}
.x5d{left:900.195600px;}
.x15{left:925.480500px;}
.x18{left:927.867000px;}
.x16{left:961.213500px;}
.x19{left:968.953500px;}
.xf{left:978.499200px;}
.x52{left:999.033150px;}
.x69{left:1003.144800px;}
.x14{left:1004.170500px;}
.x35{left:1005.432000px;}
.x22{left:1011.506400px;}
.xa{left:1032.230400px;}
.x5a{left:1063.632150px;}
.x1f{left:1068.306000px;}
.x3f{left:1105.623150px;}
.x2f{left:1112.158200px;}
.x3b{left:1191.411750px;}
.x9{left:1204.607400px;}
.x4e{left:1217.648250px;}
.x5e{left:1219.797450px;}
.x2c{left:1237.998900px;}
.x66{left:1295.701350px;}
.x6d{left:1303.746000px;}
.x6c{left:1306.521000px;}
.x65{left:1342.624800px;}
.x59{left:1355.570100px;}
.x5b{left:1376.335650px;}
.x4a{left:1445.347500px;}
.x48{left:1500.145500px;}
.x1b{left:1530.187500px;}
.x4{left:1567.378500px;}
.x1c{left:1597.009500px;}
.x42{left:1602.820500px;}
.x1a{left:1622.809500px;}
.x40{left:1654.810500px;}
.x5{left:1658.274000px;}
.x34{left:1710.822000px;}
.x3{left:1714.266000px;}
.x24{left:1735.855650px;}
.x2b{left:1741.195500px;}
.x30{left:1799.833500px;}
.x2a{left:1808.338500px;}
.x64{left:1811.502000px;}
.x6e{left:1825.686000px;}
.x5c{left:1836.231150px;}
.x6f{left:1878.577500px;}
.x21{left:1879.878000px;}
.x6a{left:1889.644350px;}
.x67{left:1912.341000px;}
.x50{left:1932.946500px;}
.x33{left:1970.946000px;}
.x32{left:2039.350500px;}
.x63{left:2065.146000px;}
.x28{left:2167.384500px;}
.x29{left:2219.088000px;}
.x11{left:2225.292000px;}
.xd{left:2250.403500px;}
.xc{left:2268.439500px;}
.x27{left:2284.960500px;}
.x12{left:2291.340000px;}
.xe{left:2304.826500px;}
.x13{left:2331.652500px;}
.x62{left:2383.012500px;}
.x70{left:2416.284000px;}
.x68{left:2482.836000px;}
.x71{left:2513.382000px;}
.x6{left:2815.992000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:58.389333pt;}
.ls4{letter-spacing:-25.295467pt;}
.ls7{letter-spacing:-12.646400pt;}
.lse{letter-spacing:-8.072533pt;}
.ls10{letter-spacing:-0.130667pt;}
.ls2{letter-spacing:-0.045867pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.005867pt;}
.lsd{letter-spacing:0.019200pt;}
.ls8{letter-spacing:0.026133pt;}
.ls6{letter-spacing:0.034133pt;}
.ls3{letter-spacing:0.045867pt;}
.lsa{letter-spacing:0.051200pt;}
.lsf{letter-spacing:0.057600pt;}
.ls9{letter-spacing:0.078400pt;}
.ls5{letter-spacing:0.113067pt;}
.ls1{letter-spacing:0.115200pt;}
.lsc{letter-spacing:0.152000pt;}
.ls12{letter-spacing:0.204800pt;}
.lsb{letter-spacing:71.744000pt;}
.ws3{word-spacing:-68.202667pt;}
.ws2{word-spacing:-57.907200pt;}
.ws4{word-spacing:-45.468494pt;}
.ws5{word-spacing:-43.298133pt;}
.ws8{word-spacing:-35.584000pt;}
.ws6{word-spacing:-13.264533pt;}
.ws7{word-spacing:-13.258667pt;}
.ws0{word-spacing:0.000000pt;}
.ws1{word-spacing:0.768000pt;}
._13{margin-left:-30.079467pt;}
._10{margin-left:-28.643733pt;}
._16{margin-left:-27.000000pt;}
._d{margin-left:-23.115200pt;}
._14{margin-left:-21.978336pt;}
._8{margin-left:-20.571200pt;}
._9{margin-left:-18.897067pt;}
._1b{margin-left:-17.962741pt;}
._5{margin-left:-16.515840pt;}
._2{margin-left:-13.984000pt;}
._3{margin-left:-11.947936pt;}
._a{margin-left:-10.159467pt;}
._7{margin-left:-8.439467pt;}
._1{margin-left:-6.962667pt;}
._4{margin-left:-5.669664pt;}
._b{margin-left:-4.322667pt;}
._0{margin-left:-3.378667pt;}
._11{margin-left:-2.232203pt;}
._6{margin-left:-0.960000pt;}
._12{width:1.736608pt;}
._15{width:3.323733pt;}
._c{width:4.416000pt;}
._1a{width:5.915275pt;}
._19{width:7.168000pt;}
._18{width:8.192000pt;}
._f{width:25.226667pt;}
._17{width:71.744000pt;}
._e{width:1339.920000pt;}
.fs14{font-size:58.666667pt;}
.fsb{font-size:85.333333pt;}
.fs18{font-size:128.000000pt;}
.fs19{font-size:144.000000pt;}
.fs13{font-size:163.555733pt;}
.fs4{font-size:170.666667pt;}
.fs15{font-size:181.333333pt;}
.fs2{font-size:186.666667pt;}
.fs9{font-size:192.000000pt;}
.fs1a{font-size:197.333333pt;}
.fsc{font-size:208.000000pt;}
.fs16{font-size:213.333333pt;}
.fs3{font-size:224.000000pt;}
.fsa{font-size:229.333333pt;}
.fs11{font-size:234.666667pt;}
.fs10{font-size:240.000000pt;}
.fs6{font-size:245.333333pt;}
.fsf{font-size:256.000000pt;}
.fse{font-size:261.333333pt;}
.fsd{font-size:282.666667pt;}
.fs8{font-size:299.200000pt;}
.fs12{font-size:304.000000pt;}
.fs1{font-size:320.000000pt;}
.fs7{font-size:320.320000pt;}
.fs5{font-size:362.666667pt;}
.fs0{font-size:384.000000pt;}
.fs17{font-size:682.666667pt;}
.yab{bottom:-15.476933pt;}
.y0{bottom:0.000000pt;}
.yea{bottom:1.044933pt;}
.yde{bottom:1.045600pt;}
.y81{bottom:20.049333pt;}
.y5b{bottom:20.380000pt;}
.ye{bottom:20.840000pt;}
.y9{bottom:27.089200pt;}
.y45{bottom:28.187733pt;}
.y83{bottom:28.689200pt;}
.y77{bottom:30.720133pt;}
.y5c{bottom:33.480000pt;}
.yd{bottom:33.856267pt;}
.y5a{bottom:34.515200pt;}
.y53{bottom:36.213067pt;}
.y4d{bottom:36.214000pt;}
.y2b{bottom:37.308800pt;}
.y2d{bottom:37.309200pt;}
.y2c{bottom:40.525333pt;}
.y96{bottom:45.301067pt;}
.yf{bottom:46.462133pt;}
.y94{bottom:48.577467pt;}
.y58{bottom:48.995733pt;}
.y1c{bottom:49.440667pt;}
.y57{bottom:50.958800pt;}
.ya7{bottom:56.549200pt;}
.y2a{bottom:56.828000pt;}
.ya9{bottom:57.910667pt;}
.y74{bottom:65.722667pt;}
.yc{bottom:69.118667pt;}
.y54{bottom:78.671200pt;}
.y4a{bottom:83.572400pt;}
.y47{bottom:85.030800pt;}
.y59{bottom:89.637333pt;}
.y82{bottom:92.697200pt;}
.y55{bottom:92.802667pt;}
.y73{bottom:93.273200pt;}
.y76{bottom:100.080133pt;}
.y19{bottom:101.077733pt;}
.y31{bottom:113.354533pt;}
.ycd{bottom:115.196800pt;}
.ya6{bottom:115.210533pt;}
.y52{bottom:118.853067pt;}
.y3c{bottom:126.590000pt;}
.y80{bottom:134.697200pt;}
.y56{bottom:137.596133pt;}
.y49{bottom:138.313867pt;}
.yb{bottom:142.798667pt;}
.y8{bottom:149.789067pt;}
.yec{bottom:150.231333pt;}
.y4f{bottom:164.213333pt;}
.y75{bottom:169.413467pt;}
.ya5{bottom:173.871867pt;}
.y67{bottom:177.034000pt;}
.ycc{bottom:177.863467pt;}
.y93{bottom:179.261467pt;}
.y30{bottom:185.374533pt;}
.y72{bottom:189.273333pt;}
.y3b{bottom:199.944667pt;}
.y51{bottom:201.533067pt;}
.yeb{bottom:202.231333pt;}
.y7{bottom:211.109067pt;}
.ya{bottom:214.798667pt;}
.y18{bottom:220.050267pt;}
.y44{bottom:227.902000pt;}
.ya4{bottom:232.533200pt;}
.y89{bottom:235.186533pt;}
.ycb{bottom:240.530133pt;}
.y7f{bottom:252.041200pt;}
.y92{bottom:255.244133pt;}
.y2f{bottom:257.374533pt;}
.y20{bottom:260.872400pt;}
.y29{bottom:262.205733pt;}
.yaa{bottom:262.891333pt;}
.y26{bottom:266.067867pt;}
.y6{bottom:272.429067pt;}
.ya8{bottom:275.508267pt;}
.y50{bottom:284.213067pt;}
.y71{bottom:285.273333pt;}
.y88{bottom:291.202533pt;}
.y66{bottom:293.034000pt;}
.y3a{bottom:301.256667pt;}
.y1d{bottom:304.571600pt;}
.y1f{bottom:327.551067pt;}
.y28{bottom:328.884400pt;}
.y25{bottom:332.746533pt;}
.y17{bottom:339.022800pt;}
.y87{bottom:347.218533pt;}
.ya3{bottom:349.855867pt;}
.ye9{bottom:364.997333pt;}
.yca{bottom:368.463467pt;}
.y7e{bottom:369.385200pt;}
.ydd{bottom:371.508000pt;}
.y39{bottom:374.611333pt;}
.y70{bottom:381.273333pt;}
.y91{bottom:385.928133pt;}
.y1e{bottom:394.229733pt;}
.y5{bottom:395.115733pt;}
.y27{bottom:395.563067pt;}
.y24{bottom:399.425200pt;}
.yb6{bottom:401.387867pt;}
.y86{bottom:403.234533pt;}
.ye8{bottom:404.719600pt;}
.ya2{bottom:408.517200pt;}
.y65{bottom:409.034000pt;}
.ydc{bottom:411.252267pt;}
.yc9{bottom:417.818133pt;}
.yb5{bottom:440.043867pt;}
.ye7{bottom:443.375600pt;}
.ybf{bottom:448.055733pt;}
.ydb{bottom:449.908267pt;}
.y1b{bottom:454.001333pt;}
.y4{bottom:456.435733pt;}
.yc8{bottom:456.474133pt;}
.y16{bottom:457.995333pt;}
.y90{bottom:461.910800pt;}
.y23{bottom:466.103867pt;}
.ya1{bottom:467.178533pt;}
.y38{bottom:475.923333pt;}
.y43{bottom:475.944667pt;}
.y6f{bottom:477.273333pt;}
.ybe{bottom:486.711733pt;}
.y7d{bottom:486.729200pt;}
.yda{bottom:488.564267pt;}
.yb4{bottom:489.377200pt;}
.ye6{bottom:492.740933pt;}
.yc7{bottom:495.130133pt;}
.y64{bottom:498.367333pt;}
.y85{bottom:500.566933pt;}
.y3{bottom:517.755733pt;}
.ya0{bottom:525.839867pt;}
.yd9{bottom:527.220267pt;}
.ye5{bottom:531.396933pt;}
.y22{bottom:532.782533pt;}
.ybd{bottom:536.045067pt;}
.y48{bottom:538.245733pt;}
.yb3{bottom:538.742533pt;}
.yc6{bottom:544.484800pt;}
.y37{bottom:549.278000pt;}
.y84{bottom:555.393600pt;}
.ye4{bottom:570.052933pt;}
.y6e{bottom:573.273333pt;}
.yd8{bottom:576.564267pt;}
.y15{bottom:576.967867pt;}
.y42{bottom:577.214000pt;}
.yb2{bottom:577.398533pt;}
.yc5{bottom:583.140800pt;}
.ybc{bottom:585.410400pt;}
.y63{bottom:587.700667pt;}
.y8f{bottom:592.577467pt;}
.y21{bottom:599.461200pt;}
.y7c{bottom:604.073200pt;}
.ye3{bottom:608.708933pt;}
.yd7{bottom:615.220267pt;}
.yb1{bottom:616.054533pt;}
.y2{bottom:620.136267pt;}
.yc4{bottom:621.796800pt;}
.ybb{bottom:624.066400pt;}
.y9f{bottom:643.162533pt;}
.y46{bottom:644.672533pt;}
.y41{bottom:650.568667pt;}
.y36{bottom:650.590000pt;}
.y4e{bottom:652.140933pt;}
.yb0{bottom:654.710533pt;}
.ye2{bottom:658.052933pt;}
.yba{bottom:662.722400pt;}
.yd6{bottom:664.564267pt;}
.y6d{bottom:669.273333pt;}
.yc3{bottom:671.140800pt;}
.y62{bottom:677.034000pt;}
.y14{bottom:695.940400pt;}
.y4b{bottom:696.170000pt;}
.ye1{bottom:696.708933pt;}
.yb9{bottom:701.378400pt;}
.y9e{bottom:701.823867pt;}
.yd5{bottom:703.220267pt;}
.yaf{bottom:704.065200pt;}
.yc2{bottom:709.796800pt;}
.y95{bottom:716.618533pt;}
.y7b{bottom:721.417200pt;}
.y8e{bottom:723.261467pt;}
.y40{bottom:723.923333pt;}
.y35{bottom:723.944667pt;}
.y1{bottom:736.050667pt;}
.yae{bottom:742.721200pt;}
.ye0{bottom:746.052933pt;}
.y2e{bottom:749.622000pt;}
.yb8{bottom:750.722400pt;}
.yd4{bottom:752.564267pt;}
.yc1{bottom:759.140800pt;}
.y9d{bottom:760.485200pt;}
.y6c{bottom:765.273333pt;}
.y61{bottom:766.367333pt;}
.yad{bottom:781.377200pt;}
.ydf{bottom:784.708933pt;}
.yb7{bottom:789.378400pt;}
.yd3{bottom:791.220267pt;}
.y3f{bottom:797.278000pt;}
.yc0{bottom:797.796800pt;}
.y8d{bottom:799.244133pt;}
.y13{bottom:814.912933pt;}
.y9c{bottom:819.146533pt;}
.y34{bottom:825.256667pt;}
.y7a{bottom:838.761200pt;}
.y6b{bottom:861.273333pt;}
.y60{bottom:882.367333pt;}
.y1a{bottom:885.982000pt;}
.y33{bottom:898.611333pt;}
.y4c{bottom:906.145333pt;}
.y8c{bottom:929.910800pt;}
.y12{bottom:933.885467pt;}
.y9b{bottom:936.501200pt;}
.y79{bottom:956.105200pt;}
.y6a{bottom:957.273333pt;}
.y9a{bottom:995.162533pt;}
.y5f{bottom:998.402000pt;}
.y3e{bottom:1047.309733pt;}
.y69{bottom:1053.273333pt;}
.y99{bottom:1053.823867pt;}
.y8b{bottom:1060.594800pt;}
.y78{bottom:1073.449200pt;}
.y5e{bottom:1074.384667pt;}
.yd0{bottom:1079.942133pt;}
.ycf{bottom:1079.952800pt;}
.yd2{bottom:1080.899733pt;}
.y32{bottom:1083.315067pt;}
.y11{bottom:1094.027333pt;}
.y98{bottom:1112.485200pt;}
.y3d{bottom:1119.315067pt;}
.y8a{bottom:1136.577467pt;}
.yce{bottom:1139.942133pt;}
.yd1{bottom:1140.899733pt;}
.y68{bottom:1149.273333pt;}
.y5d{bottom:1150.367333pt;}
.y97{bottom:1171.146533pt;}
.yac{bottom:1319.082800pt;}
.y10{bottom:1320.607600pt;}
.h24{height:42.122667pt;}
.hf{height:61.333333pt;}
.h2a{height:102.016000pt;}
.h2b{height:105.264000pt;}
.h1a{height:113.930667pt;}
.h18{height:116.000000pt;}
.he{height:120.888000pt;}
.h6{height:122.666667pt;}
.h13{height:123.693333pt;}
.h2e{height:124.757333pt;}
.h27{height:135.274667pt;}
.h26{height:135.818667pt;}
.h4{height:135.898438pt;}
.h3{height:136.080729pt;}
.h22{height:136.833333pt;}
.h2c{height:144.250667pt;}
.hc{height:153.937500pt;}
.h23{height:153.983900pt;}
.h28{height:157.291667pt;}
.h7{height:157.972000pt;}
.h20{height:160.512000pt;}
.h5{height:163.078125pt;}
.h21{height:165.156250pt;}
.h10{height:166.765625pt;}
.hd{height:175.919271pt;}
.h1e{height:176.953125pt;}
.h11{height:178.609375pt;}
.h9{height:179.338667pt;}
.h1c{height:183.808000pt;}
.h19{height:192.682292pt;}
.h17{height:193.344000pt;}
.h12{height:195.530667pt;}
.h1b{height:200.466146pt;}
.h14{height:208.411458pt;}
.h16{height:208.666667pt;}
.hb{height:218.117969pt;}
.h1f{height:218.272000pt;}
.ha{height:233.201719pt;}
.h2{height:233.281250pt;}
.h1d{height:242.834667pt;}
.h8{height:267.395833pt;}
.h1{height:279.937500pt;}
.h15{height:371.693333pt;}
.h2d{height:450.666667pt;}
.h29{height:503.333333pt;}
.h25{height:1228.906667pt;}
.h0{height:1440.000000pt;}
.wb{width:367.973333pt;}
.wc{width:373.306667pt;}
.w8{width:1246.926667pt;}
.w7{width:1474.666667pt;}
.w4{width:1491.222667pt;}
.w6{width:1659.308000pt;}
.w5{width:1808.537333pt;}
.wa{width:1900.826667pt;}
.w1{width:1931.077333pt;}
.w3{width:2014.821333pt;}
.w2{width:2127.306667pt;}
.w9{width:2416.464000pt;}
.w0{width:2560.000000pt;}
.x0{left:0.000000pt;}
.x60{left:14.506533pt;}
.x1e{left:24.666933pt;}
.x37{left:40.773867pt;}
.x23{left:46.331733pt;}
.x31{left:51.321067pt;}
.x1{left:56.257333pt;}
.x4c{left:59.517333pt;}
.x73{left:63.319867pt;}
.x44{left:66.040000pt;}
.x2{left:67.839333pt;}
.x3d{left:70.795467pt;}
.x51{left:71.768000pt;}
.x72{left:72.808000pt;}
.x8{left:90.746933pt;}
.x4b{left:96.735867pt;}
.x61{left:97.734133pt;}
.x45{left:102.075067pt;}
.x47{left:106.075067pt;}
.x49{left:123.108667pt;}
.x10{left:127.510400pt;}
.x4f{left:135.418000pt;}
.x55{left:137.562000pt;}
.x3e{left:139.554133pt;}
.x56{left:161.562000pt;}
.x53{left:180.987733pt;}
.x76{left:187.348933pt;}
.x46{left:192.741733pt;}
.x57{left:203.802000pt;}
.x38{left:206.911200pt;}
.x77{left:209.407600pt;}
.x39{left:210.988133pt;}
.x1d{left:217.382667pt;}
.xb{left:228.247200pt;}
.x36{left:244.806000pt;}
.x4d{left:271.551333pt;}
.x20{left:273.625333pt;}
.x3a{left:285.188533pt;}
.x2e{left:299.205333pt;}
.x58{left:301.914000pt;}
.x7{left:314.461333pt;}
.x2d{left:365.255067pt;}
.x41{left:458.782667pt;}
.x43{left:543.702667pt;}
.x54{left:559.526400pt;}
.x75{left:581.077333pt;}
.x3c{left:607.600000pt;}
.x6b{left:622.468667pt;}
.x5f{left:640.126667pt;}
.x74{left:644.397333pt;}
.x25{left:648.708400pt;}
.x26{left:674.218933pt;}
.x17{left:792.205333pt;}
.x5d{left:800.173867pt;}
.x15{left:822.649333pt;}
.x18{left:824.770667pt;}
.x16{left:854.412000pt;}
.x19{left:861.292000pt;}
.xf{left:869.777067pt;}
.x52{left:888.029467pt;}
.x69{left:891.684267pt;}
.x14{left:892.596000pt;}
.x35{left:893.717333pt;}
.x22{left:899.116800pt;}
.xa{left:917.538133pt;}
.x5a{left:945.450800pt;}
.x1f{left:949.605333pt;}
.x3f{left:982.776133pt;}
.x2f{left:988.585067pt;}
.x3b{left:1059.032667pt;}
.x9{left:1070.762133pt;}
.x4e{left:1082.354000pt;}
.x5e{left:1084.264400pt;}
.x2c{left:1100.443467pt;}
.x66{left:1151.734533pt;}
.x6d{left:1158.885333pt;}
.x6c{left:1161.352000pt;}
.x65{left:1193.444267pt;}
.x59{left:1204.951200pt;}
.x5b{left:1223.409467pt;}
.x4a{left:1284.753333pt;}
.x48{left:1333.462667pt;}
.x1b{left:1360.166667pt;}
.x4{left:1393.225333pt;}
.x1c{left:1419.564000pt;}
.x42{left:1424.729333pt;}
.x1a{left:1442.497333pt;}
.x40{left:1470.942667pt;}
.x5{left:1474.021333pt;}
.x34{left:1520.730667pt;}
.x3{left:1523.792000pt;}
.x24{left:1542.982800pt;}
.x2b{left:1547.729333pt;}
.x30{left:1599.852000pt;}
.x2a{left:1607.412000pt;}
.x64{left:1610.224000pt;}
.x6e{left:1622.832000pt;}
.x5c{left:1632.205467pt;}
.x6f{left:1669.846667pt;}
.x21{left:1671.002667pt;}
.x6a{left:1679.683867pt;}
.x67{left:1699.858667pt;}
.x50{left:1718.174667pt;}
.x33{left:1751.952000pt;}
.x32{left:1812.756000pt;}
.x63{left:1835.685333pt;}
.x28{left:1926.564000pt;}
.x29{left:1972.522667pt;}
.x11{left:1978.037333pt;}
.xd{left:2000.358667pt;}
.xc{left:2016.390667pt;}
.x27{left:2031.076000pt;}
.x12{left:2036.746667pt;}
.xe{left:2048.734667pt;}
.x13{left:2072.580000pt;}
.x62{left:2118.233333pt;}
.x70{left:2147.808000pt;}
.x68{left:2206.965333pt;}
.x71{left:2234.117333pt;}
.x6{left:2503.104000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  