
    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_1de775efabd0ea8da99a28f9.woff')format("woff");}.ff1{font-family:ff1;line-height:1.071777;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_11b15d1ad30fbd1bfb30dab6.woff')format("woff");}.ff2{font-family:ff2;line-height:0.773926;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_b9071ba8399aedf7ebadd87a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.937012;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_524c3305503c6028cdf95de8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_3147d1682b3ece2ec10e726a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.939941;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_99d2071cffbc4dd15a826763.woff')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_dd6b1fb7e7e8dae24734bc4c.woff')format("woff");}.ff8{font-family:ff8;line-height:1.202148;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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_a5064f754857f55dffedbc6e.woff')format("woff");}.ffa{font-family:ffa;line-height:0.939941;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_130301694ab792f9947e2b7d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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);}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-2.052000px;}
.ls5{letter-spacing:-1.896000px;}
.ls14{letter-spacing:-1.440000px;}
.ls18{letter-spacing:-1.290000px;}
.ls15{letter-spacing:-1.134000px;}
.ls9{letter-spacing:-0.612000px;}
.ls2{letter-spacing:-0.351600px;}
.ls13{letter-spacing:-0.288000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.305400px;}
.ls3{letter-spacing:0.345600px;}
.ls0{letter-spacing:0.535680px;}
.lsc{letter-spacing:0.612000px;}
.ls4{letter-spacing:0.708000px;}
.ls8{letter-spacing:0.864000px;}
.lsa{letter-spacing:3.600000px;}
.ls17{letter-spacing:7.649280px;}
.ls11{letter-spacing:7.920000px;}
.lsf{letter-spacing:12.240000px;}
.lsb{letter-spacing:15.120000px;}
.lsd{letter-spacing:16.560000px;}
.ls19{letter-spacing:25.251840px;}
.ls6{letter-spacing:33.264000px;}
.ls16{letter-spacing:40.769280px;}
.ls10{letter-spacing:51.120000px;}
.ls12{letter-spacing:55.440000px;}
.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;}
}
.ws3{word-spacing:-29.880000px;}
.ws6{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.712000px;}
.ws8{word-spacing:-17.172000px;}
.ws7{word-spacing:-16.865400px;}
.ws4{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.473600px;}
.ws1{word-spacing:-16.122000px;}
.ws9{word-spacing:-15.948000px;}
.wsd{word-spacing:-15.426000px;}
.wse{word-spacing:-15.270000px;}
.wsc{word-spacing:-15.120000px;}
.wsa{word-spacing:-14.508000px;}
.wsf{word-spacing:-13.680000px;}
.ws2{word-spacing:-13.074720px;}
.ws5{word-spacing:0.000000px;}
._22{margin-left:-13.667520px;}
._2a{margin-left:-9.409440px;}
._c{margin-left:-5.234880px;}
._b{margin-left:-3.807360px;}
._2{margin-left:-2.728320px;}
._1{margin-left:-1.584000px;}
._0{width:1.152000px;}
._5{width:2.750400px;}
._8{width:3.801600px;}
._d{width:4.930080px;}
._6{width:5.961600px;}
._7{width:7.142400px;}
._10{width:8.544960px;}
._11{width:10.123200px;}
._12{width:11.405760px;}
._13{width:12.983040px;}
._14{width:14.169600px;}
._15{width:15.422400px;}
._16{width:18.081600px;}
._9{width:19.278720px;}
._a{width:20.425920px;}
._1a{width:21.462720px;}
._19{width:22.837440px;}
._1d{width:23.955840px;}
._18{width:24.960960px;}
._1c{width:27.423360px;}
._2d{width:28.514400px;}
._1b{width:29.523840px;}
._2c{width:39.536160px;}
._2b{width:48.019680px;}
._28{width:50.342880px;}
._27{width:51.551040px;}
._26{width:52.736160px;}
._25{width:54.283680px;}
._17{width:59.196000px;}
._29{width:61.883040px;}
._20{width:161.607360px;}
._21{width:163.899360px;}
._1e{width:165.927360px;}
._1f{width:169.659360px;}
._23{width:187.527360px;}
._24{width:189.819360px;}
._f{width:395.333280px;}
._3{width:588.569760px;}
._4{width:1101.485760px;}
._e{width:2208.989280px;}
.fc7{color:rgb(0,112,192);}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(64,64,64);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(79,129,189);}
.fc0{color:rgb(255,0,0);}
.fs7{font-size:24.480000px;}
.fs5{font-size:36.000000px;}
.fs2{font-size:54.720000px;}
.fs6{font-size:60.480000px;}
.fs1{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:119.520000px;}
.yc{bottom:-4.680000px;}
.y34{bottom:-4.320000px;}
.y0{bottom:0.000000px;}
.ye{bottom:2.880000px;}
.y117{bottom:13.320000px;}
.y11a{bottom:13.365000px;}
.y113{bottom:13.680000px;}
.y115{bottom:13.710000px;}
.y138{bottom:13.725000px;}
.y135{bottom:21.960000px;}
.y11c{bottom:27.720000px;}
.y139{bottom:27.765000px;}
.y143{bottom:32.400000px;}
.y11{bottom:40.680000px;}
.y10e{bottom:41.760000px;}
.y12f{bottom:42.120000px;}
.y137{bottom:42.165000px;}
.y111{bottom:46.440000px;}
.y142{bottom:51.120000px;}
.y10a{bottom:55.800000px;}
.y10d{bottom:60.480000px;}
.y144{bottom:60.840000px;}
.y110{bottom:65.160000px;}
.y131{bottom:65.520000px;}
.y141{bottom:69.840000px;}
.y10{bottom:70.920000px;}
.y109{bottom:74.880000px;}
.y12e{bottom:75.240000px;}
.y10c{bottom:79.560000px;}
.y130{bottom:84.240000px;}
.y10f{bottom:84.285000px;}
.yf{bottom:91.116000px;}
.y10b{bottom:98.325000px;}
.y108{bottom:98.685000px;}
.yd{bottom:117.756000px;}
.yb{bottom:144.036000px;}
.y151{bottom:158.790000px;}
.ye4{bottom:159.510000px;}
.yad{bottom:160.950000px;}
.y12b{bottom:169.950000px;}
.y173{bottom:172.470000px;}
.yc3{bottom:173.550000px;}
.y31{bottom:176.070000px;}
.y105{bottom:177.510000px;}
.y150{bottom:180.390000px;}
.ye3{bottom:181.110000px;}
.yac{bottom:182.550000px;}
.y5d{bottom:184.350000px;}
.y85{bottom:186.510000px;}
.y172{bottom:191.190000px;}
.yc2{bottom:195.510000px;}
.y104{bottom:199.155000px;}
.y12a{bottom:200.595000px;}
.y14f{bottom:202.395000px;}
.ye2{bottom:203.115000px;}
.y30{bottom:204.555000px;}
.y84{bottom:208.155000px;}
.yab{bottom:213.555000px;}
.y171{bottom:213.915000px;}
.y5c{bottom:215.355000px;}
.yc1{bottom:217.155000px;}
.y103{bottom:221.115000px;}
.y14e{bottom:224.355000px;}
.y83{bottom:230.115000px;}
.y129{bottom:231.555000px;}
.y2f{bottom:232.995000px;}
.ye1{bottom:234.075000px;}
.yaa{bottom:235.155000px;}
.y5b{bottom:237.315000px;}
.yc0{bottom:239.115000px;}
.y102{bottom:243.075000px;}
.y14d{bottom:245.955000px;}
.y170{bottom:252.075000px;}
.y128{bottom:253.155000px;}
.ye0{bottom:255.675000px;}
.yf2{bottom:257.115000px;}
.y82{bottom:261.075000px;}
.y2e{bottom:261.435000px;}
.y101{bottom:264.675000px;}
.ya9{bottom:266.115000px;}
.y5a{bottom:267.915000px;}
.ybf{bottom:270.075000px;}
.y16f{bottom:274.755000px;}
.y127{bottom:275.115000px;}
.yf1{bottom:279.075000px;}
.y81{bottom:282.675000px;}
.y2d{bottom:283.395000px;}
.ydf{bottom:286.635000px;}
.ya8{bottom:288.075000px;}
.y14c{bottom:289.515000px;}
.y59{bottom:289.875000px;}
.y16e{bottom:293.835000px;}
.y126{bottom:297.075000px;}
.ybe{bottom:300.675000px;}
.y80{bottom:304.635000px;}
.y2c{bottom:304.995000px;}
.yde{bottom:308.235000px;}
.ya7{bottom:309.675000px;}
.y14b{bottom:311.475000px;}
.y16d{bottom:312.555000px;}
.y125{bottom:318.675000px;}
.y58{bottom:320.475000px;}
.ybd{bottom:322.635000px;}
.y2b{bottom:326.985000px;}
.y197{bottom:327.705000px;}
.ydd{bottom:330.225000px;}
.ya6{bottom:331.665000px;}
.y14a{bottom:333.465000px;}
.y7f{bottom:335.265000px;}
.y124{bottom:340.665000px;}
.y57{bottom:342.465000px;}
.ybc{bottom:344.265000px;}
.y196{bottom:346.785000px;}
.y2a{bottom:348.585000px;}
.ydc{bottom:352.185000px;}
.ya5{bottom:353.265000px;}
.y16c{bottom:354.345000px;}
.y149{bottom:355.065000px;}
.y123{bottom:362.265000px;}
.y56{bottom:364.425000px;}
.y195{bottom:365.505000px;}
.y7e{bottom:366.225000px;}
.y29{bottom:370.545000px;}
.y16b{bottom:373.425000px;}
.ydb{bottom:373.785000px;}
.ya4{bottom:375.225000px;}
.y148{bottom:377.025000px;}
.y122{bottom:384.225000px;}
.y7d{bottom:388.185000px;}
.y28{bottom:392.505000px;}
.y55{bottom:395.025000px;}
.y100{bottom:395.745000px;}
.y16a{bottom:396.105000px;}
.ya3{bottom:397.185000px;}
.y147{bottom:398.985000px;}
.yda{bottom:404.745000px;}
.ybb{bottom:406.185000px;}
.y194{bottom:407.265000px;}
.y7c{bottom:409.785000px;}
.y27{bottom:414.105000px;}
.y169{bottom:415.185000px;}
.y54{bottom:416.985000px;}
.yff{bottom:417.705000px;}
.ya2{bottom:418.785000px;}
.y193{bottom:426.345000px;}
.yd9{bottom:426.705000px;}
.yba{bottom:427.785000px;}
.y146{bottom:429.585000px;}
.y7b{bottom:431.745000px;}
.y168{bottom:433.905000px;}
.y26{bottom:436.065000px;}
.y53{bottom:438.585000px;}
.yfe{bottom:439.305000px;}
.ya1{bottom:440.745000px;}
.y192{bottom:449.025000px;}
.y121{bottom:449.790000px;}
.y7a{bottom:453.750000px;}
.y167{bottom:456.630000px;}
.yd8{bottom:457.350000px;}
.y25{bottom:458.070000px;}
.yb9{bottom:458.790000px;}
.y52{bottom:460.590000px;}
.yfd{bottom:461.310000px;}
.ya0{bottom:462.750000px;}
.y191{bottom:468.150000px;}
.y120{bottom:471.390000px;}
.y79{bottom:475.350000px;}
.y166{bottom:475.710000px;}
.yd7{bottom:479.310000px;}
.y24{bottom:479.670000px;}
.y145{bottom:480.030000px;}
.yb8{bottom:480.750000px;}
.y51{bottom:482.550000px;}
.yfc{bottom:482.910000px;}
.yf0{bottom:484.350000px;}
.y190{bottom:490.470000px;}
.y9f{bottom:493.350000px;}
.y78{bottom:497.310000px;}
.y140{bottom:497.670000px;}
.y165{bottom:498.390000px;}
.yd6{bottom:500.910000px;}
.y23{bottom:501.630000px;}
.yb7{bottom:502.350000px;}
.y50{bottom:504.150000px;}
.yfb{bottom:504.870000px;}
.yef{bottom:506.310000px;}
.y18f{bottom:509.550000px;}
.y9e{bottom:515.310000px;}
.y164{bottom:517.470000px;}
.y77{bottom:518.910000px;}
.yd5{bottom:522.870000px;}
.y22{bottom:523.230000px;}
.yb6{bottom:524.310000px;}
.yfa{bottom:526.830000px;}
.y18e{bottom:532.230000px;}
.y4f{bottom:535.110000px;}
.y163{bottom:536.550000px;}
.y9d{bottom:536.910000px;}
.y76{bottom:540.870000px;}
.yd4{bottom:544.830000px;}
.y21{bottom:545.190000px;}
.yb5{bottom:545.910000px;}
.y18d{bottom:551.310000px;}
.y4e{bottom:556.710000px;}
.yf9{bottom:557.430000px;}
.y9c{bottom:558.870000px;}
.y162{bottom:559.230000px;}
.y75{bottom:562.830000px;}
.y20{bottom:567.150000px;}
.yb4{bottom:567.870000px;}
.y18c{bottom:573.990000px;}
.yd3{bottom:575.460000px;}
.y161{bottom:578.340000px;}
.y4d{bottom:578.700000px;}
.yee{bottom:580.860000px;}
.y13f{bottom:583.740000px;}
.y74{bottom:584.460000px;}
.yf8{bottom:588.420000px;}
.y9b{bottom:589.860000px;}
.y1f{bottom:590.220000px;}
.y18b{bottom:593.100000px;}
.yd2{bottom:597.420000px;}
.y4c{bottom:600.660000px;}
.yed{bottom:602.460000px;}
.y1e{bottom:607.860000px;}
.y9a{bottom:611.460000px;}
.y73{bottom:615.420000px;}
.y18a{bottom:615.780000px;}
.yd1{bottom:619.020000px;}
.y160{bottom:619.740000px;}
.y4b{bottom:622.260000px;}
.yec{bottom:624.420000px;}
.y1d{bottom:627.300000px;}
.y99{bottom:633.420000px;}
.y189{bottom:634.860000px;}
.y72{bottom:637.020000px;}
.y15f{bottom:638.820000px;}
.yf7{bottom:640.980000px;}
.y13e{bottom:641.340000px;}
.y1c{bottom:648.900000px;}
.yd0{bottom:649.980000px;}
.y4a{bottom:653.220000px;}
.y188{bottom:653.940000px;}
.y98{bottom:655.020000px;}
.y71{bottom:658.980000px;}
.y15e{bottom:661.500000px;}
.yb3{bottom:664.020000px;}
.y1b{bottom:670.860000px;}
.ycf{bottom:671.940000px;}
.y49{bottom:675.180000px;}
.y187{bottom:676.260000px;}
.yeb{bottom:676.980000px;}
.y15d{bottom:680.580000px;}
.y70{bottom:680.940000px;}
.y97{bottom:685.980000px;}
.y1a{bottom:692.820000px;}
.yce{bottom:693.540000px;}
.y48{bottom:696.780000px;}
.yea{bottom:698.940000px;}
.y186{bottom:699.300000px;}
.y6f{bottom:702.570000px;}
.y15c{bottom:703.290000px;}
.y11f{bottom:705.450000px;}
.y96{bottom:707.970000px;}
.y19{bottom:714.450000px;}
.yf6{bottom:715.530000px;}
.y185{bottom:718.410000px;}
.y47{bottom:718.770000px;}
.ye9{bottom:720.570000px;}
.y15b{bottom:722.370000px;}
.ycd{bottom:724.530000px;}
.y11e{bottom:726.330000px;}
.y13d{bottom:728.850000px;}
.y95{bottom:729.570000px;}
.y6e{bottom:733.530000px;}
.y13c{bottom:735.690000px;}
.y18{bottom:736.410000px;}
.yb2{bottom:738.570000px;}
.y46{bottom:740.370000px;}
.y184{bottom:740.730000px;}
.y15a{bottom:741.450000px;}
.ye8{bottom:742.530000px;}
.ycc{bottom:746.130000px;}
.y11d{bottom:746.850000px;}
.y94{bottom:751.530000px;}
.y17{bottom:758.010000px;}
.yb1{bottom:760.530000px;}
.y45{bottom:762.330000px;}
.y183{bottom:763.410000px;}
.y159{bottom:763.770000px;}
.y6d{bottom:764.130000px;}
.y11b{bottom:764.490000px;}
.y13b{bottom:764.850000px;}
.y93{bottom:773.130000px;}
.ycb{bottom:777.090000px;}
.y16{bottom:779.970000px;}
.yb0{bottom:782.130000px;}
.y182{bottom:782.490000px;}
.y6c{bottom:786.090000px;}
.y158{bottom:786.450000px;}
.y44{bottom:793.290000px;}
.y13a{bottom:794.010000px;}
.ye7{bottom:795.090000px;}
.yf5{bottom:799.050000px;}
.y181{bottom:801.570000px;}
.y15{bottom:801.930000px;}
.y92{bottom:804.090000px;}
.y157{bottom:805.530000px;}
.yca{bottom:808.050000px;}
.y43{bottom:814.890000px;}
.y6b{bottom:817.050000px;}
.yf4{bottom:820.650000px;}
.y119{bottom:822.090000px;}
.y136{bottom:823.170000px;}
.y180{bottom:824.250000px;}
.y156{bottom:824.610000px;}
.y91{bottom:826.050000px;}
.y14{bottom:828.975000px;}
.yc9{bottom:829.695000px;}
.y42{bottom:836.895000px;}
.y6a{bottom:838.695000px;}
.yf3{bottom:842.655000px;}
.y17f{bottom:843.375000px;}
.y155{bottom:847.335000px;}
.y90{bottom:847.695000px;}
.y118{bottom:851.295000px;}
.yc8{bottom:851.655000px;}
.y41{bottom:858.495000px;}
.y69{bottom:860.655000px;}
.y17e{bottom:866.055000px;}
.y154{bottom:866.415000px;}
.y13{bottom:868.575000px;}
.y8f{bottom:869.655000px;}
.yc7{bottom:873.615000px;}
.y40{bottom:880.455000px;}
.y134{bottom:880.815000px;}
.y68{bottom:882.615000px;}
.y17d{bottom:885.135000px;}
.y153{bottom:885.495000px;}
.y8e{bottom:891.615000px;}
.y67{bottom:904.215000px;}
.y12{bottom:908.175000px;}
.y116{bottom:909.615000px;}
.y3f{bottom:911.415000px;}
.y8d{bottom:913.215000px;}
.yc6{bottom:926.175000px;}
.y133{bottom:926.535000px;}
.y3e{bottom:933.015000px;}
.y66{bottom:935.175000px;}
.y114{bottom:938.775000px;}
.y8c{bottom:944.175000px;}
.y17c{bottom:945.615000px;}
.yc5{bottom:947.775000px;}
.ya{bottom:950.655000px;}
.y3d{bottom:955.005000px;}
.y132{bottom:956.085000px;}
.y65{bottom:956.805000px;}
.y17b{bottom:964.725000px;}
.y8b{bottom:965.805000px;}
.y112{bottom:967.965000px;}
.ye6{bottom:969.765000px;}
.y152{bottom:974.805000px;}
.y3c{bottom:976.605000px;}
.y64{bottom:978.765000px;}
.y9{bottom:980.925000px;}
.y12d{bottom:984.885000px;}
.y17a{bottom:987.405000px;}
.y8a{bottom:987.765000px;}
.yaf{bottom:996.765000px;}
.y107{bottom:997.125000px;}
.y3b{bottom:998.565000px;}
.y63{bottom:1000.725000px;}
.y8{bottom:1001.085000px;}
.y179{bottom:1006.485000px;}
.y89{bottom:1009.725000px;}
.yae{bottom:1018.725000px;}
.y7{bottom:1021.245000px;}
.y62{bottom:1022.325000px;}
.y178{bottom:1025.565000px;}
.y3a{bottom:1029.525000px;}
.ye5{bottom:1031.325000px;}
.y88{bottom:1040.325000px;}
.y61{bottom:1044.285000px;}
.y177{bottom:1047.885000px;}
.y39{bottom:1051.125000px;}
.y6{bottom:1051.485000px;}
.yc4{bottom:1053.285000px;}
.y87{bottom:1062.285000px;}
.y176{bottom:1066.965000px;}
.y38{bottom:1073.085000px;}
.y60{bottom:1074.885000px;}
.y5{bottom:1075.245000px;}
.y86{bottom:1083.930000px;}
.y175{bottom:1086.090000px;}
.y37{bottom:1095.090000px;}
.y12c{bottom:1102.650000px;}
.y5f{bottom:1105.890000px;}
.y174{bottom:1108.770000px;}
.y106{bottom:1113.450000px;}
.y36{bottom:1126.410000px;}
.y5e{bottom:1127.850000px;}
.y4{bottom:1129.290000px;}
.y3{bottom:1146.930000px;}
.y35{bottom:1157.730000px;}
.y2{bottom:1168.530000px;}
.y33{bottom:1173.570000px;}
.y1{bottom:1190.490000px;}
.y32{bottom:1193.730000px;}
.h6{height:7.920000px;}
.he{height:8.640000px;}
.h8{height:15.480000px;}
.h1c{height:21.479766px;}
.h16{height:28.080000px;}
.h14{height:28.440000px;}
.h15{height:28.476000px;}
.h19{height:28.836000px;}
.h12{height:31.587891px;}
.hc{height:39.623906px;}
.h4{height:41.547656px;}
.h1a{height:45.000000px;}
.ha{height:47.965781px;}
.h7{height:48.013594px;}
.h10{height:52.417969px;}
.h3{height:52.686563px;}
.h18{height:53.067656px;}
.hf{height:54.426094px;}
.h17{height:56.520000px;}
.h1d{height:56.880000px;}
.h1b{height:56.916000px;}
.hb{height:58.121719px;}
.h2{height:59.871094px;}
.h11{height:63.175781px;}
.h5{height:65.884219px;}
.hd{height:67.824844px;}
.h1e{height:85.356000px;}
.h9{height:86.546953px;}
.h13{height:113.796000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:118.836000px;}
.wb{width:158.835000px;}
.w9{width:188.715000px;}
.w8{width:190.515000px;}
.wc{width:201.315000px;}
.wa{width:318.030000px;}
.w7{width:328.830000px;}
.w4{width:338.910000px;}
.w3{width:341.790000px;}
.w5{width:618.735000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x16{left:5.400000px;}
.x4{left:8.640000px;}
.x1c{left:61.590000px;}
.x18{left:76.350000px;}
.x10{left:77.796000px;}
.x19{left:82.110000px;}
.x12{left:100.475987px;}
.x1{left:106.235987px;}
.x8{left:115.235987px;}
.x14{left:116.675987px;}
.x15{left:118.476000px;}
.x13{left:127.835987px;}
.x1d{left:133.271987px;}
.x7{left:158.834987px;}
.xc{left:186.554987px;}
.xf{left:194.834987px;}
.x2{left:228.344987px;}
.xd{left:250.664987px;}
.x6{left:303.270000px;}
.xa{left:339.989987px;}
.xb{left:374.549987px;}
.x9{left:416.339987px;}
.xe{left:430.739987px;}
.x1a{left:437.220000px;}
.x3{left:446.579987px;}
.x5{left:448.020000px;}
.x1b{left:596.775000px;}
.x17{left:639.255000px;}
.x11{left:696.525000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-1.824000pt;}
.ls5{letter-spacing:-1.685333pt;}
.ls14{letter-spacing:-1.280000pt;}
.ls18{letter-spacing:-1.146667pt;}
.ls15{letter-spacing:-1.008000pt;}
.ls9{letter-spacing:-0.544000pt;}
.ls2{letter-spacing:-0.312533pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.271467pt;}
.ls3{letter-spacing:0.307200pt;}
.ls0{letter-spacing:0.476160pt;}
.lsc{letter-spacing:0.544000pt;}
.ls4{letter-spacing:0.629333pt;}
.ls8{letter-spacing:0.768000pt;}
.lsa{letter-spacing:3.200000pt;}
.ls17{letter-spacing:6.799360pt;}
.ls11{letter-spacing:7.040000pt;}
.lsf{letter-spacing:10.880000pt;}
.lsb{letter-spacing:13.440000pt;}
.lsd{letter-spacing:14.720000pt;}
.ls19{letter-spacing:22.446080pt;}
.ls6{letter-spacing:29.568000pt;}
.ls16{letter-spacing:36.239360pt;}
.ls10{letter-spacing:45.440000pt;}
.ls12{letter-spacing:49.280000pt;}
.ws3{word-spacing:-26.560000pt;}
.ws6{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.744000pt;}
.ws8{word-spacing:-15.264000pt;}
.ws7{word-spacing:-14.991467pt;}
.ws4{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.643200pt;}
.ws1{word-spacing:-14.330667pt;}
.ws9{word-spacing:-14.176000pt;}
.wsd{word-spacing:-13.712000pt;}
.wse{word-spacing:-13.573333pt;}
.wsc{word-spacing:-13.440000pt;}
.wsa{word-spacing:-12.896000pt;}
.wsf{word-spacing:-12.160000pt;}
.ws2{word-spacing:-11.621973pt;}
.ws5{word-spacing:0.000000pt;}
._22{margin-left:-12.148907pt;}
._2a{margin-left:-8.363947pt;}
._c{margin-left:-4.653227pt;}
._b{margin-left:-3.384320pt;}
._2{margin-left:-2.425173pt;}
._1{margin-left:-1.408000pt;}
._0{width:1.024000pt;}
._5{width:2.444800pt;}
._8{width:3.379200pt;}
._d{width:4.382293pt;}
._6{width:5.299200pt;}
._7{width:6.348800pt;}
._10{width:7.595520pt;}
._11{width:8.998400pt;}
._12{width:10.138453pt;}
._13{width:11.540480pt;}
._14{width:12.595200pt;}
._15{width:13.708800pt;}
._16{width:16.072533pt;}
._9{width:17.136640pt;}
._a{width:18.156373pt;}
._1a{width:19.077973pt;}
._19{width:20.299947pt;}
._1d{width:21.294080pt;}
._18{width:22.187520pt;}
._1c{width:24.376320pt;}
._2d{width:25.346133pt;}
._1b{width:26.243413pt;}
._2c{width:35.143253pt;}
._2b{width:42.684160pt;}
._28{width:44.749227pt;}
._27{width:45.823147pt;}
._26{width:46.876587pt;}
._25{width:48.252160pt;}
._17{width:52.618667pt;}
._29{width:55.007147pt;}
._20{width:143.650987pt;}
._21{width:145.688320pt;}
._1e{width:147.490987pt;}
._1f{width:150.808320pt;}
._23{width:166.690987pt;}
._24{width:168.728320pt;}
._f{width:351.407360pt;}
._3{width:523.173120pt;}
._4{width:979.098453pt;}
._e{width:1963.546027pt;}
.fs7{font-size:21.760000pt;}
.fs5{font-size:32.000000pt;}
.fs2{font-size:48.640000pt;}
.fs6{font-size:53.760000pt;}
.fs1{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:106.240000pt;}
.yc{bottom:-4.160000pt;}
.y34{bottom:-3.840000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:2.560000pt;}
.y117{bottom:11.840000pt;}
.y11a{bottom:11.880000pt;}
.y113{bottom:12.160000pt;}
.y115{bottom:12.186667pt;}
.y138{bottom:12.200000pt;}
.y135{bottom:19.520000pt;}
.y11c{bottom:24.640000pt;}
.y139{bottom:24.680000pt;}
.y143{bottom:28.800000pt;}
.y11{bottom:36.160000pt;}
.y10e{bottom:37.120000pt;}
.y12f{bottom:37.440000pt;}
.y137{bottom:37.480000pt;}
.y111{bottom:41.280000pt;}
.y142{bottom:45.440000pt;}
.y10a{bottom:49.600000pt;}
.y10d{bottom:53.760000pt;}
.y144{bottom:54.080000pt;}
.y110{bottom:57.920000pt;}
.y131{bottom:58.240000pt;}
.y141{bottom:62.080000pt;}
.y10{bottom:63.040000pt;}
.y109{bottom:66.560000pt;}
.y12e{bottom:66.880000pt;}
.y10c{bottom:70.720000pt;}
.y130{bottom:74.880000pt;}
.y10f{bottom:74.920000pt;}
.yf{bottom:80.992000pt;}
.y10b{bottom:87.400000pt;}
.y108{bottom:87.720000pt;}
.yd{bottom:104.672000pt;}
.yb{bottom:128.032000pt;}
.y151{bottom:141.146667pt;}
.ye4{bottom:141.786667pt;}
.yad{bottom:143.066667pt;}
.y12b{bottom:151.066667pt;}
.y173{bottom:153.306667pt;}
.yc3{bottom:154.266667pt;}
.y31{bottom:156.506667pt;}
.y105{bottom:157.786667pt;}
.y150{bottom:160.346667pt;}
.ye3{bottom:160.986667pt;}
.yac{bottom:162.266667pt;}
.y5d{bottom:163.866667pt;}
.y85{bottom:165.786667pt;}
.y172{bottom:169.946667pt;}
.yc2{bottom:173.786667pt;}
.y104{bottom:177.026667pt;}
.y12a{bottom:178.306667pt;}
.y14f{bottom:179.906667pt;}
.ye2{bottom:180.546667pt;}
.y30{bottom:181.826667pt;}
.y84{bottom:185.026667pt;}
.yab{bottom:189.826667pt;}
.y171{bottom:190.146667pt;}
.y5c{bottom:191.426667pt;}
.yc1{bottom:193.026667pt;}
.y103{bottom:196.546667pt;}
.y14e{bottom:199.426667pt;}
.y83{bottom:204.546667pt;}
.y129{bottom:205.826667pt;}
.y2f{bottom:207.106667pt;}
.ye1{bottom:208.066667pt;}
.yaa{bottom:209.026667pt;}
.y5b{bottom:210.946667pt;}
.yc0{bottom:212.546667pt;}
.y102{bottom:216.066667pt;}
.y14d{bottom:218.626667pt;}
.y170{bottom:224.066667pt;}
.y128{bottom:225.026667pt;}
.ye0{bottom:227.266667pt;}
.yf2{bottom:228.546667pt;}
.y82{bottom:232.066667pt;}
.y2e{bottom:232.386667pt;}
.y101{bottom:235.266667pt;}
.ya9{bottom:236.546667pt;}
.y5a{bottom:238.146667pt;}
.ybf{bottom:240.066667pt;}
.y16f{bottom:244.226667pt;}
.y127{bottom:244.546667pt;}
.yf1{bottom:248.066667pt;}
.y81{bottom:251.266667pt;}
.y2d{bottom:251.906667pt;}
.ydf{bottom:254.786667pt;}
.ya8{bottom:256.066667pt;}
.y14c{bottom:257.346667pt;}
.y59{bottom:257.666667pt;}
.y16e{bottom:261.186667pt;}
.y126{bottom:264.066667pt;}
.ybe{bottom:267.266667pt;}
.y80{bottom:270.786667pt;}
.y2c{bottom:271.106667pt;}
.yde{bottom:273.986667pt;}
.ya7{bottom:275.266667pt;}
.y14b{bottom:276.866667pt;}
.y16d{bottom:277.826667pt;}
.y125{bottom:283.266667pt;}
.y58{bottom:284.866667pt;}
.ybd{bottom:286.786667pt;}
.y2b{bottom:290.653333pt;}
.y197{bottom:291.293333pt;}
.ydd{bottom:293.533333pt;}
.ya6{bottom:294.813333pt;}
.y14a{bottom:296.413333pt;}
.y7f{bottom:298.013333pt;}
.y124{bottom:302.813333pt;}
.y57{bottom:304.413333pt;}
.ybc{bottom:306.013333pt;}
.y196{bottom:308.253333pt;}
.y2a{bottom:309.853333pt;}
.ydc{bottom:313.053333pt;}
.ya5{bottom:314.013333pt;}
.y16c{bottom:314.973333pt;}
.y149{bottom:315.613333pt;}
.y123{bottom:322.013333pt;}
.y56{bottom:323.933333pt;}
.y195{bottom:324.893333pt;}
.y7e{bottom:325.533333pt;}
.y29{bottom:329.373333pt;}
.y16b{bottom:331.933333pt;}
.ydb{bottom:332.253333pt;}
.ya4{bottom:333.533333pt;}
.y148{bottom:335.133333pt;}
.y122{bottom:341.533333pt;}
.y7d{bottom:345.053333pt;}
.y28{bottom:348.893333pt;}
.y55{bottom:351.133333pt;}
.y100{bottom:351.773333pt;}
.y16a{bottom:352.093333pt;}
.ya3{bottom:353.053333pt;}
.y147{bottom:354.653333pt;}
.yda{bottom:359.773333pt;}
.ybb{bottom:361.053333pt;}
.y194{bottom:362.013333pt;}
.y7c{bottom:364.253333pt;}
.y27{bottom:368.093333pt;}
.y169{bottom:369.053333pt;}
.y54{bottom:370.653333pt;}
.yff{bottom:371.293333pt;}
.ya2{bottom:372.253333pt;}
.y193{bottom:378.973333pt;}
.yd9{bottom:379.293333pt;}
.yba{bottom:380.253333pt;}
.y146{bottom:381.853333pt;}
.y7b{bottom:383.773333pt;}
.y168{bottom:385.693333pt;}
.y26{bottom:387.613333pt;}
.y53{bottom:389.853333pt;}
.yfe{bottom:390.493333pt;}
.ya1{bottom:391.773333pt;}
.y192{bottom:399.133333pt;}
.y121{bottom:399.813333pt;}
.y7a{bottom:403.333333pt;}
.y167{bottom:405.893333pt;}
.yd8{bottom:406.533333pt;}
.y25{bottom:407.173333pt;}
.yb9{bottom:407.813333pt;}
.y52{bottom:409.413333pt;}
.yfd{bottom:410.053333pt;}
.ya0{bottom:411.333333pt;}
.y191{bottom:416.133333pt;}
.y120{bottom:419.013333pt;}
.y79{bottom:422.533333pt;}
.y166{bottom:422.853333pt;}
.yd7{bottom:426.053333pt;}
.y24{bottom:426.373333pt;}
.y145{bottom:426.693333pt;}
.yb8{bottom:427.333333pt;}
.y51{bottom:428.933333pt;}
.yfc{bottom:429.253333pt;}
.yf0{bottom:430.533333pt;}
.y190{bottom:435.973333pt;}
.y9f{bottom:438.533333pt;}
.y78{bottom:442.053333pt;}
.y140{bottom:442.373333pt;}
.y165{bottom:443.013333pt;}
.yd6{bottom:445.253333pt;}
.y23{bottom:445.893333pt;}
.yb7{bottom:446.533333pt;}
.y50{bottom:448.133333pt;}
.yfb{bottom:448.773333pt;}
.yef{bottom:450.053333pt;}
.y18f{bottom:452.933333pt;}
.y9e{bottom:458.053333pt;}
.y164{bottom:459.973333pt;}
.y77{bottom:461.253333pt;}
.yd5{bottom:464.773333pt;}
.y22{bottom:465.093333pt;}
.yb6{bottom:466.053333pt;}
.yfa{bottom:468.293333pt;}
.y18e{bottom:473.093333pt;}
.y4f{bottom:475.653333pt;}
.y163{bottom:476.933333pt;}
.y9d{bottom:477.253333pt;}
.y76{bottom:480.773333pt;}
.yd4{bottom:484.293333pt;}
.y21{bottom:484.613333pt;}
.yb5{bottom:485.253333pt;}
.y18d{bottom:490.053333pt;}
.y4e{bottom:494.853333pt;}
.yf9{bottom:495.493333pt;}
.y9c{bottom:496.773333pt;}
.y162{bottom:497.093333pt;}
.y75{bottom:500.293333pt;}
.y20{bottom:504.133333pt;}
.yb4{bottom:504.773333pt;}
.y18c{bottom:510.213333pt;}
.yd3{bottom:511.520000pt;}
.y161{bottom:514.080000pt;}
.y4d{bottom:514.400000pt;}
.yee{bottom:516.320000pt;}
.y13f{bottom:518.880000pt;}
.y74{bottom:519.520000pt;}
.yf8{bottom:523.040000pt;}
.y9b{bottom:524.320000pt;}
.y1f{bottom:524.640000pt;}
.y18b{bottom:527.200000pt;}
.yd2{bottom:531.040000pt;}
.y4c{bottom:533.920000pt;}
.yed{bottom:535.520000pt;}
.y1e{bottom:540.320000pt;}
.y9a{bottom:543.520000pt;}
.y73{bottom:547.040000pt;}
.y18a{bottom:547.360000pt;}
.yd1{bottom:550.240000pt;}
.y160{bottom:550.880000pt;}
.y4b{bottom:553.120000pt;}
.yec{bottom:555.040000pt;}
.y1d{bottom:557.600000pt;}
.y99{bottom:563.040000pt;}
.y189{bottom:564.320000pt;}
.y72{bottom:566.240000pt;}
.y15f{bottom:567.840000pt;}
.yf7{bottom:569.760000pt;}
.y13e{bottom:570.080000pt;}
.y1c{bottom:576.800000pt;}
.yd0{bottom:577.760000pt;}
.y4a{bottom:580.640000pt;}
.y188{bottom:581.280000pt;}
.y98{bottom:582.240000pt;}
.y71{bottom:585.760000pt;}
.y15e{bottom:588.000000pt;}
.yb3{bottom:590.240000pt;}
.y1b{bottom:596.320000pt;}
.ycf{bottom:597.280000pt;}
.y49{bottom:600.160000pt;}
.y187{bottom:601.120000pt;}
.yeb{bottom:601.760000pt;}
.y15d{bottom:604.960000pt;}
.y70{bottom:605.280000pt;}
.y97{bottom:609.760000pt;}
.y1a{bottom:615.840000pt;}
.yce{bottom:616.480000pt;}
.y48{bottom:619.360000pt;}
.yea{bottom:621.280000pt;}
.y186{bottom:621.600000pt;}
.y6f{bottom:624.506667pt;}
.y15c{bottom:625.146667pt;}
.y11f{bottom:627.066667pt;}
.y96{bottom:629.306667pt;}
.y19{bottom:635.066667pt;}
.yf6{bottom:636.026667pt;}
.y185{bottom:638.586667pt;}
.y47{bottom:638.906667pt;}
.ye9{bottom:640.506667pt;}
.y15b{bottom:642.106667pt;}
.ycd{bottom:644.026667pt;}
.y11e{bottom:645.626667pt;}
.y13d{bottom:647.866667pt;}
.y95{bottom:648.506667pt;}
.y6e{bottom:652.026667pt;}
.y13c{bottom:653.946667pt;}
.y18{bottom:654.586667pt;}
.yb2{bottom:656.506667pt;}
.y46{bottom:658.106667pt;}
.y184{bottom:658.426667pt;}
.y15a{bottom:659.066667pt;}
.ye8{bottom:660.026667pt;}
.ycc{bottom:663.226667pt;}
.y11d{bottom:663.866667pt;}
.y94{bottom:668.026667pt;}
.y17{bottom:673.786667pt;}
.yb1{bottom:676.026667pt;}
.y45{bottom:677.626667pt;}
.y183{bottom:678.586667pt;}
.y159{bottom:678.906667pt;}
.y6d{bottom:679.226667pt;}
.y11b{bottom:679.546667pt;}
.y13b{bottom:679.866667pt;}
.y93{bottom:687.226667pt;}
.ycb{bottom:690.746667pt;}
.y16{bottom:693.306667pt;}
.yb0{bottom:695.226667pt;}
.y182{bottom:695.546667pt;}
.y6c{bottom:698.746667pt;}
.y158{bottom:699.066667pt;}
.y44{bottom:705.146667pt;}
.y13a{bottom:705.786667pt;}
.ye7{bottom:706.746667pt;}
.yf5{bottom:710.266667pt;}
.y181{bottom:712.506667pt;}
.y15{bottom:712.826667pt;}
.y92{bottom:714.746667pt;}
.y157{bottom:716.026667pt;}
.yca{bottom:718.266667pt;}
.y43{bottom:724.346667pt;}
.y6b{bottom:726.266667pt;}
.yf4{bottom:729.466667pt;}
.y119{bottom:730.746667pt;}
.y136{bottom:731.706667pt;}
.y180{bottom:732.666667pt;}
.y156{bottom:732.986667pt;}
.y91{bottom:734.266667pt;}
.y14{bottom:736.866667pt;}
.yc9{bottom:737.506667pt;}
.y42{bottom:743.906667pt;}
.y6a{bottom:745.506667pt;}
.yf3{bottom:749.026667pt;}
.y17f{bottom:749.666667pt;}
.y155{bottom:753.186667pt;}
.y90{bottom:753.506667pt;}
.y118{bottom:756.706667pt;}
.yc8{bottom:757.026667pt;}
.y41{bottom:763.106667pt;}
.y69{bottom:765.026667pt;}
.y17e{bottom:769.826667pt;}
.y154{bottom:770.146667pt;}
.y13{bottom:772.066667pt;}
.y8f{bottom:773.026667pt;}
.yc7{bottom:776.546667pt;}
.y40{bottom:782.626667pt;}
.y134{bottom:782.946667pt;}
.y68{bottom:784.546667pt;}
.y17d{bottom:786.786667pt;}
.y153{bottom:787.106667pt;}
.y8e{bottom:792.546667pt;}
.y67{bottom:803.746667pt;}
.y12{bottom:807.266667pt;}
.y116{bottom:808.546667pt;}
.y3f{bottom:810.146667pt;}
.y8d{bottom:811.746667pt;}
.yc6{bottom:823.266667pt;}
.y133{bottom:823.586667pt;}
.y3e{bottom:829.346667pt;}
.y66{bottom:831.266667pt;}
.y114{bottom:834.466667pt;}
.y8c{bottom:839.266667pt;}
.y17c{bottom:840.546667pt;}
.yc5{bottom:842.466667pt;}
.ya{bottom:845.026667pt;}
.y3d{bottom:848.893333pt;}
.y132{bottom:849.853333pt;}
.y65{bottom:850.493333pt;}
.y17b{bottom:857.533333pt;}
.y8b{bottom:858.493333pt;}
.y112{bottom:860.413333pt;}
.ye6{bottom:862.013333pt;}
.y152{bottom:866.493333pt;}
.y3c{bottom:868.093333pt;}
.y64{bottom:870.013333pt;}
.y9{bottom:871.933333pt;}
.y12d{bottom:875.453333pt;}
.y17a{bottom:877.693333pt;}
.y8a{bottom:878.013333pt;}
.yaf{bottom:886.013333pt;}
.y107{bottom:886.333333pt;}
.y3b{bottom:887.613333pt;}
.y63{bottom:889.533333pt;}
.y8{bottom:889.853333pt;}
.y179{bottom:894.653333pt;}
.y89{bottom:897.533333pt;}
.yae{bottom:905.533333pt;}
.y7{bottom:907.773333pt;}
.y62{bottom:908.733333pt;}
.y178{bottom:911.613333pt;}
.y3a{bottom:915.133333pt;}
.ye5{bottom:916.733333pt;}
.y88{bottom:924.733333pt;}
.y61{bottom:928.253333pt;}
.y177{bottom:931.453333pt;}
.y39{bottom:934.333333pt;}
.y6{bottom:934.653333pt;}
.yc4{bottom:936.253333pt;}
.y87{bottom:944.253333pt;}
.y176{bottom:948.413333pt;}
.y38{bottom:953.853333pt;}
.y60{bottom:955.453333pt;}
.y5{bottom:955.773333pt;}
.y86{bottom:963.493333pt;}
.y175{bottom:965.413333pt;}
.y37{bottom:973.413333pt;}
.y12c{bottom:980.133333pt;}
.y5f{bottom:983.013333pt;}
.y174{bottom:985.573333pt;}
.y106{bottom:989.733333pt;}
.y36{bottom:1001.253333pt;}
.y5e{bottom:1002.533333pt;}
.y4{bottom:1003.813333pt;}
.y3{bottom:1019.493333pt;}
.y35{bottom:1029.093333pt;}
.y2{bottom:1038.693333pt;}
.y33{bottom:1043.173333pt;}
.y1{bottom:1058.213333pt;}
.y32{bottom:1061.093333pt;}
.h6{height:7.040000pt;}
.he{height:7.680000pt;}
.h8{height:13.760000pt;}
.h1c{height:19.093125pt;}
.h16{height:24.960000pt;}
.h14{height:25.280000pt;}
.h15{height:25.312000pt;}
.h19{height:25.632000pt;}
.h12{height:28.078125pt;}
.hc{height:35.221250pt;}
.h4{height:36.931250pt;}
.h1a{height:40.000000pt;}
.ha{height:42.636250pt;}
.h7{height:42.678750pt;}
.h10{height:46.593750pt;}
.h3{height:46.832500pt;}
.h18{height:47.171250pt;}
.hf{height:48.378750pt;}
.h17{height:50.240000pt;}
.h1d{height:50.560000pt;}
.h1b{height:50.592000pt;}
.hb{height:51.663750pt;}
.h2{height:53.218750pt;}
.h11{height:56.156250pt;}
.h5{height:58.563750pt;}
.hd{height:60.288750pt;}
.h1e{height:75.872000pt;}
.h9{height:76.930625pt;}
.h13{height:101.152000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:105.632000pt;}
.wb{width:141.186667pt;}
.w9{width:167.746667pt;}
.w8{width:169.346667pt;}
.wc{width:178.946667pt;}
.wa{width:282.693333pt;}
.w7{width:292.293333pt;}
.w4{width:301.253333pt;}
.w3{width:303.813333pt;}
.w5{width:549.986667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x16{left:4.800000pt;}
.x4{left:7.680000pt;}
.x1c{left:54.746667pt;}
.x18{left:67.866667pt;}
.x10{left:69.152000pt;}
.x19{left:72.986667pt;}
.x12{left:89.311988pt;}
.x1{left:94.431988pt;}
.x8{left:102.431988pt;}
.x14{left:103.711988pt;}
.x15{left:105.312000pt;}
.x13{left:113.631988pt;}
.x1d{left:118.463988pt;}
.x7{left:141.186655pt;}
.xc{left:165.826655pt;}
.xf{left:173.186655pt;}
.x2{left:202.973322pt;}
.xd{left:222.813322pt;}
.x6{left:269.573333pt;}
.xa{left:302.213322pt;}
.xb{left:332.933322pt;}
.x9{left:370.079988pt;}
.xe{left:382.879988pt;}
.x1a{left:388.640000pt;}
.x3{left:396.959988pt;}
.x5{left:398.240000pt;}
.x1b{left:530.466667pt;}
.x17{left:568.226667pt;}
.x11{left:619.133333pt;}
}




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