
    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_81dab72223fb9b28d084d0f9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.680176;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_b8976c33b514efab78bc31fe.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.930000;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_6ee911632d1eb14932639c42.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941000;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_534ea46d5596bbd4b8dd10e7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.402354;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_5d209253de2ff676f7c2fa4d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.033000;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_33c9d59f9131ee1de1ffc683.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.065000;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_54623480e5d9aadb0510488a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.943000;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_96c711bf39eb91c7fa1a6ea7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284668;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_0303e07a2ff6f5e6d226491b.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_2e338884131034c6f6415d11.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.690918;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;}
.m9{transform:matrix(0.236424,0.000000,-0.080857,0.236563,0,0);-ms-transform:matrix(0.236424,0.000000,-0.080857,0.236563,0,0);-webkit-transform:matrix(0.236424,0.000000,-0.080857,0.236563,0,0);}
.m8{transform:matrix(0.236429,0.000000,-0.080860,0.236562,0,0);-ms-transform:matrix(0.236429,0.000000,-0.080860,0.236562,0,0);-webkit-transform:matrix(0.236429,0.000000,-0.080860,0.236562,0,0);}
.m5{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);}
.m4{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2{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.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m7{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.861840px;}
.ls4{letter-spacing:-0.331200px;}
.ls2{letter-spacing:-0.287280px;}
.ls3{letter-spacing:-0.066240px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.077760px;}
.lsa{letter-spacing:0.164460px;}
.ls9{letter-spacing:0.224957px;}
.lsf{letter-spacing:7.789617px;}
.ls1{letter-spacing:8.280000px;}
.lsb{letter-spacing:28.130809px;}
.lsc{letter-spacing:49.743700px;}
.ls7{letter-spacing:95.106562px;}
.ls8{letter-spacing:109.514956px;}
.lse{letter-spacing:197.261321px;}
.lsd{letter-spacing:197.981321px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-19.056240px;}
.ws2{word-spacing:-18.481680px;}
.ws13{word-spacing:-15.707514px;}
.ws11{word-spacing:-15.263994px;}
.ws14{word-spacing:-14.543994px;}
.ws4{word-spacing:-13.976640px;}
.ws12{word-spacing:-12.058555px;}
.ws3{word-spacing:-8.320320px;}
.ws0{word-spacing:0.000000px;}
.ws8{word-spacing:0.397440px;}
.wsc{word-spacing:0.662400px;}
.ws9{word-spacing:1.126080px;}
.wsb{word-spacing:4.040640px;}
.wsd{word-spacing:6.888960px;}
.ws5{word-spacing:7.617600px;}
.wse{word-spacing:8.346240px;}
.ws6{word-spacing:13.380480px;}
.wsf{word-spacing:17.686080px;}
.wsa{word-spacing:24.906240px;}
.ws10{word-spacing:28.483200px;}
.ws7{word-spacing:32.855040px;}
._a{margin-left:-14.275188px;}
._c{margin-left:-12.607224px;}
._b{margin-left:-11.162084px;}
._e{margin-left:-9.070501px;}
._d{margin-left:-7.526826px;}
._2{margin-left:-3.989982px;}
._1{margin-left:-1.126080px;}
._8{width:1.008041px;}
._0{width:2.010960px;}
._13{width:3.234304px;}
._10{width:4.942235px;}
._f{width:6.092476px;}
._12{width:7.876345px;}
._5{width:9.822570px;}
._4{width:11.231684px;}
._3{width:12.820067px;}
._1c{width:13.908529px;}
._1a{width:15.587177px;}
._6{width:16.726152px;}
._11{width:18.715827px;}
._14{width:19.765622px;}
._1b{width:20.959696px;}
._19{width:23.811985px;}
._1e{width:27.003604px;}
._16{width:28.127948px;}
._15{width:48.015581px;}
._18{width:60.665410px;}
._20{width:89.197884px;}
._17{width:156.808505px;}
._1f{width:166.591195px;}
._1d{width:197.261201px;}
._7{width:797.380658px;}
._9{width:1103.779961px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs5{font-size:48.239981px;}
.fsa{font-size:56.879977px;}
.fs9{font-size:59.759976px;}
.fs4{font-size:59.760000px;}
.fs8{font-size:66.239974px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:71.999971px;}
.fs2{font-size:72.000000px;}
.fsd{font-size:76.089538px;}
.fsb{font-size:77.759969px;}
.fse{font-size:84.239966px;}
.fsc{font-size:89.024962px;}
.fs7{font-size:95.759962px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y39{bottom:3.959063px;}
.y3d{bottom:3.959079px;}
.y41{bottom:3.959096px;}
.y4c{bottom:4.499196px;}
.y6{bottom:16.740000px;}
.y18{bottom:22.500000px;}
.y5f{bottom:56.280277px;}
.y2b{bottom:56.460277px;}
.y5e{bottom:70.680272px;}
.y2a{bottom:70.860272px;}
.y5d{bottom:89.580264px;}
.y29{bottom:89.760264px;}
.y114{bottom:105.239958px;}
.y172{bottom:125.759950px;}
.y173{bottom:125.760250px;}
.y1ba{bottom:126.659949px;}
.y8a{bottom:128.279949px;}
.y135{bottom:129.539948px;}
.y197{bottom:130.799948px;}
.yb5{bottom:131.879947px;}
.yd2{bottom:132.779947px;}
.y156{bottom:137.459945px;}
.y1ce{bottom:138.420000px;}
.y113{bottom:138.539945px;}
.y171{bottom:149.879940px;}
.y1b9{bottom:150.959940px;}
.y89{bottom:152.579939px;}
.y134{bottom:154.199938px;}
.y196{bottom:154.919938px;}
.yf3{bottom:157.619937px;}
.y16{bottom:157.680000px;}
.y155{bottom:161.579935px;}
.yb4{bottom:170.399932px;}
.yd1{bottom:171.299931px;}
.y112{bottom:171.659931px;}
.y1b8{bottom:175.079930px;}
.y88{bottom:176.699929px;}
.y133{bottom:178.499929px;}
.y195{bottom:179.039928px;}
.y14{bottom:180.540000px;}
.yf2{bottom:181.199928px;}
.y154{bottom:185.879926px;}
.y170{bottom:188.399925px;}
.yb3{bottom:193.799922px;}
.yd0{bottom:194.699922px;}
.y111{bottom:195.779922px;}
.y1b7{bottom:199.199920px;}
.y87{bottom:200.099920px;}
.y12{bottom:201.960000px;}
.y194{bottom:203.339919px;}
.y132{bottom:211.799915px;}
.y16f{bottom:211.979915px;}
.yf1{bottom:215.399914px;}
.yb2{bottom:217.379913px;}
.ycf{bottom:218.099913px;}
.y153{bottom:219.179912px;}
.y110{bottom:219.899912px;}
.y86{bottom:223.499911px;}
.y11{bottom:223.560000px;}
.y193{bottom:227.459909px;}
.y28{bottom:236.880000px;}
.y131{bottom:237.719905px;}
.y27{bottom:237.780000px;}
.yb1{bottom:240.779904px;}
.yf{bottom:244.980000px;}
.y85{bottom:246.899901px;}
.y1b6{bottom:247.619901px;}
.yf0{bottom:248.879900px;}
.y1b{bottom:249.840000px;}
.y16e{bottom:251.219900px;}
.y192{bottom:251.579899px;}
.y152{bottom:252.659899px;}
.yce{bottom:257.519897px;}
.y10f{bottom:258.419897px;}
.y25{bottom:260.640000px;}
.yb0{bottom:264.179894px;}
.ye{bottom:266.400000px;}
.y84{bottom:270.299892px;}
.y1b5{bottom:271.739891px;}
.yef{bottom:272.819891px;}
.y16d{bottom:274.799890px;}
.y151{bottom:278.579889px;}
.ycd{bottom:280.919888px;}
.y24{bottom:282.240000px;}
.y130{bottom:282.899887px;}
.y191{bottom:284.699886px;}
.yaf{bottom:287.579885px;}
.yc{bottom:287.820000px;}
.y83{bottom:293.699883px;}
.yee{bottom:296.939881px;}
.y10e{bottom:297.839881px;}
.y22{bottom:303.660000px;}
.ycc{bottom:304.499878px;}
.y1b4{bottom:305.039878px;}
.y190{bottom:308.999876px;}
.yb{bottom:309.420000px;}
.yae{bottom:310.979876px;}
.y16c{bottom:314.039874px;}
.y12f{bottom:316.199874px;}
.y82{bottom:317.099873px;}
.yed{bottom:321.419871px;}
.y150{bottom:323.579871px;}
.y21{bottom:325.080000px;}
.y1b3{bottom:328.979868px;}
.ya{bottom:330.840000px;}
.y10d{bottom:332.039867px;}
.y18f{bottom:333.119867px;}
.yad{bottom:334.379866px;}
.y16b{bottom:337.619865px;}
.ycb{bottom:338.699865px;}
.y81{bottom:340.499864px;}
.yec{bottom:345.359862px;}
.y1f{bottom:346.500000px;}
.y14f{bottom:347.699861px;}
.y12e{bottom:349.499860px;}
.y9{bottom:352.260000px;}
.y1b2{bottom:352.919859px;}
.y18e{bottom:357.239857px;}
.yac{bottom:357.779857px;}
.y80{bottom:363.899854px;}
.y1e{bottom:368.100000px;}
.y10c{bottom:370.379852px;}
.y14e{bottom:371.999851px;}
.y12d{bottom:373.619851px;}
.y16a{bottom:376.859849px;}
.y1b1{bottom:377.039849px;}
.yca{bottom:377.219849px;}
.yea{bottom:378.479836px;}
.yeb{bottom:378.479849px;}
.yab{bottom:381.179848px;}
.y7f{bottom:387.479845px;}
.y1d{bottom:389.520000px;}
.y18d{bottom:390.539844px;}
.y10b{bottom:393.779842px;}
.y14d{bottom:396.119842px;}
.y12c{bottom:397.739841px;}
.y169{bottom:400.439840px;}
.yc9{bottom:400.799840px;}
.ye9{bottom:402.959839px;}
.yaa{bottom:404.579838px;}
.y1b0{bottom:409.979836px;}
.y7e{bottom:410.879836px;}
.y1c{bottom:410.940000px;}
.y1cd{bottom:413.399835px;}
.y18c{bottom:414.659834px;}
.y10a{bottom:417.359833px;}
.ya9{bottom:427.979829px;}
.y14c{bottom:429.239828px;}
.y12b{bottom:431.219828px;}
.y1af{bottom:434.099826px;}
.y7d{bottom:434.279826px;}
.ye8{bottom:436.619825px;}
.y4e{bottom:437.879825px;}
.y18b{bottom:438.779824px;}
.y168{bottom:439.679824px;}
.yc8{bottom:440.039824px;}
.y1cc{bottom:442.559823px;}
.ya8{bottom:451.379819px;}
.y109{bottom:451.559819px;}
.y14b{bottom:453.539819px;}
.y7c{bottom:457.679817px;}
.y18a{bottom:463.079815px;}
.y167{bottom:463.259815px;}
.yc7{bottom:463.619815px;}
.y12a{bottom:464.519814px;}
.y1ae{bottom:467.399813px;}
.ye7{bottom:470.099812px;}
.y1cb{bottom:471.539811px;}
.ya7{bottom:474.779810px;}
.y4d{bottom:476.579809px;}
.y14a{bottom:477.659809px;}
.y7b{bottom:481.079808px;}
.y189{bottom:487.199805px;}
.y108{bottom:490.259804px;}
.y1ad{bottom:491.519803px;}
.ye6{bottom:496.019802px;}
.y129{bottom:497.639801px;}
.ya6{bottom:498.179801px;}
.y1ca{bottom:500.699800px;}
.y166{bottom:502.679799px;}
.yc6{bottom:503.039799px;}
.y7a{bottom:504.479798px;}
.y4b{bottom:505.200600px;}
.y4a{bottom:509.699796px;}
.y26{bottom:510.480000px;}
.y149{bottom:510.959796px;}
.y188{bottom:511.319795px;}
.y107{bottom:513.659795px;}
.y1ac{bottom:515.639794px;}
.ya5{bottom:521.579791px;}
.y165{bottom:526.079790px;}
.yc5{bottom:526.439789px;}
.y79{bottom:527.879789px;}
.y1c9{bottom:529.859788px;}
.y128{bottom:530.759788px;}
.y187{bottom:535.619786px;}
.y106{bottom:537.239785px;}
.y1ab{bottom:539.939784px;}
.ye5{bottom:541.019784px;}
.y49{bottom:542.999783px;}
.y148{bottom:544.259782px;}
.ya4{bottom:544.979782px;}
.y78{bottom:551.279779px;}
.y127{bottom:555.059778px;}
.y1c8{bottom:559.019776px;}
.y23{bottom:559.440000px;}
.y4{bottom:560.235000px;}
.yc4{bottom:560.639776px;}
.y164{bottom:561.719775px;}
.y1aa{bottom:564.059774px;}
.ya3{bottom:568.559773px;}
.y186{bottom:568.739773px;}
.ye4{bottom:574.139770px;}
.y77{bottom:574.679770px;}
.y48{bottom:576.119770px;}
.y105{bottom:576.479769px;}
.y126{bottom:579.179768px;}
.y1c7{bottom:582.599767px;}
.y147{bottom:582.779767px;}
.y1a9{bottom:588.179765px;}
.ya2{bottom:591.959763px;}
.y185{bottom:592.859763px;}
.yc3{bottom:593.759762px;}
.y20{bottom:596.340000px;}
.y76{bottom:598.079761px;}
.y3{bottom:598.395000px;}
.y125{bottom:603.299759px;}
.y146{bottom:606.179758px;}
.ye3{bottom:607.439757px;}
.y47{bottom:609.239756px;}
.y1a8{bottom:612.299755px;}
.ya1{bottom:615.359754px;}
.y104{bottom:615.899754px;}
.y184{bottom:616.979753px;}
.yc2{bottom:617.879753px;}
.y75{bottom:621.479751px;}
.y124{bottom:627.599749px;}
.y145{bottom:629.579748px;}
.y1c6{bottom:630.299748px;}
.y163{bottom:631.379747px;}
.ye2{bottom:631.559747px;}
.y2{bottom:636.555000px;}
.ya0{bottom:638.759744px;}
.y183{bottom:641.279743px;}
.y46{bottom:642.539743px;}
.y74{bottom:644.879742px;}
.y1a7{bottom:645.599742px;}
.yc1{bottom:651.179740px;}
.y144{bottom:652.979739px;}
.y1c5{bottom:654.599738px;}
.y103{bottom:655.319738px;}
.y123{bottom:660.899736px;}
.y9f{bottom:662.159735px;}
.y162{bottom:664.499734px;}
.y182{bottom:665.399734px;}
.y45{bottom:666.659733px;}
.y73{bottom:668.279733px;}
.y1a6{bottom:669.719732px;}
.ye1{bottom:669.899732px;}
.y19{bottom:675.180000px;}
.y1c4{bottom:678.719729px;}
.yc0{bottom:684.839726px;}
.y9e{bottom:685.559726px;}
.y102{bottom:689.519724px;}
.y72{bottom:691.679723px;}
.y1a{bottom:691.920000px;}
.y143{bottom:692.399723px;}
.y1a5{bottom:693.839722px;}
.y122{bottom:694.199722px;}
.y44{bottom:699.779720px;}
.y161{bottom:702.839719px;}
.y9d{bottom:708.959716px;}
.ye0{bottom:709.319716px;}
.ybf{bottom:710.579716px;}
.y17{bottom:713.340000px;}
.y181{bottom:713.819714px;}
.y71{bottom:715.079714px;}
.y142{bottom:716.159714px;}
.y43{bottom:720.119712px;}
.y1a4{bottom:727.139709px;}
.y121{bottom:727.319709px;}
.y101{bottom:728.039709px;}
.y9c{bottom:732.359707px;}
.y1c3{bottom:736.139706px;}
.y160{bottom:737.219705px;}
.y180{bottom:737.939705px;}
.y70{bottom:738.659705px;}
.y42{bottom:740.639704px;}
.ydf{bottom:748.739701px;}
.y5c{bottom:750.899700px;}
.y1a3{bottom:751.259699px;}
.y100{bottom:751.439699px;}
.y8{bottom:751.680000px;}
.ybe{bottom:755.039698px;}
.y9b{bottom:755.759698px;}
.y40{bottom:757.020600px;}
.y1c2{bottom:760.259696px;}
.y120{bottom:760.619696px;}
.y3f{bottom:760.979696px;}
.y15f{bottom:761.339695px;}
.y6f{bottom:762.059695px;}
.yff{bottom:774.839690px;}
.y1a2{bottom:775.379690px;}
.ybd{bottom:778.439689px;}
.y9a{bottom:779.159688px;}
.y5b{bottom:780.059688px;}
.y3e{bottom:781.319687px;}
.y1c1{bottom:784.379686px;}
.y11f{bottom:784.739686px;}
.y6e{bottom:785.459686px;}
.yde{bottom:788.339685px;}
.y15e{bottom:794.459682px;}
.y17f{bottom:795.359682px;}
.y3c{bottom:797.700600px;}
.yfe{bottom:798.239681px;}
.y1a1{bottom:799.679680px;}
.y3b{bottom:801.659679px;}
.ybc{bottom:801.839679px;}
.y99{bottom:802.559679px;}
.y141{bottom:802.739679px;}
.y1c0{bottom:808.679677px;}
.y6d{bottom:808.859676px;}
.y5a{bottom:809.219676px;}
.ydd{bottom:811.739675px;}
.y17e{bottom:819.479672px;}
.y3a{bottom:821.999671px;}
.y1a0{bottom:823.799670px;}
.y98{bottom:825.959670px;}
.y140{bottom:826.319669px;}
.y6c{bottom:832.259667px;}
.y15d{bottom:832.799667px;}
.y11e{bottom:833.159667px;}
.y59{bottom:835.679666px;}
.yfd{bottom:837.659665px;}
.y38{bottom:838.380600px;}
.ybb{bottom:841.079664px;}
.y37{bottom:842.339663px;}
.y17d{bottom:843.599663px;}
.ydc{bottom:845.939662px;}
.y19f{bottom:847.919661px;}
.y97{bottom:849.359660px;}
.y13f{bottom:850.079660px;}
.y6b{bottom:855.659658px;}
.y1bf{bottom:856.919657px;}
.yfc{bottom:861.239656px;}
.y58{bottom:865.199654px;}
.y11d{bottom:866.459653px;}
.y17c{bottom:867.899653px;}
.y19e{bottom:872.219651px;}
.y15c{bottom:872.399651px;}
.y96{bottom:872.759651px;}
.y36{bottom:875.459650px;}
.y6a{bottom:879.059648px;}
.ydb{bottom:879.239648px;}
.yba{bottom:880.679648px;}
.y1be{bottom:881.219648px;}
.y13e{bottom:884.279646px;}
.y17b{bottom:892.019643px;}
.y57{bottom:894.539642px;}
.yfb{bottom:895.439642px;}
.y95{bottom:896.159642px;}
.y35{bottom:898.859640px;}
.y11c{bottom:899.759640px;}
.y69{bottom:902.459639px;}
.y19d{bottom:905.339638px;}
.y15b{bottom:910.739636px;}
.y56{bottom:914.879634px;}
.y13d{bottom:917.399633px;}
.yda{bottom:917.759633px;}
.y94{bottom:919.739632px;}
.yb9{bottom:920.099632px;}
.y34{bottom:922.259631px;}
.y11b{bottom:924.059630px;}
.y17a{bottom:925.139630px;}
.y68{bottom:925.859630px;}
.yfa{bottom:928.919628px;}
.y19c{bottom:929.459628px;}
.y15{bottom:932.220000px;}
.y55{bottom:935.219626px;}
.yd9{bottom:941.159624px;}
.y93{bottom:943.139623px;}
.y33{bottom:945.839622px;}
.y15a{bottom:949.079620px;}
.y67{bottom:949.259620px;}
.y19b{bottom:953.579619px;}
.y13{bottom:953.640000px;}
.yf9{bottom:954.839618px;}
.y54{bottom:955.559618px;}
.y13c{bottom:955.739618px;}
.yb8{bottom:959.519616px;}
.y11a{bottom:962.399615px;}
.yd8{bottom:964.739614px;}
.y92{bottom:966.539613px;}
.y32{bottom:969.239612px;}
.y66{bottom:972.659611px;}
.y179{bottom:973.559611px;}
.y53{bottom:975.899610px;}
.y19a{bottom:977.879609px;}
.y13b{bottom:979.139608px;}
.y119{bottom:985.979606px;}
.y1bd{bottom:986.879605px;}
.y159{bottom:988.679605px;}
.y91{bottom:989.939604px;}
.y31{bottom:992.639603px;}
.y65{bottom:996.059602px;}
.y52{bottom:996.239602px;}
.y10{bottom:996.660000px;}
.y178{bottom:997.679601px;}
.yb7{bottom:998.939600px;}
.yf8{bottom:999.119600px;}
.y199{bottom:1001.999599px;}
.y13a{bottom:1002.539599px;}
.yd7{bottom:1003.979598px;}
.y1bc{bottom:1010.999596px;}
.y90{bottom:1013.339595px;}
.y158{bottom:1014.239594px;}
.y30{bottom:1016.039594px;}
.y64{bottom:1019.459592px;}
.y118{bottom:1019.999592px;}
.y177{bottom:1021.799591px;}
.y51{bottom:1025.579590px;}
.y139{bottom:1026.119590px;}
.yb6{bottom:1033.139587px;}
.y1bb{bottom:1035.119586px;}
.y8f{bottom:1036.739585px;}
.yf7{bottom:1037.459585px;}
.y2f{bottom:1039.439584px;}
.yd{bottom:1039.500000px;}
.y63{bottom:1042.859583px;}
.yd6{bottom:1043.579583px;}
.y117{bottom:1044.299582px;}
.y176{bottom:1046.099582px;}
.y138{bottom:1049.879580px;}
.y198{bottom:1050.419580px;}
.y50{bottom:1054.919578px;}
.y157{bottom:1059.419576px;}
.y8e{bottom:1060.139576px;}
.y2e{bottom:1062.839575px;}
.y62{bottom:1066.259573px;}
.yd5{bottom:1066.979573px;}
.y137{bottom:1073.639571px;}
.yf6{bottom:1076.879569px;}
.y175{bottom:1079.219568px;}
.y116{bottom:1082.999567px;}
.y8d{bottom:1083.539567px;}
.y2d{bottom:1085.519566px;}
.y4f{bottom:1086.959565px;}
.y61{bottom:1099.739560px;}
.yd4{bottom:1106.219558px;}
.y115{bottom:1106.399557px;}
.y136{bottom:1107.659557px;}
.yf5{bottom:1116.479553px;}
.y8c{bottom:1116.659553px;}
.y5{bottom:1118.340000px;}
.y1{bottom:1119.030000px;}
.y2c{bottom:1120.259552px;}
.y60{bottom:1126.379549px;}
.y7{bottom:1135.080000px;}
.yf4{bottom:1140.059544px;}
.yd3{bottom:1140.779544px;}
.y8b{bottom:1140.959544px;}
.y174{bottom:1142.579543px;}
.h10{height:19.800000px;}
.h12{height:20.340000px;}
.ha{height:28.032480px;}
.h8{height:38.160000px;}
.h3{height:38.340000px;}
.h1d{height:39.830258px;}
.hb{height:43.086960px;}
.h2{height:44.440312px;}
.h15{height:46.755341px;}
.hf{height:47.759021px;}
.h7{height:47.759040px;}
.h1f{height:48.761719px;}
.h13{height:49.122700px;}
.hc{height:49.583099px;}
.h1a{height:51.911979px;}
.h5{height:51.912000px;}
.hd{height:59.183976px;}
.h17{height:61.199976px;}
.h1b{height:64.676107px;}
.h4{height:69.042960px;}
.h1c{height:69.245252px;}
.h14{height:70.664034px;}
.h11{height:75.093720px;}
.h19{height:75.671218px;}
.h18{height:81.101218px;}
.he{height:81.395967px;}
.h16{height:99.874648px;}
.h6{height:366.660000px;}
.h9{height:425.338500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.h1e{height:1263.060000px;}
.w5{width:8.100000px;}
.w4{width:9.540000px;}
.w2{width:520.918500px;}
.w3{width:892.500000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:106.200000px;}
.xf{left:120.059952px;}
.x38{left:127.656000px;}
.x1{left:129.276000px;}
.x10{left:133.199947px;}
.x14{left:138.059549px;}
.x11{left:142.559943px;}
.x33{left:149.399940px;}
.x2d{left:151.199940px;}
.x37{left:153.719939px;}
.x2c{left:160.200007px;}
.x29{left:165.059887px;}
.x36{left:190.799924px;}
.x19{left:201.779919px;}
.x15{left:203.759918px;}
.x20{left:224.459910px;}
.x21{left:242.459903px;}
.x22{left:246.239902px;}
.x23{left:249.299900px;}
.x24{left:253.619899px;}
.x2{left:255.240000px;}
.x6{left:258.660000px;}
.x1a{left:293.039883px;}
.x16{left:302.579879px;}
.x1b{left:326.159870px;}
.x26{left:336.779865px;}
.xb{left:344.520000px;}
.x8{left:345.960000px;}
.x17{left:350.099860px;}
.x1c{left:364.499854px;}
.x30{left:370.619852px;}
.x1d{left:376.919849px;}
.x28{left:381.959847px;}
.x1e{left:386.999845px;}
.x18{left:388.619845px;}
.x25{left:415.799834px;}
.x35{left:427.859829px;}
.x2b{left:432.359827px;}
.x4{left:438.480000px;}
.xe{left:439.739824px;}
.x2a{left:446.399821px;}
.xd{left:453.779818px;}
.x3{left:457.740000px;}
.x7{left:473.760000px;}
.x27{left:518.759792px;}
.x5{left:520.380000px;}
.x1f{left:569.519772px;}
.xa{left:590.580000px;}
.x34{left:594.179762px;}
.x12{left:660.599912px;}
.x32{left:670.679732px;}
.x2e{left:674.819730px;}
.x2f{left:680.219728px;}
.x31{left:688.319725px;}
.x9{left:700.380000px;}
.x13{left:781.740000px;}
@media print{
.v1{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.766080pt;}
.ls4{letter-spacing:-0.294400pt;}
.ls2{letter-spacing:-0.255360pt;}
.ls3{letter-spacing:-0.058880pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.069120pt;}
.lsa{letter-spacing:0.146187pt;}
.ls9{letter-spacing:0.199962pt;}
.lsf{letter-spacing:6.924104pt;}
.ls1{letter-spacing:7.360000pt;}
.lsb{letter-spacing:25.005163pt;}
.lsc{letter-spacing:44.216622pt;}
.ls7{letter-spacing:84.539166pt;}
.ls8{letter-spacing:97.346628pt;}
.lse{letter-spacing:175.343397pt;}
.lsd{letter-spacing:175.983396pt;}
.ws1{word-spacing:-16.938880pt;}
.ws2{word-spacing:-16.428160pt;}
.ws13{word-spacing:-13.962234pt;}
.ws11{word-spacing:-13.567995pt;}
.ws14{word-spacing:-12.927995pt;}
.ws4{word-spacing:-12.423680pt;}
.ws12{word-spacing:-10.718716pt;}
.ws3{word-spacing:-7.395840pt;}
.ws0{word-spacing:0.000000pt;}
.ws8{word-spacing:0.353280pt;}
.wsc{word-spacing:0.588800pt;}
.ws9{word-spacing:1.000960pt;}
.wsb{word-spacing:3.591680pt;}
.wsd{word-spacing:6.123520pt;}
.ws5{word-spacing:6.771200pt;}
.wse{word-spacing:7.418880pt;}
.ws6{word-spacing:11.893760pt;}
.wsf{word-spacing:15.720960pt;}
.wsa{word-spacing:22.138880pt;}
.ws10{word-spacing:25.318400pt;}
.ws7{word-spacing:29.204480pt;}
._a{margin-left:-12.689056pt;}
._c{margin-left:-11.206421pt;}
._b{margin-left:-9.921852pt;}
._e{margin-left:-8.062668pt;}
._d{margin-left:-6.690512pt;}
._2{margin-left:-3.546651pt;}
._1{margin-left:-1.000960pt;}
._8{width:0.896036pt;}
._0{width:1.787520pt;}
._13{width:2.874937pt;}
._10{width:4.393098pt;}
._f{width:5.415535pt;}
._12{width:7.001196pt;}
._5{width:8.731174pt;}
._4{width:9.983719pt;}
._3{width:11.395615pt;}
._1c{width:12.363137pt;}
._1a{width:13.855269pt;}
._6{width:14.867691pt;}
._11{width:16.636291pt;}
._14{width:17.569442pt;}
._1b{width:18.630841pt;}
._19{width:21.166209pt;}
._1e{width:24.003204pt;}
._16{width:25.002620pt;}
._15{width:42.680516pt;}
._18{width:53.924809pt;}
._20{width:79.287008pt;}
._17{width:139.385338pt;}
._1f{width:148.081062pt;}
._1d{width:175.343290pt;}
._7{width:708.782808pt;}
._9{width:981.137743pt;}
.fs3{font-size:34.560000pt;}
.fs5{font-size:42.879983pt;}
.fsa{font-size:50.559980pt;}
.fs9{font-size:53.119979pt;}
.fs4{font-size:53.120000pt;}
.fs8{font-size:58.879976pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:63.999974pt;}
.fs2{font-size:64.000000pt;}
.fsd{font-size:67.635145pt;}
.fsb{font-size:69.119972pt;}
.fse{font-size:74.879970pt;}
.fsc{font-size:79.133300pt;}
.fs7{font-size:85.119966pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:3.519167pt;}
.y3d{bottom:3.519182pt;}
.y41{bottom:3.519196pt;}
.y4c{bottom:3.999285pt;}
.y6{bottom:14.880000pt;}
.y18{bottom:20.000000pt;}
.y5f{bottom:50.026913pt;}
.y2b{bottom:50.186913pt;}
.y5e{bottom:62.826908pt;}
.y2a{bottom:62.986908pt;}
.y5d{bottom:79.626901pt;}
.y29{bottom:79.786901pt;}
.y114{bottom:93.546629pt;}
.y172{bottom:111.786622pt;}
.y173{bottom:111.786889pt;}
.y1ba{bottom:112.586622pt;}
.y8a{bottom:114.026621pt;}
.y135{bottom:115.146621pt;}
.y197{bottom:116.266620pt;}
.yb5{bottom:117.226620pt;}
.yd2{bottom:118.026619pt;}
.y156{bottom:122.186618pt;}
.y1ce{bottom:123.040000pt;}
.y113{bottom:123.146617pt;}
.y171{bottom:133.226613pt;}
.y1b9{bottom:134.186613pt;}
.y89{bottom:135.626612pt;}
.y134{bottom:137.066612pt;}
.y196{bottom:137.706612pt;}
.yf3{bottom:140.106611pt;}
.y16{bottom:140.160000pt;}
.y155{bottom:143.626609pt;}
.yb4{bottom:151.466606pt;}
.yd1{bottom:152.266606pt;}
.y112{bottom:152.586606pt;}
.y1b8{bottom:155.626604pt;}
.y88{bottom:157.066604pt;}
.y133{bottom:158.666603pt;}
.y195{bottom:159.146603pt;}
.y14{bottom:160.480000pt;}
.yf2{bottom:161.066602pt;}
.y154{bottom:165.226601pt;}
.y170{bottom:167.466600pt;}
.yb3{bottom:172.266598pt;}
.yd0{bottom:173.066597pt;}
.y111{bottom:174.026597pt;}
.y1b7{bottom:177.066596pt;}
.y87{bottom:177.866596pt;}
.y12{bottom:179.520000pt;}
.y194{bottom:180.746594pt;}
.y132{bottom:188.266591pt;}
.y16f{bottom:188.426591pt;}
.yf1{bottom:191.466590pt;}
.yb2{bottom:193.226589pt;}
.ycf{bottom:193.866589pt;}
.y153{bottom:194.826589pt;}
.y110{bottom:195.466588pt;}
.y86{bottom:198.666587pt;}
.y11{bottom:198.720000pt;}
.y193{bottom:202.186586pt;}
.y28{bottom:210.560000pt;}
.y131{bottom:211.306582pt;}
.y27{bottom:211.360000pt;}
.yb1{bottom:214.026581pt;}
.yf{bottom:217.760000pt;}
.y85{bottom:219.466579pt;}
.y1b6{bottom:220.106579pt;}
.yf0{bottom:221.226578pt;}
.y1b{bottom:222.080000pt;}
.y16e{bottom:223.306577pt;}
.y192{bottom:223.626577pt;}
.y152{bottom:224.586577pt;}
.yce{bottom:228.906575pt;}
.y10f{bottom:229.706575pt;}
.y25{bottom:231.680000pt;}
.yb0{bottom:234.826573pt;}
.ye{bottom:236.800000pt;}
.y84{bottom:240.266571pt;}
.y1b5{bottom:241.546570pt;}
.yef{bottom:242.506570pt;}
.y16d{bottom:244.266569pt;}
.y151{bottom:247.626568pt;}
.ycd{bottom:249.706567pt;}
.y24{bottom:250.880000pt;}
.y130{bottom:251.466566pt;}
.y191{bottom:253.066565pt;}
.yaf{bottom:255.626564pt;}
.yc{bottom:255.840000pt;}
.y83{bottom:261.066562pt;}
.yee{bottom:263.946561pt;}
.y10e{bottom:264.746561pt;}
.y22{bottom:269.920000pt;}
.ycc{bottom:270.666558pt;}
.y1b4{bottom:271.146558pt;}
.y190{bottom:274.666557pt;}
.yb{bottom:275.040000pt;}
.yae{bottom:276.426556pt;}
.y16c{bottom:279.146555pt;}
.y12f{bottom:281.066554pt;}
.y82{bottom:281.866554pt;}
.yed{bottom:285.706552pt;}
.y150{bottom:287.626552pt;}
.y21{bottom:288.960000pt;}
.y1b3{bottom:292.426550pt;}
.ya{bottom:294.080000pt;}
.y10d{bottom:295.146549pt;}
.y18f{bottom:296.106548pt;}
.yad{bottom:297.226548pt;}
.y16b{bottom:300.106547pt;}
.ycb{bottom:301.066546pt;}
.y81{bottom:302.666546pt;}
.yec{bottom:306.986544pt;}
.y1f{bottom:308.000000pt;}
.y14f{bottom:309.066543pt;}
.y12e{bottom:310.666542pt;}
.y9{bottom:313.120000pt;}
.y1b2{bottom:313.706541pt;}
.y18e{bottom:317.546540pt;}
.yac{bottom:318.026539pt;}
.y80{bottom:323.466537pt;}
.y1e{bottom:327.200000pt;}
.y10c{bottom:329.226535pt;}
.y14e{bottom:330.666534pt;}
.y12d{bottom:332.106534pt;}
.y16a{bottom:334.986533pt;}
.y1b1{bottom:335.146533pt;}
.yca{bottom:335.306533pt;}
.yea{bottom:336.426521pt;}
.yeb{bottom:336.426532pt;}
.yab{bottom:338.826531pt;}
.y7f{bottom:344.426529pt;}
.y1d{bottom:346.240000pt;}
.y18d{bottom:347.146528pt;}
.y10b{bottom:350.026527pt;}
.y14d{bottom:352.106526pt;}
.y12c{bottom:353.546525pt;}
.y169{bottom:355.946524pt;}
.yc9{bottom:356.266524pt;}
.ye9{bottom:358.186523pt;}
.yaa{bottom:359.626523pt;}
.y1b0{bottom:364.426521pt;}
.y7e{bottom:365.226521pt;}
.y1c{bottom:365.280000pt;}
.y1cd{bottom:367.466520pt;}
.y18c{bottom:368.586519pt;}
.y10a{bottom:370.986518pt;}
.ya9{bottom:380.426514pt;}
.y14c{bottom:381.546514pt;}
.y12b{bottom:383.306513pt;}
.y1af{bottom:385.866512pt;}
.y7d{bottom:386.026512pt;}
.ye8{bottom:388.106511pt;}
.y4e{bottom:389.226511pt;}
.y18b{bottom:390.026511pt;}
.y168{bottom:390.826510pt;}
.yc8{bottom:391.146510pt;}
.y1cc{bottom:393.386509pt;}
.ya8{bottom:401.226506pt;}
.y109{bottom:401.386506pt;}
.y14b{bottom:403.146505pt;}
.y7c{bottom:406.826504pt;}
.y18a{bottom:411.626502pt;}
.y167{bottom:411.786502pt;}
.yc7{bottom:412.106502pt;}
.y12a{bottom:412.906502pt;}
.y1ae{bottom:415.466500pt;}
.ye7{bottom:417.866500pt;}
.y1cb{bottom:419.146499pt;}
.ya7{bottom:422.026498pt;}
.y4d{bottom:423.626497pt;}
.y14a{bottom:424.586497pt;}
.y7b{bottom:427.626496pt;}
.y189{bottom:433.066493pt;}
.y108{bottom:435.786492pt;}
.y1ad{bottom:436.906492pt;}
.ye6{bottom:440.906490pt;}
.y129{bottom:442.346490pt;}
.ya6{bottom:442.826490pt;}
.y1ca{bottom:445.066489pt;}
.y166{bottom:446.826488pt;}
.yc6{bottom:447.146488pt;}
.y7a{bottom:448.426487pt;}
.y4b{bottom:449.067200pt;}
.y4a{bottom:453.066485pt;}
.y26{bottom:453.760000pt;}
.y149{bottom:454.186485pt;}
.y188{bottom:454.506485pt;}
.y107{bottom:456.586484pt;}
.y1ac{bottom:458.346483pt;}
.ya5{bottom:463.626481pt;}
.y165{bottom:467.626480pt;}
.yc5{bottom:467.946479pt;}
.y79{bottom:469.226479pt;}
.y1c9{bottom:470.986478pt;}
.y128{bottom:471.786478pt;}
.y187{bottom:476.106476pt;}
.y106{bottom:477.546476pt;}
.y1ab{bottom:479.946475pt;}
.ye5{bottom:480.906474pt;}
.y49{bottom:482.666474pt;}
.y148{bottom:483.786473pt;}
.ya4{bottom:484.426473pt;}
.y78{bottom:490.026471pt;}
.y127{bottom:493.386469pt;}
.y1c8{bottom:496.906468pt;}
.y23{bottom:497.280000pt;}
.y4{bottom:497.986667pt;}
.yc4{bottom:498.346467pt;}
.y164{bottom:499.306467pt;}
.y1aa{bottom:501.386466pt;}
.ya3{bottom:505.386465pt;}
.y186{bottom:505.546464pt;}
.ye4{bottom:510.346463pt;}
.y77{bottom:510.826462pt;}
.y48{bottom:512.106462pt;}
.y105{bottom:512.426462pt;}
.y126{bottom:514.826461pt;}
.y1c7{bottom:517.866460pt;}
.y147{bottom:518.026459pt;}
.y1a9{bottom:522.826458pt;}
.ya2{bottom:526.186456pt;}
.y185{bottom:526.986456pt;}
.yc3{bottom:527.786456pt;}
.y20{bottom:530.080000pt;}
.y76{bottom:531.626454pt;}
.y3{bottom:531.906667pt;}
.y125{bottom:536.266452pt;}
.y146{bottom:538.826451pt;}
.ye3{bottom:539.946451pt;}
.y47{bottom:541.546450pt;}
.y1a8{bottom:544.266449pt;}
.ya1{bottom:546.986448pt;}
.y104{bottom:547.466448pt;}
.y184{bottom:548.426447pt;}
.yc2{bottom:549.226447pt;}
.y75{bottom:552.426446pt;}
.y124{bottom:557.866444pt;}
.y145{bottom:559.626443pt;}
.y1c6{bottom:560.266443pt;}
.y163{bottom:561.226442pt;}
.ye2{bottom:561.386442pt;}
.y2{bottom:565.826667pt;}
.ya0{bottom:567.786440pt;}
.y183{bottom:570.026439pt;}
.y46{bottom:571.146438pt;}
.y74{bottom:573.226437pt;}
.y1a7{bottom:573.866437pt;}
.yc1{bottom:578.826435pt;}
.y144{bottom:580.426434pt;}
.y1c5{bottom:581.866434pt;}
.y103{bottom:582.506434pt;}
.y123{bottom:587.466432pt;}
.y9f{bottom:588.586431pt;}
.y162{bottom:590.666430pt;}
.y182{bottom:591.466430pt;}
.y45{bottom:592.586430pt;}
.y73{bottom:594.026429pt;}
.y1a6{bottom:595.306429pt;}
.ye1{bottom:595.466428pt;}
.y19{bottom:600.160000pt;}
.y1c4{bottom:603.306425pt;}
.yc0{bottom:608.746423pt;}
.y9e{bottom:609.386423pt;}
.y102{bottom:612.906422pt;}
.y72{bottom:614.826421pt;}
.y1a{bottom:615.040000pt;}
.y143{bottom:615.466420pt;}
.y1a5{bottom:616.746420pt;}
.y122{bottom:617.066420pt;}
.y44{bottom:622.026418pt;}
.y161{bottom:624.746417pt;}
.y9d{bottom:630.186415pt;}
.ye0{bottom:630.506414pt;}
.ybf{bottom:631.626414pt;}
.y17{bottom:634.080000pt;}
.y181{bottom:634.506413pt;}
.y71{bottom:635.626412pt;}
.y142{bottom:636.586412pt;}
.y43{bottom:640.106411pt;}
.y1a4{bottom:646.346408pt;}
.y121{bottom:646.506408pt;}
.y101{bottom:647.146408pt;}
.y9c{bottom:650.986406pt;}
.y1c3{bottom:654.346405pt;}
.y160{bottom:655.306405pt;}
.y180{bottom:655.946404pt;}
.y70{bottom:656.586404pt;}
.y42{bottom:658.346403pt;}
.ydf{bottom:665.546400pt;}
.y5c{bottom:667.466400pt;}
.y1a3{bottom:667.786400pt;}
.y100{bottom:667.946399pt;}
.y8{bottom:668.160000pt;}
.ybe{bottom:671.146398pt;}
.y9b{bottom:671.786398pt;}
.y40{bottom:672.907200pt;}
.y1c2{bottom:675.786396pt;}
.y120{bottom:676.106396pt;}
.y3f{bottom:676.426396pt;}
.y15f{bottom:676.746396pt;}
.y6f{bottom:677.386396pt;}
.yff{bottom:688.746391pt;}
.y1a2{bottom:689.226391pt;}
.ybd{bottom:691.946390pt;}
.y9a{bottom:692.586390pt;}
.y5b{bottom:693.386389pt;}
.y3e{bottom:694.506389pt;}
.y1c1{bottom:697.226388pt;}
.y11f{bottom:697.546388pt;}
.y6e{bottom:698.186387pt;}
.yde{bottom:700.746386pt;}
.y15e{bottom:706.186384pt;}
.y17f{bottom:706.986384pt;}
.y3c{bottom:709.067200pt;}
.yfe{bottom:709.546383pt;}
.y1a1{bottom:710.826382pt;}
.y3b{bottom:712.586382pt;}
.ybc{bottom:712.746382pt;}
.y99{bottom:713.386381pt;}
.y141{bottom:713.546381pt;}
.y1c0{bottom:718.826379pt;}
.y6d{bottom:718.986379pt;}
.y5a{bottom:719.306379pt;}
.ydd{bottom:721.546378pt;}
.y17e{bottom:728.426375pt;}
.y3a{bottom:730.666374pt;}
.y1a0{bottom:732.266374pt;}
.y98{bottom:734.186373pt;}
.y140{bottom:734.506373pt;}
.y6c{bottom:739.786371pt;}
.y15d{bottom:740.266371pt;}
.y11e{bottom:740.586370pt;}
.y59{bottom:742.826370pt;}
.yfd{bottom:744.586369pt;}
.y38{bottom:745.227200pt;}
.ybb{bottom:747.626368pt;}
.y37{bottom:748.746367pt;}
.y17d{bottom:749.866367pt;}
.ydc{bottom:751.946366pt;}
.y19f{bottom:753.706365pt;}
.y97{bottom:754.986365pt;}
.y13f{bottom:755.626364pt;}
.y6b{bottom:760.586362pt;}
.y1bf{bottom:761.706362pt;}
.yfc{bottom:765.546360pt;}
.y58{bottom:769.066359pt;}
.y11d{bottom:770.186359pt;}
.y17c{bottom:771.466358pt;}
.y19e{bottom:775.306357pt;}
.y15c{bottom:775.466356pt;}
.y96{bottom:775.786356pt;}
.y36{bottom:778.186355pt;}
.y6a{bottom:781.386354pt;}
.ydb{bottom:781.546354pt;}
.yba{bottom:782.826354pt;}
.y1be{bottom:783.306353pt;}
.y13e{bottom:786.026352pt;}
.y17b{bottom:792.906350pt;}
.y57{bottom:795.146349pt;}
.yfb{bottom:795.946348pt;}
.y95{bottom:796.586348pt;}
.y35{bottom:798.986347pt;}
.y11c{bottom:799.786347pt;}
.y69{bottom:802.186346pt;}
.y19d{bottom:804.746345pt;}
.y15b{bottom:809.546343pt;}
.y56{bottom:813.226341pt;}
.y13d{bottom:815.466340pt;}
.yda{bottom:815.786340pt;}
.y94{bottom:817.546340pt;}
.yb9{bottom:817.866340pt;}
.y34{bottom:819.786339pt;}
.y11b{bottom:821.386338pt;}
.y17a{bottom:822.346338pt;}
.y68{bottom:822.986337pt;}
.yfa{bottom:825.706336pt;}
.y19c{bottom:826.186336pt;}
.y15{bottom:828.640000pt;}
.y55{bottom:831.306334pt;}
.yd9{bottom:836.586332pt;}
.y93{bottom:838.346331pt;}
.y33{bottom:840.746330pt;}
.y15a{bottom:843.626329pt;}
.y67{bottom:843.786329pt;}
.y19b{bottom:847.626328pt;}
.y13{bottom:847.680000pt;}
.yf9{bottom:848.746327pt;}
.y54{bottom:849.386327pt;}
.y13c{bottom:849.546327pt;}
.yb8{bottom:852.906326pt;}
.y11a{bottom:855.466324pt;}
.yd8{bottom:857.546324pt;}
.y92{bottom:859.146323pt;}
.y32{bottom:861.546322pt;}
.y66{bottom:864.586321pt;}
.y179{bottom:865.386321pt;}
.y53{bottom:867.466320pt;}
.y19a{bottom:869.226319pt;}
.y13b{bottom:870.346319pt;}
.y119{bottom:876.426316pt;}
.y1bd{bottom:877.226316pt;}
.y159{bottom:878.826315pt;}
.y91{bottom:879.946315pt;}
.y31{bottom:882.346314pt;}
.y65{bottom:885.386313pt;}
.y52{bottom:885.546312pt;}
.y10{bottom:885.920000pt;}
.y178{bottom:886.826312pt;}
.yb7{bottom:887.946311pt;}
.yf8{bottom:888.106311pt;}
.y199{bottom:890.666310pt;}
.y13a{bottom:891.146310pt;}
.yd7{bottom:892.426310pt;}
.y1bc{bottom:898.666307pt;}
.y90{bottom:900.746306pt;}
.y158{bottom:901.546306pt;}
.y30{bottom:903.146305pt;}
.y64{bottom:906.186304pt;}
.y118{bottom:906.666304pt;}
.y177{bottom:908.266303pt;}
.y51{bottom:911.626302pt;}
.y139{bottom:912.106302pt;}
.yb6{bottom:918.346299pt;}
.y1bb{bottom:920.106299pt;}
.y8f{bottom:921.546298pt;}
.yf7{bottom:922.186298pt;}
.y2f{bottom:923.946297pt;}
.yd{bottom:924.000000pt;}
.y63{bottom:926.986296pt;}
.yd6{bottom:927.626296pt;}
.y117{bottom:928.266295pt;}
.y176{bottom:929.866295pt;}
.y138{bottom:933.226293pt;}
.y198{bottom:933.706293pt;}
.y50{bottom:937.706292pt;}
.y157{bottom:941.706290pt;}
.y8e{bottom:942.346290pt;}
.y2e{bottom:944.746289pt;}
.y62{bottom:947.786288pt;}
.yd5{bottom:948.426287pt;}
.y137{bottom:954.346285pt;}
.yf6{bottom:957.226284pt;}
.y175{bottom:959.306283pt;}
.y116{bottom:962.666282pt;}
.y8d{bottom:963.146281pt;}
.y2d{bottom:964.906281pt;}
.y4f{bottom:966.186280pt;}
.y61{bottom:977.546276pt;}
.yd4{bottom:983.306273pt;}
.y115{bottom:983.466273pt;}
.y136{bottom:984.586273pt;}
.yf5{bottom:992.426270pt;}
.y8c{bottom:992.586270pt;}
.y5{bottom:994.080000pt;}
.y1{bottom:994.693333pt;}
.y2c{bottom:995.786268pt;}
.y60{bottom:1001.226266pt;}
.y7{bottom:1008.960000pt;}
.yf4{bottom:1013.386261pt;}
.yd3{bottom:1014.026261pt;}
.y8b{bottom:1014.186261pt;}
.y174{bottom:1015.626260pt;}
.h10{height:17.600000pt;}
.h12{height:18.080000pt;}
.ha{height:24.917760pt;}
.h8{height:33.920000pt;}
.h3{height:34.080000pt;}
.h1d{height:35.404673pt;}
.hb{height:38.299520pt;}
.h2{height:39.502500pt;}
.h15{height:41.560303pt;}
.hf{height:42.452463pt;}
.h7{height:42.452480pt;}
.h1f{height:43.343750pt;}
.h13{height:43.664623pt;}
.hc{height:44.073865pt;}
.h1a{height:46.143982pt;}
.h5{height:46.144000pt;}
.hd{height:52.607979pt;}
.h17{height:54.399978pt;}
.h1b{height:57.489873pt;}
.h4{height:61.371520pt;}
.h1c{height:61.551335pt;}
.h14{height:62.812475pt;}
.h11{height:66.749973pt;}
.h19{height:67.263305pt;}
.h18{height:72.089971pt;}
.he{height:72.351971pt;}
.h16{height:88.777464pt;}
.h6{height:325.920000pt;}
.h9{height:378.078667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h1e{height:1122.720000pt;}
.w5{width:7.200000pt;}
.w4{width:8.480000pt;}
.w2{width:463.038667pt;}
.w3{width:793.333333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:94.400000pt;}
.xf{left:106.719957pt;}
.x38{left:113.472000pt;}
.x1{left:114.912000pt;}
.x10{left:118.399953pt;}
.x14{left:122.719599pt;}
.x11{left:126.719949pt;}
.x33{left:132.799947pt;}
.x2d{left:134.399946pt;}
.x37{left:136.639945pt;}
.x2c{left:142.400006pt;}
.x29{left:146.719900pt;}
.x36{left:169.599932pt;}
.x19{left:179.359928pt;}
.x15{left:181.119928pt;}
.x20{left:199.519920pt;}
.x21{left:215.519914pt;}
.x22{left:218.879912pt;}
.x23{left:221.599911pt;}
.x24{left:225.439910pt;}
.x2{left:226.880000pt;}
.x6{left:229.920000pt;}
.x1a{left:260.479896pt;}
.x16{left:268.959892pt;}
.x1b{left:289.919884pt;}
.x26{left:299.359880pt;}
.xb{left:306.240000pt;}
.x8{left:307.520000pt;}
.x17{left:311.199876pt;}
.x1c{left:323.999870pt;}
.x30{left:329.439868pt;}
.x1d{left:335.039866pt;}
.x28{left:339.519864pt;}
.x1e{left:343.999862pt;}
.x18{left:345.439862pt;}
.x25{left:369.599852pt;}
.x35{left:380.319848pt;}
.x2b{left:384.319846pt;}
.x4{left:389.760000pt;}
.xe{left:390.879844pt;}
.x2a{left:396.799841pt;}
.xd{left:403.359839pt;}
.x3{left:406.880000pt;}
.x7{left:421.120000pt;}
.x27{left:461.119816pt;}
.x5{left:462.560000pt;}
.x1f{left:506.239798pt;}
.xa{left:524.960000pt;}
.x34{left:528.159789pt;}
.x12{left:587.199921pt;}
.x32{left:596.159762pt;}
.x2e{left:599.839760pt;}
.x2f{left:604.639758pt;}
.x31{left:611.839755pt;}
.x9{left:622.560000pt;}
.x13{left:694.880000pt;}
}




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