
    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_f28ae0b99615b5c6213ae944.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.037000;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_c2211b7a747ef96d1d3108e5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.823730;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_191aa157c59605ee3e054356.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_b7406dbf10d1681a753e5e71.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_2ed468e998ec9eacfc264c17.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_5d1ab5bd05c8449fe98ab785.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.186035;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_6c8588595af1065a1840f1aa.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.006836;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_9051a874c8bed3f92b188e78.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739000;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_77d43f37fb6aeb1acde8360a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.833000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_381f908527514b56b36991ef.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.682617;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_904d992a19a22b25d7a2cdd2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.973633;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_825ae4163dd593a215be4071.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.963379;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_a1f46094ab62d511b8e78dff.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_a71ed731846851388d134fa8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.746094;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_4442bf6376872bc88e6580b5.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(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);}
.v4{vertical-align:-63.863183px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.638179px;}
.v2{vertical-align:32.166712px;}
.v5{vertical-align:35.067979px;}
.v1{vertical-align:39.366721px;}
.ls0{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.003270px;}
.ls16{letter-spacing:0.003360px;}
.ls19{letter-spacing:0.003450px;}
.ls1b{letter-spacing:0.003540px;}
.ls1c{letter-spacing:0.003585px;}
.ls6{letter-spacing:0.019652px;}
.ls11{letter-spacing:0.055322px;}
.ls10{letter-spacing:0.065656px;}
.lsf{letter-spacing:0.065701px;}
.ls1a{letter-spacing:0.502050px;}
.ls17{letter-spacing:0.502095px;}
.lsc{letter-spacing:107.960702px;}
.ls8{letter-spacing:107.966423px;}
.ls9{letter-spacing:107.969306px;}
.ls4{letter-spacing:107.972021px;}
.ls5{letter-spacing:107.972030px;}
.lse{letter-spacing:107.972093px;}
.ls15{letter-spacing:107.974911px;}
.lsd{letter-spacing:107.986217px;}
.ls14{letter-spacing:107.986253px;}
.ls2{letter-spacing:107.986262px;}
.lsb{letter-spacing:107.992269px;}
.lsa{letter-spacing:107.997500px;}
.ls7{letter-spacing:108.000273px;}
.ls13{letter-spacing:108.000354px;}
.ls12{letter-spacing:108.000363px;}
.ls3{letter-spacing:108.000408px;}
.ls1{letter-spacing:108.000426px;}
.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;}
}
.ws8{word-spacing:-64.800002px;}
.ws4{word-spacing:-41.220001px;}
.ws10{word-spacing:-34.350000px;}
.ws5{word-spacing:-27.972001px;}
.ws0{word-spacing:-27.480000px;}
.wsf{word-spacing:-26.418000px;}
.ws11{word-spacing:-23.776203px;}
.wsb{word-spacing:-23.268000px;}
.ws2{word-spacing:-21.756000px;}
.wsa{word-spacing:-20.916000px;}
.ws9{word-spacing:-20.748000px;}
.ws19{word-spacing:-19.236000px;}
.ws18{word-spacing:-17.094001px;}
.ws3{word-spacing:-13.740000px;}
.wse{word-spacing:-0.102000px;}
.ws1{word-spacing:0.000000px;}
.ws13{word-spacing:136.132187px;}
.ws15{word-spacing:136.180444px;}
.ws17{word-spacing:136.221218px;}
.ws12{word-spacing:232.993749px;}
.ws16{word-spacing:363.202480px;}
.ws14{word-spacing:387.203726px;}
.ws7{word-spacing:443.591591px;}
.wsd{word-spacing:671.044248px;}
.ws6{word-spacing:706.345384px;}
.wsc{word-spacing:714.220541px;}
._9{margin-left:-11.340000px;}
._e{margin-left:-10.080315px;}
._18{margin-left:-5.520000px;}
._7{margin-left:-3.600000px;}
._0{margin-left:-2.587688px;}
._1{margin-left:-1.554000px;}
._3{width:1.142453px;}
._8{width:2.375647px;}
._17{width:58.867543px;}
._5{width:127.491052px;}
._14{width:266.249884px;}
._f{width:346.334789px;}
._10{width:406.601370px;}
._16{width:475.745632px;}
._13{width:497.717469px;}
._15{width:499.708386px;}
._11{width:509.527650px;}
._2{width:534.937882px;}
._a{width:569.594785px;}
._d{width:596.574731px;}
._12{width:676.947002px;}
._c{width:728.101384px;}
._b{width:961.038381px;}
._6{width:3445.863077px;}
._4{width:3572.616926px;}
.fcf{color:rgb(102,102,102);}
.fce{color:rgb(36,41,47);}
.fcd{color:rgb(255,51,147);}
.fc0{color:rgb(0,144,211);}
.fc5{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc4{color:rgb(0,0,0);}
.fc6{color:rgb(67,67,67);}
.fc9{color:rgb(183,183,183);}
.fc1{color:rgb(12,85,137);}
.fc7{color:rgb(158,158,158);}
.fc3{color:rgb(53,53,54);}
.fc8{color:rgb(61,61,61);}
.fca{color:rgb(0,0,150);}
.fcb{color:rgb(51,153,255);}
.fcc{color:rgb(0,153,153);}
.fs2{font-size:48.000003px;}
.fs6{font-size:60.000000px;}
.fsb{font-size:66.000004px;}
.fsd{font-size:72.000002px;}
.fs10{font-size:77.699999px;}
.fs9{font-size:78.000005px;}
.fs7{font-size:84.000000px;}
.fs15{font-size:87.000006px;}
.fs14{font-size:88.800006px;}
.fs8{font-size:90.000003px;}
.fs1a{font-size:91.800012px;}
.fs5{font-size:96.000006px;}
.fs12{font-size:99.885018px;}
.fse{font-size:99.899999px;}
.fs16{font-size:102.000000px;}
.fsf{font-size:105.450006px;}
.fs4{font-size:108.000003px;}
.fs13{font-size:112.942511px;}
.fs1{font-size:120.000001px;}
.fs1c{font-size:126.000004px;}
.fs11{font-size:144.000005px;}
.fs19{font-size:149.999999px;}
.fsc{font-size:162.000005px;}
.fsa{font-size:167.999999px;}
.fs18{font-size:179.999826px;}
.fs3{font-size:180.000006px;}
.fs17{font-size:193.333205px;}
.fs0{font-size:222.000001px;}
.fs1b{font-size:276.000003px;}
.yf5{bottom:-1.128805px;}
.y0{bottom:0.000000px;}
.y47{bottom:8.074221px;}
.y145{bottom:10.082244px;}
.y17c{bottom:10.399935px;}
.y26{bottom:13.022700px;}
.ycf{bottom:14.413784px;}
.yb4{bottom:17.806506px;}
.y1f{bottom:18.240565px;}
.y38{bottom:18.422700px;}
.y116{bottom:19.082211px;}
.y161{bottom:19.315216px;}
.y21{bottom:20.040567px;}
.y91{bottom:21.177622px;}
.y17f{bottom:22.999931px;}
.yf4{bottom:24.071196px;}
.ycb{bottom:26.806506px;}
.y2e{bottom:27.240565px;}
.y2f{bottom:27.422700px;}
.y24{bottom:28.082211px;}
.y12{bottom:28.082245px;}
.y54{bottom:28.421801px;}
.y3f{bottom:29.086071px;}
.y17b{bottom:30.199932px;}
.y11e{bottom:34.663324px;}
.y25{bottom:36.422700px;}
.y160{bottom:39.115183px;}
.y5c{bottom:41.622850px;}
.y17e{bottom:42.799932px;}
.y13a{bottom:44.048007px;}
.y20{bottom:45.240566px;}
.y7b{bottom:46.669709px;}
.yae{bottom:47.730335px;}
.y12c{bottom:48.713002px;}
.yf3{bottom:49.271230px;}
.y17a{bottom:49.999932px;}
.y185{bottom:53.208887px;}
.yd1{bottom:55.516155px;}
.y15f{bottom:58.915161px;}
.y17d{bottom:62.599933px;}
.y118{bottom:64.059819px;}
.ya8{bottom:66.564714px;}
.y5b{bottom:66.822856px;}
.y179{bottom:69.799933px;}
.yad{bottom:72.930335px;}
.yf2{bottom:74.471265px;}
.y11d{bottom:77.863326px;}
.y184{bottom:78.408885px;}
.y15e{bottom:78.715128px;}
.y139{bottom:82.604008px;}
.y9d{bottom:83.847932px;}
.y89{bottom:86.308352px;}
.y178{bottom:89.599933px;}
.y115{bottom:90.624201px;}
.ydd{bottom:91.516156px;}
.y5a{bottom:92.022851px;}
.y7a{bottom:93.464986px;}
.yc8{bottom:96.196754px;}
.y15d{bottom:98.515106px;}
.yf1{bottom:99.671288px;}
.y13c{bottom:100.943365px;}
.ya7{bottom:101.844693px;}
.y117{bottom:102.129814px;}
.y180{bottom:103.729959px;}
.yc2{bottom:106.143813px;}
.yf{bottom:108.143365px;}
.y109{bottom:108.550618px;}
.y34{bottom:109.699911px;}
.y6{bottom:110.475592px;}
.y134{bottom:117.143366px;}
.y59{bottom:117.222849px;}
.y15c{bottom:118.315073px;}
.y9c{bottom:118.812922px;}
.y65{bottom:118.943427px;}
.y138{bottom:121.160006px;}
.yf0{bottom:124.871311px;}
.y46{bottom:126.143366px;}
.y11b{bottom:127.408788px;}
.y11c{bottom:130.063327px;}
.y114{bottom:131.124202px;}
.yc7{bottom:135.346755px;}
.ya6{bottom:137.124671px;}
.y15b{bottom:138.115051px;}
.yc1{bottom:140.775814px;}
.y88{bottom:144.268376px;}
.y74{bottom:144.990030px;}
.y13b{bottom:149.543367px;}
.yef{bottom:150.071346px;}
.y9b{bottom:153.777912px;}
.y1b{bottom:154.009859px;}
.y64{bottom:154.223406px;}
.ydc{bottom:154.516158px;}
.ye{bottom:156.743389px;}
.y188{bottom:156.979381px;}
.y15a{bottom:157.915018px;}
.y137{bottom:159.716008px;}
.y2d{bottom:164.303373px;}
.y133{bottom:165.743390px;}
.y177{bottom:166.915019px;}
.yac{bottom:168.330338px;}
.y108{bottom:169.551596px;}
.y140{bottom:170.159861px;}
.y113{bottom:171.624204px;}
.ya5{bottom:172.404672px;}
.y87{bottom:173.248355px;}
.y4e{bottom:174.203418px;}
.yc6{bottom:174.496767px;}
.y45{bottom:174.743390px;}
.yee{bottom:175.271381px;}
.yc0{bottom:175.407804px;}
.yd0{bottom:177.016159px;}
.y159{bottom:177.714996px;}
.yb7{bottom:178.703418px;}
.y187{bottom:182.179375px;}
.y73{bottom:182.250020px;}
.y6b{bottom:185.018221px;}
.y176{bottom:186.714997px;}
.y126{bottom:187.703418px;}
.y9a{bottom:188.742890px;}
.y63{bottom:189.503373px;}
.y57{bottom:193.103368px;}
.y53{bottom:193.103379px;}
.yab{bottom:193.530334px;}
.y158{bottom:197.514975px;}
.yed{bottom:200.471404px;}
.y86{bottom:200.968356px;}
.y103{bottom:201.180944px;}
.y5{bottom:202.091326px;}
.y2c{bottom:202.103374px;}
.y1a{bottom:202.609883px;}
.yd{bottom:202.823402px;}
.y175{bottom:206.514975px;}
.y186{bottom:207.379373px;}
.ya4{bottom:207.684685px;}
.ybf{bottom:210.039805px;}
.y4d{bottom:212.003397px;}
.y112{bottom:212.124216px;}
.yda{bottom:213.016160px;}
.yc5{bottom:213.646762px;}
.y132{bottom:214.343391px;}
.y6a{bottom:215.798220px;}
.y107{bottom:216.345704px;}
.yb6{bottom:216.503397px;}
.y13f{bottom:216.955160px;}
.y157{bottom:217.314942px;}
.yaa{bottom:218.730329px;}
.y44{bottom:223.343391px;}
.y62{bottom:224.783375px;}
.y125{bottom:225.503397px;}
.yec{bottom:225.671427px;}
.y85{bottom:225.808357px;}
.y174{bottom:226.314942px;}
.y102{bottom:226.380978px;}
.y99{bottom:228.369892px;}
.y52{bottom:230.903369px;}
.yb0{bottom:230.903392px;}
.y4{bottom:233.771323px;}
.y56{bottom:235.943369px;}
.y156{bottom:237.114908px;}
.y106{bottom:241.545703px;}
.ybe{bottom:244.671806px;}
.y2b{bottom:244.943375px;}
.ya9{bottom:245.370330px;}
.yc{bottom:246.023392px;}
.y173{bottom:246.114909px;}
.ya3{bottom:247.284686px;}
.y84{bottom:250.648357px;}
.yeb{bottom:250.871462px;}
.y19{bottom:251.209884px;}
.y101{bottom:251.581001px;}
.y79{bottom:251.880358px;}
.y3{bottom:252.491321px;}
.y111{bottom:252.624217px;}
.yc4{bottom:252.796759px;}
.y4c{bottom:254.843398px;}
.yb3{bottom:256.698653px;}
.y155{bottom:256.914887px;}
.yb5{bottom:259.343398px;}
.y61{bottom:260.063376px;}
.y3e{bottom:262.943393px;}
.y13e{bottom:263.750436px;}
.y172{bottom:265.914887px;}
.y124{bottom:268.343399px;}
.yaf{bottom:268.703382px;}
.y43{bottom:271.943393px;}
.y98{bottom:273.324882px;}
.y51{bottom:273.743371px;}
.y83{bottom:275.488369px;}
.ybb{bottom:275.543388px;}
.yea{bottom:276.071485px;}
.y154{bottom:276.714865px;}
.y100{bottom:276.781002px;}
.ybd{bottom:279.303796px;}
.y55{bottom:279.503371px;}
.ydb{bottom:280.516162px;}
.y131{bottom:280.583421px;}
.y171{bottom:285.714865px;}
.y2a{bottom:288.503377px;}
.y18a{bottom:290.179367px;}
.yb{bottom:291.743394px;}
.yc3{bottom:291.946760px;}
.ya2{bottom:292.644676px;}
.y110{bottom:293.124219px;}
.yd5{bottom:295.141172px;}
.y153{bottom:296.514865px;}
.y4b{bottom:298.403377px;}
.y78{bottom:298.675624px;}
.y60{bottom:299.663377px;}
.y18{bottom:299.809886px;}
.yb2{bottom:299.898654px;}
.y82{bottom:300.328370px;}
.ye9{bottom:301.271486px;}
.yff{bottom:301.980992px;}
.y105{bottom:302.546681px;}
.y8f{bottom:304.497885px;}
.y170{bottom:305.514866px;}
.y69{bottom:307.943400px;}
.y3d{bottom:311.543377px;}
.y189{bottom:315.379365px;}
.y152{bottom:316.314877px;}
.y123{bottom:316.943400px;}
.ybc{bottom:317.557172px;}
.y97{bottom:318.279883px;}
.yd4{bottom:319.891175px;}
.y42{bottom:320.543378px;}
.yba{bottom:321.623378px;}
.y50{bottom:322.343372px;}
.y13d{bottom:324.272171px;}
.y16f{bottom:325.314877px;}
.y29{bottom:326.303389px;}
.y81{bottom:326.428364px;}
.ye8{bottom:326.471475px;}
.y130{bottom:326.483412px;}
.yfe{bottom:327.180993px;}
.y93{bottom:328.103384px;}
.y8e{bottom:329.337885px;}
.y3a{bottom:333.503378px;}
.y10f{bottom:333.624220px;}
.y4a{bottom:334.943378px;}
.y151{bottom:336.114889px;}
.ya{bottom:337.823384px;}
.ya1{bottom:338.004678px;}
.yd9{bottom:343.516175px;}
.y5f{bottom:345.023378px;}
.y16e{bottom:345.114889px;}
.y77{bottom:345.469721px;}
.y17{bottom:348.409870px;}
.y36{bottom:351.143373px;}
.ye7{bottom:351.671476px;}
.yfd{bottom:352.380982px;}
.y80{bottom:355.408361px;}
.y8d{bottom:355.437886px;}
.y150{bottom:355.914890px;}
.y68{bottom:356.543384px;}
.y31{bottom:360.143373px;}
.y183{bottom:363.676530px;}
.y28{bottom:364.103390px;}
.y96{bottom:364.400385px;}
.y16d{bottom:364.914890px;}
.y122{bottom:365.543385px;}
.y4f{bottom:365.903379px;}
.yb9{bottom:367.343379px;}
.y41{bottom:369.143374px;}
.ycd{bottom:370.516176px;}
.y76{bottom:370.669720px;}
.y39{bottom:371.303391px;}
.y12f{bottom:372.383396px;}
.y14f{bottom:375.714902px;}
.y49{bottom:376.343379px;}
.ye6{bottom:376.871466px;}
.yfc{bottom:377.580972px;}
.y10e{bottom:377.904210px;}
.y9{bottom:381.023385px;}
.ya0{bottom:383.364679px;}
.y7f{bottom:384.388350px;}
.y8c{bottom:384.417876px;}
.y16c{bottom:384.714902px;}
.y2{bottom:386.805215px;}
.y5e{bottom:390.383380px;}
.y14e{bottom:395.514913px;}
.y23{bottom:396.143380px;}
.y16{bottom:397.009866px;}
.y35{bottom:399.743375px;}
.yca{bottom:400.283380px;}
.y182{bottom:401.476531px;}
.y27{bottom:401.903386px;}
.ye5{bottom:402.071455px;}
.yfb{bottom:402.780973px;}
.y16b{bottom:404.514914px;}
.y67{bottom:405.143380px;}
.y30{bottom:408.743375px;}
.y95{bottom:410.687377px;}
.y7e{bottom:410.848347px;}
.y8b{bottom:410.877872px;}
.yb8{bottom:410.903386px;}
.y1e{bottom:414.143381px;}
.y11a{bottom:414.794524px;}
.y14d{bottom:415.314914px;}
.yd8{bottom:415.516178px;}
.y75{bottom:417.464996px;}
.y40{bottom:417.743375px;}
.y12e{bottom:418.283381px;}
.y48{bottom:419.903386px;}
.y16a{bottom:424.314914px;}
.y10d{bottom:426.504212px;}
.y8{bottom:426.743375px;}
.y120{bottom:426.890308px;}
.ye4{bottom:427.271456px;}
.yfa{bottom:427.980962px;}
.y9f{bottom:428.724681px;}
.y142{bottom:430.909363px;}
.y7d{bottom:434.068343px;}
.y8a{bottom:434.097869px;}
.y14c{bottom:435.114915px;}
.y5d{bottom:435.743381px;}
.y144{bottom:436.495978px;}
.yd3{bottom:439.141176px;}
.y119{bottom:439.994523px;}
.y169{bottom:444.114915px;}
.y22{bottom:444.743382px;}
.y15{bottom:445.609869px;}
.yc9{bottom:446.183384px;}
.ye3{bottom:452.471446px;}
.yf9{bottom:453.180957px;}
.y1{bottom:453.405217px;}
.y66{bottom:453.743382px;}
.y14b{bottom:454.914922px;}
.y11f{bottom:455.690307px;}
.y9e{bottom:458.307865px;}
.y1d{bottom:462.743382px;}
.yd2{bottom:463.891179px;}
.y168{bottom:463.914922px;}
.y12d{bottom:464.183385px;}
.yb1{bottom:474.106646px;}
.y14a{bottom:474.714921px;}
.y33{bottom:475.407274px;}
.y141{bottom:476.809367px;}
.ye2{bottom:477.671441px;}
.y181{bottom:477.715498px;}
.yf8{bottom:478.380964px;}
.y72{bottom:480.329997px;}
.y12a{bottom:482.183385px;}
.y143{bottom:482.395982px;}
.y167{bottom:483.714921px;}
.y129{bottom:484.343378px;}
.y90{bottom:489.931531px;}
.y7{bottom:492.925980px;}
.yd7{bottom:493.141178px;}
.y149{bottom:494.514917px;}
.y10c{bottom:500.845983px;}
.ye1{bottom:502.871447px;}
.y166{bottom:503.514917px;}
.yf7{bottom:503.580958px;}
.y136{bottom:509.125972px;}
.y6d{bottom:512.745002px;}
.y148{bottom:514.314917px;}
.y13{bottom:516.373819px;}
.y10{bottom:516.374763px;}
.y128{bottom:516.743384px;}
.yd6{bottom:517.891181px;}
.y1c{bottom:519.925982px;}
.y165{bottom:523.314918px;}
.y14{bottom:525.796061px;}
.ye0{bottom:528.071441px;}
.yf6{bottom:528.780956px;}
.y3b{bottom:528.925982px;}
.y32{bottom:529.407275px;}
.y94{bottom:530.307869px;}
.y147{bottom:534.114918px;}
.y71{bottom:534.374765px;}
.y3c{bottom:537.925982px;}
.ycc{bottom:541.516182px;}
.y11{bottom:541.699941px;}
.y10a{bottom:542.481873px;}
.y37{bottom:542.779940px;}
.y164{bottom:543.114918px;}
.yde{bottom:543.766182px;}
.y6f{bottom:544.424999px;}
.y7c{bottom:546.925983px;}
.y10b{bottom:549.445979px;}
.y104{bottom:551.481873px;}
.ydf{bottom:553.271440px;}
.y6e{bottom:553.424999px;}
.y58{bottom:553.711417px;}
.y146{bottom:553.914919px;}
.y135{bottom:554.125976px;}
.y127{bottom:555.925984px;}
.y92{bottom:559.918581px;}
.y6c{bottom:561.345000px;}
.y70{bottom:562.424999px;}
.y163{bottom:562.914919px;}
.y12b{bottom:564.106652px;}
.y121{bottom:564.925967px;}
.y162{bottom:577.157124px;}
.yce{bottom:583.965002px;}
.h3{height:40.464003px;}
.h13{height:43.920000px;}
.ha{height:50.580000px;}
.h16{height:56.718750px;}
.h1b{height:59.451123px;}
.h23{height:61.154297px;}
.h12{height:62.390628px;}
.h22{height:63.861328px;}
.h14{height:64.271484px;}
.h17{height:68.062502px;}
.h2b{height:70.812000px;}
.h1c{height:73.450781px;}
.h6{height:73.453130px;}
.he{height:73.734380px;}
.h25{height:78.626956px;}
.hc{height:79.406250px;}
.h20{height:82.242193px;}
.h5{height:82.634768px;}
.hf{height:82.740237px;}
.hd{height:82.746712px;}
.h1f{height:83.943756px;}
.h26{height:85.078128px;}
.h2a{height:85.647979px;}
.h29{height:86.779699px;}
.h18{height:88.668003px;}
.h11{height:89.218046px;}
.hb{height:89.946722px;}
.h7{height:90.750006px;}
.h19{height:94.436718px;}
.h21{height:96.421875px;}
.h1a{height:99.683209px;}
.h2{height:101.160001px;}
.h8{height:102.093753px;}
.h1e{height:106.765968px;}
.h2d{height:119.109379px;}
.h28{height:126.449999px;}
.h1d{height:136.125004px;}
.h15{height:136.566004px;}
.h10{height:141.623999px;}
.h4{height:145.283208px;}
.h27{height:151.739853px;}
.h9{height:151.740005px;}
.h24{height:162.979892px;}
.h1{height:187.146001px;}
.h2c{height:232.668002px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x45{left:15.864753px;}
.x17{left:23.236009px;}
.x34{left:25.937010px;}
.x47{left:28.939962px;}
.x53{left:33.084433px;}
.x1b{left:37.939962px;}
.x1e{left:39.631857px;}
.x58{left:41.376970px;}
.x2{left:46.939963px;}
.x19{left:48.631857px;}
.x26{left:50.910045px;}
.x1{left:52.892717px;}
.x6{left:53.996694px;}
.x3{left:57.631857px;}
.x35{left:58.863459px;}
.x2d{left:61.262959px;}
.x29{left:68.625002px;}
.x22{left:69.974410px;}
.x54{left:73.939962px;}
.x3f{left:75.179922px;}
.x40{left:76.624852px;}
.x1f{left:82.939964px;}
.x23{left:84.297407px;}
.x11{left:88.726944px;}
.x39{left:90.348345px;}
.x1c{left:91.939964px;}
.xd{left:100.939964px;}
.x49{left:104.625003px;}
.x1a{left:106.262958px;}
.xa{left:110.342473px;}
.x5{left:111.631864px;}
.x4{left:113.447400px;}
.x12{left:115.262959px;}
.x2e{left:117.067897px;}
.x24{left:123.974412px;}
.x60{left:131.220465px;}
.x21{left:154.939966px;}
.x4b{left:168.349877px;}
.x36{left:181.939967px;}
.x5d{left:197.933071px;}
.x61{left:216.029324px;}
.x10{left:220.864530px;}
.x5f{left:238.418519px;}
.x56{left:239.942938px;}
.x57{left:241.715874px;}
.x3a{left:250.379595px;}
.x44{left:253.220296px;}
.x3e{left:254.838451px;}
.x5a{left:279.616081px;}
.x5b{left:291.537599px;}
.x5c{left:301.996578px;}
.x55{left:356.043145px;}
.x2b{left:360.316699px;}
.x1d{left:420.002980px;}
.x9{left:438.005793px;}
.x4e{left:442.939964px;}
.x43{left:452.838434px;}
.x27{left:482.910045px;}
.x48{left:487.813257px;}
.x5e{left:495.089460px;}
.x4a{left:536.317915px;}
.x28{left:538.890677px;}
.x2c{left:541.155527px;}
.x41{left:551.838438px;}
.x2a{left:554.206596px;}
.x37{left:567.150599px;}
.x2f{left:580.880944px;}
.x31{left:595.203940px;}
.x50{left:596.214582px;}
.x4f{left:609.321901px;}
.x38{left:614.908482px;}
.x30{left:634.880945px;}
.x46{left:636.312013px;}
.x32{left:651.008878px;}
.x16{left:664.172999px;}
.x59{left:665.249984px;}
.x3d{left:673.021968px;}
.xf{left:734.399912px;}
.x7{left:774.858760px;}
.x3b{left:782.955734px;}
.xe{left:792.696760px;}
.x33{left:808.526613px;}
.x42{left:821.838514px;}
.x14{left:828.562386px;}
.x20{left:884.533472px;}
.x52{left:955.939981px;}
.x25{left:1031.731897px;}
.x18{left:1041.046777px;}
.x13{left:1042.156344px;}
.xb{left:1044.030611px;}
.x8{left:1048.228954px;}
.x4c{left:1052.194501px;}
.x4d{left:1054.278676px;}
.x51{left:1056.362850px;}
.x15{left:1058.447025px;}
.xc{left:1060.546189px;}
.x3c{left:1061.910656px;}
@media print{
.v4{vertical-align:-56.767274pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.345048pt;}
.v2{vertical-align:28.592633pt;}
.v5{vertical-align:31.171537pt;}
.v1{vertical-align:34.992641pt;}
.ls0{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.002906pt;}
.ls16{letter-spacing:0.002986pt;}
.ls19{letter-spacing:0.003066pt;}
.ls1b{letter-spacing:0.003146pt;}
.ls1c{letter-spacing:0.003186pt;}
.ls6{letter-spacing:0.017468pt;}
.ls11{letter-spacing:0.049175pt;}
.ls10{letter-spacing:0.058361pt;}
.lsf{letter-spacing:0.058401pt;}
.ls1a{letter-spacing:0.446266pt;}
.ls17{letter-spacing:0.446306pt;}
.lsc{letter-spacing:95.965068pt;}
.ls8{letter-spacing:95.970153pt;}
.ls9{letter-spacing:95.972716pt;}
.ls4{letter-spacing:95.975130pt;}
.ls5{letter-spacing:95.975138pt;}
.lse{letter-spacing:95.975194pt;}
.ls15{letter-spacing:95.977698pt;}
.lsd{letter-spacing:95.987748pt;}
.ls14{letter-spacing:95.987780pt;}
.ls2{letter-spacing:95.987788pt;}
.lsb{letter-spacing:95.993128pt;}
.lsa{letter-spacing:95.997778pt;}
.ls7{letter-spacing:96.000243pt;}
.ls13{letter-spacing:96.000315pt;}
.ls12{letter-spacing:96.000323pt;}
.ls3{letter-spacing:96.000363pt;}
.ls1{letter-spacing:96.000379pt;}
.ws8{word-spacing:-57.600002pt;}
.ws4{word-spacing:-36.640001pt;}
.ws10{word-spacing:-30.533333pt;}
.ws5{word-spacing:-24.864001pt;}
.ws0{word-spacing:-24.426667pt;}
.wsf{word-spacing:-23.482667pt;}
.ws11{word-spacing:-21.134403pt;}
.wsb{word-spacing:-20.682667pt;}
.ws2{word-spacing:-19.338667pt;}
.wsa{word-spacing:-18.592000pt;}
.ws9{word-spacing:-18.442667pt;}
.ws19{word-spacing:-17.098667pt;}
.ws18{word-spacing:-15.194667pt;}
.ws3{word-spacing:-12.213333pt;}
.wse{word-spacing:-0.090667pt;}
.ws1{word-spacing:0.000000pt;}
.ws13{word-spacing:121.006389pt;}
.ws15{word-spacing:121.049283pt;}
.ws17{word-spacing:121.085527pt;}
.ws12{word-spacing:207.105554pt;}
.ws16{word-spacing:322.846649pt;}
.ws14{word-spacing:344.181090pt;}
.ws7{word-spacing:394.303636pt;}
.wsd{word-spacing:596.483776pt;}
.ws6{word-spacing:627.862564pt;}
.wsc{word-spacing:634.862703pt;}
._9{margin-left:-10.080000pt;}
._e{margin-left:-8.960280pt;}
._18{margin-left:-4.906667pt;}
._7{margin-left:-3.200000pt;}
._0{margin-left:-2.300167pt;}
._1{margin-left:-1.381333pt;}
._3{width:1.015514pt;}
._8{width:2.111686pt;}
._17{width:52.326705pt;}
._5{width:113.325380pt;}
._14{width:236.666563pt;}
._f{width:307.853146pt;}
._10{width:361.423440pt;}
._16{width:422.885006pt;}
._13{width:442.415528pt;}
._15{width:444.185232pt;}
._11{width:452.913466pt;}
._2{width:475.500340pt;}
._a{width:506.306475pt;}
._d{width:530.288650pt;}
._12{width:601.730668pt;}
._c{width:647.201230pt;}
._b{width:854.256338pt;}
._6{width:3062.989402pt;}
._4{width:3175.659490pt;}
.fs2{font-size:42.666669pt;}
.fs6{font-size:53.333334pt;}
.fsb{font-size:58.666670pt;}
.fsd{font-size:64.000002pt;}
.fs10{font-size:69.066666pt;}
.fs9{font-size:69.333338pt;}
.fs7{font-size:74.666666pt;}
.fs15{font-size:77.333338pt;}
.fs14{font-size:78.933339pt;}
.fs8{font-size:80.000003pt;}
.fs1a{font-size:81.600011pt;}
.fs5{font-size:85.333339pt;}
.fs12{font-size:88.786683pt;}
.fse{font-size:88.799999pt;}
.fs16{font-size:90.666667pt;}
.fsf{font-size:93.733339pt;}
.fs4{font-size:96.000003pt;}
.fs13{font-size:100.393343pt;}
.fs1{font-size:106.666667pt;}
.fs1c{font-size:112.000004pt;}
.fs11{font-size:128.000004pt;}
.fs19{font-size:133.333332pt;}
.fsc{font-size:144.000005pt;}
.fsa{font-size:149.333333pt;}
.fs18{font-size:159.999845pt;}
.fs3{font-size:160.000005pt;}
.fs17{font-size:171.851737pt;}
.fs0{font-size:197.333334pt;}
.fs1b{font-size:245.333336pt;}
.yf5{bottom:-1.003382pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:7.177085pt;}
.y145{bottom:8.961995pt;}
.y17c{bottom:9.244387pt;}
.y26{bottom:11.575733pt;}
.ycf{bottom:12.812252pt;}
.yb4{bottom:15.828005pt;}
.y1f{bottom:16.213835pt;}
.y38{bottom:16.375733pt;}
.y116{bottom:16.961965pt;}
.y161{bottom:17.169081pt;}
.y21{bottom:17.813837pt;}
.y91{bottom:18.824553pt;}
.y17f{bottom:20.444383pt;}
.yf4{bottom:21.396618pt;}
.ycb{bottom:23.828005pt;}
.y2e{bottom:24.213835pt;}
.y2f{bottom:24.375734pt;}
.y24{bottom:24.961966pt;}
.y12{bottom:24.961996pt;}
.y54{bottom:25.263824pt;}
.y3f{bottom:25.854286pt;}
.y17b{bottom:26.844384pt;}
.y11e{bottom:30.811844pt;}
.y25{bottom:32.375734pt;}
.y160{bottom:34.769052pt;}
.y5c{bottom:36.998089pt;}
.y17e{bottom:38.044384pt;}
.y13a{bottom:39.153784pt;}
.y20{bottom:40.213836pt;}
.y7b{bottom:41.484186pt;}
.yae{bottom:42.426964pt;}
.y12c{bottom:43.300446pt;}
.yf3{bottom:43.796649pt;}
.y17a{bottom:44.444384pt;}
.y185{bottom:47.296788pt;}
.yd1{bottom:49.347693pt;}
.y15f{bottom:52.369032pt;}
.y17d{bottom:55.644385pt;}
.y118{bottom:56.942062pt;}
.ya8{bottom:59.168635pt;}
.y5b{bottom:59.398095pt;}
.y179{bottom:62.044385pt;}
.yad{bottom:64.826965pt;}
.yf2{bottom:66.196680pt;}
.y11d{bottom:69.211845pt;}
.y184{bottom:69.696787pt;}
.y15e{bottom:69.969003pt;}
.y139{bottom:73.425785pt;}
.y9d{bottom:74.531495pt;}
.y89{bottom:76.718535pt;}
.y178{bottom:79.644385pt;}
.y115{bottom:80.554845pt;}
.ydd{bottom:81.347694pt;}
.y5a{bottom:81.798089pt;}
.y7a{bottom:83.079987pt;}
.yc8{bottom:85.508225pt;}
.y15d{bottom:87.568984pt;}
.yf1{bottom:88.596701pt;}
.y13c{bottom:89.727436pt;}
.ya7{bottom:90.528616pt;}
.y117{bottom:90.782057pt;}
.y180{bottom:92.204408pt;}
.yc2{bottom:94.350056pt;}
.yf{bottom:96.127436pt;}
.y109{bottom:96.489438pt;}
.y34{bottom:97.511032pt;}
.y6{bottom:98.200526pt;}
.y134{bottom:104.127436pt;}
.y59{bottom:104.198088pt;}
.y15c{bottom:105.168954pt;}
.y9c{bottom:105.611486pt;}
.y65{bottom:105.727491pt;}
.y138{bottom:107.697783pt;}
.yf0{bottom:110.996721pt;}
.y46{bottom:112.127436pt;}
.y11b{bottom:113.252256pt;}
.y11c{bottom:115.611846pt;}
.y114{bottom:116.554846pt;}
.yc7{bottom:120.308227pt;}
.ya6{bottom:121.888597pt;}
.y15b{bottom:122.768935pt;}
.yc1{bottom:125.134057pt;}
.y88{bottom:128.238557pt;}
.y74{bottom:128.880027pt;}
.y13b{bottom:132.927437pt;}
.yef{bottom:133.396752pt;}
.y9b{bottom:136.691477pt;}
.y1b{bottom:136.897652pt;}
.y64{bottom:137.087472pt;}
.ydc{bottom:137.347696pt;}
.ye{bottom:139.327457pt;}
.y188{bottom:139.537227pt;}
.y15a{bottom:140.368905pt;}
.y137{bottom:141.969785pt;}
.y2d{bottom:146.047442pt;}
.y133{bottom:147.327457pt;}
.y177{bottom:148.368905pt;}
.yac{bottom:149.626968pt;}
.y108{bottom:150.712530pt;}
.y140{bottom:151.253210pt;}
.y113{bottom:152.554848pt;}
.ya5{bottom:153.248598pt;}
.y87{bottom:153.998538pt;}
.y4e{bottom:154.847483pt;}
.yc6{bottom:155.108238pt;}
.y45{bottom:155.327458pt;}
.yee{bottom:155.796783pt;}
.yc0{bottom:155.918048pt;}
.yd0{bottom:157.347697pt;}
.y159{bottom:157.968886pt;}
.yb7{bottom:158.847483pt;}
.y187{bottom:161.937222pt;}
.y73{bottom:162.000018pt;}
.y6b{bottom:164.460641pt;}
.y176{bottom:165.968886pt;}
.y126{bottom:166.847483pt;}
.y9a{bottom:167.771458pt;}
.y63{bottom:168.447443pt;}
.y57{bottom:171.647438pt;}
.y53{bottom:171.647448pt;}
.yab{bottom:172.026963pt;}
.y158{bottom:175.568866pt;}
.yed{bottom:178.196803pt;}
.y86{bottom:178.638538pt;}
.y103{bottom:178.827505pt;}
.y5{bottom:179.636734pt;}
.y2c{bottom:179.647443pt;}
.y1a{bottom:180.097673pt;}
.yd{bottom:180.287468pt;}
.y175{bottom:183.568867pt;}
.y186{bottom:184.337221pt;}
.ya4{bottom:184.608609pt;}
.ybf{bottom:186.702049pt;}
.y4d{bottom:188.447464pt;}
.y112{bottom:188.554859pt;}
.yda{bottom:189.347698pt;}
.yc5{bottom:189.908233pt;}
.y132{bottom:190.527459pt;}
.y6a{bottom:191.820640pt;}
.y107{bottom:192.307293pt;}
.yb6{bottom:192.447464pt;}
.y13f{bottom:192.849031pt;}
.y157{bottom:193.168837pt;}
.yaa{bottom:194.426959pt;}
.y44{bottom:198.527459pt;}
.y62{bottom:199.807444pt;}
.y125{bottom:200.447464pt;}
.yec{bottom:200.596824pt;}
.y85{bottom:200.718539pt;}
.y174{bottom:201.168837pt;}
.y102{bottom:201.227536pt;}
.y99{bottom:202.995459pt;}
.y52{bottom:205.247439pt;}
.yb0{bottom:205.247459pt;}
.y4{bottom:207.796731pt;}
.y56{bottom:209.727439pt;}
.y156{bottom:210.768807pt;}
.y106{bottom:214.707292pt;}
.ybe{bottom:217.486050pt;}
.y2b{bottom:217.727445pt;}
.ya9{bottom:218.106960pt;}
.yc{bottom:218.687460pt;}
.y173{bottom:218.768808pt;}
.ya3{bottom:219.808610pt;}
.y84{bottom:222.798540pt;}
.yeb{bottom:222.996855pt;}
.y19{bottom:223.297675pt;}
.y101{bottom:223.627557pt;}
.y79{bottom:223.893652pt;}
.y3{bottom:224.436730pt;}
.y111{bottom:224.554860pt;}
.yc4{bottom:224.708230pt;}
.y4c{bottom:226.527465pt;}
.yb3{bottom:228.176580pt;}
.y155{bottom:228.368788pt;}
.yb5{bottom:230.527465pt;}
.y61{bottom:231.167445pt;}
.y3e{bottom:233.727460pt;}
.y13e{bottom:234.444832pt;}
.y172{bottom:236.368788pt;}
.y124{bottom:238.527465pt;}
.yaf{bottom:238.847450pt;}
.y43{bottom:241.727460pt;}
.y98{bottom:242.955450pt;}
.y51{bottom:243.327441pt;}
.y83{bottom:244.878551pt;}
.ybb{bottom:244.927456pt;}
.yea{bottom:245.396876pt;}
.y154{bottom:245.968769pt;}
.y100{bottom:246.027558pt;}
.ybd{bottom:248.270041pt;}
.y55{bottom:248.447441pt;}
.ydb{bottom:249.347700pt;}
.y131{bottom:249.407486pt;}
.y171{bottom:253.968769pt;}
.y2a{bottom:256.447446pt;}
.y18a{bottom:257.937215pt;}
.yb{bottom:259.327461pt;}
.yc3{bottom:259.508231pt;}
.ya2{bottom:260.128601pt;}
.y110{bottom:260.554861pt;}
.yd5{bottom:262.347708pt;}
.y153{bottom:263.568769pt;}
.y4b{bottom:265.247446pt;}
.y78{bottom:265.489443pt;}
.y60{bottom:266.367446pt;}
.y18{bottom:266.497676pt;}
.yb2{bottom:266.576581pt;}
.y82{bottom:266.958551pt;}
.ye9{bottom:267.796876pt;}
.yff{bottom:268.427548pt;}
.y105{bottom:268.930383pt;}
.y8f{bottom:270.664786pt;}
.y170{bottom:271.568769pt;}
.y69{bottom:273.727466pt;}
.y3d{bottom:276.927447pt;}
.y189{bottom:280.337214pt;}
.y152{bottom:281.168780pt;}
.y123{bottom:281.727467pt;}
.ybc{bottom:282.273042pt;}
.y97{bottom:282.915452pt;}
.yd4{bottom:284.347711pt;}
.y42{bottom:284.927447pt;}
.yba{bottom:285.887447pt;}
.y50{bottom:286.527442pt;}
.y13d{bottom:288.241930pt;}
.y16f{bottom:289.168780pt;}
.y29{bottom:290.047457pt;}
.y81{bottom:290.158546pt;}
.ye8{bottom:290.196867pt;}
.y130{bottom:290.207477pt;}
.yfe{bottom:290.827549pt;}
.y93{bottom:291.647452pt;}
.y8e{bottom:292.744787pt;}
.y3a{bottom:296.447447pt;}
.y10f{bottom:296.554862pt;}
.y4a{bottom:297.727447pt;}
.y151{bottom:298.768790pt;}
.ya{bottom:300.287452pt;}
.ya1{bottom:300.448602pt;}
.yd9{bottom:305.347711pt;}
.y5f{bottom:306.687448pt;}
.y16e{bottom:306.768791pt;}
.y77{bottom:307.084197pt;}
.y17{bottom:309.697663pt;}
.y36{bottom:312.127443pt;}
.ye7{bottom:312.596868pt;}
.yfd{bottom:313.227540pt;}
.y80{bottom:315.918543pt;}
.y8d{bottom:315.944788pt;}
.y150{bottom:316.368791pt;}
.y68{bottom:316.927453pt;}
.y31{bottom:320.127443pt;}
.y183{bottom:323.268027pt;}
.y28{bottom:323.647458pt;}
.y96{bottom:323.911453pt;}
.y16d{bottom:324.368791pt;}
.y122{bottom:324.927453pt;}
.y4f{bottom:325.247448pt;}
.yb9{bottom:326.527448pt;}
.y41{bottom:328.127443pt;}
.ycd{bottom:329.347712pt;}
.y76{bottom:329.484195pt;}
.y39{bottom:330.047458pt;}
.y12f{bottom:331.007463pt;}
.y14f{bottom:333.968801pt;}
.y49{bottom:334.527448pt;}
.ye6{bottom:334.996858pt;}
.yfc{bottom:335.627530pt;}
.y10e{bottom:335.914853pt;}
.y9{bottom:338.687454pt;}
.ya0{bottom:340.768604pt;}
.y7f{bottom:341.678534pt;}
.y8c{bottom:341.704779pt;}
.y16c{bottom:341.968802pt;}
.y2{bottom:343.826858pt;}
.y5e{bottom:347.007449pt;}
.y14e{bottom:351.568812pt;}
.y23{bottom:352.127449pt;}
.y16{bottom:352.897659pt;}
.y35{bottom:355.327444pt;}
.yca{bottom:355.807449pt;}
.y182{bottom:356.868027pt;}
.y27{bottom:357.247454pt;}
.ye5{bottom:357.396849pt;}
.yfb{bottom:358.027531pt;}
.y16b{bottom:359.568812pt;}
.y67{bottom:360.127449pt;}
.y30{bottom:363.327444pt;}
.y95{bottom:365.055446pt;}
.y7e{bottom:365.198530pt;}
.y8b{bottom:365.224775pt;}
.yb8{bottom:365.247454pt;}
.y1e{bottom:368.127450pt;}
.y11a{bottom:368.706244pt;}
.y14d{bottom:369.168813pt;}
.yd8{bottom:369.347714pt;}
.y75{bottom:371.079997pt;}
.y40{bottom:371.327445pt;}
.y12e{bottom:371.807450pt;}
.y48{bottom:373.247455pt;}
.y16a{bottom:377.168813pt;}
.y10d{bottom:379.114855pt;}
.y8{bottom:379.327445pt;}
.y120{bottom:379.458052pt;}
.ye4{bottom:379.796850pt;}
.yfa{bottom:380.427522pt;}
.y9f{bottom:381.088605pt;}
.y142{bottom:383.030545pt;}
.y7d{bottom:385.838527pt;}
.y8a{bottom:385.864772pt;}
.y14c{bottom:386.768813pt;}
.y5d{bottom:387.327450pt;}
.y144{bottom:387.996425pt;}
.yd3{bottom:390.347712pt;}
.y119{bottom:391.106242pt;}
.y169{bottom:394.768813pt;}
.y22{bottom:395.327450pt;}
.y15{bottom:396.097661pt;}
.yc9{bottom:396.607452pt;}
.ye3{bottom:402.196841pt;}
.yf9{bottom:402.827518pt;}
.y1{bottom:403.026860pt;}
.y66{bottom:403.327451pt;}
.y14b{bottom:404.368820pt;}
.y11f{bottom:405.058051pt;}
.y9e{bottom:407.384769pt;}
.y1d{bottom:411.327451pt;}
.yd2{bottom:412.347715pt;}
.y168{bottom:412.368820pt;}
.y12d{bottom:412.607453pt;}
.yb1{bottom:421.428130pt;}
.y14a{bottom:421.968818pt;}
.y33{bottom:422.584243pt;}
.y141{bottom:423.830548pt;}
.ye2{bottom:424.596836pt;}
.y181{bottom:424.635998pt;}
.yf8{bottom:425.227523pt;}
.y72{bottom:426.959997pt;}
.y12a{bottom:428.607453pt;}
.y143{bottom:428.796428pt;}
.y167{bottom:429.968818pt;}
.y129{bottom:430.527447pt;}
.y90{bottom:435.494695pt;}
.y7{bottom:438.156427pt;}
.yd7{bottom:438.347714pt;}
.y149{bottom:439.568815pt;}
.y10c{bottom:445.196429pt;}
.ye1{bottom:446.996842pt;}
.y166{bottom:447.568815pt;}
.yf7{bottom:447.627518pt;}
.y136{bottom:452.556419pt;}
.y6d{bottom:455.773335pt;}
.y148{bottom:457.168815pt;}
.y13{bottom:458.998950pt;}
.y10{bottom:458.999789pt;}
.y128{bottom:459.327452pt;}
.yd6{bottom:460.347716pt;}
.y1c{bottom:462.156429pt;}
.y165{bottom:465.168816pt;}
.y14{bottom:467.374277pt;}
.ye0{bottom:469.396837pt;}
.yf6{bottom:470.027517pt;}
.y3b{bottom:470.156429pt;}
.y32{bottom:470.584245pt;}
.y94{bottom:471.384773pt;}
.y147{bottom:474.768816pt;}
.y71{bottom:474.999791pt;}
.y3c{bottom:478.156429pt;}
.ycc{bottom:481.347717pt;}
.y11{bottom:481.511059pt;}
.y10a{bottom:482.206109pt;}
.y37{bottom:482.471058pt;}
.y164{bottom:482.768816pt;}
.yde{bottom:483.347717pt;}
.y6f{bottom:483.933332pt;}
.y7c{bottom:486.156429pt;}
.y10b{bottom:488.396425pt;}
.y104{bottom:490.206109pt;}
.ydf{bottom:491.796835pt;}
.y6e{bottom:491.933332pt;}
.y58{bottom:492.187926pt;}
.y146{bottom:492.368816pt;}
.y135{bottom:492.556423pt;}
.y127{bottom:494.156431pt;}
.y92{bottom:497.705406pt;}
.y6c{bottom:498.973334pt;}
.y70{bottom:499.933333pt;}
.y163{bottom:500.368817pt;}
.y12b{bottom:501.428135pt;}
.y121{bottom:502.156415pt;}
.y162{bottom:513.028555pt;}
.yce{bottom:519.080002pt;}
.h3{height:35.968002pt;}
.h13{height:39.040000pt;}
.ha{height:44.960000pt;}
.h16{height:50.416667pt;}
.h1b{height:52.845442pt;}
.h23{height:54.359375pt;}
.h12{height:55.458336pt;}
.h22{height:56.765625pt;}
.h14{height:57.130208pt;}
.h17{height:60.500002pt;}
.h2b{height:62.944000pt;}
.h1c{height:65.289583pt;}
.h6{height:65.291671pt;}
.he{height:65.541671pt;}
.h25{height:69.890627pt;}
.hc{height:70.583333pt;}
.h20{height:73.104172pt;}
.h5{height:73.453127pt;}
.hf{height:73.546877pt;}
.hd{height:73.552633pt;}
.h1f{height:74.616672pt;}
.h26{height:75.625002pt;}
.h2a{height:76.131537pt;}
.h29{height:77.137510pt;}
.h18{height:78.816003pt;}
.h11{height:79.304929pt;}
.hb{height:79.952641pt;}
.h7{height:80.666672pt;}
.h19{height:83.943749pt;}
.h21{height:85.708334pt;}
.h1a{height:88.607297pt;}
.h2{height:89.920001pt;}
.h8{height:90.750003pt;}
.h1e{height:94.903082pt;}
.h2d{height:105.875003pt;}
.h28{height:112.399999pt;}
.h1d{height:121.000004pt;}
.h15{height:121.392004pt;}
.h10{height:125.888000pt;}
.h4{height:129.140629pt;}
.h27{height:134.879869pt;}
.h9{height:134.880004pt;}
.h24{height:144.871015pt;}
.h1{height:166.352001pt;}
.h2c{height:206.816002pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x45{left:14.102003pt;}
.x17{left:20.654231pt;}
.x34{left:23.055120pt;}
.x47{left:25.724411pt;}
.x53{left:29.408385pt;}
.x1b{left:33.724411pt;}
.x1e{left:35.228317pt;}
.x58{left:36.779529pt;}
.x2{left:41.724411pt;}
.x19{left:43.228317pt;}
.x26{left:45.253373pt;}
.x1{left:47.015749pt;}
.x6{left:47.997062pt;}
.x3{left:51.228318pt;}
.x35{left:52.323075pt;}
.x2d{left:54.455964pt;}
.x29{left:61.000002pt;}
.x22{left:62.199476pt;}
.x54{left:65.724411pt;}
.x3f{left:66.826597pt;}
.x40{left:68.110979pt;}
.x1f{left:73.724412pt;}
.x23{left:74.931028pt;}
.x11{left:78.868395pt;}
.x39{left:80.309640pt;}
.x1c{left:81.724413pt;}
.xd{left:89.724413pt;}
.x49{left:93.000003pt;}
.x1a{left:94.455963pt;}
.xa{left:98.082198pt;}
.x5{left:99.228323pt;}
.x4{left:100.842133pt;}
.x12{left:102.455963pt;}
.x2e{left:104.060353pt;}
.x24{left:110.199478pt;}
.x60{left:116.640414pt;}
.x21{left:137.724414pt;}
.x4b{left:149.644335pt;}
.x36{left:161.724415pt;}
.x5d{left:175.940508pt;}
.x61{left:192.026066pt;}
.x10{left:196.324026pt;}
.x5f{left:211.927573pt;}
.x56{left:213.282612pt;}
.x57{left:214.858555pt;}
.x3a{left:222.559640pt;}
.x44{left:225.084707pt;}
.x3e{left:226.523067pt;}
.x5a{left:248.547628pt;}
.x5b{left:259.144532pt;}
.x5c{left:268.441403pt;}
.x55{left:316.482795pt;}
.x2b{left:320.281510pt;}
.x1d{left:373.335982pt;}
.x9{left:389.338482pt;}
.x4e{left:393.724413pt;}
.x43{left:402.523053pt;}
.x27{left:429.253374pt;}
.x48{left:433.611784pt;}
.x5e{left:440.079520pt;}
.x4a{left:476.727035pt;}
.x28{left:479.013935pt;}
.x2c{left:481.027135pt;}
.x41{left:490.523056pt;}
.x2a{left:492.628086pt;}
.x37{left:504.133866pt;}
.x2f{left:516.338617pt;}
.x31{left:529.070169pt;}
.x50{left:529.968517pt;}
.x4f{left:541.619467pt;}
.x38{left:546.585317pt;}
.x30{left:564.338618pt;}
.x46{left:565.610678pt;}
.x32{left:578.674559pt;}
.x16{left:590.375999pt;}
.x59{left:591.333319pt;}
.x3d{left:598.241749pt;}
.xf{left:652.799922pt;}
.x7{left:688.763342pt;}
.x3b{left:695.960652pt;}
.xe{left:704.619343pt;}
.x33{left:718.690323pt;}
.x42{left:730.523123pt;}
.x14{left:736.499899pt;}
.x20{left:786.251975pt;}
.x52{left:849.724427pt;}
.x25{left:917.095019pt;}
.x18{left:925.374913pt;}
.x13{left:926.361195pt;}
.xb{left:928.027210pt;}
.x8{left:931.759070pt;}
.x4c{left:935.284001pt;}
.x4d{left:937.136601pt;}
.x51{left:938.989200pt;}
.x15{left:940.841800pt;}
.xc{left:942.707723pt;}
.x3c{left:943.920583pt;}
}




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