
    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_86bfcb2c71d37f3b07e6bf15.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.925293;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_4a4668561982eefb79718510.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.927246;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_86b357b312579e9486aaf3e9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942383;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_567ce499528a1f7ebae8955b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.912109;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_fb4a01326d66a0700ff7b8f5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.670898;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);}
.v3{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.976000px;}
.v4{vertical-align:21.978000px;}
.v2{vertical-align:25.974000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.009186px;}
.ls0{letter-spacing:0.016200px;}
.ls5{letter-spacing:0.019800px;}
.ls3{letter-spacing:0.024000px;}
.ls4{letter-spacing:0.030000px;}
.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;}
}
.ws2{word-spacing:-14.520000px;}
.ws0{word-spacing:-13.860000px;}
.ws7{word-spacing:-11.880000px;}
.ws1{word-spacing:-10.004280px;}
.ws6{word-spacing:-8.465160px;}
.ws3{word-spacing:-6.926040px;}
.ws4{word-spacing:0.000000px;}
.ws5{word-spacing:0.300600px;}
._3{margin-left:-8.860800px;}
._d{margin-left:-6.766500px;}
._11{margin-left:-5.764500px;}
._2{margin-left:-4.063500px;}
._0{margin-left:-2.964600px;}
._1{margin-left:-1.278900px;}
._4{width:1.326600px;}
._7{width:2.608200px;}
._5{width:3.736800px;}
._e{width:4.893000px;}
._8{width:6.151200px;}
._9{width:7.241400px;}
._12{width:8.327700px;}
._c{width:9.662400px;}
._18{width:10.876800px;}
._19{width:11.945700px;}
._16{width:13.029900px;}
._22{width:14.345904px;}
._a{width:15.529800px;}
._17{width:16.915800px;}
._1a{width:18.328200px;}
._1b{width:20.268600px;}
._6{width:21.634800px;}
._b{width:22.704000px;}
._f{width:23.772372px;}
._10{width:25.071300px;}
._1d{width:26.560500px;}
._1f{width:27.965700px;}
._14{width:29.295900px;}
._15{width:30.384300px;}
._21{width:31.413600px;}
._1c{width:33.435600px;}
._23{width:34.443900px;}
._1e{width:35.705100px;}
._13{width:37.534200px;}
._20{width:38.773500px;}
._27{width:40.385400px;}
._28{width:41.784600px;}
._2a{width:51.456600px;}
._24{width:55.743600px;}
._25{width:56.779800px;}
._29{width:130.779000px;}
._26{width:263.239500px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:31.482000px;}
.fs2{font-size:36.729000px;}
.fs8{font-size:38.478000px;}
.fs4{font-size:45.474000px;}
.fs7{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:63.000000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:210.472500px;}
.yef{bottom:244.818000px;}
.y1db{bottom:247.368000px;}
.ya8{bottom:247.818000px;}
.yf7{bottom:248.568000px;}
.y18a{bottom:249.435000px;}
.y26{bottom:251.824500px;}
.y1ba{bottom:252.318000px;}
.y4e{bottom:253.809000px;}
.y96{bottom:253.818000px;}
.y149{bottom:254.835000px;}
.yca{bottom:255.318000px;}
.y110{bottom:259.330500px;}
.yee{bottom:263.568000px;}
.y189{bottom:265.635000px;}
.y136{bottom:266.118000px;}
.ya7{bottom:266.568000px;}
.yf6{bottom:267.318000px;}
.y25{bottom:268.024500px;}
.y4d{bottom:272.559000px;}
.y95{bottom:272.568000px;}
.y148{bottom:272.835000px;}
.yc9{bottom:274.068000px;}
.ye1{bottom:276.318000px;}
.y159{bottom:277.330500px;}
.y1a3{bottom:280.068000px;}
.y188{bottom:281.835000px;}
.y73{bottom:282.318000px;}
.y24{bottom:284.224500px;}
.y135{bottom:284.418000px;}
.y1da{bottom:284.868000px;}
.ya6{bottom:285.318000px;}
.yf5{bottom:286.068000px;}
.y158{bottom:290.835000px;}
.y4c{bottom:291.309000px;}
.y94{bottom:291.318000px;}
.y10f{bottom:292.218000px;}
.yc8{bottom:292.818000px;}
.ye0{bottom:295.068000px;}
.y147{bottom:295.330500px;}
.y194{bottom:295.818000px;}
.y187{bottom:298.035000px;}
.y1e8{bottom:298.068000px;}
.y1a2{bottom:298.818000px;}
.y72{bottom:301.068000px;}
.y134{bottom:302.718000px;}
.ya5{bottom:304.068000px;}
.yf4{bottom:304.818000px;}
.y23{bottom:304.920000px;}
.y144{bottom:308.835000px;}
.y4b{bottom:310.059000px;}
.y93{bottom:310.068000px;}
.y10e{bottom:310.518000px;}
.yc7{bottom:311.568000px;}
.y1d9{bottom:312.618000px;}
.y157{bottom:313.330500px;}
.ydf{bottom:313.818000px;}
.y186{bottom:314.235000px;}
.y193{bottom:314.568000px;}
.y1e7{bottom:316.818000px;}
.y1a1{bottom:317.568000px;}
.y71{bottom:319.818000px;}
.y133{bottom:321.018000px;}
.y22{bottom:321.120000px;}
.ya4{bottom:322.818000px;}
.yf3{bottom:323.568000px;}
.y1b9{bottom:326.568000px;}
.y4a{bottom:328.809000px;}
.y92{bottom:328.818000px;}
.yc6{bottom:330.318000px;}
.y185{bottom:330.435000px;}
.y1d8{bottom:331.218000px;}
.y143{bottom:331.330500px;}
.yde{bottom:332.568000px;}
.y192{bottom:333.318000px;}
.y1e6{bottom:335.568000px;}
.y10d{bottom:337.818000px;}
.y70{bottom:338.568000px;}
.y132{bottom:339.318000px;}
.yf2{bottom:342.318000px;}
.y180{bottom:342.700500px;}
.y146{bottom:344.835000px;}
.y1a0{bottom:345.318000px;}
.y49{bottom:347.559000px;}
.yc5{bottom:349.068000px;}
.y15a{bottom:349.330500px;}
.y1d7{bottom:349.818000px;}
.ya3{bottom:350.568000px;}
.y184{bottom:351.130500px;}
.ydd{bottom:351.318000px;}
.y191{bottom:352.068000px;}
.y1e5{bottom:354.318000px;}
.y91{bottom:356.568000px;}
.y6f{bottom:357.318000px;}
.y131{bottom:357.618000px;}
.y17f{bottom:358.900500px;}
.y21{bottom:360.834000px;}
.yf1{bottom:361.068000px;}
.y1b8{bottom:364.068000px;}
.y48{bottom:366.309000px;}
.y145{bottom:367.330500px;}
.yc4{bottom:367.818000px;}
.ya2{bottom:369.318000px;}
.ydc{bottom:370.068000px;}
.y190{bottom:370.818000px;}
.y156{bottom:372.168000px;}
.y19f{bottom:373.068000px;}
.y10c{bottom:375.318000px;}
.y130{bottom:375.918000px;}
.y6e{bottom:376.068000px;}
.y1d6{bottom:377.418000px;}
.y20{bottom:379.584000px;}
.y17e{bottom:379.596000px;}
.yf0{bottom:379.818000px;}
.y183{bottom:380.835000px;}
.y47{bottom:385.059000px;}
.y177{bottom:385.330500px;}
.yc3{bottom:386.568000px;}
.ya1{bottom:388.068000px;}
.ydb{bottom:388.818000px;}
.y18f{bottom:389.568000px;}
.y155{bottom:390.768000px;}
.y19e{bottom:391.818000px;}
.y10b{bottom:394.068000px;}
.y12f{bottom:394.218000px;}
.y6d{bottom:394.818000px;}
.y1d5{bottom:396.018000px;}
.y90{bottom:397.818000px;}
.y182{bottom:398.835000px;}
.y1e4{bottom:400.818000px;}
.y46{bottom:403.809000px;}
.y176{bottom:404.235000px;}
.yc2{bottom:405.318000px;}
.ya0{bottom:406.818000px;}
.y1f{bottom:407.334000px;}
.yda{bottom:407.568000px;}
.y142{bottom:408.318000px;}
.y154{bottom:409.368000px;}
.y1b7{bottom:410.568000px;}
.y12e{bottom:412.518000px;}
.y10a{bottom:412.818000px;}
.y6c{bottom:413.568000px;}
.y8f{bottom:416.568000px;}
.y17d{bottom:417.318000px;}
.y19d{bottom:419.568000px;}
.y175{bottom:420.435000px;}
.y181{bottom:421.330500px;}
.y45{bottom:422.559000px;}
.y1d4{bottom:423.618000px;}
.yc1{bottom:424.068000px;}
.y9f{bottom:425.568000px;}
.y1e{bottom:426.084000px;}
.yd9{bottom:426.318000px;}
.y141{bottom:427.068000px;}
.y153{bottom:427.968000px;}
.y1b6{bottom:429.318000px;}
.y109{bottom:431.568000px;}
.y6b{bottom:432.318000px;}
.y8e{bottom:435.318000px;}
.y17c{bottom:436.068000px;}
.y19c{bottom:438.318000px;}
.y12d{bottom:439.818000px;}
.y174{bottom:441.130500px;}
.y44{bottom:441.309000px;}
.y1d3{bottom:442.218000px;}
.yc0{bottom:442.818000px;}
.y9e{bottom:444.318000px;}
.y1d{bottom:444.834000px;}
.yd8{bottom:445.068000px;}
.y140{bottom:445.818000px;}
.y152{bottom:446.568000px;}
.y1e3{bottom:447.318000px;}
.y108{bottom:450.318000px;}
.y6a{bottom:451.068000px;}
.y179{bottom:452.835000px;}
.y8d{bottom:454.068000px;}
.y17b{bottom:454.818000px;}
.y1b5{bottom:457.068000px;}
.y12c{bottom:458.118000px;}
.y43{bottom:460.059000px;}
.y1d2{bottom:460.818000px;}
.ybf{bottom:461.568000px;}
.y9d{bottom:463.068000px;}
.y1c{bottom:463.584000px;}
.yd7{bottom:463.818000px;}
.y13f{bottom:464.568000px;}
.y151{bottom:465.168000px;}
.y19b{bottom:466.068000px;}
.y107{bottom:469.068000px;}
.y69{bottom:469.818000px;}
.y8c{bottom:472.818000px;}
.y178{bottom:475.330500px;}
.y1b4{bottom:475.818000px;}
.y12b{bottom:476.418000px;}
.ybe{bottom:480.318000px;}
.y9c{bottom:481.818000px;}
.y1b{bottom:482.334000px;}
.yd6{bottom:482.568000px;}
.y13e{bottom:483.318000px;}
.y150{bottom:483.768000px;}
.y19a{bottom:484.818000px;}
.y42{bottom:487.809000px;}
.y106{bottom:487.818000px;}
.y1d1{bottom:488.418000px;}
.y68{bottom:488.568000px;}
.y8b{bottom:491.568000px;}
.y17a{bottom:493.330500px;}
.y1e2{bottom:493.818000px;}
.y1b3{bottom:494.568000px;}
.y12a{bottom:494.718000px;}
.y9b{bottom:500.568000px;}
.y1a{bottom:501.084000px;}
.yd5{bottom:501.318000px;}
.y13d{bottom:502.068000px;}
.y14f{bottom:502.368000px;}
.y199{bottom:503.568000px;}
.y41{bottom:506.559000px;}
.y105{bottom:506.568000px;}
.y1d0{bottom:507.018000px;}
.yed{bottom:507.318000px;}
.ybd{bottom:508.068000px;}
.y8a{bottom:510.318000px;}
.y1e1{bottom:512.568000px;}
.y129{bottom:513.018000px;}
.y173{bottom:514.218000px;}
.y67{bottom:516.318000px;}
.y9a{bottom:519.318000px;}
.y19{bottom:519.834000px;}
.yd4{bottom:520.068000px;}
.y13c{bottom:520.818000px;}
.y14e{bottom:520.968000px;}
.y1b2{bottom:522.318000px;}
.y40{bottom:525.309000px;}
.y104{bottom:525.318000px;}
.y1cf{bottom:525.618000px;}
.y89{bottom:529.068000px;}
.y128{bottom:531.318000px;}
.y172{bottom:532.818000px;}
.y1fb{bottom:533.334000px;}
.y66{bottom:535.068000px;}
.y99{bottom:538.068000px;}
.y18{bottom:538.584000px;}
.yd3{bottom:538.818000px;}
.y13b{bottom:539.568000px;}
.y1b1{bottom:541.068000px;}
.y3f{bottom:544.059000px;}
.y103{bottom:544.068000px;}
.y1ce{bottom:544.218000px;}
.y88{bottom:547.818000px;}
.ybc{bottom:549.318000px;}
.y127{bottom:549.618000px;}
.y198{bottom:550.068000px;}
.y171{bottom:551.418000px;}
.y65{bottom:553.818000px;}
.y98{bottom:556.818000px;}
.y17{bottom:557.334000px;}
.yd2{bottom:557.568000px;}
.y14d{bottom:558.168000px;}
.y13a{bottom:558.318000px;}
.y1b0{bottom:559.818000px;}
.y1fa{bottom:561.084000px;}
.y3e{bottom:562.809000px;}
.y102{bottom:562.818000px;}
.y87{bottom:566.568000px;}
.y126{bottom:567.918000px;}
.ybb{bottom:568.068000px;}
.y197{bottom:568.818000px;}
.y170{bottom:570.018000px;}
.y1cd{bottom:571.818000px;}
.y64{bottom:572.568000px;}
.y97{bottom:575.568000px;}
.y16{bottom:576.084000px;}
.yd1{bottom:576.318000px;}
.y14c{bottom:576.768000px;}
.y139{bottom:577.068000px;}
.y1e0{bottom:577.818000px;}
.y1f9{bottom:579.834000px;}
.y3d{bottom:581.559000px;}
.y101{bottom:581.568000px;}
.yba{bottom:586.818000px;}
.y1af{bottom:587.568000px;}
.y16f{bottom:588.618000px;}
.y1cc{bottom:590.418000px;}
.y63{bottom:591.318000px;}
.y86{bottom:594.318000px;}
.y15{bottom:594.834000px;}
.yec{bottom:595.068000px;}
.y125{bottom:595.218000px;}
.y14b{bottom:595.368000px;}
.y18e{bottom:595.818000px;}
.y196{bottom:596.568000px;}
.y1f8{bottom:598.584000px;}
.y3c{bottom:600.309000px;}
.y100{bottom:600.318000px;}
.yd0{bottom:604.068000px;}
.y138{bottom:604.818000px;}
.yb9{bottom:605.568000px;}
.y1ae{bottom:606.318000px;}
.y16e{bottom:607.218000px;}
.y1cb{bottom:609.018000px;}
.y62{bottom:610.068000px;}
.y85{bottom:613.068000px;}
.y124{bottom:613.518000px;}
.y14{bottom:613.584000px;}
.yeb{bottom:613.818000px;}
.y14a{bottom:613.968000px;}
.y18d{bottom:614.568000px;}
.y1df{bottom:615.318000px;}
.y1f7{bottom:617.334000px;}
.y3b{bottom:619.059000px;}
.yff{bottom:619.068000px;}
.ycf{bottom:622.818000px;}
.y137{bottom:623.568000px;}
.yb8{bottom:624.318000px;}
.y1ad{bottom:625.068000px;}
.y16d{bottom:625.818000px;}
.y61{bottom:628.818000px;}
.y84{bottom:631.818000px;}
.y13{bottom:632.334000px;}
.yea{bottom:632.568000px;}
.y18c{bottom:633.318000px;}
.y1f6{bottom:636.084000px;}
.y1ca{bottom:636.618000px;}
.y3a{bottom:637.809000px;}
.yfe{bottom:637.818000px;}
.yce{bottom:641.568000px;}
.y195{bottom:643.068000px;}
.y16c{bottom:644.418000px;}
.y60{bottom:647.568000px;}
.y123{bottom:650.118000px;}
.y83{bottom:650.568000px;}
.y12{bottom:651.084000px;}
.ye9{bottom:651.318000px;}
.yb7{bottom:652.068000px;}
.y1ac{bottom:652.818000px;}
.y1f5{bottom:654.834000px;}
.y1c9{bottom:655.218000px;}
.y39{bottom:656.559000px;}
.yfd{bottom:656.568000px;}
.ycd{bottom:660.318000px;}
.y1de{bottom:661.818000px;}
.y16b{bottom:663.018000px;}
.y122{bottom:668.418000px;}
.y82{bottom:669.318000px;}
.y11{bottom:669.834000px;}
.ye8{bottom:670.068000px;}
.yb6{bottom:670.818000px;}
.y1ab{bottom:671.568000px;}
.y1f4{bottom:673.584000px;}
.y1c8{bottom:673.818000px;}
.y38{bottom:675.309000px;}
.y5f{bottom:675.318000px;}
.ycc{bottom:679.068000px;}
.y1dd{bottom:680.568000px;}
.y16a{bottom:681.618000px;}
.y121{bottom:686.718000px;}
.y81{bottom:688.068000px;}
.y10{bottom:688.584000px;}
.ye7{bottom:688.818000px;}
.yb5{bottom:689.568000px;}
.y1aa{bottom:690.318000px;}
.y1f3{bottom:692.334000px;}
.y37{bottom:694.059000px;}
.yfc{bottom:694.068000px;}
.ycb{bottom:697.818000px;}
.y169{bottom:700.218000px;}
.y1c7{bottom:701.418000px;}
.y120{bottom:705.018000px;}
.y80{bottom:706.818000px;}
.yf{bottom:707.334000px;}
.ye6{bottom:707.568000px;}
.yb4{bottom:708.318000px;}
.y1f2{bottom:711.084000px;}
.y36{bottom:712.809000px;}
.yfb{bottom:712.818000px;}
.y5e{bottom:716.568000px;}
.y1a9{bottom:718.068000px;}
.y168{bottom:718.818000px;}
.y1c6{bottom:720.018000px;}
.y11f{bottom:723.318000px;}
.y7f{bottom:725.568000px;}
.ye{bottom:726.084000px;}
.ye5{bottom:726.318000px;}
.yb3{bottom:727.068000px;}
.y1f1{bottom:729.834000px;}
.y35{bottom:731.559000px;}
.yfa{bottom:731.568000px;}
.y5d{bottom:735.318000px;}
.y1a8{bottom:736.818000px;}
.y11e{bottom:741.618000px;}
.y7e{bottom:744.318000px;}
.yd{bottom:744.834000px;}
.ye4{bottom:745.068000px;}
.yb2{bottom:745.818000px;}
.y167{bottom:746.418000px;}
.y1c5{bottom:747.618000px;}
.y1f0{bottom:748.584000px;}
.y34{bottom:750.309000px;}
.yf9{bottom:750.318000px;}
.y5c{bottom:754.068000px;}
.y11d{bottom:759.918000px;}
.y7d{bottom:763.068000px;}
.yb1{bottom:764.568000px;}
.y166{bottom:765.018000px;}
.y1c4{bottom:766.218000px;}
.y1ef{bottom:767.334000px;}
.y33{bottom:769.059000px;}
.y5b{bottom:772.818000px;}
.yf8{bottom:778.068000px;}
.y11c{bottom:778.218000px;}
.y7c{bottom:781.818000px;}
.yb0{bottom:783.318000px;}
.y165{bottom:783.618000px;}
.y1ee{bottom:786.084000px;}
.y32{bottom:787.809000px;}
.y5a{bottom:791.568000px;}
.y1dc{bottom:792.318000px;}
.y1c3{bottom:793.818000px;}
.y11b{bottom:796.518000px;}
.y7b{bottom:800.568000px;}
.yaf{bottom:802.068000px;}
.y164{bottom:802.218000px;}
.y1ed{bottom:804.834000px;}
.y31{bottom:806.559000px;}
.yc{bottom:808.584000px;}
.y59{bottom:810.318000px;}
.y1a7{bottom:811.068000px;}
.y1c2{bottom:812.418000px;}
.y11a{bottom:814.818000px;}
.y7a{bottom:819.318000px;}
.yae{bottom:820.818000px;}
.y1ec{bottom:823.584000px;}
.y30{bottom:825.309000px;}
.y58{bottom:829.068000px;}
.y1a6{bottom:829.818000px;}
.y1c1{bottom:831.018000px;}
.yb{bottom:831.084000px;}
.y79{bottom:838.068000px;}
.y163{bottom:839.418000px;}
.yad{bottom:839.568000px;}
.y119{bottom:842.118000px;}
.y2f{bottom:844.059000px;}
.y57{bottom:847.818000px;}
.y1eb{bottom:851.334000px;}
.ya{bottom:853.584000px;}
.y78{bottom:856.818000px;}
.y1a5{bottom:857.568000px;}
.y162{bottom:858.018000px;}
.yac{bottom:858.318000px;}
.y1c0{bottom:858.618000px;}
.y118{bottom:860.418000px;}
.y2e{bottom:862.809000px;}
.y56{bottom:866.568000px;}
.y18b{bottom:867.318000px;}
.y77{bottom:875.568000px;}
.y1a4{bottom:876.318000px;}
.y161{bottom:876.618000px;}
.yab{bottom:877.068000px;}
.y1bf{bottom:877.218000px;}
.y117{bottom:878.718000px;}
.y2d{bottom:881.559000px;}
.y1ea{bottom:883.584000px;}
.y55{bottom:885.318000px;}
.y76{bottom:894.318000px;}
.y160{bottom:895.218000px;}
.yaa{bottom:895.818000px;}
.y116{bottom:897.018000px;}
.y2c{bottom:900.309000px;}
.y1e9{bottom:902.334000px;}
.y54{bottom:904.068000px;}
.y1be{bottom:904.818000px;}
.y75{bottom:913.068000px;}
.y15f{bottom:913.818000px;}
.y115{bottom:915.318000px;}
.y2b{bottom:919.059000px;}
.y53{bottom:922.818000px;}
.y1bd{bottom:923.418000px;}
.ya9{bottom:923.568000px;}
.y74{bottom:931.818000px;}
.y15e{bottom:932.418000px;}
.y114{bottom:933.618000px;}
.y2a{bottom:937.809000px;}
.ye3{bottom:941.568000px;}
.y1bc{bottom:942.018000px;}
.y5{bottom:945.075000px;}
.y52{bottom:950.568000px;}
.y15d{bottom:951.018000px;}
.y9{bottom:951.084000px;}
.y113{bottom:951.918000px;}
.ye2{bottom:960.318000px;}
.y1bb{bottom:960.618000px;}
.y29{bottom:965.559000px;}
.y51{bottom:969.318000px;}
.y15c{bottom:969.618000px;}
.y8{bottom:969.834000px;}
.y112{bottom:970.218000px;}
.y4{bottom:976.519500px;}
.y50{bottom:988.068000px;}
.y15b{bottom:988.218000px;}
.y111{bottom:988.518000px;}
.y7{bottom:988.584000px;}
.y3{bottom:992.719500px;}
.y28{bottom:1006.809000px;}
.y4f{bottom:1006.818000px;}
.y6{bottom:1007.334000px;}
.y2{bottom:1008.919500px;}
.y27{bottom:1043.977500px;}
.ha{height:22.258758px;}
.hc{height:33.937500px;}
.hb{height:38.179688px;}
.h3{height:38.285156px;}
.h2{height:44.542969px;}
.h5{height:44.666016px;}
.he{height:45.619629px;}
.hd{height:46.116211px;}
.hf{height:46.664062px;}
.h9{height:46.792969px;}
.h4{height:47.572244px;}
.h8{height:47.791992px;}
.h10{height:49.183148px;}
.h6{height:56.481445px;}
.h7{height:58.902683px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:180.708000px;}
.x7{left:190.533000px;}
.xb{left:197.716500px;}
.x9{left:213.174000px;}
.xa{left:231.732000px;}
.xc{left:237.735000px;}
.x8{left:258.112500px;}
.xd{left:412.230000px;}
.x5{left:532.651500px;}
.x2{left:593.005500px;}
.x3{left:600.138000px;}
.x4{left:606.459000px;}
.x1{left:686.041500px;}
@media print{
.v3{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.645333pt;}
.v4{vertical-align:19.536000pt;}
.v2{vertical-align:23.088000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.008165pt;}
.ls0{letter-spacing:0.014400pt;}
.ls5{letter-spacing:0.017600pt;}
.ls3{letter-spacing:0.021333pt;}
.ls4{letter-spacing:0.026667pt;}
.ws2{word-spacing:-12.906667pt;}
.ws0{word-spacing:-12.320000pt;}
.ws7{word-spacing:-10.560000pt;}
.ws1{word-spacing:-8.892693pt;}
.ws6{word-spacing:-7.524587pt;}
.ws3{word-spacing:-6.156480pt;}
.ws4{word-spacing:0.000000pt;}
.ws5{word-spacing:0.267200pt;}
._3{margin-left:-7.876267pt;}
._d{margin-left:-6.014667pt;}
._11{margin-left:-5.124000pt;}
._2{margin-left:-3.612000pt;}
._0{margin-left:-2.635200pt;}
._1{margin-left:-1.136800pt;}
._4{width:1.179200pt;}
._7{width:2.318400pt;}
._5{width:3.321600pt;}
._e{width:4.349333pt;}
._8{width:5.467733pt;}
._9{width:6.436800pt;}
._12{width:7.402400pt;}
._c{width:8.588800pt;}
._18{width:9.668267pt;}
._19{width:10.618400pt;}
._16{width:11.582133pt;}
._22{width:12.751915pt;}
._a{width:13.804267pt;}
._17{width:15.036267pt;}
._1a{width:16.291733pt;}
._1b{width:18.016533pt;}
._6{width:19.230933pt;}
._b{width:20.181333pt;}
._f{width:21.130997pt;}
._10{width:22.285600pt;}
._1d{width:23.609333pt;}
._1f{width:24.858400pt;}
._14{width:26.040800pt;}
._15{width:27.008267pt;}
._21{width:27.923200pt;}
._1c{width:29.720533pt;}
._23{width:30.616800pt;}
._1e{width:31.737867pt;}
._13{width:33.363733pt;}
._20{width:34.465333pt;}
._27{width:35.898133pt;}
._28{width:37.141867pt;}
._2a{width:45.739200pt;}
._24{width:49.549867pt;}
._25{width:50.470933pt;}
._29{width:116.248000pt;}
._26{width:233.990667pt;}
.fs6{font-size:27.984000pt;}
.fs2{font-size:32.648000pt;}
.fs8{font-size:34.202667pt;}
.fs4{font-size:40.421333pt;}
.fs7{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:56.000000pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:187.086667pt;}
.yef{bottom:217.616000pt;}
.y1db{bottom:219.882667pt;}
.ya8{bottom:220.282667pt;}
.yf7{bottom:220.949333pt;}
.y18a{bottom:221.720000pt;}
.y26{bottom:223.844000pt;}
.y1ba{bottom:224.282667pt;}
.y4e{bottom:225.608000pt;}
.y96{bottom:225.616000pt;}
.y149{bottom:226.520000pt;}
.yca{bottom:226.949333pt;}
.y110{bottom:230.516000pt;}
.yee{bottom:234.282667pt;}
.y189{bottom:236.120000pt;}
.y136{bottom:236.549333pt;}
.ya7{bottom:236.949333pt;}
.yf6{bottom:237.616000pt;}
.y25{bottom:238.244000pt;}
.y4d{bottom:242.274667pt;}
.y95{bottom:242.282667pt;}
.y148{bottom:242.520000pt;}
.yc9{bottom:243.616000pt;}
.ye1{bottom:245.616000pt;}
.y159{bottom:246.516000pt;}
.y1a3{bottom:248.949333pt;}
.y188{bottom:250.520000pt;}
.y73{bottom:250.949333pt;}
.y24{bottom:252.644000pt;}
.y135{bottom:252.816000pt;}
.y1da{bottom:253.216000pt;}
.ya6{bottom:253.616000pt;}
.yf5{bottom:254.282667pt;}
.y158{bottom:258.520000pt;}
.y4c{bottom:258.941333pt;}
.y94{bottom:258.949333pt;}
.y10f{bottom:259.749333pt;}
.yc8{bottom:260.282667pt;}
.ye0{bottom:262.282667pt;}
.y147{bottom:262.516000pt;}
.y194{bottom:262.949333pt;}
.y187{bottom:264.920000pt;}
.y1e8{bottom:264.949333pt;}
.y1a2{bottom:265.616000pt;}
.y72{bottom:267.616000pt;}
.y134{bottom:269.082667pt;}
.ya5{bottom:270.282667pt;}
.yf4{bottom:270.949333pt;}
.y23{bottom:271.040000pt;}
.y144{bottom:274.520000pt;}
.y4b{bottom:275.608000pt;}
.y93{bottom:275.616000pt;}
.y10e{bottom:276.016000pt;}
.yc7{bottom:276.949333pt;}
.y1d9{bottom:277.882667pt;}
.y157{bottom:278.516000pt;}
.ydf{bottom:278.949333pt;}
.y186{bottom:279.320000pt;}
.y193{bottom:279.616000pt;}
.y1e7{bottom:281.616000pt;}
.y1a1{bottom:282.282667pt;}
.y71{bottom:284.282667pt;}
.y133{bottom:285.349333pt;}
.y22{bottom:285.440000pt;}
.ya4{bottom:286.949333pt;}
.yf3{bottom:287.616000pt;}
.y1b9{bottom:290.282667pt;}
.y4a{bottom:292.274667pt;}
.y92{bottom:292.282667pt;}
.yc6{bottom:293.616000pt;}
.y185{bottom:293.720000pt;}
.y1d8{bottom:294.416000pt;}
.y143{bottom:294.516000pt;}
.yde{bottom:295.616000pt;}
.y192{bottom:296.282667pt;}
.y1e6{bottom:298.282667pt;}
.y10d{bottom:300.282667pt;}
.y70{bottom:300.949333pt;}
.y132{bottom:301.616000pt;}
.yf2{bottom:304.282667pt;}
.y180{bottom:304.622667pt;}
.y146{bottom:306.520000pt;}
.y1a0{bottom:306.949333pt;}
.y49{bottom:308.941333pt;}
.yc5{bottom:310.282667pt;}
.y15a{bottom:310.516000pt;}
.y1d7{bottom:310.949333pt;}
.ya3{bottom:311.616000pt;}
.y184{bottom:312.116000pt;}
.ydd{bottom:312.282667pt;}
.y191{bottom:312.949333pt;}
.y1e5{bottom:314.949333pt;}
.y91{bottom:316.949333pt;}
.y6f{bottom:317.616000pt;}
.y131{bottom:317.882667pt;}
.y17f{bottom:319.022667pt;}
.y21{bottom:320.741333pt;}
.yf1{bottom:320.949333pt;}
.y1b8{bottom:323.616000pt;}
.y48{bottom:325.608000pt;}
.y145{bottom:326.516000pt;}
.yc4{bottom:326.949333pt;}
.ya2{bottom:328.282667pt;}
.ydc{bottom:328.949333pt;}
.y190{bottom:329.616000pt;}
.y156{bottom:330.816000pt;}
.y19f{bottom:331.616000pt;}
.y10c{bottom:333.616000pt;}
.y130{bottom:334.149333pt;}
.y6e{bottom:334.282667pt;}
.y1d6{bottom:335.482667pt;}
.y20{bottom:337.408000pt;}
.y17e{bottom:337.418667pt;}
.yf0{bottom:337.616000pt;}
.y183{bottom:338.520000pt;}
.y47{bottom:342.274667pt;}
.y177{bottom:342.516000pt;}
.yc3{bottom:343.616000pt;}
.ya1{bottom:344.949333pt;}
.ydb{bottom:345.616000pt;}
.y18f{bottom:346.282667pt;}
.y155{bottom:347.349333pt;}
.y19e{bottom:348.282667pt;}
.y10b{bottom:350.282667pt;}
.y12f{bottom:350.416000pt;}
.y6d{bottom:350.949333pt;}
.y1d5{bottom:352.016000pt;}
.y90{bottom:353.616000pt;}
.y182{bottom:354.520000pt;}
.y1e4{bottom:356.282667pt;}
.y46{bottom:358.941333pt;}
.y176{bottom:359.320000pt;}
.yc2{bottom:360.282667pt;}
.ya0{bottom:361.616000pt;}
.y1f{bottom:362.074667pt;}
.yda{bottom:362.282667pt;}
.y142{bottom:362.949333pt;}
.y154{bottom:363.882667pt;}
.y1b7{bottom:364.949333pt;}
.y12e{bottom:366.682667pt;}
.y10a{bottom:366.949333pt;}
.y6c{bottom:367.616000pt;}
.y8f{bottom:370.282667pt;}
.y17d{bottom:370.949333pt;}
.y19d{bottom:372.949333pt;}
.y175{bottom:373.720000pt;}
.y181{bottom:374.516000pt;}
.y45{bottom:375.608000pt;}
.y1d4{bottom:376.549333pt;}
.yc1{bottom:376.949333pt;}
.y9f{bottom:378.282667pt;}
.y1e{bottom:378.741333pt;}
.yd9{bottom:378.949333pt;}
.y141{bottom:379.616000pt;}
.y153{bottom:380.416000pt;}
.y1b6{bottom:381.616000pt;}
.y109{bottom:383.616000pt;}
.y6b{bottom:384.282667pt;}
.y8e{bottom:386.949333pt;}
.y17c{bottom:387.616000pt;}
.y19c{bottom:389.616000pt;}
.y12d{bottom:390.949333pt;}
.y174{bottom:392.116000pt;}
.y44{bottom:392.274667pt;}
.y1d3{bottom:393.082667pt;}
.yc0{bottom:393.616000pt;}
.y9e{bottom:394.949333pt;}
.y1d{bottom:395.408000pt;}
.yd8{bottom:395.616000pt;}
.y140{bottom:396.282667pt;}
.y152{bottom:396.949333pt;}
.y1e3{bottom:397.616000pt;}
.y108{bottom:400.282667pt;}
.y6a{bottom:400.949333pt;}
.y179{bottom:402.520000pt;}
.y8d{bottom:403.616000pt;}
.y17b{bottom:404.282667pt;}
.y1b5{bottom:406.282667pt;}
.y12c{bottom:407.216000pt;}
.y43{bottom:408.941333pt;}
.y1d2{bottom:409.616000pt;}
.ybf{bottom:410.282667pt;}
.y9d{bottom:411.616000pt;}
.y1c{bottom:412.074667pt;}
.yd7{bottom:412.282667pt;}
.y13f{bottom:412.949333pt;}
.y151{bottom:413.482667pt;}
.y19b{bottom:414.282667pt;}
.y107{bottom:416.949333pt;}
.y69{bottom:417.616000pt;}
.y8c{bottom:420.282667pt;}
.y178{bottom:422.516000pt;}
.y1b4{bottom:422.949333pt;}
.y12b{bottom:423.482667pt;}
.ybe{bottom:426.949333pt;}
.y9c{bottom:428.282667pt;}
.y1b{bottom:428.741333pt;}
.yd6{bottom:428.949333pt;}
.y13e{bottom:429.616000pt;}
.y150{bottom:430.016000pt;}
.y19a{bottom:430.949333pt;}
.y42{bottom:433.608000pt;}
.y106{bottom:433.616000pt;}
.y1d1{bottom:434.149333pt;}
.y68{bottom:434.282667pt;}
.y8b{bottom:436.949333pt;}
.y17a{bottom:438.516000pt;}
.y1e2{bottom:438.949333pt;}
.y1b3{bottom:439.616000pt;}
.y12a{bottom:439.749333pt;}
.y9b{bottom:444.949333pt;}
.y1a{bottom:445.408000pt;}
.yd5{bottom:445.616000pt;}
.y13d{bottom:446.282667pt;}
.y14f{bottom:446.549333pt;}
.y199{bottom:447.616000pt;}
.y41{bottom:450.274667pt;}
.y105{bottom:450.282667pt;}
.y1d0{bottom:450.682667pt;}
.yed{bottom:450.949333pt;}
.ybd{bottom:451.616000pt;}
.y8a{bottom:453.616000pt;}
.y1e1{bottom:455.616000pt;}
.y129{bottom:456.016000pt;}
.y173{bottom:457.082667pt;}
.y67{bottom:458.949333pt;}
.y9a{bottom:461.616000pt;}
.y19{bottom:462.074667pt;}
.yd4{bottom:462.282667pt;}
.y13c{bottom:462.949333pt;}
.y14e{bottom:463.082667pt;}
.y1b2{bottom:464.282667pt;}
.y40{bottom:466.941333pt;}
.y104{bottom:466.949333pt;}
.y1cf{bottom:467.216000pt;}
.y89{bottom:470.282667pt;}
.y128{bottom:472.282667pt;}
.y172{bottom:473.616000pt;}
.y1fb{bottom:474.074667pt;}
.y66{bottom:475.616000pt;}
.y99{bottom:478.282667pt;}
.y18{bottom:478.741333pt;}
.yd3{bottom:478.949333pt;}
.y13b{bottom:479.616000pt;}
.y1b1{bottom:480.949333pt;}
.y3f{bottom:483.608000pt;}
.y103{bottom:483.616000pt;}
.y1ce{bottom:483.749333pt;}
.y88{bottom:486.949333pt;}
.ybc{bottom:488.282667pt;}
.y127{bottom:488.549333pt;}
.y198{bottom:488.949333pt;}
.y171{bottom:490.149333pt;}
.y65{bottom:492.282667pt;}
.y98{bottom:494.949333pt;}
.y17{bottom:495.408000pt;}
.yd2{bottom:495.616000pt;}
.y14d{bottom:496.149333pt;}
.y13a{bottom:496.282667pt;}
.y1b0{bottom:497.616000pt;}
.y1fa{bottom:498.741333pt;}
.y3e{bottom:500.274667pt;}
.y102{bottom:500.282667pt;}
.y87{bottom:503.616000pt;}
.y126{bottom:504.816000pt;}
.ybb{bottom:504.949333pt;}
.y197{bottom:505.616000pt;}
.y170{bottom:506.682667pt;}
.y1cd{bottom:508.282667pt;}
.y64{bottom:508.949333pt;}
.y97{bottom:511.616000pt;}
.y16{bottom:512.074667pt;}
.yd1{bottom:512.282667pt;}
.y14c{bottom:512.682667pt;}
.y139{bottom:512.949333pt;}
.y1e0{bottom:513.616000pt;}
.y1f9{bottom:515.408000pt;}
.y3d{bottom:516.941333pt;}
.y101{bottom:516.949333pt;}
.yba{bottom:521.616000pt;}
.y1af{bottom:522.282667pt;}
.y16f{bottom:523.216000pt;}
.y1cc{bottom:524.816000pt;}
.y63{bottom:525.616000pt;}
.y86{bottom:528.282667pt;}
.y15{bottom:528.741333pt;}
.yec{bottom:528.949333pt;}
.y125{bottom:529.082667pt;}
.y14b{bottom:529.216000pt;}
.y18e{bottom:529.616000pt;}
.y196{bottom:530.282667pt;}
.y1f8{bottom:532.074667pt;}
.y3c{bottom:533.608000pt;}
.y100{bottom:533.616000pt;}
.yd0{bottom:536.949333pt;}
.y138{bottom:537.616000pt;}
.yb9{bottom:538.282667pt;}
.y1ae{bottom:538.949333pt;}
.y16e{bottom:539.749333pt;}
.y1cb{bottom:541.349333pt;}
.y62{bottom:542.282667pt;}
.y85{bottom:544.949333pt;}
.y124{bottom:545.349333pt;}
.y14{bottom:545.408000pt;}
.yeb{bottom:545.616000pt;}
.y14a{bottom:545.749333pt;}
.y18d{bottom:546.282667pt;}
.y1df{bottom:546.949333pt;}
.y1f7{bottom:548.741333pt;}
.y3b{bottom:550.274667pt;}
.yff{bottom:550.282667pt;}
.ycf{bottom:553.616000pt;}
.y137{bottom:554.282667pt;}
.yb8{bottom:554.949333pt;}
.y1ad{bottom:555.616000pt;}
.y16d{bottom:556.282667pt;}
.y61{bottom:558.949333pt;}
.y84{bottom:561.616000pt;}
.y13{bottom:562.074667pt;}
.yea{bottom:562.282667pt;}
.y18c{bottom:562.949333pt;}
.y1f6{bottom:565.408000pt;}
.y1ca{bottom:565.882667pt;}
.y3a{bottom:566.941333pt;}
.yfe{bottom:566.949333pt;}
.yce{bottom:570.282667pt;}
.y195{bottom:571.616000pt;}
.y16c{bottom:572.816000pt;}
.y60{bottom:575.616000pt;}
.y123{bottom:577.882667pt;}
.y83{bottom:578.282667pt;}
.y12{bottom:578.741333pt;}
.ye9{bottom:578.949333pt;}
.yb7{bottom:579.616000pt;}
.y1ac{bottom:580.282667pt;}
.y1f5{bottom:582.074667pt;}
.y1c9{bottom:582.416000pt;}
.y39{bottom:583.608000pt;}
.yfd{bottom:583.616000pt;}
.ycd{bottom:586.949333pt;}
.y1de{bottom:588.282667pt;}
.y16b{bottom:589.349333pt;}
.y122{bottom:594.149333pt;}
.y82{bottom:594.949333pt;}
.y11{bottom:595.408000pt;}
.ye8{bottom:595.616000pt;}
.yb6{bottom:596.282667pt;}
.y1ab{bottom:596.949333pt;}
.y1f4{bottom:598.741333pt;}
.y1c8{bottom:598.949333pt;}
.y38{bottom:600.274667pt;}
.y5f{bottom:600.282667pt;}
.ycc{bottom:603.616000pt;}
.y1dd{bottom:604.949333pt;}
.y16a{bottom:605.882667pt;}
.y121{bottom:610.416000pt;}
.y81{bottom:611.616000pt;}
.y10{bottom:612.074667pt;}
.ye7{bottom:612.282667pt;}
.yb5{bottom:612.949333pt;}
.y1aa{bottom:613.616000pt;}
.y1f3{bottom:615.408000pt;}
.y37{bottom:616.941333pt;}
.yfc{bottom:616.949333pt;}
.ycb{bottom:620.282667pt;}
.y169{bottom:622.416000pt;}
.y1c7{bottom:623.482667pt;}
.y120{bottom:626.682667pt;}
.y80{bottom:628.282667pt;}
.yf{bottom:628.741333pt;}
.ye6{bottom:628.949333pt;}
.yb4{bottom:629.616000pt;}
.y1f2{bottom:632.074667pt;}
.y36{bottom:633.608000pt;}
.yfb{bottom:633.616000pt;}
.y5e{bottom:636.949333pt;}
.y1a9{bottom:638.282667pt;}
.y168{bottom:638.949333pt;}
.y1c6{bottom:640.016000pt;}
.y11f{bottom:642.949333pt;}
.y7f{bottom:644.949333pt;}
.ye{bottom:645.408000pt;}
.ye5{bottom:645.616000pt;}
.yb3{bottom:646.282667pt;}
.y1f1{bottom:648.741333pt;}
.y35{bottom:650.274667pt;}
.yfa{bottom:650.282667pt;}
.y5d{bottom:653.616000pt;}
.y1a8{bottom:654.949333pt;}
.y11e{bottom:659.216000pt;}
.y7e{bottom:661.616000pt;}
.yd{bottom:662.074667pt;}
.ye4{bottom:662.282667pt;}
.yb2{bottom:662.949333pt;}
.y167{bottom:663.482667pt;}
.y1c5{bottom:664.549333pt;}
.y1f0{bottom:665.408000pt;}
.y34{bottom:666.941333pt;}
.yf9{bottom:666.949333pt;}
.y5c{bottom:670.282667pt;}
.y11d{bottom:675.482667pt;}
.y7d{bottom:678.282667pt;}
.yb1{bottom:679.616000pt;}
.y166{bottom:680.016000pt;}
.y1c4{bottom:681.082667pt;}
.y1ef{bottom:682.074667pt;}
.y33{bottom:683.608000pt;}
.y5b{bottom:686.949333pt;}
.yf8{bottom:691.616000pt;}
.y11c{bottom:691.749333pt;}
.y7c{bottom:694.949333pt;}
.yb0{bottom:696.282667pt;}
.y165{bottom:696.549333pt;}
.y1ee{bottom:698.741333pt;}
.y32{bottom:700.274667pt;}
.y5a{bottom:703.616000pt;}
.y1dc{bottom:704.282667pt;}
.y1c3{bottom:705.616000pt;}
.y11b{bottom:708.016000pt;}
.y7b{bottom:711.616000pt;}
.yaf{bottom:712.949333pt;}
.y164{bottom:713.082667pt;}
.y1ed{bottom:715.408000pt;}
.y31{bottom:716.941333pt;}
.yc{bottom:718.741333pt;}
.y59{bottom:720.282667pt;}
.y1a7{bottom:720.949333pt;}
.y1c2{bottom:722.149333pt;}
.y11a{bottom:724.282667pt;}
.y7a{bottom:728.282667pt;}
.yae{bottom:729.616000pt;}
.y1ec{bottom:732.074667pt;}
.y30{bottom:733.608000pt;}
.y58{bottom:736.949333pt;}
.y1a6{bottom:737.616000pt;}
.y1c1{bottom:738.682667pt;}
.yb{bottom:738.741333pt;}
.y79{bottom:744.949333pt;}
.y163{bottom:746.149333pt;}
.yad{bottom:746.282667pt;}
.y119{bottom:748.549333pt;}
.y2f{bottom:750.274667pt;}
.y57{bottom:753.616000pt;}
.y1eb{bottom:756.741333pt;}
.ya{bottom:758.741333pt;}
.y78{bottom:761.616000pt;}
.y1a5{bottom:762.282667pt;}
.y162{bottom:762.682667pt;}
.yac{bottom:762.949333pt;}
.y1c0{bottom:763.216000pt;}
.y118{bottom:764.816000pt;}
.y2e{bottom:766.941333pt;}
.y56{bottom:770.282667pt;}
.y18b{bottom:770.949333pt;}
.y77{bottom:778.282667pt;}
.y1a4{bottom:778.949333pt;}
.y161{bottom:779.216000pt;}
.yab{bottom:779.616000pt;}
.y1bf{bottom:779.749333pt;}
.y117{bottom:781.082667pt;}
.y2d{bottom:783.608000pt;}
.y1ea{bottom:785.408000pt;}
.y55{bottom:786.949333pt;}
.y76{bottom:794.949333pt;}
.y160{bottom:795.749333pt;}
.yaa{bottom:796.282667pt;}
.y116{bottom:797.349333pt;}
.y2c{bottom:800.274667pt;}
.y1e9{bottom:802.074667pt;}
.y54{bottom:803.616000pt;}
.y1be{bottom:804.282667pt;}
.y75{bottom:811.616000pt;}
.y15f{bottom:812.282667pt;}
.y115{bottom:813.616000pt;}
.y2b{bottom:816.941333pt;}
.y53{bottom:820.282667pt;}
.y1bd{bottom:820.816000pt;}
.ya9{bottom:820.949333pt;}
.y74{bottom:828.282667pt;}
.y15e{bottom:828.816000pt;}
.y114{bottom:829.882667pt;}
.y2a{bottom:833.608000pt;}
.ye3{bottom:836.949333pt;}
.y1bc{bottom:837.349333pt;}
.y5{bottom:840.066667pt;}
.y52{bottom:844.949333pt;}
.y15d{bottom:845.349333pt;}
.y9{bottom:845.408000pt;}
.y113{bottom:846.149333pt;}
.ye2{bottom:853.616000pt;}
.y1bb{bottom:853.882667pt;}
.y29{bottom:858.274667pt;}
.y51{bottom:861.616000pt;}
.y15c{bottom:861.882667pt;}
.y8{bottom:862.074667pt;}
.y112{bottom:862.416000pt;}
.y4{bottom:868.017333pt;}
.y50{bottom:878.282667pt;}
.y15b{bottom:878.416000pt;}
.y111{bottom:878.682667pt;}
.y7{bottom:878.741333pt;}
.y3{bottom:882.417333pt;}
.y28{bottom:894.941333pt;}
.y4f{bottom:894.949333pt;}
.y6{bottom:895.408000pt;}
.y2{bottom:896.817333pt;}
.y27{bottom:927.980000pt;}
.ha{height:19.785563pt;}
.hc{height:30.166667pt;}
.hb{height:33.937500pt;}
.h3{height:34.031250pt;}
.h2{height:39.593750pt;}
.h5{height:39.703125pt;}
.he{height:40.550781pt;}
.hd{height:40.992188pt;}
.hf{height:41.479167pt;}
.h9{height:41.593750pt;}
.h4{height:42.286439pt;}
.h8{height:42.481771pt;}
.h10{height:43.718354pt;}
.h6{height:50.205729pt;}
.h7{height:52.357940pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:160.629333pt;}
.x7{left:169.362667pt;}
.xb{left:175.748000pt;}
.x9{left:189.488000pt;}
.xa{left:205.984000pt;}
.xc{left:211.320000pt;}
.x8{left:229.433333pt;}
.xd{left:366.426667pt;}
.x5{left:473.468000pt;}
.x2{left:527.116000pt;}
.x3{left:533.456000pt;}
.x4{left:539.074667pt;}
.x1{left:609.814667pt;}
}




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