
    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_db07056073e90243e15d9d0f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.792000;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_ac52bec1578bd2102fd3f4e9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.800000;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_33357263726bd704d926b4a9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.032000;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_1fe9bd4ddda7f286c5ff94bf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.032000;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_f35a4d981cfb8f5cf8c4544e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.732000;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_c93be7626c0994fd3a3323f5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.682617;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_5c738fc8f2b2c926f5627bb8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.797000;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_00dfb1d1564bf6c6554cceac.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.992000;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_410cd25a252ba70589501367.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.792000;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_b8ed68125607901c9fe90d5a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.979004;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_153085bc75f64a37ee4c903a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.784000;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_1ea16362c662132ae76d47b0.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.024000;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_cc614dce78b7a52c4a191f51.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.792000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-36.000000px;}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:3.023892px;}
.ls3{letter-spacing:3.024072px;}
.ls0{letter-spacing:42.840000px;}
.ls1{letter-spacing:146.273982px;}
.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;}
}
.ws9{word-spacing:-72.000000px;}
.ws1{word-spacing:-18.432000px;}
.ws0{word-spacing:-16.128000px;}
.wsa{word-spacing:-14.976000px;}
.ws3{word-spacing:-0.072000px;}
.ws8{word-spacing:-0.063000px;}
.ws4{word-spacing:0.000000px;}
.ws2{word-spacing:38.402856px;}
.ws6{word-spacing:405.690018px;}
.ws5{word-spacing:443.427054px;}
.ws7{word-spacing:579.066018px;}
._8{margin-left:-7.421892px;}
._4{margin-left:-5.915820px;}
._3{margin-left:-4.692144px;}
._1{margin-left:-3.134892px;}
._0{margin-left:-1.815036px;}
._2{width:1.626036px;}
._5{width:2.874036px;}
._6{width:233.493072px;}
._7{width:607.179036px;}
.fc2{color:transparent;}
.fc1{color:rgb(23,78,166);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:58.500000px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:2.250000px;}
.y177{bottom:2.625000px;}
.y17e{bottom:3.000000px;}
.y181{bottom:3.750000px;}
.y3{bottom:4.125000px;}
.y190{bottom:4.500000px;}
.y10b{bottom:4.875000px;}
.y9{bottom:5.250000px;}
.yd{bottom:6.000000px;}
.y10{bottom:6.375000px;}
.y112{bottom:6.750000px;}
.ybd{bottom:101.625000px;}
.y6e{bottom:103.500000px;}
.y19f{bottom:106.500000px;}
.ybe{bottom:108.000000px;}
.y10a{bottom:111.000000px;}
.ya2{bottom:112.875007px;}
.y15e{bottom:113.250000px;}
.y122{bottom:115.500000px;}
.y109{bottom:115.875000px;}
.y133{bottom:120.000000px;}
.y35{bottom:126.000000px;}
.ya0{bottom:129.000000px;}
.y15d{bottom:133.500000px;}
.y1a7{bottom:135.000000px;}
.ya1{bottom:135.375000px;}
.y19{bottom:139.125000px;}
.y182{bottom:139.500000px;}
.y17a{bottom:142.500000px;}
.y6d{bottom:144.000007px;}
.y8c{bottom:148.500000px;}
.y19e{bottom:151.500000px;}
.y1a4{bottom:156.000000px;}
.yef{bottom:157.500000px;}
.y6b{bottom:160.125000px;}
.y121{bottom:160.500000px;}
.y149{bottom:162.000000px;}
.y105{bottom:163.500000px;}
.y132{bottom:165.000000px;}
.yd6{bottom:166.125000px;}
.y6c{bottom:166.500000px;}
.y34{bottom:166.500007px;}
.y1a3{bottom:178.500000px;}
.y18{bottom:179.625007px;}
.y32{bottom:182.625000px;}
.y83{bottom:184.125000px;}
.y171{bottom:186.000000px;}
.y179{bottom:187.500000px;}
.ybc{bottom:188.625000px;}
.y33{bottom:189.000000px;}
.y8b{bottom:189.000007px;}
.y16{bottom:195.750000px;}
.y17{bottom:202.125000px;}
.y89{bottom:205.125000px;}
.y120{bottom:205.500000px;}
.y15b{bottom:205.875000px;}
.yd5{bottom:206.625007px;}
.y114{bottom:207.000000px;}
.y18a{bottom:211.125000px;}
.y8a{bottom:211.500000px;}
.y15c{bottom:212.250000px;}
.y104{bottom:213.000000px;}
.y9f{bottom:216.000000px;}
.yd3{bottom:222.750000px;}
.y4b{bottom:224.625000px;}
.y82{bottom:224.625007px;}
.y17c{bottom:225.000000px;}
.yd4{bottom:229.125000px;}
.ybb{bottom:229.125007px;}
.y170{bottom:231.000000px;}
.y15a{bottom:232.500000px;}
.y189{bottom:234.000000px;}
.y188{bottom:238.125000px;}
.y81{bottom:240.750000px;}
.y1a0{bottom:241.500000px;}
.yb9{bottom:245.250000px;}
.y6a{bottom:247.125000px;}
.y1a1{bottom:247.500000px;}
.yba{bottom:251.625000px;}
.y113{bottom:252.000000px;}
.y138{bottom:255.000000px;}
.yee{bottom:256.125000px;}
.y9e{bottom:256.500007px;}
.y14f{bottom:258.000000px;}
.y139{bottom:261.000000px;}
.y103{bottom:262.125007px;}
.y4a{bottom:265.125007px;}
.y31{bottom:269.625000px;}
.y9c{bottom:272.625000px;}
.y16f{bottom:276.000000px;}
.y9d{bottom:279.000000px;}
.y48{bottom:281.250000px;}
.y15{bottom:282.000000px;}
.y102{bottom:284.625000px;}
.y49{bottom:287.625000px;}
.y69{bottom:287.625007px;}
.y88{bottom:292.125000px;}
.y127{bottom:295.500000px;}
.yed{bottom:296.625007px;}
.y111{bottom:297.000000px;}
.y128{bottom:301.500000px;}
.y14e{bottom:303.000000px;}
.y67{bottom:303.750000px;}
.yd2{bottom:309.750000px;}
.y68{bottom:310.125000px;}
.y30{bottom:310.125007px;}
.yeb{bottom:312.750000px;}
.yec{bottom:319.125000px;}
.y17f{bottom:321.000000px;}
.y163{bottom:322.500000px;}
.y1a2{bottom:323.625000px;}
.y101{bottom:325.125000px;}
.y2e{bottom:326.250000px;}
.y80{bottom:327.750000px;}
.y164{bottom:328.500000px;}
.y194{bottom:330.000000px;}
.yb8{bottom:332.250000px;}
.y2f{bottom:332.625000px;}
.y87{bottom:332.625007px;}
.y19a{bottom:333.000000px;}
.y199{bottom:337.125000px;}
.y12d{bottom:346.500000px;}
.y143{bottom:348.000000px;}
.y85{bottom:348.750000px;}
.yd1{bottom:350.250007px;}
.y12c{bottom:350.625000px;}
.y17d{bottom:351.000000px;}
.y86{bottom:355.125000px;}
.y9b{bottom:359.624993px;}
.y174{bottom:366.000000px;}
.ycf{bottom:366.375000px;}
.y47{bottom:368.250000px;}
.y7f{bottom:368.250007px;}
.y175{bottom:371.250000px;}
.yd0{bottom:372.750000px;}
.yb7{bottom:372.750007px;}
.y193{bottom:375.000000px;}
.y100{bottom:383.250007px;}
.y7e{bottom:384.375000px;}
.y115{bottom:387.000000px;}
.yb5{bottom:388.875000px;}
.y66{bottom:390.750000px;}
.y11a{bottom:391.125000px;}
.y116{bottom:393.000000px;}
.y99{bottom:393.750000px;}
.yb6{bottom:395.250000px;}
.yea{bottom:399.750000px;}
.y9a{bottom:400.125000px;}
.yff{bottom:405.750000px;}
.y46{bottom:408.750007px;}
.y1ad{bottom:411.000000px;}
.y2d{bottom:413.250000px;}
.y5d{bottom:413.250007px;}
.y155{bottom:414.000000px;}
.y1ae{bottom:416.250000px;}
.y154{bottom:418.125000px;}
.y192{bottom:420.000000px;}
.y44{bottom:424.875000px;}
.y19d{bottom:429.000000px;}
.y45{bottom:431.250000px;}
.y65{bottom:431.250007px;}
.y169{bottom:433.875000px;}
.y5c{bottom:435.750000px;}
.y142{bottom:438.000000px;}
.y198{bottom:439.500000px;}
.ye9{bottom:440.250007px;}
.y131{bottom:442.500000px;}
.y151{bottom:443.250000px;}
.yfe{bottom:446.250000px;}
.y191{bottom:447.000000px;}
.y63{bottom:447.375000px;}
.yce{bottom:453.375000px;}
.y64{bottom:453.750000px;}
.y2c{bottom:453.750007px;}
.y168{bottom:456.000000px;}
.ye7{bottom:456.375000px;}
.y14{bottom:459.000000px;}
.y167{bottom:460.875000px;}
.ye8{bottom:462.750000px;}
.y2a{bottom:469.875000px;}
.y7d{bottom:471.375000px;}
.y19c{bottom:474.000000px;}
.y18f{bottom:475.500000px;}
.yb4{bottom:475.875000px;}
.y2b{bottom:476.250000px;}
.y5b{bottom:476.250007px;}
.y108{bottom:478.500000px;}
.y1a6{bottom:478.875000px;}
.y98{bottom:480.750000px;}
.y107{bottom:482.625000px;}
.y11f{bottom:483.000000px;}
.y12{bottom:485.625000px;}
.y130{bottom:487.500000px;}
.y13{bottom:492.000000px;}
.y59{bottom:492.375000px;}
.ycd{bottom:493.875007px;}
.y5a{bottom:498.750000px;}
.y18e{bottom:501.000000px;}
.yfd{bottom:504.375000px;}
.y184{bottom:505.875000px;}
.ycb{bottom:510.000000px;}
.y43{bottom:511.875000px;}
.y7c{bottom:511.875007px;}
.ycc{bottom:516.375000px;}
.yb3{bottom:516.375007px;}
.y19b{bottom:519.000000px;}
.y97{bottom:521.250007px;}
.y7b{bottom:528.000000px;}
.y180{bottom:529.500000px;}
.yb1{bottom:532.500000px;}
.y148{bottom:532.875000px;}
.y145{bottom:533.250000px;}
.y62{bottom:534.375000px;}
.y95{bottom:537.375000px;}
.yb2{bottom:538.875000px;}
.yf{bottom:539.625000px;}
.ye6{bottom:543.375000px;}
.y96{bottom:543.750000px;}
.yfc{bottom:544.875000px;}
.y11{bottom:546.000000px;}
.y16e{bottom:552.000000px;}
.y42{bottom:552.375007px;}
.y159{bottom:555.000000px;}
.y29{bottom:556.875000px;}
.ye{bottom:567.000000px;}
.y40{bottom:568.500000px;}
.y11e{bottom:573.000000px;}
.y41{bottom:574.875000px;}
.y61{bottom:574.875007px;}
.y58{bottom:579.375000px;}
.ye5{bottom:583.875007px;}
.y5f{bottom:591.000000px;}
.y197{bottom:592.500000px;}
.y17b{bottom:595.875000px;}
.y196{bottom:596.250000px;}
.yca{bottom:597.000000px;}
.y60{bottom:597.375000px;}
.y28{bottom:597.375007px;}
.ye3{bottom:600.000000px;}
.yfb{bottom:603.000000px;}
.ye4{bottom:606.375000px;}
.y1b6{bottom:609.000000px;}
.yc{bottom:612.000000px;}
.y26{bottom:613.500000px;}
.y1b7{bottom:614.250000px;}
.y7a{bottom:615.000000px;}
.y13d{bottom:618.000000px;}
.yb0{bottom:619.500000px;}
.y27{bottom:619.875000px;}
.y57{bottom:619.875007px;}
.y136{bottom:622.500000px;}
.y13c{bottom:622.875000px;}
.y14d{bottom:624.000000px;}
.y94{bottom:624.375000px;}
.y137{bottom:627.750000px;}
.y55{bottom:636.000000px;}
.yc9{bottom:637.500007px;}
.y16d{bottom:642.000000px;}
.y56{bottom:642.375000px;}
.yfa{bottom:652.500000px;}
.yc7{bottom:653.625000px;}
.y3f{bottom:655.500007px;}
.y187{bottom:658.875000px;}
.yc8{bottom:660.000000px;}
.yaf{bottom:660.000007px;}
.y125{bottom:663.000000px;}
.y93{bottom:664.875007px;}
.y126{bottom:668.250000px;}
.y14c{bottom:669.000000px;}
.y79{bottom:671.625000px;}
.yad{bottom:676.125000px;}
.y3e{bottom:678.000000px;}
.y5e{bottom:678.000007px;}
.y91{bottom:681.000000px;}
.yae{bottom:682.500000px;}
.y186{bottom:685.875000px;}
.ye2{bottom:687.000000px;}
.y110{bottom:687.000007px;}
.y92{bottom:687.375000px;}
.y161{bottom:690.000000px;}
.y162{bottom:695.250000px;}
.y1b0{bottom:699.000000px;}
.y25{bottom:700.500000px;}
.yf9{bottom:701.625014px;}
.y1af{bottom:703.875000px;}
.y10f{bottom:709.500000px;}
.y12b{bottom:712.500000px;}
.y141{bottom:714.000000px;}
.y12a{bottom:717.375000px;}
.y3d{bottom:718.500007px;}
.y84{bottom:722.999993px;}
.y54{bottom:723.000000px;}
.yf8{bottom:724.125007px;}
.ye1{bottom:727.500007px;}
.y172{bottom:732.000000px;}
.y3b{bottom:734.625000px;}
.y173{bottom:738.000000px;}
.yc6{bottom:740.625000px;}
.y3c{bottom:741.000000px;}
.y24{bottom:741.000007px;}
.ydf{bottom:743.625000px;}
.yf7{bottom:746.625000px;}
.ye0{bottom:750.000000px;}
.y119{bottom:753.000000px;}
.y22{bottom:757.125000px;}
.y118{bottom:757.875000px;}
.y78{bottom:758.625000px;}
.y140{bottom:759.000000px;}
.yd8{bottom:763.124993px;}
.yac{bottom:763.125000px;}
.y23{bottom:763.500000px;}
.y53{bottom:763.500007px;}
.y90{bottom:767.999993px;}
.y18d{bottom:777.000000px;}
.yb{bottom:779.250007px;}
.y51{bottom:779.625000px;}
.y153{bottom:780.000000px;}
.yc5{bottom:781.125007px;}
.y1ac{bottom:783.000000px;}
.y152{bottom:784.875000px;}
.y52{bottom:786.000000px;}
.yf6{bottom:787.125000px;}
.y1b5{bottom:795.000000px;}
.y8{bottom:796.500000px;}
.yc3{bottom:797.250000px;}
.y77{bottom:799.125007px;}
.y10e{bottom:799.125014px;}
.ya{bottom:801.750000px;}
.y8e{bottom:802.125000px;}
.yc4{bottom:803.625000px;}
.yab{bottom:803.625007px;}
.y13f{bottom:804.000000px;}
.y185{bottom:807.000000px;}
.y8f{bottom:808.500000px;}
.y150{bottom:810.000000px;}
.y76{bottom:815.250000px;}
.ya9{bottom:819.750000px;}
.y3a{bottom:821.625000px;}
.y10d{bottom:821.625007px;}
.y18c{bottom:822.000000px;}
.y166{bottom:823.500000px;}
.yaa{bottom:826.125000px;}
.y165{bottom:827.625000px;}
.yde{bottom:830.624993px;}
.y1b4{bottom:840.000000px;}
.y21{bottom:844.125000px;}
.yf5{bottom:845.250007px;}
.y11d{bottom:849.000000px;}
.y12f{bottom:853.500000px;}
.y7{bottom:861.750000px;}
.y39{bottom:862.125007px;}
.ydc{bottom:864.750000px;}
.y50{bottom:866.625000px;}
.yf4{bottom:867.750000px;}
.y1a5{bottom:868.500000px;}
.ydd{bottom:871.125000px;}
.y183{bottom:872.625000px;}
.y18b{bottom:873.750000px;}
.y158{bottom:876.000000px;}
.y37{bottom:878.250000px;}
.yc2{bottom:884.250000px;}
.y38{bottom:884.625000px;}
.y20{bottom:884.625007px;}
.y8d{bottom:889.124993px;}
.y1b3{bottom:889.500000px;}
.y11c{bottom:894.000000px;}
.y147{bottom:895.500000px;}
.y12e{bottom:898.500000px;}
.y146{bottom:899.625000px;}
.y144{bottom:900.000000px;}
.y1e{bottom:900.750000px;}
.yf3{bottom:901.875000px;}
.y75{bottom:902.250014px;}
.ya8{bottom:906.750000px;}
.y1f{bottom:907.125000px;}
.y4f{bottom:907.125007px;}
.y1bb{bottom:909.000000px;}
.y1b1{bottom:912.375000px;}
.y1b2{bottom:918.750000px;}
.y16c{bottom:919.500000px;}
.y157{bottom:921.000000px;}
.y4d{bottom:923.250000px;}
.y74{bottom:924.750007px;}
.y4e{bottom:929.625000px;}
.yf2{bottom:930.750000px;}
.y1b9{bottom:931.500000px;}
.y1ba{bottom:937.500000px;}
.y11b{bottom:939.000000px;}
.yc1{bottom:940.875000px;}
.y73{bottom:947.250000px;}
.ya7{bottom:947.250007px;}
.ydb{bottom:951.749993px;}
.y5{bottom:958.500000px;}
.y4{bottom:960.750000px;}
.ya5{bottom:963.375000px;}
.y16b{bottom:964.500000px;}
.y36{bottom:965.250000px;}
.y10c{bottom:965.250014px;}
.y156{bottom:966.000000px;}
.ya6{bottom:969.750000px;}
.y13b{bottom:985.500000px;}
.yd9{bottom:985.875000px;}
.y1d{bottom:987.750000px;}
.y72{bottom:987.750007px;}
.y134{bottom:988.500000px;}
.y13a{bottom:989.625000px;}
.y14b{bottom:991.500000px;}
.yda{bottom:992.250000px;}
.y135{bottom:994.500000px;}
.yf1{bottom:1002.375000px;}
.y70{bottom:1003.875000px;}
.y1ab{bottom:1009.500000px;}
.y4c{bottom:1010.249993px;}
.y71{bottom:1010.250000px;}
.y16a{bottom:1015.500000px;}
.yc0{bottom:1027.500000px;}
.y1c{bottom:1028.250007px;}
.y123{bottom:1029.000000px;}
.y124{bottom:1035.000000px;}
.y14a{bottom:1036.500000px;}
.yf0{bottom:1042.875000px;}
.y1a{bottom:1044.375000px;}
.ya4{bottom:1050.000007px;}
.y1b{bottom:1050.750000px;}
.y1aa{bottom:1054.500000px;}
.y15f{bottom:1056.000000px;}
.y1b8{bottom:1057.125000px;}
.y195{bottom:1059.000000px;}
.y160{bottom:1062.000000px;}
.y2{bottom:1066.500000px;}
.ybf{bottom:1068.000007px;}
.y1{bottom:1070.625000px;}
.ya3{bottom:1072.500000px;}
.y106{bottom:1073.250000px;}
.y129{bottom:1080.000000px;}
.y1a8{bottom:1081.125000px;}
.y13e{bottom:1081.500000px;}
.yd7{bottom:1084.125000px;}
.y1a9{bottom:1087.500000px;}
.y117{bottom:1088.625000px;}
.y6f{bottom:1090.500000px;}
.y178{bottom:1102.500000px;}
.y176{bottom:1104.000000px;}
.he{height:3.000000px;}
.h10{height:4.500000px;}
.h11{height:16.500000px;}
.h4{height:18.000000px;}
.h2{height:19.500000px;}
.h7{height:21.000000px;}
.h6{height:22.500000px;}
.hb{height:22.875000px;}
.hd{height:24.000000px;}
.ha{height:24.750000px;}
.h8{height:25.500000px;}
.h12{height:46.332000px;}
.hf{height:46.560000px;}
.hc{height:48.572754px;}
.h1{height:50.400000px;}
.h5{height:51.552000px;}
.h9{height:56.232000px;}
.h3{height:57.600000px;}
.h0{height:1188.000000px;}
.w1{width:7.500000px;}
.w34{width:9.000000px;}
.w32{width:12.000000px;}
.w71{width:33.000000px;}
.w3a{width:37.909500px;}
.w2{width:43.500000px;}
.w30{width:48.000000px;}
.w70{width:75.000000px;}
.w9{width:87.000000px;}
.w31{width:108.000000px;}
.w33{width:109.500000px;}
.w3{width:115.500000px;}
.w29{width:124.500000px;}
.w42{width:129.000000px;}
.w5{width:157.500000px;}
.w87{width:174.000000px;}
.wf{width:180.750000px;}
.w50{width:204.000000px;}
.wa{width:204.937500px;}
.w9f{width:205.500000px;}
.w74{width:216.000000px;}
.wd{width:228.000000px;}
.w26{width:235.500000px;}
.w5c{width:259.500000px;}
.w44{width:305.250000px;}
.wb{width:323.871000px;}
.w68{width:414.000000px;}
.w4{width:415.500000px;}
.w97{width:417.000000px;}
.w99{width:418.500000px;}
.w63{width:421.500000px;}
.w3b{width:423.000000px;}
.w94{width:424.500000px;}
.w6c{width:426.000000px;}
.w9c{width:429.000000px;}
.w1a{width:438.000000px;}
.w21{width:439.500000px;}
.w8e{width:441.000000px;}
.w27{width:442.125000px;}
.w7b{width:442.500000px;}
.w82{width:444.000000px;}
.w3d{width:447.000000px;}
.w88{width:448.500000px;}
.w37{width:451.500000px;}
.w8a{width:454.500000px;}
.w52{width:457.500000px;}
.w1d{width:459.000000px;}
.w49{width:462.000000px;}
.w4b{width:465.000000px;}
.w69{width:469.500000px;}
.w6a{width:471.000000px;}
.w61{width:472.500000px;}
.w93{width:475.500000px;}
.w98{width:477.000000px;}
.w55{width:478.500000px;}
.w8{width:480.000000px;}
.w3c{width:481.500000px;}
.w90{width:483.000000px;}
.w6d{width:484.500000px;}
.w16{width:486.000000px;}
.w2c{width:487.500000px;}
.w79{width:489.000000px;}
.w89{width:490.500000px;}
.w1f{width:492.000000px;}
.w18{width:493.500000px;}
.w80{width:495.000000px;}
.w64{width:496.500000px;}
.w25{width:498.000000px;}
.w95{width:499.500000px;}
.w22{width:501.000000px;}
.w10{width:502.500000px;}
.w23{width:504.000000px;}
.w47{width:505.500000px;}
.w83{width:507.000000px;}
.w1c{width:508.500000px;}
.w66{width:511.500000px;}
.w7e{width:513.000000px;}
.w96{width:514.500000px;}
.w3e{width:516.000000px;}
.w12{width:517.500000px;}
.w6{width:518.028000px;}
.w91{width:519.000000px;}
.w7c{width:520.500000px;}
.w1e{width:522.000000px;}
.w6e{width:523.500000px;}
.w9d{width:526.500000px;}
.w7f{width:529.500000px;}
.w38{width:534.000000px;}
.w14{width:535.500000px;}
.w8b{width:537.000000px;}
.w5e{width:538.500000px;}
.w75{width:540.000000px;}
.w9a{width:541.500000px;}
.w8f{width:546.000000px;}
.wc{width:550.500000px;}
.w8c{width:552.000000px;}
.w9e{width:553.500000px;}
.w8d{width:558.000000px;}
.w5f{width:562.500000px;}
.w3f{width:564.000000px;}
.w17{width:565.500000px;}
.w35{width:567.000000px;}
.w77{width:568.500000px;}
.w2d{width:570.000000px;}
.w20{width:571.500000px;}
.w19{width:573.000000px;}
.w2b{width:574.500000px;}
.w45{width:576.000000px;}
.w81{width:577.500000px;}
.w7a{width:579.000000px;}
.w65{width:580.500000px;}
.w24{width:582.000000px;}
.w11{width:585.000000px;}
.w62{width:586.500000px;}
.w84{width:588.000000px;}
.w86{width:588.919500px;}
.w1b{width:592.500000px;}
.w73{width:594.000000px;}
.w7d{width:600.000000px;}
.w60{width:601.500000px;}
.w67{width:603.000000px;}
.w5d{width:604.500000px;}
.w92{width:607.500000px;}
.w2e{width:610.500000px;}
.w2f{width:613.500000px;}
.w85{width:621.000000px;}
.w2a{width:627.000000px;}
.w39{width:628.500000px;}
.w15{width:630.000000px;}
.w41{width:631.500000px;}
.w58{width:636.000000px;}
.w78{width:637.500000px;}
.w6b{width:639.000000px;}
.w9b{width:645.000000px;}
.we{width:646.500000px;}
.w43{width:651.000000px;}
.w76{width:654.000000px;}
.w13{width:657.000000px;}
.w53{width:658.500000px;}
.w46{width:660.000000px;}
.w40{width:663.000000px;}
.w72{width:664.629000px;}
.w54{width:669.000000px;}
.w4a{width:672.000000px;}
.w57{width:682.500000px;}
.w36{width:688.500000px;}
.w7{width:697.236000px;}
.w56{width:697.500000px;}
.w4e{width:700.500000px;}
.w4c{width:721.500000px;}
.w4d{width:723.000000px;}
.w4f{width:724.500000px;}
.w5a{width:735.000000px;}
.w5b{width:738.000000px;}
.w28{width:742.500000px;}
.w59{width:744.000000px;}
.w6f{width:745.500000px;}
.w48{width:747.000000px;}
.w51{width:754.500000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:1.949982px;}
.xf{left:66.151482px;}
.x7{left:81.000000px;}
.x14{left:108.000000px;}
.xd{left:151.950005px;}
.x8{left:195.168754px;}
.x11{left:199.200005px;}
.x19{left:208.012504px;}
.x6{left:217.724991px;}
.x16{left:270.750000px;}
.xb{left:279.637504px;}
.x4{left:283.200004px;}
.x1a{left:306.000000px;}
.x1{left:308.343750px;}
.xc{left:321.750000px;}
.x1b{left:355.500000px;}
.x18{left:372.375000px;}
.x21{left:396.862518px;}
.xe{left:428.550018px;}
.x1c{left:462.000000px;}
.x15{left:467.099991px;}
.x1d{left:469.500000px;}
.x12{left:486.000000px;}
.x10{left:504.900009px;}
.x13{left:514.349991px;}
.x17{left:516.824982px;}
.x1f{left:531.000000px;}
.x20{left:549.300018px;}
.x1e{left:576.000000px;}
.x9{left:599.025009px;}
.x24{left:636.262482px;}
.x23{left:663.618759px;}
.x22{left:745.631241px;}
.xa{left:771.937500px;}
.x5{left:793.500000px;}
.x2{left:829.500000px;}
@media print{
.v1{vertical-align:-32.000000pt;}
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:2.687904pt;}
.ls3{letter-spacing:2.688064pt;}
.ls0{letter-spacing:38.080000pt;}
.ls1{letter-spacing:130.021317pt;}
.ws9{word-spacing:-64.000000pt;}
.ws1{word-spacing:-16.384000pt;}
.ws0{word-spacing:-14.336000pt;}
.wsa{word-spacing:-13.312000pt;}
.ws3{word-spacing:-0.064000pt;}
.ws8{word-spacing:-0.056000pt;}
.ws4{word-spacing:0.000000pt;}
.ws2{word-spacing:34.135872pt;}
.ws6{word-spacing:360.613349pt;}
.ws5{word-spacing:394.157381pt;}
.ws7{word-spacing:514.725349pt;}
._8{margin-left:-6.597237pt;}
._4{margin-left:-5.258507pt;}
._3{margin-left:-4.170795pt;}
._1{margin-left:-2.786571pt;}
._0{margin-left:-1.613365pt;}
._2{width:1.445365pt;}
._5{width:2.554699pt;}
._6{width:207.549397pt;}
._7{width:539.714699pt;}
.fs3{font-size:52.000000pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:2.000000pt;}
.y177{bottom:2.333333pt;}
.y17e{bottom:2.666667pt;}
.y181{bottom:3.333333pt;}
.y3{bottom:3.666667pt;}
.y190{bottom:4.000000pt;}
.y10b{bottom:4.333333pt;}
.y9{bottom:4.666667pt;}
.yd{bottom:5.333333pt;}
.y10{bottom:5.666667pt;}
.y112{bottom:6.000000pt;}
.ybd{bottom:90.333333pt;}
.y6e{bottom:92.000000pt;}
.y19f{bottom:94.666667pt;}
.ybe{bottom:96.000000pt;}
.y10a{bottom:98.666667pt;}
.ya2{bottom:100.333339pt;}
.y15e{bottom:100.666667pt;}
.y122{bottom:102.666667pt;}
.y109{bottom:103.000000pt;}
.y133{bottom:106.666667pt;}
.y35{bottom:112.000000pt;}
.ya0{bottom:114.666667pt;}
.y15d{bottom:118.666667pt;}
.y1a7{bottom:120.000000pt;}
.ya1{bottom:120.333333pt;}
.y19{bottom:123.666667pt;}
.y182{bottom:124.000000pt;}
.y17a{bottom:126.666667pt;}
.y6d{bottom:128.000006pt;}
.y8c{bottom:132.000000pt;}
.y19e{bottom:134.666667pt;}
.y1a4{bottom:138.666667pt;}
.yef{bottom:140.000000pt;}
.y6b{bottom:142.333333pt;}
.y121{bottom:142.666667pt;}
.y149{bottom:144.000000pt;}
.y105{bottom:145.333333pt;}
.y132{bottom:146.666667pt;}
.yd6{bottom:147.666667pt;}
.y6c{bottom:148.000000pt;}
.y34{bottom:148.000006pt;}
.y1a3{bottom:158.666667pt;}
.y18{bottom:159.666673pt;}
.y32{bottom:162.333333pt;}
.y83{bottom:163.666667pt;}
.y171{bottom:165.333333pt;}
.y179{bottom:166.666667pt;}
.ybc{bottom:167.666667pt;}
.y33{bottom:168.000000pt;}
.y8b{bottom:168.000006pt;}
.y16{bottom:174.000000pt;}
.y17{bottom:179.666667pt;}
.y89{bottom:182.333333pt;}
.y120{bottom:182.666667pt;}
.y15b{bottom:183.000000pt;}
.yd5{bottom:183.666673pt;}
.y114{bottom:184.000000pt;}
.y18a{bottom:187.666667pt;}
.y8a{bottom:188.000000pt;}
.y15c{bottom:188.666667pt;}
.y104{bottom:189.333333pt;}
.y9f{bottom:192.000000pt;}
.yd3{bottom:198.000000pt;}
.y4b{bottom:199.666667pt;}
.y82{bottom:199.666673pt;}
.y17c{bottom:200.000000pt;}
.yd4{bottom:203.666667pt;}
.ybb{bottom:203.666673pt;}
.y170{bottom:205.333333pt;}
.y15a{bottom:206.666667pt;}
.y189{bottom:208.000000pt;}
.y188{bottom:211.666667pt;}
.y81{bottom:214.000000pt;}
.y1a0{bottom:214.666667pt;}
.yb9{bottom:218.000000pt;}
.y6a{bottom:219.666667pt;}
.y1a1{bottom:220.000000pt;}
.yba{bottom:223.666667pt;}
.y113{bottom:224.000000pt;}
.y138{bottom:226.666667pt;}
.yee{bottom:227.666667pt;}
.y9e{bottom:228.000006pt;}
.y14f{bottom:229.333333pt;}
.y139{bottom:232.000000pt;}
.y103{bottom:233.000006pt;}
.y4a{bottom:235.666673pt;}
.y31{bottom:239.666667pt;}
.y9c{bottom:242.333333pt;}
.y16f{bottom:245.333333pt;}
.y9d{bottom:248.000000pt;}
.y48{bottom:250.000000pt;}
.y15{bottom:250.666667pt;}
.y102{bottom:253.000000pt;}
.y49{bottom:255.666667pt;}
.y69{bottom:255.666673pt;}
.y88{bottom:259.666667pt;}
.y127{bottom:262.666667pt;}
.yed{bottom:263.666673pt;}
.y111{bottom:264.000000pt;}
.y128{bottom:268.000000pt;}
.y14e{bottom:269.333333pt;}
.y67{bottom:270.000000pt;}
.yd2{bottom:275.333333pt;}
.y68{bottom:275.666667pt;}
.y30{bottom:275.666673pt;}
.yeb{bottom:278.000000pt;}
.yec{bottom:283.666667pt;}
.y17f{bottom:285.333333pt;}
.y163{bottom:286.666667pt;}
.y1a2{bottom:287.666667pt;}
.y101{bottom:289.000000pt;}
.y2e{bottom:290.000000pt;}
.y80{bottom:291.333333pt;}
.y164{bottom:292.000000pt;}
.y194{bottom:293.333333pt;}
.yb8{bottom:295.333333pt;}
.y2f{bottom:295.666667pt;}
.y87{bottom:295.666673pt;}
.y19a{bottom:296.000000pt;}
.y199{bottom:299.666667pt;}
.y12d{bottom:308.000000pt;}
.y143{bottom:309.333333pt;}
.y85{bottom:310.000000pt;}
.yd1{bottom:311.333339pt;}
.y12c{bottom:311.666667pt;}
.y17d{bottom:312.000000pt;}
.y86{bottom:315.666667pt;}
.y9b{bottom:319.666661pt;}
.y174{bottom:325.333333pt;}
.ycf{bottom:325.666667pt;}
.y47{bottom:327.333333pt;}
.y7f{bottom:327.333339pt;}
.y175{bottom:330.000000pt;}
.yd0{bottom:331.333333pt;}
.yb7{bottom:331.333339pt;}
.y193{bottom:333.333333pt;}
.y100{bottom:340.666673pt;}
.y7e{bottom:341.666667pt;}
.y115{bottom:344.000000pt;}
.yb5{bottom:345.666667pt;}
.y66{bottom:347.333333pt;}
.y11a{bottom:347.666667pt;}
.y116{bottom:349.333333pt;}
.y99{bottom:350.000000pt;}
.yb6{bottom:351.333333pt;}
.yea{bottom:355.333333pt;}
.y9a{bottom:355.666667pt;}
.yff{bottom:360.666667pt;}
.y46{bottom:363.333339pt;}
.y1ad{bottom:365.333333pt;}
.y2d{bottom:367.333333pt;}
.y5d{bottom:367.333339pt;}
.y155{bottom:368.000000pt;}
.y1ae{bottom:370.000000pt;}
.y154{bottom:371.666667pt;}
.y192{bottom:373.333333pt;}
.y44{bottom:377.666667pt;}
.y19d{bottom:381.333333pt;}
.y45{bottom:383.333333pt;}
.y65{bottom:383.333339pt;}
.y169{bottom:385.666667pt;}
.y5c{bottom:387.333333pt;}
.y142{bottom:389.333333pt;}
.y198{bottom:390.666667pt;}
.ye9{bottom:391.333339pt;}
.y131{bottom:393.333333pt;}
.y151{bottom:394.000000pt;}
.yfe{bottom:396.666667pt;}
.y191{bottom:397.333333pt;}
.y63{bottom:397.666667pt;}
.yce{bottom:403.000000pt;}
.y64{bottom:403.333333pt;}
.y2c{bottom:403.333339pt;}
.y168{bottom:405.333333pt;}
.ye7{bottom:405.666667pt;}
.y14{bottom:408.000000pt;}
.y167{bottom:409.666667pt;}
.ye8{bottom:411.333333pt;}
.y2a{bottom:417.666667pt;}
.y7d{bottom:419.000000pt;}
.y19c{bottom:421.333333pt;}
.y18f{bottom:422.666667pt;}
.yb4{bottom:423.000000pt;}
.y2b{bottom:423.333333pt;}
.y5b{bottom:423.333339pt;}
.y108{bottom:425.333333pt;}
.y1a6{bottom:425.666667pt;}
.y98{bottom:427.333333pt;}
.y107{bottom:429.000000pt;}
.y11f{bottom:429.333333pt;}
.y12{bottom:431.666667pt;}
.y130{bottom:433.333333pt;}
.y13{bottom:437.333333pt;}
.y59{bottom:437.666667pt;}
.ycd{bottom:439.000006pt;}
.y5a{bottom:443.333333pt;}
.y18e{bottom:445.333333pt;}
.yfd{bottom:448.333333pt;}
.y184{bottom:449.666667pt;}
.ycb{bottom:453.333333pt;}
.y43{bottom:455.000000pt;}
.y7c{bottom:455.000006pt;}
.ycc{bottom:459.000000pt;}
.yb3{bottom:459.000006pt;}
.y19b{bottom:461.333333pt;}
.y97{bottom:463.333339pt;}
.y7b{bottom:469.333333pt;}
.y180{bottom:470.666667pt;}
.yb1{bottom:473.333333pt;}
.y148{bottom:473.666667pt;}
.y145{bottom:474.000000pt;}
.y62{bottom:475.000000pt;}
.y95{bottom:477.666667pt;}
.yb2{bottom:479.000000pt;}
.yf{bottom:479.666667pt;}
.ye6{bottom:483.000000pt;}
.y96{bottom:483.333333pt;}
.yfc{bottom:484.333333pt;}
.y11{bottom:485.333333pt;}
.y16e{bottom:490.666667pt;}
.y42{bottom:491.000006pt;}
.y159{bottom:493.333333pt;}
.y29{bottom:495.000000pt;}
.ye{bottom:504.000000pt;}
.y40{bottom:505.333333pt;}
.y11e{bottom:509.333333pt;}
.y41{bottom:511.000000pt;}
.y61{bottom:511.000006pt;}
.y58{bottom:515.000000pt;}
.ye5{bottom:519.000006pt;}
.y5f{bottom:525.333333pt;}
.y197{bottom:526.666667pt;}
.y17b{bottom:529.666667pt;}
.y196{bottom:530.000000pt;}
.yca{bottom:530.666667pt;}
.y60{bottom:531.000000pt;}
.y28{bottom:531.000006pt;}
.ye3{bottom:533.333333pt;}
.yfb{bottom:536.000000pt;}
.ye4{bottom:539.000000pt;}
.y1b6{bottom:541.333333pt;}
.yc{bottom:544.000000pt;}
.y26{bottom:545.333333pt;}
.y1b7{bottom:546.000000pt;}
.y7a{bottom:546.666667pt;}
.y13d{bottom:549.333333pt;}
.yb0{bottom:550.666667pt;}
.y27{bottom:551.000000pt;}
.y57{bottom:551.000006pt;}
.y136{bottom:553.333333pt;}
.y13c{bottom:553.666667pt;}
.y14d{bottom:554.666667pt;}
.y94{bottom:555.000000pt;}
.y137{bottom:558.000000pt;}
.y55{bottom:565.333333pt;}
.yc9{bottom:566.666673pt;}
.y16d{bottom:570.666667pt;}
.y56{bottom:571.000000pt;}
.yfa{bottom:580.000000pt;}
.yc7{bottom:581.000000pt;}
.y3f{bottom:582.666673pt;}
.y187{bottom:585.666667pt;}
.yc8{bottom:586.666667pt;}
.yaf{bottom:586.666673pt;}
.y125{bottom:589.333333pt;}
.y93{bottom:591.000006pt;}
.y126{bottom:594.000000pt;}
.y14c{bottom:594.666667pt;}
.y79{bottom:597.000000pt;}
.yad{bottom:601.000000pt;}
.y3e{bottom:602.666667pt;}
.y5e{bottom:602.666673pt;}
.y91{bottom:605.333333pt;}
.yae{bottom:606.666667pt;}
.y186{bottom:609.666667pt;}
.ye2{bottom:610.666667pt;}
.y110{bottom:610.666673pt;}
.y92{bottom:611.000000pt;}
.y161{bottom:613.333333pt;}
.y162{bottom:618.000000pt;}
.y1b0{bottom:621.333333pt;}
.y25{bottom:622.666667pt;}
.yf9{bottom:623.666679pt;}
.y1af{bottom:625.666667pt;}
.y10f{bottom:630.666667pt;}
.y12b{bottom:633.333333pt;}
.y141{bottom:634.666667pt;}
.y12a{bottom:637.666667pt;}
.y3d{bottom:638.666673pt;}
.y84{bottom:642.666661pt;}
.y54{bottom:642.666667pt;}
.yf8{bottom:643.666673pt;}
.ye1{bottom:646.666673pt;}
.y172{bottom:650.666667pt;}
.y3b{bottom:653.000000pt;}
.y173{bottom:656.000000pt;}
.yc6{bottom:658.333333pt;}
.y3c{bottom:658.666667pt;}
.y24{bottom:658.666673pt;}
.ydf{bottom:661.000000pt;}
.yf7{bottom:663.666667pt;}
.ye0{bottom:666.666667pt;}
.y119{bottom:669.333333pt;}
.y22{bottom:673.000000pt;}
.y118{bottom:673.666667pt;}
.y78{bottom:674.333333pt;}
.y140{bottom:674.666667pt;}
.yd8{bottom:678.333327pt;}
.yac{bottom:678.333333pt;}
.y23{bottom:678.666667pt;}
.y53{bottom:678.666673pt;}
.y90{bottom:682.666661pt;}
.y18d{bottom:690.666667pt;}
.yb{bottom:692.666673pt;}
.y51{bottom:693.000000pt;}
.y153{bottom:693.333333pt;}
.yc5{bottom:694.333339pt;}
.y1ac{bottom:696.000000pt;}
.y152{bottom:697.666667pt;}
.y52{bottom:698.666667pt;}
.yf6{bottom:699.666667pt;}
.y1b5{bottom:706.666667pt;}
.y8{bottom:708.000000pt;}
.yc3{bottom:708.666667pt;}
.y77{bottom:710.333339pt;}
.y10e{bottom:710.333345pt;}
.ya{bottom:712.666667pt;}
.y8e{bottom:713.000000pt;}
.yc4{bottom:714.333333pt;}
.yab{bottom:714.333339pt;}
.y13f{bottom:714.666667pt;}
.y185{bottom:717.333333pt;}
.y8f{bottom:718.666667pt;}
.y150{bottom:720.000000pt;}
.y76{bottom:724.666667pt;}
.ya9{bottom:728.666667pt;}
.y3a{bottom:730.333333pt;}
.y10d{bottom:730.333339pt;}
.y18c{bottom:730.666667pt;}
.y166{bottom:732.000000pt;}
.yaa{bottom:734.333333pt;}
.y165{bottom:735.666667pt;}
.yde{bottom:738.333327pt;}
.y1b4{bottom:746.666667pt;}
.y21{bottom:750.333333pt;}
.yf5{bottom:751.333339pt;}
.y11d{bottom:754.666667pt;}
.y12f{bottom:758.666667pt;}
.y7{bottom:766.000000pt;}
.y39{bottom:766.333339pt;}
.ydc{bottom:768.666667pt;}
.y50{bottom:770.333333pt;}
.yf4{bottom:771.333333pt;}
.y1a5{bottom:772.000000pt;}
.ydd{bottom:774.333333pt;}
.y183{bottom:775.666667pt;}
.y18b{bottom:776.666667pt;}
.y158{bottom:778.666667pt;}
.y37{bottom:780.666667pt;}
.yc2{bottom:786.000000pt;}
.y38{bottom:786.333333pt;}
.y20{bottom:786.333339pt;}
.y8d{bottom:790.333327pt;}
.y1b3{bottom:790.666667pt;}
.y11c{bottom:794.666667pt;}
.y147{bottom:796.000000pt;}
.y12e{bottom:798.666667pt;}
.y146{bottom:799.666667pt;}
.y144{bottom:800.000000pt;}
.y1e{bottom:800.666667pt;}
.yf3{bottom:801.666667pt;}
.y75{bottom:802.000012pt;}
.ya8{bottom:806.000000pt;}
.y1f{bottom:806.333333pt;}
.y4f{bottom:806.333339pt;}
.y1bb{bottom:808.000000pt;}
.y1b1{bottom:811.000000pt;}
.y1b2{bottom:816.666667pt;}
.y16c{bottom:817.333333pt;}
.y157{bottom:818.666667pt;}
.y4d{bottom:820.666667pt;}
.y74{bottom:822.000006pt;}
.y4e{bottom:826.333333pt;}
.yf2{bottom:827.333333pt;}
.y1b9{bottom:828.000000pt;}
.y1ba{bottom:833.333333pt;}
.y11b{bottom:834.666667pt;}
.yc1{bottom:836.333333pt;}
.y73{bottom:842.000000pt;}
.ya7{bottom:842.000006pt;}
.ydb{bottom:845.999994pt;}
.y5{bottom:852.000000pt;}
.y4{bottom:854.000000pt;}
.ya5{bottom:856.333333pt;}
.y16b{bottom:857.333333pt;}
.y36{bottom:858.000000pt;}
.y10c{bottom:858.000012pt;}
.y156{bottom:858.666667pt;}
.ya6{bottom:862.000000pt;}
.y13b{bottom:876.000000pt;}
.yd9{bottom:876.333333pt;}
.y1d{bottom:878.000000pt;}
.y72{bottom:878.000006pt;}
.y134{bottom:878.666667pt;}
.y13a{bottom:879.666667pt;}
.y14b{bottom:881.333333pt;}
.yda{bottom:882.000000pt;}
.y135{bottom:884.000000pt;}
.yf1{bottom:891.000000pt;}
.y70{bottom:892.333333pt;}
.y1ab{bottom:897.333333pt;}
.y4c{bottom:897.999994pt;}
.y71{bottom:898.000000pt;}
.y16a{bottom:902.666667pt;}
.yc0{bottom:913.333333pt;}
.y1c{bottom:914.000006pt;}
.y123{bottom:914.666667pt;}
.y124{bottom:920.000000pt;}
.y14a{bottom:921.333333pt;}
.yf0{bottom:927.000000pt;}
.y1a{bottom:928.333333pt;}
.ya4{bottom:933.333339pt;}
.y1b{bottom:934.000000pt;}
.y1aa{bottom:937.333333pt;}
.y15f{bottom:938.666667pt;}
.y1b8{bottom:939.666667pt;}
.y195{bottom:941.333333pt;}
.y160{bottom:944.000000pt;}
.y2{bottom:948.000000pt;}
.ybf{bottom:949.333339pt;}
.y1{bottom:951.666667pt;}
.ya3{bottom:953.333333pt;}
.y106{bottom:954.000000pt;}
.y129{bottom:960.000000pt;}
.y1a8{bottom:961.000000pt;}
.y13e{bottom:961.333333pt;}
.yd7{bottom:963.666667pt;}
.y1a9{bottom:966.666667pt;}
.y117{bottom:967.666667pt;}
.y6f{bottom:969.333333pt;}
.y178{bottom:980.000000pt;}
.y176{bottom:981.333333pt;}
.he{height:2.666667pt;}
.h10{height:4.000000pt;}
.h11{height:14.666667pt;}
.h4{height:16.000000pt;}
.h2{height:17.333333pt;}
.h7{height:18.666667pt;}
.h6{height:20.000000pt;}
.hb{height:20.333333pt;}
.hd{height:21.333333pt;}
.ha{height:22.000000pt;}
.h8{height:22.666667pt;}
.h12{height:41.184000pt;}
.hf{height:41.386667pt;}
.hc{height:43.175781pt;}
.h1{height:44.800000pt;}
.h5{height:45.824000pt;}
.h9{height:49.984000pt;}
.h3{height:51.200000pt;}
.h0{height:1056.000000pt;}
.w1{width:6.666667pt;}
.w34{width:8.000000pt;}
.w32{width:10.666667pt;}
.w71{width:29.333333pt;}
.w3a{width:33.697333pt;}
.w2{width:38.666667pt;}
.w30{width:42.666667pt;}
.w70{width:66.666667pt;}
.w9{width:77.333333pt;}
.w31{width:96.000000pt;}
.w33{width:97.333333pt;}
.w3{width:102.666667pt;}
.w29{width:110.666667pt;}
.w42{width:114.666667pt;}
.w5{width:140.000000pt;}
.w87{width:154.666667pt;}
.wf{width:160.666667pt;}
.w50{width:181.333333pt;}
.wa{width:182.166667pt;}
.w9f{width:182.666667pt;}
.w74{width:192.000000pt;}
.wd{width:202.666667pt;}
.w26{width:209.333333pt;}
.w5c{width:230.666667pt;}
.w44{width:271.333333pt;}
.wb{width:287.885333pt;}
.w68{width:368.000000pt;}
.w4{width:369.333333pt;}
.w97{width:370.666667pt;}
.w99{width:372.000000pt;}
.w63{width:374.666667pt;}
.w3b{width:376.000000pt;}
.w94{width:377.333333pt;}
.w6c{width:378.666667pt;}
.w9c{width:381.333333pt;}
.w1a{width:389.333333pt;}
.w21{width:390.666667pt;}
.w8e{width:392.000000pt;}
.w27{width:393.000000pt;}
.w7b{width:393.333333pt;}
.w82{width:394.666667pt;}
.w3d{width:397.333333pt;}
.w88{width:398.666667pt;}
.w37{width:401.333333pt;}
.w8a{width:404.000000pt;}
.w52{width:406.666667pt;}
.w1d{width:408.000000pt;}
.w49{width:410.666667pt;}
.w4b{width:413.333333pt;}
.w69{width:417.333333pt;}
.w6a{width:418.666667pt;}
.w61{width:420.000000pt;}
.w93{width:422.666667pt;}
.w98{width:424.000000pt;}
.w55{width:425.333333pt;}
.w8{width:426.666667pt;}
.w3c{width:428.000000pt;}
.w90{width:429.333333pt;}
.w6d{width:430.666667pt;}
.w16{width:432.000000pt;}
.w2c{width:433.333333pt;}
.w79{width:434.666667pt;}
.w89{width:436.000000pt;}
.w1f{width:437.333333pt;}
.w18{width:438.666667pt;}
.w80{width:440.000000pt;}
.w64{width:441.333333pt;}
.w25{width:442.666667pt;}
.w95{width:444.000000pt;}
.w22{width:445.333333pt;}
.w10{width:446.666667pt;}
.w23{width:448.000000pt;}
.w47{width:449.333333pt;}
.w83{width:450.666667pt;}
.w1c{width:452.000000pt;}
.w66{width:454.666667pt;}
.w7e{width:456.000000pt;}
.w96{width:457.333333pt;}
.w3e{width:458.666667pt;}
.w12{width:460.000000pt;}
.w6{width:460.469333pt;}
.w91{width:461.333333pt;}
.w7c{width:462.666667pt;}
.w1e{width:464.000000pt;}
.w6e{width:465.333333pt;}
.w9d{width:468.000000pt;}
.w7f{width:470.666667pt;}
.w38{width:474.666667pt;}
.w14{width:476.000000pt;}
.w8b{width:477.333333pt;}
.w5e{width:478.666667pt;}
.w75{width:480.000000pt;}
.w9a{width:481.333333pt;}
.w8f{width:485.333333pt;}
.wc{width:489.333333pt;}
.w8c{width:490.666667pt;}
.w9e{width:492.000000pt;}
.w8d{width:496.000000pt;}
.w5f{width:500.000000pt;}
.w3f{width:501.333333pt;}
.w17{width:502.666667pt;}
.w35{width:504.000000pt;}
.w77{width:505.333333pt;}
.w2d{width:506.666667pt;}
.w20{width:508.000000pt;}
.w19{width:509.333333pt;}
.w2b{width:510.666667pt;}
.w45{width:512.000000pt;}
.w81{width:513.333333pt;}
.w7a{width:514.666667pt;}
.w65{width:516.000000pt;}
.w24{width:517.333333pt;}
.w11{width:520.000000pt;}
.w62{width:521.333333pt;}
.w84{width:522.666667pt;}
.w86{width:523.484000pt;}
.w1b{width:526.666667pt;}
.w73{width:528.000000pt;}
.w7d{width:533.333333pt;}
.w60{width:534.666667pt;}
.w67{width:536.000000pt;}
.w5d{width:537.333333pt;}
.w92{width:540.000000pt;}
.w2e{width:542.666667pt;}
.w2f{width:545.333333pt;}
.w85{width:552.000000pt;}
.w2a{width:557.333333pt;}
.w39{width:558.666667pt;}
.w15{width:560.000000pt;}
.w41{width:561.333333pt;}
.w58{width:565.333333pt;}
.w78{width:566.666667pt;}
.w6b{width:568.000000pt;}
.w9b{width:573.333333pt;}
.we{width:574.666667pt;}
.w43{width:578.666667pt;}
.w76{width:581.333333pt;}
.w13{width:584.000000pt;}
.w53{width:585.333333pt;}
.w46{width:586.666667pt;}
.w40{width:589.333333pt;}
.w72{width:590.781333pt;}
.w54{width:594.666667pt;}
.w4a{width:597.333333pt;}
.w57{width:606.666667pt;}
.w36{width:612.000000pt;}
.w7{width:619.765333pt;}
.w56{width:620.000000pt;}
.w4e{width:622.666667pt;}
.w4c{width:641.333333pt;}
.w4d{width:642.666667pt;}
.w4f{width:644.000000pt;}
.w5a{width:653.333333pt;}
.w5b{width:656.000000pt;}
.w28{width:660.000000pt;}
.w59{width:661.333333pt;}
.w6f{width:662.666667pt;}
.w48{width:664.000000pt;}
.w51{width:670.666667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:1.733317pt;}
.xf{left:58.801317pt;}
.x7{left:72.000000pt;}
.x14{left:96.000000pt;}
.xd{left:135.066671pt;}
.x8{left:173.483337pt;}
.x11{left:177.066671pt;}
.x19{left:184.900004pt;}
.x6{left:193.533325pt;}
.x16{left:240.666667pt;}
.xb{left:248.566671pt;}
.x4{left:251.733337pt;}
.x1a{left:272.000000pt;}
.x1{left:274.083333pt;}
.xc{left:286.000000pt;}
.x1b{left:316.000000pt;}
.x18{left:331.000000pt;}
.x21{left:352.766683pt;}
.xe{left:380.933349pt;}
.x1c{left:410.666667pt;}
.x15{left:415.199992pt;}
.x1d{left:417.333333pt;}
.x12{left:432.000000pt;}
.x10{left:448.800008pt;}
.x13{left:457.199992pt;}
.x17{left:459.399984pt;}
.x1f{left:472.000000pt;}
.x20{left:488.266683pt;}
.x1e{left:512.000000pt;}
.x9{left:532.466675pt;}
.x24{left:565.566651pt;}
.x23{left:589.883341pt;}
.x22{left:662.783325pt;}
.xa{left:686.166667pt;}
.x5{left:705.333333pt;}
.x2{left:737.333333pt;}
}




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