
    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_a24f7eb9e41f3076ad5140de.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.734131;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_b55c54d098c73d040d81275c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.110352;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_8ef4005095bc91bf48b776c6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.770000;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_6d12a1f9183b42bac2cd86ec.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_f3a407063d85c6535bb12a50.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.094238;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_91861250c26a80f26db35bc2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.065430;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_29bb92bd22e1748145119257.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.708008;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_72dc302da98bcee83f73d102.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.734131;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_3f9046e43d0803a9c2747b8a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.767000;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_5c5cc553b49ca3750af5743d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.927734;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_c374858fd444dde5797a2789.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.919922;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_8ef8f5a091df5c1fc8bf24c0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.926270;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_5073043a103905983ac36c12.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-20.879995px;}
.v4{vertical-align:-15.120072px;}
.v5{vertical-align:-12.240139px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:2.880000px;}
.v6{vertical-align:12.239870px;}
.v3{vertical-align:15.120000px;}
.v1{vertical-align:20.879995px;}
.ls9{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.002407px;}
.ls1{letter-spacing:0.017891px;}
.ls3{letter-spacing:0.017896px;}
.lsa{letter-spacing:0.017927px;}
.lsd{letter-spacing:0.024020px;}
.ls6{letter-spacing:0.100885px;}
.ls5{letter-spacing:0.100916px;}
.ls12{letter-spacing:0.138641px;}
.ls1b{letter-spacing:0.155745px;}
.ls17{letter-spacing:0.155812px;}
.ls2{letter-spacing:0.188365px;}
.ls4{letter-spacing:0.204417px;}
.ls1c{letter-spacing:0.207330px;}
.ls10{letter-spacing:0.253432px;}
.lsb{letter-spacing:0.258663px;}
.ls0{letter-spacing:0.258807px;}
.lsf{letter-spacing:0.290736px;}
.ls1a{letter-spacing:0.314057px;}
.ls13{letter-spacing:0.360864px;}
.ls11{letter-spacing:0.360895px;}
.lsc{letter-spacing:0.362938px;}
.ls18{letter-spacing:4.680999px;}
.ls8{letter-spacing:5.573709px;}
.ls1d{letter-spacing:6.676118px;}
.ls7{letter-spacing:12.053723px;}
.ls1e{letter-spacing:12.434390px;}
.lse{letter-spacing:19.973691px;}
.ls1f{letter-spacing:52.742298px;}
.ls14{letter-spacing:160.388280px;}
.ls16{letter-spacing:230.948275px;}
.ls15{letter-spacing:824.228329px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-18.531513px;}
.ws1{word-spacing:-14.571711px;}
.ws3{word-spacing:-13.146309px;}
.wsa{word-spacing:-12.038268px;}
.ws7{word-spacing:-11.879109px;}
.ws4{word-spacing:-10.612008px;}
.ws2{word-spacing:-9.186547px;}
.ws5{word-spacing:-8.552986px;}
.wsb{word-spacing:-7.920000px;}
.ws8{word-spacing:-7.919436px;}
.ws9{word-spacing:-7.285875px;}
.ws6{word-spacing:0.000000px;}
._1b{margin-left:-2.401179px;}
._0{margin-left:-1.303702px;}
._1{width:1.163841px;}
._3{width:2.387904px;}
._4{width:4.347946px;}
._5{width:5.522990px;}
._6{width:6.567704px;}
._d{width:7.975085px;}
._a{width:9.934904px;}
._2{width:11.552781px;}
._1a{width:12.915835px;}
._e{width:14.624335px;}
._f{width:15.706245px;}
._8{width:16.882923px;}
._7{width:17.924451px;}
._b{width:19.785288px;}
._c{width:21.148004px;}
._12{width:23.085171px;}
._1c{width:24.471898px;}
._9{width:26.192947px;}
._1f{width:27.807282px;}
._17{width:28.896204px;}
._18{width:29.912055px;}
._14{width:31.659216px;}
._15{width:32.737858px;}
._19{width:34.055756px;}
._10{width:36.022866px;}
._13{width:37.166969px;}
._3d{width:38.290845px;}
._3c{width:39.406191px;}
._3e{width:40.526494px;}
._1e{width:50.638499px;}
._1d{width:51.868805px;}
._16{width:52.924865px;}
._11{width:57.275145px;}
._3a{width:80.589000px;}
._3b{width:81.848158px;}
._32{width:86.152654px;}
._41{width:95.915203px;}
._40{width:97.998394px;}
._2b{width:156.163102px;}
._42{width:163.810756px;}
._20{width:173.644039px;}
._33{width:185.464867px;}
._21{width:192.791085px;}
._36{width:264.361678px;}
._37{width:294.588664px;}
._39{width:377.439915px;}
._25{width:434.486880px;}
._34{width:453.162618px;}
._38{width:484.935003px;}
._35{width:522.483808px;}
._43{width:604.737739px;}
._26{width:619.760416px;}
._2f{width:705.090477px;}
._27{width:723.327884px;}
._2a{width:745.302656px;}
._22{width:773.576631px;}
._24{width:785.819878px;}
._2e{width:803.724515px;}
._23{width:816.020473px;}
._30{width:840.192127px;}
._3f{width:843.341564px;}
._2c{width:852.886488px;}
._31{width:858.111813px;}
._2d{width:869.668535px;}
._28{width:893.274603px;}
._29{width:923.157219px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:33.117615px;}
.fs8{font-size:35.997435px;}
.fsd{font-size:36.000000px;}
.fs6{font-size:38.877210px;}
.fs4{font-size:41.757030px;}
.fse{font-size:47.520000px;}
.fs1{font-size:48.236400px;}
.fs7{font-size:53.995950px;}
.fsc{font-size:54.719400px;}
.fs5{font-size:59.755950px;}
.fs2{font-size:66.235050px;}
.fsb{font-size:66.239400px;}
.fs0{font-size:71.995050px;}
.fsa{font-size:72.000000px;}
.fs3{font-size:84.234150px;}
.y0{bottom:0.000000px;}
.yd4{bottom:3.600013px;}
.y157{bottom:4.320000px;}
.y4{bottom:4.500000px;}
.y2{bottom:56.520036px;}
.y90{bottom:88.200005px;}
.y12e{bottom:91.260041px;}
.y101{bottom:91.980057px;}
.y18f{bottom:95.760000px;}
.y13e{bottom:96.660028px;}
.y154{bottom:99.000047px;}
.y36{bottom:100.080003px;}
.y12d{bottom:105.300019px;}
.y138{bottom:106.020036px;}
.y100{bottom:106.200005px;}
.y8f{bottom:107.100060px;}
.y18e{bottom:109.800000px;}
.y13d{bottom:114.300019px;}
.y35{bottom:117.720063px;}
.y153{bottom:118.260041px;}
.y8e{bottom:119.880043px;}
.ye2{bottom:121.140038px;}
.yf6{bottom:122.940011px;}
.y18d{bottom:124.560000px;}
.y137{bottom:125.280030px;}
.y107{bottom:127.440011px;}
.y12c{bottom:128.520036px;}
.y110{bottom:130.500047px;}
.y34{bottom:135.360055px;}
.y8d{bottom:135.720063px;}
.y152{bottom:137.700005px;}
.y112{bottom:138.780030px;}
.y18c{bottom:140.400000px;}
.ye1{bottom:140.940011px;}
.y136{bottom:144.720063px;}
.y106{bottom:144.900032px;}
.y12b{bottom:147.780030px;}
.y10f{bottom:148.140038px;}
.yf5{bottom:151.380043px;}
.y33{bottom:153.000047px;}
.y8c{bottom:154.440011px;}
.y18b{bottom:156.240000px;}
.y151{bottom:156.960000px;}
.ye0{bottom:160.380043px;}
.y10e{bottom:162.360055px;}
.y135{bottom:163.980057px;}
.y8b{bottom:167.220063px;}
.yf4{bottom:170.280030px;}
.y32{bottom:170.460000px;}
.y18a{bottom:172.080000px;}
.y150{bottom:176.400032px;}
.ydf{bottom:179.640038px;}
.y63{bottom:182.880043px;}
.y8a{bottom:183.060013px;}
.y134{bottom:183.420022px;}
.yf3{bottom:184.320007px;}
.yb8{bottom:186.120049px;}
.y12a{bottom:186.480057px;}
.y189{bottom:187.920000px;}
.y31{bottom:188.100060px;}
.y14f{bottom:195.660028px;}
.yb7{bottom:198.900032px;}
.yde{bottom:199.080003px;}
.y111{bottom:200.160028px;}
.y62{bottom:200.339997px;}
.y89{bottom:201.960000px;}
.y133{bottom:202.680016px;}
.y188{bottom:203.760000px;}
.y30{bottom:205.740052px;}
.y88{bottom:214.740052px;}
.y14e{bottom:215.100060px;}
.yb6{bottom:217.800019px;}
.y61{bottom:217.980057px;}
.ydd{bottom:218.339997px;}
.y187{bottom:219.600000px;}
.y132{bottom:222.120049px;}
.y2f{bottom:223.200005px;}
.y129{bottom:225.180016px;}
.y87{bottom:230.580003px;}
.y105{bottom:233.640038px;}
.y14d{bottom:234.360055px;}
.y186{bottom:235.440000px;}
.y60{bottom:235.620049px;}
.yf2{bottom:237.600060px;}
.ydc{bottom:237.780030px;}
.y2e{bottom:240.839997px;}
.y131{bottom:241.380043px;}
.y128{bottom:244.440011px;}
.yb5{bottom:246.420022px;}
.y104{bottom:247.680016px;}
.y86{bottom:249.480057px;}
.y185{bottom:250.920000px;}
.y5f{bottom:253.080003px;}
.y14c{bottom:253.800019px;}
.y11c{bottom:254.700005px;}
.yf1{bottom:257.040024px;}
.ydb{bottom:257.760041px;}
.y2d{bottom:258.480057px;}
.y130{bottom:260.640038px;}
.y85{bottom:263.520036px;}
.y127{bottom:263.880043px;}
.yb4{bottom:265.320007px;}
.y184{bottom:266.760000px;}
.y5e{bottom:270.720063px;}
.y11b{bottom:272.339997px;}
.y14b{bottom:273.060013px;}
.y2c{bottom:275.940011px;}
.yf0{bottom:276.300019px;}
.y12f{bottom:276.480057px;}
.yda{bottom:277.920022px;}
.y116{bottom:279.180016px;}
.yb3{bottom:281.160028px;}
.y183{bottom:282.600000px;}
.y126{bottom:283.140038px;}
.y5d{bottom:288.360055px;}
.y11a{bottom:289.980057px;}
.y14a{bottom:292.500047px;}
.y2b{bottom:293.580003px;}
.yb2{bottom:293.940011px;}
.y84{bottom:295.740052px;}
.yd9{bottom:298.080003px;}
.y182{bottom:298.440000px;}
.y125{bottom:302.580003px;}
.y5c{bottom:306.000047px;}
.y119{bottom:307.440011px;}
.yb1{bottom:309.780030px;}
.y2a{bottom:311.220063px;}
.y149{bottom:311.760041px;}
.y181{bottom:314.280000px;}
.yef{bottom:315.000047px;}
.y83{bottom:315.180016px;}
.y115{bottom:315.720063px;}
.yd8{bottom:318.060013px;}
.y124{bottom:321.839997px;}
.y5b{bottom:323.460000px;}
.y118{bottom:325.080003px;}
.yb0{bottom:328.680016px;}
.y29{bottom:328.860055px;}
.y180{bottom:330.120000px;}
.y148{bottom:331.020036px;}
.y114{bottom:333.360055px;}
.y82{bottom:334.440011px;}
.yd7{bottom:338.220063px;}
.y5a{bottom:341.100060px;}
.y123{bottom:341.280030px;}
.yaf{bottom:342.720063px;}
.y17f{bottom:345.960000px;}
.y28{bottom:346.320007px;}
.y113{bottom:347.580003px;}
.y147{bottom:350.460000px;}
.yee{bottom:353.700005px;}
.y81{bottom:353.880043px;}
.y117{bottom:356.940011px;}
.yd6{bottom:358.200005px;}
.y59{bottom:358.740052px;}
.y122{bottom:360.540024px;}
.y17e{bottom:361.800000px;}
.y27{bottom:363.960000px;}
.yae{bottom:365.940011px;}
.y146{bottom:369.720063px;}
.y80{bottom:373.140038px;}
.yff{bottom:374.220063px;}
.y58{bottom:376.200005px;}
.y17d{bottom:377.640000px;}
.yd5{bottom:378.360055px;}
.y121{bottom:379.800019px;}
.y26{bottom:381.600060px;}
.yad{bottom:384.839997px;}
.y145{bottom:389.160028px;}
.yfe{bottom:391.860055px;}
.yed{bottom:392.400032px;}
.y7f{bottom:392.580003px;}
.y17c{bottom:393.480000px;}
.y57{bottom:393.839997px;}
.yd3{bottom:394.920022px;}
.yd2{bottom:398.520036px;}
.y25{bottom:399.060013px;}
.y120{bottom:399.240052px;}
.yac{bottom:403.740052px;}
.y144{bottom:408.420022px;}
.y17b{bottom:409.320000px;}
.yfd{bottom:409.320007px;}
.y56{bottom:411.480057px;}
.y7e{bottom:411.839997px;}
.y24{bottom:416.700005px;}
.yd1{bottom:418.500047px;}
.yab{bottom:422.640038px;}
.yfc{bottom:423.540024px;}
.y17a{bottom:425.160000px;}
.y143{bottom:427.860055px;}
.y55{bottom:428.940011px;}
.yec{bottom:431.100060px;}
.y7d{bottom:431.280030px;}
.y23{bottom:434.339997px;}
.y11f{bottom:437.580003px;}
.yd0{bottom:437.940011px;}
.y179{bottom:441.000000px;}
.yaa{bottom:441.540024px;}
.y54{bottom:446.580003px;}
.y142{bottom:447.120049px;}
.y103{bottom:450.360055px;}
.y7c{bottom:450.540024px;}
.y22{bottom:451.800019px;}
.y11e{bottom:455.220063px;}
.y178{bottom:456.840000px;}
.ycf{bottom:457.200005px;}
.ya9{bottom:460.620049px;}
.y53{bottom:464.220063px;}
.y141{bottom:466.560013px;}
.y21{bottom:469.440011px;}
.yeb{bottom:469.800019px;}
.y7b{bottom:469.980057px;}
.y177{bottom:472.680000px;}
.y11d{bottom:472.680016px;}
.yce{bottom:476.460000px;}
.ya8{bottom:479.520036px;}
.y52{bottom:481.860055px;}
.y140{bottom:485.460000px;}
.y20{bottom:487.080003px;}
.y176{bottom:488.520000px;}
.yea{bottom:489.060013px;}
.y7a{bottom:489.240052px;}
.ycd{bottom:495.900032px;}
.ya7{bottom:498.420022px;}
.y51{bottom:499.320007px;}
.y13f{bottom:503.100060px;}
.y175{bottom:504.360000px;}
.y1f{bottom:504.720063px;}
.y79{bottom:508.500047px;}
.ycc{bottom:515.160028px;}
.y50{bottom:516.960034px;}
.ya6{bottom:517.320042px;}
.y174{bottom:520.200000px;}
.y1e{bottom:522.180016px;}
.ye9{bottom:527.760041px;}
.y78{bottom:527.940045px;}
.y4f{bottom:534.600025px;}
.y173{bottom:536.040000px;}
.ya5{bottom:536.220029px;}
.y1d{bottom:539.820042px;}
.y10d{bottom:543.780030px;}
.y77{bottom:547.200040px;}
.y13c{bottom:550.260041px;}
.y172{bottom:551.880000px;}
.y4e{bottom:552.060013px;}
.ycb{bottom:553.860020px;}
.ya4{bottom:555.120015px;}
.y1c{bottom:557.460034px;}
.y10c{bottom:563.040024px;}
.ye8{bottom:566.460034px;}
.y76{bottom:566.640038px;}
.y171{bottom:567.720000px;}
.y13b{bottom:569.160028px;}
.y4d{bottom:569.700040px;}
.yca{bottom:573.300019px;}
.ya3{bottom:574.200040px;}
.y1b{bottom:574.920022px;}
.y10b{bottom:582.480023px;}
.y170{bottom:583.560000px;}
.y75{bottom:585.900032px;}
.y13a{bottom:586.800019px;}
.y4c{bottom:587.340031px;}
.y1a{bottom:592.560013px;}
.ya2{bottom:593.100025px;}
.y16f{bottom:599.400000px;}
.y139{bottom:601.020036px;}
.y10a{bottom:601.560013px;}
.y4b{bottom:604.800019px;}
.ye7{bottom:605.160028px;}
.y74{bottom:605.340031px;}
.y19{bottom:610.200040px;}
.ya1{bottom:612.000047px;}
.yc9{bottom:612.720029px;}
.y16e{bottom:615.240000px;}
.y109{bottom:619.020036px;}
.y4a{bottom:622.440045px;}
.y73{bottom:624.600025px;}
.y18{bottom:627.660028px;}
.ya0{bottom:630.900032px;}
.y16d{bottom:631.080000px;}
.yc8{bottom:632.700040px;}
.y108{bottom:633.420022px;}
.y49{bottom:640.080037px;}
.ye6{bottom:643.860020px;}
.y72{bottom:644.040024px;}
.y17{bottom:645.300019px;}
.y16c{bottom:646.920000px;}
.y9f{bottom:649.800019px;}
.yc7{bottom:652.860020px;}
.y48{bottom:657.540024px;}
.y16b{bottom:662.760000px;}
.y16{bottom:662.940045px;}
.y71{bottom:663.300019px;}
.y9e{bottom:668.880043px;}
.yc6{bottom:673.020036px;}
.y47{bottom:675.180016px;}
.y16a{bottom:678.600000px;}
.y15{bottom:680.400032px;}
.ye5{bottom:682.560013px;}
.y70{bottom:682.740018px;}
.yfb{bottom:682.920022px;}
.y9d{bottom:687.780030px;}
.y46{bottom:692.820042px;}
.yc5{bottom:693.000047px;}
.y169{bottom:694.080000px;}
.y14{bottom:698.040024px;}
.yfa{bottom:700.200040px;}
.y6f{bottom:702.000047px;}
.y9c{bottom:706.680016px;}
.y168{bottom:709.920000px;}
.y45{bottom:710.460034px;}
.yc4{bottom:713.160028px;}
.y13{bottom:715.680016px;}
.yf9{bottom:717.120015px;}
.y6e{bottom:721.260041px;}
.y9b{bottom:725.580037px;}
.y167{bottom:725.760000px;}
.y44{bottom:727.920022px;}
.yf8{bottom:731.340031px;}
.yc3{bottom:733.140038px;}
.y12{bottom:733.320042px;}
.y102{bottom:740.520036px;}
.y6d{bottom:740.700040px;}
.y166{bottom:741.600000px;}
.y9a{bottom:744.660028px;}
.y43{bottom:745.560013px;}
.y11{bottom:750.780030px;}
.yc2{bottom:753.300019px;}
.y165{bottom:757.440000px;}
.y6c{bottom:759.960034px;}
.y42{bottom:763.200040px;}
.y99{bottom:763.560013px;}
.y10{bottom:772.200040px;}
.y164{bottom:773.280000px;}
.yc1{bottom:773.460034px;}
.ye4{bottom:779.220029px;}
.y6b{bottom:779.400032px;}
.y41{bottom:780.660028px;}
.y98{bottom:782.460034px;}
.y163{bottom:789.120000px;}
.yf{bottom:789.840031px;}
.yc0{bottom:793.440045px;}
.y40{bottom:798.300019px;}
.y6a{bottom:798.660028px;}
.y97{bottom:801.360020px;}
.ye{bottom:803.520036px;}
.y162{bottom:804.960000px;}
.ybf{bottom:813.600025px;}
.y3f{bottom:815.940028px;}
.ye3{bottom:817.920022px;}
.y69{bottom:818.100025px;}
.y96{bottom:820.260024px;}
.y161{bottom:820.800000px;}
.yd{bottom:821.520036px;}
.y3e{bottom:833.400032px;}
.ybe{bottom:833.580037px;}
.y160{bottom:837.360000px;}
.y68{bottom:837.360038px;}
.y95{bottom:839.340031px;}
.yc{bottom:840.780030px;}
.ybd{bottom:853.740034px;}
.y3d{bottom:854.820025px;}
.y67{bottom:856.620032px;}
.y15f{bottom:856.800000px;}
.y94{bottom:858.240034px;}
.yb{bottom:861.300036px;}
.y3c{bottom:872.460034px;}
.ybc{bottom:873.900032px;}
.y15e{bottom:875.880000px;}
.y66{bottom:876.060031px;}
.y93{bottom:877.140038px;}
.ya{bottom:885.960034px;}
.y3b{bottom:886.320025px;}
.ybb{bottom:893.880027px;}
.y15d{bottom:895.320000px;}
.y65{bottom:895.320025px;}
.y92{bottom:896.040024px;}
.y3a{bottom:904.140038px;}
.y9{bottom:910.620032px;}
.yba{bottom:914.040024px;}
.y15c{bottom:914.760000px;}
.y64{bottom:914.760024px;}
.y91{bottom:915.120032px;}
.y39{bottom:923.400032px;}
.yb9{bottom:933.300036px;}
.y8{bottom:934.020036px;}
.y15b{bottom:934.200000px;}
.y38{bottom:943.920022px;}
.y15a{bottom:953.280000px;}
.y7{bottom:953.460034px;}
.y37{bottom:968.580028px;}
.y159{bottom:972.720000px;}
.y6{bottom:972.720029px;}
.y158{bottom:992.160000px;}
.y5{bottom:992.160028px;}
.yf7{bottom:996.480032px;}
.y156{bottom:1018.440000px;}
.y3{bottom:1018.620032px;}
.y155{bottom:1022.040000px;}
.y1{bottom:1022.220029px;}
.h17{height:19.259994px;}
.h4{height:20.159998px;}
.h1e{height:20.160000px;}
.h24{height:33.644531px;}
.h23{height:33.714141px;}
.h18{height:34.742660px;}
.h1b{height:34.742665px;}
.h15{height:35.929095px;}
.h12{height:35.929099px;}
.h14{height:35.929369px;}
.h16{height:35.929374px;}
.hb{height:36.874607px;}
.he{height:36.874675px;}
.hc{height:37.195562px;}
.hf{height:37.195629px;}
.h22{height:38.821918px;}
.h1a{height:41.490704px;}
.h19{height:42.230403px;}
.h3{height:43.031203px;}
.h21{height:46.445204px;}
.h13{height:46.982804px;}
.h20{height:46.995043px;}
.h11{height:49.988751px;}
.h2{height:51.623404px;}
.ha{height:51.994679px;}
.hd{height:52.315634px;}
.h10{height:53.307676px;}
.h5{height:54.500253px;}
.h1f{height:54.504000px;}
.h9{height:56.079871px;}
.h1d{height:57.384000px;}
.h6{height:57.632255px;}
.h7{height:57.988010px;}
.h8{height:73.746011px;}
.h1{height:1092.750000px;}
.h0{height:1092.780030px;}
.h1c{height:1093.500000px;}
.w8{width:0.359999px;}
.w5{width:0.360009px;}
.w3{width:0.539996px;}
.w9{width:1.080000px;}
.w6{width:8.099997px;}
.w4{width:20.159981px;}
.w2{width:20.160006px;}
.w7{width:24.480002px;}
.w0{width:773.820000px;}
.w1{width:774.000000px;}
.x0{left:0.000000px;}
.x16{left:82.260003px;}
.x3{left:84.959997px;}
.x11{left:87.480002px;}
.x31{left:89.099997px;}
.x26{left:91.439999px;}
.x34{left:93.240000px;}
.x5{left:98.099997px;}
.x30{left:103.860000px;}
.x4{left:105.120002px;}
.xc{left:106.200002px;}
.x22{left:108.000000px;}
.x1b{left:109.439999px;}
.xa{left:124.379998px;}
.x33{left:127.439850px;}
.xb{left:132.480002px;}
.x21{left:139.319996px;}
.x1d{left:154.080008px;}
.x1f{left:157.680005px;}
.x13{left:165.060001px;}
.x14{left:171.900003px;}
.x6{left:186.840002px;}
.x19{left:189.719999px;}
.x28{left:198.360008px;}
.x2a{left:201.960005px;}
.x9{left:205.919992px;}
.x7{left:210.599997px;}
.x18{left:232.919992px;}
.x1a{left:237.960005px;}
.x12{left:251.460005px;}
.x8{left:253.620002px;}
.x23{left:294.660015px;}
.xd{left:322.920010px;}
.x2d{left:328.139992px;}
.x32{left:346.320000px;}
.x1{left:349.560001px;}
.x10{left:386.819996px;}
.x2b{left:397.439999px;}
.x17{left:460.980011px;}
.x15{left:525.600014px;}
.x1e{left:552.240006px;}
.x20{left:555.480011px;}
.x1c{left:559.800007px;}
.x2{left:584.460023px;}
.xe{left:668.700027px;}
.x2f{left:671.220017px;}
.xf{left:688.860008px;}
.x24{left:692.279983px;}
.x25{left:693.720017px;}
.x2c{left:700.379998px;}
.x27{left:702.539978px;}
.x29{left:707.039978px;}
.x2e{left:735.120002px;}
@media print{
.v2{vertical-align:-18.559996pt;}
.v4{vertical-align:-13.440064pt;}
.v5{vertical-align:-10.880124pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:2.560000pt;}
.v6{vertical-align:10.879884pt;}
.v3{vertical-align:13.440000pt;}
.v1{vertical-align:18.559996pt;}
.ls9{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.002140pt;}
.ls1{letter-spacing:0.015903pt;}
.ls3{letter-spacing:0.015907pt;}
.lsa{letter-spacing:0.015935pt;}
.lsd{letter-spacing:0.021351pt;}
.ls6{letter-spacing:0.089675pt;}
.ls5{letter-spacing:0.089703pt;}
.ls12{letter-spacing:0.123236pt;}
.ls1b{letter-spacing:0.138440pt;}
.ls17{letter-spacing:0.138500pt;}
.ls2{letter-spacing:0.167436pt;}
.ls4{letter-spacing:0.181704pt;}
.ls1c{letter-spacing:0.184293pt;}
.ls10{letter-spacing:0.225273pt;}
.lsb{letter-spacing:0.229923pt;}
.ls0{letter-spacing:0.230051pt;}
.lsf{letter-spacing:0.258432pt;}
.ls1a{letter-spacing:0.279162pt;}
.ls13{letter-spacing:0.320768pt;}
.ls11{letter-spacing:0.320796pt;}
.lsc{letter-spacing:0.322612pt;}
.ls18{letter-spacing:4.160888pt;}
.ls8{letter-spacing:4.954408pt;}
.ls1d{letter-spacing:5.934327pt;}
.ls7{letter-spacing:10.714420pt;}
.ls1e{letter-spacing:11.052791pt;}
.lse{letter-spacing:17.754392pt;}
.ls1f{letter-spacing:46.882043pt;}
.ls14{letter-spacing:142.567360pt;}
.ls16{letter-spacing:205.287356pt;}
.ls15{letter-spacing:732.647404pt;}
.ws0{word-spacing:-16.472456pt;}
.ws1{word-spacing:-12.952632pt;}
.ws3{word-spacing:-11.685608pt;}
.wsa{word-spacing:-10.700683pt;}
.ws7{word-spacing:-10.559208pt;}
.ws4{word-spacing:-9.432896pt;}
.ws2{word-spacing:-8.165819pt;}
.ws5{word-spacing:-7.602654pt;}
.wsb{word-spacing:-7.040000pt;}
.ws8{word-spacing:-7.039498pt;}
.ws9{word-spacing:-6.476334pt;}
.ws6{word-spacing:0.000000pt;}
._1b{margin-left:-2.134381pt;}
._0{margin-left:-1.158846pt;}
._1{width:1.034525pt;}
._3{width:2.122581pt;}
._4{width:3.864841pt;}
._5{width:4.909325pt;}
._6{width:5.837959pt;}
._d{width:7.088965pt;}
._a{width:8.831025pt;}
._2{width:10.269139pt;}
._1a{width:11.480742pt;}
._e{width:12.999409pt;}
._f{width:13.961106pt;}
._8{width:15.007043pt;}
._7{width:15.932845pt;}
._b{width:17.586923pt;}
._c{width:18.798226pt;}
._12{width:20.520152pt;}
._1c{width:21.752798pt;}
._9{width:23.282620pt;}
._1f{width:24.717584pt;}
._17{width:25.685514pt;}
._18{width:26.588493pt;}
._14{width:28.141525pt;}
._15{width:29.100318pt;}
._19{width:30.271783pt;}
._10{width:32.020325pt;}
._13{width:33.037306pt;}
._3d{width:34.036306pt;}
._3c{width:35.027725pt;}
._3e{width:36.023550pt;}
._1e{width:45.011999pt;}
._1d{width:46.105604pt;}
._16{width:47.044324pt;}
._11{width:50.911240pt;}
._3a{width:71.634667pt;}
._3b{width:72.753918pt;}
._32{width:76.580137pt;}
._41{width:85.257958pt;}
._40{width:87.109683pt;}
._2b{width:138.811646pt;}
._42{width:145.609561pt;}
._20{width:154.350257pt;}
._33{width:164.857660pt;}
._21{width:171.369853pt;}
._36{width:234.988158pt;}
._37{width:261.856591pt;}
._39{width:335.502147pt;}
._25{width:386.210560pt;}
._34{width:402.811216pt;}
._38{width:431.053336pt;}
._35{width:464.430051pt;}
._43{width:537.544657pt;}
._26{width:550.898148pt;}
._2f{width:626.747091pt;}
._27{width:642.958119pt;}
._2a{width:662.491250pt;}
._22{width:687.623672pt;}
._24{width:698.506558pt;}
._2e{width:714.421791pt;}
._23{width:725.351532pt;}
._30{width:746.837446pt;}
._3f{width:749.636946pt;}
._2c{width:758.121323pt;}
._31{width:762.766056pt;}
._2d{width:773.038698pt;}
._28{width:794.021870pt;}
._29{width:820.584195pt;}
.fs9{font-size:29.437880pt;}
.fs8{font-size:31.997720pt;}
.fsd{font-size:32.000000pt;}
.fs6{font-size:34.557520pt;}
.fs4{font-size:37.117360pt;}
.fse{font-size:42.240000pt;}
.fs1{font-size:42.876800pt;}
.fs7{font-size:47.996400pt;}
.fsc{font-size:48.639467pt;}
.fs5{font-size:53.116400pt;}
.fs2{font-size:58.875600pt;}
.fsb{font-size:58.879467pt;}
.fs0{font-size:63.995600pt;}
.fsa{font-size:64.000000pt;}
.fs3{font-size:74.874800pt;}
.y0{bottom:0.000000pt;}
.yd4{bottom:3.200012pt;}
.y157{bottom:3.840000pt;}
.y4{bottom:4.000000pt;}
.y2{bottom:50.240032pt;}
.y90{bottom:78.400005pt;}
.y12e{bottom:81.120037pt;}
.y101{bottom:81.760051pt;}
.y18f{bottom:85.120000pt;}
.y13e{bottom:85.920025pt;}
.y154{bottom:88.000042pt;}
.y36{bottom:88.960003pt;}
.y12d{bottom:93.600017pt;}
.y138{bottom:94.240032pt;}
.y100{bottom:94.400005pt;}
.y8f{bottom:95.200054pt;}
.y18e{bottom:97.600000pt;}
.y13d{bottom:101.600017pt;}
.y35{bottom:104.640056pt;}
.y153{bottom:105.120037pt;}
.y8e{bottom:106.560039pt;}
.ye2{bottom:107.680034pt;}
.yf6{bottom:109.280010pt;}
.y18d{bottom:110.720000pt;}
.y137{bottom:111.360027pt;}
.y107{bottom:113.280010pt;}
.y12c{bottom:114.240032pt;}
.y110{bottom:116.000042pt;}
.y34{bottom:120.320049pt;}
.y8d{bottom:120.640056pt;}
.y152{bottom:122.400005pt;}
.y112{bottom:123.360027pt;}
.y18c{bottom:124.800000pt;}
.ye1{bottom:125.280010pt;}
.y136{bottom:128.640056pt;}
.y106{bottom:128.800029pt;}
.y12b{bottom:131.360027pt;}
.y10f{bottom:131.680034pt;}
.yf5{bottom:134.560039pt;}
.y33{bottom:136.000042pt;}
.y8c{bottom:137.280010pt;}
.y18b{bottom:138.880000pt;}
.y151{bottom:139.520000pt;}
.ye0{bottom:142.560039pt;}
.y10e{bottom:144.320049pt;}
.y135{bottom:145.760051pt;}
.y8b{bottom:148.640056pt;}
.yf4{bottom:151.360027pt;}
.y32{bottom:151.520000pt;}
.y18a{bottom:152.960000pt;}
.y150{bottom:156.800029pt;}
.ydf{bottom:159.680034pt;}
.y63{bottom:162.560039pt;}
.y8a{bottom:162.720012pt;}
.y134{bottom:163.040020pt;}
.yf3{bottom:163.840007pt;}
.yb8{bottom:165.440044pt;}
.y12a{bottom:165.760051pt;}
.y189{bottom:167.040000pt;}
.y31{bottom:167.200054pt;}
.y14f{bottom:173.920025pt;}
.yb7{bottom:176.800029pt;}
.yde{bottom:176.960003pt;}
.y111{bottom:177.920025pt;}
.y62{bottom:178.079998pt;}
.y89{bottom:179.520000pt;}
.y133{bottom:180.160015pt;}
.y188{bottom:181.120000pt;}
.y30{bottom:182.880047pt;}
.y88{bottom:190.880047pt;}
.y14e{bottom:191.200054pt;}
.yb6{bottom:193.600017pt;}
.y61{bottom:193.760051pt;}
.ydd{bottom:194.079998pt;}
.y187{bottom:195.200000pt;}
.y132{bottom:197.440044pt;}
.y2f{bottom:198.400005pt;}
.y129{bottom:200.160015pt;}
.y87{bottom:204.960003pt;}
.y105{bottom:207.680034pt;}
.y14d{bottom:208.320049pt;}
.y186{bottom:209.280000pt;}
.y60{bottom:209.440044pt;}
.yf2{bottom:211.200054pt;}
.ydc{bottom:211.360027pt;}
.y2e{bottom:214.079998pt;}
.y131{bottom:214.560039pt;}
.y128{bottom:217.280010pt;}
.yb5{bottom:219.040020pt;}
.y104{bottom:220.160015pt;}
.y86{bottom:221.760051pt;}
.y185{bottom:223.040000pt;}
.y5f{bottom:224.960003pt;}
.y14c{bottom:225.600017pt;}
.y11c{bottom:226.400005pt;}
.yf1{bottom:228.480022pt;}
.ydb{bottom:229.120037pt;}
.y2d{bottom:229.760051pt;}
.y130{bottom:231.680034pt;}
.y85{bottom:234.240032pt;}
.y127{bottom:234.560039pt;}
.yb4{bottom:235.840007pt;}
.y184{bottom:237.120000pt;}
.y5e{bottom:240.640056pt;}
.y11b{bottom:242.079998pt;}
.y14b{bottom:242.720012pt;}
.y2c{bottom:245.280010pt;}
.yf0{bottom:245.600017pt;}
.y12f{bottom:245.760051pt;}
.yda{bottom:247.040020pt;}
.y116{bottom:248.160015pt;}
.yb3{bottom:249.920025pt;}
.y183{bottom:251.200000pt;}
.y126{bottom:251.680034pt;}
.y5d{bottom:256.320049pt;}
.y11a{bottom:257.760051pt;}
.y14a{bottom:260.000042pt;}
.y2b{bottom:260.960003pt;}
.yb2{bottom:261.280010pt;}
.y84{bottom:262.880047pt;}
.yd9{bottom:264.960003pt;}
.y182{bottom:265.280000pt;}
.y125{bottom:268.960003pt;}
.y5c{bottom:272.000042pt;}
.y119{bottom:273.280010pt;}
.yb1{bottom:275.360027pt;}
.y2a{bottom:276.640056pt;}
.y149{bottom:277.120037pt;}
.y181{bottom:279.360000pt;}
.yef{bottom:280.000042pt;}
.y83{bottom:280.160015pt;}
.y115{bottom:280.640056pt;}
.yd8{bottom:282.720012pt;}
.y124{bottom:286.079998pt;}
.y5b{bottom:287.520000pt;}
.y118{bottom:288.960003pt;}
.yb0{bottom:292.160015pt;}
.y29{bottom:292.320049pt;}
.y180{bottom:293.440000pt;}
.y148{bottom:294.240032pt;}
.y114{bottom:296.320049pt;}
.y82{bottom:297.280010pt;}
.yd7{bottom:300.640056pt;}
.y5a{bottom:303.200054pt;}
.y123{bottom:303.360027pt;}
.yaf{bottom:304.640056pt;}
.y17f{bottom:307.520000pt;}
.y28{bottom:307.840007pt;}
.y113{bottom:308.960003pt;}
.y147{bottom:311.520000pt;}
.yee{bottom:314.400005pt;}
.y81{bottom:314.560039pt;}
.y117{bottom:317.280010pt;}
.yd6{bottom:318.400005pt;}
.y59{bottom:318.880047pt;}
.y122{bottom:320.480022pt;}
.y17e{bottom:321.600000pt;}
.y27{bottom:323.520000pt;}
.yae{bottom:325.280010pt;}
.y146{bottom:328.640056pt;}
.y80{bottom:331.680034pt;}
.yff{bottom:332.640056pt;}
.y58{bottom:334.400005pt;}
.y17d{bottom:335.680000pt;}
.yd5{bottom:336.320049pt;}
.y121{bottom:337.600017pt;}
.y26{bottom:339.200054pt;}
.yad{bottom:342.079998pt;}
.y145{bottom:345.920025pt;}
.yfe{bottom:348.320049pt;}
.yed{bottom:348.800029pt;}
.y7f{bottom:348.960003pt;}
.y17c{bottom:349.760000pt;}
.y57{bottom:350.079998pt;}
.yd3{bottom:351.040020pt;}
.yd2{bottom:354.240032pt;}
.y25{bottom:354.720012pt;}
.y120{bottom:354.880047pt;}
.yac{bottom:358.880047pt;}
.y144{bottom:363.040020pt;}
.y17b{bottom:363.840000pt;}
.yfd{bottom:363.840007pt;}
.y56{bottom:365.760051pt;}
.y7e{bottom:366.079998pt;}
.y24{bottom:370.400005pt;}
.yd1{bottom:372.000042pt;}
.yab{bottom:375.680034pt;}
.yfc{bottom:376.480022pt;}
.y17a{bottom:377.920000pt;}
.y143{bottom:380.320049pt;}
.y55{bottom:381.280010pt;}
.yec{bottom:383.200054pt;}
.y7d{bottom:383.360027pt;}
.y23{bottom:386.079998pt;}
.y11f{bottom:388.960003pt;}
.yd0{bottom:389.280010pt;}
.y179{bottom:392.000000pt;}
.yaa{bottom:392.480022pt;}
.y54{bottom:396.960003pt;}
.y142{bottom:397.440044pt;}
.y103{bottom:400.320049pt;}
.y7c{bottom:400.480022pt;}
.y22{bottom:401.600017pt;}
.y11e{bottom:404.640056pt;}
.y178{bottom:406.080000pt;}
.ycf{bottom:406.400005pt;}
.ya9{bottom:409.440044pt;}
.y53{bottom:412.640056pt;}
.y141{bottom:414.720012pt;}
.y21{bottom:417.280010pt;}
.yeb{bottom:417.600017pt;}
.y7b{bottom:417.760051pt;}
.y177{bottom:420.160000pt;}
.y11d{bottom:420.160015pt;}
.yce{bottom:423.520000pt;}
.ya8{bottom:426.240032pt;}
.y52{bottom:428.320049pt;}
.y140{bottom:431.520000pt;}
.y20{bottom:432.960003pt;}
.y176{bottom:434.240000pt;}
.yea{bottom:434.720012pt;}
.y7a{bottom:434.880047pt;}
.ycd{bottom:440.800029pt;}
.ya7{bottom:443.040020pt;}
.y51{bottom:443.840007pt;}
.y13f{bottom:447.200054pt;}
.y175{bottom:448.320000pt;}
.y1f{bottom:448.640056pt;}
.y79{bottom:452.000042pt;}
.ycc{bottom:457.920025pt;}
.y50{bottom:459.520031pt;}
.ya6{bottom:459.840038pt;}
.y174{bottom:462.400000pt;}
.y1e{bottom:464.160015pt;}
.ye9{bottom:469.120037pt;}
.y78{bottom:469.280040pt;}
.y4f{bottom:475.200023pt;}
.y173{bottom:476.480000pt;}
.ya5{bottom:476.640026pt;}
.y1d{bottom:479.840038pt;}
.y10d{bottom:483.360027pt;}
.y77{bottom:486.400036pt;}
.y13c{bottom:489.120037pt;}
.y172{bottom:490.560000pt;}
.y4e{bottom:490.720012pt;}
.ycb{bottom:492.320018pt;}
.ya4{bottom:493.440014pt;}
.y1c{bottom:495.520031pt;}
.y10c{bottom:500.480022pt;}
.ye8{bottom:503.520031pt;}
.y76{bottom:503.680034pt;}
.y171{bottom:504.640000pt;}
.y13b{bottom:505.920025pt;}
.y4d{bottom:506.400036pt;}
.yca{bottom:509.600017pt;}
.ya3{bottom:510.400036pt;}
.y1b{bottom:511.040020pt;}
.y10b{bottom:517.760021pt;}
.y170{bottom:518.720000pt;}
.y75{bottom:520.800029pt;}
.y13a{bottom:521.600017pt;}
.y4c{bottom:522.080028pt;}
.y1a{bottom:526.720012pt;}
.ya2{bottom:527.200023pt;}
.y16f{bottom:532.800000pt;}
.y139{bottom:534.240032pt;}
.y10a{bottom:534.720012pt;}
.y4b{bottom:537.600017pt;}
.ye7{bottom:537.920025pt;}
.y74{bottom:538.080028pt;}
.y19{bottom:542.400036pt;}
.ya1{bottom:544.000042pt;}
.yc9{bottom:544.640026pt;}
.y16e{bottom:546.880000pt;}
.y109{bottom:550.240032pt;}
.y4a{bottom:553.280040pt;}
.y73{bottom:555.200023pt;}
.y18{bottom:557.920025pt;}
.ya0{bottom:560.800029pt;}
.y16d{bottom:560.960000pt;}
.yc8{bottom:562.400036pt;}
.y108{bottom:563.040020pt;}
.y49{bottom:568.960033pt;}
.ye6{bottom:572.320018pt;}
.y72{bottom:572.480022pt;}
.y17{bottom:573.600017pt;}
.y16c{bottom:575.040000pt;}
.y9f{bottom:577.600017pt;}
.yc7{bottom:580.320018pt;}
.y48{bottom:584.480022pt;}
.y16b{bottom:589.120000pt;}
.y16{bottom:589.280040pt;}
.y71{bottom:589.600017pt;}
.y9e{bottom:594.560039pt;}
.yc6{bottom:598.240032pt;}
.y47{bottom:600.160015pt;}
.y16a{bottom:603.200000pt;}
.y15{bottom:604.800029pt;}
.ye5{bottom:606.720012pt;}
.y70{bottom:606.880016pt;}
.yfb{bottom:607.040020pt;}
.y9d{bottom:611.360027pt;}
.y46{bottom:615.840038pt;}
.yc5{bottom:616.000042pt;}
.y169{bottom:616.960000pt;}
.y14{bottom:620.480022pt;}
.yfa{bottom:622.400036pt;}
.y6f{bottom:624.000042pt;}
.y9c{bottom:628.160015pt;}
.y168{bottom:631.040000pt;}
.y45{bottom:631.520031pt;}
.yc4{bottom:633.920025pt;}
.y13{bottom:636.160015pt;}
.yf9{bottom:637.440014pt;}
.y6e{bottom:641.120037pt;}
.y9b{bottom:644.960033pt;}
.y167{bottom:645.120000pt;}
.y44{bottom:647.040020pt;}
.yf8{bottom:650.080028pt;}
.yc3{bottom:651.680034pt;}
.y12{bottom:651.840038pt;}
.y102{bottom:658.240032pt;}
.y6d{bottom:658.400036pt;}
.y166{bottom:659.200000pt;}
.y9a{bottom:661.920025pt;}
.y43{bottom:662.720012pt;}
.y11{bottom:667.360027pt;}
.yc2{bottom:669.600017pt;}
.y165{bottom:673.280000pt;}
.y6c{bottom:675.520031pt;}
.y42{bottom:678.400036pt;}
.y99{bottom:678.720012pt;}
.y10{bottom:686.400036pt;}
.y164{bottom:687.360000pt;}
.yc1{bottom:687.520031pt;}
.ye4{bottom:692.640026pt;}
.y6b{bottom:692.800029pt;}
.y41{bottom:693.920025pt;}
.y98{bottom:695.520031pt;}
.y163{bottom:701.440000pt;}
.yf{bottom:702.080028pt;}
.yc0{bottom:705.280040pt;}
.y40{bottom:709.600017pt;}
.y6a{bottom:709.920025pt;}
.y97{bottom:712.320018pt;}
.ye{bottom:714.240032pt;}
.y162{bottom:715.520000pt;}
.ybf{bottom:723.200023pt;}
.y3f{bottom:725.280025pt;}
.ye3{bottom:727.040020pt;}
.y69{bottom:727.200023pt;}
.y96{bottom:729.120022pt;}
.y161{bottom:729.600000pt;}
.yd{bottom:730.240032pt;}
.y3e{bottom:740.800029pt;}
.ybe{bottom:740.960033pt;}
.y160{bottom:744.320000pt;}
.y68{bottom:744.320034pt;}
.y95{bottom:746.080028pt;}
.yc{bottom:747.360027pt;}
.ybd{bottom:758.880031pt;}
.y3d{bottom:759.840023pt;}
.y67{bottom:761.440029pt;}
.y15f{bottom:761.600000pt;}
.y94{bottom:762.880031pt;}
.yb{bottom:765.600032pt;}
.y3c{bottom:775.520031pt;}
.ybc{bottom:776.800029pt;}
.y15e{bottom:778.560000pt;}
.y66{bottom:778.720028pt;}
.y93{bottom:779.680034pt;}
.ya{bottom:787.520031pt;}
.y3b{bottom:787.840023pt;}
.ybb{bottom:794.560024pt;}
.y15d{bottom:795.840000pt;}
.y65{bottom:795.840023pt;}
.y92{bottom:796.480022pt;}
.y3a{bottom:803.680034pt;}
.y9{bottom:809.440029pt;}
.yba{bottom:812.480022pt;}
.y15c{bottom:813.120000pt;}
.y64{bottom:813.120022pt;}
.y91{bottom:813.440029pt;}
.y39{bottom:820.800029pt;}
.yb9{bottom:829.600032pt;}
.y8{bottom:830.240032pt;}
.y15b{bottom:830.400000pt;}
.y38{bottom:839.040020pt;}
.y15a{bottom:847.360000pt;}
.y7{bottom:847.520031pt;}
.y37{bottom:860.960025pt;}
.y159{bottom:864.640000pt;}
.y6{bottom:864.640026pt;}
.y158{bottom:881.920000pt;}
.y5{bottom:881.920025pt;}
.yf7{bottom:885.760029pt;}
.y156{bottom:905.280000pt;}
.y3{bottom:905.440029pt;}
.y155{bottom:908.480000pt;}
.y1{bottom:908.640026pt;}
.h17{height:17.119995pt;}
.h4{height:17.919998pt;}
.h1e{height:17.920000pt;}
.h24{height:29.906250pt;}
.h23{height:29.968125pt;}
.h18{height:30.882365pt;}
.h1b{height:30.882369pt;}
.h15{height:31.936973pt;}
.h12{height:31.936977pt;}
.h14{height:31.937217pt;}
.h16{height:31.937221pt;}
.hb{height:32.777429pt;}
.he{height:32.777489pt;}
.hc{height:33.062722pt;}
.hf{height:33.062782pt;}
.h22{height:34.508372pt;}
.h1a{height:36.880625pt;}
.h19{height:37.538136pt;}
.h3{height:38.249958pt;}
.h21{height:41.284626pt;}
.h13{height:41.762493pt;}
.h20{height:41.773372pt;}
.h11{height:44.434445pt;}
.h2{height:45.887470pt;}
.ha{height:46.217493pt;}
.hd{height:46.502786pt;}
.h10{height:47.384601pt;}
.h5{height:48.444669pt;}
.h1f{height:48.448000pt;}
.h9{height:49.848775pt;}
.h1d{height:51.008000pt;}
.h6{height:51.228671pt;}
.h7{height:51.544898pt;}
.h8{height:65.552010pt;}
.h1{height:971.333333pt;}
.h0{height:971.360027pt;}
.h1c{height:972.000000pt;}
.w8{width:0.319999pt;}
.w5{width:0.320008pt;}
.w3{width:0.479996pt;}
.w9{width:0.960000pt;}
.w6{width:7.199997pt;}
.w4{width:17.919983pt;}
.w2{width:17.920005pt;}
.w7{width:21.760002pt;}
.w0{width:687.840000pt;}
.w1{width:688.000000pt;}
.x0{left:0.000000pt;}
.x16{left:73.120003pt;}
.x3{left:75.519997pt;}
.x11{left:77.760002pt;}
.x31{left:79.199997pt;}
.x26{left:81.279999pt;}
.x34{left:82.880000pt;}
.x5{left:87.199997pt;}
.x30{left:92.320000pt;}
.x4{left:93.440002pt;}
.xc{left:94.400002pt;}
.x22{left:96.000000pt;}
.x1b{left:97.279999pt;}
.xa{left:110.559998pt;}
.x33{left:113.279867pt;}
.xb{left:117.760002pt;}
.x21{left:123.839996pt;}
.x1d{left:136.960007pt;}
.x1f{left:140.160004pt;}
.x13{left:146.720001pt;}
.x14{left:152.800003pt;}
.x6{left:166.080002pt;}
.x19{left:168.639999pt;}
.x28{left:176.320007pt;}
.x2a{left:179.520004pt;}
.x9{left:183.039993pt;}
.x7{left:187.199997pt;}
.x18{left:207.039993pt;}
.x1a{left:211.520004pt;}
.x12{left:223.520004pt;}
.x8{left:225.440002pt;}
.x23{left:261.920013pt;}
.xd{left:287.040009pt;}
.x2d{left:291.679993pt;}
.x32{left:307.840000pt;}
.x1{left:310.720001pt;}
.x10{left:343.839996pt;}
.x2b{left:353.279999pt;}
.x17{left:409.760010pt;}
.x15{left:467.200012pt;}
.x1e{left:490.880005pt;}
.x20{left:493.760010pt;}
.x1c{left:497.600006pt;}
.x2{left:519.520020pt;}
.xe{left:594.400024pt;}
.x2f{left:596.640015pt;}
.xf{left:612.320007pt;}
.x24{left:615.359985pt;}
.x25{left:616.640015pt;}
.x2c{left:622.559998pt;}
.x27{left:624.479980pt;}
.x29{left:628.479980pt;}
.x2e{left:653.440002pt;}
}




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