
    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_68af807c1aeed2c183e1c893.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.206000;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_d224ec3bff4fc0b1b8797243.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.207000;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_c832ee10334d21445ae34dbb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.966000;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_363bd06d7dfbb96a4d658f19.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.909000;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);}
.v1{vertical-align:-8.845316px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:8.999996px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.076320px;}
.ls3{letter-spacing:0.109500px;}
.ls1{letter-spacing:0.112320px;}
.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;}
}
.ws1{word-spacing:-21.162232px;}
.ws4{word-spacing:-20.561032px;}
.ws2{word-spacing:-13.685755px;}
.ws3{word-spacing:-13.296955px;}
.ws0{word-spacing:0.000000px;}
._0{margin-left:-1.163498px;}
._6{width:1.247614px;}
._7{width:2.684261px;}
._12{width:4.316577px;}
._4{width:5.398155px;}
._5{width:6.640990px;}
._f{width:7.809904px;}
._10{width:8.963995px;}
._e{width:10.347091px;}
._2{width:11.746242px;}
._3{width:13.020037px;}
._8{width:14.410675px;}
._11{width:15.640826px;}
._b{width:16.759142px;}
._1{width:17.849536px;}
._c{width:18.949074px;}
._d{width:20.154529px;}
._1a{width:22.355575px;}
._15{width:23.772173px;}
._14{width:24.799103px;}
._13{width:26.691788px;}
._16{width:28.201964px;}
._17{width:29.286273px;}
._1b{width:31.096945px;}
._9{width:32.975879px;}
._a{width:34.392930px;}
._20{width:35.438384px;}
._18{width:36.593820px;}
._19{width:37.984810px;}
._1f{width:39.196960px;}
._2a{width:40.380937px;}
._1c{width:41.456887px;}
._1d{width:42.602515px;}
._21{width:43.605657px;}
._24{width:44.925334px;}
._25{width:52.797393px;}
._26{width:53.913065px;}
._28{width:56.116123px;}
._27{width:57.128149px;}
._2d{width:61.874046px;}
._2e{width:63.502730px;}
._2b{width:69.798783px;}
._2c{width:71.115271px;}
._22{width:131.055514px;}
._23{width:158.397947px;}
._29{width:174.478118px;}
._1e{width:191.277715px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(57,76,168);}
.fs3{font-size:29.999988px;}
.fs4{font-size:38.879984px;}
.fs1{font-size:42.119983px;}
.fs2{font-size:60.119976px;}
.fs0{font-size:83.879966px;}
.y0{bottom:0.000000px;}
.y2b{bottom:1.577550px;}
.y2d{bottom:1.577737px;}
.y1{bottom:85.561200px;}
.y22a{bottom:113.392120px;}
.y1c0{bottom:113.392270px;}
.y185{bottom:113.392420px;}
.y1aa{bottom:113.538775px;}
.y58{bottom:113.571970px;}
.yfc{bottom:113.643670px;}
.y1fd{bottom:114.628330px;}
.y14a{bottom:115.584220px;}
.y29{bottom:125.755565px;}
.y90{bottom:126.894215px;}
.y1fc{bottom:127.411130px;}
.ydc{bottom:131.013018px;}
.y1cd{bottom:131.669913px;}
.y1bf{bottom:131.670063px;}
.y184{bottom:131.670213px;}
.y80{bottom:131.715063px;}
.y1a9{bottom:131.816568px;}
.y57{bottom:131.848263px;}
.y163{bottom:131.900688px;}
.yfb{bottom:131.919963px;}
.ybc{bottom:131.943798px;}
.y2c{bottom:132.060960px;}
.y149{bottom:133.772012px;}
.y1fb{bottom:140.101125px;}
.y28{bottom:144.031858px;}
.ydb{bottom:149.289311px;}
.y1cc{bottom:149.855606px;}
.y1be{bottom:149.855756px;}
.y183{bottom:149.855906px;}
.y11f{bottom:149.886836px;}
.y7f{bottom:149.900756px;}
.y1a8{bottom:150.002261px;}
.y56{bottom:150.033956px;}
.y162{bottom:150.086981px;}
.yfa{bottom:150.105656px;}
.ybb{bottom:150.131591px;}
.y148{bottom:152.047705px;}
.y1fa{bottom:152.883925px;}
.y225{bottom:157.202753px;}
.y27{bottom:162.217551px;}
.y1f9{bottom:165.667430px;}
.yda{bottom:167.475004px;}
.y1cb{bottom:168.131899px;}
.y1bd{bottom:168.132049px;}
.y182{bottom:168.132199px;}
.y11e{bottom:168.163129px;}
.y7e{bottom:168.177049px;}
.y55{bottom:168.311748px;}
.y161{bottom:168.362673px;}
.yf9{bottom:168.383448px;}
.yba{bottom:168.407283px;}
.y147{bottom:170.233998px;}
.y224{bottom:175.480546px;}
.y1f8{bottom:178.450229px;}
.y26{bottom:180.493844px;}
.yd9{bottom:185.752796px;}
.y1ca{bottom:186.317591px;}
.y1bc{bottom:186.317741px;}
.y181{bottom:186.317891px;}
.y11d{bottom:186.350171px;}
.y7d{bottom:186.362741px;}
.y1a7{bottom:186.464246px;}
.y160{bottom:186.548966px;}
.yf8{bottom:186.569741px;}
.yb9{bottom:186.580211px;}
.y1f7{bottom:191.138814px;}
.y223{bottom:193.666838px;}
.y25{bottom:198.680886px;}
.y1f6{bottom:203.923024px;}
.yd8{bottom:203.939089px;}
.y1c9{bottom:204.595384px;}
.y180{bottom:204.595684px;}
.y11c{bottom:204.626464px;}
.y7c{bottom:204.640534px;}
.y13d{bottom:204.646909px;}
.y1a6{bottom:204.742039px;}
.y54{bottom:204.773734px;}
.y15f{bottom:204.826759px;}
.yf7{bottom:204.845434px;}
.yb8{bottom:204.857254px;}
.y146{bottom:206.697333px;}
.y222{bottom:211.942531px;}
.y1f5{bottom:216.705824px;}
.y24{bottom:216.957179px;}
.yd7{bottom:222.214782px;}
.y1c8{bottom:222.871677px;}
.y1bb{bottom:222.871827px;}
.y17f{bottom:222.871977px;}
.y11b{bottom:222.902157px;}
.y7b{bottom:222.916827px;}
.y13c{bottom:222.922602px;}
.y1a5{bottom:223.018332px;}
.yb7{bottom:223.031592px;}
.y53{bottom:223.049427px;}
.yf6{bottom:223.123227px;}
.y145{bottom:224.973026px;}
.y1f4{bottom:229.489329px;}
.y221{bottom:230.218824px;}
.y23{bottom:235.232872px;}
.y229{bottom:241.057369px;}
.y1ba{bottom:241.057519px;}
.y227{bottom:241.057669px;}
.y11a{bottom:241.088449px;}
.y7a{bottom:241.102519px;}
.y13b{bottom:241.108894px;}
.y1a4{bottom:241.204024px;}
.yb6{bottom:241.217284px;}
.y52{bottom:241.237219px;}
.y15e{bottom:241.288744px;}
.yf5{bottom:241.308919px;}
.y1f3{bottom:242.273539px;}
.y144{bottom:243.159319px;}
.y220{bottom:248.405866px;}
.y22{bottom:253.419164px;}
.y1f2{bottom:254.962124px;}
.yd6{bottom:258.678117px;}
.y1c7{bottom:259.333662px;}
.y1b9{bottom:259.333812px;}
.y17e{bottom:259.333962px;}
.y119{bottom:259.366242px;}
.y79{bottom:259.378812px;}
.y13a{bottom:259.385937px;}
.yf4{bottom:259.431927px;}
.y1a3{bottom:259.481817px;}
.yb5{bottom:259.493577px;}
.y51{bottom:259.513512px;}
.y15d{bottom:259.564437px;}
.y143{bottom:261.435011px;}
.y21f{bottom:266.682159px;}
.y1f1{bottom:267.744924px;}
.y21{bottom:271.696957px;}
.yd5{bottom:276.929105px;}
.y1c6{bottom:277.520705px;}
.y1b8{bottom:277.520855px;}
.y17d{bottom:277.521005px;}
.y78{bottom:277.565855px;}
.y139{bottom:277.572230px;}
.yf3{bottom:277.618220px;}
.y1a2{bottom:277.667510px;}
.yb4{bottom:277.681370px;}
.y50{bottom:277.699205px;}
.y15c{bottom:277.752230px;}
.y142{bottom:279.712804px;}
.y1f0{bottom:280.527724px;}
.y21e{bottom:284.867852px;}
.y20{bottom:289.882650px;}
.y1ef{bottom:293.311228px;}
.y1c5{bottom:295.796997px;}
.y1b7{bottom:295.797147px;}
.y17c{bottom:295.797297px;}
.y118{bottom:295.828227px;}
.y77{bottom:295.842147px;}
.y138{bottom:295.847922px;}
.yf2{bottom:295.893912px;}
.yb3{bottom:295.957062px;}
.y4f{bottom:295.976997px;}
.y15b{bottom:296.027922px;}
.y141{bottom:297.899097px;}
.y21d{bottom:303.145645px;}
.y1ee{bottom:306.095438px;}
.y1f{bottom:308.158943px;}
.y1c4{bottom:313.982690px;}
.y1b6{bottom:313.982840px;}
.y17b{bottom:313.982990px;}
.y117{bottom:314.013920px;}
.y76{bottom:314.027840px;}
.y137{bottom:314.034215px;}
.yf1{bottom:314.080205px;}
.y1a1{bottom:314.129495px;}
.yb2{bottom:314.143355px;}
.y4e{bottom:314.162690px;}
.y98{bottom:314.215175px;}
.y140{bottom:316.174789px;}
.y1ed{bottom:318.784023px;}
.y21c{bottom:321.331337px;}
.y1e{bottom:326.345985px;}
.y1ec{bottom:331.566823px;}
.yd4{bottom:331.578133px;}
.y1c3{bottom:332.260483px;}
.y1b5{bottom:332.260633px;}
.y17a{bottom:332.260783px;}
.y116{bottom:332.291713px;}
.y75{bottom:332.305633px;}
.y136{bottom:332.311258px;}
.y1a0{bottom:332.407288px;}
.y4d{bottom:332.438983px;}
.y13f{bottom:334.361082px;}
.y21b{bottom:339.607630px;}
.y1eb{bottom:344.349623px;}
.y1d{bottom:344.622278px;}
.y1c2{bottom:350.446176px;}
.y1b4{bottom:350.446326px;}
.y179{bottom:350.446476px;}
.y115{bottom:350.477406px;}
.y74{bottom:350.491326px;}
.y135{bottom:350.497551px;}
.yf0{bottom:350.543541px;}
.y19f{bottom:350.593581px;}
.yb1{bottom:350.606691px;}
.y4c{bottom:350.624676px;}
.y97{bottom:350.663811px;}
.y13e{bottom:352.638125px;}
.y1ea{bottom:357.134538px;}
.y1c{bottom:362.807971px;}
.y228{bottom:368.722468px;}
.y1b3{bottom:368.722618px;}
.y178{bottom:368.722768px;}
.y114{bottom:368.753698px;}
.y73{bottom:368.767618px;}
.y134{bottom:368.773843px;}
.yef{bottom:368.819833px;}
.y19e{bottom:368.869273px;}
.y4b{bottom:368.902468px;}
.y1e9{bottom:369.823123px;}
.y21a{bottom:376.070965px;}
.y1b{bottom:381.084263px;}
.y1e8{bottom:382.605923px;}
.y1c1{bottom:386.998161px;}
.y1d0{bottom:386.998311px;}
.y113{bottom:387.030741px;}
.y72{bottom:387.043311px;}
.y133{bottom:387.049536px;}
.yee{bottom:387.095526px;}
.y19d{bottom:387.147066px;}
.yd3{bottom:387.147276px;}
.y219{bottom:394.347258px;}
.y1e7{bottom:395.388723px;}
.y1a{bottom:399.361306px;}
.y1b2{bottom:405.185954px;}
.y177{bottom:405.186104px;}
.y112{bottom:405.217034px;}
.y15a{bottom:405.237179px;}
.y132{bottom:405.237329px;}
.yed{bottom:405.283319px;}
.y19c{bottom:405.332759px;}
.yd2{bottom:405.332969px;}
.y4a{bottom:405.364454px;}
.y1e6{bottom:408.173638px;}
.y218{bottom:412.532951px;}
.y19{bottom:417.547599px;}
.y1b1{bottom:423.462246px;}
.y176{bottom:423.462396px;}
.y111{bottom:423.492726px;}
.y71{bottom:423.507396px;}
.y159{bottom:423.512871px;}
.y131{bottom:423.513021px;}
.yec{bottom:423.559011px;}
.y19b{bottom:423.609051px;}
.yd1{bottom:423.609261px;}
.yb0{bottom:423.622011px;}
.y49{bottom:423.640746px;}
.y217{bottom:430.809243px;}
.y1e5{bottom:433.644977px;}
.y18{bottom:435.823291px;}
.y1b0{bottom:441.647939px;}
.y1cf{bottom:441.648089px;}
.y110{bottom:441.679019px;}
.y70{bottom:441.693089px;}
.y158{bottom:441.699164px;}
.y130{bottom:441.699314px;}
.yeb{bottom:441.745304px;}
.y19a{bottom:441.794744px;}
.yd0{bottom:441.794954px;}
.yaf{bottom:441.807704px;}
.y48{bottom:441.827789px;}
.y216{bottom:448.996286px;}
.y17{bottom:454.009584px;}
.y1af{bottom:459.924232px;}
.y226{bottom:459.924382px;}
.y10f{bottom:459.956812px;}
.y47{bottom:459.962752px;}
.y6f{bottom:459.969382px;}
.y157{bottom:459.976207px;}
.y12f{bottom:459.976357px;}
.yea{bottom:460.020997px;}
.y199{bottom:460.072537px;}
.ycf{bottom:460.072747px;}
.yae{bottom:460.083997px;}
.y215{bottom:467.272579px;}
.y1ae{bottom:478.111275px;}
.y175{bottom:478.111425px;}
.y10e{bottom:478.142505px;}
.y46{bottom:478.149045px;}
.y6e{bottom:478.156425px;}
.y156{bottom:478.162500px;}
.yce{bottom:478.258439px;}
.yad{bottom:478.269689px;}
.y1e4{bottom:482.825008px;}
.y214{bottom:485.458272px;}
.y16{bottom:490.472920px;}
.y1e3{bottom:495.609218px;}
.y1ad{bottom:496.387567px;}
.y174{bottom:496.387717px;}
.y45{bottom:496.426087px;}
.y6d{bottom:496.432717px;}
.y155{bottom:496.438192px;}
.ye9{bottom:496.484332px;}
.y198{bottom:496.534522px;}
.ycd{bottom:496.534732px;}
.yac{bottom:496.547482px;}
.y213{bottom:503.736064px;}
.y1e2{bottom:508.393427px;}
.y15{bottom:508.749212px;}
.y1ac{bottom:514.573260px;}
.y173{bottom:514.573410px;}
.y10d{bottom:514.604490px;}
.y44{bottom:514.612380px;}
.y6c{bottom:514.618410px;}
.y12e{bottom:514.624635px;}
.ye8{bottom:514.670625px;}
.yab{bottom:514.678230px;}
.y197{bottom:514.720215px;}
.ycc{bottom:514.720425px;}
.y1e1{bottom:521.176227px;}
.y212{bottom:521.922357px;}
.y14{bottom:526.936255px;}
.y1ab{bottom:532.849553px;}
.y172{bottom:532.849703px;}
.y10c{bottom:532.882283px;}
.y43{bottom:532.888073px;}
.y6b{bottom:532.896203px;}
.y154{bottom:532.902278px;}
.y12d{bottom:532.902428px;}
.ye7{bottom:532.948418px;}
.yaa{bottom:532.953923px;}
.y196{bottom:532.998008px;}
.y96{bottom:533.008238px;}
.y1e0{bottom:533.864812px;}
.y211{bottom:540.198050px;}
.y13{bottom:545.212548px;}
.y1df{bottom:546.647612px;}
.y195{bottom:551.127345px;}
.y171{bottom:551.127495px;}
.y10b{bottom:551.157975px;}
.y42{bottom:551.164365px;}
.y6a{bottom:551.172495px;}
.y12c{bottom:551.178120px;}
.ye6{bottom:551.224110px;}
.ycb{bottom:551.248500px;}
.y210{bottom:558.474342px;}
.y1de{bottom:559.432527px;}
.y12{bottom:563.488240px;}
.y194{bottom:569.313038px;}
.y170{bottom:569.313188px;}
.y10a{bottom:569.344268px;}
.y41{bottom:569.352158px;}
.y69{bottom:569.358188px;}
.y12b{bottom:569.364413px;}
.ya9{bottom:569.402558px;}
.ye5{bottom:569.410403px;}
.y95{bottom:569.453258px;}
.y1dd{bottom:572.215327px;}
.y20f{bottom:576.661385px;}
.y11{bottom:581.674533px;}
.y1dc{bottom:584.998127px;}
.y193{bottom:587.589331px;}
.y16f{bottom:587.589481px;}
.y109{bottom:587.622061px;}
.y40{bottom:587.627851px;}
.y153{bottom:587.639806px;}
.y20e{bottom:594.937678px;}
.y1db{bottom:597.686712px;}
.y10{bottom:599.952326px;}
.y192{bottom:605.776373px;}
.y16e{bottom:605.776523px;}
.y108{bottom:605.807753px;}
.y3f{bottom:605.814143px;}
.y68{bottom:605.821523px;}
.y152{bottom:605.827598px;}
.y12a{bottom:605.827748px;}
.ya8{bottom:605.864543px;}
.yca{bottom:605.898128px;}
.y1da{bottom:610.470922px;}
.y20d{bottom:613.123371px;}
.yf{bottom:618.138019px;}
.y1d9{bottom:623.254426px;}
.y191{bottom:624.052666px;}
.y16d{bottom:624.052816px;}
.y107{bottom:624.084046px;}
.y3e{bottom:624.089836px;}
.y67{bottom:624.097816px;}
.y8f{bottom:624.097966px;}
.y151{bottom:624.103291px;}
.y129{bottom:624.103441px;}
.ya7{bottom:624.142336px;}
.ye4{bottom:624.149431px;}
.yc9{bottom:624.168091px;}
.y1d8{bottom:636.037226px;}
.ye{bottom:636.414311px;}
.y190{bottom:642.238359px;}
.y1ce{bottom:642.238509px;}
.y106{bottom:642.269739px;}
.y3d{bottom:642.277629px;}
.y66{bottom:642.283509px;}
.y8e{bottom:642.283659px;}
.y150{bottom:642.289584px;}
.y128{bottom:642.289734px;}
.ya6{bottom:642.328029px;}
.yc8{bottom:642.354384px;}
.y1d7{bottom:648.820026px;}
.y20c{bottom:649.586706px;}
.yd{bottom:654.600004px;}
.y18f{bottom:660.514652px;}
.y16c{bottom:660.514802px;}
.y105{bottom:660.547532px;}
.y3c{bottom:660.553322px;}
.y65{bottom:660.559802px;}
.y8d{bottom:660.559952px;}
.y14f{bottom:660.566627px;}
.y127{bottom:660.566777px;}
.ya5{bottom:660.604322px;}
.yc7{bottom:660.604697px;}
.y1d6{bottom:661.510021px;}
.yc{bottom:672.877797px;}
.y1d5{bottom:674.292821px;}
.y18e{bottom:678.701694px;}
.y16b{bottom:678.701844px;}
.y104{bottom:678.733224px;}
.y64{bottom:678.746844px;}
.y8c{bottom:678.746994px;}
.y126{bottom:678.753069px;}
.ya4{bottom:678.790014px;}
.yc6{bottom:678.790389px;}
.ye3{bottom:678.799059px;}
.y20b{bottom:686.049291px;}
.y1d4{bottom:687.075621px;}
.yb{bottom:691.063489px;}
.y18d{bottom:696.977987px;}
.y16a{bottom:696.978137px;}
.y3b{bottom:697.016657px;}
.y63{bottom:697.023137px;}
.y8b{bottom:697.023287px;}
.y14e{bottom:697.029212px;}
.y125{bottom:697.029362px;}
.ye2{bottom:697.049342px;}
.ya3{bottom:697.067807px;}
.y1d3{bottom:699.858421px;}
.y20a{bottom:704.326334px;}
.ya{bottom:709.339782px;}
.y1d2{bottom:712.642631px;}
.y18c{bottom:715.254280px;}
.y169{bottom:715.254430px;}
.y3a{bottom:715.292950px;}
.y62{bottom:715.299430px;}
.y8a{bottom:715.299580px;}
.y14d{bottom:715.304905px;}
.y124{bottom:715.305055px;}
.yc5{bottom:715.318465px;}
.ye1{bottom:715.325635px;}
.ya2{bottom:715.337770px;}
.y209{bottom:722.602627px;}
.y18b{bottom:733.439972px;}
.y168{bottom:733.440122px;}
.y103{bottom:733.472852px;}
.ya1{bottom:733.475657px;}
.y39{bottom:733.478642px;}
.y61{bottom:733.486472px;}
.y14c{bottom:733.492697px;}
.y1d1{bottom:738.113971px;}
.y208{bottom:740.788319px;}
.y9{bottom:745.803117px;}
.y18a{bottom:751.717765px;}
.y167{bottom:751.717915px;}
.ya0{bottom:751.753450px;}
.y38{bottom:751.754935px;}
.y60{bottom:751.762765px;}
.y89{bottom:751.762915px;}
.y123{bottom:751.768390px;}
.yc4{bottom:751.781050px;}
.ye0{bottom:751.788970px;}
.y94{bottom:751.797685px;}
.y207{bottom:759.064612px;}
.y189{bottom:769.903458px;}
.y166{bottom:769.903608px;}
.ydf{bottom:769.904358px;}
.y102{bottom:769.934838px;}
.y37{bottom:769.942728px;}
.y5f{bottom:769.948458px;}
.y88{bottom:769.948608px;}
.y122{bottom:769.954683px;}
.yc3{bottom:769.967343px;}
.y206{bottom:777.251655px;}
.y188{bottom:788.179751px;}
.y165{bottom:788.179901px;}
.yde{bottom:788.180651px;}
.y9f{bottom:788.200585px;}
.y101{bottom:788.212630px;}
.y36{bottom:788.218420px;}
.y5e{bottom:788.224750px;}
.y87{bottom:788.224900px;}
.y121{bottom:788.230375px;}
.yc2{bottom:788.237410px;}
.y93{bottom:788.244220px;}
.y205{bottom:795.527948px;}
.y187{bottom:806.366793px;}
.y164{bottom:806.366943px;}
.y100{bottom:806.398323px;}
.y35{bottom:806.404713px;}
.y5d{bottom:806.411793px;}
.y86{bottom:806.411943px;}
.yc1{bottom:806.417478px;}
.y120{bottom:806.418168px;}
.y8{bottom:818.728438px;}
.y14b{bottom:824.643086px;}
.ydd{bottom:824.643236px;}
.y9e{bottom:824.663921px;}
.yff{bottom:824.674616px;}
.yc0{bottom:824.679806px;}
.y34{bottom:824.680406px;}
.y5c{bottom:824.688086px;}
.y85{bottom:824.688236px;}
.y7{bottom:837.004731px;}
.y5b{bottom:842.828779px;}
.y84{bottom:842.828929px;}
.y9d{bottom:842.849614px;}
.yfe{bottom:842.860309px;}
.ybf{bottom:842.867599px;}
.y33{bottom:842.868199px;}
.y204{bottom:844.751628px;}
.y6{bottom:855.190424px;}
.ybe{bottom:861.104621px;}
.y186{bottom:861.105071px;}
.y32{bottom:861.105221px;}
.y9c{bottom:861.125906px;}
.yfd{bottom:861.138101px;}
.y203{bottom:862.937921px;}
.y5{bottom:873.468216px;}
.ybd{bottom:879.382414px;}
.y5a{bottom:879.382864px;}
.y83{bottom:879.383014px;}
.y9b{bottom:879.402949px;}
.y202{bottom:881.213913px;}
.y4{bottom:891.743909px;}
.y31{bottom:897.568557px;}
.y82{bottom:897.568707px;}
.y9a{bottom:897.589242px;}
.y59{bottom:915.844849px;}
.y81{bottom:915.844999px;}
.y99{bottom:915.864934px;}
.y92{bottom:915.865579px;}
.y3{bottom:923.963896px;}
.y30{bottom:934.030542px;}
.y201{bottom:936.828281px;}
.y200{bottom:949.611786px;}
.y2f{bottom:952.307585px;}
.y91{bottom:952.307885px;}
.y1ff{bottom:962.395291px;}
.y2{bottom:964.373880px;}
.y2e{bottom:970.493878px;}
.y1fe{bottom:975.083876px;}
.y2a{bottom:1123.560000px;}
.h8{height:7.500240px;}
.h6{height:8.305200px;}
.h7{height:26.909989px;}
.h3{height:42.119983px;}
.h1b{height:42.162103px;}
.h5{height:45.691182px;}
.hd{height:60.119976px;}
.he{height:60.128436px;}
.hc{height:60.145296px;}
.h4{height:60.180096px;}
.h13{height:60.202596px;}
.h10{height:60.205416px;}
.h14{height:60.224016px;}
.h12{height:60.233556px;}
.h15{height:60.281316px;}
.h17{height:60.284136px;}
.h9{height:60.334776px;}
.hb{height:60.360096px;}
.hf{height:60.371316px;}
.h11{height:60.402276px;}
.h16{height:60.461316px;}
.ha{height:60.745416px;}
.h1a{height:60.767916px;}
.h18{height:60.793236px;}
.h19{height:60.900096px;}
.h2{height:83.879966px;}
.h1{height:1091.998800px;}
.h0{height:1263.000000px;}
.w3{width:8.344800px;}
.w2{width:542.616480px;}
.w1{width:772.499160px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:59.970240px;}
.xa{left:85.070252px;}
.xd{left:93.397499px;}
.xe{left:95.320498px;}
.x9{left:138.171731px;}
.xb{left:174.912120px;}
.x4{left:179.819664px;}
.xf{left:253.349635px;}
.x8{left:256.787183px;}
.x2{left:343.169599px;}
.xc{left:442.047600px;}
.x10{left:462.152101px;}
.x6{left:477.458395px;}
.x3{left:528.479525px;}
.x7{left:562.332561px;}
.x5{left:586.892051px;}
@media print{
.v1{vertical-align:-7.862504pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:7.999997pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.067840pt;}
.ls3{letter-spacing:0.097333pt;}
.ls1{letter-spacing:0.099840pt;}
.ws1{word-spacing:-18.810872pt;}
.ws4{word-spacing:-18.276473pt;}
.ws2{word-spacing:-12.165115pt;}
.ws3{word-spacing:-11.819515pt;}
.ws0{word-spacing:0.000000pt;}
._0{margin-left:-1.034220pt;}
._6{width:1.108991pt;}
._7{width:2.386010pt;}
._12{width:3.836957pt;}
._4{width:4.798360pt;}
._5{width:5.903102pt;}
._f{width:6.942137pt;}
._10{width:7.967995pt;}
._e{width:9.197414pt;}
._2{width:10.441104pt;}
._3{width:11.573366pt;}
._8{width:12.809489pt;}
._11{width:13.902956pt;}
._b{width:14.897015pt;}
._1{width:15.866254pt;}
._c{width:16.843621pt;}
._d{width:17.915137pt;}
._1a{width:19.871622pt;}
._15{width:21.130820pt;}
._14{width:22.043647pt;}
._13{width:23.726034pt;}
._16{width:25.068413pt;}
._17{width:26.032243pt;}
._1b{width:27.641729pt;}
._9{width:29.311892pt;}
._a{width:30.571494pt;}
._20{width:31.500786pt;}
._18{width:32.527840pt;}
._19{width:33.764276pt;}
._1f{width:34.841742pt;}
._2a{width:35.894166pt;}
._1c{width:36.850567pt;}
._1d{width:37.868902pt;}
._21{width:38.760584pt;}
._24{width:39.933630pt;}
._25{width:46.931016pt;}
._26{width:47.922725pt;}
._28{width:49.880998pt;}
._27{width:50.780577pt;}
._2d{width:54.999152pt;}
._2e{width:56.446871pt;}
._2b{width:62.043363pt;}
._2c{width:63.213574pt;}
._22{width:116.493790pt;}
._23{width:140.798175pt;}
._29{width:155.091660pt;}
._1e{width:170.024636pt;}
.fs3{font-size:26.666656pt;}
.fs4{font-size:34.559986pt;}
.fs1{font-size:37.439985pt;}
.fs2{font-size:53.439979pt;}
.fs0{font-size:74.559970pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:1.402267pt;}
.y2d{bottom:1.402432pt;}
.y1{bottom:76.054400pt;}
.y22a{bottom:100.792996pt;}
.y1c0{bottom:100.793129pt;}
.y185{bottom:100.793263pt;}
.y1aa{bottom:100.923356pt;}
.y58{bottom:100.952863pt;}
.yfc{bottom:101.016596pt;}
.y1fd{bottom:101.891849pt;}
.y14a{bottom:102.741528pt;}
.y29{bottom:111.782725pt;}
.y90{bottom:112.794858pt;}
.y1fc{bottom:113.254338pt;}
.ydc{bottom:116.456016pt;}
.y1cd{bottom:117.039923pt;}
.y1bf{bottom:117.040056pt;}
.y184{bottom:117.040189pt;}
.y80{bottom:117.080056pt;}
.y1a9{bottom:117.170283pt;}
.y57{bottom:117.198456pt;}
.y163{bottom:117.245056pt;}
.yfb{bottom:117.262189pt;}
.ybc{bottom:117.283376pt;}
.y2c{bottom:117.387520pt;}
.y149{bottom:118.908455pt;}
.y1fb{bottom:124.534333pt;}
.y28{bottom:128.028318pt;}
.ydb{bottom:132.701610pt;}
.y1cc{bottom:133.204983pt;}
.y1be{bottom:133.205116pt;}
.y183{bottom:133.205250pt;}
.y11f{bottom:133.232743pt;}
.y7f{bottom:133.245116pt;}
.y1a8{bottom:133.335343pt;}
.y56{bottom:133.363516pt;}
.y162{bottom:133.410650pt;}
.yfa{bottom:133.427250pt;}
.ybb{bottom:133.450303pt;}
.y148{bottom:135.153516pt;}
.y1fa{bottom:135.896822pt;}
.y225{bottom:139.735780pt;}
.y27{bottom:144.193379pt;}
.y1f9{bottom:147.259937pt;}
.yda{bottom:148.866670pt;}
.y1cb{bottom:149.450576pt;}
.y1bd{bottom:149.450710pt;}
.y182{bottom:149.450843pt;}
.y11e{bottom:149.478336pt;}
.y7e{bottom:149.490710pt;}
.y55{bottom:149.610443pt;}
.y161{bottom:149.655710pt;}
.yf9{bottom:149.674176pt;}
.yba{bottom:149.695363pt;}
.y147{bottom:151.319109pt;}
.y224{bottom:155.982707pt;}
.y1f8{bottom:158.622426pt;}
.y26{bottom:160.438972pt;}
.yd9{bottom:165.113597pt;}
.y1ca{bottom:165.615637pt;}
.y1bc{bottom:165.615770pt;}
.y181{bottom:165.615903pt;}
.y11d{bottom:165.644597pt;}
.y7d{bottom:165.655770pt;}
.y1a7{bottom:165.745997pt;}
.y160{bottom:165.821303pt;}
.yf8{bottom:165.839770pt;}
.yb9{bottom:165.849077pt;}
.y1f7{bottom:169.901168pt;}
.y223{bottom:172.148301pt;}
.y25{bottom:176.605232pt;}
.y1f6{bottom:181.264910pt;}
.yd8{bottom:181.279190pt;}
.y1c9{bottom:181.862563pt;}
.y180{bottom:181.862830pt;}
.y11c{bottom:181.890190pt;}
.y7c{bottom:181.902697pt;}
.y13d{bottom:181.908363pt;}
.y1a6{bottom:181.992923pt;}
.y54{bottom:182.021097pt;}
.y15f{bottom:182.068230pt;}
.yf7{bottom:182.084830pt;}
.yb8{bottom:182.095337pt;}
.y146{bottom:183.730963pt;}
.y222{bottom:188.393361pt;}
.y1f5{bottom:192.627399pt;}
.y24{bottom:192.850826pt;}
.yd7{bottom:197.524251pt;}
.y1c8{bottom:198.108157pt;}
.y1bb{bottom:198.108290pt;}
.y17f{bottom:198.108424pt;}
.y11b{bottom:198.135250pt;}
.y7b{bottom:198.148290pt;}
.y13c{bottom:198.153424pt;}
.y1a5{bottom:198.238517pt;}
.yb7{bottom:198.250304pt;}
.y53{bottom:198.266157pt;}
.yf6{bottom:198.331757pt;}
.y145{bottom:199.976023pt;}
.y1f4{bottom:203.990515pt;}
.y221{bottom:204.638954pt;}
.y23{bottom:209.095886pt;}
.y229{bottom:214.273217pt;}
.y1ba{bottom:214.273351pt;}
.y227{bottom:214.273484pt;}
.y11a{bottom:214.300844pt;}
.y7a{bottom:214.313351pt;}
.y13b{bottom:214.319017pt;}
.y1a4{bottom:214.403577pt;}
.yb6{bottom:214.415364pt;}
.y52{bottom:214.433084pt;}
.y15e{bottom:214.478884pt;}
.yf5{bottom:214.496817pt;}
.y1f3{bottom:215.354257pt;}
.y144{bottom:216.141616pt;}
.y220{bottom:220.805215pt;}
.y22{bottom:225.261479pt;}
.y1f2{bottom:226.632999pt;}
.yd6{bottom:229.936104pt;}
.y1c7{bottom:230.518811pt;}
.y1b9{bottom:230.518944pt;}
.y17e{bottom:230.519077pt;}
.y119{bottom:230.547771pt;}
.y79{bottom:230.558944pt;}
.y13a{bottom:230.565277pt;}
.yf4{bottom:230.606157pt;}
.y1a3{bottom:230.650504pt;}
.yb5{bottom:230.660957pt;}
.y51{bottom:230.678677pt;}
.y15d{bottom:230.723944pt;}
.y143{bottom:232.386677pt;}
.y21f{bottom:237.050808pt;}
.y1f1{bottom:237.995488pt;}
.y21{bottom:241.508406pt;}
.yd5{bottom:246.159204pt;}
.y1c6{bottom:246.685071pt;}
.y1b8{bottom:246.685204pt;}
.y17d{bottom:246.685338pt;}
.y78{bottom:246.725204pt;}
.y139{bottom:246.730871pt;}
.yf3{bottom:246.771751pt;}
.y1a2{bottom:246.815564pt;}
.yb4{bottom:246.827884pt;}
.y50{bottom:246.843738pt;}
.y15c{bottom:246.890871pt;}
.y142{bottom:248.633603pt;}
.y1f0{bottom:249.357977pt;}
.y21e{bottom:253.215868pt;}
.y20{bottom:257.673467pt;}
.y1ef{bottom:260.721092pt;}
.y1c5{bottom:262.930664pt;}
.y1b7{bottom:262.930798pt;}
.y17c{bottom:262.930931pt;}
.y118{bottom:262.958424pt;}
.y77{bottom:262.970798pt;}
.y138{bottom:262.975931pt;}
.yf2{bottom:263.016811pt;}
.yb3{bottom:263.072944pt;}
.y4f{bottom:263.090664pt;}
.y15b{bottom:263.135931pt;}
.y141{bottom:264.799197pt;}
.y21d{bottom:269.462795pt;}
.y1ee{bottom:272.084834pt;}
.y1f{bottom:273.919060pt;}
.y1c4{bottom:279.095725pt;}
.y1b6{bottom:279.095858pt;}
.y17b{bottom:279.095991pt;}
.y117{bottom:279.123485pt;}
.y76{bottom:279.135858pt;}
.y137{bottom:279.141525pt;}
.yf1{bottom:279.182405pt;}
.y1a1{bottom:279.226218pt;}
.yb2{bottom:279.238538pt;}
.y4e{bottom:279.255725pt;}
.y98{bottom:279.302378pt;}
.y140{bottom:281.044257pt;}
.y1ed{bottom:283.363576pt;}
.y21c{bottom:285.627855pt;}
.y1e{bottom:290.085320pt;}
.y1ec{bottom:294.726065pt;}
.yd4{bottom:294.736118pt;}
.y1c3{bottom:295.342651pt;}
.y1b5{bottom:295.342785pt;}
.y17a{bottom:295.342918pt;}
.y116{bottom:295.370411pt;}
.y75{bottom:295.382785pt;}
.y136{bottom:295.387785pt;}
.y1a0{bottom:295.473145pt;}
.y4d{bottom:295.501318pt;}
.y13f{bottom:297.209851pt;}
.y21b{bottom:301.873449pt;}
.y1eb{bottom:306.088554pt;}
.y1d{bottom:306.330914pt;}
.y1c2{bottom:311.507712pt;}
.y1b4{bottom:311.507845pt;}
.y179{bottom:311.507978pt;}
.y115{bottom:311.535472pt;}
.y74{bottom:311.547845pt;}
.y135{bottom:311.553378pt;}
.yf0{bottom:311.594258pt;}
.y19f{bottom:311.638738pt;}
.yb1{bottom:311.650392pt;}
.y4c{bottom:311.666378pt;}
.y97{bottom:311.701165pt;}
.y13e{bottom:313.456111pt;}
.y1ea{bottom:317.452923pt;}
.y1c{bottom:322.495974pt;}
.y228{bottom:327.753305pt;}
.y1b3{bottom:327.753438pt;}
.y178{bottom:327.753572pt;}
.y114{bottom:327.781065pt;}
.y73{bottom:327.793438pt;}
.y134{bottom:327.798972pt;}
.yef{bottom:327.839852pt;}
.y19e{bottom:327.883798pt;}
.y4b{bottom:327.913305pt;}
.y1e9{bottom:328.731665pt;}
.y21a{bottom:334.285303pt;}
.y1b{bottom:338.741567pt;}
.y1e8{bottom:340.094154pt;}
.y1c1{bottom:343.998365pt;}
.y1d0{bottom:343.998499pt;}
.y113{bottom:344.027325pt;}
.y72{bottom:344.038499pt;}
.y133{bottom:344.044032pt;}
.yee{bottom:344.084912pt;}
.y19d{bottom:344.130725pt;}
.yd3{bottom:344.130912pt;}
.y219{bottom:350.530896pt;}
.y1e7{bottom:351.456642pt;}
.y1a{bottom:354.987828pt;}
.y1b2{bottom:360.165292pt;}
.y177{bottom:360.165426pt;}
.y112{bottom:360.192919pt;}
.y15a{bottom:360.210825pt;}
.y132{bottom:360.210959pt;}
.yed{bottom:360.251839pt;}
.y19c{bottom:360.295785pt;}
.yd2{bottom:360.295972pt;}
.y4a{bottom:360.323959pt;}
.y1e6{bottom:362.821011pt;}
.y218{bottom:366.695956pt;}
.y19{bottom:371.153421pt;}
.y1b1{bottom:376.410886pt;}
.y176{bottom:376.411019pt;}
.y111{bottom:376.437979pt;}
.y71{bottom:376.451019pt;}
.y159{bottom:376.455886pt;}
.y131{bottom:376.456019pt;}
.yec{bottom:376.496899pt;}
.y19b{bottom:376.541379pt;}
.yd1{bottom:376.541566pt;}
.yb0{bottom:376.552899pt;}
.y49{bottom:376.569552pt;}
.y217{bottom:382.941550pt;}
.y1e5{bottom:385.462202pt;}
.y18{bottom:387.398481pt;}
.y1b0{bottom:392.575946pt;}
.y1cf{bottom:392.576079pt;}
.y110{bottom:392.603573pt;}
.y70{bottom:392.616079pt;}
.y158{bottom:392.621479pt;}
.y130{bottom:392.621613pt;}
.yeb{bottom:392.662493pt;}
.y19a{bottom:392.706439pt;}
.yd0{bottom:392.706626pt;}
.yaf{bottom:392.717959pt;}
.y48{bottom:392.735812pt;}
.y216{bottom:399.107810pt;}
.y17{bottom:403.564075pt;}
.y1af{bottom:408.821539pt;}
.y226{bottom:408.821673pt;}
.y10f{bottom:408.850499pt;}
.y47{bottom:408.855779pt;}
.y6f{bottom:408.861673pt;}
.y157{bottom:408.867739pt;}
.y12f{bottom:408.867873pt;}
.yea{bottom:408.907553pt;}
.y199{bottom:408.953366pt;}
.ycf{bottom:408.953553pt;}
.yae{bottom:408.963553pt;}
.y215{bottom:415.353403pt;}
.y1ae{bottom:424.987800pt;}
.y175{bottom:424.987933pt;}
.y10e{bottom:425.015560pt;}
.y46{bottom:425.021373pt;}
.y6e{bottom:425.027933pt;}
.y156{bottom:425.033333pt;}
.yce{bottom:425.118613pt;}
.yad{bottom:425.128613pt;}
.y1e4{bottom:429.177785pt;}
.y214{bottom:431.518464pt;}
.y16{bottom:435.975929pt;}
.y1e3{bottom:440.541527pt;}
.y1ad{bottom:441.233393pt;}
.y174{bottom:441.233526pt;}
.y45{bottom:441.267633pt;}
.y6d{bottom:441.273526pt;}
.y155{bottom:441.278393pt;}
.ye9{bottom:441.319406pt;}
.y198{bottom:441.364020pt;}
.ycd{bottom:441.364206pt;}
.yac{bottom:441.375540pt;}
.y213{bottom:447.765390pt;}
.y1e2{bottom:451.905269pt;}
.y15{bottom:452.221522pt;}
.y1ac{bottom:457.398453pt;}
.y173{bottom:457.398587pt;}
.y10d{bottom:457.426213pt;}
.y44{bottom:457.433227pt;}
.y6c{bottom:457.438587pt;}
.y12e{bottom:457.444120pt;}
.ye8{bottom:457.485000pt;}
.yab{bottom:457.491760pt;}
.y197{bottom:457.529080pt;}
.ycc{bottom:457.529267pt;}
.y1e1{bottom:463.267758pt;}
.y212{bottom:463.930984pt;}
.y14{bottom:468.387782pt;}
.y1ab{bottom:473.644047pt;}
.y172{bottom:473.644180pt;}
.y10c{bottom:473.673140pt;}
.y43{bottom:473.678287pt;}
.y6b{bottom:473.685513pt;}
.y154{bottom:473.690913pt;}
.y12d{bottom:473.691047pt;}
.ye7{bottom:473.731927pt;}
.yaa{bottom:473.736820pt;}
.y196{bottom:473.776007pt;}
.y96{bottom:473.785100pt;}
.y1e0{bottom:474.546500pt;}
.y211{bottom:480.176044pt;}
.y13{bottom:484.633376pt;}
.y1df{bottom:485.908989pt;}
.y195{bottom:489.890974pt;}
.y171{bottom:489.891107pt;}
.y10b{bottom:489.918200pt;}
.y42{bottom:489.923880pt;}
.y6a{bottom:489.931107pt;}
.y12c{bottom:489.936107pt;}
.ye6{bottom:489.976987pt;}
.ycb{bottom:489.998667pt;}
.y210{bottom:496.421638pt;}
.y1de{bottom:497.273357pt;}
.y12{bottom:500.878436pt;}
.y194{bottom:506.056034pt;}
.y170{bottom:506.056167pt;}
.y10a{bottom:506.083794pt;}
.y41{bottom:506.090807pt;}
.y69{bottom:506.096167pt;}
.y12b{bottom:506.101700pt;}
.ya9{bottom:506.135607pt;}
.ye5{bottom:506.142580pt;}
.y95{bottom:506.180674pt;}
.y1dd{bottom:508.635846pt;}
.y20f{bottom:512.587898pt;}
.y11{bottom:517.044029pt;}
.y1dc{bottom:519.998335pt;}
.y193{bottom:522.301627pt;}
.y16f{bottom:522.301761pt;}
.y109{bottom:522.330721pt;}
.y40{bottom:522.335867pt;}
.y153{bottom:522.346494pt;}
.y20e{bottom:528.833491pt;}
.y1db{bottom:531.277077pt;}
.y10{bottom:533.290956pt;}
.y192{bottom:538.467888pt;}
.y16e{bottom:538.468021pt;}
.y108{bottom:538.495781pt;}
.y3f{bottom:538.501461pt;}
.y68{bottom:538.508021pt;}
.y152{bottom:538.513421pt;}
.y12a{bottom:538.513554pt;}
.ya8{bottom:538.546261pt;}
.yca{bottom:538.576114pt;}
.y1da{bottom:542.640819pt;}
.y20d{bottom:544.998552pt;}
.yf{bottom:549.456016pt;}
.y1d9{bottom:554.003935pt;}
.y191{bottom:554.713481pt;}
.y16d{bottom:554.713614pt;}
.y107{bottom:554.741374pt;}
.y3e{bottom:554.746521pt;}
.y67{bottom:554.753614pt;}
.y8f{bottom:554.753748pt;}
.y151{bottom:554.758481pt;}
.y129{bottom:554.758614pt;}
.ya7{bottom:554.793188pt;}
.ye4{bottom:554.799494pt;}
.yc9{bottom:554.816081pt;}
.y1d8{bottom:565.366423pt;}
.ye{bottom:565.701610pt;}
.y190{bottom:570.878541pt;}
.y1ce{bottom:570.878675pt;}
.y106{bottom:570.906435pt;}
.y3d{bottom:570.913448pt;}
.y66{bottom:570.918675pt;}
.y8e{bottom:570.918808pt;}
.y150{bottom:570.924075pt;}
.y128{bottom:570.924208pt;}
.ya6{bottom:570.958248pt;}
.yc8{bottom:570.981675pt;}
.y1d7{bottom:576.728912pt;}
.y20c{bottom:577.410405pt;}
.yd{bottom:581.866670pt;}
.y18f{bottom:587.124135pt;}
.y16c{bottom:587.124268pt;}
.y105{bottom:587.153361pt;}
.y3c{bottom:587.158508pt;}
.y65{bottom:587.164268pt;}
.y8d{bottom:587.164401pt;}
.y14f{bottom:587.170335pt;}
.y127{bottom:587.170468pt;}
.ya5{bottom:587.203841pt;}
.yc7{bottom:587.204175pt;}
.y1d6{bottom:588.008908pt;}
.yc{bottom:598.113597pt;}
.y1d5{bottom:599.371396pt;}
.y18e{bottom:603.290395pt;}
.y16b{bottom:603.290528pt;}
.y104{bottom:603.318422pt;}
.y64{bottom:603.330528pt;}
.y8c{bottom:603.330662pt;}
.y126{bottom:603.336062pt;}
.ya4{bottom:603.368902pt;}
.yc6{bottom:603.369235pt;}
.ye3{bottom:603.376942pt;}
.y20b{bottom:609.821592pt;}
.y1d4{bottom:610.733885pt;}
.yb{bottom:614.278657pt;}
.y18d{bottom:619.535988pt;}
.y16a{bottom:619.536122pt;}
.y3b{bottom:619.570362pt;}
.y63{bottom:619.576122pt;}
.y8b{bottom:619.576255pt;}
.y14e{bottom:619.581522pt;}
.y125{bottom:619.581655pt;}
.ye2{bottom:619.599415pt;}
.ya3{bottom:619.615828pt;}
.y1d3{bottom:622.096374pt;}
.y20a{bottom:626.067852pt;}
.ya{bottom:630.524251pt;}
.y1d2{bottom:633.460116pt;}
.y18c{bottom:635.781582pt;}
.y169{bottom:635.781715pt;}
.y3a{bottom:635.815955pt;}
.y62{bottom:635.821715pt;}
.y8a{bottom:635.821849pt;}
.y14d{bottom:635.826582pt;}
.y124{bottom:635.826715pt;}
.yc5{bottom:635.838635pt;}
.ye1{bottom:635.845009pt;}
.ya2{bottom:635.855795pt;}
.y209{bottom:642.313446pt;}
.y18b{bottom:651.946642pt;}
.y168{bottom:651.946775pt;}
.y103{bottom:651.975869pt;}
.ya1{bottom:651.978362pt;}
.y39{bottom:651.981015pt;}
.y61{bottom:651.987975pt;}
.y14c{bottom:651.993509pt;}
.y1d1{bottom:656.101307pt;}
.y208{bottom:658.478506pt;}
.y9{bottom:662.936104pt;}
.y18a{bottom:668.193569pt;}
.y167{bottom:668.193702pt;}
.ya0{bottom:668.225289pt;}
.y38{bottom:668.226609pt;}
.y60{bottom:668.233569pt;}
.y89{bottom:668.233702pt;}
.y123{bottom:668.238569pt;}
.yc4{bottom:668.249822pt;}
.ye0{bottom:668.256862pt;}
.y94{bottom:668.264609pt;}
.y207{bottom:674.724100pt;}
.y189{bottom:684.358629pt;}
.y166{bottom:684.358763pt;}
.ydf{bottom:684.359429pt;}
.y102{bottom:684.386522pt;}
.y37{bottom:684.393536pt;}
.y5f{bottom:684.398629pt;}
.y88{bottom:684.398762pt;}
.y122{bottom:684.404162pt;}
.yc3{bottom:684.415416pt;}
.y206{bottom:690.890360pt;}
.y188{bottom:700.604223pt;}
.y165{bottom:700.604356pt;}
.yde{bottom:700.605023pt;}
.y9f{bottom:700.622743pt;}
.y101{bottom:700.633449pt;}
.y36{bottom:700.638596pt;}
.y5e{bottom:700.644223pt;}
.y87{bottom:700.644356pt;}
.y121{bottom:700.649223pt;}
.yc2{bottom:700.655476pt;}
.y93{bottom:700.661529pt;}
.y205{bottom:707.135953pt;}
.y187{bottom:716.770483pt;}
.y164{bottom:716.770616pt;}
.y100{bottom:716.798510pt;}
.y35{bottom:716.804190pt;}
.y5d{bottom:716.810483pt;}
.y86{bottom:716.810616pt;}
.yc1{bottom:716.815536pt;}
.y120{bottom:716.816150pt;}
.y8{bottom:727.758612pt;}
.y14b{bottom:733.016076pt;}
.ydd{bottom:733.016210pt;}
.y9e{bottom:733.034596pt;}
.yff{bottom:733.044103pt;}
.yc0{bottom:733.048716pt;}
.y34{bottom:733.049250pt;}
.y5c{bottom:733.056076pt;}
.y85{bottom:733.056210pt;}
.y7{bottom:744.004205pt;}
.y5b{bottom:749.181137pt;}
.y84{bottom:749.181270pt;}
.y9d{bottom:749.199657pt;}
.yfe{bottom:749.209163pt;}
.ybf{bottom:749.215643pt;}
.y33{bottom:749.216177pt;}
.y204{bottom:750.890336pt;}
.y6{bottom:760.169266pt;}
.ybe{bottom:765.426330pt;}
.y186{bottom:765.426730pt;}
.y32{bottom:765.426863pt;}
.y9c{bottom:765.445250pt;}
.yfd{bottom:765.456090pt;}
.y203{bottom:767.055929pt;}
.y5{bottom:776.416192pt;}
.ybd{bottom:781.673257pt;}
.y5a{bottom:781.673657pt;}
.y83{bottom:781.673790pt;}
.y9b{bottom:781.691510pt;}
.y202{bottom:783.301256pt;}
.y4{bottom:792.661253pt;}
.y31{bottom:797.838717pt;}
.y82{bottom:797.838850pt;}
.y9a{bottom:797.857104pt;}
.y59{bottom:814.084311pt;}
.y81{bottom:814.084444pt;}
.y99{bottom:814.102164pt;}
.y92{bottom:814.102737pt;}
.y3{bottom:821.301241pt;}
.y30{bottom:830.249371pt;}
.y201{bottom:832.736250pt;}
.y200{bottom:844.099365pt;}
.y2f{bottom:846.495631pt;}
.y91{bottom:846.495898pt;}
.y1ff{bottom:855.462481pt;}
.y2{bottom:857.221227pt;}
.y2e{bottom:862.661225pt;}
.y1fe{bottom:866.741223pt;}
.y2a{bottom:998.720000pt;}
.h8{height:6.666880pt;}
.h6{height:7.382400pt;}
.h7{height:23.919990pt;}
.h3{height:37.439985pt;}
.h1b{height:37.477425pt;}
.h5{height:40.614384pt;}
.hd{height:53.439979pt;}
.he{height:53.447499pt;}
.hc{height:53.462485pt;}
.h4{height:53.493419pt;}
.h13{height:53.513419pt;}
.h10{height:53.515925pt;}
.h14{height:53.532459pt;}
.h12{height:53.540939pt;}
.h15{height:53.583392pt;}
.h17{height:53.585899pt;}
.h9{height:53.630912pt;}
.hb{height:53.653419pt;}
.hf{height:53.663392pt;}
.h11{height:53.690912pt;}
.h16{height:53.743392pt;}
.ha{height:53.995925pt;}
.h1a{height:54.015925pt;}
.h18{height:54.038432pt;}
.h19{height:54.133418pt;}
.h2{height:74.559970pt;}
.h1{height:970.665600pt;}
.h0{height:1122.666667pt;}
.w3{width:7.417600pt;}
.w2{width:482.325760pt;}
.w1{width:686.665920pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:53.306880pt;}
.xa{left:75.618002pt;}
.xd{left:83.019999pt;}
.xe{left:84.729331pt;}
.x9{left:122.819316pt;}
.xb{left:155.477440pt;}
.x4{left:159.839701pt;}
.xf{left:225.199675pt;}
.x8{left:228.255274pt;}
.x2{left:305.039643pt;}
.xc{left:392.931200pt;}
.x10{left:410.801868pt;}
.x6{left:424.407462pt;}
.x3{left:469.759577pt;}
.x7{left:499.851165pt;}
.x5{left:521.681823pt;}
}




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