
    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_963811da40ce529487b310da.woff')format("woff");}.ff1{font-family:ff1;line-height:1.058105;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_1e87de3922faa74950f680cb.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_1ccc89d4a6c1db11f506fe27.woff')format("woff");}.ff3{font-family:ff3;line-height:0.893066;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_233587a2b664dc9546c7f3fc.woff')format("woff");}.ff4{font-family:ff4;line-height:1.035156;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_32b788cc5f0a6e047cfc2180.woff')format("woff");}.ff5{font-family:ff5;line-height:1.384000;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_0e3fc96fb7d675a066fa4876.woff')format("woff");}.ff6{font-family:ff6;line-height:1.368000;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_7e2255a4339cefb90cd0aadb.woff')format("woff");}.ff7{font-family:ff7;line-height:1.374000;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_21726e57ca9828dc1a0154e9.woff')format("woff");}.ff8{font-family:ff8;line-height:1.100098;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_9c211986a69420600b743b64.woff')format("woff");}.ff9{font-family:ff9;line-height:1.099609;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_2670dc62d24ecb26561e83b5.woff')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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.236547,0.000000,-0.080904,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080904,0.236547,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);}
.v1{vertical-align:-69.120000px;}
.v3{vertical-align:-30.960022px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.960022px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.304101px;}
.ls2{letter-spacing:0.304380px;}
.ls5{letter-spacing:0.310714px;}
.ls8{letter-spacing:0.506601px;}
.ls9{letter-spacing:22.687170px;}
.ls6{letter-spacing:48.607179px;}
.ls7{letter-spacing:48.607211px;}
.ls4{letter-spacing:1194.835770px;}
.ls0{letter-spacing:1198.652164px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(128,0,0),0 0.015em rgb(128,0,0),0.015em 0 rgb(128,0,0),0 -0.015em  rgb(128,0,0);}
.sc2{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(128,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-15.565086px;}
.ws6{word-spacing:-15.535688px;}
.ws3{word-spacing:-15.446864px;}
.ws8{word-spacing:-13.385306px;}
.ws9{word-spacing:-13.171626px;}
.ws7{word-spacing:-12.665025px;}
.ws2{word-spacing:-12.469248px;}
.ws4{word-spacing:-10.754859px;}
.ws0{word-spacing:-7.767855px;}
.ws5{word-spacing:0.000000px;}
._4{margin-left:-9.878719px;}
._29{margin-left:-2.305593px;}
._0{margin-left:-1.242855px;}
._1{width:1.182169px;}
._3{width:2.331029px;}
._b{width:4.080545px;}
._20{width:5.605713px;}
._19{width:6.703892px;}
._f{width:8.108901px;}
._9{width:9.321413px;}
._16{width:10.606505px;}
._24{width:12.170512px;}
._1b{width:13.775785px;}
._32{width:15.021278px;}
._7{width:16.839229px;}
._8{width:17.959740px;}
._10{width:19.813099px;}
._18{width:21.491439px;}
._a{width:23.273188px;}
._2b{width:24.775052px;}
._1a{width:25.935859px;}
._14{width:27.281153px;}
._13{width:28.566731px;}
._2c{width:29.779971px;}
._15{width:31.663430px;}
._25{width:32.700195px;}
._28{width:34.923740px;}
._e{width:36.105423px;}
._d{width:37.347793px;}
._30{width:39.069827px;}
._2f{width:40.133778px;}
._11{width:41.449214px;}
._12{width:42.713916px;}
._26{width:43.758934px;}
._31{width:45.104713px;}
._36{width:46.890831px;}
._2a{width:48.276421px;}
._1d{width:49.611276px;}
._23{width:51.568530px;}
._1c{width:53.060441px;}
._33{width:55.387639px;}
._1e{width:56.624425px;}
._1f{width:57.697844px;}
._22{width:58.779516px;}
._21{width:59.853421px;}
._6{width:61.235854px;}
._5{width:62.265579px;}
._37{width:63.401383px;}
._c{width:72.923789px;}
._38{width:83.974275px;}
._17{width:88.574295px;}
._34{width:94.676664px;}
._35{width:96.670572px;}
._2e{width:190.758337px;}
._2d{width:191.778352px;}
._3b{width:235.494860px;}
._39{width:331.823655px;}
._3a{width:372.293357px;}
._2{width:549.563316px;}
._3c{width:824.442467px;}
._27{width:862.237033px;}
.fc9{color:rgb(0,0,255);}
.fc8{color:rgb(128,0,0);}
.fc6{color:rgb(196,188,150);}
.fc5{color:rgb(255,0,0);}
.fc7{color:transparent;}
.fc3{color:rgb(118,113,113);}
.fca{color:rgb(33,33,33);}
.fc4{color:rgb(68,84,106);}
.fc2{color:rgb(127,127,127);}
.fc1{color:rgb(166,166,166);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:31.071420px;}
.fsb{font-size:39.251312px;}
.fs1{font-size:45.256050px;}
.fs9{font-size:45.342719px;}
.fs2{font-size:50.660100px;}
.fsd{font-size:53.541223px;}
.fs3{font-size:56.063700px;}
.fsa{font-size:56.170413px;}
.fs0{font-size:62.142750px;}
.fs8{font-size:62.260346px;}
.fs6{font-size:65.676911px;}
.fsc{font-size:84.433046px;}
.fs4{font-size:120.908250px;}
.fs7{font-size:289.774809px;}
.y73{bottom:-10.982212px;}
.y7e{bottom:-7.920816px;}
.y0{bottom:0.000000px;}
.y7b{bottom:2.521461px;}
.y75{bottom:2.878207px;}
.y77{bottom:3.599789px;}
.y60{bottom:3.599979px;}
.y79{bottom:4.134478px;}
.y82{bottom:6.839950px;}
.y81{bottom:30.420044px;}
.y3{bottom:31.500000px;}
.y80{bottom:47.340019px;}
.y2{bottom:48.240006px;}
.y7d{bottom:48.606290px;}
.y7c{bottom:53.829008px;}
.y7a{bottom:64.268244px;}
.yb1{bottom:73.620002px;}
.yd8{bottom:74.340019px;}
.y14d{bottom:84.059967px;}
.y115{bottom:84.960022px;}
.yb0{bottom:91.440033px;}
.yd7{bottom:92.159981px;}
.y14c{bottom:98.820030px;}
.yea{bottom:100.440033px;}
.y114{bottom:102.779983px;}
.y35{bottom:109.080025px;}
.yaf{bottom:109.440033px;}
.yd6{bottom:110.159981px;}
.y14b{bottom:113.399986px;}
.ye9{bottom:118.440033px;}
.y113{bottom:120.779983px;}
.y5e{bottom:126.000000px;}
.y34{bottom:126.899986px;}
.yae{bottom:127.259994px;}
.yd5{bottom:127.980011px;}
.ye8{bottom:136.440033px;}
.y112{bottom:138.779983px;}
.y18d{bottom:139.320030px;}
.y14a{bottom:143.279983px;}
.y5d{bottom:144.000000px;}
.y33{bottom:144.899986px;}
.yad{bottom:145.080025px;}
.yd4{bottom:145.799973px;}
.y18c{bottom:154.080025px;}
.ye7{bottom:154.259994px;}
.y111{bottom:156.419975px;}
.y149{bottom:161.100013px;}
.y5c{bottom:161.820030px;}
.y32{bottom:162.720017px;}
.yac{bottom:163.080025px;}
.yd3{bottom:163.799973px;}
.y18b{bottom:168.659981px;}
.ye6{bottom:172.080025px;}
.y110{bottom:174.419975px;}
.y148{bottom:178.919975px;}
.y5b{bottom:179.639992px;}
.y31{bottom:180.539977px;}
.yab{bottom:180.899986px;}
.yd2{bottom:181.620002px;}
.y18a{bottom:183.419975px;}
.ye5{bottom:190.080025px;}
.y10f{bottom:192.419975px;}
.y147{bottom:196.919975px;}
.y5a{bottom:197.639992px;}
.y189{bottom:198.000000px;}
.y30{bottom:198.360008px;}
.yaa{bottom:198.720017px;}
.yd1{bottom:199.440033px;}
.ye4{bottom:207.899986px;}
.y10e{bottom:210.059967px;}
.y188{bottom:212.580025px;}
.y146{bottom:214.919975px;}
.y59{bottom:215.460022px;}
.y2f{bottom:216.360008px;}
.ya9{bottom:216.720017px;}
.yd0{bottom:217.440033px;}
.ye3{bottom:225.720017px;}
.y187{bottom:227.159981px;}
.y10d{bottom:228.059967px;}
.y145{bottom:232.559967px;}
.y58{bottom:233.279983px;}
.y2e{bottom:234.360008px;}
.ya8{bottom:234.720017px;}
.ycf{bottom:235.259994px;}
.y186{bottom:241.919975px;}
.ye2{bottom:243.539977px;}
.y10c{bottom:246.059967px;}
.y144{bottom:250.559967px;}
.y57{bottom:251.279983px;}
.y2d{bottom:252.000000px;}
.ya7{bottom:252.360008px;}
.yce{bottom:253.080025px;}
.y185{bottom:256.500000px;}
.ye1{bottom:261.539977px;}
.y10b{bottom:263.879998px;}
.y143{bottom:268.559967px;}
.y56{bottom:269.100013px;}
.y2c{bottom:270.000000px;}
.ya6{bottom:270.360008px;}
.ycd{bottom:271.080025px;}
.y184{bottom:271.259994px;}
.ye0{bottom:279.539977px;}
.y10a{bottom:281.700027px;}
.y183{bottom:285.840019px;}
.y142{bottom:286.200027px;}
.y55{bottom:286.919975px;}
.y2b{bottom:288.000000px;}
.ya5{bottom:288.360008px;}
.ycc{bottom:288.899986px;}
.ydf{bottom:297.179970px;}
.y109{bottom:299.700027px;}
.y182{bottom:300.419975px;}
.y141{bottom:304.200027px;}
.y54{bottom:304.919975px;}
.y2a{bottom:305.639992px;}
.ya4{bottom:306.000000px;}
.ycb{bottom:306.899986px;}
.y181{bottom:315.000000px;}
.yde{bottom:315.179970px;}
.y108{bottom:317.519989px;}
.y140{bottom:322.200027px;}
.y53{bottom:322.740006px;}
.y29{bottom:323.639992px;}
.ya3{bottom:324.000000px;}
.yca{bottom:324.720017px;}
.y180{bottom:329.759994px;}
.ydd{bottom:333.179970px;}
.y107{bottom:335.340019px;}
.y13f{bottom:340.019989px;}
.y52{bottom:340.740006px;}
.y28{bottom:341.639992px;}
.ya2{bottom:342.000000px;}
.yc9{bottom:342.539977px;}
.y17f{bottom:344.340019px;}
.ydc{bottom:351.000000px;}
.y106{bottom:353.340019px;}
.y13e{bottom:357.840019px;}
.y51{bottom:358.559967px;}
.y17e{bottom:358.919975px;}
.y27{bottom:359.460022px;}
.ya1{bottom:359.820030px;}
.yc8{bottom:360.539977px;}
.ydb{bottom:368.279983px;}
.y105{bottom:371.159981px;}
.y17d{bottom:373.500000px;}
.y13d{bottom:375.840019px;}
.y50{bottom:376.379998px;}
.y26{bottom:377.279983px;}
.ya0{bottom:377.639992px;}
.yc7{bottom:378.360008px;}
.yda{bottom:382.860008px;}
.y17c{bottom:388.259994px;}
.y104{bottom:389.159981px;}
.y13c{bottom:393.659981px;}
.y4f{bottom:394.379998px;}
.yd9{bottom:394.919975px;}
.y25{bottom:395.279983px;}
.y9f{bottom:395.639992px;}
.yc6{bottom:396.179970px;}
.y17b{bottom:402.840019px;}
.y103{bottom:406.799973px;}
.y13b{bottom:411.480011px;}
.y4e{bottom:412.200027px;}
.y24{bottom:413.100013px;}
.y9e{bottom:413.460022px;}
.yc5{bottom:414.179970px;}
.y17a{bottom:417.600013px;}
.y102{bottom:424.799973px;}
.y13a{bottom:429.480011px;}
.y4d{bottom:430.019989px;}
.y23{bottom:431.100013px;}
.y9d{bottom:431.460022px;}
.yc4{bottom:432.179970px;}
.y101{bottom:442.799973px;}
.y179{bottom:446.759994px;}
.y139{bottom:447.299973px;}
.y4c{bottom:448.019989px;}
.y22{bottom:448.919975px;}
.y9c{bottom:449.100013px;}
.yc3{bottom:449.820030px;}
.y100{bottom:460.620002px;}
.y178{bottom:461.340019px;}
.y138{bottom:465.299973px;}
.y4b{bottom:466.019989px;}
.y21{bottom:466.740006px;}
.y9b{bottom:467.100013px;}
.yc2{bottom:467.820030px;}
.y177{bottom:476.100013px;}
.yff{bottom:478.440033px;}
.y137{bottom:482.940033px;}
.y4a{bottom:483.659981px;}
.y20{bottom:484.740006px;}
.y9a{bottom:485.100013px;}
.yc1{bottom:485.820030px;}
.y176{bottom:490.679970px;}
.yfe{bottom:496.440033px;}
.y136{bottom:500.940033px;}
.y49{bottom:501.659981px;}
.y1f{bottom:502.559967px;}
.y99{bottom:502.740006px;}
.yc0{bottom:503.639992px;}
.y175{bottom:505.440033px;}
.yfd{bottom:514.259994px;}
.y135{bottom:518.940033px;}
.y48{bottom:519.480011px;}
.y174{bottom:519.840019px;}
.y1e{bottom:520.379998px;}
.y98{bottom:520.740006px;}
.ybf{bottom:521.460022px;}
.yfc{bottom:532.080025px;}
.y173{bottom:534.600013px;}
.y134{bottom:536.759994px;}
.y47{bottom:537.299973px;}
.y1d{bottom:538.379998px;}
.y97{bottom:538.740006px;}
.ybe{bottom:539.279983px;}
.y172{bottom:549.179970px;}
.yfb{bottom:550.080025px;}
.y133{bottom:554.580025px;}
.y46{bottom:555.299973px;}
.y1c{bottom:556.200027px;}
.y96{bottom:556.559967px;}
.ybd{bottom:557.279983px;}
.y171{bottom:563.940033px;}
.yfa{bottom:567.899986px;}
.y132{bottom:572.580025px;}
.y45{bottom:573.120002px;}
.y1b{bottom:574.019989px;}
.y95{bottom:574.379998px;}
.ybc{bottom:575.100013px;}
.y170{bottom:578.519989px;}
.yf9{bottom:585.899986px;}
.y131{bottom:590.399986px;}
.y44{bottom:591.120002px;}
.y1a{bottom:592.019989px;}
.y94{bottom:592.379998px;}
.ybb{bottom:592.919975px;}
.y16f{bottom:593.100013px;}
.yf8{bottom:603.720017px;}
.y16e{bottom:607.679970px;}
.y130{bottom:608.220017px;}
.y43{bottom:608.940033px;}
.y19{bottom:609.840019px;}
.y93{bottom:610.200027px;}
.yba{bottom:610.919975px;}
.yf7{bottom:621.540012px;}
.y16d{bottom:622.439999px;}
.y5f{bottom:624.420010px;}
.y12f{bottom:626.220017px;}
.y42{bottom:626.759994px;}
.y18{bottom:627.660015px;}
.y92{bottom:628.019989px;}
.yb9{bottom:628.920010px;}
.y16c{bottom:637.019989px;}
.yf6{bottom:639.540012px;}
.y12e{bottom:644.040012px;}
.y41{bottom:644.759994px;}
.y17{bottom:645.660015px;}
.y91{bottom:646.019989px;}
.yb8{bottom:646.560001px;}
.y16b{bottom:651.779983px;}
.yf5{bottom:657.360008px;}
.y12d{bottom:662.040012px;}
.y40{bottom:662.759994px;}
.y16{bottom:663.480011px;}
.y90{bottom:663.839985px;}
.yb7{bottom:664.560001px;}
.y16a{bottom:666.180004px;}
.yf4{bottom:675.180004px;}
.y12c{bottom:679.860008px;}
.y3f{bottom:680.399986px;}
.y169{bottom:680.939999px;}
.y15{bottom:681.480011px;}
.y8f{bottom:681.839985px;}
.yb6{bottom:682.560001px;}
.yf3{bottom:693.180004px;}
.y168{bottom:695.519989px;}
.y12b{bottom:697.680004px;}
.y3e{bottom:698.399986px;}
.y14{bottom:699.300007px;}
.y8e{bottom:699.660015px;}
.yb5{bottom:700.199993px;}
.y167{bottom:710.279983px;}
.yf2{bottom:711.000000px;}
.y12a{bottom:715.680004px;}
.y3d{bottom:716.399986px;}
.y13{bottom:717.120002px;}
.y8d{bottom:717.480011px;}
.yb4{bottom:718.199993px;}
.y166{bottom:724.860008px;}
.y72{bottom:727.568313px;}
.yf1{bottom:728.819995px;}
.y129{bottom:733.500000px;}
.y3c{bottom:734.040012px;}
.y12{bottom:735.120002px;}
.y8c{bottom:735.480011px;}
.yb3{bottom:735.660015px;}
.y71{bottom:735.662481px;}
.y165{bottom:739.439999px;}
.yf0{bottom:746.819995px;}
.yb2{bottom:747.540012px;}
.y128{bottom:751.319995px;}
.y3b{bottom:752.040012px;}
.y11{bottom:752.939999px;}
.y8b{bottom:753.300007px;}
.y70{bottom:753.484818px;}
.y164{bottom:754.019989px;}
.y74{bottom:764.454868px;}
.yef{bottom:764.639992px;}
.y163{bottom:768.779983px;}
.y127{bottom:769.319995px;}
.y3a{bottom:770.040012px;}
.y10{bottom:770.759994px;}
.y8a{bottom:771.120002px;}
.y6f{bottom:772.925943px;}
.yee{bottom:782.639992px;}
.y162{bottom:783.360008px;}
.y126{bottom:787.139992px;}
.y39{bottom:787.860008px;}
.yf{bottom:788.759994px;}
.y89{bottom:789.120002px;}
.y76{bottom:791.097622px;}
.y6e{bottom:792.184718px;}
.y161{bottom:798.120002px;}
.y125{bottom:804.959988px;}
.y38{bottom:805.680004px;}
.ye{bottom:806.759994px;}
.y88{bottom:806.939999px;}
.y6d{bottom:811.443470px;}
.y160{bottom:812.519989px;}
.yed{bottom:813.959988px;}
.y124{bottom:822.959988px;}
.y37{bottom:823.680004px;}
.y87{bottom:824.759994px;}
.yd{bottom:825.660015px;}
.y15f{bottom:827.279983px;}
.yec{bottom:828.720017px;}
.y6c{bottom:830.702222px;}
.y123{bottom:840.779983px;}
.y36{bottom:841.500000px;}
.y15e{bottom:841.860008px;}
.y86{bottom:842.759994px;}
.yeb{bottom:843.300007px;}
.y6b{bottom:849.960974px;}
.y15d{bottom:856.620002px;}
.y122{bottom:858.779983px;}
.yc{bottom:860.399986px;}
.y85{bottom:860.579990px;}
.y6a{bottom:869.227334px;}
.y15c{bottom:871.199993px;}
.y121{bottom:876.600013px;}
.yb{bottom:877.860008px;}
.y15b{bottom:885.779983px;}
.y69{bottom:888.486086px;}
.y84{bottom:892.079990px;}
.y120{bottom:894.420010px;}
.y15a{bottom:900.360008px;}
.y83{bottom:903.960004px;}
.y68{bottom:907.919649px;}
.y11f{bottom:912.419992px;}
.ya{bottom:912.599997px;}
.y159{bottom:915.120002px;}
.y67{bottom:927.185985px;}
.y158{bottom:929.699993px;}
.y11e{bottom:930.240006px;}
.y157{bottom:944.460004px;}
.y66{bottom:946.444761px;}
.y11d{bottom:948.060001px;}
.y156{bottom:958.860008px;}
.y9{bottom:964.620002px;}
.y65{bottom:965.703513px;}
.y11c{bottom:966.060001px;}
.y155{bottom:973.620002px;}
.y11b{bottom:984.060001px;}
.y64{bottom:985.144660px;}
.y154{bottom:988.199993px;}
.y8{bottom:999.360008px;}
.y11a{bottom:1001.699993px;}
.y153{bottom:1002.960004px;}
.y63{bottom:1004.403412px;}
.y7{bottom:1016.819996px;}
.y152{bottom:1017.539996px;}
.y119{bottom:1019.699993px;}
.y62{bottom:1023.662176px;}
.y151{bottom:1032.120002px;}
.y6{bottom:1034.099997px;}
.y78{bottom:1034.644376px;}
.y118{bottom:1037.699993px;}
.y61{bottom:1043.103336px;}
.y150{bottom:1046.700002px;}
.y5{bottom:1051.560001px;}
.y117{bottom:1055.340002px;}
.y14f{bottom:1061.459997px;}
.y4{bottom:1072.980002px;}
.y116{bottom:1073.340002px;}
.y14e{bottom:1076.040003px;}
.y7f{bottom:1105.379998px;}
.y1{bottom:1123.380001px;}
.he{height:2.158460px;}
.h17{height:2.877893px;}
.h15{height:12.954849px;}
.hf{height:14.764640px;}
.h11{height:18.362328px;}
.h13{height:18.719149px;}
.h16{height:33.942419px;}
.h10{height:39.232079px;}
.h1a{height:42.670250px;}
.h1b{height:45.096978px;}
.h12{height:48.600572px;}
.h2{height:50.388000px;}
.h5{height:51.065381px;}
.h6{height:51.369341px;}
.h1{height:52.341916px;}
.hd{height:52.440965px;}
.hb{height:53.639991px;}
.ha{height:55.318687px;}
.h3{height:55.762577px;}
.h9{height:57.130744px;}
.h8{height:57.131014px;}
.h7{height:57.131018px;}
.h1d{height:57.850969px;}
.h1c{height:57.851171px;}
.h18{height:61.808975px;}
.h14{height:61.925939px;}
.h19{height:83.979548px;}
.h4{height:123.810048px;}
.hc{height:244.073020px;}
.h0{height:1188.000000px;}
.w12{width:2.338800px;}
.w17{width:2.701140px;}
.wf{width:2.879633px;}
.w13{width:2.883859px;}
.wd{width:2.884430px;}
.w5{width:3.060854px;}
.w1c{width:4.676431px;}
.w19{width:5.216694px;}
.w7{width:5.756397px;}
.w15{width:5.941372px;}
.w2{width:7.022522px;}
.wa{width:7.377859px;}
.wb{width:8.998563px;}
.w4{width:13.317209px;}
.we{width:13.679513px;}
.w3{width:21.237809px;}
.wc{width:22.318443px;}
.w1a{width:26.280927px;}
.w16{width:31.323908px;}
.w8{width:34.023130px;}
.w1{width:40.320004px;}
.w6{width:41.401793px;}
.w1b{width:43.919342px;}
.w9{width:45.364194px;}
.w10{width:82.436390px;}
.w14{width:90.003830px;}
.w18{width:102.605230px;}
.w11{width:257.399855px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:102.959997px;}
.xf{left:114.481395px;}
.x22{left:128.340002px;}
.x10{left:136.617761px;}
.x11{left:139.502190px;}
.x3{left:143.280001px;}
.x4{left:153.539996px;}
.x12{left:155.701980px;}
.x9{left:158.223502px;}
.xa{left:179.284187px;}
.xb{left:192.601396px;}
.xc{left:195.662250px;}
.x24{left:199.800007px;}
.xd{left:236.704272px;}
.x13{left:237.961090px;}
.x2{left:248.939999px;}
.x23{left:266.939999px;}
.x25{left:288.899987px;}
.x26{left:308.160015px;}
.xe{left:310.321314px;}
.x8{left:313.916189px;}
.x1f{left:413.639992px;}
.x1e{left:439.560001px;}
.x21{left:444.779983px;}
.x6{left:472.139992px;}
.x14{left:495.360945px;}
.x15{left:497.517084px;}
.x16{left:500.218282px;}
.x5{left:522.899987px;}
.x17{left:590.039393px;}
.x18{left:595.256086px;}
.x19{left:626.579994px;}
.x1a{left:628.556455px;}
.x28{left:674.100014px;}
.x29{left:678.600014px;}
.x27{left:705.600014px;}
.x1b{left:730.619667px;}
.x1c{left:735.836361px;}
.x1d{left:761.940592px;}
.x7{left:790.200027px;}
.x20{left:814.139992px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v3{vertical-align:-27.520020pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:27.520020pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.270312pt;}
.ls2{letter-spacing:0.270560pt;}
.ls5{letter-spacing:0.276190pt;}
.ls8{letter-spacing:0.450312pt;}
.ls9{letter-spacing:20.166374pt;}
.ls6{letter-spacing:43.206382pt;}
.ls7{letter-spacing:43.206410pt;}
.ls4{letter-spacing:1062.076240pt;}
.ls0{letter-spacing:1065.468590pt;}
.ws1{word-spacing:-13.835632pt;}
.ws6{word-spacing:-13.809500pt;}
.ws3{word-spacing:-13.730545pt;}
.ws8{word-spacing:-11.898050pt;}
.ws9{word-spacing:-11.708112pt;}
.ws7{word-spacing:-11.257800pt;}
.ws2{word-spacing:-11.083776pt;}
.ws4{word-spacing:-9.559875pt;}
.ws0{word-spacing:-6.904760pt;}
.ws5{word-spacing:0.000000pt;}
._4{margin-left:-8.781084pt;}
._29{margin-left:-2.049416pt;}
._0{margin-left:-1.104760pt;}
._1{width:1.050817pt;}
._3{width:2.072026pt;}
._b{width:3.627151pt;}
._20{width:4.982856pt;}
._19{width:5.959015pt;}
._f{width:7.207912pt;}
._9{width:8.285700pt;}
._16{width:9.428005pt;}
._24{width:10.818233pt;}
._1b{width:12.245143pt;}
._32{width:13.352247pt;}
._7{width:14.968203pt;}
._8{width:15.964214pt;}
._10{width:17.611644pt;}
._18{width:19.103501pt;}
._a{width:20.687278pt;}
._2b{width:22.022269pt;}
._1a{width:23.054097pt;}
._14{width:24.249914pt;}
._13{width:25.392650pt;}
._2c{width:26.471085pt;}
._15{width:28.145271pt;}
._25{width:29.066840pt;}
._28{width:31.043324pt;}
._e{width:32.093710pt;}
._d{width:33.198038pt;}
._30{width:34.728735pt;}
._2f{width:35.674470pt;}
._11{width:36.843746pt;}
._12{width:37.967926pt;}
._26{width:38.896830pt;}
._31{width:40.093078pt;}
._36{width:41.680739pt;}
._2a{width:42.912374pt;}
._1d{width:44.098912pt;}
._23{width:45.838693pt;}
._1c{width:47.164837pt;}
._33{width:49.233457pt;}
._1e{width:50.332822pt;}
._1f{width:51.286973pt;}
._22{width:52.248459pt;}
._21{width:53.203041pt;}
._6{width:54.431870pt;}
._5{width:55.347181pt;}
._37{width:56.356785pt;}
._c{width:64.821146pt;}
._38{width:74.643800pt;}
._17{width:78.732706pt;}
._34{width:84.157035pt;}
._35{width:85.929398pt;}
._2e{width:169.562967pt;}
._2d{width:170.469646pt;}
._3b{width:209.328764pt;}
._39{width:294.954360pt;}
._3a{width:330.927429pt;}
._2{width:488.500725pt;}
._3c{width:732.837749pt;}
._27{width:766.432919pt;}
.fs5{font-size:27.619040pt;}
.fsb{font-size:34.890055pt;}
.fs1{font-size:40.227600pt;}
.fs9{font-size:40.304639pt;}
.fs2{font-size:45.031200pt;}
.fsd{font-size:47.592199pt;}
.fs3{font-size:49.834400pt;}
.fsa{font-size:49.929256pt;}
.fs0{font-size:55.238000pt;}
.fs8{font-size:55.342529pt;}
.fs6{font-size:58.379476pt;}
.fsc{font-size:75.051596pt;}
.fs4{font-size:107.474000pt;}
.fs7{font-size:257.577608pt;}
.y73{bottom:-9.761966pt;}
.y7e{bottom:-7.040726pt;}
.y0{bottom:0.000000pt;}
.y7b{bottom:2.241299pt;}
.y75{bottom:2.558406pt;}
.y77{bottom:3.199812pt;}
.y60{bottom:3.199981pt;}
.y79{bottom:3.675092pt;}
.y82{bottom:6.079956pt;}
.y81{bottom:27.040039pt;}
.y3{bottom:28.000000pt;}
.y80{bottom:42.080017pt;}
.y2{bottom:42.880005pt;}
.y7d{bottom:43.205591pt;}
.y7c{bottom:47.848007pt;}
.y7a{bottom:57.127328pt;}
.yb1{bottom:65.440002pt;}
.yd8{bottom:66.080017pt;}
.y14d{bottom:74.719971pt;}
.y115{bottom:75.520020pt;}
.yb0{bottom:81.280029pt;}
.yd7{bottom:81.919983pt;}
.y14c{bottom:87.840027pt;}
.yea{bottom:89.280029pt;}
.y114{bottom:91.359985pt;}
.y35{bottom:96.960022pt;}
.yaf{bottom:97.280029pt;}
.yd6{bottom:97.919983pt;}
.y14b{bottom:100.799988pt;}
.ye9{bottom:105.280029pt;}
.y113{bottom:107.359985pt;}
.y5e{bottom:112.000000pt;}
.y34{bottom:112.799988pt;}
.yae{bottom:113.119995pt;}
.yd5{bottom:113.760010pt;}
.ye8{bottom:121.280029pt;}
.y112{bottom:123.359985pt;}
.y18d{bottom:123.840027pt;}
.y14a{bottom:127.359985pt;}
.y5d{bottom:128.000000pt;}
.y33{bottom:128.799988pt;}
.yad{bottom:128.960022pt;}
.yd4{bottom:129.599976pt;}
.y18c{bottom:136.960022pt;}
.ye7{bottom:137.119995pt;}
.y111{bottom:139.039978pt;}
.y149{bottom:143.200012pt;}
.y5c{bottom:143.840027pt;}
.y32{bottom:144.640015pt;}
.yac{bottom:144.960022pt;}
.yd3{bottom:145.599976pt;}
.y18b{bottom:149.919983pt;}
.ye6{bottom:152.960022pt;}
.y110{bottom:155.039978pt;}
.y148{bottom:159.039978pt;}
.y5b{bottom:159.679993pt;}
.y31{bottom:160.479980pt;}
.yab{bottom:160.799988pt;}
.yd2{bottom:161.440002pt;}
.y18a{bottom:163.039978pt;}
.ye5{bottom:168.960022pt;}
.y10f{bottom:171.039978pt;}
.y147{bottom:175.039978pt;}
.y5a{bottom:175.679993pt;}
.y189{bottom:176.000000pt;}
.y30{bottom:176.320007pt;}
.yaa{bottom:176.640015pt;}
.yd1{bottom:177.280029pt;}
.ye4{bottom:184.799988pt;}
.y10e{bottom:186.719971pt;}
.y188{bottom:188.960022pt;}
.y146{bottom:191.039978pt;}
.y59{bottom:191.520020pt;}
.y2f{bottom:192.320007pt;}
.ya9{bottom:192.640015pt;}
.yd0{bottom:193.280029pt;}
.ye3{bottom:200.640015pt;}
.y187{bottom:201.919983pt;}
.y10d{bottom:202.719971pt;}
.y145{bottom:206.719971pt;}
.y58{bottom:207.359985pt;}
.y2e{bottom:208.320007pt;}
.ya8{bottom:208.640015pt;}
.ycf{bottom:209.119995pt;}
.y186{bottom:215.039978pt;}
.ye2{bottom:216.479980pt;}
.y10c{bottom:218.719971pt;}
.y144{bottom:222.719971pt;}
.y57{bottom:223.359985pt;}
.y2d{bottom:224.000000pt;}
.ya7{bottom:224.320007pt;}
.yce{bottom:224.960022pt;}
.y185{bottom:228.000000pt;}
.ye1{bottom:232.479980pt;}
.y10b{bottom:234.559998pt;}
.y143{bottom:238.719971pt;}
.y56{bottom:239.200012pt;}
.y2c{bottom:240.000000pt;}
.ya6{bottom:240.320007pt;}
.ycd{bottom:240.960022pt;}
.y184{bottom:241.119995pt;}
.ye0{bottom:248.479980pt;}
.y10a{bottom:250.400024pt;}
.y183{bottom:254.080017pt;}
.y142{bottom:254.400024pt;}
.y55{bottom:255.039978pt;}
.y2b{bottom:256.000000pt;}
.ya5{bottom:256.320007pt;}
.ycc{bottom:256.799988pt;}
.ydf{bottom:264.159973pt;}
.y109{bottom:266.400024pt;}
.y182{bottom:267.039978pt;}
.y141{bottom:270.400024pt;}
.y54{bottom:271.039978pt;}
.y2a{bottom:271.679993pt;}
.ya4{bottom:272.000000pt;}
.ycb{bottom:272.799988pt;}
.y181{bottom:280.000000pt;}
.yde{bottom:280.159973pt;}
.y108{bottom:282.239990pt;}
.y140{bottom:286.400024pt;}
.y53{bottom:286.880005pt;}
.y29{bottom:287.679993pt;}
.ya3{bottom:288.000000pt;}
.yca{bottom:288.640015pt;}
.y180{bottom:293.119995pt;}
.ydd{bottom:296.159973pt;}
.y107{bottom:298.080017pt;}
.y13f{bottom:302.239990pt;}
.y52{bottom:302.880005pt;}
.y28{bottom:303.679993pt;}
.ya2{bottom:304.000000pt;}
.yc9{bottom:304.479980pt;}
.y17f{bottom:306.080017pt;}
.ydc{bottom:312.000000pt;}
.y106{bottom:314.080017pt;}
.y13e{bottom:318.080017pt;}
.y51{bottom:318.719971pt;}
.y17e{bottom:319.039978pt;}
.y27{bottom:319.520020pt;}
.ya1{bottom:319.840027pt;}
.yc8{bottom:320.479980pt;}
.ydb{bottom:327.359985pt;}
.y105{bottom:329.919983pt;}
.y17d{bottom:332.000000pt;}
.y13d{bottom:334.080017pt;}
.y50{bottom:334.559998pt;}
.y26{bottom:335.359985pt;}
.ya0{bottom:335.679993pt;}
.yc7{bottom:336.320007pt;}
.yda{bottom:340.320007pt;}
.y17c{bottom:345.119995pt;}
.y104{bottom:345.919983pt;}
.y13c{bottom:349.919983pt;}
.y4f{bottom:350.559998pt;}
.yd9{bottom:351.039978pt;}
.y25{bottom:351.359985pt;}
.y9f{bottom:351.679993pt;}
.yc6{bottom:352.159973pt;}
.y17b{bottom:358.080017pt;}
.y103{bottom:361.599976pt;}
.y13b{bottom:365.760010pt;}
.y4e{bottom:366.400024pt;}
.y24{bottom:367.200012pt;}
.y9e{bottom:367.520020pt;}
.yc5{bottom:368.159973pt;}
.y17a{bottom:371.200012pt;}
.y102{bottom:377.599976pt;}
.y13a{bottom:381.760010pt;}
.y4d{bottom:382.239990pt;}
.y23{bottom:383.200012pt;}
.y9d{bottom:383.520020pt;}
.yc4{bottom:384.159973pt;}
.y101{bottom:393.599976pt;}
.y179{bottom:397.119995pt;}
.y139{bottom:397.599976pt;}
.y4c{bottom:398.239990pt;}
.y22{bottom:399.039978pt;}
.y9c{bottom:399.200012pt;}
.yc3{bottom:399.840027pt;}
.y100{bottom:409.440002pt;}
.y178{bottom:410.080017pt;}
.y138{bottom:413.599976pt;}
.y4b{bottom:414.239990pt;}
.y21{bottom:414.880005pt;}
.y9b{bottom:415.200012pt;}
.yc2{bottom:415.840027pt;}
.y177{bottom:423.200012pt;}
.yff{bottom:425.280029pt;}
.y137{bottom:429.280029pt;}
.y4a{bottom:429.919983pt;}
.y20{bottom:430.880005pt;}
.y9a{bottom:431.200012pt;}
.yc1{bottom:431.840027pt;}
.y176{bottom:436.159973pt;}
.yfe{bottom:441.280029pt;}
.y136{bottom:445.280029pt;}
.y49{bottom:445.919983pt;}
.y1f{bottom:446.719971pt;}
.y99{bottom:446.880005pt;}
.yc0{bottom:447.679993pt;}
.y175{bottom:449.280029pt;}
.yfd{bottom:457.119995pt;}
.y135{bottom:461.280029pt;}
.y48{bottom:461.760010pt;}
.y174{bottom:462.080017pt;}
.y1e{bottom:462.559998pt;}
.y98{bottom:462.880005pt;}
.ybf{bottom:463.520020pt;}
.yfc{bottom:472.960022pt;}
.y173{bottom:475.200012pt;}
.y134{bottom:477.119995pt;}
.y47{bottom:477.599976pt;}
.y1d{bottom:478.559998pt;}
.y97{bottom:478.880005pt;}
.ybe{bottom:479.359985pt;}
.y172{bottom:488.159973pt;}
.yfb{bottom:488.960022pt;}
.y133{bottom:492.960022pt;}
.y46{bottom:493.599976pt;}
.y1c{bottom:494.400024pt;}
.y96{bottom:494.719971pt;}
.ybd{bottom:495.359985pt;}
.y171{bottom:501.280029pt;}
.yfa{bottom:504.799988pt;}
.y132{bottom:508.960022pt;}
.y45{bottom:509.440002pt;}
.y1b{bottom:510.239990pt;}
.y95{bottom:510.559998pt;}
.ybc{bottom:511.200012pt;}
.y170{bottom:514.239990pt;}
.yf9{bottom:520.799988pt;}
.y131{bottom:524.799988pt;}
.y44{bottom:525.440002pt;}
.y1a{bottom:526.239990pt;}
.y94{bottom:526.559998pt;}
.ybb{bottom:527.039978pt;}
.y16f{bottom:527.200012pt;}
.yf8{bottom:536.640015pt;}
.y16e{bottom:540.159973pt;}
.y130{bottom:540.640015pt;}
.y43{bottom:541.280029pt;}
.y19{bottom:542.080017pt;}
.y93{bottom:542.400024pt;}
.yba{bottom:543.039978pt;}
.yf7{bottom:552.480011pt;}
.y16d{bottom:553.279999pt;}
.y5f{bottom:555.040009pt;}
.y12f{bottom:556.640015pt;}
.y42{bottom:557.119995pt;}
.y18{bottom:557.920013pt;}
.y92{bottom:558.239990pt;}
.yb9{bottom:559.040009pt;}
.y16c{bottom:566.239990pt;}
.yf6{bottom:568.480011pt;}
.y12e{bottom:572.480011pt;}
.y41{bottom:573.119995pt;}
.y17{bottom:573.920013pt;}
.y91{bottom:574.239990pt;}
.yb8{bottom:574.720001pt;}
.y16b{bottom:579.359985pt;}
.yf5{bottom:584.320007pt;}
.y12d{bottom:588.480011pt;}
.y40{bottom:589.119995pt;}
.y16{bottom:589.760010pt;}
.y90{bottom:590.079987pt;}
.yb7{bottom:590.720001pt;}
.y16a{bottom:592.160004pt;}
.yf4{bottom:600.160004pt;}
.y12c{bottom:604.320007pt;}
.y3f{bottom:604.799988pt;}
.y169{bottom:605.279999pt;}
.y15{bottom:605.760010pt;}
.y8f{bottom:606.079987pt;}
.yb6{bottom:606.720001pt;}
.yf3{bottom:616.160004pt;}
.y168{bottom:618.239990pt;}
.y12b{bottom:620.160004pt;}
.y3e{bottom:620.799988pt;}
.y14{bottom:621.600006pt;}
.y8e{bottom:621.920013pt;}
.yb5{bottom:622.399994pt;}
.y167{bottom:631.359985pt;}
.yf2{bottom:632.000000pt;}
.y12a{bottom:636.160004pt;}
.y3d{bottom:636.799988pt;}
.y13{bottom:637.440002pt;}
.y8d{bottom:637.760010pt;}
.yb4{bottom:638.399994pt;}
.y166{bottom:644.320007pt;}
.y72{bottom:646.727389pt;}
.yf1{bottom:647.839996pt;}
.y129{bottom:652.000000pt;}
.y3c{bottom:652.480011pt;}
.y12{bottom:653.440002pt;}
.y8c{bottom:653.760010pt;}
.yb3{bottom:653.920013pt;}
.y71{bottom:653.922205pt;}
.y165{bottom:657.279999pt;}
.yf0{bottom:663.839996pt;}
.yb2{bottom:664.480011pt;}
.y128{bottom:667.839996pt;}
.y3b{bottom:668.480011pt;}
.y11{bottom:669.279999pt;}
.y8b{bottom:669.600006pt;}
.y70{bottom:669.764283pt;}
.y164{bottom:670.239990pt;}
.y74{bottom:679.515438pt;}
.yef{bottom:679.679993pt;}
.y163{bottom:683.359985pt;}
.y127{bottom:683.839996pt;}
.y3a{bottom:684.480011pt;}
.y10{bottom:685.119995pt;}
.y8a{bottom:685.440002pt;}
.y6f{bottom:687.045283pt;}
.yee{bottom:695.679993pt;}
.y162{bottom:696.320007pt;}
.y126{bottom:699.679993pt;}
.y39{bottom:700.320007pt;}
.yf{bottom:701.119995pt;}
.y89{bottom:701.440002pt;}
.y76{bottom:703.197886pt;}
.y6e{bottom:704.164194pt;}
.y161{bottom:709.440002pt;}
.y125{bottom:715.519989pt;}
.y38{bottom:716.160004pt;}
.ye{bottom:717.119995pt;}
.y88{bottom:717.279999pt;}
.y6d{bottom:721.283085pt;}
.y160{bottom:722.239990pt;}
.yed{bottom:723.519989pt;}
.y124{bottom:731.519989pt;}
.y37{bottom:732.160004pt;}
.y87{bottom:733.119995pt;}
.yd{bottom:733.920013pt;}
.y15f{bottom:735.359985pt;}
.yec{bottom:736.640015pt;}
.y6c{bottom:738.401975pt;}
.y123{bottom:747.359985pt;}
.y36{bottom:748.000000pt;}
.y15e{bottom:748.320007pt;}
.y86{bottom:749.119995pt;}
.yeb{bottom:749.600006pt;}
.y6b{bottom:755.520866pt;}
.y15d{bottom:761.440002pt;}
.y122{bottom:763.359985pt;}
.yc{bottom:764.799988pt;}
.y85{bottom:764.959991pt;}
.y6a{bottom:772.646519pt;}
.y15c{bottom:774.399994pt;}
.y121{bottom:779.200012pt;}
.yb{bottom:780.320007pt;}
.y15b{bottom:787.359985pt;}
.y69{bottom:789.765409pt;}
.y84{bottom:792.959991pt;}
.y120{bottom:795.040009pt;}
.y15a{bottom:800.320007pt;}
.y83{bottom:803.520004pt;}
.y68{bottom:807.039688pt;}
.y11f{bottom:811.039993pt;}
.ya{bottom:811.199997pt;}
.y159{bottom:813.440002pt;}
.y67{bottom:824.165320pt;}
.y158{bottom:826.399994pt;}
.y11e{bottom:826.880005pt;}
.y157{bottom:839.520004pt;}
.y66{bottom:841.284232pt;}
.y11d{bottom:842.720001pt;}
.y156{bottom:852.320007pt;}
.y9{bottom:857.440002pt;}
.y65{bottom:858.403122pt;}
.y11c{bottom:858.720001pt;}
.y155{bottom:865.440002pt;}
.y11b{bottom:874.720001pt;}
.y64{bottom:875.684143pt;}
.y154{bottom:878.399994pt;}
.y8{bottom:888.320007pt;}
.y11a{bottom:890.399994pt;}
.y153{bottom:891.520004pt;}
.y63{bottom:892.803033pt;}
.y7{bottom:903.839996pt;}
.y152{bottom:904.479996pt;}
.y119{bottom:906.399994pt;}
.y62{bottom:909.921934pt;}
.y151{bottom:917.440002pt;}
.y6{bottom:919.199997pt;}
.y78{bottom:919.683890pt;}
.y118{bottom:922.399994pt;}
.y61{bottom:927.202965pt;}
.y150{bottom:930.400002pt;}
.y5{bottom:934.720001pt;}
.y117{bottom:938.080002pt;}
.y14f{bottom:943.519997pt;}
.y4{bottom:953.760002pt;}
.y116{bottom:954.080002pt;}
.y14e{bottom:956.480003pt;}
.y7f{bottom:982.559998pt;}
.y1{bottom:998.560001pt;}
.he{height:1.918631pt;}
.h17{height:2.558127pt;}
.h15{height:11.515421pt;}
.hf{height:13.124124pt;}
.h11{height:16.322069pt;}
.h13{height:16.639243pt;}
.h16{height:30.171039pt;}
.h10{height:34.872959pt;}
.h1a{height:37.929111pt;}
.h1b{height:40.086202pt;}
.h12{height:43.200509pt;}
.h2{height:44.789333pt;}
.h5{height:45.391450pt;}
.h6{height:45.661637pt;}
.h1{height:46.526147pt;}
.hd{height:46.614191pt;}
.hb{height:47.679992pt;}
.ha{height:49.172166pt;}
.h3{height:49.566735pt;}
.h9{height:50.782883pt;}
.h8{height:50.783123pt;}
.h7{height:50.783127pt;}
.h1d{height:51.423083pt;}
.h1c{height:51.423263pt;}
.h18{height:54.941312pt;}
.h14{height:55.045279pt;}
.h19{height:74.648487pt;}
.h4{height:110.053376pt;}
.hc{height:216.953796pt;}
.h0{height:1056.000000pt;}
.w12{width:2.078934pt;}
.w17{width:2.401013pt;}
.wf{width:2.559674pt;}
.w13{width:2.563431pt;}
.wd{width:2.563937pt;}
.w5{width:2.720759pt;}
.w1c{width:4.156827pt;}
.w19{width:4.637061pt;}
.w7{width:5.116797pt;}
.w15{width:5.281220pt;}
.w2{width:6.242242pt;}
.wa{width:6.558097pt;}
.wb{width:7.998723pt;}
.w4{width:11.837519pt;}
.we{width:12.159567pt;}
.w3{width:18.878053pt;}
.wc{width:19.838616pt;}
.w1a{width:23.360824pt;}
.w16{width:27.843474pt;}
.w8{width:30.242782pt;}
.w1{width:35.840004pt;}
.w6{width:36.801594pt;}
.w1b{width:39.039415pt;}
.w9{width:40.323728pt;}
.w10{width:73.276791pt;}
.w14{width:80.003405pt;}
.w18{width:91.204649pt;}
.w11{width:228.799871pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:91.519997pt;}
.xf{left:101.761240pt;}
.x22{left:114.080002pt;}
.x10{left:121.438010pt;}
.x11{left:124.001947pt;}
.x3{left:127.360001pt;}
.x4{left:136.479996pt;}
.x12{left:138.401760pt;}
.x9{left:140.643113pt;}
.xa{left:159.363722pt;}
.xb{left:171.201241pt;}
.xc{left:173.922000pt;}
.x24{left:177.600006pt;}
.xd{left:210.403797pt;}
.x13{left:211.520969pt;}
.x2{left:221.279999pt;}
.x23{left:237.279999pt;}
.x25{left:256.799988pt;}
.x26{left:273.920013pt;}
.xe{left:275.841168pt;}
.x8{left:279.036613pt;}
.x1f{left:367.679993pt;}
.x1e{left:390.720001pt;}
.x21{left:395.359985pt;}
.x6{left:419.679993pt;}
.x14{left:440.320840pt;}
.x15{left:442.237408pt;}
.x16{left:444.638473pt;}
.x5{left:464.799988pt;}
.x17{left:524.479460pt;}
.x18{left:529.116521pt;}
.x19{left:556.959995pt;}
.x1a{left:558.716849pt;}
.x28{left:599.200012pt;}
.x29{left:603.200012pt;}
.x27{left:627.200012pt;}
.x1b{left:649.439704pt;}
.x1c{left:654.076765pt;}
.x1d{left:677.280527pt;}
.x7{left:702.400024pt;}
.x20{left:723.679993pt;}
}




    .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; }
  