
    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_13d5e8759f797213e698d1aa.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_0dba316c5d8c46f553edbd70.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_69b891e774f2c307ac83b9a0.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_71a3efbff6b6252da18b67d6.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_51371761637fdc9fc564996f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.861816;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_54430d36fb0194076e3295cf.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_30dcac0168ad3162d47fc178.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_5243326af71104454d2e31d1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.858398;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_9420a9281b3a187c8e0d7228.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.686523;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_520222a68406ff74f2ee7935.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.766113;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_e02af3423c153a58914e211f.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_bb8e09cffee65743933ee8a6.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_eb4005ac53c12e3b8ad4c493.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_c873b6bf3264906b67c0f1db.woff2')format("woff");}.ffe{font-family:ffe;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: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;}
@font-face{font-family:ff10;src:url('chunks/assets/font_3d45854b3309233a530bc890.woff2')format("woff");}.ff10{font-family:ff10;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;}
.m4{transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249839,0.000000,0.000000,0.250000,0,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);}
.m6{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);}
.m1{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);}
.m3{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);}
.m2{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);}
.m5{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:-10.079996px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.010553px;}
.ls10{letter-spacing:0.010626px;}
.ls6{letter-spacing:0.018600px;}
.lsf{letter-spacing:0.021238px;}
.lsd{letter-spacing:0.021240px;}
.ls12{letter-spacing:0.021282px;}
.lsc{letter-spacing:0.155880px;}
.ls2{letter-spacing:0.187140px;}
.ls8{letter-spacing:0.189300px;}
.ls1{letter-spacing:0.237796px;}
.ls3{letter-spacing:0.297773px;}
.lse{letter-spacing:1.823399px;}
.ls7{letter-spacing:10.995956px;}
.lsa{letter-spacing:34.015846px;}
.ls5{letter-spacing:63.695155px;}
.lsb{letter-spacing:88.047565px;}
.ls4{letter-spacing:91.071296px;}
.ls0{letter-spacing:1408.728187px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(58,123,34),0 0.015em rgb(58,123,34),0.015em 0 rgb(58,123,34),0 -0.015em  rgb(58,123,34);}
.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(58,123,34);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-47.375981px;}
.ws0{word-spacing:-45.885778px;}
.wsa{word-spacing:-35.855986px;}
.wsd{word-spacing:-33.636947px;}
.ws6{word-spacing:-32.418587px;}
.wsf{word-spacing:-18.021275px;}
.wse{word-spacing:-18.021231px;}
.ws9{word-spacing:-17.999993px;}
.ws3{word-spacing:-16.271993px;}
.ws5{word-spacing:-15.011994px;}
.ws7{word-spacing:-14.939994px;}
.wsb{word-spacing:-12.779995px;}
.ws2{word-spacing:-12.059995px;}
.ws4{word-spacing:-10.612796px;}
.ws1{word-spacing:-9.719996px;}
.ws8{word-spacing:0.000000px;}
._2{margin-left:-9.333160px;}
._21{margin-left:-7.741829px;}
._5{margin-left:-6.178094px;}
._1{margin-left:-4.242803px;}
._4{margin-left:-2.721978px;}
._3{margin-left:-1.570800px;}
._0{width:1.003097px;}
._f{width:2.519552px;}
._8{width:3.881087px;}
._9{width:5.199553px;}
._c{width:6.759424px;}
._10{width:8.027383px;}
._12{width:9.135281px;}
._7{width:10.730088px;}
._6{width:11.823043px;}
._a{width:13.550680px;}
._11{width:14.616345px;}
._13{width:15.868428px;}
._15{width:16.978403px;}
._14{width:19.060235px;}
._17{width:20.081107px;}
._16{width:21.324599px;}
._18{width:22.662587px;}
._1e{width:23.983136px;}
._1f{width:25.028974px;}
._1d{width:26.971018px;}
._20{width:28.246108px;}
._1c{width:29.615515px;}
._1b{width:30.775157px;}
._19{width:31.807984px;}
._27{width:33.472377px;}
._e{width:34.978870px;}
._28{width:36.674148px;}
._25{width:37.828215px;}
._b{width:39.156267px;}
._d{width:40.348793px;}
._26{width:51.164276px;}
._23{width:149.897720px;}
._24{width:181.845510px;}
._22{width:259.845221px;}
._29{width:423.469371px;}
._1a{width:1296.798363px;}
.fc11{color:rgb(33,33,33);}
.fc10{color:rgb(0,101,153);}
.fcd{color:rgb(0,112,192);}
.fc1{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fca{color:rgb(51,51,51);}
.fc7{color:rgb(0,176,80);}
.fc3{color:rgb(14,40,65);}
.fc4{color:rgb(192,0,0);}
.fcf{color:rgb(43,50,34);}
.fce{color:rgb(34,34,34);}
.fcb{color:rgb(0,101,204);}
.fc8{color:rgb(58,123,34);}
.fc5{color:rgb(0,32,96);}
.fc6{color:rgb(0,0,255);}
.fcc{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fc9{color:rgb(44,62,80);}
.fs5{font-size:30.239988px;}
.fs4{font-size:38.879984px;}
.fs3{font-size:48.239981px;}
.fs7{font-size:51.119980px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:71.999971px;}
.fs8{font-size:81.359967px;}
.fs6{font-size:84.239966px;}
.y6{bottom:-11.339990px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.120234px;}
.y3a{bottom:2.699111px;}
.y16{bottom:2.879032px;}
.y1a{bottom:2.879038px;}
.y1e{bottom:2.879045px;}
.y22{bottom:2.879051px;}
.y26{bottom:2.879057px;}
.y2a{bottom:2.879064px;}
.y30{bottom:2.879077px;}
.y12c{bottom:3.959178px;}
.y134{bottom:3.959220px;}
.y13a{bottom:3.959262px;}
.yfa{bottom:4.319022px;}
.y12f{bottom:4.319187px;}
.y10e{bottom:4.319211px;}
.y110{bottom:4.319215px;}
.yb{bottom:4.860038px;}
.yc{bottom:32.880287px;}
.ya{bottom:49.260240px;}
.y8{bottom:54.120278px;}
.y9{bottom:56.640277px;}
.y119{bottom:143.759942px;}
.y14c{bottom:145.559942px;}
.y7b{bottom:145.919942px;}
.y57{bottom:147.000241px;}
.y15e{bottom:151.679939px;}
.yec{bottom:152.399939px;}
.y17b{bottom:152.939939px;}
.yc1{bottom:156.539937px;}
.ya8{bottom:160.139936px;}
.y56{bottom:163.199935px;}
.y97{bottom:166.619933px;}
.y15d{bottom:172.379931px;}
.yd6{bottom:173.459931px;}
.y17a{bottom:173.639931px;}
.y118{bottom:174.899930px;}
.y14b{bottom:176.699929px;}
.y7a{bottom:177.059929px;}
.yeb{bottom:183.539927px;}
.yd5{bottom:190.199924px;}
.ya7{bottom:191.279923px;}
.y179{bottom:194.339922px;}
.y5c{bottom:194.519922px;}
.y140{bottom:195.419922px;}
.y96{bottom:197.759921px;}
.y107{bottom:201.539919px;}
.yc0{bottom:205.139918px;}
.y117{bottom:205.859918px;}
.y14a{bottom:207.659917px;}
.y79{bottom:208.019917px;}
.ybf{bottom:208.739917px;}
.y5b{bottom:212.699915px;}
.y15c{bottom:213.959914px;}
.yea{bottom:214.499914px;}
.ya6{bottom:222.239911px;}
.y95{bottom:228.719909px;}
.y44{bottom:228.899908px;}
.y5a{bottom:230.699908px;}
.y106{bottom:232.679907px;}
.y178{bottom:236.099906px;}
.y116{bottom:236.999905px;}
.y149{bottom:238.799904px;}
.y78{bottom:239.159904px;}
.ybe{bottom:239.339904px;}
.y13f{bottom:241.679903px;}
.ybd{bottom:242.939903px;}
.ye9{bottom:245.639902px;}
.y59{bottom:248.699901px;}
.ya5{bottom:253.379899px;}
.y15b{bottom:255.719898px;}
.y177{bottom:256.799897px;}
.y103{bottom:259.679896px;}
.y94{bottom:259.859896px;}
.y13e{bottom:262.379895px;}
.y58{bottom:267.419893px;}
.y115{bottom:267.959893px;}
.y148{bottom:269.759892px;}
.y77{bottom:270.119892px;}
.ybc{bottom:272.999891px;}
.y15a{bottom:276.419889px;}
.ybb{bottom:276.599889px;}
.y176{bottom:277.499889px;}
.yf8{bottom:279.839888px;}
.y105{bottom:280.559888px;}
.y150{bottom:280.739888px;}
.y13d{bottom:283.079887px;}
.yd4{bottom:284.159886px;}
.ya4{bottom:284.339886px;}
.y93{bottom:290.819884px;}
.y159{bottom:297.119881px;}
.ye8{bottom:297.659881px;}
.y147{bottom:300.899880px;}
.y76{bottom:301.259879px;}
.y13c{bottom:303.779878px;}
.yba{bottom:304.679878px;}
.y55{bottom:307.199877px;}
.yb9{bottom:308.279877px;}
.yf7{bottom:310.979876px;}
.y14f{bottom:311.879875px;}
.ya3{bottom:315.299874px;}
.y175{bottom:319.079872px;}
.y114{bottom:319.979872px;}
.y102{bottom:321.779871px;}
.y14e{bottom:321.959871px;}
.y13b{bottom:324.479870px;}
.y75{bottom:332.219867px;}
.yb8{bottom:336.359865px;}
.y158{bottom:338.699865px;}
.y18d{bottom:339.779864px;}
.yb7{bottom:339.959864px;}
.yf6{bottom:341.939863px;}
.y139{bottom:341.940600px;}
.y92{bottom:342.839863px;}
.y54{bottom:345.359862px;}
.ye7{bottom:349.679860px;}
.y113{bottom:351.119860px;}
.y101{bottom:352.919859px;}
.ya2{bottom:357.059857px;}
.y157{bottom:359.399856px;}
.y174{bottom:360.839856px;}
.y53{bottom:362.639855px;}
.y74{bottom:363.359855px;}
.y138{bottom:366.599853px;}
.y43{bottom:368.399853px;}
.yf5{bottom:373.079851px;}
.y91{bottom:373.979850px;}
.yd3{bottom:380.459848px;}
.ye6{bottom:380.639848px;}
.y18c{bottom:381.539847px;}
.y112{bottom:382.079847px;}
.y146{bottom:384.059846px;}
.y137{bottom:387.299845px;}
.yb6{bottom:392.339843px;}
.ya1{bottom:397.199841px;}
.y156{bottom:401.159840px;}
.y18b{bottom:402.239839px;}
.y173{bottom:402.599839px;}
.yf4{bottom:404.039838px;}
.y90{bottom:404.939838px;}
.y136{bottom:407.999837px;}
.y52{bottom:409.619836px;}
.ye5{bottom:411.779835px;}
.y145{bottom:415.019834px;}
.y73{bottom:415.379834px;}
.y155{bottom:421.859831px;}
.y172{bottom:423.299831px;}
.ya0{bottom:428.159829px;}
.yd2{bottom:428.519829px;}
.y135{bottom:428.699829px;}
.y111{bottom:434.999826px;}
.y51{bottom:435.359826px;}
.y8f{bottom:436.079826px;}
.yb5{bottom:440.399824px;}
.ye4{bottom:442.739823px;}
.y171{bottom:443.999822px;}
.y144{bottom:445.979822px;}
.y133{bottom:446.160600px;}
.y72{bottom:446.339821px;}
.y9f{bottom:455.339818px;}
.yf3{bottom:456.059818px;}
.y10f{bottom:458.400600px;}
.y50{bottom:461.279815px;}
.y154{bottom:463.619815px;}
.y18a{bottom:464.699814px;}
.y8e{bottom:467.039813px;}
.y10d{bottom:468.120600px;}
.y132{bottom:470.819812px;}
.y42{bottom:473.339811px;}
.y143{bottom:477.119809px;}
.y71{bottom:477.479809px;}
.y153{bottom:484.319806px;}
.y189{bottom:485.399806px;}
.y170{bottom:485.579806px;}
.y4f{bottom:487.199805px;}
.y131{bottom:491.519803px;}
.ye3{bottom:494.939802px;}
.yd1{bottom:496.379801px;}
.y8d{bottom:498.179801px;}
.y16f{bottom:506.279797px;}
.y142{bottom:508.079797px;}
.y70{bottom:508.439797px;}
.y130{bottom:512.219795px;}
.y4e{bottom:512.939795px;}
.yf2{bottom:518.159793px;}
.y152{bottom:525.899790px;}
.y41{bottom:526.079790px;}
.y188{bottom:526.979789px;}
.yb4{bottom:528.239789px;}
.y12e{bottom:528.600600px;}
.y8c{bottom:529.139788px;}
.y12d{bottom:532.919787px;}
.yd0{bottom:537.959785px;}
.y4d{bottom:538.859784px;}
.y141{bottom:539.219784px;}
.y6f{bottom:539.579784px;}
.y40{bottom:541.379783px;}
.ye2{bottom:546.959781px;}
.y16e{bottom:548.039781px;}
.y12b{bottom:550.380600px;}
.y3f{bottom:556.679777px;}
.y8b{bottom:560.279776px;}
.y4c{bottom:564.779774px;}
.y151{bottom:568.019773px;}
.y187{bottom:568.739773px;}
.yf1{bottom:570.179772px;}
.y6e{bottom:570.539772px;}
.y3e{bottom:570.899772px;}
.y12a{bottom:575.039770px;}
.ye1{bottom:577.919769px;}
.yb3{bottom:580.259768px;}
.y186{bottom:589.439764px;}
.y16d{bottom:589.799764px;}
.ycf{bottom:590.159764px;}
.y4b{bottom:590.699764px;}
.y8a{bottom:591.239764px;}
.y129{bottom:595.739762px;}
.yf0{bottom:601.319759px;}
.y6d{bottom:601.679759px;}
.y16c{bottom:610.499756px;}
.yb2{bottom:611.399755px;}
.ye0{bottom:615.719754px;}
.y4a{bottom:616.439753px;}
.yce{bottom:621.119752px;}
.y100{bottom:622.199751px;}
.y3d{bottom:622.379751px;}
.y16b{bottom:631.199748px;}
.yef{bottom:632.279747px;}
.y6c{bottom:632.639747px;}
.y128{bottom:637.139745px;}
.y49{bottom:642.359743px;}
.ycd{bottom:648.839740px;}
.y185{bottom:651.899739px;}
.ycc{bottom:652.439739px;}
.y89{bottom:653.339739px;}
.y127{bottom:657.839737px;}
.yb1{bottom:663.419735px;}
.y6b{bottom:663.779734px;}
.y48{bottom:668.279733px;}
.y184{bottom:672.599731px;}
.y16a{bottom:672.779731px;}
.y3c{bottom:673.859730px;}
.y104{bottom:674.399730px;}
.y126{bottom:683.039727px;}
.yff{bottom:684.299726px;}
.yee{bottom:684.479726px;}
.y3b{bottom:689.339724px;}
.ycb{bottom:690.419724px;}
.y183{bottom:693.299723px;}
.y169{bottom:693.479723px;}
.y47{bottom:694.199722px;}
.yb0{bottom:694.379722px;}
.y6a{bottom:694.739722px;}
.y10c{bottom:695.279722px;}
.y125{bottom:703.739719px;}
.y88{bottom:705.359718px;}
.ydf{bottom:708.959716px;}
.yed{bottom:715.439714px;}
.y45{bottom:716.879713px;}
.y46{bottom:719.939712px;}
.y39{bottom:719.940600px;}
.y124{bottom:724.439710px;}
.y69{bottom:725.879710px;}
.y10b{bottom:726.419709px;}
.y182{bottom:734.879706px;}
.y168{bottom:735.239706px;}
.y87{bottom:736.499705px;}
.y192{bottom:744.599702px;}
.y123{bottom:745.139702px;}
.yfe{bottom:746.399701px;}
.yaf{bottom:746.579701px;}
.y38{bottom:750.179700px;}
.yde{bottom:750.539700px;}
.y167{bottom:755.939698px;}
.y68{bottom:756.839697px;}
.y10a{bottom:757.379697px;}
.y122{bottom:765.839694px;}
.y86{bottom:767.459693px;}
.yca{bottom:776.639689px;}
.yae{bottom:777.539689px;}
.y109{bottom:788.519685px;}
.y121{bottom:791.039684px;}
.y31{bottom:791.939683px;}
.ydd{bottom:792.299683px;}
.y191{bottom:796.979681px;}
.y181{bottom:797.339681px;}
.y166{bottom:797.699681px;}
.y85{bottom:798.599681px;}
.y2f{bottom:805.800600px;}
.y2e{bottom:808.679677px;}
.y67{bottom:808.859676px;}
.y120{bottom:811.739675px;}
.y2d{bottom:812.459675px;}
.yc9{bottom:818.219673px;}
.y165{bottom:818.399673px;}
.y108{bottom:819.479672px;}
.y2c{bottom:824.699670px;}
.y2b{bottom:829.199668px;}
.y84{bottom:829.559668px;}
.y11f{bottom:832.439667px;}
.y29{bottom:837.840600px;}
.y190{bottom:838.739665px;}
.y180{bottom:839.099664px;}
.yad{bottom:839.639664px;}
.y66{bottom:839.999664px;}
.y28{bottom:840.719664px;}
.ydc{bottom:844.319662px;}
.y27{bottom:845.219662px;}
.y9e{bottom:850.619660px;}
.y11e{bottom:853.139659px;}
.y25{bottom:853.680600px;}
.y24{bottom:856.559657px;}
.y17f{bottom:859.799656px;}
.yc8{bottom:859.979656px;}
.yfd{bottom:860.519656px;}
.y83{bottom:860.699656px;}
.y23{bottom:861.059656px;}
.y21{bottom:869.700600px;}
.yac{bottom:870.599652px;}
.y65{bottom:870.959652px;}
.ydb{bottom:872.039651px;}
.y20{bottom:872.579651px;}
.y11d{bottom:873.839650px;}
.yda{bottom:875.639650px;}
.y1f{bottom:877.079649px;}
.y164{bottom:880.679648px;}
.y9d{bottom:881.579647px;}
.y1d{bottom:885.720600px;}
.y1c{bottom:888.599645px;}
.y18f{bottom:890.759644px;}
.y82{bottom:891.659643px;}
.y1b{bottom:893.099643px;}
.y11c{bottom:895.439642px;}
.yc7{bottom:897.779641px;}
.y163{bottom:901.379639px;}
.yab{bottom:901.739639px;}
.y19{bottom:901.740600px;}
.y64{bottom:902.099639px;}
.y18{bottom:904.619638px;}
.y17{bottom:909.119636px;}
.y9c{bottom:912.719635px;}
.yfc{bottom:913.439635px;}
.yd9{bottom:913.799634px;}
.y15{bottom:917.760600px;}
.y14{bottom:920.639632px;}
.y162{bottom:922.079631px;}
.y81{bottom:922.799631px;}
.y13{bottom:925.139630px;}
.yaa{bottom:932.699627px;}
.y63{bottom:933.059627px;}
.y11b{bottom:938.459625px;}
.yfb{bottom:941.159624px;}
.yf9{bottom:941.340600px;}
.y18e{bottom:942.779623px;}
.y17e{bottom:943.139623px;}
.y9b{bottom:943.679623px;}
.y11{bottom:947.639621px;}
.y12{bottom:952.859619px;}
.y80{bottom:953.759618px;}
.y11a{bottom:961.679615px;}
.ya9{bottom:963.839614px;}
.y62{bottom:964.199614px;}
.yf{bottom:967.979613px;}
.yc6{bottom:970.679612px;}
.y10{bottom:973.199611px;}
.y9a{bottom:974.819610px;}
.y161{bottom:984.539606px;}
.y7f{bottom:984.899606px;}
.yd8{bottom:988.859604px;}
.ye{bottom:994.979602px;}
.y61{bottom:995.159602px;}
.y17d{bottom:1005.239598px;}
.y99{bottom:1005.779598px;}
.yc5{bottom:1012.259595px;}
.yd{bottom:1015.679594px;}
.y7e{bottom:1015.859594px;}
.y60{bottom:1026.299589px;}
.yd7{bottom:1026.659589px;}
.yc4{bottom:1029.539588px;}
.yc3{bottom:1033.139587px;}
.y98{bottom:1036.919585px;}
.y36{bottom:1041.599583px;}
.y14d{bottom:1046.999581px;}
.y32{bottom:1051.859579px;}
.y5f{bottom:1057.259577px;}
.y35{bottom:1062.839575px;}
.y17c{bottom:1067.699573px;}
.y7d{bottom:1067.879573px;}
.yc2{bottom:1081.379567px;}
.y5e{bottom:1088.399565px;}
.y160{bottom:1088.579565px;}
.y34{bottom:1095.959562px;}
.y7c{bottom:1099.019560px;}
.y15f{bottom:1109.279556px;}
.y33{bottom:1125.659550px;}
.y37{bottom:1128.539549px;}
.y5d{bottom:1129.979548px;}
.y4{bottom:1151.579539px;}
.y7{bottom:1181.459527px;}
.y3{bottom:1184.699526px;}
.y2{bottom:1201.979519px;}
.y1{bottom:1219.259512px;}
.h3{height:5.760000px;}
.he{height:13.680000px;}
.h12{height:14.040000px;}
.h1e{height:20.160000px;}
.h1c{height:20.520000px;}
.h10{height:20.568507px;}
.hc{height:20.996710px;}
.hf{height:21.705460px;}
.h6{height:21.960000px;}
.h9{height:26.350302px;}
.hb{height:26.578114px;}
.hd{height:33.494752px;}
.h13{height:33.706744px;}
.h5{height:34.625377px;}
.h1b{height:36.068540px;}
.h15{height:36.624009px;}
.h1a{height:36.692563px;}
.h4{height:36.703110px;}
.h16{height:36.914048px;}
.h14{height:39.339828px;}
.h8{height:40.501390px;}
.ha{height:40.851546px;}
.h1{height:42.894123px;}
.h18{height:43.536076px;}
.h7{height:48.796855px;}
.h19{height:50.800761px;}
.h2{height:51.679667px;}
.h17{height:52.417948px;}
.h1d{height:55.140447px;}
.h11{height:57.585914px;}
.h0{height:1263.000000px;}
.w3{width:3.240000px;}
.wd{width:7.020000px;}
.we{width:7.740000px;}
.wf{width:7.920000px;}
.w10{width:8.100000px;}
.w12{width:9.000000px;}
.w2{width:10.620000px;}
.w6{width:22.500000px;}
.wa{width:34.200000px;}
.w11{width:40.500000px;}
.wb{width:55.440000px;}
.wc{width:58.140000px;}
.w7{width:61.200000px;}
.w13{width:108.900000px;}
.w9{width:109.800000px;}
.w14{width:161.460000px;}
.w4{width:187.560000px;}
.w5{width:225.360000px;}
.w8{width:380.340000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x3c{left:67.319973px;}
.x3a{left:69.299972px;}
.x35{left:77.759969px;}
.x36{left:83.340000px;}
.x38{left:86.579965px;}
.x39{left:88.379988px;}
.x1{left:107.999957px;}
.x5d{left:110.339714px;}
.x7{left:116.819953px;}
.x9{left:119.339952px;}
.x3b{left:125.999950px;}
.x56{left:130.679948px;}
.x4{left:132.659947px;}
.x40{left:134.999946px;}
.x37{left:138.780000px;}
.x42{left:149.399500px;}
.x46{left:161.999935px;}
.x48{left:169.559932px;}
.x47{left:171.179932px;}
.x4a{left:176.399929px;}
.x49{left:180.539928px;}
.x18{left:187.919925px;}
.x44{left:188.999846px;}
.x19{left:191.693923px;}
.x28{left:196.193922px;}
.x29{left:202.679919px;}
.x2a{left:206.459917px;}
.x25{left:208.979916px;}
.x3d{left:210.959916px;}
.x26{left:212.753915px;}
.x1e{left:229.679908px;}
.x1f{left:233.459907px;}
.x62{left:239.040000px;}
.x2d{left:240.839904px;}
.x1b{left:243.719903px;}
.x1c{left:247.493901px;}
.x3e{left:249.479900px;}
.xa{left:251.459899px;}
.x3f{left:254.339898px;}
.x12{left:255.599348px;}
.xb{left:263.699895px;}
.x52{left:264.959894px;}
.x31{left:271.979197px;}
.x55{left:273.959890px;}
.x5c{left:275.039890px;}
.x5e{left:279.180471px;}
.x57{left:281.698784px;}
.x21{left:283.499887px;}
.x22{left:287.279885px;}
.x2c{left:291.959883px;}
.x2{left:302.579879px;}
.x2e{left:308.699877px;}
.x59{left:343.081633px;}
.x43{left:346.679957px;}
.x4b{left:352.799859px;}
.x63{left:364.500000px;}
.x4c{left:365.939854px;}
.x32{left:370.799852px;}
.x2f{left:377.639795px;}
.x5{left:397.979841px;}
.x13{left:402.839839px;}
.x8{left:419.759942px;}
.xc{left:433.799826px;}
.x5f{left:434.880397px;}
.xd{left:438.659825px;}
.x53{left:440.460000px;}
.x5a{left:442.620000px;}
.x64{left:475.380000px;}
.x24{left:512.100000px;}
.x14{left:520.379792px;}
.x15{left:525.239790px;}
.x30{left:549.179780px;}
.x33{left:578.339769px;}
.x58{left:590.401479px;}
.xe{left:608.579757px;}
.xf{left:613.439755px;}
.x16{left:632.519747px;}
.x17{left:637.379745px;}
.x4d{left:639.719744px;}
.x60{left:642.420793px;}
.x4e{left:645.299742px;}
.x3{left:656.639737px;}
.x41{left:660.419116px;}
.x1d{left:667.080000px;}
.x61{left:682.920000px;}
.x1a{left:704.880000px;}
.x4f{left:723.239711px;}
.x34{left:734.578971px;}
.x50{left:740.339704px;}
.x51{left:754.379109px;}
.x10{left:764.999694px;}
.x11{left:769.859692px;}
.x54{left:772.919691px;}
.x5b{left:776.160000px;}
.x6{left:781.380000px;}
.x27{left:782.640000px;}
.x45{left:785.158896px;}
.x65{left:803.880000px;}
.x23{left:831.240000px;}
.x2b{left:858.240000px;}
.x20{left:869.940000px;}
@media print{
.v1{vertical-align:-8.959996pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.009381pt;}
.ls10{letter-spacing:0.009446pt;}
.ls6{letter-spacing:0.016533pt;}
.lsf{letter-spacing:0.018878pt;}
.lsd{letter-spacing:0.018880pt;}
.ls12{letter-spacing:0.018917pt;}
.lsc{letter-spacing:0.138560pt;}
.ls2{letter-spacing:0.166347pt;}
.ls8{letter-spacing:0.168267pt;}
.ls1{letter-spacing:0.211375pt;}
.ls3{letter-spacing:0.264687pt;}
.lse{letter-spacing:1.620799pt;}
.ls7{letter-spacing:9.774183pt;}
.lsa{letter-spacing:30.236308pt;}
.ls5{letter-spacing:56.617916pt;}
.lsb{letter-spacing:78.264502pt;}
.ls4{letter-spacing:80.952263pt;}
.ls0{letter-spacing:1252.202833pt;}
.wsc{word-spacing:-42.111983pt;}
.ws0{word-spacing:-40.787358pt;}
.wsa{word-spacing:-31.871987pt;}
.wsd{word-spacing:-29.899508pt;}
.ws6{word-spacing:-28.816521pt;}
.wsf{word-spacing:-16.018911pt;}
.wse{word-spacing:-16.018872pt;}
.ws9{word-spacing:-15.999994pt;}
.ws3{word-spacing:-14.463994pt;}
.ws5{word-spacing:-13.343995pt;}
.ws7{word-spacing:-13.279995pt;}
.wsb{word-spacing:-11.359995pt;}
.ws2{word-spacing:-10.719996pt;}
.ws4{word-spacing:-9.433596pt;}
.ws1{word-spacing:-8.639997pt;}
.ws8{word-spacing:0.000000pt;}
._2{margin-left:-8.296142pt;}
._21{margin-left:-6.881625pt;}
._5{margin-left:-5.491639pt;}
._1{margin-left:-3.771380pt;}
._4{margin-left:-2.419536pt;}
._3{margin-left:-1.396267pt;}
._0{width:0.891642pt;}
._f{width:2.239602pt;}
._8{width:3.449855pt;}
._9{width:4.621825pt;}
._c{width:6.008377pt;}
._10{width:7.135452pt;}
._12{width:8.120249pt;}
._7{width:9.537856pt;}
._6{width:10.509371pt;}
._a{width:12.045049pt;}
._11{width:12.992307pt;}
._13{width:14.105269pt;}
._15{width:15.091913pt;}
._14{width:16.942431pt;}
._17{width:17.849873pt;}
._16{width:18.955199pt;}
._18{width:20.144522pt;}
._1e{width:21.318343pt;}
._1f{width:22.247977pt;}
._1d{width:23.974238pt;}
._20{width:25.107652pt;}
._1c{width:26.324902pt;}
._1b{width:27.355695pt;}
._19{width:28.273764pt;}
._27{width:29.753224pt;}
._e{width:31.092329pt;}
._28{width:32.599242pt;}
._25{width:33.625080pt;}
._b{width:34.805570pt;}
._d{width:35.865594pt;}
._26{width:45.479357pt;}
._23{width:133.242418pt;}
._24{width:161.640453pt;}
._22{width:230.973530pt;}
._29{width:376.417219pt;}
._1a{width:1152.709656pt;}
.fs5{font-size:26.879989pt;}
.fs4{font-size:34.559986pt;}
.fs3{font-size:42.879983pt;}
.fs7{font-size:45.439982pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:63.999974pt;}
.fs8{font-size:72.319971pt;}
.fs6{font-size:74.879970pt;}
.y6{bottom:-10.079991pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.106875pt;}
.y3a{bottom:2.399210pt;}
.y16{bottom:2.559139pt;}
.y1a{bottom:2.559145pt;}
.y1e{bottom:2.559151pt;}
.y22{bottom:2.559156pt;}
.y26{bottom:2.559162pt;}
.y2a{bottom:2.559168pt;}
.y30{bottom:2.559179pt;}
.y12c{bottom:3.519270pt;}
.y134{bottom:3.519307pt;}
.y13a{bottom:3.519344pt;}
.yfa{bottom:3.839130pt;}
.y12f{bottom:3.839277pt;}
.y10e{bottom:3.839299pt;}
.y110{bottom:3.839302pt;}
.yb{bottom:4.320034pt;}
.yc{bottom:29.226922pt;}
.ya{bottom:43.786880pt;}
.y8{bottom:48.106914pt;}
.y9{bottom:50.346913pt;}
.y119{bottom:127.786616pt;}
.y14c{bottom:129.386615pt;}
.y7b{bottom:129.706615pt;}
.y57{bottom:130.666881pt;}
.y15e{bottom:134.826613pt;}
.yec{bottom:135.466612pt;}
.y17b{bottom:135.946612pt;}
.yc1{bottom:139.146611pt;}
.ya8{bottom:142.346610pt;}
.y56{bottom:145.066609pt;}
.y97{bottom:148.106607pt;}
.y15d{bottom:153.226605pt;}
.yd6{bottom:154.186605pt;}
.y17a{bottom:154.346605pt;}
.y118{bottom:155.466604pt;}
.y14b{bottom:157.066604pt;}
.y7a{bottom:157.386604pt;}
.yeb{bottom:163.146601pt;}
.yd5{bottom:169.066599pt;}
.ya7{bottom:170.026599pt;}
.y179{bottom:172.746598pt;}
.y5c{bottom:172.906598pt;}
.y140{bottom:173.706597pt;}
.y96{bottom:175.786596pt;}
.y107{bottom:179.146595pt;}
.yc0{bottom:182.346594pt;}
.y117{bottom:182.986593pt;}
.y14a{bottom:184.586593pt;}
.y79{bottom:184.906593pt;}
.ybf{bottom:185.546592pt;}
.y5b{bottom:189.066591pt;}
.y15c{bottom:190.186591pt;}
.yea{bottom:190.666590pt;}
.ya6{bottom:197.546588pt;}
.y95{bottom:203.306585pt;}
.y44{bottom:203.466585pt;}
.y5a{bottom:205.066585pt;}
.y106{bottom:206.826584pt;}
.y178{bottom:209.866583pt;}
.y116{bottom:210.666582pt;}
.y149{bottom:212.266582pt;}
.y78{bottom:212.586582pt;}
.ybe{bottom:212.746582pt;}
.y13f{bottom:214.826581pt;}
.ybd{bottom:215.946580pt;}
.ye9{bottom:218.346579pt;}
.y59{bottom:221.066578pt;}
.ya5{bottom:225.226577pt;}
.y15b{bottom:227.306576pt;}
.y177{bottom:228.266575pt;}
.y103{bottom:230.826574pt;}
.y94{bottom:230.986574pt;}
.y13e{bottom:233.226573pt;}
.y58{bottom:237.706572pt;}
.y115{bottom:238.186571pt;}
.y148{bottom:239.786571pt;}
.y77{bottom:240.106571pt;}
.ybc{bottom:242.666570pt;}
.y15a{bottom:245.706568pt;}
.ybb{bottom:245.866568pt;}
.y176{bottom:246.666568pt;}
.yf8{bottom:248.746567pt;}
.y105{bottom:249.386567pt;}
.y150{bottom:249.546567pt;}
.y13d{bottom:251.626566pt;}
.yd4{bottom:252.586566pt;}
.ya4{bottom:252.746566pt;}
.y93{bottom:258.506563pt;}
.y159{bottom:264.106561pt;}
.ye8{bottom:264.586561pt;}
.y147{bottom:267.466560pt;}
.y76{bottom:267.786560pt;}
.y13c{bottom:270.026559pt;}
.yba{bottom:270.826558pt;}
.y55{bottom:273.066557pt;}
.yb9{bottom:274.026557pt;}
.yf7{bottom:276.426556pt;}
.y14f{bottom:277.226556pt;}
.ya3{bottom:280.266555pt;}
.y175{bottom:283.626553pt;}
.y114{bottom:284.426553pt;}
.y102{bottom:286.026552pt;}
.y14e{bottom:286.186552pt;}
.y13b{bottom:288.426551pt;}
.y75{bottom:295.306549pt;}
.yb8{bottom:298.986547pt;}
.y158{bottom:301.066546pt;}
.y18d{bottom:302.026546pt;}
.yb7{bottom:302.186546pt;}
.yf6{bottom:303.946545pt;}
.y139{bottom:303.947200pt;}
.y92{bottom:304.746545pt;}
.y54{bottom:306.986544pt;}
.ye7{bottom:310.826542pt;}
.y113{bottom:312.106542pt;}
.y101{bottom:313.706541pt;}
.ya2{bottom:317.386540pt;}
.y157{bottom:319.466539pt;}
.y174{bottom:320.746538pt;}
.y53{bottom:322.346538pt;}
.y74{bottom:322.986537pt;}
.y138{bottom:325.866536pt;}
.y43{bottom:327.466536pt;}
.yf5{bottom:331.626534pt;}
.y91{bottom:332.426534pt;}
.yd3{bottom:338.186531pt;}
.ye6{bottom:338.346531pt;}
.y18c{bottom:339.146531pt;}
.y112{bottom:339.626531pt;}
.y146{bottom:341.386530pt;}
.y137{bottom:344.266529pt;}
.yb6{bottom:348.746527pt;}
.ya1{bottom:353.066525pt;}
.y156{bottom:356.586524pt;}
.y18b{bottom:357.546524pt;}
.y173{bottom:357.866524pt;}
.yf4{bottom:359.146523pt;}
.y90{bottom:359.946523pt;}
.y136{bottom:362.666522pt;}
.y52{bottom:364.106521pt;}
.ye5{bottom:366.026520pt;}
.y145{bottom:368.906519pt;}
.y73{bottom:369.226519pt;}
.y155{bottom:374.986517pt;}
.y172{bottom:376.266516pt;}
.ya0{bottom:380.586514pt;}
.yd2{bottom:380.906514pt;}
.y135{bottom:381.066514pt;}
.y111{bottom:386.666512pt;}
.y51{bottom:386.986512pt;}
.y8f{bottom:387.626512pt;}
.yb5{bottom:391.466510pt;}
.ye4{bottom:393.546509pt;}
.y171{bottom:394.666509pt;}
.y144{bottom:396.426508pt;}
.y133{bottom:396.587200pt;}
.y72{bottom:396.746508pt;}
.y9f{bottom:404.746505pt;}
.yf3{bottom:405.386505pt;}
.y10f{bottom:407.467200pt;}
.y50{bottom:410.026503pt;}
.y154{bottom:412.106502pt;}
.y18a{bottom:413.066501pt;}
.y8e{bottom:415.146501pt;}
.y10d{bottom:416.107200pt;}
.y132{bottom:418.506499pt;}
.y42{bottom:420.746498pt;}
.y143{bottom:424.106497pt;}
.y71{bottom:424.426497pt;}
.y153{bottom:430.506494pt;}
.y189{bottom:431.466494pt;}
.y170{bottom:431.626494pt;}
.y4f{bottom:433.066493pt;}
.y131{bottom:436.906492pt;}
.ye3{bottom:439.946491pt;}
.yd1{bottom:441.226490pt;}
.y8d{bottom:442.826490pt;}
.y16f{bottom:450.026487pt;}
.y142{bottom:451.626486pt;}
.y70{bottom:451.946486pt;}
.y130{bottom:455.306485pt;}
.y4e{bottom:455.946484pt;}
.yf2{bottom:460.586482pt;}
.y152{bottom:467.466480pt;}
.y41{bottom:467.626480pt;}
.y188{bottom:468.426479pt;}
.yb4{bottom:469.546479pt;}
.y12e{bottom:469.867200pt;}
.y8c{bottom:470.346479pt;}
.y12d{bottom:473.706477pt;}
.yd0{bottom:478.186475pt;}
.y4d{bottom:478.986475pt;}
.y141{bottom:479.306475pt;}
.y6f{bottom:479.626475pt;}
.y40{bottom:481.226474pt;}
.ye2{bottom:486.186472pt;}
.y16e{bottom:487.146472pt;}
.y12b{bottom:489.227200pt;}
.y3f{bottom:494.826469pt;}
.y8b{bottom:498.026467pt;}
.y4c{bottom:502.026466pt;}
.y151{bottom:504.906465pt;}
.y187{bottom:505.546464pt;}
.yf1{bottom:506.826464pt;}
.y6e{bottom:507.146464pt;}
.y3e{bottom:507.466464pt;}
.y12a{bottom:511.146462pt;}
.ye1{bottom:513.706461pt;}
.yb3{bottom:515.786460pt;}
.y186{bottom:523.946457pt;}
.y16d{bottom:524.266457pt;}
.ycf{bottom:524.586457pt;}
.y4b{bottom:525.066457pt;}
.y8a{bottom:525.546456pt;}
.y129{bottom:529.546455pt;}
.yf0{bottom:534.506453pt;}
.y6d{bottom:534.826453pt;}
.y16c{bottom:542.666450pt;}
.yb2{bottom:543.466449pt;}
.ye0{bottom:547.306448pt;}
.y4a{bottom:547.946447pt;}
.yce{bottom:552.106446pt;}
.y100{bottom:553.066445pt;}
.y3d{bottom:553.226445pt;}
.y16b{bottom:561.066442pt;}
.yef{bottom:562.026442pt;}
.y6c{bottom:562.346442pt;}
.y128{bottom:566.346440pt;}
.y49{bottom:570.986438pt;}
.ycd{bottom:576.746436pt;}
.y185{bottom:579.466435pt;}
.ycc{bottom:579.946435pt;}
.y89{bottom:580.746434pt;}
.y127{bottom:584.746433pt;}
.yb1{bottom:589.706431pt;}
.y6b{bottom:590.026431pt;}
.y48{bottom:594.026429pt;}
.y184{bottom:597.866428pt;}
.y16a{bottom:598.026427pt;}
.y3c{bottom:598.986427pt;}
.y104{bottom:599.466427pt;}
.y126{bottom:607.146424pt;}
.yff{bottom:608.266423pt;}
.yee{bottom:608.426423pt;}
.y3b{bottom:612.746422pt;}
.ycb{bottom:613.706421pt;}
.y183{bottom:616.266420pt;}
.y169{bottom:616.426420pt;}
.y47{bottom:617.066420pt;}
.yb0{bottom:617.226420pt;}
.y6a{bottom:617.546420pt;}
.y10c{bottom:618.026419pt;}
.y125{bottom:625.546416pt;}
.y88{bottom:626.986416pt;}
.ydf{bottom:630.186415pt;}
.yed{bottom:635.946412pt;}
.y45{bottom:637.226412pt;}
.y46{bottom:639.946411pt;}
.y39{bottom:639.947200pt;}
.y124{bottom:643.946409pt;}
.y69{bottom:645.226409pt;}
.y10b{bottom:645.706408pt;}
.y182{bottom:653.226405pt;}
.y168{bottom:653.546405pt;}
.y87{bottom:654.666405pt;}
.y192{bottom:661.866402pt;}
.y123{bottom:662.346402pt;}
.yfe{bottom:663.466401pt;}
.yaf{bottom:663.626401pt;}
.y38{bottom:666.826400pt;}
.yde{bottom:667.146400pt;}
.y167{bottom:671.946398pt;}
.y68{bottom:672.746398pt;}
.y10a{bottom:673.226397pt;}
.y122{bottom:680.746394pt;}
.y86{bottom:682.186394pt;}
.yca{bottom:690.346391pt;}
.yae{bottom:691.146390pt;}
.y109{bottom:700.906386pt;}
.y121{bottom:703.146385pt;}
.y31{bottom:703.946385pt;}
.ydd{bottom:704.266385pt;}
.y191{bottom:708.426383pt;}
.y181{bottom:708.746383pt;}
.y166{bottom:709.066383pt;}
.y85{bottom:709.866383pt;}
.y2f{bottom:716.267200pt;}
.y2e{bottom:718.826379pt;}
.y67{bottom:718.986379pt;}
.y120{bottom:721.546378pt;}
.y2d{bottom:722.186378pt;}
.yc9{bottom:727.306376pt;}
.y165{bottom:727.466376pt;}
.y108{bottom:728.426375pt;}
.y2c{bottom:733.066373pt;}
.y2b{bottom:737.066372pt;}
.y84{bottom:737.386372pt;}
.y11f{bottom:739.946371pt;}
.y29{bottom:744.747200pt;}
.y190{bottom:745.546368pt;}
.y180{bottom:745.866368pt;}
.yad{bottom:746.346368pt;}
.y66{bottom:746.666368pt;}
.y28{bottom:747.306368pt;}
.ydc{bottom:750.506366pt;}
.y27{bottom:751.306366pt;}
.y9e{bottom:756.106364pt;}
.y11e{bottom:758.346363pt;}
.y25{bottom:758.827200pt;}
.y24{bottom:761.386362pt;}
.y17f{bottom:764.266361pt;}
.yc8{bottom:764.426361pt;}
.yfd{bottom:764.906361pt;}
.y83{bottom:765.066361pt;}
.y23{bottom:765.386361pt;}
.y21{bottom:773.067200pt;}
.yac{bottom:773.866357pt;}
.y65{bottom:774.186357pt;}
.ydb{bottom:775.146357pt;}
.y20{bottom:775.626356pt;}
.y11d{bottom:776.746356pt;}
.yda{bottom:778.346355pt;}
.y1f{bottom:779.626355pt;}
.y164{bottom:782.826354pt;}
.y9d{bottom:783.626353pt;}
.y1d{bottom:787.307200pt;}
.y1c{bottom:789.866351pt;}
.y18f{bottom:791.786350pt;}
.y82{bottom:792.586350pt;}
.y1b{bottom:793.866349pt;}
.y11c{bottom:795.946348pt;}
.yc7{bottom:798.026347pt;}
.y163{bottom:801.226346pt;}
.yab{bottom:801.546346pt;}
.y19{bottom:801.547200pt;}
.y64{bottom:801.866346pt;}
.y18{bottom:804.106345pt;}
.y17{bottom:808.106343pt;}
.y9c{bottom:811.306342pt;}
.yfc{bottom:811.946342pt;}
.yd9{bottom:812.266342pt;}
.y15{bottom:815.787200pt;}
.y14{bottom:818.346339pt;}
.y162{bottom:819.626339pt;}
.y81{bottom:820.266339pt;}
.y13{bottom:822.346338pt;}
.yaa{bottom:829.066335pt;}
.y63{bottom:829.386335pt;}
.y11b{bottom:834.186333pt;}
.yfb{bottom:836.586332pt;}
.yf9{bottom:836.747200pt;}
.y18e{bottom:838.026331pt;}
.y17e{bottom:838.346331pt;}
.y9b{bottom:838.826331pt;}
.y11{bottom:842.346330pt;}
.y12{bottom:846.986328pt;}
.y80{bottom:847.786328pt;}
.y11a{bottom:854.826325pt;}
.ya9{bottom:856.746324pt;}
.y62{bottom:857.066324pt;}
.yf{bottom:860.426322pt;}
.yc6{bottom:862.826322pt;}
.y10{bottom:865.066321pt;}
.y9a{bottom:866.506320pt;}
.y161{bottom:875.146317pt;}
.y7f{bottom:875.466316pt;}
.yd8{bottom:878.986315pt;}
.ye{bottom:884.426313pt;}
.y61{bottom:884.586313pt;}
.y17d{bottom:893.546309pt;}
.y99{bottom:894.026309pt;}
.yc5{bottom:899.786307pt;}
.yd{bottom:902.826306pt;}
.y7e{bottom:902.986305pt;}
.y60{bottom:912.266302pt;}
.yd7{bottom:912.586302pt;}
.yc4{bottom:915.146301pt;}
.yc3{bottom:918.346299pt;}
.y98{bottom:921.706298pt;}
.y36{bottom:925.866296pt;}
.y14d{bottom:930.666294pt;}
.y32{bottom:934.986293pt;}
.y5f{bottom:939.786291pt;}
.y35{bottom:944.746289pt;}
.y17c{bottom:949.066287pt;}
.y7d{bottom:949.226287pt;}
.yc2{bottom:961.226282pt;}
.y5e{bottom:967.466280pt;}
.y160{bottom:967.626280pt;}
.y34{bottom:974.186277pt;}
.y7c{bottom:976.906276pt;}
.y15f{bottom:986.026272pt;}
.y33{bottom:1000.586266pt;}
.y37{bottom:1003.146265pt;}
.y5d{bottom:1004.426265pt;}
.y4{bottom:1023.626257pt;}
.y7{bottom:1050.186247pt;}
.y3{bottom:1053.066245pt;}
.y2{bottom:1068.426239pt;}
.y1{bottom:1083.786233pt;}
.h3{height:5.120000pt;}
.he{height:12.160000pt;}
.h12{height:12.480000pt;}
.h1e{height:17.920000pt;}
.h1c{height:18.240000pt;}
.h10{height:18.283118pt;}
.hc{height:18.663743pt;}
.hf{height:19.293742pt;}
.h6{height:19.520000pt;}
.h9{height:23.422491pt;}
.hb{height:23.624991pt;}
.hd{height:29.773113pt;}
.h13{height:29.961551pt;}
.h5{height:30.778113pt;}
.h1b{height:32.060925pt;}
.h15{height:32.554674pt;}
.h1a{height:32.615612pt;}
.h4{height:32.624987pt;}
.h16{height:32.812487pt;}
.h14{height:34.968736pt;}
.h8{height:36.001236pt;}
.ha{height:36.312485pt;}
.h1{height:38.128110pt;}
.h18{height:38.698735pt;}
.h7{height:43.374983pt;}
.h19{height:45.156232pt;}
.h2{height:45.937482pt;}
.h17{height:46.593731pt;}
.h1d{height:49.013730pt;}
.h11{height:51.187480pt;}
.h0{height:1122.666667pt;}
.w3{width:2.880000pt;}
.wd{width:6.240000pt;}
.we{width:6.880000pt;}
.wf{width:7.040000pt;}
.w10{width:7.200000pt;}
.w12{width:8.000000pt;}
.w2{width:9.440000pt;}
.w6{width:20.000000pt;}
.wa{width:30.400000pt;}
.w11{width:36.000000pt;}
.wb{width:49.280000pt;}
.wc{width:51.680000pt;}
.w7{width:54.400000pt;}
.w13{width:96.800000pt;}
.w9{width:97.600000pt;}
.w14{width:143.520000pt;}
.w4{width:166.720000pt;}
.w5{width:200.320000pt;}
.w8{width:338.080000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x3c{left:59.839976pt;}
.x3a{left:61.599975pt;}
.x35{left:69.119972pt;}
.x36{left:74.080000pt;}
.x38{left:76.959969pt;}
.x39{left:78.559990pt;}
.x1{left:95.999962pt;}
.x5d{left:98.079746pt;}
.x7{left:103.839958pt;}
.x9{left:106.079958pt;}
.x3b{left:111.999955pt;}
.x56{left:116.159954pt;}
.x4{left:117.919953pt;}
.x40{left:119.999952pt;}
.x37{left:123.360000pt;}
.x42{left:132.799556pt;}
.x46{left:143.999942pt;}
.x48{left:150.719940pt;}
.x47{left:152.159939pt;}
.x4a{left:156.799937pt;}
.x49{left:160.479936pt;}
.x18{left:167.039933pt;}
.x44{left:167.999863pt;}
.x19{left:170.394599pt;}
.x28{left:174.394597pt;}
.x29{left:180.159928pt;}
.x2a{left:183.519927pt;}
.x25{left:185.759926pt;}
.x3d{left:187.519925pt;}
.x26{left:189.114591pt;}
.x1e{left:204.159918pt;}
.x1f{left:207.519917pt;}
.x62{left:212.480000pt;}
.x2d{left:214.079914pt;}
.x1b{left:216.639913pt;}
.x1c{left:219.994579pt;}
.x3e{left:221.759911pt;}
.xa{left:223.519911pt;}
.x3f{left:226.079910pt;}
.x12{left:227.199420pt;}
.xb{left:234.399906pt;}
.x52{left:235.519906pt;}
.x31{left:241.759286pt;}
.x55{left:243.519903pt;}
.x5c{left:244.479902pt;}
.x5e{left:248.160419pt;}
.x57{left:250.398919pt;}
.x21{left:251.999899pt;}
.x22{left:255.359898pt;}
.x2c{left:259.519896pt;}
.x2{left:268.959892pt;}
.x2e{left:274.399890pt;}
.x59{left:304.961451pt;}
.x43{left:308.159962pt;}
.x4b{left:313.599875pt;}
.x63{left:324.000000pt;}
.x4c{left:325.279870pt;}
.x32{left:329.599868pt;}
.x2f{left:335.679818pt;}
.x5{left:353.759858pt;}
.x13{left:358.079857pt;}
.x8{left:373.119948pt;}
.xc{left:385.599846pt;}
.x5f{left:386.560353pt;}
.xd{left:389.919844pt;}
.x53{left:391.520000pt;}
.x5a{left:393.440000pt;}
.x64{left:422.560000pt;}
.x24{left:455.200000pt;}
.x14{left:462.559815pt;}
.x15{left:466.879813pt;}
.x30{left:488.159805pt;}
.x33{left:514.079794pt;}
.x58{left:524.801314pt;}
.xe{left:540.959784pt;}
.xf{left:545.279782pt;}
.x16{left:562.239775pt;}
.x17{left:566.559773pt;}
.x4d{left:568.639773pt;}
.x60{left:571.040705pt;}
.x4e{left:573.599771pt;}
.x3{left:583.679767pt;}
.x41{left:587.039214pt;}
.x1d{left:592.960000pt;}
.x61{left:607.040000pt;}
.x1a{left:626.560000pt;}
.x4f{left:642.879743pt;}
.x34{left:652.959085pt;}
.x50{left:658.079737pt;}
.x51{left:670.559208pt;}
.x10{left:679.999728pt;}
.x11{left:684.319726pt;}
.x54{left:687.039725pt;}
.x5b{left:689.920000pt;}
.x6{left:694.560000pt;}
.x27{left:695.680000pt;}
.x45{left:697.919019pt;}
.x65{left:714.560000pt;}
.x23{left:738.880000pt;}
.x2b{left:762.880000pt;}
.x20{left:773.280000pt;}
}




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