
    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_9626df7fd8ba79fca48581af.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.933594;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_f5dc72b04789edb460e48a9b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_ac5ba21e3c01e200fae20767.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_a92b9b835ad6ebdaa0ae5dbf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_a0e7585df7e6b269459c2e6f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_220e4cd34c0dd4175f445661.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.753418;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_25faeb64d9f2d86b127c20be.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cafb4757b29f565dc9b9c4a7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.856934;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_e02af3423c153a58914e211f.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_47aadee13131a759fb49fdb3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938965;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_9f9773e909899560dbc60a50.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.866699;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_c6de9a097babb76d1de0f46d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.893066;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_bc0780e41d3360e02d1c93a4.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_1384416eb345535b45eff9bb.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.926270;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_96e3e69db86c259c33246736.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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-2.159999px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.010620px;}
.ls7{letter-spacing:0.010626px;}
.ls9{letter-spacing:0.021106px;}
.ls5{letter-spacing:0.021238px;}
.ls8{letter-spacing:0.021282px;}
.ls4{letter-spacing:0.155880px;}
.ls3{letter-spacing:34.015846px;}
.ls0{letter-spacing:98.739531px;}
.ls2{letter-spacing:1421.416897px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,176,80),0 0.015em rgb(0,176,80),0.015em 0 rgb(0,176,80),0 -0.015em  rgb(0,176,80);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,176,80);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-47.375981px;}
.wsc{word-spacing:-35.855986px;}
.wsa{word-spacing:-35.485834px;}
.wsb{word-spacing:-34.765402px;}
.ws4{word-spacing:-32.399987px;}
.wsd{word-spacing:-31.283843px;}
.wse{word-spacing:-31.283771px;}
.ws9{word-spacing:-26.961253px;}
.wsf{word-spacing:-18.021231px;}
.ws7{word-spacing:-17.999993px;}
.ws5{word-spacing:-16.613273px;}
.ws3{word-spacing:-15.011994px;}
.ws1{word-spacing:-13.505755px;}
.ws2{word-spacing:-12.203995px;}
.ws0{word-spacing:-12.059995px;}
.ws6{word-spacing:0.000000px;}
._3{margin-left:-7.844991px;}
._1{margin-left:-4.242803px;}
._11{margin-left:-3.034605px;}
._2{margin-left:-1.599460px;}
._0{width:1.003097px;}
._14{width:2.325974px;}
._12{width:3.444800px;}
._19{width:4.486157px;}
._6{width:5.490555px;}
._7{width:6.605112px;}
._f{width:7.632267px;}
._1b{width:8.634120px;}
._9{width:9.685513px;}
._a{width:10.687093px;}
._15{width:11.846808px;}
._10{width:13.326703px;}
._17{width:14.371972px;}
._16{width:15.676521px;}
._1f{width:16.679346px;}
._d{width:17.702728px;}
._c{width:18.931051px;}
._8{width:20.605286px;}
._e{width:21.814316px;}
._1e{width:23.877218px;}
._1d{width:24.962891px;}
._1a{width:30.102024px;}
._18{width:33.058035px;}
._20{width:34.069167px;}
._22{width:39.488782px;}
._13{width:41.823383px;}
._21{width:86.231608px;}
._4{width:88.653756px;}
._b{width:172.539505px;}
._1c{width:176.525329px;}
._5{width:2646.838573px;}
.fca{color:rgb(44,62,80);}
.fc9{color:rgb(0,32,96);}
.fc8{color:rgb(83,129,53);}
.fcc{color:rgb(0,101,204);}
.fc7{color:rgb(0,0,255);}
.fc5{color:rgb(0,112,192);}
.fc4{color:rgb(192,0,0);}
.fcb{color:rgb(51,51,51);}
.fc6{color:rgb(0,176,80);}
.fc3{color:rgb(68,84,106);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(64,64,64);}
.fs5{font-size:23.759990px;}
.fs4{font-size:48.239981px;}
.fs6{font-size:51.119980px;}
.fs1{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs3{font-size:71.999971px;}
.fs2{font-size:84.239966px;}
.y49{bottom:-7.199992px;}
.y6{bottom:-6.839992px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.120234px;}
.y44{bottom:3.779255px;}
.y4c{bottom:32.880287px;}
.y8{bottom:33.240287px;}
.y4a{bottom:56.100278px;}
.y7{bottom:56.460277px;}
.y4b{bottom:56.640277px;}
.y16d{bottom:128.999948px;}
.y141{bottom:129.719948px;}
.y94{bottom:131.159948px;}
.y12c{bottom:140.159944px;}
.y157{bottom:143.399943px;}
.y16c{bottom:152.939939px;}
.yd5{bottom:153.479939px;}
.yf1{bottom:160.859936px;}
.y140{bottom:162.479935px;}
.y93{bottom:164.099934px;}
.y156{bottom:167.159933px;}
.y73{bottom:170.399932px;}
.y18{bottom:170.579932px;}
.y12b{bottom:173.099931px;}
.y16b{bottom:176.879929px;}
.yf0{bottom:184.619926px;}
.yd4{bottom:186.239926px;}
.yb6{bottom:187.859925px;}
.y155{bottom:191.099924px;}
.y72{bottom:194.159922px;}
.y17{bottom:194.519922px;}
.y13f{bottom:195.239922px;}
.y92{bottom:196.859921px;}
.y16a{bottom:200.999920px;}
.yd3{bottom:210.179916px;}
.yb5{bottom:211.619915px;}
.yef{bottom:217.379913px;}
.y114{bottom:217.919913px;}
.y71{bottom:218.099913px;}
.y16{bottom:218.279913px;}
.y13e{bottom:219.179912px;}
.y12a{bottom:220.619912px;}
.y154{bottom:223.859910px;}
.y169{bottom:224.939910px;}
.y91{bottom:229.619908px;}
.yd2{bottom:233.939906px;}
.y70{bottom:241.859903px;}
.y13d{bottom:242.939903px;}
.yb4{bottom:244.379902px;}
.yee{bottom:250.319900px;}
.y113{bottom:250.859900px;}
.y15{bottom:251.039900px;}
.y153{bottom:256.619897px;}
.yd1{bottom:257.699897px;}
.y90{bottom:262.379895px;}
.y6f{bottom:265.619894px;}
.y13c{bottom:266.699893px;}
.yed{bottom:274.079890px;}
.y112{bottom:274.619890px;}
.yb3{bottom:277.319889px;}
.y152{bottom:280.379888px;}
.y14{bottom:283.799886px;}
.y8f{bottom:286.319885px;}
.yd0{bottom:290.459884px;}
.yec{bottom:297.839881px;}
.y6e{bottom:298.379881px;}
.y168{bottom:299.459880px;}
.yb2{bottom:301.079880px;}
.y151{bottom:304.319878px;}
.y111{bottom:307.379877px;}
.y8e{bottom:310.079876px;}
.y13{bottom:311.879875px;}
.y13b{bottom:314.399874px;}
.y6d{bottom:322.319871px;}
.ycf{bottom:323.399871px;}
.yb1{bottom:324.839870px;}
.y150{bottom:328.079869px;}
.yeb{bottom:330.599868px;}
.y110{bottom:331.139868px;}
.y3d{bottom:333.119867px;}
.y8d{bottom:342.839863px;}
.y6c{bottom:346.079862px;}
.yce{bottom:347.159861px;}
.yb0{bottom:348.599861px;}
.y14f{bottom:351.839859px;}
.yea{bottom:354.539858px;}
.y10f{bottom:355.079858px;}
.y129{bottom:357.599857px;}
.y43{bottom:358.500600px;}
.y42{bottom:362.279855px;}
.y6b{bottom:369.839852px;}
.ycd{bottom:370.919852px;}
.yaf{bottom:372.539851px;}
.y8c{bottom:375.599850px;}
.ye9{bottom:378.299849px;}
.y13a{bottom:379.919848px;}
.y41{bottom:382.079847px;}
.y10e{bottom:387.839845px;}
.y128{bottom:390.539844px;}
.y6a{bottom:393.599843px;}
.ycc{bottom:394.679842px;}
.y40{bottom:401.879839px;}
.y139{bottom:403.679839px;}
.yae{bottom:405.299838px;}
.y8b{bottom:408.539837px;}
.ye8{bottom:411.059836px;}
.y10d{bottom:411.599835px;}
.y127{bottom:414.299834px;}
.y167{bottom:418.619833px;}
.y3f{bottom:421.679831px;}
.y29{bottom:422.939831px;}
.y69{bottom:426.539829px;}
.ycb{bottom:427.619829px;}
.ye7{bottom:434.819826px;}
.yad{bottom:438.059825px;}
.y10c{bottom:440.939824px;}
.y8a{bottom:441.299823px;}
.y3e{bottom:442.379823px;}
.y10b{bottom:444.539822px;}
.y68{bottom:450.299820px;}
.yca{bottom:451.379819px;}
.yac{bottom:461.819815px;}
.y14e{bottom:465.059814px;}
.ye6{bottom:467.579813px;}
.y126{bottom:470.819812px;}
.y67{bottom:474.059810px;}
.yc9{bottom:475.139810px;}
.y10a{bottom:477.659809px;}
.y3c{bottom:484.859806px;}
.yab{bottom:485.579806px;}
.y14d{bottom:488.819804px;}
.y125{bottom:494.579802px;}
.y66{bottom:497.819801px;}
.yc8{bottom:498.899800px;}
.ye5{bottom:500.519800px;}
.y3b{bottom:504.659798px;}
.y89{bottom:506.819797px;}
.y109{bottom:506.999797px;}
.yaa{bottom:509.519796px;}
.y108{bottom:510.599796px;}
.y14c{bottom:512.579795px;}
.y124{bottom:518.519793px;}
.y65{bottom:521.579791px;}
.y166{bottom:522.839791px;}
.ye4{bottom:524.279790px;}
.y3a{bottom:524.999790px;}
.yc7{bottom:531.839787px;}
.ya9{bottom:533.279787px;}
.y14b{bottom:536.519785px;}
.y88{bottom:539.579784px;}
.y107{bottom:540.299784px;}
.y28{bottom:541.019784px;}
.y106{bottom:543.899782px;}
.y39{bottom:545.159782px;}
.y64{bottom:545.519782px;}
.y123{bottom:551.279779px;}
.yc6{bottom:555.599778px;}
.ye3{bottom:557.039777px;}
.y14a{bottom:560.279776px;}
.y38{bottom:562.439775px;}
.y138{bottom:564.599774px;}
.ya8{bottom:566.039774px;}
.y87{bottom:572.519771px;}
.y105{bottom:573.599771px;}
.y122{bottom:575.039770px;}
.y104{bottom:577.199769px;}
.y63{bottom:578.279769px;}
.yc5{bottom:579.359768px;}
.y37{bottom:579.719768px;}
.y149{bottom:584.039766px;}
.ye2{bottom:589.799764px;}
.y36{bottom:596.999761px;}
.y137{bottom:597.359761px;}
.ya7{bottom:598.799760px;}
.y165{bottom:603.119759px;}
.y86{bottom:605.279758px;}
.y103{bottom:606.719757px;}
.y148{bottom:607.799757px;}
.y102{bottom:610.319756px;}
.yc4{bottom:612.119755px;}
.ye1{bottom:613.739755px;}
.y35{bottom:614.279754px;}
.y27{bottom:616.079754px;}
.y62{bottom:620.039752px;}
.y136{bottom:621.119752px;}
.ya6{bottom:622.739751px;}
.y164{bottom:626.879749px;}
.y34{bottom:631.379747px;}
.y121{bottom:631.739747px;}
.ye0{bottom:637.499745px;}
.y85{bottom:638.039745px;}
.y101{bottom:640.019744px;}
.y147{bottom:640.739744px;}
.y100{bottom:643.619743px;}
.y61{bottom:643.799742px;}
.y26{bottom:643.979742px;}
.yc3{bottom:644.879742px;}
.ya5{bottom:646.499741px;}
.y33{bottom:648.659741px;}
.y163{bottom:650.819740px;}
.y120{bottom:655.499738px;}
.y25{bottom:661.619735px;}
.y84{bottom:661.799735px;}
.y32{bottom:665.939734px;}
.y60{bottom:667.739733px;}
.yc2{bottom:668.819732px;}
.ya4{bottom:670.259732px;}
.yff{bottom:673.319731px;}
.y146{bottom:673.499731px;}
.y162{bottom:674.579730px;}
.yfe{bottom:676.919729px;}
.y24{bottom:679.259728px;}
.y17f{bottom:679.619728px;}
.y31{bottom:683.219727px;}
.y83{bottom:685.739726px;}
.y5f{bottom:691.499723px;}
.yc1{bottom:692.579723px;}
.ya3{bottom:694.019722px;}
.y23{bottom:695.639722px;}
.y145{bottom:697.259721px;}
.y30{bottom:700.499720px;}
.y161{bottom:707.339717px;}
.y82{bottom:709.499716px;}
.yfd{bottom:710.039716px;}
.y11f{bottom:712.019715px;}
.y17e{bottom:715.619714px;}
.y135{bottom:716.339713px;}
.y2f{bottom:717.599713px;}
.ya2{bottom:717.959713px;}
.y144{bottom:721.019712px;}
.y22{bottom:722.459711px;}
.y5e{bottom:724.259710px;}
.yc0{bottom:725.339710px;}
.ydf{bottom:726.959709px;}
.yfc{bottom:730.379708px;}
.yfb{bottom:733.979706px;}
.y2e{bottom:734.879706px;}
.y17d{bottom:739.559704px;}
.y160{bottom:740.099704px;}
.y21{bottom:740.279704px;}
.y81{bottom:742.259703px;}
.y11e{bottom:744.959702px;}
.y5d{bottom:748.019701px;}
.y134{bottom:749.099700px;}
.ya1{bottom:750.719700px;}
.y2d{bottom:752.159699px;}
.ybf{bottom:758.099697px;}
.yde{bottom:759.719696px;}
.y17c{bottom:763.499695px;}
.y15f{bottom:764.039694px;}
.y20{bottom:764.939694px;}
.yfa{bottom:767.099693px;}
.y11d{bottom:768.719693px;}
.y2c{bottom:769.439692px;}
.y5c{bottom:771.959691px;}
.y80{bottom:775.019690px;}
.y1f{bottom:780.419688px;}
.ybe{bottom:782.039687px;}
.ya0{bottom:783.479687px;}
.y2b{bottom:786.719685px;}
.y17b{bottom:787.439685px;}
.y15e{bottom:787.799685px;}
.yf9{bottom:791.039684px;}
.ydd{bottom:792.479683px;}
.y5b{bottom:795.719682px;}
.y11c{bottom:801.479679px;}
.y2a{bottom:803.999678px;}
.ybd{bottom:805.799678px;}
.y9f{bottom:807.239677px;}
.y1e{bottom:808.139677px;}
.y7f{bottom:811.019676px;}
.y17a{bottom:811.379675px;}
.y15d{bottom:811.559675px;}
.yf8{bottom:814.799674px;}
.ydc{bottom:816.239674px;}
.y5a{bottom:819.479672px;}
.y11b{bottom:825.239670px;}
.ybc{bottom:829.559668px;}
.y9e{bottom:831.179668px;}
.y15c{bottom:835.319666px;}
.y179{bottom:835.499666px;}
.y1d{bottom:836.039666px;}
.ydb{bottom:840.179664px;}
.y59{bottom:843.239663px;}
.y7e{bottom:847.019661px;}
.yf7{bottom:847.559661px;}
.y11a{bottom:849.179660px;}
.y133{bottom:853.319659px;}
.y9d{bottom:854.939658px;}
.y12{bottom:856.199658px;}
.y143{bottom:858.179657px;}
.y178{bottom:859.439656px;}
.ybb{bottom:862.319655px;}
.y58{bottom:867.179653px;}
.y15b{bottom:868.259653px;}
.y11{bottom:870.599652px;}
.yda{bottom:872.939651px;}
.y132{bottom:877.259649px;}
.yf6{bottom:880.319648px;}
.y119{bottom:881.939647px;}
.y7d{bottom:883.019647px;}
.y177{bottom:883.379647px;}
.y9c{bottom:887.699645px;}
.y10{bottom:890.579644px;}
.yba{bottom:895.259642px;}
.yd9{bottom:896.699641px;}
.y57{bottom:899.939640px;}
.y15a{bottom:901.019640px;}
.yf5{bottom:904.259638px;}
.y118{bottom:905.699638px;}
.y176{bottom:907.319637px;}
.y131{bottom:910.019636px;}
.yf{bottom:910.379636px;}
.y7c{bottom:919.019632px;}
.y9b{bottom:920.459632px;}
.y56{bottom:923.699631px;}
.yf4{bottom:928.019629px;}
.y117{bottom:929.459628px;}
.ye{bottom:930.179628px;}
.y175{bottom:931.259627px;}
.y159{bottom:933.779626px;}
.y142{bottom:938.459625px;}
.yb9{bottom:942.779623px;}
.y9a{bottom:944.399622px;}
.y55{bottom:947.459621px;}
.yc{bottom:951.239620px;}
.y7b{bottom:951.779619px;}
.yd8{bottom:953.399619px;}
.y174{bottom:955.379618px;}
.yd{bottom:957.179617px;}
.y116{bottom:962.399615px;}
.y130{bottom:966.539613px;}
.y54{bottom:971.399611px;}
.yb8{bottom:975.539610px;}
.y99{bottom:977.159609px;}
.y173{bottom:979.319608px;}
.y7a{bottom:984.539606px;}
.yb{bottom:985.079606px;}
.y115{bottom:986.159606px;}
.y12f{bottom:990.479604px;}
.y53{bottom:995.159602px;}
.y158{bottom:999.479600px;}
.yd7{bottom:1000.919600px;}
.y172{bottom:1003.259599px;}
.y79{bottom:1008.479597px;}
.y98{bottom:1009.919596px;}
.ya{bottom:1012.979595px;}
.y52{bottom:1018.919592px;}
.y12e{bottom:1023.239591px;}
.y171{bottom:1027.199589px;}
.y78{bottom:1032.239587px;}
.y97{bottom:1033.679587px;}
.yf3{bottom:1041.239584px;}
.y51{bottom:1042.679583px;}
.y12d{bottom:1046.999581px;}
.y170{bottom:1051.139580px;}
.y77{bottom:1055.999578px;}
.y96{bottom:1057.439577px;}
.y1b{bottom:1057.799577px;}
.yf2{bottom:1064.999574px;}
.yd6{bottom:1066.439573px;}
.y16f{bottom:1075.259570px;}
.y50{bottom:1075.439570px;}
.y1a{bottom:1078.859568px;}
.yb7{bottom:1079.759568px;}
.y76{bottom:1088.759564px;}
.y95{bottom:1090.379564px;}
.y16e{bottom:1099.199560px;}
.y4f{bottom:1099.379560px;}
.y75{bottom:1112.699555px;}
.y4e{bottom:1123.139551px;}
.y19{bottom:1126.379549px;}
.y1c{bottom:1139.159544px;}
.y4{bottom:1143.119543px;}
.y48{bottom:1143.479543px;}
.y9{bottom:1167.959533px;}
.y4d{bottom:1169.039532px;}
.y74{bottom:1169.759532px;}
.y3{bottom:1171.919531px;}
.y47{bottom:1172.279531px;}
.y2{bottom:1189.199524px;}
.y46{bottom:1189.559524px;}
.y1{bottom:1206.479517px;}
.y45{bottom:1206.839517px;}
.h11{height:5.580000px;}
.h3{height:5.940000px;}
.ha{height:17.054290px;}
.h10{height:18.000000px;}
.h7{height:32.693893px;}
.h12{height:34.625377px;}
.hc{height:35.991197px;}
.h16{height:36.068540px;}
.h13{height:36.597642px;}
.he{height:36.624009px;}
.h4{height:36.703110px;}
.h2{height:38.759750px;}
.hd{height:39.339828px;}
.hb{height:40.793187px;}
.h9{height:41.493499px;}
.h1{height:42.894123px;}
.hf{height:43.536076px;}
.h6{height:48.796855px;}
.h15{height:50.800761px;}
.h8{height:51.679667px;}
.h14{height:52.453104px;}
.h5{height:57.092321px;}
.h0{height:1263.000000px;}
.w2{width:7.920000px;}
.w3{width:8.820000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x1{left:107.999957px;}
.x25{left:111.419955px;}
.x1b{left:117.899953px;}
.xb{left:119.879952px;}
.xd{left:121.860235px;}
.x18{left:123.479951px;}
.x4{left:125.279950px;}
.x15{left:126.899949px;}
.x1c{left:130.859948px;}
.x23{left:132.659947px;}
.x17{left:135.359887px;}
.x16{left:137.339945px;}
.x14{left:149.399940px;}
.x29{left:161.099938px;}
.x1a{left:172.619931px;}
.x19{left:179.279930px;}
.x35{left:186.839925px;}
.xc{left:192.060577px;}
.x39{left:193.859922px;}
.x36{left:195.479922px;}
.x38{left:198.539921px;}
.x3a{left:200.519920px;}
.x37{left:202.319919px;}
.x3b{left:204.480037px;}
.x3c{left:222.659911px;}
.x10{left:234.359906px;}
.xf{left:250.739900px;}
.x1d{left:256.499907px;}
.x1e{left:258.119897px;}
.x5{left:271.080114px;}
.x1f{left:273.599865px;}
.x27{left:276.299889px;}
.x28{left:280.799888px;}
.x20{left:291.239884px;}
.x3d{left:295.199882px;}
.x21{left:296.999881px;}
.x6{left:299.519880px;}
.x2{left:302.579879px;}
.x2a{left:318.059873px;}
.x2b{left:329.759868px;}
.x3e{left:336.599865px;}
.x3f{left:347.399861px;}
.xe{left:365.033237px;}
.x40{left:374.759850px;}
.x41{left:382.859847px;}
.x24{left:399.239840px;}
.x2c{left:406.439837px;}
.x26{left:409.499836px;}
.x42{left:412.379835px;}
.x11{left:415.259834px;}
.x43{left:423.179831px;}
.x2d{left:442.799823px;}
.x50{left:446.400245px;}
.x7{left:448.199821px;}
.x2e{left:449.639820px;}
.x44{left:458.639817px;}
.x8{left:460.259816px;}
.x2f{left:486.899805px;}
.x45{left:489.059804px;}
.x30{left:493.559803px;}
.x46{left:499.859800px;}
.x12{left:511.379795px;}
.x47{left:526.499789px;}
.x31{left:532.079787px;}
.x48{left:534.599786px;}
.x32{left:538.739785px;}
.x49{left:566.279773px;}
.x4a{left:577.079769px;}
.x33{left:578.879768px;}
.x9{left:582.659767px;}
.x34{left:585.539766px;}
.xa{left:588.779764px;}
.x22{left:590.580000px;}
.x4b{left:604.439758px;}
.x4c{left:612.539755px;}
.x4d{left:645.659742px;}
.x4e{left:656.459737px;}
.x3{left:659.339736px;}
.x4f{left:681.839727px;}
.x13{left:687.960486px;}
@media print{
.v1{vertical-align:-1.919999pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.009440pt;}
.ls7{letter-spacing:0.009446pt;}
.ls9{letter-spacing:0.018761pt;}
.ls5{letter-spacing:0.018878pt;}
.ls8{letter-spacing:0.018917pt;}
.ls4{letter-spacing:0.138560pt;}
.ls3{letter-spacing:30.236308pt;}
.ls0{letter-spacing:87.768472pt;}
.ls2{letter-spacing:1263.481686pt;}
.ws8{word-spacing:-42.111983pt;}
.wsc{word-spacing:-31.871987pt;}
.wsa{word-spacing:-31.542963pt;}
.wsb{word-spacing:-30.902580pt;}
.ws4{word-spacing:-28.799988pt;}
.wsd{word-spacing:-27.807861pt;}
.wse{word-spacing:-27.807797pt;}
.ws9{word-spacing:-23.965558pt;}
.wsf{word-spacing:-16.018872pt;}
.ws7{word-spacing:-15.999994pt;}
.ws5{word-spacing:-14.767354pt;}
.ws3{word-spacing:-13.343995pt;}
.ws1{word-spacing:-12.005115pt;}
.ws2{word-spacing:-10.847996pt;}
.ws0{word-spacing:-10.719996pt;}
.ws6{word-spacing:0.000000pt;}
._3{margin-left:-6.973325pt;}
._1{margin-left:-3.771380pt;}
._11{margin-left:-2.697426pt;}
._2{margin-left:-1.421742pt;}
._0{width:0.891642pt;}
._14{width:2.067532pt;}
._12{width:3.062044pt;}
._19{width:3.987695pt;}
._6{width:4.880493pt;}
._7{width:5.871211pt;}
._f{width:6.784238pt;}
._1b{width:7.674773pt;}
._9{width:8.609345pt;}
._a{width:9.499638pt;}
._15{width:10.530496pt;}
._10{width:11.845958pt;}
._17{width:12.775087pt;}
._16{width:13.934686pt;}
._1f{width:14.826085pt;}
._d{width:15.735758pt;}
._c{width:16.827601pt;}
._8{width:18.315810pt;}
._e{width:19.390503pt;}
._1e{width:21.224193pt;}
._1d{width:22.189237pt;}
._1a{width:26.757355pt;}
._18{width:29.384920pt;}
._20{width:30.283704pt;}
._22{width:35.101140pt;}
._13{width:37.176340pt;}
._21{width:76.650318pt;}
._4{width:78.803339pt;}
._b{width:153.368449pt;}
._1c{width:156.911404pt;}
._5{width:2352.745398pt;}
.fs5{font-size:21.119992pt;}
.fs4{font-size:42.879983pt;}
.fs6{font-size:45.439982pt;}
.fs1{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs3{font-size:63.999974pt;}
.fs2{font-size:74.879970pt;}
.y49{bottom:-6.399993pt;}
.y6{bottom:-6.079993pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.106875pt;}
.y44{bottom:3.359338pt;}
.y4c{bottom:29.226922pt;}
.y8{bottom:29.546922pt;}
.y4a{bottom:49.866913pt;}
.y7{bottom:50.186913pt;}
.y4b{bottom:50.346913pt;}
.y16d{bottom:114.666621pt;}
.y141{bottom:115.306621pt;}
.y94{bottom:116.586620pt;}
.y12c{bottom:124.586617pt;}
.y157{bottom:127.466616pt;}
.y16c{bottom:135.946612pt;}
.yd5{bottom:136.426612pt;}
.yf1{bottom:142.986609pt;}
.y140{bottom:144.426609pt;}
.y93{bottom:145.866608pt;}
.y156{bottom:148.586607pt;}
.y73{bottom:151.466606pt;}
.y18{bottom:151.626606pt;}
.y12b{bottom:153.866605pt;}
.y16b{bottom:157.226604pt;}
.yf0{bottom:164.106601pt;}
.yd4{bottom:165.546600pt;}
.yb6{bottom:166.986600pt;}
.y155{bottom:169.866599pt;}
.y72{bottom:172.586598pt;}
.y17{bottom:172.906598pt;}
.y13f{bottom:173.546597pt;}
.y92{bottom:174.986597pt;}
.y16a{bottom:178.666595pt;}
.yd3{bottom:186.826592pt;}
.yb5{bottom:188.106591pt;}
.yef{bottom:193.226589pt;}
.y114{bottom:193.706589pt;}
.y71{bottom:193.866589pt;}
.y16{bottom:194.026589pt;}
.y13e{bottom:194.826589pt;}
.y12a{bottom:196.106588pt;}
.y154{bottom:198.986587pt;}
.y169{bottom:199.946587pt;}
.y91{bottom:204.106585pt;}
.yd2{bottom:207.946583pt;}
.y70{bottom:214.986581pt;}
.y13d{bottom:215.946580pt;}
.yb4{bottom:217.226580pt;}
.yee{bottom:222.506578pt;}
.y113{bottom:222.986577pt;}
.y15{bottom:223.146577pt;}
.y153{bottom:228.106575pt;}
.yd1{bottom:229.066575pt;}
.y90{bottom:233.226573pt;}
.y6f{bottom:236.106572pt;}
.y13c{bottom:237.066572pt;}
.yed{bottom:243.626569pt;}
.y112{bottom:244.106569pt;}
.yb3{bottom:246.506568pt;}
.y152{bottom:249.226567pt;}
.y14{bottom:252.266566pt;}
.y8f{bottom:254.506565pt;}
.yd0{bottom:258.186563pt;}
.yec{bottom:264.746561pt;}
.y6e{bottom:265.226561pt;}
.y168{bottom:266.186560pt;}
.yb2{bottom:267.626560pt;}
.y151{bottom:270.506558pt;}
.y111{bottom:273.226557pt;}
.y8e{bottom:275.626556pt;}
.y13{bottom:277.226556pt;}
.y13b{bottom:279.466555pt;}
.y6d{bottom:286.506552pt;}
.ycf{bottom:287.466552pt;}
.yb1{bottom:288.746551pt;}
.y150{bottom:291.626550pt;}
.yeb{bottom:293.866549pt;}
.y110{bottom:294.346549pt;}
.y3d{bottom:296.106548pt;}
.y8d{bottom:304.746545pt;}
.y6c{bottom:307.626544pt;}
.yce{bottom:308.586543pt;}
.yb0{bottom:309.866543pt;}
.y14f{bottom:312.746542pt;}
.yea{bottom:315.146541pt;}
.y10f{bottom:315.626540pt;}
.y129{bottom:317.866540pt;}
.y43{bottom:318.667200pt;}
.y42{bottom:322.026538pt;}
.y6b{bottom:328.746535pt;}
.ycd{bottom:329.706535pt;}
.yaf{bottom:331.146534pt;}
.y8c{bottom:333.866533pt;}
.ye9{bottom:336.266532pt;}
.y13a{bottom:337.706532pt;}
.y41{bottom:339.626531pt;}
.y10e{bottom:344.746529pt;}
.y128{bottom:347.146528pt;}
.y6a{bottom:349.866527pt;}
.ycc{bottom:350.826526pt;}
.y40{bottom:357.226524pt;}
.y139{bottom:358.826523pt;}
.yae{bottom:360.266523pt;}
.y8b{bottom:363.146521pt;}
.ye8{bottom:365.386521pt;}
.y10d{bottom:365.866520pt;}
.y127{bottom:368.266519pt;}
.y167{bottom:372.106518pt;}
.y3f{bottom:374.826517pt;}
.y29{bottom:375.946516pt;}
.y69{bottom:379.146515pt;}
.ycb{bottom:380.106515pt;}
.ye7{bottom:386.506512pt;}
.yad{bottom:389.386511pt;}
.y10c{bottom:391.946510pt;}
.y8a{bottom:392.266510pt;}
.y3e{bottom:393.226509pt;}
.y10b{bottom:395.146509pt;}
.y68{bottom:400.266507pt;}
.yca{bottom:401.226506pt;}
.yac{bottom:410.506502pt;}
.y14e{bottom:413.386501pt;}
.ye6{bottom:415.626500pt;}
.y126{bottom:418.506499pt;}
.y67{bottom:421.386498pt;}
.yc9{bottom:422.346498pt;}
.y10a{bottom:424.586497pt;}
.y3c{bottom:430.986494pt;}
.yab{bottom:431.626494pt;}
.y14d{bottom:434.506493pt;}
.y125{bottom:439.626491pt;}
.y66{bottom:442.506490pt;}
.yc8{bottom:443.466489pt;}
.ye5{bottom:444.906489pt;}
.y3b{bottom:448.586487pt;}
.y89{bottom:450.506486pt;}
.y109{bottom:450.666486pt;}
.yaa{bottom:452.906486pt;}
.y108{bottom:453.866485pt;}
.y14c{bottom:455.626484pt;}
.y124{bottom:460.906482pt;}
.y65{bottom:463.626481pt;}
.y166{bottom:464.746481pt;}
.ye4{bottom:466.026480pt;}
.y3a{bottom:466.666480pt;}
.yc7{bottom:472.746478pt;}
.ya9{bottom:474.026477pt;}
.y14b{bottom:476.906476pt;}
.y88{bottom:479.626475pt;}
.y107{bottom:480.266475pt;}
.y28{bottom:480.906474pt;}
.y106{bottom:483.466473pt;}
.y39{bottom:484.586473pt;}
.y64{bottom:484.906473pt;}
.y123{bottom:490.026471pt;}
.yc6{bottom:493.866469pt;}
.ye3{bottom:495.146469pt;}
.y14a{bottom:498.026467pt;}
.y38{bottom:499.946467pt;}
.y138{bottom:501.866466pt;}
.ya8{bottom:503.146465pt;}
.y87{bottom:508.906463pt;}
.y105{bottom:509.866463pt;}
.y122{bottom:511.146462pt;}
.y104{bottom:513.066461pt;}
.y63{bottom:514.026461pt;}
.yc5{bottom:514.986461pt;}
.y37{bottom:515.306461pt;}
.y149{bottom:519.146459pt;}
.ye2{bottom:524.266457pt;}
.y36{bottom:530.666454pt;}
.y137{bottom:530.986454pt;}
.ya7{bottom:532.266454pt;}
.y165{bottom:536.106452pt;}
.y86{bottom:538.026451pt;}
.y103{bottom:539.306451pt;}
.y148{bottom:540.266451pt;}
.y102{bottom:542.506450pt;}
.yc4{bottom:544.106449pt;}
.ye1{bottom:545.546448pt;}
.y35{bottom:546.026448pt;}
.y27{bottom:547.626448pt;}
.y62{bottom:551.146446pt;}
.y136{bottom:552.106446pt;}
.ya6{bottom:553.546445pt;}
.y164{bottom:557.226444pt;}
.y34{bottom:561.226442pt;}
.y121{bottom:561.546442pt;}
.ye0{bottom:566.666440pt;}
.y85{bottom:567.146440pt;}
.y101{bottom:568.906439pt;}
.y147{bottom:569.546439pt;}
.y100{bottom:572.106438pt;}
.y61{bottom:572.266438pt;}
.y26{bottom:572.426438pt;}
.yc3{bottom:573.226437pt;}
.ya5{bottom:574.666437pt;}
.y33{bottom:576.586436pt;}
.y163{bottom:578.506435pt;}
.y120{bottom:582.666434pt;}
.y25{bottom:588.106431pt;}
.y84{bottom:588.266431pt;}
.y32{bottom:591.946430pt;}
.y60{bottom:593.546429pt;}
.yc2{bottom:594.506429pt;}
.ya4{bottom:595.786428pt;}
.yff{bottom:598.506427pt;}
.y146{bottom:598.666427pt;}
.y162{bottom:599.626427pt;}
.yfe{bottom:601.706426pt;}
.y24{bottom:603.786425pt;}
.y17f{bottom:604.106425pt;}
.y31{bottom:607.306424pt;}
.y83{bottom:609.546423pt;}
.y5f{bottom:614.666421pt;}
.yc1{bottom:615.626420pt;}
.ya3{bottom:616.906420pt;}
.y23{bottom:618.346419pt;}
.y145{bottom:619.786419pt;}
.y30{bottom:622.666418pt;}
.y161{bottom:628.746415pt;}
.y82{bottom:630.666414pt;}
.yfd{bottom:631.146414pt;}
.y11f{bottom:632.906414pt;}
.y17e{bottom:636.106412pt;}
.y135{bottom:636.746412pt;}
.y2f{bottom:637.866412pt;}
.ya2{bottom:638.186411pt;}
.y144{bottom:640.906410pt;}
.y22{bottom:642.186410pt;}
.y5e{bottom:643.786409pt;}
.yc0{bottom:644.746409pt;}
.ydf{bottom:646.186408pt;}
.yfc{bottom:649.226407pt;}
.yfb{bottom:652.426406pt;}
.y2e{bottom:653.226405pt;}
.y17d{bottom:657.386404pt;}
.y160{bottom:657.866404pt;}
.y21{bottom:658.026403pt;}
.y81{bottom:659.786403pt;}
.y11e{bottom:662.186402pt;}
.y5d{bottom:664.906401pt;}
.y134{bottom:665.866400pt;}
.ya1{bottom:667.306400pt;}
.y2d{bottom:668.586399pt;}
.ybf{bottom:673.866397pt;}
.yde{bottom:675.306397pt;}
.y17c{bottom:678.666395pt;}
.y15f{bottom:679.146395pt;}
.y20{bottom:679.946395pt;}
.yfa{bottom:681.866394pt;}
.y11d{bottom:683.306393pt;}
.y2c{bottom:683.946393pt;}
.y5c{bottom:686.186392pt;}
.y80{bottom:688.906391pt;}
.y1f{bottom:693.706389pt;}
.ybe{bottom:695.146389pt;}
.ya0{bottom:696.426388pt;}
.y2b{bottom:699.306387pt;}
.y17b{bottom:699.946387pt;}
.y15e{bottom:700.266387pt;}
.yf9{bottom:703.146385pt;}
.ydd{bottom:704.426385pt;}
.y5b{bottom:707.306384pt;}
.y11c{bottom:712.426382pt;}
.y2a{bottom:714.666381pt;}
.ybd{bottom:716.266380pt;}
.y9f{bottom:717.546380pt;}
.y1e{bottom:718.346379pt;}
.y7f{bottom:720.906378pt;}
.y17a{bottom:721.226378pt;}
.y15d{bottom:721.386378pt;}
.yf8{bottom:724.266377pt;}
.ydc{bottom:725.546376pt;}
.y5a{bottom:728.426375pt;}
.y11b{bottom:733.546373pt;}
.ybc{bottom:737.386372pt;}
.y9e{bottom:738.826371pt;}
.y15c{bottom:742.506370pt;}
.y179{bottom:742.666370pt;}
.y1d{bottom:743.146369pt;}
.ydb{bottom:746.826368pt;}
.y59{bottom:749.546367pt;}
.y7e{bottom:752.906366pt;}
.yf7{bottom:753.386365pt;}
.y11a{bottom:754.826365pt;}
.y133{bottom:758.506363pt;}
.y9d{bottom:759.946363pt;}
.y12{bottom:761.066362pt;}
.y143{bottom:762.826362pt;}
.y178{bottom:763.946361pt;}
.ybb{bottom:766.506360pt;}
.y58{bottom:770.826358pt;}
.y15b{bottom:771.786358pt;}
.y11{bottom:773.866357pt;}
.yda{bottom:775.946356pt;}
.y132{bottom:779.786355pt;}
.yf6{bottom:782.506354pt;}
.y119{bottom:783.946353pt;}
.y7d{bottom:784.906353pt;}
.y177{bottom:785.226353pt;}
.y9c{bottom:789.066351pt;}
.y10{bottom:791.626350pt;}
.yba{bottom:795.786348pt;}
.yd9{bottom:797.066348pt;}
.y57{bottom:799.946347pt;}
.y15a{bottom:800.906346pt;}
.yf5{bottom:803.786345pt;}
.y118{bottom:805.066345pt;}
.y176{bottom:806.506344pt;}
.y131{bottom:808.906343pt;}
.yf{bottom:809.226343pt;}
.y7c{bottom:816.906340pt;}
.y9b{bottom:818.186339pt;}
.y56{bottom:821.066338pt;}
.yf4{bottom:824.906337pt;}
.y117{bottom:826.186336pt;}
.ye{bottom:826.826336pt;}
.y175{bottom:827.786336pt;}
.y159{bottom:830.026335pt;}
.y142{bottom:834.186333pt;}
.yb9{bottom:838.026331pt;}
.y9a{bottom:839.466331pt;}
.y55{bottom:842.186330pt;}
.yc{bottom:845.546328pt;}
.y7b{bottom:846.026328pt;}
.yd8{bottom:847.466328pt;}
.y174{bottom:849.226327pt;}
.yd{bottom:850.826326pt;}
.y116{bottom:855.466324pt;}
.y130{bottom:859.146323pt;}
.y54{bottom:863.466321pt;}
.yb8{bottom:867.146320pt;}
.y99{bottom:868.586319pt;}
.y173{bottom:870.506318pt;}
.y7a{bottom:875.146317pt;}
.yb{bottom:875.626316pt;}
.y115{bottom:876.586316pt;}
.y12f{bottom:880.426314pt;}
.y53{bottom:884.586313pt;}
.y158{bottom:888.426311pt;}
.yd7{bottom:889.706311pt;}
.y172{bottom:891.786310pt;}
.y79{bottom:896.426308pt;}
.y98{bottom:897.706308pt;}
.ya{bottom:900.426306pt;}
.y52{bottom:905.706304pt;}
.y12e{bottom:909.546303pt;}
.y171{bottom:913.066301pt;}
.y78{bottom:917.546300pt;}
.y97{bottom:918.826299pt;}
.yf3{bottom:925.546296pt;}
.y51{bottom:926.826296pt;}
.y12d{bottom:930.666294pt;}
.y170{bottom:934.346293pt;}
.y77{bottom:938.666291pt;}
.y96{bottom:939.946291pt;}
.y1b{bottom:940.266291pt;}
.yf2{bottom:946.666288pt;}
.yd6{bottom:947.946287pt;}
.y16f{bottom:955.786284pt;}
.y50{bottom:955.946284pt;}
.y1a{bottom:958.986283pt;}
.yb7{bottom:959.786283pt;}
.y76{bottom:967.786280pt;}
.y95{bottom:969.226279pt;}
.y16e{bottom:977.066276pt;}
.y4f{bottom:977.226276pt;}
.y75{bottom:989.066271pt;}
.y4e{bottom:998.346267pt;}
.y19{bottom:1001.226266pt;}
.y1c{bottom:1012.586262pt;}
.y4{bottom:1016.106260pt;}
.y48{bottom:1016.426260pt;}
.y9{bottom:1038.186251pt;}
.y4d{bottom:1039.146251pt;}
.y74{bottom:1039.786251pt;}
.y3{bottom:1041.706250pt;}
.y47{bottom:1042.026250pt;}
.y2{bottom:1057.066244pt;}
.y46{bottom:1057.386244pt;}
.y1{bottom:1072.426238pt;}
.y45{bottom:1072.746238pt;}
.h11{height:4.960000pt;}
.h3{height:5.280000pt;}
.ha{height:15.159369pt;}
.h10{height:16.000000pt;}
.h7{height:29.061238pt;}
.h12{height:30.778113pt;}
.hc{height:31.992175pt;}
.h16{height:32.060925pt;}
.h13{height:32.531237pt;}
.he{height:32.554674pt;}
.h4{height:32.624987pt;}
.h2{height:34.453111pt;}
.hd{height:34.968736pt;}
.hb{height:36.260610pt;}
.h9{height:36.883110pt;}
.h1{height:38.128110pt;}
.hf{height:38.698735pt;}
.h6{height:43.374983pt;}
.h15{height:45.156232pt;}
.h8{height:45.937482pt;}
.h14{height:46.624981pt;}
.h5{height:50.748730pt;}
.h0{height:1122.666667pt;}
.w2{width:7.040000pt;}
.w3{width:7.840000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x1{left:95.999962pt;}
.x25{left:99.039960pt;}
.x1b{left:104.799958pt;}
.xb{left:106.559957pt;}
.xd{left:108.320209pt;}
.x18{left:109.759956pt;}
.x4{left:111.359955pt;}
.x15{left:112.799955pt;}
.x1c{left:116.319953pt;}
.x23{left:117.919953pt;}
.x17{left:120.319899pt;}
.x16{left:122.079951pt;}
.x14{left:132.799947pt;}
.x29{left:143.199945pt;}
.x1a{left:153.439939pt;}
.x19{left:159.359938pt;}
.x35{left:166.079934pt;}
.xc{left:170.720513pt;}
.x39{left:172.319931pt;}
.x36{left:173.759930pt;}
.x38{left:176.479929pt;}
.x3a{left:178.239929pt;}
.x37{left:179.839928pt;}
.x3b{left:181.760033pt;}
.x3c{left:197.919921pt;}
.x10{left:208.319917pt;}
.xf{left:222.879911pt;}
.x1d{left:227.999918pt;}
.x1e{left:229.439908pt;}
.x5{left:240.960101pt;}
.x1f{left:243.199880pt;}
.x27{left:245.599902pt;}
.x28{left:249.599900pt;}
.x20{left:258.879896pt;}
.x3d{left:262.399895pt;}
.x21{left:263.999894pt;}
.x6{left:266.239894pt;}
.x2{left:268.959892pt;}
.x2a{left:282.719887pt;}
.x2b{left:293.119883pt;}
.x3e{left:299.199880pt;}
.x3f{left:308.799876pt;}
.xe{left:324.473989pt;}
.x40{left:333.119867pt;}
.x41{left:340.319864pt;}
.x24{left:354.879858pt;}
.x2c{left:361.279855pt;}
.x26{left:363.999854pt;}
.x42{left:366.559853pt;}
.x11{left:369.119852pt;}
.x43{left:376.159850pt;}
.x2d{left:393.599843pt;}
.x50{left:396.800217pt;}
.x7{left:398.399841pt;}
.x2e{left:399.679840pt;}
.x44{left:407.679837pt;}
.x8{left:409.119836pt;}
.x2f{left:432.799827pt;}
.x45{left:434.719826pt;}
.x30{left:438.719825pt;}
.x46{left:444.319822pt;}
.x12{left:454.559818pt;}
.x47{left:467.999813pt;}
.x31{left:472.959811pt;}
.x48{left:475.199810pt;}
.x32{left:478.879808pt;}
.x49{left:503.359799pt;}
.x4a{left:512.959795pt;}
.x33{left:514.559794pt;}
.x9{left:517.919793pt;}
.x34{left:520.479792pt;}
.xa{left:523.359791pt;}
.x22{left:524.960000pt;}
.x4b{left:537.279785pt;}
.x4c{left:544.479782pt;}
.x4d{left:573.919770pt;}
.x4e{left:583.519767pt;}
.x3{left:586.079766pt;}
.x4f{left:606.079758pt;}
.x13{left:611.520432pt;}
}




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