
    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_39253b9effc1dfbe550e4c7f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006348;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_1647ab3b85eabe235ad2045c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.006348;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_ab06d6fc782b0cd17ebafb19.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942000;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_cac39d3cd0630458095c0bf6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.048000;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_72a50d0c7dc0cadfc7207320.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.933000;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_e3ea141d432a153ba637aeeb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.930000;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_07b9569ce4692a5b2ece8ed1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.711000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_14df89eba830d25e6ce94c9d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.068000;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_c2034b7311581140b92e08d8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.715000;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_caef0c36ce0a1797cbadde5b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.946000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d517646115615891f081411e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.970000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ce1a5460b52bba87bf2c1e92.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b6c09c16418329e437a5bc8b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.945000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_631a48659646078efef4fcbb.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.833000;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);}
.m2{transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-0.600000px;}
.ls1{letter-spacing:-0.125996px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.809989px;}
.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:-18.648000px;}
.ws0{word-spacing:-13.986000px;}
.ws5{word-spacing:-13.620000px;}
.wse{word-spacing:-11.678863px;}
.wsd{word-spacing:-11.576864px;}
.ws3{word-spacing:-8.903110px;}
.ws6{word-spacing:-8.105768px;}
.ws4{word-spacing:-7.055059px;}
.ws2{word-spacing:0.000000px;}
.ws8{word-spacing:44.495444px;}
.ws9{word-spacing:44.605842px;}
.wsb{word-spacing:111.325008px;}
.wsc{word-spacing:111.334608px;}
.wsa{word-spacing:134.115124px;}
.ws7{word-spacing:901.207935px;}
._2{margin-left:-5.616010px;}
._0{margin-left:-3.726000px;}
._1{margin-left:-2.160000px;}
._3{margin-left:-1.080000px;}
._b{width:1.139400px;}
._9{width:2.165400px;}
._a{width:3.294000px;}
._2b{width:4.295700px;}
._6{width:5.298300px;}
._8{width:6.509700px;}
._4{width:7.644000px;}
._5{width:8.668800px;}
._e{width:10.335600px;}
._7{width:11.358900px;}
._18{width:12.889800px;}
._2c{width:14.070000px;}
._c{width:15.600600px;}
._11{width:17.274600px;}
._12{width:18.419400px;}
._14{width:20.206800px;}
._13{width:22.140000px;}
._1c{width:23.520000px;}
._1b{width:24.588000px;}
._2e{width:26.216413px;}
._2f{width:27.395414px;}
._10{width:28.528200px;}
._f{width:29.700000px;}
._15{width:30.979800px;}
._d{width:32.130000px;}
._17{width:34.803000px;}
._16{width:35.850600px;}
._2d{width:69.048727px;}
._19{width:80.092160px;}
._1d{width:93.387633px;}
._28{width:143.523006px;}
._1a{width:145.699057px;}
._22{width:165.636330px;}
._1f{width:169.389883px;}
._21{width:183.674504px;}
._26{width:206.455019px;}
._20{width:225.174785px;}
._2a{width:229.459454px;}
._23{width:251.368058px;}
._1e{width:297.845877px;}
._25{width:306.005775px;}
._27{width:331.811086px;}
._24{width:341.165335px;}
._29{width:376.651292px;}
.fc3{color:rgb(1,1,129);}
.fc2{color:rgb(39,42,124);}
.fc1{color:rgb(96,96,91);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:35.995200px;}
.fs8{font-size:41.995800px;}
.fsc{font-size:41.998800px;}
.fsa{font-size:44.999400px;}
.fsb{font-size:47.999400px;}
.fs3{font-size:48.000000px;}
.fsd{font-size:50.999400px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs7{font-size:63.000000px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.fs1{font-size:90.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5a{bottom:54.085520px;}
.ye3{bottom:64.460453px;}
.y10f{bottom:64.460876px;}
.y8e{bottom:64.462500px;}
.y159{bottom:64.464000px;}
.y168{bottom:64.465500px;}
.y1c3{bottom:65.999038px;}
.y59{bottom:66.076178px;}
.y2{bottom:67.597501px;}
.ybb{bottom:71.178795px;}
.y58{bottom:78.066835px;}
.y10e{bottom:79.426650px;}
.ye2{bottom:79.427502px;}
.y1c2{bottom:80.966087px;}
.y8d{bottom:82.491000px;}
.y158{bottom:82.492500px;}
.y167{bottom:82.494000px;}
.y1{bottom:84.097501px;}
.yba{bottom:84.700226px;}
.y57{bottom:90.057493px;}
.ye1{bottom:94.478700px;}
.y1c1{bottom:96.017285px;}
.yb9{bottom:98.221657px;}
.y8c{bottom:100.434000px;}
.y157{bottom:100.435500px;}
.y166{bottom:100.437000px;}
.y56{bottom:102.047100px;}
.y10d{bottom:106.470000px;}
.y1c0{bottom:110.984334px;}
.yb8{bottom:111.743088px;}
.y5b{bottom:118.204650px;}
.y189{bottom:118.459800px;}
.y8b{bottom:118.462500px;}
.y156{bottom:118.464000px;}
.y165{bottom:118.465500px;}
.ye0{bottom:121.437000px;}
.y131{bottom:121.438500px;}
.y10c{bottom:124.498500px;}
.yb7{bottom:125.178120px;}
.y1bf{bottom:126.035532px;}
.y8a{bottom:136.491000px;}
.y155{bottom:136.492500px;}
.y164{bottom:136.494000px;}
.yb6{bottom:138.699551px;}
.ydf{bottom:139.465500px;}
.y1be{bottom:141.002581px;}
.y10b{bottom:142.441500px;}
.y55{bottom:153.498000px;}
.y89{bottom:154.434000px;}
.y154{bottom:154.435500px;}
.y163{bottom:154.437000px;}
.y1bd{bottom:155.969629px;}
.yb3{bottom:156.728126px;}
.yde{bottom:157.494000px;}
.y10a{bottom:160.470000px;}
.y188{bottom:164.467226px;}
.yb5{bottom:170.249557px;}
.y1bc{bottom:171.022102px;}
.y54{bottom:171.441000px;}
.y88{bottom:172.462500px;}
.y162{bottom:172.465500px;}
.ydd{bottom:175.437000px;}
.y187{bottom:179.434302px;}
.y1bb{bottom:185.987876px;}
.y109{bottom:187.426500px;}
.yb4{bottom:188.532529px;}
.y53{bottom:189.469500px;}
.y87{bottom:190.489500px;}
.y153{bottom:190.491000px;}
.y161{bottom:190.494000px;}
.ydc{bottom:193.465500px;}
.y186{bottom:194.486726px;}
.y1ba{bottom:201.040349px;}
.yb2{bottom:206.815500px;}
.y52{bottom:207.496500px;}
.y86{bottom:208.432500px;}
.y152{bottom:208.434000px;}
.y160{bottom:208.437000px;}
.y185{bottom:209.452302px;}
.ydb{bottom:211.492500px;}
.y130{bottom:211.494000px;}
.y1b9{bottom:216.007398px;}
.y184{bottom:224.504726px;}
.y51{bottom:225.439500px;}
.y85{bottom:226.461000px;}
.y151{bottom:226.462500px;}
.y15f{bottom:226.465500px;}
.y12f{bottom:229.437000px;}
.y1b8{bottom:230.973172px;}
.y108{bottom:237.685253px;}
.yda{bottom:238.451753px;}
.y183{bottom:239.470500px;}
.y84{bottom:244.489500px;}
.y150{bottom:244.491000px;}
.y15e{bottom:244.494000px;}
.y1b7{bottom:246.025645px;}
.y12e{bottom:247.465500px;}
.yb1{bottom:251.041500px;}
.y50{bottom:252.481500px;}
.y107{bottom:252.737726px;}
.yd9{bottom:253.418802px;}
.y1b6{bottom:260.992694px;}
.y83{bottom:262.432500px;}
.y14f{bottom:262.434000px;}
.y15d{bottom:262.437000px;}
.y182{bottom:263.452500px;}
.y106{bottom:267.703500px;}
.yd8{bottom:268.470000px;}
.yb0{bottom:269.070000px;}
.y12d{bottom:274.422000px;}
.y1b5{bottom:275.959743px;}
.y14e{bottom:280.462500px;}
.yaf{bottom:287.098500px;}
.y82{bottom:289.474500px;}
.y15c{bottom:289.479000px;}
.y1b4{bottom:291.010941px;}
.y105{bottom:294.748500px;}
.yd7{bottom:295.428000px;}
.y14d{bottom:298.491000px;}
.yae{bottom:305.041500px;}
.y1b3{bottom:305.977990px;}
.y181{bottom:309.458802px;}
.y104{bottom:312.691500px;}
.yd6{bottom:313.456500px;}
.y81{bottom:316.431000px;}
.y14c{bottom:316.434000px;}
.y48{bottom:319.663950px;}
.y12c{bottom:320.259696px;}
.y1b2{bottom:321.029188px;}
.yad{bottom:323.070000px;}
.y17{bottom:323.626501px;}
.y180{bottom:324.510000px;}
.y103{bottom:330.720000px;}
.yd5{bottom:331.485000px;}
.y14b{bottom:334.462500px;}
.y15b{bottom:334.464000px;}
.y47{bottom:334.631400px;}
.y12b{bottom:335.226745px;}
.y1b1{bottom:335.996236px;}
.yac{bottom:341.097000px;}
.y17f{bottom:348.490500px;}
.y102{bottom:348.748500px;}
.yd4{bottom:349.428000px;}
.y46{bottom:349.597500px;}
.y1b0{bottom:350.963285px;}
.y14a{bottom:352.491000px;}
.y15a{bottom:352.492500px;}
.yab{bottom:359.040000px;}
.y12a{bottom:362.269177px;}
.y45{bottom:364.650000px;}
.y1af{bottom:366.015758px;}
.y101{bottom:366.691500px;}
.yd3{bottom:367.455000px;}
.y149{bottom:370.434000px;}
.y80{bottom:370.521000px;}
.yaa{bottom:377.068500px;}
.y129{bottom:377.236226px;}
.y44{bottom:379.617450px;}
.y1ae{bottom:380.981532px;}
.y100{bottom:384.718500px;}
.y16{bottom:387.976501px;}
.y148{bottom:388.462500px;}
.y7f{bottom:388.464000px;}
.y128{bottom:392.202000px;}
.y17e{bottom:394.497000px;}
.yd2{bottom:394.498177px;}
.y43{bottom:394.668600px;}
.ya9{bottom:395.097000px;}
.y1ad{bottom:396.034005px;}
.y147{bottom:406.489500px;}
.y7e{bottom:406.492500px;}
.yd1{bottom:409.465226px;}
.y42{bottom:409.636050px;}
.y1ac{bottom:411.001054px;}
.ya8{bottom:413.040000px;}
.y17d{bottom:418.479000px;}
.y127{bottom:419.245500px;}
.yd0{bottom:424.431000px;}
.y146{bottom:424.434000px;}
.y7d{bottom:424.521000px;}
.y41{bottom:424.603500px;}
.y1ab{bottom:425.968103px;}
.yff{bottom:434.977253px;}
.y126{bottom:437.188500px;}
.y40{bottom:439.654650px;}
.ya7{bottom:440.083500px;}
.y1aa{bottom:441.019301px;}
.y145{bottom:442.461000px;}
.y7c{bottom:442.464000px;}
.yfe{bottom:450.029726px;}
.ycf{bottom:451.476000px;}
.y15{bottom:452.326501px;}
.y3f{bottom:454.622100px;}
.y125{bottom:455.217000px;}
.y1a9{bottom:455.986350px;}
.y144{bottom:460.489500px;}
.y7b{bottom:460.492500px;}
.y17c{bottom:464.485500px;}
.yfd{bottom:464.995500px;}
.yce{bottom:469.419000px;}
.y3e{bottom:469.673250px;}
.y1a8{bottom:471.037548px;}
.y124{bottom:473.244000px;}
.y143{bottom:478.432500px;}
.y7a{bottom:478.521000px;}
.y3d{bottom:484.640700px;}
.y1a7{bottom:486.004597px;}
.ycd{bottom:487.447500px;}
.y17b{bottom:488.466000px;}
.ya6{bottom:490.765500px;}
.yfc{bottom:492.039000px;}
.y142{bottom:496.461000px;}
.y79{bottom:496.464000px;}
.y3c{bottom:499.608150px;}
.y123{bottom:500.201704px;}
.y1a6{bottom:500.971646px;}
.ycc{bottom:505.476000px;}
.ya5{bottom:508.794000px;}
.yfb{bottom:509.982000px;}
.y141{bottom:514.489500px;}
.y78{bottom:514.491000px;}
.y3b{bottom:514.659300px;}
.y122{bottom:515.254177px;}
.y1a5{bottom:516.022843px;}
.y14{bottom:519.607500px;}
.ycb{bottom:523.419000px;}
.ya4{bottom:526.822500px;}
.y4f{bottom:527.500407px;}
.yfa{bottom:528.009000px;}
.y3a{bottom:529.626750px;}
.y121{bottom:530.221226px;}
.y1a4{bottom:530.989892px;}
.y17a{bottom:531.499500px;}
.y140{bottom:532.432500px;}
.y77{bottom:532.519500px;}
.y4e{bottom:541.021838px;}
.yca{bottom:541.447500px;}
.y39{bottom:544.677900px;}
.ya3{bottom:544.765500px;}
.y120{bottom:545.187000px;}
.y1a3{bottom:545.956941px;}
.y179{bottom:549.528000px;}
.y13f{bottom:550.461000px;}
.y76{bottom:550.462500px;}
.y13{bottom:553.957501px;}
.y4d{bottom:554.543269px;}
.yf9{bottom:554.968055px;}
.yc9{bottom:559.476000px;}
.y38{bottom:559.645350px;}
.y1a2{bottom:561.009414px;}
.ya2{bottom:562.794000px;}
.y178{bottom:567.471000px;}
.y4c{bottom:568.063500px;}
.y13e{bottom:568.489500px;}
.y75{bottom:568.491000px;}
.y12{bottom:568.957501px;}
.yf8{bottom:570.019253px;}
.y11f{bottom:572.232000px;}
.y37{bottom:574.612800px;}
.y1a1{bottom:575.975188px;}
.y4b{bottom:580.648500px;}
.ya1{bottom:580.822500px;}
.y11{bottom:583.957500px;}
.yf7{bottom:584.986302px;}
.y177{bottom:585.499500px;}
.yc8{bottom:586.432500px;}
.y74{bottom:586.519500px;}
.y36{bottom:589.663950px;}
.y11e{bottom:590.260500px;}
.y1a0{bottom:591.027661px;}
.ya0{bottom:598.765500px;}
.yf6{bottom:600.037500px;}
.y176{bottom:603.526500px;}
.y13d{bottom:604.461000px;}
.y73{bottom:604.462500px;}
.y35{bottom:604.631400px;}
.y19f{bottom:605.994710px;}
.y4a{bottom:607.607269px;}
.y11d{bottom:608.203500px;}
.y9f{bottom:616.794000px;}
.y34{bottom:619.597500px;}
.y19e{bottom:620.961759px;}
.y49{bottom:621.127500px;}
.y175{bottom:621.471000px;}
.y13c{bottom:622.488000px;}
.y72{bottom:622.491000px;}
.y11c{bottom:626.232000px;}
.yf5{bottom:626.997000px;}
.y33{bottom:633.714000px;}
.yc7{bottom:634.480500px;}
.y9e{bottom:634.821000px;}
.y19d{bottom:636.012957px;}
.y174{bottom:639.498000px;}
.y71{bottom:640.519500px;}
.y11b{bottom:644.260500px;}
.yf4{bottom:645.024000px;}
.y13b{bottom:649.446000px;}
.y19c{bottom:650.980006px;}
.yc6{bottom:652.507500px;}
.y9d{bottom:652.765500px;}
.y173{bottom:657.526500px;}
.y70{bottom:658.462500px;}
.y11a{bottom:662.203500px;}
.y10{bottom:665.317498px;}
.y19b{bottom:666.031204px;}
.yc5{bottom:670.450500px;}
.y9c{bottom:670.792500px;}
.yf3{bottom:671.981802px;}
.y172{bottom:675.469500px;}
.y6f{bottom:676.491000px;}
.y32{bottom:677.253900px;}
.y119{bottom:680.232000px;}
.y19a{bottom:680.998253px;}
.yf2{bottom:687.033000px;}
.y9b{bottom:688.821000px;}
.y31{bottom:692.220000px;}
.y2f{bottom:692.221350px;}
.y171{bottom:693.498000px;}
.y6e{bottom:694.519500px;}
.yf{bottom:695.317498px;}
.y199{bottom:695.965301px;}
.yc4{bottom:697.492500px;}
.y30{bottom:698.257500px;}
.y118{bottom:698.259000px;}
.y9a{bottom:706.764000px;}
.y2e{bottom:707.272500px;}
.y2c{bottom:707.273400px;}
.y13a{bottom:709.484753px;}
.y198{bottom:711.017774px;}
.y170{bottom:711.526500px;}
.y6d{bottom:712.462500px;}
.y2d{bottom:713.224500px;}
.ye{bottom:713.317498px;}
.yf1{bottom:713.992500px;}
.y117{bottom:716.202000px;}
.y2b{bottom:722.239500px;}
.y29{bottom:722.240400px;}
.y139{bottom:724.451802px;}
.y99{bottom:724.792500px;}
.y197{bottom:725.983548px;}
.y2a{bottom:728.277000px;}
.y16f{bottom:729.469500px;}
.y6c{bottom:730.491000px;}
.yd{bottom:731.317498px;}
.yf0{bottom:732.019500px;}
.y26{bottom:737.206350px;}
.y28{bottom:737.206500px;}
.y138{bottom:739.503000px;}
.y196{bottom:741.036021px;}
.y98{bottom:742.735500px;}
.y27{bottom:743.244000px;}
.yc3{bottom:745.456500px;}
.y16e{bottom:747.498000px;}
.y6b{bottom:748.518000px;}
.yc{bottom:749.317498px;}
.yef{bottom:749.962500px;}
.y25{bottom:752.257500px;}
.y23{bottom:752.258400px;}
.y195{bottom:756.003070px;}
.y24{bottom:758.211000px;}
.y97{bottom:760.764000px;}
.y116{bottom:762.038677px;}
.yc2{bottom:763.485000px;}
.y16d{bottom:765.526500px;}
.y137{bottom:766.461000px;}
.y6a{bottom:766.462500px;}
.y22{bottom:767.224500px;}
.y194{bottom:770.968844px;}
.y21{bottom:773.263500px;}
.y115{bottom:777.005726px;}
.yee{bottom:777.006498px;}
.y96{bottom:778.792500px;}
.yc1{bottom:781.513500px;}
.y16c{bottom:783.469500px;}
.y136{bottom:784.488000px;}
.y69{bottom:784.489500px;}
.y193{bottom:786.021317px;}
.y114{bottom:791.971500px;}
.yed{bottom:791.972272px;}
.y1f{bottom:794.268000px;}
.y95{bottom:796.735500px;}
.yc0{bottom:799.456500px;}
.y192{bottom:800.988366px;}
.y20{bottom:801.241500px;}
.y16b{bottom:801.498000px;}
.yb{bottom:801.789002px;}
.y68{bottom:802.518000px;}
.yec{bottom:807.024745px;}
.y135{bottom:811.446772px;}
.y1e{bottom:812.211000px;}
.y1c{bottom:812.212050px;}
.y94{bottom:814.764000px;}
.y191{bottom:815.955415px;}
.ybf{bottom:817.485000px;}
.y113{bottom:819.015000px;}
.y1d{bottom:819.268500px;}
.y16a{bottom:819.525000px;}
.y67{bottom:820.461000px;}
.ya{bottom:822.789002px;}
.y134{bottom:826.499245px;}
.y1a{bottom:830.239500px;}
.y190{bottom:831.006613px;}
.y93{bottom:832.792500px;}
.yeb{bottom:833.981753px;}
.ybe{bottom:835.513500px;}
.y112{bottom:836.958000px;}
.y1b{bottom:837.213000px;}
.y66{bottom:838.489500px;}
.y133{bottom:841.466294px;}
.y9{bottom:843.789002px;}
.y18f{bottom:845.973662px;}
.y169{bottom:846.481500px;}
.yea{bottom:849.034226px;}
.y92{bottom:850.735500px;}
.ybd{bottom:853.456500px;}
.y111{bottom:854.986500px;}
.y65{bottom:856.518000px;}
.y19{bottom:859.494600px;}
.y18e{bottom:861.024860px;}
.ye9{bottom:864.000000px;}
.y132{bottom:868.508726px;}
.y91{bottom:868.764000px;}
.y110{bottom:873.015000px;}
.y64{bottom:874.461000px;}
.y18d{bottom:875.991908px;}
.ybc{bottom:880.498500px;}
.y18{bottom:883.474500px;}
.ye8{bottom:890.958000px;}
.y18c{bottom:890.958957px;}
.y63{bottom:892.489500px;}
.y90{bottom:895.806000px;}
.y18b{bottom:906.011430px;}
.y8{bottom:907.453504px;}
.ye7{bottom:908.985000px;}
.y62{bottom:910.518000px;}
.y18a{bottom:920.977204px;}
.y61{bottom:928.461000px;}
.ye6{bottom:936.029677px;}
.y7{bottom:938.953498px;}
.y60{bottom:946.489500px;}
.ye5{bottom:950.996726px;}
.y5e{bottom:955.502609px;}
.y5f{bottom:964.516500px;}
.ye4{bottom:965.962500px;}
.y5d{bottom:969.023804px;}
.y6{bottom:970.453498px;}
.y5c{bottom:982.459500px;}
.y8f{bottom:1004.995500px;}
.y5{bottom:1035.546001px;}
.y4{bottom:1135.539002px;}
.y3{bottom:1165.122003px;}
.hd{height:25.736568px;}
.h15{height:30.029142px;}
.h11{height:31.499580px;}
.h16{height:32.174571px;}
.hf{height:32.444567px;}
.h12{height:34.319571px;}
.hc{height:34.730527px;}
.h5{height:36.773438px;}
.h18{height:37.214504px;}
.he{height:38.610000px;}
.h1c{height:41.355305px;}
.h1a{height:41.355609px;}
.h19{height:41.360513px;}
.h1b{height:41.361305px;}
.h2{height:41.370117px;}
.h17{height:43.260000px;}
.h10{height:44.658000px;}
.h13{height:45.423000px;}
.h7{height:45.966797px;}
.h14{height:48.660000px;}
.hb{height:52.101000px;}
.h4{height:55.160156px;}
.ha{height:60.564000px;}
.h3{height:68.950195px;}
.h6{height:82.740234px;}
.h8{height:1054.488000px;}
.h9{height:1054.500000px;}
.h1{height:1249.500000px;}
.h0{height:1249.560000px;}
.w3{width:739.500000px;}
.w2{width:739.842000px;}
.w0{width:951.480000px;}
.w1{width:951.750000px;}
.x0{left:0.000000px;}
.x6{left:72.028200px;}
.x11{left:76.535400px;}
.x28{left:81.041287px;}
.x2a{left:86.993974px;}
.x1e{left:89.971650px;}
.x12{left:107.744850px;}
.x13{left:113.017200px;}
.x4{left:145.650000px;}
.x21{left:180.877639px;}
.x3{left:191.880000px;}
.x5{left:197.700000px;}
.x20{left:207.579706px;}
.xb{left:226.969500px;}
.x2{left:232.327501px;}
.xc{left:233.602500px;}
.x22{left:272.039300px;}
.x23{left:277.566431px;}
.x1{left:293.590494px;}
.x10{left:294.916500px;}
.x7{left:321.193500px;}
.x1c{left:333.525000px;}
.x8{left:336.075000px;}
.x1d{left:338.712000px;}
.xd{left:423.751500px;}
.xe{left:429.619500px;}
.x1a{left:467.971500px;}
.x1b{left:470.692500px;}
.x16{left:477.666000px;}
.x17{left:482.853000px;}
.x9{left:494.334000px;}
.x2b{left:497.565000px;}
.x29{left:503.518500px;}
.x24{left:505.471182px;}
.x25{left:506.576368px;}
.xa{left:516.954000px;}
.x14{left:526.224000px;}
.x15{left:530.305500px;}
.x1f{left:532.857000px;}
.x18{left:568.488000px;}
.x19{left:573.165000px;}
.x26{left:583.026212px;}
.x27{left:590.084524px;}
.xf{left:609.732000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.533333pt;}
.ls1{letter-spacing:-0.111997pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.719990pt;}
.ws1{word-spacing:-16.576000pt;}
.ws0{word-spacing:-12.432000pt;}
.ws5{word-spacing:-12.106667pt;}
.wse{word-spacing:-10.381211pt;}
.wsd{word-spacing:-10.290546pt;}
.ws3{word-spacing:-7.913875pt;}
.ws6{word-spacing:-7.205127pt;}
.ws4{word-spacing:-6.271164pt;}
.ws2{word-spacing:0.000000pt;}
.ws8{word-spacing:39.551506pt;}
.ws9{word-spacing:39.649638pt;}
.wsb{word-spacing:98.955563pt;}
.wsc{word-spacing:98.964096pt;}
.wsa{word-spacing:119.213443pt;}
.ws7{word-spacing:801.073720pt;}
._2{margin-left:-4.992009pt;}
._0{margin-left:-3.312000pt;}
._1{margin-left:-1.920000pt;}
._3{margin-left:-0.960000pt;}
._b{width:1.012800pt;}
._9{width:1.924800pt;}
._a{width:2.928000pt;}
._2b{width:3.818400pt;}
._6{width:4.709600pt;}
._8{width:5.786400pt;}
._4{width:6.794667pt;}
._5{width:7.705600pt;}
._e{width:9.187200pt;}
._7{width:10.096800pt;}
._18{width:11.457600pt;}
._2c{width:12.506667pt;}
._c{width:13.867200pt;}
._11{width:15.355200pt;}
._12{width:16.372800pt;}
._14{width:17.961600pt;}
._13{width:19.680000pt;}
._1c{width:20.906667pt;}
._1b{width:21.856000pt;}
._2e{width:23.303478pt;}
._2f{width:24.351479pt;}
._10{width:25.358400pt;}
._f{width:26.400000pt;}
._15{width:27.537600pt;}
._d{width:28.560000pt;}
._17{width:30.936000pt;}
._16{width:31.867200pt;}
._2d{width:61.376646pt;}
._19{width:71.193031pt;}
._1d{width:83.011229pt;}
._28{width:127.576005pt;}
._1a{width:129.510273pt;}
._22{width:147.232293pt;}
._1f{width:150.568785pt;}
._21{width:163.266226pt;}
._26{width:183.515573pt;}
._20{width:200.155365pt;}
._2a{width:203.963959pt;}
._23{width:223.438274pt;}
._1e{width:264.751891pt;}
._25{width:272.005133pt;}
._27{width:294.943188pt;}
._24{width:303.258076pt;}
._29{width:334.801148pt;}
.fs9{font-size:31.995733pt;}
.fs8{font-size:37.329600pt;}
.fsc{font-size:37.332267pt;}
.fsa{font-size:39.999467pt;}
.fsb{font-size:42.666133pt;}
.fs3{font-size:42.666667pt;}
.fsd{font-size:45.332800pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs7{font-size:56.000000pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.fs1{font-size:80.000000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5a{bottom:48.076018pt;}
.ye3{bottom:57.298181pt;}
.y10f{bottom:57.298557pt;}
.y8e{bottom:57.300000pt;}
.y159{bottom:57.301333pt;}
.y168{bottom:57.302667pt;}
.y1c3{bottom:58.665811pt;}
.y59{bottom:58.734380pt;}
.y2{bottom:60.086668pt;}
.ybb{bottom:63.270040pt;}
.y58{bottom:69.392742pt;}
.y10e{bottom:70.601467pt;}
.ye2{bottom:70.602224pt;}
.y1c2{bottom:71.969855pt;}
.y8d{bottom:73.325333pt;}
.y158{bottom:73.326667pt;}
.y167{bottom:73.328000pt;}
.y1{bottom:74.753335pt;}
.yba{bottom:75.289090pt;}
.y57{bottom:80.051105pt;}
.ye1{bottom:83.981067pt;}
.y1c1{bottom:85.348698pt;}
.yb9{bottom:87.308140pt;}
.y8c{bottom:89.274667pt;}
.y157{bottom:89.276000pt;}
.y166{bottom:89.277333pt;}
.y56{bottom:90.708533pt;}
.y10d{bottom:94.640000pt;}
.y1c0{bottom:98.652741pt;}
.yb8{bottom:99.327190pt;}
.y5b{bottom:105.070800pt;}
.y189{bottom:105.297600pt;}
.y8b{bottom:105.300000pt;}
.y156{bottom:105.301333pt;}
.y165{bottom:105.302667pt;}
.ye0{bottom:107.944000pt;}
.y131{bottom:107.945333pt;}
.y10c{bottom:110.665333pt;}
.yb7{bottom:111.269440pt;}
.y1bf{bottom:112.031584pt;}
.y8a{bottom:121.325333pt;}
.y155{bottom:121.326667pt;}
.y164{bottom:121.328000pt;}
.yb6{bottom:123.288490pt;}
.ydf{bottom:123.969333pt;}
.y1be{bottom:125.335627pt;}
.y10b{bottom:126.614667pt;}
.y55{bottom:136.442667pt;}
.y89{bottom:137.274667pt;}
.y154{bottom:137.276000pt;}
.y163{bottom:137.277333pt;}
.y1bd{bottom:138.639671pt;}
.yb3{bottom:139.313890pt;}
.yde{bottom:139.994667pt;}
.y10a{bottom:142.640000pt;}
.y188{bottom:146.193090pt;}
.yb5{bottom:151.332940pt;}
.y1bc{bottom:152.019647pt;}
.y54{bottom:152.392000pt;}
.y88{bottom:153.300000pt;}
.y162{bottom:153.302667pt;}
.ydd{bottom:155.944000pt;}
.y187{bottom:159.497157pt;}
.y1bb{bottom:165.322557pt;}
.y109{bottom:166.601333pt;}
.yb4{bottom:167.584470pt;}
.y53{bottom:168.417333pt;}
.y87{bottom:169.324000pt;}
.y153{bottom:169.325333pt;}
.y161{bottom:169.328000pt;}
.ydc{bottom:171.969333pt;}
.y186{bottom:172.877090pt;}
.y1ba{bottom:178.702533pt;}
.yb2{bottom:183.836000pt;}
.y52{bottom:184.441333pt;}
.y86{bottom:185.273333pt;}
.y152{bottom:185.274667pt;}
.y160{bottom:185.277333pt;}
.y185{bottom:186.179824pt;}
.ydb{bottom:187.993333pt;}
.y130{bottom:187.994667pt;}
.y1b9{bottom:192.006576pt;}
.y184{bottom:199.559757pt;}
.y51{bottom:200.390667pt;}
.y85{bottom:201.298667pt;}
.y151{bottom:201.300000pt;}
.y15f{bottom:201.302667pt;}
.y12f{bottom:203.944000pt;}
.y1b8{bottom:205.309486pt;}
.y108{bottom:211.275781pt;}
.yda{bottom:211.957114pt;}
.y183{bottom:212.862667pt;}
.y84{bottom:217.324000pt;}
.y150{bottom:217.325333pt;}
.y15e{bottom:217.328000pt;}
.y1b7{bottom:218.689462pt;}
.y12e{bottom:219.969333pt;}
.yb1{bottom:223.148000pt;}
.y50{bottom:224.428000pt;}
.y107{bottom:224.655757pt;}
.yd9{bottom:225.261157pt;}
.y1b6{bottom:231.993506pt;}
.y83{bottom:233.273333pt;}
.y14f{bottom:233.274667pt;}
.y15d{bottom:233.277333pt;}
.y182{bottom:234.180000pt;}
.y106{bottom:237.958667pt;}
.yd8{bottom:238.640000pt;}
.yb0{bottom:239.173333pt;}
.y12d{bottom:243.930667pt;}
.y1b5{bottom:245.297549pt;}
.y14e{bottom:249.300000pt;}
.yaf{bottom:255.198667pt;}
.y82{bottom:257.310667pt;}
.y15c{bottom:257.314667pt;}
.y1b4{bottom:258.676392pt;}
.y105{bottom:261.998667pt;}
.yd7{bottom:262.602667pt;}
.y14d{bottom:265.325333pt;}
.yae{bottom:271.148000pt;}
.y1b3{bottom:271.980435pt;}
.y181{bottom:275.074491pt;}
.y104{bottom:277.948000pt;}
.yd6{bottom:278.628000pt;}
.y81{bottom:281.272000pt;}
.y14c{bottom:281.274667pt;}
.y48{bottom:284.145733pt;}
.y12c{bottom:284.675286pt;}
.y1b2{bottom:285.359278pt;}
.yad{bottom:287.173333pt;}
.y17{bottom:287.668001pt;}
.y180{bottom:288.453333pt;}
.y103{bottom:293.973333pt;}
.yd5{bottom:294.653333pt;}
.y14b{bottom:297.300000pt;}
.y15b{bottom:297.301333pt;}
.y47{bottom:297.450133pt;}
.y12b{bottom:297.979329pt;}
.y1b1{bottom:298.663321pt;}
.yac{bottom:303.197333pt;}
.y17f{bottom:309.769333pt;}
.y102{bottom:309.998667pt;}
.yd4{bottom:310.602667pt;}
.y46{bottom:310.753333pt;}
.y1b0{bottom:311.967365pt;}
.y14a{bottom:313.325333pt;}
.y15a{bottom:313.326667pt;}
.yab{bottom:319.146667pt;}
.y12a{bottom:322.017046pt;}
.y45{bottom:324.133333pt;}
.y1af{bottom:325.347341pt;}
.y101{bottom:325.948000pt;}
.yd3{bottom:326.626667pt;}
.y149{bottom:329.274667pt;}
.y80{bottom:329.352000pt;}
.yaa{bottom:335.172000pt;}
.y129{bottom:335.321090pt;}
.y44{bottom:337.437733pt;}
.y1ae{bottom:338.650251pt;}
.y100{bottom:341.972000pt;}
.y16{bottom:344.868001pt;}
.y148{bottom:345.300000pt;}
.y7f{bottom:345.301333pt;}
.y128{bottom:348.624000pt;}
.y17e{bottom:350.664000pt;}
.yd2{bottom:350.665046pt;}
.y43{bottom:350.816533pt;}
.ya9{bottom:351.197333pt;}
.y1ad{bottom:352.030227pt;}
.y147{bottom:361.324000pt;}
.y7e{bottom:361.326667pt;}
.yd1{bottom:363.969090pt;}
.y42{bottom:364.120933pt;}
.y1ac{bottom:365.334270pt;}
.ya8{bottom:367.146667pt;}
.y17d{bottom:371.981333pt;}
.y127{bottom:372.662667pt;}
.yd0{bottom:377.272000pt;}
.y146{bottom:377.274667pt;}
.y7d{bottom:377.352000pt;}
.y41{bottom:377.425333pt;}
.y1ab{bottom:378.638314pt;}
.yff{bottom:386.646447pt;}
.y126{bottom:388.612000pt;}
.y40{bottom:390.804133pt;}
.ya7{bottom:391.185333pt;}
.y1aa{bottom:392.017156pt;}
.y145{bottom:393.298667pt;}
.y7c{bottom:393.301333pt;}
.yfe{bottom:400.026423pt;}
.ycf{bottom:401.312000pt;}
.y15{bottom:402.068001pt;}
.y3f{bottom:404.108533pt;}
.y125{bottom:404.637333pt;}
.y1a9{bottom:405.321200pt;}
.y144{bottom:409.324000pt;}
.y7b{bottom:409.326667pt;}
.y17c{bottom:412.876000pt;}
.yfd{bottom:413.329333pt;}
.yce{bottom:417.261333pt;}
.y3e{bottom:417.487333pt;}
.y1a8{bottom:418.700042pt;}
.y124{bottom:420.661333pt;}
.y143{bottom:425.273333pt;}
.y7a{bottom:425.352000pt;}
.y3d{bottom:430.791733pt;}
.y1a7{bottom:432.004086pt;}
.ycd{bottom:433.286667pt;}
.y17b{bottom:434.192000pt;}
.ya6{bottom:436.236000pt;}
.yfc{bottom:437.368000pt;}
.y142{bottom:441.298667pt;}
.y79{bottom:441.301333pt;}
.y3c{bottom:444.096133pt;}
.y123{bottom:444.623737pt;}
.y1a6{bottom:445.308129pt;}
.ycc{bottom:449.312000pt;}
.ya5{bottom:452.261333pt;}
.yfb{bottom:453.317333pt;}
.y141{bottom:457.324000pt;}
.y78{bottom:457.325333pt;}
.y3b{bottom:457.474933pt;}
.y122{bottom:458.003713pt;}
.y1a5{bottom:458.686972pt;}
.y14{bottom:461.873333pt;}
.ycb{bottom:465.261333pt;}
.ya4{bottom:468.286667pt;}
.y4f{bottom:468.889251pt;}
.yfa{bottom:469.341333pt;}
.y3a{bottom:470.779333pt;}
.y121{bottom:471.307757pt;}
.y1a4{bottom:471.991015pt;}
.y17a{bottom:472.444000pt;}
.y140{bottom:473.273333pt;}
.y77{bottom:473.350667pt;}
.y4e{bottom:480.908300pt;}
.yca{bottom:481.286667pt;}
.y39{bottom:484.158133pt;}
.ya3{bottom:484.236000pt;}
.y120{bottom:484.610667pt;}
.y1a3{bottom:485.295059pt;}
.y179{bottom:488.469333pt;}
.y13f{bottom:489.298667pt;}
.y76{bottom:489.300000pt;}
.y13{bottom:492.406668pt;}
.y4d{bottom:492.927350pt;}
.yf9{bottom:493.304938pt;}
.yc9{bottom:497.312000pt;}
.y38{bottom:497.462533pt;}
.y1a2{bottom:498.675035pt;}
.ya2{bottom:500.261333pt;}
.y178{bottom:504.418667pt;}
.y4c{bottom:504.945333pt;}
.y13e{bottom:505.324000pt;}
.y75{bottom:505.325333pt;}
.y12{bottom:505.740001pt;}
.yf8{bottom:506.683781pt;}
.y11f{bottom:508.650667pt;}
.y37{bottom:510.766933pt;}
.y1a1{bottom:511.977945pt;}
.y4b{bottom:516.132000pt;}
.ya1{bottom:516.286667pt;}
.y11{bottom:519.073333pt;}
.yf7{bottom:519.987824pt;}
.y177{bottom:520.444000pt;}
.yc8{bottom:521.273333pt;}
.y74{bottom:521.350667pt;}
.y36{bottom:524.145733pt;}
.y11e{bottom:524.676000pt;}
.y1a0{bottom:525.357921pt;}
.ya0{bottom:532.236000pt;}
.yf6{bottom:533.366667pt;}
.y176{bottom:536.468000pt;}
.y13d{bottom:537.298667pt;}
.y73{bottom:537.300000pt;}
.y35{bottom:537.450133pt;}
.y19f{bottom:538.661964pt;}
.y4a{bottom:540.095350pt;}
.y11d{bottom:540.625333pt;}
.y9f{bottom:548.261333pt;}
.y34{bottom:550.753333pt;}
.y19e{bottom:551.966008pt;}
.y49{bottom:552.113333pt;}
.y175{bottom:552.418667pt;}
.y13c{bottom:553.322667pt;}
.y72{bottom:553.325333pt;}
.y11c{bottom:556.650667pt;}
.yf5{bottom:557.330667pt;}
.y33{bottom:563.301333pt;}
.yc7{bottom:563.982667pt;}
.y9e{bottom:564.285333pt;}
.y19d{bottom:565.344850pt;}
.y174{bottom:568.442667pt;}
.y71{bottom:569.350667pt;}
.y11b{bottom:572.676000pt;}
.yf4{bottom:573.354667pt;}
.y13b{bottom:577.285333pt;}
.y19c{bottom:578.648894pt;}
.yc6{bottom:580.006667pt;}
.y9d{bottom:580.236000pt;}
.y173{bottom:584.468000pt;}
.y70{bottom:585.300000pt;}
.y11a{bottom:588.625333pt;}
.y10{bottom:591.393332pt;}
.y19b{bottom:592.027737pt;}
.yc5{bottom:595.956000pt;}
.y9c{bottom:596.260000pt;}
.yf3{bottom:597.317157pt;}
.y172{bottom:600.417333pt;}
.y6f{bottom:601.325333pt;}
.y32{bottom:602.003467pt;}
.y119{bottom:604.650667pt;}
.y19a{bottom:605.331780pt;}
.yf2{bottom:610.696000pt;}
.y9b{bottom:612.285333pt;}
.y31{bottom:615.306667pt;}
.y2f{bottom:615.307867pt;}
.y171{bottom:616.442667pt;}
.y6e{bottom:617.350667pt;}
.yf{bottom:618.059998pt;}
.y199{bottom:618.635824pt;}
.yc4{bottom:619.993333pt;}
.y30{bottom:620.673333pt;}
.y118{bottom:620.674667pt;}
.y9a{bottom:628.234667pt;}
.y2e{bottom:628.686667pt;}
.y2c{bottom:628.687467pt;}
.y13a{bottom:630.653114pt;}
.y198{bottom:632.015799pt;}
.y170{bottom:632.468000pt;}
.y6d{bottom:633.300000pt;}
.y2d{bottom:633.977333pt;}
.ye{bottom:634.059998pt;}
.yf1{bottom:634.660000pt;}
.y117{bottom:636.624000pt;}
.y2b{bottom:641.990667pt;}
.y29{bottom:641.991467pt;}
.y139{bottom:643.957157pt;}
.y99{bottom:644.260000pt;}
.y197{bottom:645.318710pt;}
.y2a{bottom:647.357333pt;}
.y16f{bottom:648.417333pt;}
.y6c{bottom:649.325333pt;}
.yd{bottom:650.059998pt;}
.yf0{bottom:650.684000pt;}
.y26{bottom:655.294533pt;}
.y28{bottom:655.294667pt;}
.y138{bottom:657.336000pt;}
.y196{bottom:658.698686pt;}
.y98{bottom:660.209333pt;}
.y27{bottom:660.661333pt;}
.yc3{bottom:662.628000pt;}
.y16e{bottom:664.442667pt;}
.y6b{bottom:665.349333pt;}
.yc{bottom:666.059998pt;}
.yef{bottom:666.633333pt;}
.y25{bottom:668.673333pt;}
.y23{bottom:668.674133pt;}
.y195{bottom:672.002729pt;}
.y24{bottom:673.965333pt;}
.y97{bottom:676.234667pt;}
.y116{bottom:677.367713pt;}
.yc2{bottom:678.653333pt;}
.y16d{bottom:680.468000pt;}
.y137{bottom:681.298667pt;}
.y6a{bottom:681.300000pt;}
.y22{bottom:681.977333pt;}
.y194{bottom:685.305639pt;}
.y21{bottom:687.345333pt;}
.y115{bottom:690.671757pt;}
.yee{bottom:690.672443pt;}
.y96{bottom:692.260000pt;}
.yc1{bottom:694.678667pt;}
.y16c{bottom:696.417333pt;}
.y136{bottom:697.322667pt;}
.y69{bottom:697.324000pt;}
.y193{bottom:698.685615pt;}
.y114{bottom:703.974667pt;}
.yed{bottom:703.975353pt;}
.y1f{bottom:706.016000pt;}
.y95{bottom:708.209333pt;}
.yc0{bottom:710.628000pt;}
.y192{bottom:711.989659pt;}
.y20{bottom:712.214667pt;}
.y16b{bottom:712.442667pt;}
.yb{bottom:712.701335pt;}
.y68{bottom:713.349333pt;}
.yec{bottom:717.355329pt;}
.y135{bottom:721.286020pt;}
.y1e{bottom:721.965333pt;}
.y1c{bottom:721.966267pt;}
.y94{bottom:724.234667pt;}
.y191{bottom:725.293702pt;}
.ybf{bottom:726.653333pt;}
.y113{bottom:728.013333pt;}
.y1d{bottom:728.238667pt;}
.y16a{bottom:728.466667pt;}
.y67{bottom:729.298667pt;}
.ya{bottom:731.368002pt;}
.y134{bottom:734.665996pt;}
.y1a{bottom:737.990667pt;}
.y190{bottom:738.672545pt;}
.y93{bottom:740.260000pt;}
.yeb{bottom:741.317114pt;}
.ybe{bottom:742.678667pt;}
.y112{bottom:743.962667pt;}
.y1b{bottom:744.189333pt;}
.y66{bottom:745.324000pt;}
.y133{bottom:747.970039pt;}
.y9{bottom:750.034669pt;}
.y18f{bottom:751.976588pt;}
.y169{bottom:752.428000pt;}
.yea{bottom:754.697090pt;}
.y92{bottom:756.209333pt;}
.ybd{bottom:758.628000pt;}
.y111{bottom:759.988000pt;}
.y65{bottom:761.349333pt;}
.y19{bottom:763.995200pt;}
.y18e{bottom:765.355431pt;}
.ye9{bottom:768.000000pt;}
.y132{bottom:772.007757pt;}
.y91{bottom:772.234667pt;}
.y110{bottom:776.013333pt;}
.y64{bottom:777.298667pt;}
.y18d{bottom:778.659474pt;}
.ybc{bottom:782.665333pt;}
.y18{bottom:785.310667pt;}
.ye8{bottom:791.962667pt;}
.y18c{bottom:791.963518pt;}
.y63{bottom:793.324000pt;}
.y90{bottom:796.272000pt;}
.y18b{bottom:805.343494pt;}
.y8{bottom:806.625337pt;}
.ye7{bottom:807.986667pt;}
.y62{bottom:809.349333pt;}
.y18a{bottom:818.646404pt;}
.y61{bottom:825.298667pt;}
.ye6{bottom:832.026380pt;}
.y7{bottom:834.625331pt;}
.y60{bottom:841.324000pt;}
.ye5{bottom:845.330423pt;}
.y5e{bottom:849.335653pt;}
.y5f{bottom:857.348000pt;}
.ye4{bottom:858.633333pt;}
.y5d{bottom:861.354493pt;}
.y6{bottom:862.625331pt;}
.y5c{bottom:873.297333pt;}
.y8f{bottom:893.329333pt;}
.y5{bottom:920.485335pt;}
.y4{bottom:1009.368002pt;}
.y3{bottom:1035.664002pt;}
.hd{height:22.876949pt;}
.h15{height:26.692571pt;}
.h11{height:27.999627pt;}
.h16{height:28.599619pt;}
.hf{height:28.839615pt;}
.h12{height:30.506285pt;}
.hc{height:30.871579pt;}
.h5{height:32.687500pt;}
.h18{height:33.079559pt;}
.he{height:34.320000pt;}
.h1c{height:36.760271pt;}
.h1a{height:36.760541pt;}
.h19{height:36.764901pt;}
.h1b{height:36.765605pt;}
.h2{height:36.773438pt;}
.h17{height:38.453333pt;}
.h10{height:39.696000pt;}
.h13{height:40.376000pt;}
.h7{height:40.859375pt;}
.h14{height:43.253333pt;}
.hb{height:46.312000pt;}
.h4{height:49.031250pt;}
.ha{height:53.834667pt;}
.h3{height:61.289062pt;}
.h6{height:73.546875pt;}
.h8{height:937.322667pt;}
.h9{height:937.333333pt;}
.h1{height:1110.666667pt;}
.h0{height:1110.720000pt;}
.w3{width:657.333333pt;}
.w2{width:657.637333pt;}
.w0{width:845.760000pt;}
.w1{width:846.000000pt;}
.x0{left:0.000000pt;}
.x6{left:64.025067pt;}
.x11{left:68.031467pt;}
.x28{left:72.036700pt;}
.x2a{left:77.327977pt;}
.x1e{left:79.974800pt;}
.x12{left:95.773200pt;}
.x13{left:100.459733pt;}
.x4{left:129.466667pt;}
.x21{left:160.780124pt;}
.x3{left:170.560000pt;}
.x5{left:175.733333pt;}
.x20{left:184.515294pt;}
.xb{left:201.750667pt;}
.x2{left:206.513334pt;}
.xc{left:207.646667pt;}
.x22{left:241.812711pt;}
.x23{left:246.725716pt;}
.x1{left:260.969328pt;}
.x10{left:262.148000pt;}
.x7{left:285.505333pt;}
.x1c{left:296.466667pt;}
.x8{left:298.733333pt;}
.x1d{left:301.077333pt;}
.xd{left:376.668000pt;}
.xe{left:381.884000pt;}
.x1a{left:415.974667pt;}
.x1b{left:418.393333pt;}
.x16{left:424.592000pt;}
.x17{left:429.202667pt;}
.x9{left:439.408000pt;}
.x2b{left:442.280000pt;}
.x29{left:447.572000pt;}
.x24{left:449.307717pt;}
.x25{left:450.290105pt;}
.xa{left:459.514667pt;}
.x14{left:467.754667pt;}
.x15{left:471.382667pt;}
.x1f{left:473.650667pt;}
.x18{left:505.322667pt;}
.x19{left:509.480000pt;}
.x26{left:518.245522pt;}
.x27{left:524.519577pt;}
.xf{left:541.984000pt;}
}




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