
    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_47005ad49f28210d2fc29749.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.082000;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_257fd140df78366b0db09da9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.100000;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_b27189a346af8139fb89a601.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.733000;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_8b253bf694a936dbb5ef64a3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.002000;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_1bc907b89447a920c096e5e9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.955000;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_27692fb7b8bc24f1d2650975.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.931000;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_3c4a1b56500bb914d29a97bc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_19ffecddbd4a57c59e4d3136.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.057000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_fe5b968893e887fba543759f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.652000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f24d71c23f78082698f8bffe.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.939000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e7e45d3861a2f6f5bfc3b5e9.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.044000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_0a3d12a4092d0d8a75f773cc.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.917000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_9251cfc7f0a9e16921c45723.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.044000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_58a6109975c5764fe0e7bfb7.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.922000;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:fff;src:url('chunks/assets/font_2cf49dd66970bc131c54898f.woff2')format("woff");}.fff{font-family:fff;line-height:1.001000;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:ff10;src:url('chunks/assets/font_935fe6f4dea2483877fbd8c8.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.738000;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:ff11;src:url('chunks/assets/font_d5df285c2a9728834f76e189.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.944000;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:ff12;src:url('chunks/assets/font_a31b8aaf3972c45967b11354.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.542000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-10.218000px;}
.v1{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:2.988479px;}
.ls3{letter-spacing:18.399053px;}
.ls4{letter-spacing:21.665473px;}
.ls6{letter-spacing:21.730927px;}
.ls1{letter-spacing:32.727606px;}
.ls2{letter-spacing:51.294893px;}
.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;}
}
.ws4{word-spacing:-41.007178px;}
.ws13{word-spacing:-32.517845px;}
.ws11{word-spacing:-29.881822px;}
.ws15{word-spacing:-27.641618px;}
.ws31{word-spacing:-21.717836px;}
.ws2c{word-spacing:-18.576015px;}
.ws19{word-spacing:-18.442092px;}
.ws2b{word-spacing:-16.743287px;}
.ws27{word-spacing:-16.416014px;}
.wsd{word-spacing:-13.720706px;}
.ws0{word-spacing:-13.634628px;}
.ws32{word-spacing:-12.030555px;}
.ws33{word-spacing:-11.834192px;}
.ws28{word-spacing:-11.703282px;}
.ws35{word-spacing:-11.572373px;}
.ws1a{word-spacing:-11.470938px;}
.ws36{word-spacing:-11.441464px;}
.ws34{word-spacing:-11.376009px;}
.ws2d{word-spacing:-11.179646px;}
.ws1{word-spacing:-10.852373px;}
.wsf{word-spacing:-10.786918px;}
.ws2e{word-spacing:-10.372332px;}
.ws2f{word-spacing:-10.318533px;}
.ws10{word-spacing:-9.976548px;}
.ws30{word-spacing:-9.916772px;}
.ws26{word-spacing:-9.412371px;}
.ws12{word-spacing:-9.242565px;}
.ws14{word-spacing:-9.188767px;}
.ws25{word-spacing:-8.496007px;}
.ws3{word-spacing:-7.029658px;}
.wsb{word-spacing:-6.993792px;}
.ws29{word-spacing:-6.728733px;}
.ws21{word-spacing:-6.139641px;}
.ws2a{word-spacing:-6.074187px;}
.ws24{word-spacing:-3.914185px;}
.ws22{word-spacing:-3.783276px;}
.ws1c{word-spacing:-0.086077px;}
.ws7{word-spacing:-0.065455px;}
.ws20{word-spacing:-0.053798px;}
.ws1b{word-spacing:-0.035866px;}
.wsa{word-spacing:0.000000px;}
.ws1e{word-spacing:13.700659px;}
.ws17{word-spacing:13.987584px;}
.wsc{word-spacing:14.561434px;}
.ws2{word-spacing:16.880672px;}
.ws23{word-spacing:21.600018px;}
.ws6{word-spacing:21.665473px;}
.ws5{word-spacing:22.647292px;}
.ws9{word-spacing:23.956384px;}
.ws1d{word-spacing:27.200395px;}
.ws18{word-spacing:27.286472px;}
.wse{word-spacing:28.663708px;}
.ws1f{word-spacing:32.881490px;}
.ws16{word-spacing:33.311876px;}
.ws8{word-spacing:68.674966px;}
._a{margin-left:-6.800099px;}
._2{margin-left:-5.432732px;}
._f{margin-left:-4.021447px;}
._9{margin-left:-2.880895px;}
._1{margin-left:-1.767274px;}
._5{width:1.183565px;}
._0{width:2.238007px;}
._16{width:3.783816px;}
._15{width:5.432732px;}
._b{width:9.199526px;}
._14{width:10.865464px;}
._11{width:13.600198px;}
._e{width:18.775642px;}
._18{width:21.081763px;}
._8{width:22.249182px;}
._12{width:24.021838px;}
._13{width:27.098204px;}
._10{width:28.405476px;}
._d{width:30.414029px;}
._17{width:33.120028px;}
._6{width:34.359245px;}
._c{width:86.174594px;}
._4{width:99.470594px;}
._7{width:101.192812px;}
._3{width:275.168589px;}
.fc6{color:rgb(122,122,205);}
.fc5{color:rgb(0,255,0);}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(128,128,128);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(51,51,178);}
.fs3{font-size:35.865600px;}
.fs2{font-size:47.820600px;}
.fs5{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y7{bottom:3.987000px;}
.y1f{bottom:18.937500px;}
.y41{bottom:35.376000px;}
.yff{bottom:38.866500px;}
.y10e{bottom:40.122000px;}
.yf0{bottom:40.944000px;}
.y152{bottom:41.394000px;}
.y135{bottom:41.758500px;}
.yd3{bottom:50.395500px;}
.y8d{bottom:51.813000px;}
.y143{bottom:52.317000px;}
.ye1{bottom:52.861500px;}
.yfe{bottom:59.190000px;}
.y10d{bottom:60.445500px;}
.yef{bottom:61.267500px;}
.y151{bottom:61.719000px;}
.y134{bottom:62.082000px;}
.y16b{bottom:65.332500px;}
.y11b{bottom:65.493000px;}
.yd2{bottom:70.720500px;}
.y142{bottom:72.640500px;}
.ye0{bottom:73.185000px;}
.ye{bottom:77.004000px;}
.y15e{bottom:77.977500px;}
.yfd{bottom:79.515000px;}
.y10c{bottom:80.770500px;}
.yee{bottom:81.591000px;}
.y150{bottom:82.042500px;}
.y133{bottom:82.405500px;}
.y16a{bottom:85.656000px;}
.y11a{bottom:85.816500px;}
.y126{bottom:89.445000px;}
.yd1{bottom:91.044000px;}
.y141{bottom:92.964000px;}
.ydf{bottom:93.510000px;}
.y9c{bottom:93.861000px;}
.yb2{bottom:97.903500px;}
.y15d{bottom:98.301000px;}
.yfc{bottom:99.838500px;}
.y10b{bottom:101.094000px;}
.yed{bottom:101.914500px;}
.y14f{bottom:102.366000px;}
.y132{bottom:102.729000px;}
.y175{bottom:104.896500px;}
.y169{bottom:105.979500px;}
.y119{bottom:106.140000px;}
.y125{bottom:109.768500px;}
.yd0{bottom:111.367500px;}
.y140{bottom:113.287500px;}
.yde{bottom:113.833500px;}
.y35{bottom:115.098000px;}
.yb1{bottom:118.227000px;}
.y15c{bottom:118.626000px;}
.y9b{bottom:118.668000px;}
.y10a{bottom:121.417500px;}
.yd{bottom:121.716000px;}
.yec{bottom:122.238000px;}
.yfb{bottom:122.254500px;}
.y14e{bottom:122.689500px;}
.y131{bottom:123.054000px;}
.y40{bottom:123.180000px;}
.y71{bottom:123.628500px;}
.y174{bottom:125.220000px;}
.y168{bottom:126.303000px;}
.y118{bottom:126.463500px;}
.y48{bottom:126.841500px;}
.y124{bottom:130.092000px;}
.ycf{bottom:131.691000px;}
.y2d{bottom:131.937000px;}
.yc5{bottom:132.672000px;}
.y13f{bottom:133.612500px;}
.ydd{bottom:134.157000px;}
.y8c{bottom:134.328000px;}
.y34{bottom:135.421500px;}
.y1e{bottom:136.062000px;}
.y7c{bottom:138.078000px;}
.yb0{bottom:138.550500px;}
.y15b{bottom:138.949500px;}
.y9a{bottom:138.991500px;}
.y6{bottom:139.473000px;}
.y3f{bottom:141.114000px;}
.y109{bottom:141.741000px;}
.yeb{bottom:142.563000px;}
.yfa{bottom:142.578000px;}
.y14d{bottom:143.013000px;}
.y130{bottom:143.377500px;}
.y70{bottom:143.952000px;}
.y25{bottom:144.867000px;}
.y173{bottom:145.543500px;}
.y167{bottom:146.628000px;}
.y117{bottom:146.788500px;}
.y47{bottom:147.165000px;}
.y68{bottom:147.628500px;}
.y56{bottom:148.077000px;}
.y123{bottom:150.417000px;}
.yce{bottom:152.014500px;}
.yc4{bottom:152.995500px;}
.y13e{bottom:153.936000px;}
.y4f{bottom:154.371000px;}
.ydc{bottom:154.480500px;}
.y8b{bottom:154.653000px;}
.y2c{bottom:154.816500px;}
.yb9{bottom:155.520000px;}
.yaf{bottom:158.875500px;}
.y3e{bottom:159.046500px;}
.y15a{bottom:159.273000px;}
.y99{bottom:159.315000px;}
.y5c{bottom:160.212000px;}
.y33{bottom:160.228500px;}
.y1d{bottom:160.869000px;}
.y108{bottom:162.064500px;}
.y7b{bottom:162.885000px;}
.yea{bottom:162.886500px;}
.yf9{bottom:162.901500px;}
.y14c{bottom:163.338000px;}
.y12f{bottom:163.701000px;}
.y67{bottom:165.561000px;}
.ya1{bottom:165.831000px;}
.y172{bottom:165.868500px;}
.yc{bottom:166.428000px;}
.y166{bottom:166.951500px;}
.y116{bottom:167.112000px;}
.y24{bottom:167.745000px;}
.y61{bottom:168.520500px;}
.y6f{bottom:168.759000px;}
.y122{bottom:170.740500px;}
.y46{bottom:171.972000px;}
.ycd{bottom:172.339500px;}
.yc3{bottom:173.319000px;}
.yb8{bottom:173.452500px;}
.y13d{bottom:174.259500px;}
.ydb{bottom:174.804000px;}
.y76{bottom:175.096500px;}
.y55{bottom:175.126500px;}
.y5{bottom:176.820000px;}
.y3d{bottom:176.979000px;}
.y2b{bottom:177.069000px;}
.y4e{bottom:179.178000px;}
.yae{bottom:179.199000px;}
.y8a{bottom:179.460000px;}
.y159{bottom:179.596500px;}
.y91{bottom:180.715500px;}
.y107{bottom:182.389500px;}
.ye9{bottom:183.210000px;}
.yf8{bottom:183.225000px;}
.y66{bottom:183.495000px;}
.y14b{bottom:183.661500px;}
.y12e{bottom:184.024500px;}
.y98{bottom:184.122000px;}
.y5b{bottom:185.019000px;}
.y32{bottom:185.035500px;}
.y1c{bottom:185.676000px;}
.y171{bottom:186.192000px;}
.y165{bottom:187.275000px;}
.y115{bottom:187.435500px;}
.y7a{bottom:187.692000px;}
.y60{bottom:188.844000px;}
.y6e{bottom:189.084000px;}
.y23{bottom:189.997500px;}
.ya0{bottom:190.638000px;}
.y121{bottom:191.064000px;}
.yb7{bottom:191.385000px;}
.ycc{bottom:192.663000px;}
.y54{bottom:193.059000px;}
.y84{bottom:194.580000px;}
.y13c{bottom:194.583000px;}
.yda{bottom:195.129000px;}
.y75{bottom:195.420000px;}
.y3c{bottom:195.658500px;}
.y17{bottom:196.411500px;}
.y45{bottom:196.779000px;}
.y2a{bottom:197.392500px;}
.yc2{bottom:198.126000px;}
.y4d{bottom:199.501500px;}
.yad{bottom:199.522500px;}
.y158{bottom:199.920000px;}
.y90{bottom:201.039000px;}
.y65{bottom:202.174500px;}
.y106{bottom:202.713000px;}
.y7e{bottom:203.442000px;}
.ye8{bottom:203.533500px;}
.yf7{bottom:203.550000px;}
.y14a{bottom:203.985000px;}
.y89{bottom:204.267000px;}
.y12d{bottom:204.348000px;}
.y31{bottom:205.359000px;}
.y1b{bottom:205.999500px;}
.y170{bottom:206.515500px;}
.y164{bottom:207.598500px;}
.y114{bottom:207.759000px;}
.y97{bottom:208.929000px;}
.y5a{bottom:209.826000px;}
.yb6{bottom:210.064500px;}
.y53{bottom:210.991500px;}
.yb{bottom:211.140000px;}
.y120{bottom:211.387500px;}
.y79{bottom:212.499000px;}
.y22{bottom:212.875500px;}
.ycb{bottom:212.986500px;}
.y3b{bottom:213.591000px;}
.y5f{bottom:213.651000px;}
.y6d{bottom:213.891000px;}
.y4{bottom:213.913500px;}
.y83{bottom:214.903500px;}
.y13b{bottom:214.906500px;}
.y16{bottom:215.092500px;}
.y9f{bottom:215.445000px;}
.yd9{bottom:215.452500px;}
.y29{bottom:217.716000px;}
.y36{bottom:218.331000px;}
.y10{bottom:218.335500px;}
.yc1{bottom:218.451000px;}
.yac{bottom:219.846000px;}
.y74{bottom:220.227000px;}
.y157{bottom:220.245000px;}
.y44{bottom:221.586000px;}
.y105{bottom:223.036500px;}
.ya6{bottom:223.804500px;}
.ye7{bottom:223.857000px;}
.yf6{bottom:223.873500px;}
.y4c{bottom:224.308500px;}
.y64{bottom:224.590500px;}
.y12c{bottom:224.673000px;}
.ybe{bottom:224.821500px;}
.y8f{bottom:225.846000px;}
.y16f{bottom:226.839000px;}
.y163{bottom:227.922000px;}
.y113{bottom:228.082500px;}
.y88{bottom:229.074000px;}
.y96{bottom:229.252500px;}
.y52{bottom:229.671000px;}
.y59{bottom:230.149500px;}
.y30{bottom:230.166000px;}
.y7d{bottom:230.341500px;}
.y1a{bottom:230.806500px;}
.y11f{bottom:231.711000px;}
.yca{bottom:233.310000px;}
.y6c{bottom:234.214500px;}
.yb5{bottom:234.723000px;}
.y21{bottom:235.128000px;}
.y13a{bottom:235.231500px;}
.yd8{bottom:235.776000px;}
.y3a{bottom:236.007000px;}
.y78{bottom:237.306000px;}
.y15{bottom:237.508500px;}
.y5e{bottom:238.458000px;}
.y82{bottom:239.710500px;}
.yab{bottom:240.169500px;}
.y9e{bottom:240.252000px;}
.y73{bottom:240.550500px;}
.y156{bottom:240.568500px;}
.y28{bottom:240.594000px;}
.yc0{bottom:243.258000px;}
.y104{bottom:243.360000px;}
.ya5{bottom:244.128000px;}
.ye6{bottom:244.182000px;}
.yf5{bottom:244.197000px;}
.y149{bottom:244.632000px;}
.y12b{bottom:244.996500px;}
.ybd{bottom:245.145000px;}
.y43{bottom:246.393000px;}
.y16e{bottom:247.162500px;}
.y162{bottom:248.247000px;}
.y112{bottom:248.407500px;}
.y4b{bottom:249.115500px;}
.y63{bottom:249.397500px;}
.y58{bottom:250.473000px;}
.y8e{bottom:250.653000px;}
.y11e{bottom:252.036000px;}
.y51{bottom:252.087000px;}
.yb4{bottom:252.655500px;}
.yc9{bottom:253.633500px;}
.y87{bottom:253.881000px;}
.y95{bottom:254.059500px;}
.y6b{bottom:254.538000px;}
.y2f{bottom:254.973000px;}
.y139{bottom:255.555000px;}
.y19{bottom:255.613500px;}
.ya{bottom:255.853500px;}
.yd7{bottom:256.099500px;}
.y39{bottom:256.332000px;}
.y20{bottom:258.006000px;}
.y5d{bottom:258.781500px;}
.yaa{bottom:260.494500px;}
.y9d{bottom:260.575500px;}
.y155{bottom:260.892000px;}
.y77{bottom:262.113000px;}
.y14{bottom:262.315500px;}
.y27{bottom:262.846500px;}
.ybf{bottom:263.581500px;}
.y103{bottom:263.683500px;}
.ye5{bottom:264.505500px;}
.y81{bottom:264.517500px;}
.yf4{bottom:264.520500px;}
.y148{bottom:264.957000px;}
.y12a{bottom:265.320000px;}
.y72{bottom:265.357500px;}
.y42{bottom:266.716500px;}
.y16d{bottom:267.487500px;}
.y161{bottom:268.570500px;}
.y111{bottom:268.731000px;}
.ybc{bottom:269.952000px;}
.y3{bottom:270.700500px;}
.ya4{bottom:271.177500px;}
.yb3{bottom:271.335000px;}
.y11d{bottom:272.359500px;}
.y50{bottom:272.410500px;}
.yc8{bottom:273.958500px;}
.y62{bottom:274.204500px;}
.y94{bottom:274.383000px;}
.y57{bottom:275.280000px;}
.y2e{bottom:275.298000px;}
.y138{bottom:275.878500px;}
.yd6{bottom:276.423000px;}
.y86{bottom:278.688000px;}
.y6a{bottom:279.345000px;}
.y18{bottom:280.420500px;}
.y38{bottom:281.137500px;}
.y154{bottom:281.215500px;}
.ya9{bottom:282.775500px;}
.y102{bottom:284.007000px;}
.y144{bottom:284.008500px;}
.ye4{bottom:284.829000px;}
.yf3{bottom:284.844000px;}
.y147{bottom:285.280500px;}
.y129{bottom:285.643500px;}
.y26{bottom:285.724500px;}
.y13{bottom:287.122500px;}
.y16c{bottom:287.811000px;}
.y160{bottom:288.894000px;}
.y110{bottom:289.054500px;}
.ya3{bottom:289.110000px;}
.y80{bottom:289.324500px;}
.y2{bottom:291.024000px;}
.y11c{bottom:292.683000px;}
.yc7{bottom:294.282000px;}
.ybb{bottom:294.759000px;}
.y137{bottom:296.202000px;}
.yd5{bottom:296.748000px;}
.y93{bottom:299.190000px;}
.y69{bottom:299.668500px;}
.y9{bottom:300.565500px;}
.y37{bottom:301.462500px;}
.y153{bottom:301.539000px;}
.ya8{bottom:303.099000px;}
.y85{bottom:303.495000px;}
.y101{bottom:304.332000px;}
.ye3{bottom:305.152500px;}
.yf2{bottom:305.169000px;}
.y146{bottom:305.604000px;}
.y128{bottom:305.967000px;}
.ya2{bottom:307.789500px;}
.y4a{bottom:308.112000px;}
.y15f{bottom:309.217500px;}
.y10f{bottom:309.378000px;}
.y12{bottom:311.928000px;}
.y7f{bottom:314.131500px;}
.yc6{bottom:314.605500px;}
.y1{bottom:316.474500px;}
.y136{bottom:316.525500px;}
.yd4{bottom:317.071500px;}
.y92{bottom:319.515000px;}
.yba{bottom:319.566000px;}
.ya7{bottom:323.422500px;}
.y100{bottom:324.655500px;}
.ye2{bottom:325.476000px;}
.yf1{bottom:325.492500px;}
.y145{bottom:325.927500px;}
.y127{bottom:326.292000px;}
.y11{bottom:332.253000px;}
.y49{bottom:335.011500px;}
.y8{bottom:361.911000px;}
.yf{bottom:398.220000px;}
.h5{height:26.970931px;}
.h4{height:34.096088px;}
.h9{height:34.905290px;}
.h6{height:34.911290px;}
.h7{height:41.586163px;}
.h8{height:45.418410px;}
.ha{height:45.424410px;}
.hb{height:49.156405px;}
.h3{height:55.636410px;}
.h2{height:71.702308px;}
.h1{height:408.000000px;}
.h0{height:408.189000px;}
.w0{width:544.252500px;}
.w1{width:544.500000px;}
.x0{left:0.000000px;}
.x16{left:11.290500px;}
.x7{left:12.756000px;}
.x11{left:16.258500px;}
.x12{left:29.665500px;}
.xe{left:30.900000px;}
.x8{left:35.770500px;}
.xd{left:41.134500px;}
.x2{left:47.167500px;}
.xb{left:48.987000px;}
.x13{left:56.856000px;}
.xc{left:65.526000px;}
.x14{left:73.899000px;}
.xf{left:85.224000px;}
.x9{left:93.289500px;}
.x17{left:114.438000px;}
.x19{left:116.916000px;}
.x15{left:141.295500px;}
.x4{left:153.493500px;}
.x10{left:161.655000px;}
.x18{left:166.761000px;}
.xa{left:182.974500px;}
.x5{left:189.034500px;}
.x1{left:191.670000px;}
.x3{left:196.956000px;}
.x6{left:206.230500px;}
@media print{
.v2{vertical-align:-9.082667pt;}
.v1{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:2.656426pt;}
.ls3{letter-spacing:16.354714pt;}
.ls4{letter-spacing:19.258198pt;}
.ls6{letter-spacing:19.316380pt;}
.ls1{letter-spacing:29.091205pt;}
.ls2{letter-spacing:45.595460pt;}
.ws4{word-spacing:-36.450825pt;}
.ws13{word-spacing:-28.904751pt;}
.ws11{word-spacing:-26.561620pt;}
.ws15{word-spacing:-24.570327pt;}
.ws31{word-spacing:-19.304743pt;}
.ws2c{word-spacing:-16.512014pt;}
.ws19{word-spacing:-16.392970pt;}
.ws2b{word-spacing:-14.882921pt;}
.ws27{word-spacing:-14.592012pt;}
.wsd{word-spacing:-12.196183pt;}
.ws0{word-spacing:-12.119670pt;}
.ws32{word-spacing:-10.693827pt;}
.ws33{word-spacing:-10.519281pt;}
.ws28{word-spacing:-10.402918pt;}
.ws35{word-spacing:-10.286554pt;}
.ws1a{word-spacing:-10.196389pt;}
.ws36{word-spacing:-10.170190pt;}
.ws34{word-spacing:-10.112008pt;}
.ws2d{word-spacing:-9.937463pt;}
.ws1{word-spacing:-9.646553pt;}
.wsf{word-spacing:-9.588372pt;}
.ws2e{word-spacing:-9.219850pt;}
.ws2f{word-spacing:-9.172029pt;}
.ws10{word-spacing:-8.868042pt;}
.ws30{word-spacing:-8.814908pt;}
.ws26{word-spacing:-8.366552pt;}
.ws12{word-spacing:-8.215613pt;}
.ws14{word-spacing:-8.167793pt;}
.ws25{word-spacing:-7.552006pt;}
.ws3{word-spacing:-6.248585pt;}
.wsb{word-spacing:-6.216704pt;}
.ws29{word-spacing:-5.981096pt;}
.ws21{word-spacing:-5.457459pt;}
.ws2a{word-spacing:-5.399277pt;}
.ws24{word-spacing:-3.479276pt;}
.ws22{word-spacing:-3.362912pt;}
.ws1c{word-spacing:-0.076513pt;}
.ws7{word-spacing:-0.058182pt;}
.ws20{word-spacing:-0.047821pt;}
.ws1b{word-spacing:-0.031881pt;}
.wsa{word-spacing:0.000000pt;}
.ws1e{word-spacing:12.178364pt;}
.ws17{word-spacing:12.433408pt;}
.wsc{word-spacing:12.943497pt;}
.ws2{word-spacing:15.005042pt;}
.ws23{word-spacing:19.200016pt;}
.ws6{word-spacing:19.258198pt;}
.ws5{word-spacing:20.130926pt;}
.ws9{word-spacing:21.294563pt;}
.ws1d{word-spacing:24.178129pt;}
.ws18{word-spacing:24.254642pt;}
.wse{word-spacing:25.478851pt;}
.ws1f{word-spacing:29.227991pt;}
.ws16{word-spacing:29.610557pt;}
.ws8{word-spacing:61.044415pt;}
._a{margin-left:-6.044532pt;}
._2{margin-left:-4.829095pt;}
._f{margin-left:-3.574619pt;}
._9{margin-left:-2.560795pt;}
._1{margin-left:-1.570910pt;}
._5{width:1.052058pt;}
._0{width:1.989340pt;}
._16{width:3.363392pt;}
._15{width:4.829095pt;}
._b{width:8.177357pt;}
._14{width:9.658190pt;}
._11{width:12.089065pt;}
._e{width:16.689459pt;}
._18{width:18.739345pt;}
._8{width:19.777051pt;}
._12{width:21.352745pt;}
._13{width:24.087293pt;}
._10{width:25.249312pt;}
._d{width:27.034692pt;}
._17{width:29.440025pt;}
._6{width:30.541551pt;}
._c{width:76.599639pt;}
._4{width:88.418306pt;}
._7{width:89.949166pt;}
._3{width:244.594301pt;}
.fs3{font-size:31.880533pt;}
.fs2{font-size:42.507200pt;}
.fs5{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:3.544000pt;}
.y1f{bottom:16.833333pt;}
.y41{bottom:31.445333pt;}
.yff{bottom:34.548000pt;}
.y10e{bottom:35.664000pt;}
.yf0{bottom:36.394667pt;}
.y152{bottom:36.794667pt;}
.y135{bottom:37.118667pt;}
.yd3{bottom:44.796000pt;}
.y8d{bottom:46.056000pt;}
.y143{bottom:46.504000pt;}
.ye1{bottom:46.988000pt;}
.yfe{bottom:52.613333pt;}
.y10d{bottom:53.729333pt;}
.yef{bottom:54.460000pt;}
.y151{bottom:54.861333pt;}
.y134{bottom:55.184000pt;}
.y16b{bottom:58.073333pt;}
.y11b{bottom:58.216000pt;}
.yd2{bottom:62.862667pt;}
.y142{bottom:64.569333pt;}
.ye0{bottom:65.053333pt;}
.ye{bottom:68.448000pt;}
.y15e{bottom:69.313333pt;}
.yfd{bottom:70.680000pt;}
.y10c{bottom:71.796000pt;}
.yee{bottom:72.525333pt;}
.y150{bottom:72.926667pt;}
.y133{bottom:73.249333pt;}
.y16a{bottom:76.138667pt;}
.y11a{bottom:76.281333pt;}
.y126{bottom:79.506667pt;}
.yd1{bottom:80.928000pt;}
.y141{bottom:82.634667pt;}
.ydf{bottom:83.120000pt;}
.y9c{bottom:83.432000pt;}
.yb2{bottom:87.025333pt;}
.y15d{bottom:87.378667pt;}
.yfc{bottom:88.745333pt;}
.y10b{bottom:89.861333pt;}
.yed{bottom:90.590667pt;}
.y14f{bottom:90.992000pt;}
.y132{bottom:91.314667pt;}
.y175{bottom:93.241333pt;}
.y169{bottom:94.204000pt;}
.y119{bottom:94.346667pt;}
.y125{bottom:97.572000pt;}
.yd0{bottom:98.993333pt;}
.y140{bottom:100.700000pt;}
.yde{bottom:101.185333pt;}
.y35{bottom:102.309333pt;}
.yb1{bottom:105.090667pt;}
.y15c{bottom:105.445333pt;}
.y9b{bottom:105.482667pt;}
.y10a{bottom:107.926667pt;}
.yd{bottom:108.192000pt;}
.yec{bottom:108.656000pt;}
.yfb{bottom:108.670667pt;}
.y14e{bottom:109.057333pt;}
.y131{bottom:109.381333pt;}
.y40{bottom:109.493333pt;}
.y71{bottom:109.892000pt;}
.y174{bottom:111.306667pt;}
.y168{bottom:112.269333pt;}
.y118{bottom:112.412000pt;}
.y48{bottom:112.748000pt;}
.y124{bottom:115.637333pt;}
.ycf{bottom:117.058667pt;}
.y2d{bottom:117.277333pt;}
.yc5{bottom:117.930667pt;}
.y13f{bottom:118.766667pt;}
.ydd{bottom:119.250667pt;}
.y8c{bottom:119.402667pt;}
.y34{bottom:120.374667pt;}
.y1e{bottom:120.944000pt;}
.y7c{bottom:122.736000pt;}
.yb0{bottom:123.156000pt;}
.y15b{bottom:123.510667pt;}
.y9a{bottom:123.548000pt;}
.y6{bottom:123.976000pt;}
.y3f{bottom:125.434667pt;}
.y109{bottom:125.992000pt;}
.yeb{bottom:126.722667pt;}
.yfa{bottom:126.736000pt;}
.y14d{bottom:127.122667pt;}
.y130{bottom:127.446667pt;}
.y70{bottom:127.957333pt;}
.y25{bottom:128.770667pt;}
.y173{bottom:129.372000pt;}
.y167{bottom:130.336000pt;}
.y117{bottom:130.478667pt;}
.y47{bottom:130.813333pt;}
.y68{bottom:131.225333pt;}
.y56{bottom:131.624000pt;}
.y123{bottom:133.704000pt;}
.yce{bottom:135.124000pt;}
.yc4{bottom:135.996000pt;}
.y13e{bottom:136.832000pt;}
.y4f{bottom:137.218667pt;}
.ydc{bottom:137.316000pt;}
.y8b{bottom:137.469333pt;}
.y2c{bottom:137.614667pt;}
.yb9{bottom:138.240000pt;}
.yaf{bottom:141.222667pt;}
.y3e{bottom:141.374667pt;}
.y15a{bottom:141.576000pt;}
.y99{bottom:141.613333pt;}
.y5c{bottom:142.410667pt;}
.y33{bottom:142.425333pt;}
.y1d{bottom:142.994667pt;}
.y108{bottom:144.057333pt;}
.y7b{bottom:144.786667pt;}
.yea{bottom:144.788000pt;}
.yf9{bottom:144.801333pt;}
.y14c{bottom:145.189333pt;}
.y12f{bottom:145.512000pt;}
.y67{bottom:147.165333pt;}
.ya1{bottom:147.405333pt;}
.y172{bottom:147.438667pt;}
.yc{bottom:147.936000pt;}
.y166{bottom:148.401333pt;}
.y116{bottom:148.544000pt;}
.y24{bottom:149.106667pt;}
.y61{bottom:149.796000pt;}
.y6f{bottom:150.008000pt;}
.y122{bottom:151.769333pt;}
.y46{bottom:152.864000pt;}
.ycd{bottom:153.190667pt;}
.yc3{bottom:154.061333pt;}
.yb8{bottom:154.180000pt;}
.y13d{bottom:154.897333pt;}
.ydb{bottom:155.381333pt;}
.y76{bottom:155.641333pt;}
.y55{bottom:155.668000pt;}
.y5{bottom:157.173333pt;}
.y3d{bottom:157.314667pt;}
.y2b{bottom:157.394667pt;}
.y4e{bottom:159.269333pt;}
.yae{bottom:159.288000pt;}
.y8a{bottom:159.520000pt;}
.y159{bottom:159.641333pt;}
.y91{bottom:160.636000pt;}
.y107{bottom:162.124000pt;}
.ye9{bottom:162.853333pt;}
.yf8{bottom:162.866667pt;}
.y66{bottom:163.106667pt;}
.y14b{bottom:163.254667pt;}
.y12e{bottom:163.577333pt;}
.y98{bottom:163.664000pt;}
.y5b{bottom:164.461333pt;}
.y32{bottom:164.476000pt;}
.y1c{bottom:165.045333pt;}
.y171{bottom:165.504000pt;}
.y165{bottom:166.466667pt;}
.y115{bottom:166.609333pt;}
.y7a{bottom:166.837333pt;}
.y60{bottom:167.861333pt;}
.y6e{bottom:168.074667pt;}
.y23{bottom:168.886667pt;}
.ya0{bottom:169.456000pt;}
.y121{bottom:169.834667pt;}
.yb7{bottom:170.120000pt;}
.ycc{bottom:171.256000pt;}
.y54{bottom:171.608000pt;}
.y84{bottom:172.960000pt;}
.y13c{bottom:172.962667pt;}
.yda{bottom:173.448000pt;}
.y75{bottom:173.706667pt;}
.y3c{bottom:173.918667pt;}
.y17{bottom:174.588000pt;}
.y45{bottom:174.914667pt;}
.y2a{bottom:175.460000pt;}
.yc2{bottom:176.112000pt;}
.y4d{bottom:177.334667pt;}
.yad{bottom:177.353333pt;}
.y158{bottom:177.706667pt;}
.y90{bottom:178.701333pt;}
.y65{bottom:179.710667pt;}
.y106{bottom:180.189333pt;}
.y7e{bottom:180.837333pt;}
.ye8{bottom:180.918667pt;}
.yf7{bottom:180.933333pt;}
.y14a{bottom:181.320000pt;}
.y89{bottom:181.570667pt;}
.y12d{bottom:181.642667pt;}
.y31{bottom:182.541333pt;}
.y1b{bottom:183.110667pt;}
.y170{bottom:183.569333pt;}
.y164{bottom:184.532000pt;}
.y114{bottom:184.674667pt;}
.y97{bottom:185.714667pt;}
.y5a{bottom:186.512000pt;}
.yb6{bottom:186.724000pt;}
.y53{bottom:187.548000pt;}
.yb{bottom:187.680000pt;}
.y120{bottom:187.900000pt;}
.y79{bottom:188.888000pt;}
.y22{bottom:189.222667pt;}
.ycb{bottom:189.321333pt;}
.y3b{bottom:189.858667pt;}
.y5f{bottom:189.912000pt;}
.y6d{bottom:190.125333pt;}
.y4{bottom:190.145333pt;}
.y83{bottom:191.025333pt;}
.y13b{bottom:191.028000pt;}
.y16{bottom:191.193333pt;}
.y9f{bottom:191.506667pt;}
.yd9{bottom:191.513333pt;}
.y29{bottom:193.525333pt;}
.y36{bottom:194.072000pt;}
.y10{bottom:194.076000pt;}
.yc1{bottom:194.178667pt;}
.yac{bottom:195.418667pt;}
.y74{bottom:195.757333pt;}
.y157{bottom:195.773333pt;}
.y44{bottom:196.965333pt;}
.y105{bottom:198.254667pt;}
.ya6{bottom:198.937333pt;}
.ye7{bottom:198.984000pt;}
.yf6{bottom:198.998667pt;}
.y4c{bottom:199.385333pt;}
.y64{bottom:199.636000pt;}
.y12c{bottom:199.709333pt;}
.ybe{bottom:199.841333pt;}
.y8f{bottom:200.752000pt;}
.y16f{bottom:201.634667pt;}
.y163{bottom:202.597333pt;}
.y113{bottom:202.740000pt;}
.y88{bottom:203.621333pt;}
.y96{bottom:203.780000pt;}
.y52{bottom:204.152000pt;}
.y59{bottom:204.577333pt;}
.y30{bottom:204.592000pt;}
.y7d{bottom:204.748000pt;}
.y1a{bottom:205.161333pt;}
.y11f{bottom:205.965333pt;}
.yca{bottom:207.386667pt;}
.y6c{bottom:208.190667pt;}
.yb5{bottom:208.642667pt;}
.y21{bottom:209.002667pt;}
.y13a{bottom:209.094667pt;}
.yd8{bottom:209.578667pt;}
.y3a{bottom:209.784000pt;}
.y78{bottom:210.938667pt;}
.y15{bottom:211.118667pt;}
.y5e{bottom:211.962667pt;}
.y82{bottom:213.076000pt;}
.yab{bottom:213.484000pt;}
.y9e{bottom:213.557333pt;}
.y73{bottom:213.822667pt;}
.y156{bottom:213.838667pt;}
.y28{bottom:213.861333pt;}
.yc0{bottom:216.229333pt;}
.y104{bottom:216.320000pt;}
.ya5{bottom:217.002667pt;}
.ye6{bottom:217.050667pt;}
.yf5{bottom:217.064000pt;}
.y149{bottom:217.450667pt;}
.y12b{bottom:217.774667pt;}
.ybd{bottom:217.906667pt;}
.y43{bottom:219.016000pt;}
.y16e{bottom:219.700000pt;}
.y162{bottom:220.664000pt;}
.y112{bottom:220.806667pt;}
.y4b{bottom:221.436000pt;}
.y63{bottom:221.686667pt;}
.y58{bottom:222.642667pt;}
.y8e{bottom:222.802667pt;}
.y11e{bottom:224.032000pt;}
.y51{bottom:224.077333pt;}
.yb4{bottom:224.582667pt;}
.yc9{bottom:225.452000pt;}
.y87{bottom:225.672000pt;}
.y95{bottom:225.830667pt;}
.y6b{bottom:226.256000pt;}
.y2f{bottom:226.642667pt;}
.y139{bottom:227.160000pt;}
.y19{bottom:227.212000pt;}
.ya{bottom:227.425333pt;}
.yd7{bottom:227.644000pt;}
.y39{bottom:227.850667pt;}
.y20{bottom:229.338667pt;}
.y5d{bottom:230.028000pt;}
.yaa{bottom:231.550667pt;}
.y9d{bottom:231.622667pt;}
.y155{bottom:231.904000pt;}
.y77{bottom:232.989333pt;}
.y14{bottom:233.169333pt;}
.y27{bottom:233.641333pt;}
.ybf{bottom:234.294667pt;}
.y103{bottom:234.385333pt;}
.ye5{bottom:235.116000pt;}
.y81{bottom:235.126667pt;}
.yf4{bottom:235.129333pt;}
.y148{bottom:235.517333pt;}
.y12a{bottom:235.840000pt;}
.y72{bottom:235.873333pt;}
.y42{bottom:237.081333pt;}
.y16d{bottom:237.766667pt;}
.y161{bottom:238.729333pt;}
.y111{bottom:238.872000pt;}
.ybc{bottom:239.957333pt;}
.y3{bottom:240.622667pt;}
.ya4{bottom:241.046667pt;}
.yb3{bottom:241.186667pt;}
.y11d{bottom:242.097333pt;}
.y50{bottom:242.142667pt;}
.yc8{bottom:243.518667pt;}
.y62{bottom:243.737333pt;}
.y94{bottom:243.896000pt;}
.y57{bottom:244.693333pt;}
.y2e{bottom:244.709333pt;}
.y138{bottom:245.225333pt;}
.yd6{bottom:245.709333pt;}
.y86{bottom:247.722667pt;}
.y6a{bottom:248.306667pt;}
.y18{bottom:249.262667pt;}
.y38{bottom:249.900000pt;}
.y154{bottom:249.969333pt;}
.ya9{bottom:251.356000pt;}
.y102{bottom:252.450667pt;}
.y144{bottom:252.452000pt;}
.ye4{bottom:253.181333pt;}
.yf3{bottom:253.194667pt;}
.y147{bottom:253.582667pt;}
.y129{bottom:253.905333pt;}
.y26{bottom:253.977333pt;}
.y13{bottom:255.220000pt;}
.y16c{bottom:255.832000pt;}
.y160{bottom:256.794667pt;}
.y110{bottom:256.937333pt;}
.ya3{bottom:256.986667pt;}
.y80{bottom:257.177333pt;}
.y2{bottom:258.688000pt;}
.y11c{bottom:260.162667pt;}
.yc7{bottom:261.584000pt;}
.ybb{bottom:262.008000pt;}
.y137{bottom:263.290667pt;}
.yd5{bottom:263.776000pt;}
.y93{bottom:265.946667pt;}
.y69{bottom:266.372000pt;}
.y9{bottom:267.169333pt;}
.y37{bottom:267.966667pt;}
.y153{bottom:268.034667pt;}
.ya8{bottom:269.421333pt;}
.y85{bottom:269.773333pt;}
.y101{bottom:270.517333pt;}
.ye3{bottom:271.246667pt;}
.yf2{bottom:271.261333pt;}
.y146{bottom:271.648000pt;}
.y128{bottom:271.970667pt;}
.ya2{bottom:273.590667pt;}
.y4a{bottom:273.877333pt;}
.y15f{bottom:274.860000pt;}
.y10f{bottom:275.002667pt;}
.y12{bottom:277.269333pt;}
.y7f{bottom:279.228000pt;}
.yc6{bottom:279.649333pt;}
.y1{bottom:281.310667pt;}
.y136{bottom:281.356000pt;}
.yd4{bottom:281.841333pt;}
.y92{bottom:284.013333pt;}
.yba{bottom:284.058667pt;}
.ya7{bottom:287.486667pt;}
.y100{bottom:288.582667pt;}
.ye2{bottom:289.312000pt;}
.yf1{bottom:289.326667pt;}
.y145{bottom:289.713333pt;}
.y127{bottom:290.037333pt;}
.y11{bottom:295.336000pt;}
.y49{bottom:297.788000pt;}
.y8{bottom:321.698667pt;}
.yf{bottom:353.973333pt;}
.h5{height:23.974161pt;}
.h4{height:30.307634pt;}
.h9{height:31.026925pt;}
.h6{height:31.032258pt;}
.h7{height:36.965478pt;}
.h8{height:40.371920pt;}
.ha{height:40.377253pt;}
.hb{height:43.694582pt;}
.h3{height:49.454587pt;}
.h2{height:63.735385pt;}
.h1{height:362.666667pt;}
.h0{height:362.834667pt;}
.w0{width:483.780000pt;}
.w1{width:484.000000pt;}
.x0{left:0.000000pt;}
.x16{left:10.036000pt;}
.x7{left:11.338667pt;}
.x11{left:14.452000pt;}
.x12{left:26.369333pt;}
.xe{left:27.466667pt;}
.x8{left:31.796000pt;}
.xd{left:36.564000pt;}
.x2{left:41.926667pt;}
.xb{left:43.544000pt;}
.x13{left:50.538667pt;}
.xc{left:58.245333pt;}
.x14{left:65.688000pt;}
.xf{left:75.754667pt;}
.x9{left:82.924000pt;}
.x17{left:101.722667pt;}
.x19{left:103.925333pt;}
.x15{left:125.596000pt;}
.x4{left:136.438667pt;}
.x10{left:143.693333pt;}
.x18{left:148.232000pt;}
.xa{left:162.644000pt;}
.x5{left:168.030667pt;}
.x1{left:170.373333pt;}
.x3{left:175.072000pt;}
.x6{left:183.316000pt;}
}




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