
    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_8f70c66e0fac77bdc60e8ad8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.982000;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_77016791bd4075ac23f9d2d2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.027000;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_ae0320912e6a6903e3d28b38.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120000;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_4f019238b07aab3a441355d3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.991000;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_092c1054af4e199876a0c5ab.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.989000;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_5bcba8dfc03a6dcb1c641da9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.743000;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_2fef4aa495a95c4ad2248fb2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.100098;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_a0c4ff38bf615ae59e4d1a6c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.781250;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_69050ddd3d5fbefdec60681b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.100098;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_037662926cf037a794b0e125.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.989000;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_2fef4aa495a95c4ad2248fb2.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.100098;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_5bcba8dfc03a6dcb1c641da9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.743000;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_69050ddd3d5fbefdec60681b.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.100098;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_64b21da195d7f7f72f427a3a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.989000;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_5bcba8dfc03a6dcb1c641da9.woff2')format("woff");}.fff{font-family:fff;line-height:0.743000;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_2fef4aa495a95c4ad2248fb2.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.100098;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_69050ddd3d5fbefdec60681b.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.100098;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_037662926cf037a794b0e125.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.989000;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_ece40a2b33907eedb509a935.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.989000;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_f6f3442d6b3d5c5e40e29f7a.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.027000;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_9dca84723b7dbc79b94441b3.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.991000;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(0.252100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252100,0.000000,0.000000,0.250000,0,0);}
.v7{vertical-align:-43.950589px;}
.v3{vertical-align:-14.788406px;}
.v4{vertical-align:-7.325098px;}
.v1{vertical-align:-3.250200px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:3.547375px;}
.v2{vertical-align:11.637000px;}
.v8{vertical-align:24.647343px;}
.v5{vertical-align:28.194718px;}
.v6{vertical-align:56.435505px;}
.ls5{letter-spacing:-2.520000px;}
.ls6{letter-spacing:-1.380000px;}
.ls2{letter-spacing:-0.180000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.004800px;}
.ls1{letter-spacing:0.005400px;}
.ls4{letter-spacing:0.046070px;}
.ls8{letter-spacing:0.054000px;}
.lsc{letter-spacing:0.162000px;}
.ls9{letter-spacing:0.324000px;}
.ls7{letter-spacing:0.648000px;}
.lsa{letter-spacing:0.864000px;}
.lsb{letter-spacing:1.242000px;}
.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;}
}
.ws28{word-spacing:-9.072000px;}
.ws19{word-spacing:-8.748000px;}
.ws0{word-spacing:-8.064000px;}
.ws1{word-spacing:-7.920000px;}
.wse{word-spacing:-7.601517px;}
.ws10{word-spacing:-7.463308px;}
.ws36{word-spacing:-3.024000px;}
.ws22{word-spacing:-2.376000px;}
.ws1c{word-spacing:-1.404000px;}
.ws35{word-spacing:-1.242000px;}
.ws31{word-spacing:-1.188000px;}
.ws37{word-spacing:-1.080000px;}
.ws32{word-spacing:-0.864000px;}
.ws1e{word-spacing:-0.648000px;}
.ws29{word-spacing:-0.324000px;}
.ws33{word-spacing:-0.162000px;}
.ws20{word-spacing:-0.054000px;}
.ws5{word-spacing:-0.048000px;}
.ws2{word-spacing:0.000000px;}
.ws6{word-spacing:0.180000px;}
.ws9{word-spacing:0.240000px;}
.wsa{word-spacing:0.660000px;}
.ws1d{word-spacing:1.134000px;}
.ws26{word-spacing:1.188000px;}
.ws18{word-spacing:1.860000px;}
.ws2e{word-spacing:1.944000px;}
.wsb{word-spacing:2.460000px;}
.ws1f{word-spacing:2.754000px;}
.ws3{word-spacing:2.970000px;}
.ws2f{word-spacing:3.024000px;}
.ws4{word-spacing:3.276000px;}
.ws1b{word-spacing:3.402000px;}
.ws2a{word-spacing:3.510000px;}
.ws30{word-spacing:3.888000px;}
.ws38{word-spacing:4.374000px;}
.ws34{word-spacing:4.482000px;}
.ws24{word-spacing:5.022000px;}
.ws13{word-spacing:5.340000px;}
.ws27{word-spacing:6.048000px;}
.ws2b{word-spacing:6.318000px;}
.ws25{word-spacing:6.534000px;}
.ws1a{word-spacing:7.830000px;}
.ws17{word-spacing:8.220000px;}
.ws23{word-spacing:8.532000px;}
.ws21{word-spacing:10.152000px;}
.ws2d{word-spacing:10.206000px;}
.ws16{word-spacing:10.800000px;}
.ws14{word-spacing:11.460000px;}
.ws7{word-spacing:11.580000px;}
.ws15{word-spacing:11.760000px;}
.ws2c{word-spacing:12.366000px;}
.wsf{word-spacing:13.268102px;}
.ws12{word-spacing:20.520000px;}
.wsc{word-spacing:26.351926px;}
.wsd{word-spacing:46.346219px;}
.ws8{word-spacing:61.954800px;}
.ws11{word-spacing:64.378800px;}
._6{margin-left:-3.264000px;}
._2{margin-left:-2.203200px;}
._0{margin-left:-1.155600px;}
._1{width:1.285200px;}
._3{width:2.673000px;}
._4{width:3.893400px;}
._8{width:5.562000px;}
._7{width:7.026000px;}
._a{width:8.454000px;}
._9{width:11.028000px;}
._10{width:12.070288px;}
._1a{width:13.268102px;}
._21{width:14.926615px;}
._13{width:15.986221px;}
._17{width:17.414384px;}
._14{width:18.704339px;}
._12{width:20.685340px;}
._b{width:22.804551px;}
._26{width:24.079449px;}
._e{width:25.568739px;}
._1b{width:26.812624px;}
._27{width:28.058753px;}
._1e{width:30.359998px;}
._28{width:31.512002px;}
._1d{width:32.944661px;}
._11{width:38.053655px;}
._c{width:42.015658px;}
._29{width:44.112600px;}
._1f{width:50.106625px;}
._19{width:61.733532px;}
._18{width:70.394654px;}
._f{width:72.559935px;}
._d{width:86.012317px;}
._1c{width:103.380631px;}
._15{width:117.155501px;}
._20{width:128.765091px;}
._22{width:139.407215px;}
._25{width:167.509793px;}
._24{width:173.913495px;}
._23{width:245.505964px;}
._16{width:270.475796px;}
._5{width:1335.768600px;}
.fcb{color:rgb(4,6,6);}
.fca{color:rgb(101,151,45);}
.fc9{color:rgb(53,145,165);}
.fc7{color:rgb(64,172,173);}
.fc3{color:rgb(224,63,93);}
.fc6{color:rgb(254,255,253);}
.fc5{color:rgb(103,104,102);}
.fc2{color:rgb(235,176,59);}
.fcc{color:rgb(80,80,80);}
.fc8{color:rgb(46,46,46);}
.fc4{color:rgb(35,31,32);}
.fc1{color:rgb(252,252,252);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:36.000000px;}
.fs4{font-size:42.000000px;}
.fs7{font-size:46.069800px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs5{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.ya5{bottom:0.503550px;}
.y20{bottom:25.267500px;}
.y42{bottom:27.364200px;}
.y21{bottom:28.176750px;}
.y1e{bottom:54.000000px;}
.ybb{bottom:63.371100px;}
.ya4{bottom:63.780000px;}
.yad{bottom:65.156850px;}
.y17{bottom:65.369250px;}
.y41{bottom:68.648100px;}
.y6d{bottom:74.128350px;}
.yba{bottom:74.171100px;}
.yac{bottom:75.956850px;}
.ya3{bottom:81.646098px;}
.yb9{bottom:84.971100px;}
.yea{bottom:86.128200px;}
.y40{bottom:86.648100px;}
.yab{bottom:86.756850px;}
.y6c{bottom:92.128350px;}
.y9f{bottom:94.177083px;}
.ya2{bottom:95.674352px;}
.yb8{bottom:95.771100px;}
.yaa{bottom:97.556850px;}
.ye9{bottom:104.128200px;}
.y3f{bottom:104.648100px;}
.y16{bottom:108.073200px;}
.y9e{bottom:108.274442px;}
.ya9{bottom:108.356850px;}
.ya1{bottom:109.783228px;}
.y6b{bottom:110.128350px;}
.yb4{bottom:111.910350px;}
.y141{bottom:116.845800px;}
.ya8{bottom:119.156850px;}
.y119{bottom:121.007700px;}
.ye8{bottom:122.128200px;}
.y3e{bottom:122.648100px;}
.ya0{bottom:123.120435px;}
.y15{bottom:124.273200px;}
.yb3{bottom:126.310350px;}
.y6a{bottom:128.128350px;}
.y140{bottom:131.414550px;}
.ya7{bottom:134.137350px;}
.ye7{bottom:140.128200px;}
.y14{bottom:140.473200px;}
.yb2{bottom:140.710350px;}
.y69{bottom:146.128350px;}
.y9d{bottom:146.604516px;}
.y118{bottom:147.576300px;}
.ya6{bottom:148.537350px;}
.y3d{bottom:152.648100px;}
.ybd{bottom:155.521050px;}
.y13{bottom:156.673200px;}
.y13f{bottom:157.983300px;}
.ye6{bottom:158.128200px;}
.y117{bottom:162.145050px;}
.yae{bottom:163.348050px;}
.y68{bottom:164.128350px;}
.y3c{bottom:170.648100px;}
.y13e{bottom:172.552050px;}
.y9c{bottom:172.783679px;}
.y12{bottom:172.873200px;}
.ye5{bottom:176.128200px;}
.y67{bottom:182.128350px;}
.y9b{bottom:186.892556px;}
.y3b{bottom:188.648100px;}
.y116{bottom:188.713950px;}
.y11{bottom:189.073200px;}
.ye4{bottom:194.128200px;}
.y13d{bottom:199.120950px;}
.y66{bottom:200.128350px;}
.y115{bottom:203.282700px;}
.y10{bottom:205.273200px;}
.y3a{bottom:206.648100px;}
.ye3{bottom:212.128200px;}
.y13c{bottom:213.689550px;}
.y65{bottom:218.128350px;}
.yf{bottom:221.473200px;}
.y9a{bottom:221.502493px;}
.y39{bottom:224.648100px;}
.y114{bottom:229.851450px;}
.ye2{bottom:230.128200px;}
.y64{bottom:236.128350px;}
.ye{bottom:237.673200px;}
.y99{bottom:239.999518px;}
.y13b{bottom:240.258300px;}
.y38{bottom:242.648100px;}
.y113{bottom:244.420050px;}
.y96{bottom:247.048197px;}
.ye1{bottom:248.128200px;}
.y98{bottom:254.096876px;}
.y63{bottom:254.128350px;}
.y13a{bottom:254.827050px;}
.y112{bottom:258.988800px;}
.y37{bottom:260.648100px;}
.y95{bottom:261.157073px;}
.ye0{bottom:266.128200px;}
.y97{bottom:268.205753px;}
.y139{bottom:269.395800px;}
.yd{bottom:270.073200px;}
.y36{bottom:278.648100px;}
.ydf{bottom:284.128200px;}
.y62{bottom:284.128350px;}
.y111{bottom:285.557550px;}
.y94{bottom:295.145068px;}
.y138{bottom:295.964700px;}
.y35{bottom:296.648100px;}
.y110{bottom:300.126300px;}
.yde{bottom:302.128200px;}
.y61{bottom:302.128350px;}
.yc{bottom:307.951200px;}
.y137{bottom:310.533300px;}
.y34{bottom:314.648100px;}
.y93{bottom:318.744323px;}
.ydd{bottom:320.128200px;}
.y60{bottom:320.128350px;}
.y136{bottom:325.102050px;}
.y10f{bottom:326.695200px;}
.y33{bottom:332.648100px;}
.y92{bottom:332.853199px;}
.ydc{bottom:338.128200px;}
.y5f{bottom:338.128350px;}
.y135{bottom:339.670800px;}
.yb{bottom:341.251050px;}
.y10e{bottom:341.263800px;}
.y32{bottom:350.648100px;}
.ydb{bottom:356.128200px;}
.y5e{bottom:356.128350px;}
.ya{bottom:357.451200px;}
.y91{bottom:364.883228px;}
.y134{bottom:366.239550px;}
.y10d{bottom:367.832700px;}
.y31{bottom:368.648100px;}
.yb7{bottom:372.021450px;}
.y9{bottom:373.651200px;}
.y5d{bottom:374.128350px;}
.y133{bottom:380.808450px;}
.y10c{bottom:382.401300px;}
.yb6{bottom:382.821450px;}
.y90{bottom:383.887020px;}
.yda{bottom:386.128200px;}
.y30{bottom:386.648100px;}
.y8{bottom:389.851200px;}
.y5c{bottom:392.128350px;}
.yb5{bottom:393.621450px;}
.y132{bottom:395.377050px;}
.y8e{bottom:397.915275px;}
.yd9{bottom:404.128200px;}
.y7{bottom:406.051050px;}
.yb1{bottom:408.601800px;}
.y10b{bottom:408.970050px;}
.y131{bottom:409.945800px;}
.y5b{bottom:410.128350px;}
.y8f{bottom:412.024151px;}
.y2f{bottom:416.648100px;}
.yd8{bottom:422.128200px;}
.y6{bottom:422.251050px;}
.yb0{bottom:423.001950px;}
.y10a{bottom:423.538950px;}
.y130{bottom:424.514550px;}
.y2e{bottom:434.648100px;}
.ybc{bottom:437.812650px;}
.y5{bottom:438.451200px;}
.y8d{bottom:439.458717px;}
.yd7{bottom:440.128200px;}
.y5a{bottom:440.128350px;}
.y109{bottom:450.107550px;}
.y12f{bottom:451.083300px;}
.y2d{bottom:452.648100px;}
.y89{bottom:453.617495px;}
.y8c{bottom:453.671250px;}
.y4{bottom:454.651050px;}
.yd6{bottom:458.128200px;}
.y59{bottom:458.128350px;}
.y108{bottom:464.676300px;}
.y12e{bottom:465.652200px;}
.y88{bottom:467.657267px;}
.y8a{bottom:467.711022px;}
.y2c{bottom:470.648100px;}
.y3{bottom:470.851200px;}
.yd5{bottom:476.128200px;}
.y58{bottom:476.128350px;}
.y107{bottom:479.245200px;}
.y12d{bottom:480.220800px;}
.y87{bottom:481.754625px;}
.y8b{bottom:481.808380px;}
.y2{bottom:487.051050px;}
.y2b{bottom:488.648100px;}
.y106{bottom:493.813950px;}
.yd4{bottom:494.128200px;}
.y57{bottom:494.128350px;}
.y86{bottom:504.409449px;}
.y2a{bottom:506.648100px;}
.y12c{bottom:506.789550px;}
.yd3{bottom:512.128200px;}
.y56{bottom:512.128350px;}
.y1{bottom:519.451200px;}
.y84{bottom:519.462757px;}
.y105{bottom:520.382700px;}
.y12b{bottom:521.358300px;}
.y29{bottom:524.648100px;}
.y85{bottom:526.442331px;}
.yd2{bottom:530.128200px;}
.y55{bottom:530.128350px;}
.y83{bottom:533.491011px;}
.y104{bottom:534.951300px;}
.y82{bottom:547.588369px;}
.y12a{bottom:547.927050px;}
.yd1{bottom:548.128200px;}
.y103{bottom:549.520050px;}
.y28{bottom:554.648100px;}
.y54{bottom:560.128350px;}
.y129{bottom:562.495950px;}
.yf1{bottom:563.923800px;}
.yd0{bottom:566.128200px;}
.y27{bottom:572.648100px;}
.yf0{bottom:574.723800px;}
.y102{bottom:576.088950px;}
.y19{bottom:578.782200px;}
.ycf{bottom:584.128200px;}
.yef{bottom:585.523800px;}
.y128{bottom:589.064550px;}
.y53{bottom:590.128350px;}
.y26{bottom:590.648100px;}
.y101{bottom:590.657700px;}
.y80{bottom:591.492889px;}
.y7d{bottom:594.625635px;}
.y1b{bottom:599.985300px;}
.yec{bottom:600.660150px;}
.yce{bottom:602.128200px;}
.y127{bottom:603.633300px;}
.y7f{bottom:605.601765px;}
.y52{bottom:608.128350px;}
.y25{bottom:608.648100px;}
.y7c{bottom:608.722994px;}
.y1a{bottom:612.585300px;}
.yf3{bottom:615.471000px;}
.y100{bottom:617.226450px;}
.y7e{bottom:618.616484px;}
.y51{bottom:626.128350px;}
.y24{bottom:626.648100px;}
.y81{bottom:629.154950px;}
.y126{bottom:630.202050px;}
.yff{bottom:631.795050px;}
.ycd{bottom:632.128200px;}
.y18{bottom:634.979250px;}
.y50{bottom:644.128350px;}
.y23{bottom:644.648100px;}
.y125{bottom:644.770800px;}
.ycc{bottom:650.128200px;}
.y7a{bottom:650.761687px;}
.y76{bottom:657.821883px;}
.yfe{bottom:658.363800px;}
.y4f{bottom:662.128350px;}
.y79{bottom:664.859045px;}
.y73{bottom:664.882080px;}
.ycb{bottom:668.128200px;}
.y124{bottom:671.339700px;}
.y75{bottom:671.919242px;}
.yfc{bottom:672.330450px;}
.yfd{bottom:672.932700px;}
.y22{bottom:674.648100px;}
.y78{bottom:678.967922px;}
.y72{bottom:678.990957px;}
.y4e{bottom:680.128350px;}
.y123{bottom:685.908300px;}
.y74{bottom:686.028119px;}
.yca{bottom:686.128200px;}
.y1d{bottom:689.542500px;}
.y77{bottom:693.065280px;}
.y4d{bottom:698.128350px;}
.y7b{bottom:700.033338px;}
.yc9{bottom:704.128200px;}
.y122{bottom:712.477050px;}
.y71{bottom:714.672017px;}
.y70{bottom:716.503291px;}
.y6f{bottom:718.369118px;}
.yc8{bottom:722.128200px;}
.y1c{bottom:727.342500px;}
.y4c{bottom:728.128350px;}
.y6e{bottom:730.600650px;}
.y121{bottom:739.045800px;}
.yc7{bottom:740.128200px;}
.yfb{bottom:746.128200px;}
.y4b{bottom:746.128350px;}
.yc6{bottom:758.128200px;}
.yfa{bottom:764.128200px;}
.y4a{bottom:764.128350px;}
.y120{bottom:765.614550px;}
.yc5{bottom:776.128200px;}
.y11f{bottom:780.183450px;}
.yf9{bottom:782.128200px;}
.y49{bottom:782.128350px;}
.yc4{bottom:794.128200px;}
.yf8{bottom:800.128200px;}
.y48{bottom:800.128350px;}
.y11e{bottom:806.752050px;}
.yc3{bottom:812.128200px;}
.yf7{bottom:818.128200px;}
.y47{bottom:818.128350px;}
.y11d{bottom:821.320800px;}
.yc2{bottom:830.128200px;}
.y11c{bottom:835.889700px;}
.yf6{bottom:836.128200px;}
.yaf{bottom:836.128350px;}
.yc1{bottom:848.128200px;}
.y46{bottom:848.128350px;}
.yf5{bottom:854.128200px;}
.yee{bottom:860.742750px;}
.y11b{bottom:862.458300px;}
.yc0{bottom:866.128200px;}
.y45{bottom:866.128350px;}
.yed{bottom:871.542600px;}
.yf4{bottom:872.128200px;}
.y11a{bottom:877.027200px;}
.ybf{bottom:884.128200px;}
.y44{bottom:884.128350px;}
.yeb{bottom:890.931000px;}
.ybe{bottom:902.128200px;}
.y43{bottom:902.128350px;}
.yf2{bottom:905.741700px;}
.y1f{bottom:965.135850px;}
.h18{height:29.268000px;}
.h19{height:32.616000px;}
.h1a{height:33.978000px;}
.h10{height:37.270468px;}
.h11{height:37.454747px;}
.h15{height:37.669768px;}
.h8{height:38.052000px;}
.h6{height:38.496000px;}
.h17{height:38.928000px;}
.h7{height:39.024000px;}
.hd{height:39.945112px;}
.hb{height:43.195312px;}
.ha{height:43.686000px;}
.h3{height:43.902000px;}
.h1b{height:45.714000px;}
.h5{height:46.227000px;}
.hc{height:46.875000px;}
.he{height:48.120000px;}
.h2{height:48.780000px;}
.h4{height:48.924000px;}
.hf{height:54.360000px;}
.h14{height:65.649465px;}
.h13{height:93.844183px;}
.h12{height:93.890252px;}
.h9{height:101.052000px;}
.h16{height:682.441500px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w2{width:453.435000px;}
.w1{width:807.750000px;}
.w0{width:807.874500px;}
.x0{left:0.000000px;}
.xd{left:13.181100px;}
.x34{left:39.118050px;}
.x28{left:63.420750px;}
.xc{left:65.055000px;}
.x2e{left:67.221450px;}
.x2c{left:69.632700px;}
.x2d{left:71.288850px;}
.xa{left:77.171100px;}
.x37{left:84.289350px;}
.x12{left:85.464600px;}
.x2a{left:91.880550px;}
.x2b{left:96.326850px;}
.x2{left:106.299150px;}
.x13{left:127.564350px;}
.x35{left:128.839950px;}
.x8{left:133.936950px;}
.x29{left:161.445900px;}
.xb{left:168.377850px;}
.xe{left:170.078700px;}
.x38{left:183.819300px;}
.x2f{left:200.777850px;}
.x30{left:211.323750px;}
.xf{left:212.603700px;}
.x26{left:269.157000px;}
.x15{left:275.129700px;}
.x4{left:318.280350px;}
.x5{left:320.034600px;}
.x6{left:325.363050px;}
.x16{left:333.572354px;}
.x7{left:353.190750px;}
.x9{left:358.152000px;}
.x17{left:368.670467px;}
.x1{left:393.213300px;}
.x3{left:395.703300px;}
.x32{left:403.936950px;}
.x10{left:413.253600px;}
.x18{left:438.169840px;}
.x27{left:439.694550px;}
.x33{left:446.461950px;}
.x1d{left:448.146437px;}
.x1e{left:453.419284px;}
.x23{left:459.938505px;}
.x14{left:478.963200px;}
.x31{left:481.535400px;}
.x19{left:525.508624px;}
.x1a{left:531.025369px;}
.x1b{left:611.825358px;}
.x36{left:651.636300px;}
.x1c{left:658.526056px;}
.x22{left:673.616557px;}
.x1f{left:675.482788px;}
.x20{left:676.957792px;}
.x25{left:686.914816px;}
.x21{left:699.005198px;}
.x24{left:713.302278px;}
.x11{left:722.297250px;}
@media print{
.v7{vertical-align:-39.067190pt;}
.v3{vertical-align:-13.145250pt;}
.v4{vertical-align:-6.511198pt;}
.v1{vertical-align:-2.889067pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:3.153222pt;}
.v2{vertical-align:10.344000pt;}
.v8{vertical-align:21.908749pt;}
.v5{vertical-align:25.061971pt;}
.v6{vertical-align:50.164893pt;}
.ls5{letter-spacing:-2.240000pt;}
.ls6{letter-spacing:-1.226667pt;}
.ls2{letter-spacing:-0.160000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.004267pt;}
.ls1{letter-spacing:0.004800pt;}
.ls4{letter-spacing:0.040951pt;}
.ls8{letter-spacing:0.048000pt;}
.lsc{letter-spacing:0.144000pt;}
.ls9{letter-spacing:0.288000pt;}
.ls7{letter-spacing:0.576000pt;}
.lsa{letter-spacing:0.768000pt;}
.lsb{letter-spacing:1.104000pt;}
.ws28{word-spacing:-8.064000pt;}
.ws19{word-spacing:-7.776000pt;}
.ws0{word-spacing:-7.168000pt;}
.ws1{word-spacing:-7.040000pt;}
.wse{word-spacing:-6.756904pt;}
.ws10{word-spacing:-6.634051pt;}
.ws36{word-spacing:-2.688000pt;}
.ws22{word-spacing:-2.112000pt;}
.ws1c{word-spacing:-1.248000pt;}
.ws35{word-spacing:-1.104000pt;}
.ws31{word-spacing:-1.056000pt;}
.ws37{word-spacing:-0.960000pt;}
.ws32{word-spacing:-0.768000pt;}
.ws1e{word-spacing:-0.576000pt;}
.ws29{word-spacing:-0.288000pt;}
.ws33{word-spacing:-0.144000pt;}
.ws20{word-spacing:-0.048000pt;}
.ws5{word-spacing:-0.042667pt;}
.ws2{word-spacing:0.000000pt;}
.ws6{word-spacing:0.160000pt;}
.ws9{word-spacing:0.213333pt;}
.wsa{word-spacing:0.586667pt;}
.ws1d{word-spacing:1.008000pt;}
.ws26{word-spacing:1.056000pt;}
.ws18{word-spacing:1.653333pt;}
.ws2e{word-spacing:1.728000pt;}
.wsb{word-spacing:2.186667pt;}
.ws1f{word-spacing:2.448000pt;}
.ws3{word-spacing:2.640000pt;}
.ws2f{word-spacing:2.688000pt;}
.ws4{word-spacing:2.912000pt;}
.ws1b{word-spacing:3.024000pt;}
.ws2a{word-spacing:3.120000pt;}
.ws30{word-spacing:3.456000pt;}
.ws38{word-spacing:3.888000pt;}
.ws34{word-spacing:3.984000pt;}
.ws24{word-spacing:4.464000pt;}
.ws13{word-spacing:4.746667pt;}
.ws27{word-spacing:5.376000pt;}
.ws2b{word-spacing:5.616000pt;}
.ws25{word-spacing:5.808000pt;}
.ws1a{word-spacing:6.960000pt;}
.ws17{word-spacing:7.306667pt;}
.ws23{word-spacing:7.584000pt;}
.ws21{word-spacing:9.024000pt;}
.ws2d{word-spacing:9.072000pt;}
.ws16{word-spacing:9.600000pt;}
.ws14{word-spacing:10.186667pt;}
.ws7{word-spacing:10.293333pt;}
.ws15{word-spacing:10.453333pt;}
.ws2c{word-spacing:10.992000pt;}
.wsf{word-spacing:11.793869pt;}
.ws12{word-spacing:18.240000pt;}
.wsc{word-spacing:23.423934pt;}
.wsd{word-spacing:41.196639pt;}
.ws8{word-spacing:55.070933pt;}
.ws11{word-spacing:57.225600pt;}
._6{margin-left:-2.901333pt;}
._2{margin-left:-1.958400pt;}
._0{margin-left:-1.027200pt;}
._1{width:1.142400pt;}
._3{width:2.376000pt;}
._4{width:3.460800pt;}
._8{width:4.944000pt;}
._7{width:6.245333pt;}
._a{width:7.514667pt;}
._9{width:9.802667pt;}
._10{width:10.729145pt;}
._1a{width:11.793869pt;}
._21{width:13.268102pt;}
._13{width:14.209974pt;}
._17{width:15.479453pt;}
._14{width:16.626079pt;}
._12{width:18.386969pt;}
._b{width:20.270712pt;}
._26{width:21.403955pt;}
._e{width:22.727768pt;}
._1b{width:23.833443pt;}
._27{width:24.941114pt;}
._1e{width:26.986665pt;}
._28{width:28.010668pt;}
._1d{width:29.284143pt;}
._11{width:33.825471pt;}
._c{width:37.347251pt;}
._29{width:39.211200pt;}
._1f{width:44.539222pt;}
._19{width:54.874251pt;}
._18{width:62.573026pt;}
._f{width:64.497720pt;}
._d{width:76.455393pt;}
._1c{width:91.893894pt;}
._15{width:104.138223pt;}
._20{width:114.457859pt;}
._22{width:123.917524pt;}
._25{width:148.897594pt;}
._24{width:154.589773pt;}
._23{width:218.227524pt;}
._16{width:240.422930pt;}
._5{width:1187.349867pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:40.950933pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs5{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.ya5{bottom:0.447600pt;}
.y20{bottom:22.460000pt;}
.y42{bottom:24.323733pt;}
.y21{bottom:25.046000pt;}
.y1e{bottom:48.000000pt;}
.ybb{bottom:56.329867pt;}
.ya4{bottom:56.693333pt;}
.yad{bottom:57.917200pt;}
.y17{bottom:58.106000pt;}
.y41{bottom:61.020533pt;}
.y6d{bottom:65.891867pt;}
.yba{bottom:65.929867pt;}
.yac{bottom:67.517200pt;}
.ya3{bottom:72.574309pt;}
.yb9{bottom:75.529867pt;}
.yea{bottom:76.558400pt;}
.y40{bottom:77.020533pt;}
.yab{bottom:77.117200pt;}
.y6c{bottom:81.891867pt;}
.y9f{bottom:83.712963pt;}
.ya2{bottom:85.043868pt;}
.yb8{bottom:85.129867pt;}
.yaa{bottom:86.717200pt;}
.ye9{bottom:92.558400pt;}
.y3f{bottom:93.020533pt;}
.y16{bottom:96.065067pt;}
.y9e{bottom:96.243948pt;}
.ya9{bottom:96.317200pt;}
.ya1{bottom:97.585091pt;}
.y6b{bottom:97.891867pt;}
.yb4{bottom:99.475867pt;}
.y141{bottom:103.862933pt;}
.ya8{bottom:105.917200pt;}
.y119{bottom:107.562400pt;}
.ye8{bottom:108.558400pt;}
.y3e{bottom:109.020533pt;}
.ya0{bottom:109.440387pt;}
.y15{bottom:110.465067pt;}
.yb3{bottom:112.275867pt;}
.y6a{bottom:113.891867pt;}
.y140{bottom:116.812933pt;}
.ya7{bottom:119.233200pt;}
.ye7{bottom:124.558400pt;}
.y14{bottom:124.865067pt;}
.yb2{bottom:125.075867pt;}
.y69{bottom:129.891867pt;}
.y9d{bottom:130.315125pt;}
.y118{bottom:131.178933pt;}
.ya6{bottom:132.033200pt;}
.y3d{bottom:135.687200pt;}
.ybd{bottom:138.240933pt;}
.y13{bottom:139.265067pt;}
.y13f{bottom:140.429600pt;}
.ye6{bottom:140.558400pt;}
.y117{bottom:144.128933pt;}
.yae{bottom:145.198267pt;}
.y68{bottom:145.891867pt;}
.y3c{bottom:151.687200pt;}
.y13e{bottom:153.379600pt;}
.y9c{bottom:153.585493pt;}
.y12{bottom:153.665067pt;}
.ye5{bottom:156.558400pt;}
.y67{bottom:161.891867pt;}
.y9b{bottom:166.126716pt;}
.y3b{bottom:167.687200pt;}
.y116{bottom:167.745733pt;}
.y11{bottom:168.065067pt;}
.ye4{bottom:172.558400pt;}
.y13d{bottom:176.996400pt;}
.y66{bottom:177.891867pt;}
.y115{bottom:180.695733pt;}
.y10{bottom:182.465067pt;}
.y3a{bottom:183.687200pt;}
.ye3{bottom:188.558400pt;}
.y13c{bottom:189.946267pt;}
.y65{bottom:193.891867pt;}
.yf{bottom:196.865067pt;}
.y9a{bottom:196.891105pt;}
.y39{bottom:199.687200pt;}
.y114{bottom:204.312400pt;}
.ye2{bottom:204.558400pt;}
.y64{bottom:209.891867pt;}
.ye{bottom:211.265067pt;}
.y99{bottom:213.332905pt;}
.y13b{bottom:213.562933pt;}
.y38{bottom:215.687200pt;}
.y113{bottom:217.262267pt;}
.y96{bottom:219.598397pt;}
.ye1{bottom:220.558400pt;}
.y98{bottom:225.863890pt;}
.y63{bottom:225.891867pt;}
.y13a{bottom:226.512933pt;}
.y112{bottom:230.212267pt;}
.y37{bottom:231.687200pt;}
.y95{bottom:232.139621pt;}
.ye0{bottom:236.558400pt;}
.y97{bottom:238.405113pt;}
.y139{bottom:239.462933pt;}
.yd{bottom:240.065067pt;}
.y36{bottom:247.687200pt;}
.ydf{bottom:252.558400pt;}
.y62{bottom:252.558533pt;}
.y111{bottom:253.828933pt;}
.y94{bottom:262.351172pt;}
.y138{bottom:263.079733pt;}
.y35{bottom:263.687200pt;}
.y110{bottom:266.778933pt;}
.yde{bottom:268.558400pt;}
.y61{bottom:268.558533pt;}
.yc{bottom:273.734400pt;}
.y137{bottom:276.029600pt;}
.y34{bottom:279.687200pt;}
.y93{bottom:283.328287pt;}
.ydd{bottom:284.558400pt;}
.y60{bottom:284.558533pt;}
.y136{bottom:288.979600pt;}
.y10f{bottom:290.395733pt;}
.y33{bottom:295.687200pt;}
.y92{bottom:295.869511pt;}
.ydc{bottom:300.558400pt;}
.y5f{bottom:300.558533pt;}
.y135{bottom:301.929600pt;}
.yb{bottom:303.334267pt;}
.y10e{bottom:303.345600pt;}
.y32{bottom:311.687200pt;}
.ydb{bottom:316.558400pt;}
.y5e{bottom:316.558533pt;}
.ya{bottom:317.734400pt;}
.y91{bottom:324.340647pt;}
.y134{bottom:325.546267pt;}
.y10d{bottom:326.962400pt;}
.y31{bottom:327.687200pt;}
.yb7{bottom:330.685733pt;}
.y9{bottom:332.134400pt;}
.y5d{bottom:332.558533pt;}
.y133{bottom:338.496400pt;}
.y10c{bottom:339.912267pt;}
.yb6{bottom:340.285733pt;}
.y90{bottom:341.232907pt;}
.yda{bottom:343.225067pt;}
.y30{bottom:343.687200pt;}
.y8{bottom:346.534400pt;}
.y5c{bottom:348.558533pt;}
.yb5{bottom:349.885733pt;}
.y132{bottom:351.446267pt;}
.y8e{bottom:353.702466pt;}
.yd9{bottom:359.225067pt;}
.y7{bottom:360.934267pt;}
.yb1{bottom:363.201600pt;}
.y10b{bottom:363.528933pt;}
.y131{bottom:364.396267pt;}
.y5b{bottom:364.558533pt;}
.y8f{bottom:366.243690pt;}
.y2f{bottom:370.353867pt;}
.yd8{bottom:375.225067pt;}
.y6{bottom:375.334267pt;}
.yb0{bottom:376.001733pt;}
.y10a{bottom:376.479067pt;}
.y130{bottom:377.346267pt;}
.y2e{bottom:386.353867pt;}
.ybc{bottom:389.166800pt;}
.y5{bottom:389.734400pt;}
.y8d{bottom:390.629970pt;}
.yd7{bottom:391.225067pt;}
.y5a{bottom:391.225200pt;}
.y109{bottom:400.095600pt;}
.y12f{bottom:400.962933pt;}
.y2d{bottom:402.353867pt;}
.y89{bottom:403.215551pt;}
.y8c{bottom:403.263333pt;}
.y4{bottom:404.134267pt;}
.yd6{bottom:407.225067pt;}
.y59{bottom:407.225200pt;}
.y108{bottom:413.045600pt;}
.y12e{bottom:413.913067pt;}
.y88{bottom:415.695348pt;}
.y8a{bottom:415.743130pt;}
.y2c{bottom:418.353867pt;}
.y3{bottom:418.534400pt;}
.yd5{bottom:423.225067pt;}
.y58{bottom:423.225200pt;}
.y107{bottom:425.995733pt;}
.y12d{bottom:426.862933pt;}
.y87{bottom:428.226334pt;}
.y8b{bottom:428.274116pt;}
.y2{bottom:432.934267pt;}
.y2b{bottom:434.353867pt;}
.y106{bottom:438.945733pt;}
.yd4{bottom:439.225067pt;}
.y57{bottom:439.225200pt;}
.y86{bottom:448.363955pt;}
.y2a{bottom:450.353867pt;}
.y12c{bottom:450.479600pt;}
.yd3{bottom:455.225067pt;}
.y56{bottom:455.225200pt;}
.y1{bottom:461.734400pt;}
.y84{bottom:461.744673pt;}
.y105{bottom:462.562400pt;}
.y12b{bottom:463.429600pt;}
.y29{bottom:466.353867pt;}
.y85{bottom:467.948739pt;}
.yd2{bottom:471.225067pt;}
.y55{bottom:471.225200pt;}
.y83{bottom:474.214232pt;}
.y104{bottom:475.512267pt;}
.y82{bottom:486.745217pt;}
.y12a{bottom:487.046267pt;}
.yd1{bottom:487.225067pt;}
.y103{bottom:488.462267pt;}
.y28{bottom:493.020533pt;}
.y54{bottom:497.891867pt;}
.y129{bottom:499.996400pt;}
.yf1{bottom:501.265600pt;}
.yd0{bottom:503.225067pt;}
.y27{bottom:509.020533pt;}
.yf0{bottom:510.865600pt;}
.y102{bottom:512.079067pt;}
.y19{bottom:514.473067pt;}
.ycf{bottom:519.225067pt;}
.yef{bottom:520.465600pt;}
.y128{bottom:523.612933pt;}
.y53{bottom:524.558533pt;}
.y26{bottom:525.020533pt;}
.y101{bottom:525.029067pt;}
.y80{bottom:525.771457pt;}
.y7d{bottom:528.556120pt;}
.y1b{bottom:533.320267pt;}
.yec{bottom:533.920133pt;}
.yce{bottom:535.225067pt;}
.y127{bottom:536.562933pt;}
.y7f{bottom:538.312680pt;}
.y52{bottom:540.558533pt;}
.y25{bottom:541.020533pt;}
.y7c{bottom:541.087106pt;}
.y1a{bottom:544.520267pt;}
.yf3{bottom:547.085333pt;}
.y100{bottom:548.645733pt;}
.y7e{bottom:549.881319pt;}
.y51{bottom:556.558533pt;}
.y24{bottom:557.020533pt;}
.y81{bottom:559.248845pt;}
.y126{bottom:560.179600pt;}
.yff{bottom:561.595600pt;}
.ycd{bottom:561.891733pt;}
.y18{bottom:564.426000pt;}
.y50{bottom:572.558533pt;}
.y23{bottom:573.020533pt;}
.y125{bottom:573.129600pt;}
.ycc{bottom:577.891733pt;}
.y7a{bottom:578.454833pt;}
.y76{bottom:584.730563pt;}
.yfe{bottom:585.212267pt;}
.y4f{bottom:588.558533pt;}
.y79{bottom:590.985818pt;}
.y73{bottom:591.006294pt;}
.ycb{bottom:593.891733pt;}
.y124{bottom:596.746400pt;}
.y75{bottom:597.261549pt;}
.yfc{bottom:597.627067pt;}
.yfd{bottom:598.162400pt;}
.y22{bottom:599.687200pt;}
.y78{bottom:603.527041pt;}
.y72{bottom:603.547517pt;}
.y4e{bottom:604.558533pt;}
.y123{bottom:609.696267pt;}
.y74{bottom:609.802772pt;}
.yca{bottom:609.891733pt;}
.y1d{bottom:612.926667pt;}
.y77{bottom:616.058027pt;}
.y4d{bottom:620.558533pt;}
.y7b{bottom:622.251856pt;}
.yc9{bottom:625.891733pt;}
.y122{bottom:633.312933pt;}
.y71{bottom:635.264015pt;}
.y70{bottom:636.891814pt;}
.y6f{bottom:638.550327pt;}
.yc8{bottom:641.891733pt;}
.y1c{bottom:646.526667pt;}
.y4c{bottom:647.225200pt;}
.y6e{bottom:649.422800pt;}
.y121{bottom:656.929600pt;}
.yc7{bottom:657.891733pt;}
.yfb{bottom:663.225067pt;}
.y4b{bottom:663.225200pt;}
.yc6{bottom:673.891733pt;}
.yfa{bottom:679.225067pt;}
.y4a{bottom:679.225200pt;}
.y120{bottom:680.546267pt;}
.yc5{bottom:689.891733pt;}
.y11f{bottom:693.496400pt;}
.yf9{bottom:695.225067pt;}
.y49{bottom:695.225200pt;}
.yc4{bottom:705.891733pt;}
.yf8{bottom:711.225067pt;}
.y48{bottom:711.225200pt;}
.y11e{bottom:717.112933pt;}
.yc3{bottom:721.891733pt;}
.yf7{bottom:727.225067pt;}
.y47{bottom:727.225200pt;}
.y11d{bottom:730.062933pt;}
.yc2{bottom:737.891733pt;}
.y11c{bottom:743.013067pt;}
.yf6{bottom:743.225067pt;}
.yaf{bottom:743.225200pt;}
.yc1{bottom:753.891733pt;}
.y46{bottom:753.891867pt;}
.yf5{bottom:759.225067pt;}
.yee{bottom:765.104667pt;}
.y11b{bottom:766.629600pt;}
.yc0{bottom:769.891733pt;}
.y45{bottom:769.891867pt;}
.yed{bottom:774.704533pt;}
.yf4{bottom:775.225067pt;}
.y11a{bottom:779.579733pt;}
.ybf{bottom:785.891733pt;}
.y44{bottom:785.891867pt;}
.yeb{bottom:791.938667pt;}
.ybe{bottom:801.891733pt;}
.y43{bottom:801.891867pt;}
.yf2{bottom:805.103733pt;}
.y1f{bottom:857.898533pt;}
.h18{height:26.016000pt;}
.h19{height:28.992000pt;}
.h1a{height:30.202667pt;}
.h10{height:33.129305pt;}
.h11{height:33.293109pt;}
.h15{height:33.484238pt;}
.h8{height:33.824000pt;}
.h6{height:34.218667pt;}
.h17{height:34.602667pt;}
.h7{height:34.688000pt;}
.hd{height:35.506767pt;}
.hb{height:38.395833pt;}
.ha{height:38.832000pt;}
.h3{height:39.024000pt;}
.h1b{height:40.634667pt;}
.h5{height:41.090667pt;}
.hc{height:41.666667pt;}
.he{height:42.773333pt;}
.h2{height:43.360000pt;}
.h4{height:43.488000pt;}
.hf{height:48.320000pt;}
.h14{height:58.355080pt;}
.h13{height:83.417051pt;}
.h12{height:83.458002pt;}
.h9{height:89.824000pt;}
.h16{height:606.614667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w2{width:403.053333pt;}
.w1{width:718.000000pt;}
.w0{width:718.110667pt;}
.x0{left:0.000000pt;}
.xd{left:11.716533pt;}
.x34{left:34.771600pt;}
.x28{left:56.374000pt;}
.xc{left:57.826667pt;}
.x2e{left:59.752400pt;}
.x2c{left:61.895733pt;}
.x2d{left:63.367867pt;}
.xa{left:68.596533pt;}
.x37{left:74.923867pt;}
.x12{left:75.968533pt;}
.x2a{left:81.671600pt;}
.x2b{left:85.623867pt;}
.x2{left:94.488133pt;}
.x13{left:113.390533pt;}
.x35{left:114.524400pt;}
.x8{left:119.055067pt;}
.x29{left:143.507467pt;}
.xb{left:149.669200pt;}
.xe{left:151.181067pt;}
.x38{left:163.394933pt;}
.x2f{left:178.469200pt;}
.x30{left:187.843333pt;}
.xf{left:188.981067pt;}
.x26{left:239.250667pt;}
.x15{left:244.559733pt;}
.x4{left:282.915867pt;}
.x5{left:284.475200pt;}
.x6{left:289.211600pt;}
.x16{left:296.508759pt;}
.x7{left:313.947333pt;}
.x9{left:318.357333pt;}
.x17{left:327.707082pt;}
.x1{left:349.522933pt;}
.x3{left:351.736267pt;}
.x32{left:359.055067pt;}
.x10{left:367.336533pt;}
.x18{left:389.484302pt;}
.x27{left:390.839600pt;}
.x33{left:396.855067pt;}
.x1d{left:398.352389pt;}
.x1e{left:403.039364pt;}
.x23{left:408.834227pt;}
.x14{left:425.745067pt;}
.x31{left:428.031467pt;}
.x19{left:467.118777pt;}
.x1a{left:472.022550pt;}
.x1b{left:543.844763pt;}
.x36{left:579.232267pt;}
.x1c{left:585.356494pt;}
.x22{left:598.770273pt;}
.x1f{left:600.429145pt;}
.x20{left:601.740259pt;}
.x25{left:610.590947pt;}
.x21{left:621.337954pt;}
.x24{left:634.046469pt;}
.x11{left:642.042000pt;}
}




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