
    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_7a62b772568718db374d4d38.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_3d97278004de1ca386520013.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910156;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_96e032cf549d16de7d549937.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.361944;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_bf8317646452fd24c46a1621.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_034f2ce7e4c0bce9f7e03c36.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.898438;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_717edc2e5ca69fe0fec48480.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_1e3baf1fbd33e53030ffb3c1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-195.769200px;}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-2.664000px;}
.ls1{letter-spacing:-2.220000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:6.998400px;}
.ls8{letter-spacing:8.928000px;}
.ls5{letter-spacing:448.272000px;}
.ls4{letter-spacing:484.272000px;}
.ls6{letter-spacing:538.272000px;}
.ls3{letter-spacing:574.272000px;}
.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:-106.380000px;}
.ws2{word-spacing:-70.920000px;}
.ws6{word-spacing:-18.000000px;}
.wsf{word-spacing:-15.336000px;}
.ws7{word-spacing:-15.000000px;}
.wsb{word-spacing:-1.728000px;}
.ws3{word-spacing:-1.296000px;}
.ws4{word-spacing:-1.080000px;}
.ws10{word-spacing:-0.936000px;}
.ws1{word-spacing:0.000000px;}
.wsd{word-spacing:0.072000px;}
.wsc{word-spacing:0.720000px;}
.wsa{word-spacing:1.296000px;}
.wse{word-spacing:1.800000px;}
.ws5{word-spacing:2.088000px;}
.ws9{word-spacing:2.220000px;}
.ws8{word-spacing:8.208000px;}
.ws11{word-spacing:74.289600px;}
.ws12{word-spacing:85.608000px;}
.ws13{word-spacing:592.272000px;}
.ws14{word-spacing:1111.896000px;}
._6{margin-left:-75.086400px;}
._34{margin-left:-18.698400px;}
._3{margin-left:-16.716000px;}
._33{margin-left:-8.610000px;}
._e{margin-left:-7.062000px;}
._16{margin-left:-6.051600px;}
._d{margin-left:-5.044800px;}
._0{margin-left:-3.924000px;}
._2{margin-left:-2.118000px;}
._1{margin-left:-1.080000px;}
._4{width:1.686000px;}
._8{width:2.793600px;}
._9{width:4.291200px;}
._b{width:5.882400px;}
._7{width:6.890400px;}
._a{width:8.294400px;}
._c{width:9.669600px;}
._f{width:10.706400px;}
._14{width:11.757600px;}
._15{width:13.010400px;}
._10{width:15.400800px;}
._11{width:16.401600px;}
._17{width:20.030400px;}
._1c{width:21.348000px;}
._18{width:26.532000px;}
._19{width:29.995200px;}
._1b{width:38.023200px;}
._1a{width:40.687200px;}
._21{width:84.640800px;}
._20{width:95.580000px;}
._1f{width:99.648000px;}
._1e{width:108.019200px;}
._1d{width:181.008000px;}
._23{width:220.320000px;}
._24{width:374.328000px;}
._2a{width:448.272000px;}
._27{width:504.936000px;}
._31{width:574.272000px;}
._26{width:610.272000px;}
._22{width:669.600000px;}
._25{width:679.896000px;}
._28{width:697.896000px;}
._30{width:761.724000px;}
._29{width:957.888000px;}
._2e{width:965.880000px;}
._2b{width:1147.824000px;}
._32{width:1177.776000px;}
._2d{width:1217.808000px;}
._2f{width:1267.776000px;}
._2c{width:1276.924800px;}
._12{width:1856.228400px;}
._13{width:1858.454400px;}
._5{width:1886.232000px;}
.fc5{color:rgb(210,32,39);}
.fc3{color:transparent;}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(36,31,29);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(101,98,99);}
.fs0{font-size:60.000000px;}
.fs5{font-size:69.600000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:240.000000px;}
.fs3{font-size:360.000000px;}
.fs1{font-size:540.000000px;}
.fs6{font-size:672.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:110.780700px;}
.y1c1{bottom:152.389650px;}
.y1c5{bottom:156.641550px;}
.y11a{bottom:161.510250px;}
.yb8{bottom:161.602200px;}
.y12c{bottom:161.789700px;}
.y16a{bottom:162.564750px;}
.y174{bottom:162.867300px;}
.y12a{bottom:163.456350px;}
.y118{bottom:163.462200px;}
.y6b{bottom:164.288700px;}
.ya6{bottom:164.288850px;}
.y108{bottom:164.876700px;}
.y6d{bottom:166.127100px;}
.yf0{bottom:168.883500px;}
.y4d{bottom:169.643700px;}
.y1a9{bottom:170.308350px;}
.y1b9{bottom:181.031100px;}
.yad{bottom:182.072100px;}
.y142{bottom:182.761500px;}
.y107{bottom:182.876700px;}
.y195{bottom:183.700650px;}
.y1a5{bottom:183.800700px;}
.y8b{bottom:183.800850px;}
.y1c0{bottom:183.889650px;}
.y6c{bottom:184.127100px;}
.y1c4{bottom:188.141550px;}
.y15b{bottom:188.235750px;}
.y1bb{bottom:189.442200px;}
.ycb{bottom:189.794700px;}
.y1ee{bottom:190.183950px;}
.y169{bottom:194.064750px;}
.y182{bottom:194.560800px;}
.y129{bottom:194.956350px;}
.y117{bottom:194.962200px;}
.y6a{bottom:195.788700px;}
.ya5{bottom:195.788850px;}
.ydd{bottom:195.805500px;}
.y8e{bottom:197.010150px;}
.yac{bottom:200.072100px;}
.yef{bottom:200.383500px;}
.y4c{bottom:201.143700px;}
.yf8{bottom:201.782700px;}
.y1d{bottom:209.093550px;}
.y4{bottom:210.658050px;}
.y1b8{bottom:212.531100px;}
.y1aa{bottom:213.891000px;}
.y141{bottom:214.261500px;}
.y8d{bottom:215.010150px;}
.y194{bottom:215.200650px;}
.y1a4{bottom:215.300700px;}
.y8a{bottom:215.300850px;}
.y1bf{bottom:215.389650px;}
.y1c3{bottom:219.641550px;}
.y15a{bottom:219.735750px;}
.yca{bottom:221.294700px;}
.y1ed{bottom:221.683950px;}
.y168{bottom:225.564750px;}
.y181{bottom:226.060800px;}
.y128{bottom:226.456350px;}
.y116{bottom:226.462200px;}
.y69{bottom:227.288700px;}
.ya4{bottom:227.288850px;}
.y3{bottom:228.658050px;}
.yee{bottom:231.883500px;}
.y4b{bottom:232.643700px;}
.y8c{bottom:233.010150px;}
.yf7{bottom:233.282700px;}
.y1a6{bottom:234.087750px;}
.y1a8{bottom:236.213850px;}
.y1ac{bottom:237.276750px;}
.y1ab{bottom:240.465750px;}
.y1b7{bottom:244.031100px;}
.y140{bottom:245.761500px;}
.y1a3{bottom:246.800700px;}
.y89{bottom:246.800850px;}
.y1be{bottom:246.889650px;}
.y1c2{bottom:251.141550px;}
.yc9{bottom:252.794700px;}
.y167{bottom:257.064750px;}
.y180{bottom:257.560800px;}
.y127{bottom:257.956350px;}
.y115{bottom:257.962200px;}
.y68{bottom:258.788700px;}
.ya3{bottom:258.788850px;}
.yed{bottom:263.383500px;}
.yf6{bottom:264.782700px;}
.y193{bottom:272.206650px;}
.y159{bottom:276.741750px;}
.y13f{bottom:277.261500px;}
.y1a2{bottom:278.300700px;}
.y1ec{bottom:278.689950px;}
.yc8{bottom:284.294700px;}
.y166{bottom:288.564750px;}
.y17f{bottom:289.060800px;}
.y126{bottom:289.456350px;}
.y114{bottom:289.462200px;}
.y67{bottom:290.288700px;}
.ya2{bottom:290.288850px;}
.yec{bottom:294.883500px;}
.y2{bottom:295.600350px;}
.y1b6{bottom:301.037100px;}
.y4e{bottom:303.167700px;}
.y192{bottom:303.706650px;}
.y88{bottom:303.806850px;}
.y5{bottom:304.724400px;}
.y158{bottom:308.241750px;}
.y13e{bottom:308.761500px;}
.y1a1{bottom:309.800700px;}
.y1eb{bottom:310.189950px;}
.yc7{bottom:315.794700px;}
.y17e{bottom:320.560800px;}
.y125{bottom:320.956350px;}
.y66{bottom:321.788700px;}
.ya1{bottom:321.788850px;}
.y1c{bottom:323.123550px;}
.yeb{bottom:326.383500px;}
.y1b5{bottom:332.537100px;}
.y191{bottom:335.206650px;}
.y87{bottom:335.306850px;}
.y157{bottom:339.741750px;}
.y1a0{bottom:341.300700px;}
.y165{bottom:345.570750px;}
.y113{bottom:346.468200px;}
.y106{bottom:347.294700px;}
.y124{bottom:352.456350px;}
.y65{bottom:353.288700px;}
.ya0{bottom:353.288850px;}
.y1b{bottom:354.623550px;}
.yea{bottom:357.883500px;}
.y31{bottom:358.491600px;}
.y1b4{bottom:364.037100px;}
.y13d{bottom:365.767500px;}
.y190{bottom:366.706650px;}
.y86{bottom:366.806850px;}
.y1ea{bottom:367.195950px;}
.y156{bottom:371.241750px;}
.yc6{bottom:372.800700px;}
.y164{bottom:377.070750px;}
.y17d{bottom:377.566800px;}
.y112{bottom:377.968200px;}
.y196{bottom:378.654750px;}
.y105{bottom:378.794700px;}
.y123{bottom:383.956350px;}
.y64{bottom:384.788700px;}
.y9f{bottom:384.788850px;}
.y1a{bottom:386.123550px;}
.y1b3{bottom:395.537100px;}
.y13c{bottom:397.267500px;}
.y18f{bottom:398.206650px;}
.y19f{bottom:398.306700px;}
.y85{bottom:398.306850px;}
.y155{bottom:402.741750px;}
.yc5{bottom:404.300700px;}
.y163{bottom:408.570750px;}
.y17c{bottom:409.066800px;}
.y111{bottom:409.468200px;}
.y104{bottom:410.294700px;}
.ye9{bottom:414.889500px;}
.y122{bottom:415.456350px;}
.y30{bottom:415.497600px;}
.yf5{bottom:416.288700px;}
.y9e{bottom:416.288850px;}
.y19{bottom:417.623550px;}
.y1e9{bottom:424.201950px;}
.y1b2{bottom:427.037100px;}
.y13b{bottom:428.767500px;}
.y18e{bottom:429.706650px;}
.y19e{bottom:429.806700px;}
.y84{bottom:429.806850px;}
.yc4{bottom:435.800700px;}
.y162{bottom:440.070750px;}
.y17b{bottom:440.566800px;}
.y110{bottom:440.968200px;}
.y63{bottom:441.794700px;}
.ye8{bottom:446.389500px;}
.y2f{bottom:446.997600px;}
.yf4{bottom:447.788700px;}
.y1b1{bottom:458.537100px;}
.y154{bottom:459.747750px;}
.y13a{bottom:460.267500px;}
.y19d{bottom:461.306700px;}
.y83{bottom:461.306850px;}
.yc3{bottom:467.300700px;}
.y161{bottom:471.570750px;}
.y17a{bottom:472.066800px;}
.y121{bottom:472.462350px;}
.y10f{bottom:472.468200px;}
.y62{bottom:473.294700px;}
.y9d{bottom:473.294850px;}
.y18{bottom:474.629550px;}
.ye7{bottom:477.889500px;}
.y2e{bottom:478.497600px;}
.y1e8{bottom:481.207950px;}
.y18d{bottom:484.953900px;}
.y18c{bottom:486.795150px;}
.ycf{bottom:486.987600px;}
.y153{bottom:491.247750px;}
.y139{bottom:491.767500px;}
.y19c{bottom:492.806700px;}
.y82{bottom:492.806850px;}
.yc2{bottom:498.800700px;}
.y160{bottom:503.070750px;}
.y179{bottom:503.566800px;}
.y61{bottom:504.794700px;}
.y9c{bottom:504.794850px;}
.yce{bottom:504.987600px;}
.y17{bottom:506.129550px;}
.ye6{bottom:509.389500px;}
.y2d{bottom:509.997600px;}
.y1b0{bottom:515.543100px;}
.y18b{bottom:518.295150px;}
.y152{bottom:522.747750px;}
.ycd{bottom:522.987600px;}
.y138{bottom:523.267500px;}
.y19b{bottom:524.306700px;}
.y81{bottom:524.306850px;}
.y120{bottom:529.468350px;}
.y10e{bottom:529.474200px;}
.yc1{bottom:530.300700px;}
.y178{bottom:535.066800px;}
.y60{bottom:536.294700px;}
.y9b{bottom:536.294850px;}
.y16{bottom:537.629550px;}
.y1e7{bottom:538.213950px;}
.ye5{bottom:540.889500px;}
.ycc{bottom:540.987600px;}
.y1af{bottom:547.043100px;}
.y18a{bottom:549.795150px;}
.y16b{bottom:549.796500px;}
.y19a{bottom:555.806700px;}
.y80{bottom:555.806850px;}
.y11f{bottom:560.968350px;}
.y10d{bottom:560.974200px;}
.yc0{bottom:561.800700px;}
.y177{bottom:566.566800px;}
.y2c{bottom:567.003600px;}
.y5f{bottom:567.794700px;}
.y9a{bottom:567.794850px;}
.y15{bottom:569.129550px;}
.y1e6{bottom:569.713950px;}
.y136{bottom:578.472300px;}
.y1ae{bottom:578.543100px;}
.y151{bottom:579.753750px;}
.y189{bottom:581.295150px;}
.y199{bottom:587.306700px;}
.y7f{bottom:587.306850px;}
.y1db{bottom:589.297350px;}
.y11e{bottom:592.468350px;}
.y10c{bottom:592.474200px;}
.ybf{bottom:593.300700px;}
.ye4{bottom:597.895500px;}
.y176{bottom:598.066800px;}
.y2b{bottom:598.503600px;}
.y5e{bottom:599.294700px;}
.y14{bottom:600.629550px;}
.yab{bottom:607.740000px;}
.y1cd{bottom:609.502050px;}
.y135{bottom:609.972300px;}
.y150{bottom:611.253750px;}
.y188{bottom:612.795150px;}
.y198{bottom:618.806700px;}
.y7e{bottom:618.806850px;}
.y137{bottom:622.836300px;}
.y1da{bottom:623.317350px;}
.y11d{bottom:623.968350px;}
.y99{bottom:624.800850px;}
.y1e5{bottom:626.719950px;}
.ye3{bottom:629.395500px;}
.y175{bottom:629.566800px;}
.y2a{bottom:630.003600px;}
.y13{bottom:632.129550px;}
.yaa{bottom:639.240000px;}
.y134{bottom:641.472300px;}
.y14f{bottom:642.753750px;}
.y187{bottom:644.295150px;}
.y10b{bottom:649.480200px;}
.y173{bottom:650.289150px;}
.ybe{bottom:650.306700px;}
.y7d{bottom:650.306850px;}
.y11c{bottom:655.468350px;}
.y5d{bottom:656.300700px;}
.y98{bottom:656.300850px;}
.y1d9{bottom:657.337350px;}
.ye2{bottom:660.895500px;}
.y29{bottom:661.503600px;}
.y1cc{bottom:666.904050px;}
.ya9{bottom:670.740000px;}
.y133{bottom:672.972300px;}
.y14e{bottom:674.253750px;}
.y1ad{bottom:675.029400px;}
.y1ba{bottom:675.229500px;}
.y186{bottom:675.795150px;}
.y1a7{bottom:675.812700px;}
.y3f{bottom:676.623900px;}
.y38{bottom:678.711900px;}
.y10a{bottom:680.980200px;}
.y1bd{bottom:681.377700px;}
.y172{bottom:681.789150px;}
.ybd{bottom:681.806700px;}
.y1e4{bottom:683.725950px;}
.y11b{bottom:686.968350px;}
.y5c{bottom:687.800700px;}
.y97{bottom:687.800850px;}
.y12{bottom:689.135550px;}
.y1d8{bottom:691.357350px;}
.y28{bottom:693.003600px;}
.y183{bottom:697.552350px;}
.y90{bottom:698.670150px;}
.ya8{bottom:702.240000px;}
.y132{bottom:704.472300px;}
.y14d{bottom:705.753750px;}
.y185{bottom:707.295150px;}
.y197{bottom:707.312700px;}
.y7c{bottom:707.312850px;}
.y109{bottom:712.480200px;}
.y171{bottom:713.289150px;}
.ybc{bottom:713.306700px;}
.y1e3{bottom:715.225950px;}
.y8f{bottom:716.670150px;}
.ye1{bottom:717.901500px;}
.y5b{bottom:719.300700px;}
.y11{bottom:720.635550px;}
.y1cb{bottom:724.306050px;}
.y1d7{bottom:725.377350px;}
.y1f6{bottom:731.288700px;}
.y3e{bottom:733.629900px;}
.ya7{bottom:733.740000px;}
.y37{bottom:735.717900px;}
.y131{bottom:735.972300px;}
.y12b{bottom:737.112000px;}
.y14c{bottom:737.253750px;}
.y184{bottom:738.795150px;}
.y103{bottom:738.812700px;}
.y7b{bottom:738.812850px;}
.y170{bottom:744.789150px;}
.ybb{bottom:744.806700px;}
.y96{bottom:744.806850px;}
.y4a{bottom:745.751700px;}
.ye0{bottom:749.401500px;}
.y27{bottom:750.009600px;}
.y5a{bottom:750.800700px;}
.y10{bottom:752.135550px;}
.y1d6{bottom:759.397350px;}
.y1f5{bottom:762.788700px;}
.y130{bottom:767.472300px;}
.y14b{bottom:768.753750px;}
.ydc{bottom:770.295150px;}
.y102{bottom:770.312700px;}
.y7a{bottom:770.312850px;}
.y1e2{bottom:772.231950px;}
.y16f{bottom:776.289150px;}
.yba{bottom:776.306700px;}
.y95{bottom:776.306850px;}
.y49{bottom:777.251700px;}
.ydf{bottom:780.901500px;}
.y26{bottom:781.509600px;}
.y1ca{bottom:781.708050px;}
.yf{bottom:783.635550px;}
.y119{bottom:786.829050px;}
.y3d{bottom:790.635900px;}
.y36{bottom:792.723900px;}
.y1d5{bottom:793.417350px;}
.y12f{bottom:798.972300px;}
.ydb{bottom:801.795150px;}
.y101{bottom:801.812700px;}
.y79{bottom:801.812850px;}
.y1e1{bottom:803.731950px;}
.yae{bottom:804.914550px;}
.y16e{bottom:807.789150px;}
.y59{bottom:807.806700px;}
.y94{bottom:807.806850px;}
.y48{bottom:808.751700px;}
.yde{bottom:812.401500px;}
.y25{bottom:813.009600px;}
.y1f4{bottom:819.794700px;}
.y14a{bottom:825.759750px;}
.y1d4{bottom:827.437350px;}
.y12e{bottom:830.472300px;}
.yda{bottom:833.295150px;}
.y100{bottom:833.312700px;}
.y78{bottom:833.312850px;}
.y1e0{bottom:835.231950px;}
.y1c9{bottom:839.110050px;}
.y58{bottom:839.306700px;}
.y93{bottom:839.306850px;}
.y47{bottom:840.251700px;}
.ye{bottom:840.641550px;}
.y3c{bottom:847.641900px;}
.y35{bottom:849.729900px;}
.y1bc{bottom:850.889700px;}
.y1f3{bottom:851.294700px;}
.y149{bottom:857.259750px;}
.y1d3{bottom:861.457350px;}
.yd9{bottom:864.795150px;}
.yff{bottom:864.812700px;}
.y77{bottom:864.812850px;}
.y24{bottom:870.015600px;}
.y57{bottom:870.806700px;}
.y46{bottom:871.751700px;}
.yd{bottom:872.141550px;}
.y12d{bottom:878.246400px;}
.y148{bottom:888.759750px;}
.y1df{bottom:892.237950px;}
.y1d2{bottom:895.477350px;}
.yd8{bottom:896.295150px;}
.yfe{bottom:896.312700px;}
.y76{bottom:896.312850px;}
.y1c8{bottom:896.512050px;}
.yf1{bottom:899.520900px;}
.y23{bottom:901.515600px;}
.y56{bottom:902.306700px;}
.y45{bottom:903.251700px;}
.yc{bottom:903.641550px;}
.y3b{bottom:904.647900px;}
.y34{bottom:906.735900px;}
.y1f2{bottom:908.300700px;}
.y147{bottom:920.259750px;}
.y1de{bottom:923.737950px;}
.y16d{bottom:927.795150px;}
.yb9{bottom:927.812700px;}
.y75{bottom:927.812850px;}
.yb7{bottom:928.202700px;}
.y1d1{bottom:929.497350px;}
.y22{bottom:933.015600px;}
.y44{bottom:934.751700px;}
.yb{bottom:935.141550px;}
.y1f1{bottom:939.800700px;}
.y146{bottom:951.759750px;}
.yd7{bottom:953.301150px;}
.yfd{bottom:953.318700px;}
.y1c7{bottom:953.914050px;}
.y15f{bottom:957.057000px;}
.y16c{bottom:959.295150px;}
.y55{bottom:959.312700px;}
.y74{bottom:959.312850px;}
.yb6{bottom:959.702700px;}
.y3a{bottom:961.653900px;}
.y1d0{bottom:963.517350px;}
.y33{bottom:963.741900px;}
.y21{bottom:964.515600px;}
.y43{bottom:966.251700px;}
.ya{bottom:966.641550px;}
.y1dd{bottom:980.743950px;}
.y145{bottom:983.259750px;}
.yd6{bottom:984.801150px;}
.yfc{bottom:984.818700px;}
.y15e{bottom:988.557000px;}
.y54{bottom:990.812700px;}
.y73{bottom:990.812850px;}
.yb5{bottom:991.202700px;}
.y1c6{bottom:994.864050px;}
.y20{bottom:996.015600px;}
.y1f0{bottom:996.806700px;}
.y1cf{bottom:997.537350px;}
.y42{bottom:997.751700px;}
.y9{bottom:998.141550px;}
.y1dc{bottom:1012.243950px;}
.y144{bottom:1014.759750px;}
.yd5{bottom:1016.301150px;}
.yfb{bottom:1016.318700px;}
.y39{bottom:1018.659900px;}
.y15d{bottom:1020.057000px;}
.y32{bottom:1020.747900px;}
.y53{bottom:1022.312700px;}
.y72{bottom:1022.312850px;}
.yb4{bottom:1022.702700px;}
.y1f{bottom:1027.515600px;}
.y1ef{bottom:1028.306700px;}
.y41{bottom:1029.251700px;}
.y8{bottom:1029.641550px;}
.y143{bottom:1046.259750px;}
.yd4{bottom:1047.801150px;}
.yfa{bottom:1047.818700px;}
.y15c{bottom:1051.557000px;}
.y52{bottom:1053.812700px;}
.y71{bottom:1053.812850px;}
.yb3{bottom:1054.202700px;}
.y1e{bottom:1059.015600px;}
.y7{bottom:1061.141550px;}
.yd3{bottom:1079.301150px;}
.yf9{bottom:1079.318700px;}
.yf3{bottom:1085.312700px;}
.y92{bottom:1085.312850px;}
.yb2{bottom:1085.702700px;}
.yd2{bottom:1110.801150px;}
.y51{bottom:1110.818700px;}
.y70{bottom:1110.818850px;}
.yf2{bottom:1116.812700px;}
.y91{bottom:1116.812850px;}
.yb1{bottom:1117.202700px;}
.y40{bottom:1117.736250px;}
.y6{bottom:1118.799150px;}
.y1ce{bottom:1118.799300px;}
.yd1{bottom:1142.301150px;}
.y50{bottom:1142.318700px;}
.y6f{bottom:1142.318850px;}
.yd0{bottom:1173.801150px;}
.y4f{bottom:1173.818700px;}
.y6e{bottom:1173.818850px;}
.yb0{bottom:1174.208700px;}
.yaf{bottom:1205.708700px;}
.h9{height:41.660156px;}
.h7{height:49.992188px;}
.h2{height:52.646484px;}
.ha{height:52.792969px;}
.hb{height:61.239844px;}
.h6{height:63.175781px;}
.h8{height:63.351562px;}
.h4{height:216.586667px;}
.h5{height:324.880000px;}
.h3{height:487.320000px;}
.hc{height:606.442667px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:51.732300px;}
.x1{left:73.346400px;}
.x6{left:76.535400px;}
.x1d{left:80.787450px;}
.x20{left:83.283300px;}
.x1c{left:98.150850px;}
.x7{left:102.047250px;}
.x19{left:106.299150px;}
.x22{left:110.555400px;}
.x18{left:116.929050px;}
.x17{left:136.063050px;}
.x10{left:146.692950px;}
.x1a{left:176.456700px;}
.x1b{left:183.494850px;}
.x8{left:184.960650px;}
.x3{left:297.127200px;}
.xc{left:340.535400px;}
.x4{left:345.277200px;}
.x1f{left:363.165300px;}
.xd{left:366.041400px;}
.xa{left:370.565400px;}
.x5{left:381.614250px;}
.xf{left:382.683000px;}
.xe{left:408.189000px;}
.x1e{left:431.571450px;}
.x16{left:450.714450px;}
.x15{left:476.220450px;}
.x12{left:484.730250px;}
.x11{left:510.236250px;}
.xb{left:527.244000px;}
.x9{left:578.260650px;}
.x14{left:597.407400px;}
.x13{left:622.913400px;}
.x21{left:751.679400px;}
@media print{
.v1{vertical-align:-174.017067pt;}
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-2.368000pt;}
.ls1{letter-spacing:-1.973333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:6.220800pt;}
.ls8{letter-spacing:7.936000pt;}
.ls5{letter-spacing:398.464000pt;}
.ls4{letter-spacing:430.464000pt;}
.ls6{letter-spacing:478.464000pt;}
.ls3{letter-spacing:510.464000pt;}
.ws0{word-spacing:-94.560000pt;}
.ws2{word-spacing:-63.040000pt;}
.ws6{word-spacing:-16.000000pt;}
.wsf{word-spacing:-13.632000pt;}
.ws7{word-spacing:-13.333333pt;}
.wsb{word-spacing:-1.536000pt;}
.ws3{word-spacing:-1.152000pt;}
.ws4{word-spacing:-0.960000pt;}
.ws10{word-spacing:-0.832000pt;}
.ws1{word-spacing:0.000000pt;}
.wsd{word-spacing:0.064000pt;}
.wsc{word-spacing:0.640000pt;}
.wsa{word-spacing:1.152000pt;}
.wse{word-spacing:1.600000pt;}
.ws5{word-spacing:1.856000pt;}
.ws9{word-spacing:1.973333pt;}
.ws8{word-spacing:7.296000pt;}
.ws11{word-spacing:66.035200pt;}
.ws12{word-spacing:76.096000pt;}
.ws13{word-spacing:526.464000pt;}
.ws14{word-spacing:988.352000pt;}
._6{margin-left:-66.743467pt;}
._34{margin-left:-16.620800pt;}
._3{margin-left:-14.858667pt;}
._33{margin-left:-7.653333pt;}
._e{margin-left:-6.277333pt;}
._16{margin-left:-5.379200pt;}
._d{margin-left:-4.484267pt;}
._0{margin-left:-3.488000pt;}
._2{margin-left:-1.882667pt;}
._1{margin-left:-0.960000pt;}
._4{width:1.498667pt;}
._8{width:2.483200pt;}
._9{width:3.814400pt;}
._b{width:5.228800pt;}
._7{width:6.124800pt;}
._a{width:7.372800pt;}
._c{width:8.595200pt;}
._f{width:9.516800pt;}
._14{width:10.451200pt;}
._15{width:11.564800pt;}
._10{width:13.689600pt;}
._11{width:14.579200pt;}
._17{width:17.804800pt;}
._1c{width:18.976000pt;}
._18{width:23.584000pt;}
._19{width:26.662400pt;}
._1b{width:33.798400pt;}
._1a{width:36.166400pt;}
._21{width:75.236267pt;}
._20{width:84.960000pt;}
._1f{width:88.576000pt;}
._1e{width:96.017067pt;}
._1d{width:160.896000pt;}
._23{width:195.840000pt;}
._24{width:332.736000pt;}
._2a{width:398.464000pt;}
._27{width:448.832000pt;}
._31{width:510.464000pt;}
._26{width:542.464000pt;}
._22{width:595.200000pt;}
._25{width:604.352000pt;}
._28{width:620.352000pt;}
._30{width:677.088000pt;}
._29{width:851.456000pt;}
._2e{width:858.560000pt;}
._2b{width:1020.288000pt;}
._32{width:1046.912000pt;}
._2d{width:1082.496000pt;}
._2f{width:1126.912000pt;}
._2c{width:1135.044267pt;}
._12{width:1649.980800pt;}
._13{width:1651.959467pt;}
._5{width:1676.650667pt;}
.fs0{font-size:53.333333pt;}
.fs5{font-size:61.866667pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:213.333333pt;}
.fs3{font-size:320.000000pt;}
.fs1{font-size:480.000000pt;}
.fs6{font-size:597.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:98.471733pt;}
.y1c1{bottom:135.457467pt;}
.y1c5{bottom:139.236933pt;}
.y11a{bottom:143.564667pt;}
.yb8{bottom:143.646400pt;}
.y12c{bottom:143.813067pt;}
.y16a{bottom:144.502000pt;}
.y174{bottom:144.770933pt;}
.y12a{bottom:145.294533pt;}
.y118{bottom:145.299733pt;}
.y6b{bottom:146.034400pt;}
.ya6{bottom:146.034533pt;}
.y108{bottom:146.557067pt;}
.y6d{bottom:147.668533pt;}
.yf0{bottom:150.118667pt;}
.y4d{bottom:150.794400pt;}
.y1a9{bottom:151.385200pt;}
.y1b9{bottom:160.916533pt;}
.yad{bottom:161.841867pt;}
.y142{bottom:162.454667pt;}
.y107{bottom:162.557067pt;}
.y195{bottom:163.289467pt;}
.y1a5{bottom:163.378400pt;}
.y8b{bottom:163.378533pt;}
.y1c0{bottom:163.457467pt;}
.y6c{bottom:163.668533pt;}
.y1c4{bottom:167.236933pt;}
.y15b{bottom:167.320667pt;}
.y1bb{bottom:168.393067pt;}
.ycb{bottom:168.706400pt;}
.y1ee{bottom:169.052400pt;}
.y169{bottom:172.502000pt;}
.y182{bottom:172.942933pt;}
.y129{bottom:173.294533pt;}
.y117{bottom:173.299733pt;}
.y6a{bottom:174.034400pt;}
.ya5{bottom:174.034533pt;}
.ydd{bottom:174.049333pt;}
.y8e{bottom:175.120133pt;}
.yac{bottom:177.841867pt;}
.yef{bottom:178.118667pt;}
.y4c{bottom:178.794400pt;}
.yf8{bottom:179.362400pt;}
.y1d{bottom:185.860933pt;}
.y4{bottom:187.251600pt;}
.y1b8{bottom:188.916533pt;}
.y1aa{bottom:190.125333pt;}
.y141{bottom:190.454667pt;}
.y8d{bottom:191.120133pt;}
.y194{bottom:191.289467pt;}
.y1a4{bottom:191.378400pt;}
.y8a{bottom:191.378533pt;}
.y1bf{bottom:191.457467pt;}
.y1c3{bottom:195.236933pt;}
.y15a{bottom:195.320667pt;}
.yca{bottom:196.706400pt;}
.y1ed{bottom:197.052400pt;}
.y168{bottom:200.502000pt;}
.y181{bottom:200.942933pt;}
.y128{bottom:201.294533pt;}
.y116{bottom:201.299733pt;}
.y69{bottom:202.034400pt;}
.ya4{bottom:202.034533pt;}
.y3{bottom:203.251600pt;}
.yee{bottom:206.118667pt;}
.y4b{bottom:206.794400pt;}
.y8c{bottom:207.120133pt;}
.yf7{bottom:207.362400pt;}
.y1a6{bottom:208.078000pt;}
.y1a8{bottom:209.967867pt;}
.y1ac{bottom:210.912667pt;}
.y1ab{bottom:213.747333pt;}
.y1b7{bottom:216.916533pt;}
.y140{bottom:218.454667pt;}
.y1a3{bottom:219.378400pt;}
.y89{bottom:219.378533pt;}
.y1be{bottom:219.457467pt;}
.y1c2{bottom:223.236933pt;}
.yc9{bottom:224.706400pt;}
.y167{bottom:228.502000pt;}
.y180{bottom:228.942933pt;}
.y127{bottom:229.294533pt;}
.y115{bottom:229.299733pt;}
.y68{bottom:230.034400pt;}
.ya3{bottom:230.034533pt;}
.yed{bottom:234.118667pt;}
.yf6{bottom:235.362400pt;}
.y193{bottom:241.961467pt;}
.y159{bottom:245.992667pt;}
.y13f{bottom:246.454667pt;}
.y1a2{bottom:247.378400pt;}
.y1ec{bottom:247.724400pt;}
.yc8{bottom:252.706400pt;}
.y166{bottom:256.502000pt;}
.y17f{bottom:256.942933pt;}
.y126{bottom:257.294533pt;}
.y114{bottom:257.299733pt;}
.y67{bottom:258.034400pt;}
.ya2{bottom:258.034533pt;}
.yec{bottom:262.118667pt;}
.y2{bottom:262.755867pt;}
.y1b6{bottom:267.588533pt;}
.y4e{bottom:269.482400pt;}
.y192{bottom:269.961467pt;}
.y88{bottom:270.050533pt;}
.y5{bottom:270.866133pt;}
.y158{bottom:273.992667pt;}
.y13e{bottom:274.454667pt;}
.y1a1{bottom:275.378400pt;}
.y1eb{bottom:275.724400pt;}
.yc7{bottom:280.706400pt;}
.y17e{bottom:284.942933pt;}
.y125{bottom:285.294533pt;}
.y66{bottom:286.034400pt;}
.ya1{bottom:286.034533pt;}
.y1c{bottom:287.220933pt;}
.yeb{bottom:290.118667pt;}
.y1b5{bottom:295.588533pt;}
.y191{bottom:297.961467pt;}
.y87{bottom:298.050533pt;}
.y157{bottom:301.992667pt;}
.y1a0{bottom:303.378400pt;}
.y165{bottom:307.174000pt;}
.y113{bottom:307.971733pt;}
.y106{bottom:308.706400pt;}
.y124{bottom:313.294533pt;}
.y65{bottom:314.034400pt;}
.ya0{bottom:314.034533pt;}
.y1b{bottom:315.220933pt;}
.yea{bottom:318.118667pt;}
.y31{bottom:318.659200pt;}
.y1b4{bottom:323.588533pt;}
.y13d{bottom:325.126667pt;}
.y190{bottom:325.961467pt;}
.y86{bottom:326.050533pt;}
.y1ea{bottom:326.396400pt;}
.y156{bottom:329.992667pt;}
.yc6{bottom:331.378400pt;}
.y164{bottom:335.174000pt;}
.y17d{bottom:335.614933pt;}
.y112{bottom:335.971733pt;}
.y196{bottom:336.582000pt;}
.y105{bottom:336.706400pt;}
.y123{bottom:341.294533pt;}
.y64{bottom:342.034400pt;}
.y9f{bottom:342.034533pt;}
.y1a{bottom:343.220933pt;}
.y1b3{bottom:351.588533pt;}
.y13c{bottom:353.126667pt;}
.y18f{bottom:353.961467pt;}
.y19f{bottom:354.050400pt;}
.y85{bottom:354.050533pt;}
.y155{bottom:357.992667pt;}
.yc5{bottom:359.378400pt;}
.y163{bottom:363.174000pt;}
.y17c{bottom:363.614933pt;}
.y111{bottom:363.971733pt;}
.y104{bottom:364.706400pt;}
.ye9{bottom:368.790667pt;}
.y122{bottom:369.294533pt;}
.y30{bottom:369.331200pt;}
.yf5{bottom:370.034400pt;}
.y9e{bottom:370.034533pt;}
.y19{bottom:371.220933pt;}
.y1e9{bottom:377.068400pt;}
.y1b2{bottom:379.588533pt;}
.y13b{bottom:381.126667pt;}
.y18e{bottom:381.961467pt;}
.y19e{bottom:382.050400pt;}
.y84{bottom:382.050533pt;}
.yc4{bottom:387.378400pt;}
.y162{bottom:391.174000pt;}
.y17b{bottom:391.614933pt;}
.y110{bottom:391.971733pt;}
.y63{bottom:392.706400pt;}
.ye8{bottom:396.790667pt;}
.y2f{bottom:397.331200pt;}
.yf4{bottom:398.034400pt;}
.y1b1{bottom:407.588533pt;}
.y154{bottom:408.664667pt;}
.y13a{bottom:409.126667pt;}
.y19d{bottom:410.050400pt;}
.y83{bottom:410.050533pt;}
.yc3{bottom:415.378400pt;}
.y161{bottom:419.174000pt;}
.y17a{bottom:419.614933pt;}
.y121{bottom:419.966533pt;}
.y10f{bottom:419.971733pt;}
.y62{bottom:420.706400pt;}
.y9d{bottom:420.706533pt;}
.y18{bottom:421.892933pt;}
.ye7{bottom:424.790667pt;}
.y2e{bottom:425.331200pt;}
.y1e8{bottom:427.740400pt;}
.y18d{bottom:431.070133pt;}
.y18c{bottom:432.706800pt;}
.ycf{bottom:432.877867pt;}
.y153{bottom:436.664667pt;}
.y139{bottom:437.126667pt;}
.y19c{bottom:438.050400pt;}
.y82{bottom:438.050533pt;}
.yc2{bottom:443.378400pt;}
.y160{bottom:447.174000pt;}
.y179{bottom:447.614933pt;}
.y61{bottom:448.706400pt;}
.y9c{bottom:448.706533pt;}
.yce{bottom:448.877867pt;}
.y17{bottom:449.892933pt;}
.ye6{bottom:452.790667pt;}
.y2d{bottom:453.331200pt;}
.y1b0{bottom:458.260533pt;}
.y18b{bottom:460.706800pt;}
.y152{bottom:464.664667pt;}
.ycd{bottom:464.877867pt;}
.y138{bottom:465.126667pt;}
.y19b{bottom:466.050400pt;}
.y81{bottom:466.050533pt;}
.y120{bottom:470.638533pt;}
.y10e{bottom:470.643733pt;}
.yc1{bottom:471.378400pt;}
.y178{bottom:475.614933pt;}
.y60{bottom:476.706400pt;}
.y9b{bottom:476.706533pt;}
.y16{bottom:477.892933pt;}
.y1e7{bottom:478.412400pt;}
.ye5{bottom:480.790667pt;}
.ycc{bottom:480.877867pt;}
.y1af{bottom:486.260533pt;}
.y18a{bottom:488.706800pt;}
.y16b{bottom:488.708000pt;}
.y19a{bottom:494.050400pt;}
.y80{bottom:494.050533pt;}
.y11f{bottom:498.638533pt;}
.y10d{bottom:498.643733pt;}
.yc0{bottom:499.378400pt;}
.y177{bottom:503.614933pt;}
.y2c{bottom:504.003200pt;}
.y5f{bottom:504.706400pt;}
.y9a{bottom:504.706533pt;}
.y15{bottom:505.892933pt;}
.y1e6{bottom:506.412400pt;}
.y136{bottom:514.197600pt;}
.y1ae{bottom:514.260533pt;}
.y151{bottom:515.336667pt;}
.y189{bottom:516.706800pt;}
.y199{bottom:522.050400pt;}
.y7f{bottom:522.050533pt;}
.y1db{bottom:523.819867pt;}
.y11e{bottom:526.638533pt;}
.y10c{bottom:526.643733pt;}
.ybf{bottom:527.378400pt;}
.ye4{bottom:531.462667pt;}
.y176{bottom:531.614933pt;}
.y2b{bottom:532.003200pt;}
.y5e{bottom:532.706400pt;}
.y14{bottom:533.892933pt;}
.yab{bottom:540.213333pt;}
.y1cd{bottom:541.779600pt;}
.y135{bottom:542.197600pt;}
.y150{bottom:543.336667pt;}
.y188{bottom:544.706800pt;}
.y198{bottom:550.050400pt;}
.y7e{bottom:550.050533pt;}
.y137{bottom:553.632267pt;}
.y1da{bottom:554.059867pt;}
.y11d{bottom:554.638533pt;}
.y99{bottom:555.378533pt;}
.y1e5{bottom:557.084400pt;}
.ye3{bottom:559.462667pt;}
.y175{bottom:559.614933pt;}
.y2a{bottom:560.003200pt;}
.y13{bottom:561.892933pt;}
.yaa{bottom:568.213333pt;}
.y134{bottom:570.197600pt;}
.y14f{bottom:571.336667pt;}
.y187{bottom:572.706800pt;}
.y10b{bottom:577.315733pt;}
.y173{bottom:578.034800pt;}
.ybe{bottom:578.050400pt;}
.y7d{bottom:578.050533pt;}
.y11c{bottom:582.638533pt;}
.y5d{bottom:583.378400pt;}
.y98{bottom:583.378533pt;}
.y1d9{bottom:584.299867pt;}
.ye2{bottom:587.462667pt;}
.y29{bottom:588.003200pt;}
.y1cc{bottom:592.803600pt;}
.ya9{bottom:596.213333pt;}
.y133{bottom:598.197600pt;}
.y14e{bottom:599.336667pt;}
.y1ad{bottom:600.026133pt;}
.y1ba{bottom:600.204000pt;}
.y186{bottom:600.706800pt;}
.y1a7{bottom:600.722400pt;}
.y3f{bottom:601.443467pt;}
.y38{bottom:603.299467pt;}
.y10a{bottom:605.315733pt;}
.y1bd{bottom:605.669067pt;}
.y172{bottom:606.034800pt;}
.ybd{bottom:606.050400pt;}
.y1e4{bottom:607.756400pt;}
.y11b{bottom:610.638533pt;}
.y5c{bottom:611.378400pt;}
.y97{bottom:611.378533pt;}
.y12{bottom:612.564933pt;}
.y1d8{bottom:614.539867pt;}
.y28{bottom:616.003200pt;}
.y183{bottom:620.046533pt;}
.y90{bottom:621.040133pt;}
.ya8{bottom:624.213333pt;}
.y132{bottom:626.197600pt;}
.y14d{bottom:627.336667pt;}
.y185{bottom:628.706800pt;}
.y197{bottom:628.722400pt;}
.y7c{bottom:628.722533pt;}
.y109{bottom:633.315733pt;}
.y171{bottom:634.034800pt;}
.ybc{bottom:634.050400pt;}
.y1e3{bottom:635.756400pt;}
.y8f{bottom:637.040133pt;}
.ye1{bottom:638.134667pt;}
.y5b{bottom:639.378400pt;}
.y11{bottom:640.564933pt;}
.y1cb{bottom:643.827600pt;}
.y1d7{bottom:644.779867pt;}
.y1f6{bottom:650.034400pt;}
.y3e{bottom:652.115467pt;}
.ya7{bottom:652.213333pt;}
.y37{bottom:653.971467pt;}
.y131{bottom:654.197600pt;}
.y12b{bottom:655.210667pt;}
.y14c{bottom:655.336667pt;}
.y184{bottom:656.706800pt;}
.y103{bottom:656.722400pt;}
.y7b{bottom:656.722533pt;}
.y170{bottom:662.034800pt;}
.ybb{bottom:662.050400pt;}
.y96{bottom:662.050533pt;}
.y4a{bottom:662.890400pt;}
.ye0{bottom:666.134667pt;}
.y27{bottom:666.675200pt;}
.y5a{bottom:667.378400pt;}
.y10{bottom:668.564933pt;}
.y1d6{bottom:675.019867pt;}
.y1f5{bottom:678.034400pt;}
.y130{bottom:682.197600pt;}
.y14b{bottom:683.336667pt;}
.ydc{bottom:684.706800pt;}
.y102{bottom:684.722400pt;}
.y7a{bottom:684.722533pt;}
.y1e2{bottom:686.428400pt;}
.y16f{bottom:690.034800pt;}
.yba{bottom:690.050400pt;}
.y95{bottom:690.050533pt;}
.y49{bottom:690.890400pt;}
.ydf{bottom:694.134667pt;}
.y26{bottom:694.675200pt;}
.y1ca{bottom:694.851600pt;}
.yf{bottom:696.564933pt;}
.y119{bottom:699.403600pt;}
.y3d{bottom:702.787467pt;}
.y36{bottom:704.643467pt;}
.y1d5{bottom:705.259867pt;}
.y12f{bottom:710.197600pt;}
.ydb{bottom:712.706800pt;}
.y101{bottom:712.722400pt;}
.y79{bottom:712.722533pt;}
.y1e1{bottom:714.428400pt;}
.yae{bottom:715.479600pt;}
.y16e{bottom:718.034800pt;}
.y59{bottom:718.050400pt;}
.y94{bottom:718.050533pt;}
.y48{bottom:718.890400pt;}
.yde{bottom:722.134667pt;}
.y25{bottom:722.675200pt;}
.y1f4{bottom:728.706400pt;}
.y14a{bottom:734.008667pt;}
.y1d4{bottom:735.499867pt;}
.y12e{bottom:738.197600pt;}
.yda{bottom:740.706800pt;}
.y100{bottom:740.722400pt;}
.y78{bottom:740.722533pt;}
.y1e0{bottom:742.428400pt;}
.y1c9{bottom:745.875600pt;}
.y58{bottom:746.050400pt;}
.y93{bottom:746.050533pt;}
.y47{bottom:746.890400pt;}
.ye{bottom:747.236933pt;}
.y3c{bottom:753.459467pt;}
.y35{bottom:755.315467pt;}
.y1bc{bottom:756.346400pt;}
.y1f3{bottom:756.706400pt;}
.y149{bottom:762.008667pt;}
.y1d3{bottom:765.739867pt;}
.yd9{bottom:768.706800pt;}
.yff{bottom:768.722400pt;}
.y77{bottom:768.722533pt;}
.y24{bottom:773.347200pt;}
.y57{bottom:774.050400pt;}
.y46{bottom:774.890400pt;}
.yd{bottom:775.236933pt;}
.y12d{bottom:780.663467pt;}
.y148{bottom:790.008667pt;}
.y1df{bottom:793.100400pt;}
.y1d2{bottom:795.979867pt;}
.yd8{bottom:796.706800pt;}
.yfe{bottom:796.722400pt;}
.y76{bottom:796.722533pt;}
.y1c8{bottom:796.899600pt;}
.yf1{bottom:799.574133pt;}
.y23{bottom:801.347200pt;}
.y56{bottom:802.050400pt;}
.y45{bottom:802.890400pt;}
.yc{bottom:803.236933pt;}
.y3b{bottom:804.131467pt;}
.y34{bottom:805.987467pt;}
.y1f2{bottom:807.378400pt;}
.y147{bottom:818.008667pt;}
.y1de{bottom:821.100400pt;}
.y16d{bottom:824.706800pt;}
.yb9{bottom:824.722400pt;}
.y75{bottom:824.722533pt;}
.yb7{bottom:825.069067pt;}
.y1d1{bottom:826.219867pt;}
.y22{bottom:829.347200pt;}
.y44{bottom:830.890400pt;}
.yb{bottom:831.236933pt;}
.y1f1{bottom:835.378400pt;}
.y146{bottom:846.008667pt;}
.yd7{bottom:847.378800pt;}
.yfd{bottom:847.394400pt;}
.y1c7{bottom:847.923600pt;}
.y15f{bottom:850.717333pt;}
.y16c{bottom:852.706800pt;}
.y55{bottom:852.722400pt;}
.y74{bottom:852.722533pt;}
.yb6{bottom:853.069067pt;}
.y3a{bottom:854.803467pt;}
.y1d0{bottom:856.459867pt;}
.y33{bottom:856.659467pt;}
.y21{bottom:857.347200pt;}
.y43{bottom:858.890400pt;}
.ya{bottom:859.236933pt;}
.y1dd{bottom:871.772400pt;}
.y145{bottom:874.008667pt;}
.yd6{bottom:875.378800pt;}
.yfc{bottom:875.394400pt;}
.y15e{bottom:878.717333pt;}
.y54{bottom:880.722400pt;}
.y73{bottom:880.722533pt;}
.yb5{bottom:881.069067pt;}
.y1c6{bottom:884.323600pt;}
.y20{bottom:885.347200pt;}
.y1f0{bottom:886.050400pt;}
.y1cf{bottom:886.699867pt;}
.y42{bottom:886.890400pt;}
.y9{bottom:887.236933pt;}
.y1dc{bottom:899.772400pt;}
.y144{bottom:902.008667pt;}
.yd5{bottom:903.378800pt;}
.yfb{bottom:903.394400pt;}
.y39{bottom:905.475467pt;}
.y15d{bottom:906.717333pt;}
.y32{bottom:907.331467pt;}
.y53{bottom:908.722400pt;}
.y72{bottom:908.722533pt;}
.yb4{bottom:909.069067pt;}
.y1f{bottom:913.347200pt;}
.y1ef{bottom:914.050400pt;}
.y41{bottom:914.890400pt;}
.y8{bottom:915.236933pt;}
.y143{bottom:930.008667pt;}
.yd4{bottom:931.378800pt;}
.yfa{bottom:931.394400pt;}
.y15c{bottom:934.717333pt;}
.y52{bottom:936.722400pt;}
.y71{bottom:936.722533pt;}
.yb3{bottom:937.069067pt;}
.y1e{bottom:941.347200pt;}
.y7{bottom:943.236933pt;}
.yd3{bottom:959.378800pt;}
.yf9{bottom:959.394400pt;}
.yf3{bottom:964.722400pt;}
.y92{bottom:964.722533pt;}
.yb2{bottom:965.069067pt;}
.yd2{bottom:987.378800pt;}
.y51{bottom:987.394400pt;}
.y70{bottom:987.394533pt;}
.yf2{bottom:992.722400pt;}
.y91{bottom:992.722533pt;}
.yb1{bottom:993.069067pt;}
.y40{bottom:993.543333pt;}
.y6{bottom:994.488133pt;}
.y1ce{bottom:994.488267pt;}
.yd1{bottom:1015.378800pt;}
.y50{bottom:1015.394400pt;}
.y6f{bottom:1015.394533pt;}
.yd0{bottom:1043.378800pt;}
.y4f{bottom:1043.394400pt;}
.y6e{bottom:1043.394533pt;}
.yb0{bottom:1043.741067pt;}
.yaf{bottom:1071.741067pt;}
.h9{height:37.031250pt;}
.h7{height:44.437500pt;}
.h2{height:46.796875pt;}
.ha{height:46.927083pt;}
.hb{height:54.435417pt;}
.h6{height:56.156250pt;}
.h8{height:56.312500pt;}
.h4{height:192.521481pt;}
.h5{height:288.782222pt;}
.h3{height:433.173333pt;}
.hc{height:539.060148pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:45.984267pt;}
.x1{left:65.196800pt;}
.x6{left:68.031467pt;}
.x1d{left:71.811067pt;}
.x20{left:74.029600pt;}
.x1c{left:87.245200pt;}
.x7{left:90.708667pt;}
.x19{left:94.488133pt;}
.x22{left:98.271467pt;}
.x18{left:103.936933pt;}
.x17{left:120.944933pt;}
.x10{left:130.393733pt;}
.x1a{left:156.850400pt;}
.x1b{left:163.106533pt;}
.x8{left:164.409467pt;}
.x3{left:264.113067pt;}
.xc{left:302.698133pt;}
.x4{left:306.913067pt;}
.x1f{left:322.813600pt;}
.xd{left:325.370133pt;}
.xa{left:329.391467pt;}
.x5{left:339.212667pt;}
.xf{left:340.162667pt;}
.xe{left:362.834667pt;}
.x1e{left:383.619067pt;}
.x16{left:400.635067pt;}
.x15{left:423.307067pt;}
.x12{left:430.871333pt;}
.x11{left:453.543333pt;}
.xb{left:468.661333pt;}
.x9{left:514.009467pt;}
.x14{left:531.028800pt;}
.x13{left:553.700800pt;}
.x21{left:668.159467pt;}
}




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