
    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_d44e6b0c3523d60bc3312da8.woff')format("woff");}.ff1{font-family:ff1;line-height:0.948242;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_83a21ccde1d9bd85c05a837d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.941406;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_44dfe31e2af68987e69b5bd3.woff')format("woff");}.ff3{font-family:ff3;line-height:1.114258;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_f0b0d8b82382d54f3b115e5a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.114258;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_80e324ea3d861c400f09ab05.woff')format("woff");}.ff5{font-family:ff5;line-height:1.056152;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_5b29415ed8191747f9fac9dd.woff')format("woff");}.ff6{font-family:ff6;line-height:0.961914;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_dfcb11ed2876b9c5f4a32562.woff')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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_db9d2e3cb584a1fef775e875.woff')format("woff");}.ff8{font-family:ff8;line-height:1.064941;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_6e9ac622ff3446a323f7f9ad.woff')format("woff");}.ff9{font-family:ff9;line-height:1.064941;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_b530a18e7951366278263aa7.woff')format("woff");}.ffa{font-family:ffa;line-height:1.064941;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_2cdcb599b8a8da3874e3b1c1.woff')format("woff");}.ffb{font-family:ffb;line-height:1.065430;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_edb6fe9c149fb55c9d087c56.woff')format("woff");}.ffc{font-family:ffc;line-height:0.961914;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_fd42c98f2bfdab3442480233.woff')format("woff");}.ffd{font-family:ffd;line-height:0.941406;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_aa6bab25806d4e4159c23b56.woff')format("woff");}.ffe{font-family:ffe;line-height:1.378906;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_d39260e5f9d2529ccd9ded84.woff')format("woff");}.fff{font-family:fff;line-height:0.748047;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_995c15a55a49781b4f0aa2e9.woff')format("woff");}.ff10{font-family:ff10;line-height:0.767578;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:ff11;src:url('chunks/assets/font_a305f592cd28fe80c032b6b3.woff')format("woff");}.ff11{font-family:ff11;line-height:0.940918;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:ff12;src:url('chunks/assets/font_9537c99395937b6c26f8d529.woff')format("woff");}.ff12{font-family:ff12;line-height:0.940918;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:ff13;src:url('chunks/assets/font_5c660501ea0288522d921eda.woff')format("woff");}.ff13{font-family:ff13;line-height:0.967285;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:ff14;src:url('chunks/assets/font_45eeab2f0ff2312dae182ed3.woff')format("woff");}.ff14{font-family:ff14;line-height:0.971191;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:ff15;src:url('chunks/assets/font_4e83d56bb4235dc5ac04297f.woff')format("woff");}.ff15{font-family:ff15;line-height:0.971191;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:ff16;src:url('chunks/assets/font_6dd036452b8abab0ae180c5d.woff')format("woff");}.ff16{font-family:ff16;line-height:0.748047;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-69.540000px;}
.v6{vertical-align:-26.640000px;}
.v1{vertical-align:-23.040000px;}
.v3{vertical-align:-21.600000px;}
.v5{vertical-align:-18.720000px;}
.v2{vertical-align:-15.840000px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.648000px;}
.lse{letter-spacing:-0.453000px;}
.lsd{letter-spacing:-0.373200px;}
.ls8{letter-spacing:-0.367800px;}
.lsa{letter-spacing:-0.348600px;}
.ls3{letter-spacing:-0.300000px;}
.ls10{letter-spacing:-0.144000px;}
.ls17{letter-spacing:-0.117600px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.074880px;}
.ls5{letter-spacing:0.075000px;}
.ls7{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.126000px;}
.ls2{letter-spacing:0.150600px;}
.lsb{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.360000px;}
.ls16{letter-spacing:22.300128px;}
.ls21{letter-spacing:30.240000px;}
.ls1c{letter-spacing:32.506560px;}
.ls20{letter-spacing:32.688000px;}
.ls12{letter-spacing:33.226560px;}
.lsf{letter-spacing:35.100000px;}
.ls13{letter-spacing:42.372000px;}
.ls19{letter-spacing:44.107776px;}
.ls1a{letter-spacing:44.231760px;}
.lsc{letter-spacing:69.672000px;}
.ls1f{letter-spacing:69.829200px;}
.ls1b{letter-spacing:97.841664px;}
.ls18{letter-spacing:97.892640px;}
.ls11{letter-spacing:119.435040px;}
.ls15{letter-spacing:132.465600px;}
.ls14{letter-spacing:132.516000px;}
.ls1e{letter-spacing:161.613600px;}
.ls1d{letter-spacing:161.664000px;}
.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:-46.677312px;}
.ws1e{word-spacing:-42.375168px;}
.ws20{word-spacing:-42.324480px;}
.ws1f{word-spacing:-41.171328px;}
.ws1a{word-spacing:-40.032000px;}
.wsc{word-spacing:-36.938880px;}
.ws22{word-spacing:-36.669312px;}
.ws21{word-spacing:-36.629280px;}
.ws15{word-spacing:-34.404480px;}
.ws1d{word-spacing:-33.466752px;}
.ws1b{word-spacing:-33.426720px;}
.ws14{word-spacing:-30.024000px;}
.ws1c{word-spacing:-28.810080px;}
.ws3{word-spacing:-27.846000px;}
.wsd{word-spacing:-27.751680px;}
.ws5{word-spacing:-27.720000px;}
.wsf{word-spacing:-26.661312px;}
.wse{word-spacing:-26.621280px;}
.ws18{word-spacing:-26.484480px;}
.wsa{word-spacing:-26.452800px;}
.ws12{word-spacing:-21.657312px;}
.ws10{word-spacing:-21.617280px;}
.ws13{word-spacing:-17.814240px;}
.ws11{word-spacing:-16.613280px;}
.ws7{word-spacing:-0.361728px;}
.ws2{word-spacing:-0.306000px;}
.ws4{word-spacing:-0.252000px;}
.ws6{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.wsb{word-spacing:0.120720px;}
.ws9{word-spacing:0.643488px;}
.ws19{word-spacing:0.648000px;}
.ws8{word-spacing:0.912000px;}
.ws16{word-spacing:49.298160px;}
.ws17{word-spacing:49.371096px;}
._0{margin-left:-3.202992px;}
._1{margin-left:-1.478304px;}
._2{width:1.094688px;}
._3{width:2.414880px;}
._4{width:29.172000px;}
.fc4{color:rgb(31,56,100);}
.fc3{color:rgb(255,0,0);}
.fc5{color:rgb(204,0,0);}
.fc2{color:rgb(197,90,17);}
.fc1{color:rgb(85,48,141);}
.fc0{color:rgb(0,0,0);}
.fs15{font-size:43.920000px;}
.fs18{font-size:44.064000px;}
.fs1a{font-size:51.840000px;}
.fs19{font-size:51.984000px;}
.fs16{font-size:59.760000px;}
.fs13{font-size:64.080000px;}
.fs8{font-size:72.000000px;}
.fs12{font-size:72.144000px;}
.fs14{font-size:77.760000px;}
.fs17{font-size:77.904000px;}
.fs21{font-size:84.240000px;}
.fs22{font-size:84.384000px;}
.fs24{font-size:90.000000px;}
.fs26{font-size:90.144000px;}
.fs7{font-size:95.760000px;}
.fs5{font-size:95.904000px;}
.fs6{font-size:102.240000px;}
.fs0{font-size:102.384000px;}
.fs23{font-size:105.840000px;}
.fs25{font-size:105.984000px;}
.fs10{font-size:108.000000px;}
.fsd{font-size:108.144000px;}
.fs4{font-size:120.240000px;}
.fsf{font-size:120.384000px;}
.fsb{font-size:126.000000px;}
.fsc{font-size:126.144000px;}
.fs1b{font-size:131.760000px;}
.fs1e{font-size:131.904000px;}
.fs1d{font-size:138.240000px;}
.fs20{font-size:144.000000px;}
.fs1f{font-size:149.760000px;}
.fs11{font-size:156.240000px;}
.fs1c{font-size:156.384000px;}
.fse{font-size:167.760000px;}
.fsa{font-size:167.904000px;}
.fs1{font-size:216.000000px;}
.fs3{font-size:246.240000px;}
.fs2{font-size:246.384000px;}
.fs9{font-size:396.144000px;}
.y0{bottom:0.000000px;}
.y1{bottom:21.276000px;}
.yf1{bottom:45.468000px;}
.y34{bottom:72.720000px;}
.ye3{bottom:79.632000px;}
.yf0{bottom:81.468000px;}
.y33{bottom:94.320000px;}
.yc5{bottom:95.508000px;}
.y50{bottom:101.916000px;}
.y87{bottom:108.792000px;}
.y44{bottom:113.112000px;}
.ye2{bottom:115.668000px;}
.yef{bottom:117.108000px;}
.y4f{bottom:126.432000px;}
.y2c{bottom:145.080000px;}
.yfa{bottom:148.968000px;}
.y45{bottom:150.450000px;}
.ye1{bottom:151.665000px;}
.yc4{bottom:154.950000px;}
.y78{bottom:167.400000px;}
.y43{bottom:169.125000px;}
.y86{bottom:174.165000px;}
.y5a{bottom:176.865000px;}
.y4e{bottom:179.715000px;}
.y7c{bottom:180.285000px;}
.ya{bottom:184.965000px;}
.ye0{bottom:187.665000px;}
.yee{bottom:189.105000px;}
.yf9{bottom:189.465000px;}
.y16{bottom:198.750000px;}
.y25{bottom:200.415000px;}
.yb9{bottom:200.595000px;}
.y42{bottom:203.730000px;}
.yd0{bottom:204.120000px;}
.y4d{bottom:204.195000px;}
.y36{bottom:206.130000px;}
.y64{bottom:206.715000px;}
.y58{bottom:207.570000px;}
.y59{bottom:211.425000px;}
.y30{bottom:214.170000px;}
.y77{bottom:214.200000px;}
.yc3{bottom:214.350000px;}
.y9e{bottom:219.525000px;}
.y41{bottom:221.370000px;}
.y6a{bottom:222.840000px;}
.ydf{bottom:223.665000px;}
.yed{bottom:225.105000px;}
.y4c{bottom:227.265000px;}
.y68{bottom:228.525000px;}
.y15{bottom:232.230000px;}
.yb8{bottom:232.995000px;}
.y35{bottom:234.975000px;}
.y24{bottom:238.215000px;}
.y85{bottom:239.685000px;}
.y73{bottom:240.660000px;}
.y63{bottom:241.275000px;}
.y97{bottom:241.710000px;}
.y57{bottom:242.130000px;}
.y9a{bottom:246.570000px;}
.y9{bottom:248.190000px;}
.y56{bottom:249.195000px;}
.y4b{bottom:251.745000px;}
.y8d{bottom:253.770000px;}
.ya9{bottom:254.850000px;}
.y69{bottom:255.270000px;}
.y40{bottom:255.930000px;}
.yde{bottom:259.665000px;}
.yec{bottom:261.510000px;}
.yb7{bottom:265.395000px;}
.ya0{bottom:266.325000px;}
.y81{bottom:266.685000px;}
.yd3{bottom:267.945000px;}
.y14{bottom:270.030000px;}
.y62{bottom:270.510000px;}
.ycf{bottom:271.800000px;}
.y6e{bottom:272.265000px;}
.y8{bottom:272.310000px;}
.yc2{bottom:273.750000px;}
.y3f{bottom:274.350000px;}
.y29{bottom:279.435000px;}
.y72{bottom:280.110000px;}
.y4a{bottom:280.515000px;}
.y96{bottom:281.340000px;}
.y55{bottom:283.755000px;}
.yae{bottom:284.370000px;}
.y23{bottom:292.065000px;}
.y67{bottom:292.320000px;}
.ya8{bottom:294.450000px;}
.ydd{bottom:295.665000px;}
.yf8{bottom:297.150000px;}
.yeb{bottom:297.510000px;}
.yb6{bottom:297.795000px;}
.y8c{bottom:298.620000px;}
.y49{bottom:304.995000px;}
.y61{bottom:305.070000px;}
.yce{bottom:305.820000px;}
.y2f{bottom:307.800000px;}
.y13{bottom:307.830000px;}
.y91{bottom:307.980000px;}
.y3e{bottom:308.910000px;}
.y80{bottom:311.730000px;}
.y9f{bottom:313.170000px;}
.y6d{bottom:314.790000px;}
.y95{bottom:320.940000px;}
.y5c{bottom:321.480000px;}
.y1c{bottom:324.540000px;}
.yad{bottom:327.570000px;}
.y22{bottom:329.865000px;}
.ya3{bottom:330.150000px;}
.yb5{bottom:330.225000px;}
.yc1{bottom:333.180000px;}
.yf7{bottom:333.510000px;}
.ya7{bottom:334.080000px;}
.y60{bottom:334.290000px;}
.y5b{bottom:336.135000px;}
.y8b{bottom:336.600000px;}
.ycd{bottom:339.660000px;}
.y99{bottom:340.200000px;}
.y12{bottom:345.630000px;}
.y2b{bottom:350.460000px;}
.y28{bottom:354.165000px;}
.y76{bottom:354.630000px;}
.y66{bottom:356.115000px;}
.y7f{bottom:356.730000px;}
.y6c{bottom:357.330000px;}
.y9d{bottom:359.970000px;}
.y1b{bottom:362.370000px;}
.yb4{bottom:362.625000px;}
.y71{bottom:365.250000px;}
.y2a{bottom:366.660000px;}
.y7b{bottom:367.530000px;}
.y21{bottom:367.665000px;}
.ydc{bottom:367.710000px;}
.yc{bottom:367.995000px;}
.y3b{bottom:368.280000px;}
.y5f{bottom:368.850000px;}
.yea{bottom:369.150000px;}
.ya2{bottom:369.795000px;}
.y84{bottom:370.410000px;}
.yac{bottom:370.770000px;}
.y48{bottom:371.700000px;}
.ycc{bottom:373.530000px;}
.ya6{bottom:373.680000px;}
.y7{bottom:379.080000px;}
.y8a{bottom:380.700000px;}
.y11{bottom:383.475000px;}
.y90{bottom:383.580000px;}
.yc0{bottom:392.580000px;}
.yb3{bottom:395.025000px;}
.y6b{bottom:395.610000px;}
.y5e{bottom:398.085000px;}
.y94{bottom:400.140000px;}
.y1a{bottom:400.170000px;}
.y2e{bottom:401.400000px;}
.y7e{bottom:401.730000px;}
.y54{bottom:402.810000px;}
.ydb{bottom:403.710000px;}
.y27{bottom:404.565000px;}
.ye9{bottom:405.150000px;}
.y20{bottom:405.510000px;}
.y3d{bottom:405.615000px;}
.y70{bottom:406.110000px;}
.ycb{bottom:407.550000px;}
.ya1{bottom:409.395000px;}
.yf6{bottom:410.010000px;}
.ya5{bottom:413.280000px;}
.yab{bottom:413.970000px;}
.y7a{bottom:414.330000px;}
.y89{bottom:415.800000px;}
.yff{bottom:417.270000px;}
.y65{bottom:419.970000px;}
.y10{bottom:421.275000px;}
.yb2{bottom:428.145000px;}
.y6{bottom:428.940000px;}
.y5d{bottom:432.645000px;}
.y98{bottom:433.800000px;}
.y83{bottom:435.930000px;}
.y19{bottom:437.970000px;}
.y7d{bottom:439.710000px;}
.y93{bottom:439.740000px;}
.ye8{bottom:441.540000px;}
.y1f{bottom:443.310000px;}
.y3a{bottom:444.495000px;}
.y75{bottom:448.275000px;}
.y47{bottom:448.455000px;}
.ybf{bottom:451.980000px;}
.ya4{bottom:452.880000px;}
.y9c{bottom:453.570000px;}
.y53{bottom:453.855000px;}
.y37{bottom:454.350000px;}
.y26{bottom:454.965000px;}
.yf5{bottom:455.040000px;}
.yf{bottom:459.075000px;}
.y8f{bottom:459.210000px;}
.y88{bottom:459.930000px;}
.yd4{bottom:464.475000px;}
.yca{bottom:475.230000px;}
.yda{bottom:475.710000px;}
.y18{bottom:475.770000px;}
.yfe{bottom:476.670000px;}
.ye7{bottom:477.180000px;}
.y1e{bottom:481.110000px;}
.y79{bottom:486.510000px;}
.y52{bottom:487.875000px;}
.y5{bottom:491.730000px;}
.y2d{bottom:495.030000px;}
.y74{bottom:495.075000px;}
.y39{bottom:496.695000px;}
.ye{bottom:496.875000px;}
.y46{bottom:499.530000px;}
.y6f{bottom:499.755000px;}
.yf4{bottom:500.040000px;}
.yb1{bottom:500.190000px;}
.y9b{bottom:500.400000px;}
.y82{bottom:501.300000px;}
.yd2{bottom:501.405000px;}
.y32{bottom:502.380000px;}
.yc7{bottom:507.270000px;}
.ybe{bottom:511.410000px;}
.yd9{bottom:511.740000px;}
.ye6{bottom:513.540000px;}
.y17{bottom:513.570000px;}
.y1d{bottom:518.910000px;}
.y92{bottom:527.430000px;}
.y51{bottom:530.385000px;}
.yc6{bottom:532.470000px;}
.y8e{bottom:534.810000px;}
.yfd{bottom:536.070000px;}
.yb0{bottom:536.190000px;}
.y31{bottom:540.180000px;}
.yc9{bottom:543.090000px;}
.yf3{bottom:545.040000px;}
.yd8{bottom:547.740000px;}
.ye5{bottom:549.180000px;}
.y38{bottom:549.690000px;}
.y3c{bottom:550.590000px;}
.y4{bottom:565.530000px;}
.ybd{bottom:570.810000px;}
.yd7{bottom:583.740000px;}
.yd6{bottom:619.740000px;}
.ye4{bottom:621.210000px;}
.yf2{bottom:621.570000px;}
.ybc{bottom:630.210000px;}
.yd{bottom:632.130000px;}
.yaf{bottom:636.045000px;}
.y3{bottom:639.360000px;}
.yc8{bottom:642.135000px;}
.yd5{bottom:655.740000px;}
.yaa{bottom:685.080000px;}
.yfb{bottom:685.440000px;}
.ybb{bottom:689.655000px;}
.yfc{bottom:691.230000px;}
.yd1{bottom:691.455000px;}
.y2{bottom:711.360000px;}
.yba{bottom:749.055000px;}
.yb{bottom:758.340000px;}
.h1a{height:32.103633px;}
.h18{height:46.839727px;}
.h9{height:52.628906px;}
.h16{height:56.839219px;}
.h19{height:56.944477px;}
.h14{height:60.960938px;}
.h15{height:61.082859px;}
.h26{height:61.575820px;}
.h27{height:61.681078px;}
.h2f{height:64.002656px;}
.h30{height:64.413984px;}
.h8{height:69.996445px;}
.h6{height:70.101703px;}
.h7{height:75.431953px;}
.h1{height:75.538195px;}
.h28{height:76.136836px;}
.h29{height:76.266984px;}
.h1b{height:78.943359px;}
.h17{height:79.048617px;}
.h2b{height:80.258555px;}
.h2e{height:80.367750px;}
.h31{height:87.890273px;}
.h24{height:87.995531px;}
.h23{height:91.178086px;}
.h12{height:91.441406px;}
.h32{height:91.463625px;}
.he{height:91.563328px;}
.h33{height:91.941328px;}
.h34{height:92.051438px;}
.h35{height:96.310898px;}
.h36{height:96.416156px;}
.h11{height:101.804766px;}
.h1f{height:101.926687px;}
.h22{height:105.257812px;}
.hc{height:106.681641px;}
.hd{height:106.803562px;}
.h5{height:108.673945px;}
.h21{height:109.468125px;}
.h1c{height:111.558516px;}
.h20{height:111.680437px;}
.h2d{height:116.796094px;}
.h2c{height:116.955000px;}
.h25{height:119.179688px;}
.hb{height:126.173953px;}
.h13{height:132.285234px;}
.h1d{height:132.407156px;}
.h2a{height:135.354375px;}
.hf{height:142.038984px;}
.h10{height:142.160906px;}
.h1e{height:152.550000px;}
.h2{height:157.886719px;}
.h4{height:222.553828px;}
.h3{height:222.683977px;}
.ha{height:333.859641px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x4d{left:38.015979px;}
.x3{left:44.063979px;}
.x2{left:51.119979px;}
.x4e{left:71.603979px;}
.x46{left:74.339979px;}
.x47{left:76.967979px;}
.x41{left:78.407979px;}
.x6{left:85.067979px;}
.x4a{left:100.367979px;}
.x10{left:106.307979px;}
.x45{left:107.387979px;}
.x43{left:112.247979px;}
.x1{left:117.359979px;}
.x42{left:118.907979px;}
.x2c{left:138.203979px;}
.x2b{left:144.575979px;}
.x2a{left:148.823979px;}
.x35{left:159.479979px;}
.x31{left:163.724979px;}
.x7{left:165.854979px;}
.x2d{left:178.589979px;}
.x8{left:191.369979px;}
.x39{left:194.294979px;}
.x29{left:214.349979px;}
.x38{left:218.414979px;}
.xb{left:223.274979px;}
.x24{left:228.134979px;}
.x49{left:232.274979px;}
.xf{left:233.894979px;}
.x37{left:280.334979px;}
.x44{left:327.854979px;}
.x48{left:334.259979px;}
.x5{left:336.344979px;}
.x22{left:346.889979px;}
.x23{left:348.509979px;}
.x28{left:397.619979px;}
.x27{left:406.109979px;}
.x26{left:431.639979px;}
.xc{left:435.569979px;}
.x33{left:445.169979px;}
.x2f{left:446.429979px;}
.xd{left:467.969979px;}
.x34{left:487.289979px;}
.x16{left:488.954979px;}
.x1a{left:495.794979px;}
.x17{left:499.679979px;}
.x21{left:506.444979px;}
.x30{left:558.614979px;}
.xa{left:572.294979px;}
.x32{left:576.074979px;}
.x36{left:589.679979px;}
.x18{left:592.949979px;}
.x15{left:597.629979px;}
.x19{left:603.569979px;}
.x4b{left:614.774979px;}
.x2e{left:637.094979px;}
.x3b{left:639.869979px;}
.x4c{left:648.614979px;}
.x3c{left:670.109979px;}
.x1e{left:674.024979px;}
.x1c{left:686.774979px;}
.x1b{left:691.019979px;}
.x1d{left:695.309979px;}
.x11{left:712.289979px;}
.x9{left:713.954979px;}
.xe{left:720.284979px;}
.x25{left:733.574979px;}
.x3a{left:737.069979px;}
.x12{left:785.699979px;}
.x14{left:789.734979px;}
.x13{left:823.139979px;}
.x1f{left:1069.529979px;}
.x3e{left:1109.909979px;}
.x40{left:1111.889979px;}
.x3f{left:1117.649979px;}
.x3d{left:1193.789979px;}
.x20{left:1374.629979px;}
.x4{left:1384.709979px;}
@media print{
.v4{vertical-align:-61.813333pt;}
.v6{vertical-align:-23.680000pt;}
.v1{vertical-align:-20.480000pt;}
.v3{vertical-align:-19.200000pt;}
.v5{vertical-align:-16.640000pt;}
.v2{vertical-align:-14.080000pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.576000pt;}
.lse{letter-spacing:-0.402667pt;}
.lsd{letter-spacing:-0.331733pt;}
.ls8{letter-spacing:-0.326933pt;}
.lsa{letter-spacing:-0.309867pt;}
.ls3{letter-spacing:-0.266667pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls17{letter-spacing:-0.104533pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.066560pt;}
.ls5{letter-spacing:0.066667pt;}
.ls7{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.112000pt;}
.ls2{letter-spacing:0.133867pt;}
.lsb{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.320000pt;}
.ls16{letter-spacing:19.822336pt;}
.ls21{letter-spacing:26.880000pt;}
.ls1c{letter-spacing:28.894720pt;}
.ls20{letter-spacing:29.056000pt;}
.ls12{letter-spacing:29.534720pt;}
.lsf{letter-spacing:31.200000pt;}
.ls13{letter-spacing:37.664000pt;}
.ls19{letter-spacing:39.206912pt;}
.ls1a{letter-spacing:39.317120pt;}
.lsc{letter-spacing:61.930667pt;}
.ls1f{letter-spacing:62.070400pt;}
.ls1b{letter-spacing:86.970368pt;}
.ls18{letter-spacing:87.015680pt;}
.ls11{letter-spacing:106.164480pt;}
.ls15{letter-spacing:117.747200pt;}
.ls14{letter-spacing:117.792000pt;}
.ls1e{letter-spacing:143.656533pt;}
.ls1d{letter-spacing:143.701333pt;}
.ws1{word-spacing:-41.490944pt;}
.ws1e{word-spacing:-37.666816pt;}
.ws20{word-spacing:-37.621760pt;}
.ws1f{word-spacing:-36.596736pt;}
.ws1a{word-spacing:-35.584000pt;}
.wsc{word-spacing:-32.834560pt;}
.ws22{word-spacing:-32.594944pt;}
.ws21{word-spacing:-32.559360pt;}
.ws15{word-spacing:-30.581760pt;}
.ws1d{word-spacing:-29.748224pt;}
.ws1b{word-spacing:-29.712640pt;}
.ws14{word-spacing:-26.688000pt;}
.ws1c{word-spacing:-25.608960pt;}
.ws3{word-spacing:-24.752000pt;}
.wsd{word-spacing:-24.668160pt;}
.ws5{word-spacing:-24.640000pt;}
.wsf{word-spacing:-23.698944pt;}
.wse{word-spacing:-23.663360pt;}
.ws18{word-spacing:-23.541760pt;}
.wsa{word-spacing:-23.513600pt;}
.ws12{word-spacing:-19.250944pt;}
.ws10{word-spacing:-19.215360pt;}
.ws13{word-spacing:-15.834880pt;}
.ws11{word-spacing:-14.767360pt;}
.ws7{word-spacing:-0.321536pt;}
.ws2{word-spacing:-0.272000pt;}
.ws4{word-spacing:-0.224000pt;}
.ws6{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.wsb{word-spacing:0.107307pt;}
.ws9{word-spacing:0.571989pt;}
.ws19{word-spacing:0.576000pt;}
.ws8{word-spacing:0.810667pt;}
.ws16{word-spacing:43.820587pt;}
.ws17{word-spacing:43.885419pt;}
._0{margin-left:-2.847104pt;}
._1{margin-left:-1.314048pt;}
._2{width:0.973056pt;}
._3{width:2.146560pt;}
._4{width:25.930667pt;}
.fs15{font-size:39.040000pt;}
.fs18{font-size:39.168000pt;}
.fs1a{font-size:46.080000pt;}
.fs19{font-size:46.208000pt;}
.fs16{font-size:53.120000pt;}
.fs13{font-size:56.960000pt;}
.fs8{font-size:64.000000pt;}
.fs12{font-size:64.128000pt;}
.fs14{font-size:69.120000pt;}
.fs17{font-size:69.248000pt;}
.fs21{font-size:74.880000pt;}
.fs22{font-size:75.008000pt;}
.fs24{font-size:80.000000pt;}
.fs26{font-size:80.128000pt;}
.fs7{font-size:85.120000pt;}
.fs5{font-size:85.248000pt;}
.fs6{font-size:90.880000pt;}
.fs0{font-size:91.008000pt;}
.fs23{font-size:94.080000pt;}
.fs25{font-size:94.208000pt;}
.fs10{font-size:96.000000pt;}
.fsd{font-size:96.128000pt;}
.fs4{font-size:106.880000pt;}
.fsf{font-size:107.008000pt;}
.fsb{font-size:112.000000pt;}
.fsc{font-size:112.128000pt;}
.fs1b{font-size:117.120000pt;}
.fs1e{font-size:117.248000pt;}
.fs1d{font-size:122.880000pt;}
.fs20{font-size:128.000000pt;}
.fs1f{font-size:133.120000pt;}
.fs11{font-size:138.880000pt;}
.fs1c{font-size:139.008000pt;}
.fse{font-size:149.120000pt;}
.fsa{font-size:149.248000pt;}
.fs1{font-size:192.000000pt;}
.fs3{font-size:218.880000pt;}
.fs2{font-size:219.008000pt;}
.fs9{font-size:352.128000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:18.912000pt;}
.yf1{bottom:40.416000pt;}
.y34{bottom:64.640000pt;}
.ye3{bottom:70.784000pt;}
.yf0{bottom:72.416000pt;}
.y33{bottom:83.840000pt;}
.yc5{bottom:84.896000pt;}
.y50{bottom:90.592000pt;}
.y87{bottom:96.704000pt;}
.y44{bottom:100.544000pt;}
.ye2{bottom:102.816000pt;}
.yef{bottom:104.096000pt;}
.y4f{bottom:112.384000pt;}
.y2c{bottom:128.960000pt;}
.yfa{bottom:132.416000pt;}
.y45{bottom:133.733333pt;}
.ye1{bottom:134.813333pt;}
.yc4{bottom:137.733333pt;}
.y78{bottom:148.800000pt;}
.y43{bottom:150.333333pt;}
.y86{bottom:154.813333pt;}
.y5a{bottom:157.213333pt;}
.y4e{bottom:159.746667pt;}
.y7c{bottom:160.253333pt;}
.ya{bottom:164.413333pt;}
.ye0{bottom:166.813333pt;}
.yee{bottom:168.093333pt;}
.yf9{bottom:168.413333pt;}
.y16{bottom:176.666667pt;}
.y25{bottom:178.146667pt;}
.yb9{bottom:178.306667pt;}
.y42{bottom:181.093333pt;}
.yd0{bottom:181.440000pt;}
.y4d{bottom:181.506667pt;}
.y36{bottom:183.226667pt;}
.y64{bottom:183.746667pt;}
.y58{bottom:184.506667pt;}
.y59{bottom:187.933333pt;}
.y30{bottom:190.373333pt;}
.y77{bottom:190.400000pt;}
.yc3{bottom:190.533333pt;}
.y9e{bottom:195.133333pt;}
.y41{bottom:196.773333pt;}
.y6a{bottom:198.080000pt;}
.ydf{bottom:198.813333pt;}
.yed{bottom:200.093333pt;}
.y4c{bottom:202.013333pt;}
.y68{bottom:203.133333pt;}
.y15{bottom:206.426667pt;}
.yb8{bottom:207.106667pt;}
.y35{bottom:208.866667pt;}
.y24{bottom:211.746667pt;}
.y85{bottom:213.053333pt;}
.y73{bottom:213.920000pt;}
.y63{bottom:214.466667pt;}
.y97{bottom:214.853333pt;}
.y57{bottom:215.226667pt;}
.y9a{bottom:219.173333pt;}
.y9{bottom:220.613333pt;}
.y56{bottom:221.506667pt;}
.y4b{bottom:223.773333pt;}
.y8d{bottom:225.573333pt;}
.ya9{bottom:226.533333pt;}
.y69{bottom:226.906667pt;}
.y40{bottom:227.493333pt;}
.yde{bottom:230.813333pt;}
.yec{bottom:232.453333pt;}
.yb7{bottom:235.906667pt;}
.ya0{bottom:236.733333pt;}
.y81{bottom:237.053333pt;}
.yd3{bottom:238.173333pt;}
.y14{bottom:240.026667pt;}
.y62{bottom:240.453333pt;}
.ycf{bottom:241.600000pt;}
.y6e{bottom:242.013333pt;}
.y8{bottom:242.053333pt;}
.yc2{bottom:243.333333pt;}
.y3f{bottom:243.866667pt;}
.y29{bottom:248.386667pt;}
.y72{bottom:248.986667pt;}
.y4a{bottom:249.346667pt;}
.y96{bottom:250.080000pt;}
.y55{bottom:252.226667pt;}
.yae{bottom:252.773333pt;}
.y23{bottom:259.613333pt;}
.y67{bottom:259.840000pt;}
.ya8{bottom:261.733333pt;}
.ydd{bottom:262.813333pt;}
.yf8{bottom:264.133333pt;}
.yeb{bottom:264.453333pt;}
.yb6{bottom:264.706667pt;}
.y8c{bottom:265.440000pt;}
.y49{bottom:271.106667pt;}
.y61{bottom:271.173333pt;}
.yce{bottom:271.840000pt;}
.y2f{bottom:273.600000pt;}
.y13{bottom:273.626667pt;}
.y91{bottom:273.760000pt;}
.y3e{bottom:274.586667pt;}
.y80{bottom:277.093333pt;}
.y9f{bottom:278.373333pt;}
.y6d{bottom:279.813333pt;}
.y95{bottom:285.280000pt;}
.y5c{bottom:285.760000pt;}
.y1c{bottom:288.480000pt;}
.yad{bottom:291.173333pt;}
.y22{bottom:293.213333pt;}
.ya3{bottom:293.466667pt;}
.yb5{bottom:293.533333pt;}
.yc1{bottom:296.160000pt;}
.yf7{bottom:296.453333pt;}
.ya7{bottom:296.960000pt;}
.y60{bottom:297.146667pt;}
.y5b{bottom:298.786667pt;}
.y8b{bottom:299.200000pt;}
.ycd{bottom:301.920000pt;}
.y99{bottom:302.400000pt;}
.y12{bottom:307.226667pt;}
.y2b{bottom:311.520000pt;}
.y28{bottom:314.813333pt;}
.y76{bottom:315.226667pt;}
.y66{bottom:316.546667pt;}
.y7f{bottom:317.093333pt;}
.y6c{bottom:317.626667pt;}
.y9d{bottom:319.973333pt;}
.y1b{bottom:322.106667pt;}
.yb4{bottom:322.333333pt;}
.y71{bottom:324.666667pt;}
.y2a{bottom:325.920000pt;}
.y7b{bottom:326.693333pt;}
.y21{bottom:326.813333pt;}
.ydc{bottom:326.853333pt;}
.yc{bottom:327.106667pt;}
.y3b{bottom:327.360000pt;}
.y5f{bottom:327.866667pt;}
.yea{bottom:328.133333pt;}
.ya2{bottom:328.706667pt;}
.y84{bottom:329.253333pt;}
.yac{bottom:329.573333pt;}
.y48{bottom:330.400000pt;}
.ycc{bottom:332.026667pt;}
.ya6{bottom:332.160000pt;}
.y7{bottom:336.960000pt;}
.y8a{bottom:338.400000pt;}
.y11{bottom:340.866667pt;}
.y90{bottom:340.960000pt;}
.yc0{bottom:348.960000pt;}
.yb3{bottom:351.133333pt;}
.y6b{bottom:351.653333pt;}
.y5e{bottom:353.853333pt;}
.y94{bottom:355.680000pt;}
.y1a{bottom:355.706667pt;}
.y2e{bottom:356.800000pt;}
.y7e{bottom:357.093333pt;}
.y54{bottom:358.053333pt;}
.ydb{bottom:358.853333pt;}
.y27{bottom:359.613333pt;}
.ye9{bottom:360.133333pt;}
.y20{bottom:360.453333pt;}
.y3d{bottom:360.546667pt;}
.y70{bottom:360.986667pt;}
.ycb{bottom:362.266667pt;}
.ya1{bottom:363.906667pt;}
.yf6{bottom:364.453333pt;}
.ya5{bottom:367.360000pt;}
.yab{bottom:367.973333pt;}
.y7a{bottom:368.293333pt;}
.y89{bottom:369.600000pt;}
.yff{bottom:370.906667pt;}
.y65{bottom:373.306667pt;}
.y10{bottom:374.466667pt;}
.yb2{bottom:380.573333pt;}
.y6{bottom:381.280000pt;}
.y5d{bottom:384.573333pt;}
.y98{bottom:385.600000pt;}
.y83{bottom:387.493333pt;}
.y19{bottom:389.306667pt;}
.y7d{bottom:390.853333pt;}
.y93{bottom:390.880000pt;}
.ye8{bottom:392.480000pt;}
.y1f{bottom:394.053333pt;}
.y3a{bottom:395.106667pt;}
.y75{bottom:398.466667pt;}
.y47{bottom:398.626667pt;}
.ybf{bottom:401.760000pt;}
.ya4{bottom:402.560000pt;}
.y9c{bottom:403.173333pt;}
.y53{bottom:403.426667pt;}
.y37{bottom:403.866667pt;}
.y26{bottom:404.413333pt;}
.yf5{bottom:404.480000pt;}
.yf{bottom:408.066667pt;}
.y8f{bottom:408.186667pt;}
.y88{bottom:408.826667pt;}
.yd4{bottom:412.866667pt;}
.yca{bottom:422.426667pt;}
.yda{bottom:422.853333pt;}
.y18{bottom:422.906667pt;}
.yfe{bottom:423.706667pt;}
.ye7{bottom:424.160000pt;}
.y1e{bottom:427.653333pt;}
.y79{bottom:432.453333pt;}
.y52{bottom:433.666667pt;}
.y5{bottom:437.093333pt;}
.y2d{bottom:440.026667pt;}
.y74{bottom:440.066667pt;}
.y39{bottom:441.506667pt;}
.ye{bottom:441.666667pt;}
.y46{bottom:444.026667pt;}
.y6f{bottom:444.226667pt;}
.yf4{bottom:444.480000pt;}
.yb1{bottom:444.613333pt;}
.y9b{bottom:444.800000pt;}
.y82{bottom:445.600000pt;}
.yd2{bottom:445.693333pt;}
.y32{bottom:446.560000pt;}
.yc7{bottom:450.906667pt;}
.ybe{bottom:454.586667pt;}
.yd9{bottom:454.880000pt;}
.ye6{bottom:456.480000pt;}
.y17{bottom:456.506667pt;}
.y1d{bottom:461.253333pt;}
.y92{bottom:468.826667pt;}
.y51{bottom:471.453333pt;}
.yc6{bottom:473.306667pt;}
.y8e{bottom:475.386667pt;}
.yfd{bottom:476.506667pt;}
.yb0{bottom:476.613333pt;}
.y31{bottom:480.160000pt;}
.yc9{bottom:482.746667pt;}
.yf3{bottom:484.480000pt;}
.yd8{bottom:486.880000pt;}
.ye5{bottom:488.160000pt;}
.y38{bottom:488.613333pt;}
.y3c{bottom:489.413333pt;}
.y4{bottom:502.693333pt;}
.ybd{bottom:507.386667pt;}
.yd7{bottom:518.880000pt;}
.yd6{bottom:550.880000pt;}
.ye4{bottom:552.186667pt;}
.yf2{bottom:552.506667pt;}
.ybc{bottom:560.186667pt;}
.yd{bottom:561.893333pt;}
.yaf{bottom:565.373333pt;}
.y3{bottom:568.320000pt;}
.yc8{bottom:570.786667pt;}
.yd5{bottom:582.880000pt;}
.yaa{bottom:608.960000pt;}
.yfb{bottom:609.280000pt;}
.ybb{bottom:613.026667pt;}
.yfc{bottom:614.426667pt;}
.yd1{bottom:614.626667pt;}
.y2{bottom:632.320000pt;}
.yba{bottom:665.826667pt;}
.yb{bottom:674.080000pt;}
.h1a{height:28.536562pt;}
.h18{height:41.635312pt;}
.h9{height:46.781250pt;}
.h16{height:50.523750pt;}
.h19{height:50.617312pt;}
.h14{height:54.187500pt;}
.h15{height:54.295875pt;}
.h26{height:54.734062pt;}
.h27{height:54.827625pt;}
.h2f{height:56.891250pt;}
.h30{height:57.256875pt;}
.h8{height:62.219062pt;}
.h6{height:62.312625pt;}
.h7{height:67.050625pt;}
.h1{height:67.145062pt;}
.h28{height:67.677187pt;}
.h29{height:67.792875pt;}
.h1b{height:70.171875pt;}
.h17{height:70.265437pt;}
.h2b{height:71.340938pt;}
.h2e{height:71.438000pt;}
.h31{height:78.124687pt;}
.h24{height:78.218250pt;}
.h23{height:81.047187pt;}
.h12{height:81.281250pt;}
.h32{height:81.301000pt;}
.he{height:81.389625pt;}
.h33{height:81.725625pt;}
.h34{height:81.823500pt;}
.h35{height:85.609687pt;}
.h36{height:85.703250pt;}
.h11{height:90.493125pt;}
.h1f{height:90.601500pt;}
.h22{height:93.562500pt;}
.hc{height:94.828125pt;}
.hd{height:94.936500pt;}
.h5{height:96.599062pt;}
.h21{height:97.305000pt;}
.h1c{height:99.163125pt;}
.h20{height:99.271500pt;}
.h2d{height:103.818750pt;}
.h2c{height:103.960000pt;}
.h25{height:105.937500pt;}
.hb{height:112.154625pt;}
.h13{height:117.586875pt;}
.h1d{height:117.695250pt;}
.h2a{height:120.315000pt;}
.hf{height:126.256875pt;}
.h10{height:126.365250pt;}
.h1e{height:135.600000pt;}
.h2{height:140.343750pt;}
.h4{height:197.825625pt;}
.h3{height:197.941313pt;}
.ha{height:296.764125pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x4d{left:33.791981pt;}
.x3{left:39.167981pt;}
.x2{left:45.439981pt;}
.x4e{left:63.647981pt;}
.x46{left:66.079981pt;}
.x47{left:68.415981pt;}
.x41{left:69.695981pt;}
.x6{left:75.615981pt;}
.x4a{left:89.215981pt;}
.x10{left:94.495981pt;}
.x45{left:95.455981pt;}
.x43{left:99.775981pt;}
.x1{left:104.319981pt;}
.x42{left:105.695981pt;}
.x2c{left:122.847981pt;}
.x2b{left:128.511981pt;}
.x2a{left:132.287981pt;}
.x35{left:141.759981pt;}
.x31{left:145.533314pt;}
.x7{left:147.426648pt;}
.x2d{left:158.746648pt;}
.x8{left:170.106648pt;}
.x39{left:172.706648pt;}
.x29{left:190.533314pt;}
.x38{left:194.146648pt;}
.xb{left:198.466648pt;}
.x24{left:202.786648pt;}
.x49{left:206.466648pt;}
.xf{left:207.906648pt;}
.x37{left:249.186648pt;}
.x44{left:291.426648pt;}
.x48{left:297.119981pt;}
.x5{left:298.973314pt;}
.x22{left:308.346648pt;}
.x23{left:309.786648pt;}
.x28{left:353.439981pt;}
.x27{left:360.986648pt;}
.x26{left:383.679981pt;}
.xc{left:387.173314pt;}
.x33{left:395.706648pt;}
.x2f{left:396.826648pt;}
.xd{left:415.973314pt;}
.x34{left:433.146648pt;}
.x16{left:434.626648pt;}
.x1a{left:440.706648pt;}
.x17{left:444.159981pt;}
.x21{left:450.173314pt;}
.x30{left:496.546648pt;}
.xa{left:508.706648pt;}
.x32{left:512.066648pt;}
.x36{left:524.159981pt;}
.x18{left:527.066648pt;}
.x15{left:531.226648pt;}
.x19{left:536.506648pt;}
.x4b{left:546.466648pt;}
.x2e{left:566.306648pt;}
.x3b{left:568.773314pt;}
.x4c{left:576.546648pt;}
.x3c{left:595.653314pt;}
.x1e{left:599.133314pt;}
.x1c{left:610.466648pt;}
.x1b{left:614.239981pt;}
.x1d{left:618.053314pt;}
.x11{left:633.146648pt;}
.x9{left:634.626648pt;}
.xe{left:640.253314pt;}
.x25{left:652.066648pt;}
.x3a{left:655.173314pt;}
.x12{left:698.399981pt;}
.x14{left:701.986648pt;}
.x13{left:731.679981pt;}
.x1f{left:950.693314pt;}
.x3e{left:986.586648pt;}
.x40{left:988.346648pt;}
.x3f{left:993.466648pt;}
.x3d{left:1061.146648pt;}
.x20{left:1221.893314pt;}
.x4{left:1230.853314pt;}
}




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