
    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_aca1696f3dc1d6a77fb730ee.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8cda275b767ab288dbebfa98.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_4df7fef6c3bf6270a23ba988.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_7569c536b1958e8395306c8c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.283203;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_4f832bfb618e260246e5cbb0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.966797;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_a2902760d31206d7c8a6c37e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_70a3e4a7155eea3fa46f31ec.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.774902;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_d74efe4d65a1b40b4cdab5e6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.945312;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_ec0e51399e33eed1ee99d047.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.945312;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_a45f6a47c06714bcc8fde395.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.966797;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_bf04994cdafaa1b1de96cbb8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.750000;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_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_530f079b09da8c65efc01c75.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.987305;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_8edcad57c510b83ea9af593b.woff2')format("woff");}.fff{font-family:fff;line-height:0.747000;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);}
.v1{vertical-align:-2.880066px;}
.v0{vertical-align:0.000000px;}
.ls1a{letter-spacing:-0.576000px;}
.ls16{letter-spacing:-0.432000px;}
.ls17{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.081600px;}
.ls8{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.000026px;}
.ls20{letter-spacing:0.000027px;}
.ls12{letter-spacing:0.018735px;}
.ls2{letter-spacing:0.021960px;}
.lsb{letter-spacing:0.045360px;}
.ls6{letter-spacing:0.047956px;}
.ls0{letter-spacing:0.048007px;}
.ls1e{letter-spacing:0.064816px;}
.ls22{letter-spacing:0.072038px;}
.ls1{letter-spacing:0.090600px;}
.lsa{letter-spacing:0.134400px;}
.ls14{letter-spacing:0.138715px;}
.ls4{letter-spacing:0.143912px;}
.ls7{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.144004px;}
.ls5{letter-spacing:0.144095px;}
.ls19{letter-spacing:0.144117px;}
.ls11{letter-spacing:0.197400px;}
.ls24{letter-spacing:0.215897px;}
.ls15{letter-spacing:0.263984px;}
.ls1d{letter-spacing:0.378720px;}
.ls18{letter-spacing:1.410000px;}
.ls26{letter-spacing:1.584000px;}
.ls1c{letter-spacing:16.703971px;}
.ls25{letter-spacing:27.144095px;}
.ls21{letter-spacing:44.783973px;}
.ls23{letter-spacing:50.085324px;}
.lsd{letter-spacing:58.823996px;}
.ls1f{letter-spacing:63.566624px;}
.lsf{letter-spacing:75.864020px;}
.lse{letter-spacing:96.024024px;}
.lsc{letter-spacing:844.104007px;}
.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;}
}
.wsd{word-spacing:-72.000000px;}
.wsc{word-spacing:-33.326639px;}
.wsb{word-spacing:-26.918760px;}
.wsa{word-spacing:-26.721360px;}
.ws9{word-spacing:-26.639760px;}
.ws3{word-spacing:-20.160000px;}
.ws2{word-spacing:-20.016000px;}
.ws4{word-spacing:-19.944000px;}
.ws5{word-spacing:-19.872000px;}
.ws7{word-spacing:-18.449039px;}
.ws0{word-spacing:-18.405239px;}
.ws8{word-spacing:-18.359999px;}
.ws6{word-spacing:-18.314639px;}
.wse{word-spacing:-0.072000px;}
.ws1{word-spacing:0.000000px;}
._18{margin-left:-22.796476px;}
._1d{margin-left:-19.104024px;}
._1c{margin-left:-18.042627px;}
._1a{margin-left:-15.631058px;}
._1e{margin-left:-11.760038px;}
._20{margin-left:-10.233563px;}
._1f{margin-left:-7.080024px;}
._19{margin-left:-5.981262px;}
._2c{margin-left:-4.968000px;}
._16{margin-left:-3.816000px;}
._17{margin-left:-2.808000px;}
._0{margin-left:-1.022040px;}
._1{width:1.037664px;}
._11{width:2.243354px;}
._24{width:3.599927px;}
._14{width:4.896073px;}
._5{width:6.191982px;}
._15{width:7.199927px;}
._a{width:8.352000px;}
._2{width:9.936000px;}
._22{width:11.418336px;}
._28{width:12.456000px;}
._23{width:13.464000px;}
._26{width:14.472000px;}
._c{width:15.552088px;}
._b{width:17.423989px;}
._25{width:18.864022px;}
._27{width:21.672000px;}
._6{width:23.472000px;}
._2d{width:24.480709px;}
._1b{width:25.501331px;}
._2a{width:26.541338px;}
._2e{width:27.936000px;}
._9{width:28.991949px;}
._8{width:30.024000px;}
._12{width:31.688279px;}
._30{width:33.357961px;}
._10{width:35.114039px;}
._f{width:36.168118px;}
._2b{width:37.415526px;}
._13{width:43.678438px;}
._2f{width:44.784000px;}
._7{width:48.096095px;}
._29{width:54.863974px;}
._3{width:72.432000px;}
._4{width:73.512000px;}
._d{width:172.473102px;}
._e{width:202.412862px;}
._21{width:844.104007px;}
.fc6{color:rgb(255,0,0);}
.fc3{color:rgb(243,149,120);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(191,191,191);}
.fc2{color:rgb(64,64,64);}
.fc1{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:6.120000px;}
.fs4{font-size:43.200000px;}
.fs8{font-size:47.880000px;}
.fs2{font-size:60.120000px;}
.fs3{font-size:65.879997px;}
.fs6{font-size:69.120000px;}
.fs1{font-size:72.000000px;}
.fs9{font-size:83.879997px;}
.fs7{font-size:96.120000px;}
.fs5{font-size:119.879997px;}
.y0{bottom:0.000000px;}
.y40{bottom:12.959930px;}
.y44{bottom:12.959976px;}
.y39{bottom:12.960022px;}
.y4f{bottom:13.049973px;}
.y3d{bottom:13.050018px;}
.y1c{bottom:14.129974px;}
.y2c{bottom:14.129997px;}
.y22{bottom:14.130020px;}
.y18{bottom:14.130066px;}
.y2f{bottom:14.160004px;}
.y48{bottom:21.959976px;}
.y54{bottom:21.959999px;}
.y57{bottom:22.049995px;}
.y4a{bottom:30.959976px;}
.y53{bottom:30.959999px;}
.y3f{bottom:41.399963px;}
.y43{bottom:41.400009px;}
.y4d{bottom:41.490005px;}
.y3c{bottom:41.490051px;}
.y1b{bottom:45.179993px;}
.y5a{bottom:50.399999px;}
.y56{bottom:50.490005px;}
.y5b{bottom:59.399999px;}
.y58{bottom:59.490005px;}
.y4c{bottom:69.929993px;}
.y1e{bottom:76.140015px;}
.y2a{bottom:76.229965px;}
.y1a{bottom:76.230011px;}
.y9{bottom:105.209999px;}
.y29{bottom:107.279984px;}
.y8{bottom:131.129997px;}
.y116{bottom:131.669998px;}
.y123{bottom:132.029995px;}
.y59{bottom:133.560000px;}
.y1b4{bottom:136.080002px;}
.y28{bottom:138.330002px;}
.y14a{bottom:139.950005px;}
.y9a{bottom:142.740005px;}
.y33{bottom:145.620003px;}
.y197{bottom:147.870003px;}
.y16a{bottom:148.140003px;}
.y11{bottom:151.560000px;}
.y12e{bottom:152.730000px;}
.y150{bottom:153.359997px;}
.y17c{bottom:153.990005px;}
.y115{bottom:162.720005px;}
.yc6{bottom:162.810000px;}
.y122{bottom:163.080002px;}
.y1b3{bottom:167.129997px;}
.y27{bottom:169.379974px;}
.y149{bottom:171.000000px;}
.y99{bottom:173.790000px;}
.y169{bottom:179.189999px;}
.y32{bottom:182.069996px;}
.yf7{bottom:183.509995px;}
.y12d{bottom:183.779995px;}
.y14f{bottom:184.410004px;}
.y17b{bottom:185.040000px;}
.y10{bottom:192.059990px;}
.y196{bottom:193.679993px;}
.y114{bottom:193.769989px;}
.yc5{bottom:193.860008px;}
.y121{bottom:194.129997px;}
.y1b2{bottom:198.179993px;}
.y26{bottom:200.429993px;}
.y148{bottom:202.049995px;}
.y98{bottom:204.839996px;}
.ydd{bottom:206.730011px;}
.y55{bottom:209.160004px;}
.y168{bottom:210.240005px;}
.y12c{bottom:214.830002px;}
.y14e{bottom:215.459999px;}
.y31{bottom:218.519989px;}
.yf6{bottom:222.389992px;}
.y195{bottom:224.730011px;}
.y113{bottom:224.820007px;}
.yc4{bottom:224.910004px;}
.y120{bottom:225.179993px;}
.y1b1{bottom:229.230011px;}
.yf{bottom:232.469994px;}
.y147{bottom:233.099991px;}
.y97{bottom:235.889992px;}
.ydc{bottom:237.780006px;}
.y167{bottom:241.290000px;}
.y30{bottom:242.639992px;}
.y12b{bottom:245.879997px;}
.y14d{bottom:246.509995px;}
.yf5{bottom:250.830002px;}
.y112{bottom:255.870003px;}
.yc3{bottom:255.959999px;}
.y194{bottom:256.139992px;}
.y146{bottom:264.150009px;}
.y17a{bottom:264.330002px;}
.y96{bottom:266.940010px;}
.ydb{bottom:268.830002px;}
.y166{bottom:272.339996px;}
.ye{bottom:272.969994px;}
.y2e{bottom:274.410004px;}
.y12a{bottom:276.929993px;}
.y14c{bottom:277.589996px;}
.y11f{bottom:282.089996px;}
.y52{bottom:284.879997px;}
.yf4{bottom:285.690010px;}
.y1b0{bottom:286.049995px;}
.y111{bottom:286.950005px;}
.yc2{bottom:287.040000px;}
.y193{bottom:290.910004px;}
.y179{bottom:295.410004px;}
.y95{bottom:298.019989px;}
.yda{bottom:299.910004px;}
.y2d{bottom:306.209999px;}
.y129{bottom:308.009995px;}
.y14b{bottom:308.639992px;}
.yd{bottom:313.410004px;}
.y165{bottom:315.389992px;}
.y110{bottom:318.000000px;}
.yc1{bottom:318.089996px;}
.y145{bottom:321.059990px;}
.y178{bottom:326.820007px;}
.y1af{bottom:327.450005px;}
.y94{bottom:329.070007px;}
.yd9{bottom:330.959999px;}
.y192{bottom:336.719994px;}
.y128{bottom:339.059990px;}
.y11e{bottom:339.690010px;}
.y164{bottom:346.440010px;}
.yc0{bottom:349.139992px;}
.y51{bottom:352.919998px;}
.yc{bottom:353.910004px;}
.y177{bottom:358.139992px;}
.y93{bottom:360.120003px;}
.y10f{bottom:361.019989px;}
.yd8{bottom:362.009995px;}
.y191{bottom:367.769989px;}
.y2b{bottom:369.120003px;}
.y127{bottom:370.110008px;}
.y11d{bottom:370.740005px;}
.y163{bottom:377.490005px;}
.y144{bottom:378.660004px;}
.ybf{bottom:380.190010px;}
.yb{bottom:383.519989px;}
.y1ae{bottom:385.050018px;}
.y176{bottom:389.189987px;}
.y50{bottom:390.089996px;}
.y92{bottom:391.169998px;}
.y10e{bottom:392.160004px;}
.yd7{bottom:393.060013px;}
.y190{bottom:398.820007px;}
.y25{bottom:400.890015px;}
.y126{bottom:401.160004px;}
.y11c{bottom:401.789978px;}
.ya{bottom:404.220016px;}
.y1ad{bottom:407.460022px;}
.y4e{bottom:407.730011px;}
.y7b{bottom:408.179993px;}
.y162{bottom:408.539978px;}
.ybe{bottom:411.240005px;}
.y143{bottom:421.679993px;}
.y91{bottom:422.220016px;}
.y175{bottom:422.580002px;}
.yd6{bottom:424.109985px;}
.y10d{bottom:424.380020px;}
.y18f{bottom:431.039978px;}
.y11b{bottom:432.839996px;}
.y7{bottom:435.269989px;}
.y1ac{bottom:438.509995px;}
.y7a{bottom:439.230011px;}
.y161{bottom:439.589996px;}
.ybd{bottom:442.289978px;}
.yec{bottom:447.960022px;}
.y142{bottom:452.730011px;}
.y90{bottom:453.179993px;}
.y6{bottom:453.269989px;}
.yd5{bottom:455.160004px;}
.y10c{bottom:455.429993px;}
.y5{bottom:455.880020px;}
.y125{bottom:457.949982px;}
.y4{bottom:458.490005px;}
.y3{bottom:461.099991px;}
.y18e{bottom:462.089996px;}
.y11a{bottom:463.890015px;}
.y4b{bottom:465.419998px;}
.y174{bottom:468.480011px;}
.y79{bottom:470.279984px;}
.y160{bottom:470.640015px;}
.y1ab{bottom:470.730011px;}
.y2{bottom:472.890015px;}
.ybc{bottom:473.339996px;}
.yeb{bottom:478.919998px;}
.y141{bottom:483.779984px;}
.y8f{bottom:484.230011px;}
.y69{bottom:485.130020px;}
.yd4{bottom:486.119980px;}
.y10b{bottom:486.480011px;}
.y18d{bottom:493.140015px;}
.y119{bottom:494.939987px;}
.y124{bottom:499.439987px;}
.y173{bottom:499.529984px;}
.y15f{bottom:501.689987px;}
.y1aa{bottom:501.779984px;}
.ybb{bottom:504.390015px;}
.yea{bottom:509.970016px;}
.y78{bottom:515.099991px;}
.y8e{bottom:515.279984px;}
.y140{bottom:516.000000px;}
.yd3{bottom:517.169998px;}
.y10a{bottom:518.699982px;}
.y118{bottom:525.990005px;}
.y68{bottom:526.890015px;}
.y172{bottom:530.580002px;}
.y15e{bottom:532.740005px;}
.y1a9{bottom:534.000000px;}
.yba{bottom:535.439987px;}
.y18c{bottom:536.519989px;}
.ye9{bottom:541.019989px;}
.y8d{bottom:546.330002px;}
.y13f{bottom:547.140015px;}
.y109{bottom:549.750000px;}
.y49{bottom:551.550018px;}
.yd2{bottom:556.140015px;}
.y117{bottom:557.039978px;}
.y77{bottom:560.730011px;}
.y171{bottom:561.630020px;}
.y67{bottom:563.519989px;}
.y1a8{bottom:565.140015px;}
.yb9{bottom:566.490005px;}
.y18b{bottom:567.570007px;}
.ye8{bottom:572.070007px;}
.y15d{bottom:575.759995px;}
.y8c{bottom:577.380020px;}
.y13e{bottom:579.359985px;}
.y108{bottom:580.800018px;}
.yab{bottom:588.089996px;}
.yd1{bottom:590.970016px;}
.y76{bottom:591.779984px;}
.y66{bottom:594.570007px;}
.y170{bottom:595.019989px;}
.y1a7{bottom:597.359985px;}
.yb8{bottom:597.539978px;}
.y18a{bottom:598.619980px;}
.y47{bottom:598.800018px;}
.ye7{bottom:603.119980px;}
.y15c{bottom:606.810013px;}
.y8b{bottom:608.429993px;}
.y13d{bottom:610.410004px;}
.y107{bottom:611.849991px;}
.y24{bottom:618.960022px;}
.yaa{bottom:619.140015px;}
.y75{bottom:622.830002px;}
.y65{bottom:625.619980px;}
.y1a6{bottom:628.410004px;}
.yb7{bottom:628.589996px;}
.yf3{bottom:628.859985px;}
.y189{bottom:629.669998px;}
.ye6{bottom:634.169998px;}
.y15b{bottom:637.859985px;}
.y8a{bottom:639.480011px;}
.y13c{bottom:641.460022px;}
.y106{bottom:644.070007px;}
.ya9{bottom:650.189987px;}
.y74{bottom:653.880020px;}
.y64{bottom:656.669998px;}
.y1a5{bottom:659.460022px;}
.yb6{bottom:659.640015px;}
.yf2{bottom:659.910004px;}
.y188{bottom:663.150009px;}
.y46{bottom:666.839996px;}
.y15a{bottom:668.910004px;}
.y89{bottom:670.529984px;}
.y105{bottom:675.119980px;}
.ya8{bottom:681.269989px;}
.y23{bottom:681.810013px;}
.y13b{bottom:684.509995px;}
.y73{bottom:684.960022px;}
.y63{bottom:687.750000px;}
.y1a4{bottom:690.539978px;}
.yb5{bottom:690.720016px;}
.yf1{bottom:690.990005px;}
.ye5{bottom:691.080002px;}
.y159{bottom:699.990005px;}
.y88{bottom:701.609985px;}
.y45{bottom:702.150009px;}
.y104{bottom:706.199982px;}
.y187{bottom:708.990005px;}
.ya7{bottom:712.320007px;}
.y21{bottom:713.669998px;}
.y13a{bottom:715.560013px;}
.y72{bottom:716.009995px;}
.yf0{bottom:722.039978px;}
.y42{bottom:726.990005px;}
.y62{bottom:729.689987px;}
.y158{bottom:731.039978px;}
.ye4{bottom:732.480011px;}
.y87{bottom:732.660004px;}
.y1a3{bottom:733.560013px;}
.y103{bottom:737.339996px;}
.y186{bottom:740.039978px;}
.yd0{bottom:740.849991px;}
.ya6{bottom:743.369980px;}
.y71{bottom:747.060013px;}
.yb4{bottom:747.509995px;}
.y139{bottom:747.779984px;}
.yef{bottom:753.089996px;}
.y20{bottom:759.570007px;}
.y157{bottom:762.089996px;}
.y86{bottom:763.710022px;}
.y1a2{bottom:764.609985px;}
.y102{bottom:769.559967px;}
.y185{bottom:771.089996px;}
.ycf{bottom:771.899963px;}
.ya5{bottom:774.420044px;}
.y1f{bottom:777.210022px;}
.y70{bottom:778.109985px;}
.y138{bottom:778.829956px;}
.y16f{bottom:784.140015px;}
.y41{bottom:784.679993px;}
.y1a1{bottom:788.190033px;}
.ye3{bottom:790.079956px;}
.yee{bottom:791.969971px;}
.y156{bottom:793.140015px;}
.y85{bottom:794.760040px;}
.y101{bottom:800.609985px;}
.y184{bottom:802.140015px;}
.yce{bottom:802.949982px;}
.yb3{bottom:805.109985px;}
.ya4{bottom:805.469971px;}
.y1d{bottom:809.070007px;}
.y137{bottom:809.969971px;}
.y16e{bottom:815.190033px;}
.y1a0{bottom:819.239960px;}
.y6f{bottom:822.929993px;}
.y155{bottom:824.190033px;}
.y84{bottom:825.809967px;}
.yed{bottom:826.800018px;}
.ye2{bottom:828.960022px;}
.y100{bottom:832.829956px;}
.y183{bottom:833.190033px;}
.ycd{bottom:834.000000px;}
.yb2{bottom:836.160004px;}
.ya3{bottom:836.429993px;}
.y136{bottom:842.190033px;}
.y3e{bottom:842.370026px;}
.y1{bottom:845.969971px;}
.y16d{bottom:846.239960px;}
.y61{bottom:847.859985px;}
.y19f{bottom:850.289978px;}
.y154{bottom:855.239960px;}
.y83{bottom:856.859985px;}
.ye1{bottom:863.789978px;}
.yff{bottom:863.879974px;}
.y6e{bottom:864.329956px;}
.ycc{bottom:865.050018px;}
.y182{bottom:866.579956px;}
.yb1{bottom:867.210022px;}
.ya2{bottom:867.480011px;}
.y135{bottom:873.239960px;}
.y16c{bottom:877.289978px;}
.y60{bottom:878.910004px;}
.y19e{bottom:881.339996px;}
.y82{bottom:887.910004px;}
.yfe{bottom:894.929993px;}
.ycb{bottom:896.100037px;}
.yb0{bottom:898.260040px;}
.ya1{bottom:898.530029px;}
.y3b{bottom:899.969971px;}
.y19{bottom:902.940033px;}
.y134{bottom:905.460022px;}
.y19d{bottom:912.390015px;}
.y181{bottom:912.480011px;}
.y5f{bottom:914.730011px;}
.y81{bottom:918.960022px;}
.yca{bottom:927.149963px;}
.yaf{bottom:929.309967px;}
.ya0{bottom:929.579956px;}
.y16b{bottom:934.079956px;}
.y19c{bottom:935.879974px;}
.y133{bottom:936.600037px;}
.y180{bottom:943.530029px;}
.y80{bottom:950.010040px;}
.y5e{bottom:951.000000px;}
.y3a{bottom:957.660004px;}
.yfd{bottom:958.199982px;}
.yae{bottom:960.359985px;}
.y9f{bottom:960.629974px;}
.y6d{bottom:965.129974px;}
.yc9{bottom:966.030029px;}
.y19b{bottom:966.929993px;}
.y132{bottom:968.820007px;}
.y17f{bottom:974.579956px;}
.y7f{bottom:981.059967px;}
.y38{bottom:986.910004px;}
.yfc{bottom:989.250000px;}
.yad{bottom:991.410004px;}
.y9e{bottom:991.679993px;}
.yc8{bottom:994.469971px;}
.y17{bottom:996.809967px;}
.y19a{bottom:998.070007px;}
.y131{bottom:999.870026px;}
.y17e{bottom:1005.539978px;}
.y7e{bottom:1012.109985px;}
.ye0{bottom:1014.449982px;}
.y6c{bottom:1015.530029px;}
.yfb{bottom:1020.300018px;}
.y199{bottom:1021.559967px;}
.y153{bottom:1022.460022px;}
.y9d{bottom:1022.730011px;}
.yc7{bottom:1029.300018px;}
.y37{bottom:1029.660004px;}
.y130{bottom:1030.920044px;}
.y17d{bottom:1039.019989px;}
.ydf{bottom:1042.980011px;}
.y7d{bottom:1043.160004px;}
.y5d{bottom:1046.399963px;}
.yfa{bottom:1051.440033px;}
.y198{bottom:1052.609985px;}
.yac{bottom:1052.879974px;}
.y152{bottom:1053.510040px;}
.y9c{bottom:1053.780029px;}
.y12f{bottom:1054.769989px;}
.y36{bottom:1059.359985px;}
.y16{bottom:1064.219971px;}
.y6b{bottom:1073.579956px;}
.yde{bottom:1077.750000px;}
.y5c{bottom:1082.070007px;}
.yf9{bottom:1083.690033px;}
.y9b{bottom:1084.859985px;}
.y35{bottom:1089.179993px;}
.y7c{bottom:1104.750000px;}
.y151{bottom:1110.420044px;}
.yf8{bottom:1114.739960px;}
.y6a{bottom:1115.910004px;}
.y15{bottom:1117.350037px;}
.y34{bottom:1118.519989px;}
.y14{bottom:1146.960022px;}
.y13{bottom:1178.010040px;}
.y12{bottom:1200.385530px;}
.h3{height:4.249336px;}
.h12{height:28.439999px;}
.h9{height:31.050000px;}
.hf{height:31.079999px;}
.h7{height:42.335156px;}
.h16{height:45.677109px;}
.h17{height:46.439999px;}
.h1f{height:48.882958px;}
.h13{height:49.538670px;}
.h11{height:51.975000px;}
.h1c{height:53.121094px;}
.h5{height:53.896641px;}
.h1e{height:54.140625px;}
.h15{height:56.879997px;}
.h14{height:56.969999px;}
.h6{height:59.060388px;}
.h10{height:59.797090px;}
.he{height:62.100002px;}
.hc{height:62.129997px;}
.h4{height:64.546875px;}
.h1a{height:74.879997px;}
.h19{height:75.000000px;}
.h20{height:75.197107px;}
.h18{height:85.409998px;}
.h1b{height:86.170078px;}
.h8{height:90.144139px;}
.hb{height:93.060000px;}
.ha{height:93.149998px;}
.h1d{height:95.603730px;}
.hd{height:217.349991px;}
.h2{height:1262.969971px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w7{width:60.750000px;}
.wa{width:94.620003px;}
.w8{width:107.580002px;}
.wb{width:114.209999px;}
.wf{width:116.279995px;}
.w5{width:251.129997px;}
.w3{width:253.830002px;}
.wd{width:263.459999px;}
.we{width:296.759995px;}
.w9{width:467.039978px;}
.w4{width:479.580002px;}
.w6{width:482.910004px;}
.wc{width:501.000000px;}
.w1{width:892.500000px;}
.w2{width:892.529987px;}
.w0{width:892.530000px;}
.x0{left:0.000000px;}
.x6{left:8.280001px;}
.x5{left:77.129997px;}
.x2{left:85.049987px;}
.x18{left:95.039987px;}
.x19{left:98.189985px;}
.xf{left:103.049982px;}
.x14{left:105.479986px;}
.x10{left:112.049982px;}
.x15{left:114.209986px;}
.x11{left:117.449991px;}
.x9{left:138.600002px;}
.x1b{left:166.079989px;}
.xa{left:172.560000px;}
.x17{left:193.079989px;}
.xe{left:200.279993px;}
.x16{left:223.859995px;}
.x3{left:246.539987px;}
.xb{left:287.490005px;}
.x1a{left:293.609995px;}
.x8{left:328.980011px;}
.x7{left:331.769989px;}
.xc{left:341.400009px;}
.xd{left:638.880020px;}
.x4{left:674.924475px;}
.x13{left:722.849978px;}
.x12{left:785.339983px;}
.x1{left:807.479998px;}
@media print{
.v1{vertical-align:-2.560059pt;}
.v0{vertical-align:0.000000pt;}
.ls1a{letter-spacing:-0.512000pt;}
.ls16{letter-spacing:-0.384000pt;}
.ls17{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.072533pt;}
.ls8{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.000023pt;}
.ls20{letter-spacing:0.000024pt;}
.ls12{letter-spacing:0.016653pt;}
.ls2{letter-spacing:0.019520pt;}
.lsb{letter-spacing:0.040320pt;}
.ls6{letter-spacing:0.042628pt;}
.ls0{letter-spacing:0.042673pt;}
.ls1e{letter-spacing:0.057615pt;}
.ls22{letter-spacing:0.064034pt;}
.ls1{letter-spacing:0.080533pt;}
.lsa{letter-spacing:0.119467pt;}
.ls14{letter-spacing:0.123302pt;}
.ls4{letter-spacing:0.127922pt;}
.ls7{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.128003pt;}
.ls5{letter-spacing:0.128085pt;}
.ls19{letter-spacing:0.128104pt;}
.ls11{letter-spacing:0.175467pt;}
.ls24{letter-spacing:0.191909pt;}
.ls15{letter-spacing:0.234652pt;}
.ls1d{letter-spacing:0.336640pt;}
.ls18{letter-spacing:1.253333pt;}
.ls26{letter-spacing:1.408000pt;}
.ls1c{letter-spacing:14.847974pt;}
.ls25{letter-spacing:24.128085pt;}
.ls21{letter-spacing:39.807976pt;}
.ls23{letter-spacing:44.520288pt;}
.lsd{letter-spacing:52.287997pt;}
.ls1f{letter-spacing:56.503665pt;}
.lsf{letter-spacing:67.434685pt;}
.lse{letter-spacing:85.354688pt;}
.lsc{letter-spacing:750.314673pt;}
.wsd{word-spacing:-64.000000pt;}
.wsc{word-spacing:-29.623679pt;}
.wsb{word-spacing:-23.927787pt;}
.wsa{word-spacing:-23.752320pt;}
.ws9{word-spacing:-23.679787pt;}
.ws3{word-spacing:-17.920000pt;}
.ws2{word-spacing:-17.792000pt;}
.ws4{word-spacing:-17.728000pt;}
.ws5{word-spacing:-17.664000pt;}
.ws7{word-spacing:-16.399146pt;}
.ws0{word-spacing:-16.360213pt;}
.ws8{word-spacing:-16.319999pt;}
.ws6{word-spacing:-16.279679pt;}
.wse{word-spacing:-0.064000pt;}
.ws1{word-spacing:0.000000pt;}
._18{margin-left:-20.263534pt;}
._1d{margin-left:-16.981354pt;}
._1c{margin-left:-16.037890pt;}
._1a{margin-left:-13.894274pt;}
._1e{margin-left:-10.453368pt;}
._20{margin-left:-9.096501pt;}
._1f{margin-left:-6.293354pt;}
._19{margin-left:-5.316677pt;}
._2c{margin-left:-4.416000pt;}
._16{margin-left:-3.392000pt;}
._17{margin-left:-2.496000pt;}
._0{margin-left:-0.908480pt;}
._1{width:0.922368pt;}
._11{width:1.994093pt;}
._24{width:3.199935pt;}
._14{width:4.352065pt;}
._5{width:5.503984pt;}
._15{width:6.399935pt;}
._a{width:7.424000pt;}
._2{width:8.832000pt;}
._22{width:10.149632pt;}
._28{width:11.072000pt;}
._23{width:11.968000pt;}
._26{width:12.864000pt;}
._c{width:13.824078pt;}
._b{width:15.487990pt;}
._25{width:16.768020pt;}
._27{width:19.264000pt;}
._6{width:20.864000pt;}
._2d{width:21.760630pt;}
._1b{width:22.667850pt;}
._2a{width:23.592300pt;}
._2e{width:24.832000pt;}
._9{width:25.770621pt;}
._8{width:26.688000pt;}
._12{width:28.167359pt;}
._30{width:29.651521pt;}
._10{width:31.212479pt;}
._f{width:32.149439pt;}
._2b{width:33.258245pt;}
._13{width:38.825278pt;}
._2f{width:39.808000pt;}
._7{width:42.752085pt;}
._29{width:48.767977pt;}
._3{width:64.384000pt;}
._4{width:65.344000pt;}
._d{width:153.309424pt;}
._e{width:179.922544pt;}
._21{width:750.314673pt;}
.fs0{font-size:5.440000pt;}
.fs4{font-size:38.400000pt;}
.fs8{font-size:42.560000pt;}
.fs2{font-size:53.440000pt;}
.fs3{font-size:58.559998pt;}
.fs6{font-size:61.440000pt;}
.fs1{font-size:64.000000pt;}
.fs9{font-size:74.559998pt;}
.fs7{font-size:85.440000pt;}
.fs5{font-size:106.559998pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:11.519938pt;}
.y44{bottom:11.519979pt;}
.y39{bottom:11.520020pt;}
.y4f{bottom:11.599976pt;}
.y3d{bottom:11.600016pt;}
.y1c{bottom:12.559977pt;}
.y2c{bottom:12.559998pt;}
.y22{bottom:12.560018pt;}
.y18{bottom:12.560059pt;}
.y2f{bottom:12.586670pt;}
.y48{bottom:19.519979pt;}
.y54{bottom:19.519999pt;}
.y57{bottom:19.599996pt;}
.y4a{bottom:27.519979pt;}
.y53{bottom:27.519999pt;}
.y3f{bottom:36.799967pt;}
.y43{bottom:36.800008pt;}
.y4d{bottom:36.880005pt;}
.y3c{bottom:36.880046pt;}
.y1b{bottom:40.159993pt;}
.y5a{bottom:44.799999pt;}
.y56{bottom:44.880005pt;}
.y5b{bottom:52.799999pt;}
.y58{bottom:52.880005pt;}
.y4c{bottom:62.159993pt;}
.y1e{bottom:67.680013pt;}
.y2a{bottom:67.759969pt;}
.y1a{bottom:67.760010pt;}
.y9{bottom:93.519999pt;}
.y29{bottom:95.359985pt;}
.y8{bottom:116.559998pt;}
.y116{bottom:117.039998pt;}
.y123{bottom:117.359996pt;}
.y59{bottom:118.720000pt;}
.y1b4{bottom:120.960002pt;}
.y28{bottom:122.960002pt;}
.y14a{bottom:124.400004pt;}
.y9a{bottom:126.880005pt;}
.y33{bottom:129.440002pt;}
.y197{bottom:131.440002pt;}
.y16a{bottom:131.680003pt;}
.y11{bottom:134.720000pt;}
.y12e{bottom:135.760000pt;}
.y150{bottom:136.319997pt;}
.y17c{bottom:136.880005pt;}
.y115{bottom:144.640004pt;}
.yc6{bottom:144.720000pt;}
.y122{bottom:144.960002pt;}
.y1b3{bottom:148.559998pt;}
.y27{bottom:150.559977pt;}
.y149{bottom:152.000000pt;}
.y99{bottom:154.480000pt;}
.y169{bottom:159.279999pt;}
.y32{bottom:161.839996pt;}
.yf7{bottom:163.119995pt;}
.y12d{bottom:163.359996pt;}
.y14f{bottom:163.920003pt;}
.y17b{bottom:164.480000pt;}
.y10{bottom:170.719991pt;}
.y196{bottom:172.159993pt;}
.y114{bottom:172.239990pt;}
.yc5{bottom:172.320007pt;}
.y121{bottom:172.559998pt;}
.y1b2{bottom:176.159993pt;}
.y26{bottom:178.159993pt;}
.y148{bottom:179.599996pt;}
.y98{bottom:182.079997pt;}
.ydd{bottom:183.760010pt;}
.y55{bottom:185.920003pt;}
.y168{bottom:186.880005pt;}
.y12c{bottom:190.960002pt;}
.y14e{bottom:191.519999pt;}
.y31{bottom:194.239990pt;}
.yf6{bottom:197.679993pt;}
.y195{bottom:199.760010pt;}
.y113{bottom:199.840007pt;}
.yc4{bottom:199.920003pt;}
.y120{bottom:200.159993pt;}
.y1b1{bottom:203.760010pt;}
.yf{bottom:206.639994pt;}
.y147{bottom:207.199992pt;}
.y97{bottom:209.679993pt;}
.ydc{bottom:211.360006pt;}
.y167{bottom:214.480000pt;}
.y30{bottom:215.679993pt;}
.y12b{bottom:218.559998pt;}
.y14d{bottom:219.119995pt;}
.yf5{bottom:222.960002pt;}
.y112{bottom:227.440002pt;}
.yc3{bottom:227.519999pt;}
.y194{bottom:227.679993pt;}
.y146{bottom:234.800008pt;}
.y17a{bottom:234.960002pt;}
.y96{bottom:237.280009pt;}
.ydb{bottom:238.960002pt;}
.y166{bottom:242.079997pt;}
.ye{bottom:242.639994pt;}
.y2e{bottom:243.920003pt;}
.y12a{bottom:246.159993pt;}
.y14c{bottom:246.746663pt;}
.y11f{bottom:250.746663pt;}
.y52{bottom:253.226664pt;}
.yf4{bottom:253.946676pt;}
.y1b0{bottom:254.266663pt;}
.y111{bottom:255.066671pt;}
.yc2{bottom:255.146667pt;}
.y193{bottom:258.586670pt;}
.y179{bottom:262.586670pt;}
.y95{bottom:264.906657pt;}
.yda{bottom:266.586670pt;}
.y2d{bottom:272.186666pt;}
.y129{bottom:273.786662pt;}
.y14b{bottom:274.346659pt;}
.yd{bottom:278.586670pt;}
.y165{bottom:280.346659pt;}
.y110{bottom:282.666667pt;}
.yc1{bottom:282.746663pt;}
.y145{bottom:285.386658pt;}
.y178{bottom:290.506673pt;}
.y1af{bottom:291.066671pt;}
.y94{bottom:292.506673pt;}
.yd9{bottom:294.186666pt;}
.y192{bottom:299.306661pt;}
.y128{bottom:301.386658pt;}
.y11e{bottom:301.946676pt;}
.y164{bottom:307.946676pt;}
.yc0{bottom:310.346659pt;}
.y51{bottom:313.706665pt;}
.yc{bottom:314.586670pt;}
.y177{bottom:318.346659pt;}
.y93{bottom:320.106669pt;}
.y10f{bottom:320.906657pt;}
.yd8{bottom:321.786662pt;}
.y191{bottom:326.906657pt;}
.y2b{bottom:328.106669pt;}
.y127{bottom:328.986674pt;}
.y11d{bottom:329.546672pt;}
.y163{bottom:335.546672pt;}
.y144{bottom:336.586670pt;}
.ybf{bottom:337.946676pt;}
.yb{bottom:340.906657pt;}
.y1ae{bottom:342.266683pt;}
.y176{bottom:345.946655pt;}
.y50{bottom:346.746663pt;}
.y92{bottom:347.706665pt;}
.y10e{bottom:348.586670pt;}
.yd7{bottom:349.386678pt;}
.y190{bottom:354.506673pt;}
.y25{bottom:356.346680pt;}
.y126{bottom:356.586670pt;}
.y11c{bottom:357.146647pt;}
.ya{bottom:359.306681pt;}
.y1ad{bottom:362.186686pt;}
.y4e{bottom:362.426676pt;}
.y7b{bottom:362.826660pt;}
.y162{bottom:363.146647pt;}
.ybe{bottom:365.546672pt;}
.y143{bottom:374.826660pt;}
.y91{bottom:375.306681pt;}
.y175{bottom:375.626668pt;}
.yd6{bottom:376.986654pt;}
.y10d{bottom:377.226685pt;}
.y18f{bottom:383.146647pt;}
.y11b{bottom:384.746663pt;}
.y7{bottom:386.906657pt;}
.y1ac{bottom:389.786662pt;}
.y7a{bottom:390.426676pt;}
.y161{bottom:390.746663pt;}
.ybd{bottom:393.146647pt;}
.yec{bottom:398.186686pt;}
.y142{bottom:402.426676pt;}
.y90{bottom:402.826660pt;}
.y6{bottom:402.906657pt;}
.yd5{bottom:404.586670pt;}
.y10c{bottom:404.826660pt;}
.y5{bottom:405.226685pt;}
.y125{bottom:407.066650pt;}
.y4{bottom:407.546672pt;}
.y3{bottom:409.866659pt;}
.y18e{bottom:410.746663pt;}
.y11a{bottom:412.346680pt;}
.y4b{bottom:413.706665pt;}
.y174{bottom:416.426676pt;}
.y79{bottom:418.026652pt;}
.y160{bottom:418.346680pt;}
.y1ab{bottom:418.426676pt;}
.y2{bottom:420.346680pt;}
.ybc{bottom:420.746663pt;}
.yeb{bottom:425.706665pt;}
.y141{bottom:430.026652pt;}
.y8f{bottom:430.426676pt;}
.y69{bottom:431.226685pt;}
.yd4{bottom:432.106649pt;}
.y10b{bottom:432.426676pt;}
.y18d{bottom:438.346680pt;}
.y119{bottom:439.946655pt;}
.y124{bottom:443.946655pt;}
.y173{bottom:444.026652pt;}
.y15f{bottom:445.946655pt;}
.y1aa{bottom:446.026652pt;}
.ybb{bottom:448.346680pt;}
.yea{bottom:453.306681pt;}
.y78{bottom:457.866659pt;}
.y8e{bottom:458.026652pt;}
.y140{bottom:458.666667pt;}
.yd3{bottom:459.706665pt;}
.y10a{bottom:461.066650pt;}
.y118{bottom:467.546672pt;}
.y68{bottom:468.346680pt;}
.y172{bottom:471.626668pt;}
.y15e{bottom:473.546672pt;}
.y1a9{bottom:474.666667pt;}
.yba{bottom:475.946655pt;}
.y18c{bottom:476.906657pt;}
.ye9{bottom:480.906657pt;}
.y8d{bottom:485.626668pt;}
.y13f{bottom:486.346680pt;}
.y109{bottom:488.666667pt;}
.y49{bottom:490.266683pt;}
.yd2{bottom:494.346680pt;}
.y117{bottom:495.146647pt;}
.y77{bottom:498.426676pt;}
.y171{bottom:499.226685pt;}
.y67{bottom:500.906657pt;}
.y1a8{bottom:502.346680pt;}
.yb9{bottom:503.546672pt;}
.y18b{bottom:504.506673pt;}
.ye8{bottom:508.506673pt;}
.y15d{bottom:511.786662pt;}
.y8c{bottom:513.226685pt;}
.y13e{bottom:514.986654pt;}
.y108{bottom:516.266683pt;}
.yab{bottom:522.746663pt;}
.yd1{bottom:525.306681pt;}
.y76{bottom:526.026652pt;}
.y66{bottom:528.506673pt;}
.y170{bottom:528.906657pt;}
.y1a7{bottom:530.986654pt;}
.yb8{bottom:531.146647pt;}
.y18a{bottom:532.106649pt;}
.y47{bottom:532.266683pt;}
.ye7{bottom:536.106649pt;}
.y15c{bottom:539.386678pt;}
.y8b{bottom:540.826660pt;}
.y13d{bottom:542.586670pt;}
.y107{bottom:543.866659pt;}
.y24{bottom:550.186686pt;}
.yaa{bottom:550.346680pt;}
.y75{bottom:553.626668pt;}
.y65{bottom:556.106649pt;}
.y1a6{bottom:558.586670pt;}
.yb7{bottom:558.746663pt;}
.yf3{bottom:558.986654pt;}
.y189{bottom:559.706665pt;}
.ye6{bottom:563.706665pt;}
.y15b{bottom:566.986654pt;}
.y8a{bottom:568.426676pt;}
.y13c{bottom:570.186686pt;}
.y106{bottom:572.506673pt;}
.ya9{bottom:577.946655pt;}
.y74{bottom:581.226685pt;}
.y64{bottom:583.706665pt;}
.y1a5{bottom:586.186686pt;}
.yb6{bottom:586.346680pt;}
.yf2{bottom:586.586670pt;}
.y188{bottom:589.466675pt;}
.y46{bottom:592.746663pt;}
.y15a{bottom:594.586670pt;}
.y89{bottom:596.026652pt;}
.y105{bottom:600.106649pt;}
.ya8{bottom:605.573324pt;}
.y23{bottom:606.053345pt;}
.y13b{bottom:608.453328pt;}
.y73{bottom:608.853353pt;}
.y63{bottom:611.333333pt;}
.y1a4{bottom:613.813314pt;}
.yb5{bottom:613.973348pt;}
.yf1{bottom:614.213338pt;}
.ye5{bottom:614.293335pt;}
.y159{bottom:622.213338pt;}
.y88{bottom:623.653320pt;}
.y45{bottom:624.133341pt;}
.y104{bottom:627.733317pt;}
.y187{bottom:630.213338pt;}
.ya7{bottom:633.173340pt;}
.y21{bottom:634.373332pt;}
.y13a{bottom:636.053345pt;}
.y72{bottom:636.453328pt;}
.yf0{bottom:641.813314pt;}
.y42{bottom:646.213338pt;}
.y62{bottom:648.613322pt;}
.y158{bottom:649.813314pt;}
.ye4{bottom:651.093343pt;}
.y87{bottom:651.253337pt;}
.y1a3{bottom:652.053345pt;}
.y103{bottom:655.413330pt;}
.y186{bottom:657.813314pt;}
.yd0{bottom:658.533325pt;}
.ya6{bottom:660.773315pt;}
.y71{bottom:664.053345pt;}
.yb4{bottom:664.453328pt;}
.y139{bottom:664.693319pt;}
.yef{bottom:669.413330pt;}
.y20{bottom:675.173340pt;}
.y157{bottom:677.413330pt;}
.y86{bottom:678.853353pt;}
.y1a2{bottom:679.653320pt;}
.y102{bottom:684.053304pt;}
.y185{bottom:685.413330pt;}
.ycf{bottom:686.133301pt;}
.ya5{bottom:688.373372pt;}
.y1f{bottom:690.853353pt;}
.y70{bottom:691.653320pt;}
.y138{bottom:692.293294pt;}
.y16f{bottom:697.013346pt;}
.y41{bottom:697.493327pt;}
.y1a1{bottom:700.613363pt;}
.ye3{bottom:702.293294pt;}
.yee{bottom:703.973307pt;}
.y156{bottom:705.013346pt;}
.y85{bottom:706.453369pt;}
.y101{bottom:711.653320pt;}
.y184{bottom:713.013346pt;}
.yce{bottom:713.733317pt;}
.yb3{bottom:715.653320pt;}
.ya4{bottom:715.973307pt;}
.y1d{bottom:719.173340pt;}
.y137{bottom:719.973307pt;}
.y16e{bottom:724.613363pt;}
.y1a0{bottom:728.213298pt;}
.y6f{bottom:731.493327pt;}
.y155{bottom:732.613363pt;}
.y84{bottom:734.053304pt;}
.yed{bottom:734.933350pt;}
.ye2{bottom:736.853353pt;}
.y100{bottom:740.293294pt;}
.y183{bottom:740.613363pt;}
.ycd{bottom:741.333333pt;}
.yb2{bottom:743.253337pt;}
.ya3{bottom:743.493327pt;}
.y136{bottom:748.613363pt;}
.y3e{bottom:748.773356pt;}
.y1{bottom:751.973307pt;}
.y16d{bottom:752.213298pt;}
.y61{bottom:753.653320pt;}
.y19f{bottom:755.813314pt;}
.y154{bottom:760.213298pt;}
.y83{bottom:761.653320pt;}
.ye1{bottom:767.813314pt;}
.yff{bottom:767.893311pt;}
.y6e{bottom:768.293294pt;}
.ycc{bottom:768.933350pt;}
.y182{bottom:770.293294pt;}
.yb1{bottom:770.853353pt;}
.ya2{bottom:771.093343pt;}
.y135{bottom:776.213298pt;}
.y16c{bottom:779.813314pt;}
.y60{bottom:781.253337pt;}
.y19e{bottom:783.413330pt;}
.y82{bottom:789.253337pt;}
.yfe{bottom:795.493327pt;}
.ycb{bottom:796.533366pt;}
.yb0{bottom:798.453369pt;}
.ya1{bottom:798.693359pt;}
.y3b{bottom:799.973307pt;}
.y19{bottom:802.613363pt;}
.y134{bottom:804.853353pt;}
.y19d{bottom:811.013346pt;}
.y181{bottom:811.093343pt;}
.y5f{bottom:813.093343pt;}
.y81{bottom:816.853353pt;}
.yca{bottom:824.133301pt;}
.yaf{bottom:826.053304pt;}
.ya0{bottom:826.293294pt;}
.y16b{bottom:830.293294pt;}
.y19c{bottom:831.893311pt;}
.y133{bottom:832.533366pt;}
.y180{bottom:838.693359pt;}
.y80{bottom:844.453369pt;}
.y5e{bottom:845.333333pt;}
.y3a{bottom:851.253337pt;}
.yfd{bottom:851.733317pt;}
.yae{bottom:853.653320pt;}
.y9f{bottom:853.893311pt;}
.y6d{bottom:857.893311pt;}
.yc9{bottom:858.693359pt;}
.y19b{bottom:859.493327pt;}
.y132{bottom:861.173340pt;}
.y17f{bottom:866.293294pt;}
.y7f{bottom:872.053304pt;}
.y38{bottom:877.253337pt;}
.yfc{bottom:879.333333pt;}
.yad{bottom:881.253337pt;}
.y9e{bottom:881.493327pt;}
.yc8{bottom:883.973307pt;}
.y17{bottom:886.053304pt;}
.y19a{bottom:887.173340pt;}
.y131{bottom:888.773356pt;}
.y17e{bottom:893.813314pt;}
.y7e{bottom:899.653320pt;}
.ye0{bottom:901.733317pt;}
.y6c{bottom:902.693359pt;}
.yfb{bottom:906.933350pt;}
.y199{bottom:908.053304pt;}
.y153{bottom:908.853353pt;}
.y9d{bottom:909.093343pt;}
.yc7{bottom:914.933350pt;}
.y37{bottom:915.253337pt;}
.y130{bottom:916.373372pt;}
.y17d{bottom:923.573324pt;}
.ydf{bottom:927.093343pt;}
.y7d{bottom:927.253337pt;}
.y5d{bottom:930.133301pt;}
.yfa{bottom:934.613363pt;}
.y198{bottom:935.653320pt;}
.yac{bottom:935.893311pt;}
.y152{bottom:936.453369pt;}
.y9c{bottom:936.693359pt;}
.y12f{bottom:937.573324pt;}
.y36{bottom:941.653320pt;}
.y16{bottom:945.973307pt;}
.y6b{bottom:954.293294pt;}
.yde{bottom:958.000000pt;}
.y5c{bottom:961.840007pt;}
.yf9{bottom:963.280029pt;}
.y9b{bottom:964.319987pt;}
.y35{bottom:968.159993pt;}
.y7c{bottom:982.000000pt;}
.y151{bottom:987.040039pt;}
.yf8{bottom:990.879964pt;}
.y6a{bottom:991.920003pt;}
.y15{bottom:993.200033pt;}
.y34{bottom:994.239990pt;}
.y14{bottom:1019.520020pt;}
.y13{bottom:1047.120036pt;}
.y12{bottom:1067.009360pt;}
.h3{height:3.777187pt;}
.h12{height:25.279999pt;}
.h9{height:27.600000pt;}
.hf{height:27.626666pt;}
.h7{height:37.631250pt;}
.h16{height:40.601875pt;}
.h17{height:41.279999pt;}
.h1f{height:43.451518pt;}
.h13{height:44.034373pt;}
.h11{height:46.200000pt;}
.h1c{height:47.218750pt;}
.h5{height:47.908125pt;}
.h1e{height:48.125000pt;}
.h15{height:50.559998pt;}
.h14{height:50.639999pt;}
.h6{height:52.498123pt;}
.h10{height:53.152969pt;}
.he{height:55.200002pt;}
.hc{height:55.226664pt;}
.h4{height:57.375000pt;}
.h1a{height:66.559998pt;}
.h19{height:66.666667pt;}
.h20{height:66.841873pt;}
.h18{height:75.919998pt;}
.h1b{height:76.595625pt;}
.h8{height:80.128123pt;}
.hb{height:82.720000pt;}
.ha{height:82.799998pt;}
.h1d{height:84.981094pt;}
.hd{height:193.199992pt;}
.h2{height:1122.639974pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w7{width:54.000000pt;}
.wa{width:84.106669pt;}
.w8{width:95.626668pt;}
.wb{width:101.519999pt;}
.wf{width:103.359996pt;}
.w5{width:223.226664pt;}
.w3{width:225.626668pt;}
.wd{width:234.186666pt;}
.we{width:263.786662pt;}
.w9{width:415.146647pt;}
.w4{width:426.293335pt;}
.w6{width:429.253337pt;}
.wc{width:445.333333pt;}
.w1{width:793.333333pt;}
.w2{width:793.359988pt;}
.w0{width:793.360000pt;}
.x0{left:0.000000pt;}
.x6{left:7.360001pt;}
.x5{left:68.559998pt;}
.x2{left:75.599988pt;}
.x18{left:84.479988pt;}
.x19{left:87.279987pt;}
.xf{left:91.599984pt;}
.x14{left:93.759988pt;}
.x10{left:99.599984pt;}
.x15{left:101.519987pt;}
.x11{left:104.399992pt;}
.x9{left:123.200002pt;}
.x1b{left:147.626656pt;}
.xa{left:153.386667pt;}
.x17{left:171.626656pt;}
.xe{left:178.026661pt;}
.x16{left:198.986662pt;}
.x3{left:219.146655pt;}
.xb{left:255.546672pt;}
.x1a{left:260.986662pt;}
.x8{left:292.426676pt;}
.x7{left:294.906657pt;}
.xc{left:303.466675pt;}
.xd{left:567.893351pt;}
.x4{left:599.932867pt;}
.x13{left:642.533313pt;}
.x12{left:698.079985pt;}
.x1{left:717.759998pt;}
}




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