
    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_9dfcd925500ee12631e33084.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_17c9ffbb0583c59d26d8f28f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.149414;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_4803f87d4a3c9403dc8822a4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.050293;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_0aa4e4fa2c9d8a4d6877585e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.090820;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_6fc011729768cd7da585f750.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.090820;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_cf937bcec8b7f4367a2e1a13.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.050293;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_1565c5d1d20b41cb6410abd1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_63e31b6bf599e87080f57a38.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1b{letter-spacing:-0.720000px;}
.ls2{letter-spacing:-0.216000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.504000px;}
.ls4{letter-spacing:0.720000px;}
.lsb{letter-spacing:2.160000px;}
.lsc{letter-spacing:2.880000px;}
.ls5{letter-spacing:4.320000px;}
.ls1a{letter-spacing:5.760000px;}
.ls19{letter-spacing:7.380000px;}
.ls11{letter-spacing:7.920000px;}
.ls12{letter-spacing:8.640000px;}
.lsf{letter-spacing:10.080000px;}
.ls0{letter-spacing:12.240000px;}
.ls9{letter-spacing:13.680000px;}
.ls15{letter-spacing:20.880000px;}
.lse{letter-spacing:21.720000px;}
.ls10{letter-spacing:23.040000px;}
.ls6{letter-spacing:25.200000px;}
.ls13{letter-spacing:25.920000px;}
.ls17{letter-spacing:29.520000px;}
.ls14{letter-spacing:31.680000px;}
.ls7{letter-spacing:33.960000px;}
.ls18{letter-spacing:43.200000px;}
.ls16{letter-spacing:46.080000px;}
.lsa{letter-spacing:54.840000px;}
.ls8{letter-spacing:64.002720px;}
.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;}
}
.ws6{word-spacing:-72.000000px;}
.ws5{word-spacing:-59.760000px;}
.ws3{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.784000px;}
.ws0{word-spacing:-14.970240px;}
.ws4{word-spacing:0.000000px;}
._26{margin-left:-5.268480px;}
._2{margin-left:-4.091520px;}
._1{margin-left:-2.400000px;}
._0{margin-left:-1.192320px;}
._3{width:1.336320px;}
._16{width:2.592000px;}
._13{width:4.464000px;}
._5{width:5.976000px;}
._6{width:7.303680px;}
._f{width:8.496000px;}
._10{width:9.792000px;}
._1f{width:11.016000px;}
._14{width:12.024000px;}
._a{width:13.752000px;}
._d{width:15.048000px;}
._15{width:16.848000px;}
._4{width:19.008000px;}
._1d{width:20.119680px;}
._17{width:21.528000px;}
._8{width:23.584320px;}
._9{width:24.638400px;}
._12{width:26.568000px;}
._11{width:27.576000px;}
._23{width:29.016000px;}
._b{width:30.024000px;}
._c{width:31.104000px;}
._1e{width:32.391360px;}
._1b{width:33.480000px;}
._1c{width:34.663680px;}
._25{width:36.351360px;}
._24{width:37.480320px;}
._18{width:38.664000px;}
._19{width:39.684000px;}
._20{width:41.328000px;}
._28{width:43.128000px;}
._21{width:44.352000px;}
._22{width:45.864000px;}
._27{width:46.984320px;}
._7{width:48.024000px;}
._e{width:52.344000px;}
._1a{width:53.856000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.ya{bottom:-27.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:2.340000px;}
.y2{bottom:4.680000px;}
.y9{bottom:11.700000px;}
.y11{bottom:12.600000px;}
.y3{bottom:21.420000px;}
.y1{bottom:23.760000px;}
.y6{bottom:24.840000px;}
.y8{bottom:45.900000px;}
.yf{bottom:57.420000px;}
.ye{bottom:77.580000px;}
.yd{bottom:93.420000px;}
.y14e{bottom:113.760000px;}
.y15b{bottom:117.360000px;}
.y11c{bottom:122.760000px;}
.y3d{bottom:123.660000px;}
.y17c{bottom:125.460000px;}
.y8a{bottom:126.360000px;}
.yca{bottom:131.760000px;}
.y6c{bottom:133.560000px;}
.y14d{bottom:134.460000px;}
.y15a{bottom:138.060000px;}
.y3c{bottom:144.360000px;}
.y17b{bottom:146.160000px;}
.yae{bottom:148.860000px;}
.yc9{bottom:152.460000px;}
.y6b{bottom:154.260000px;}
.y89{bottom:156.060000px;}
.yee{bottom:156.420000px;}
.y10c{bottom:158.760000px;}
.y14c{bottom:164.160000px;}
.y3b{bottom:165.060000px;}
.y17a{bottom:166.860000px;}
.yc8{bottom:173.160000px;}
.y6a{bottom:174.960000px;}
.y88{bottom:176.760000px;}
.yed{bottom:177.120000px;}
.yad{bottom:178.560000px;}
.y10b{bottom:179.460000px;}
.y14b{bottom:184.860000px;}
.y3a{bottom:185.760000px;}
.y179{bottom:187.560000px;}
.yc7{bottom:193.860000px;}
.y69{bottom:195.660000px;}
.y87{bottom:197.490000px;}
.y10a{bottom:200.190000px;}
.y11b{bottom:202.890000px;}
.y39{bottom:206.490000px;}
.yec{bottom:206.850000px;}
.yac{bottom:208.290000px;}
.y159{bottom:209.190000px;}
.yc6{bottom:214.590000px;}
.y135{bottom:215.490000px;}
.y68{bottom:216.390000px;}
.y86{bottom:227.190000px;}
.yeb{bottom:227.550000px;}
.y178{bottom:228.990000px;}
.y109{bottom:229.890000px;}
.y11a{bottom:232.590000px;}
.y14a{bottom:235.290000px;}
.y38{bottom:236.190000px;}
.y67{bottom:237.090000px;}
.yab{bottom:237.990000px;}
.y158{bottom:238.890000px;}
.yc5{bottom:244.290000px;}
.y134{bottom:245.190000px;}
.yea{bottom:248.250000px;}
.y177{bottom:249.690000px;}
.y119{bottom:253.290000px;}
.y85{bottom:256.890000px;}
.y66{bottom:257.790000px;}
.y108{bottom:259.590000px;}
.y149{bottom:264.990000px;}
.y37{bottom:265.890000px;}
.yaa{bottom:267.690000px;}
.y157{bottom:268.590000px;}
.y176{bottom:270.390000px;}
.yc4{bottom:273.990000px;}
.ye9{bottom:277.950000px;}
.y65{bottom:278.490000px;}
.y107{bottom:280.290000px;}
.y118{bottom:282.990000px;}
.y148{bottom:285.690000px;}
.y84{bottom:286.590000px;}
.y181{bottom:287.490000px;}
.y156{bottom:289.290000px;}
.y175{bottom:291.090000px;}
.yc3{bottom:294.690000px;}
.y36{bottom:295.590000px;}
.ya9{bottom:297.390000px;}
.ye8{bottom:298.650000px;}
.y64{bottom:299.190000px;}
.y117{bottom:303.690000px;}
.y133{bottom:307.290000px;}
.y106{bottom:309.990000px;}
.y174{bottom:311.790000px;}
.yc2{bottom:315.390000px;}
.y35{bottom:316.290000px;}
.y180{bottom:317.190000px;}
.y155{bottom:318.990000px;}
.ya8{bottom:327.090000px;}
.ye7{bottom:328.350000px;}
.y63{bottom:328.890000px;}
.y105{bottom:330.690000px;}
.y173{bottom:332.490000px;}
.y116{bottom:333.390000px;}
.yc1{bottom:336.090000px;}
.y34{bottom:336.990000px;}
.y154{bottom:339.690000px;}
.y83{bottom:345.990000px;}
.y17f{bottom:346.890000px;}
.ye6{bottom:349.050000px;}
.y62{bottom:349.590000px;}
.y172{bottom:353.190000px;}
.ya7{bottom:356.790000px;}
.y33{bottom:357.690000px;}
.y104{bottom:360.390000px;}
.y115{bottom:363.090000px;}
.y147{bottom:365.790000px;}
.y132{bottom:366.690000px;}
.y61{bottom:370.290000px;}
.y171{bottom:373.890000px;}
.y82{bottom:375.690000px;}
.y17e{bottom:376.590000px;}
.yc0{bottom:377.490000px;}
.y32{bottom:378.390000px;}
.ye5{bottom:378.750000px;}
.y103{bottom:381.090000px;}
.y114{bottom:383.790000px;}
.ya6{bottom:386.490000px;}
.y131{bottom:387.390000px;}
.y153{bottom:390.090000px;}
.y60{bottom:390.990000px;}
.y170{bottom:394.590000px;}
.y146{bottom:395.490000px;}
.y81{bottom:396.390000px;}
.y31{bottom:399.090000px;}
.y102{bottom:401.790000px;}
.y17d{bottom:406.290000px;}
.ya5{bottom:407.190000px;}
.y130{bottom:408.090000px;}
.ye4{bottom:408.450000px;}
.y152{bottom:410.790000px;}
.y5f{bottom:411.690000px;}
.y113{bottom:413.490000px;}
.y16f{bottom:415.290000px;}
.y30{bottom:419.790000px;}
.y145{bottom:425.190000px;}
.y80{bottom:426.090000px;}
.ya4{bottom:427.890000px;}
.y12f{bottom:428.790000px;}
.ye3{bottom:429.150000px;}
.y101{bottom:431.490000px;}
.y5e{bottom:432.390000px;}
.y16e{bottom:436.035000px;}
.ybf{bottom:436.935000px;}
.y2f{bottom:440.535000px;}
.y112{bottom:443.235000px;}
.ya3{bottom:448.635000px;}
.y100{bottom:452.235000px;}
.y5d{bottom:453.135000px;}
.y144{bottom:454.935000px;}
.y7f{bottom:455.835000px;}
.y16d{bottom:456.735000px;}
.y12e{bottom:458.535000px;}
.ye2{bottom:458.895000px;}
.y2e{bottom:461.235000px;}
.y111{bottom:463.935000px;}
.ybe{bottom:466.635000px;}
.ya2{bottom:469.335000px;}
.y5c{bottom:473.835000px;}
.y143{bottom:475.635000px;}
.y7e{bottom:476.535000px;}
.y16c{bottom:477.435000px;}
.ye1{bottom:479.595000px;}
.y2d{bottom:481.935000px;}
.ybd{bottom:487.335000px;}
.y12d{bottom:488.235000px;}
.y110{bottom:493.635000px;}
.y16b{bottom:498.135000px;}
.ya1{bottom:499.035000px;}
.y2c{bottom:502.635000px;}
.y5b{bottom:503.535000px;}
.y142{bottom:505.335000px;}
.y7d{bottom:506.235000px;}
.ybc{bottom:508.035000px;}
.y12c{bottom:508.935000px;}
.ye0{bottom:509.295000px;}
.y151{bottom:511.635000px;}
.y16a{bottom:518.835000px;}
.y2b{bottom:523.335000px;}
.y5a{bottom:524.235000px;}
.y141{bottom:526.035000px;}
.ya0{bottom:528.735000px;}
.y12b{bottom:529.635000px;}
.ydf{bottom:529.995000px;}
.y150{bottom:532.335000px;}
.y7c{bottom:535.935000px;}
.y169{bottom:539.535000px;}
.y2a{bottom:544.035000px;}
.y59{bottom:544.935000px;}
.y9f{bottom:549.435000px;}
.y12a{bottom:550.335000px;}
.yde{bottom:550.695000px;}
.yff{bottom:553.035000px;}
.y140{bottom:555.735000px;}
.y7b{bottom:556.635000px;}
.y168{bottom:560.235000px;}
.y29{bottom:564.735000px;}
.y58{bottom:565.635000px;}
.y129{bottom:571.035000px;}
.yfe{bottom:573.735000px;}
.y7a{bottom:577.335000px;}
.y9e{bottom:579.135000px;}
.ydd{bottom:580.395000px;}
.y167{bottom:580.935000px;}
.y28{bottom:585.435000px;}
.y57{bottom:586.335000px;}
.yfd{bottom:594.435000px;}
.y79{bottom:598.035000px;}
.y128{bottom:600.735000px;}
.ydc{bottom:601.095000px;}
.y166{bottom:601.635000px;}
.y14f{bottom:603.435000px;}
.y27{bottom:606.135000px;}
.y56{bottom:607.035000px;}
.y9d{bottom:608.835000px;}
.y13f{bottom:615.135000px;}
.y10{bottom:617.475000px;}
.ydb{bottom:621.795000px;}
.y165{bottom:622.335000px;}
.yfc{bottom:624.135000px;}
.y26{bottom:626.835000px;}
.y55{bottom:627.735000px;}
.ybb{bottom:629.535000px;}
.y127{bottom:630.435000px;}
.y13e{bottom:635.835000px;}
.y9c{bottom:638.535000px;}
.yda{bottom:642.495000px;}
.y164{bottom:643.035000px;}
.yfb{bottom:644.835000px;}
.y25{bottom:647.535000px;}
.y54{bottom:648.435000px;}
.yba{bottom:650.235000px;}
.y126{bottom:651.135000px;}
.y163{bottom:663.735000px;}
.y13d{bottom:665.535000px;}
.y24{bottom:668.235000px;}
.y53{bottom:669.135000px;}
.y125{bottom:671.835000px;}
.yd9{bottom:672.195000px;}
.yfa{bottom:674.565000px;}
.yb9{bottom:679.965000px;}
.y162{bottom:684.465000px;}
.y13c{bottom:686.265000px;}
.y23{bottom:688.965000px;}
.y52{bottom:689.865000px;}
.yd8{bottom:692.925000px;}
.y10f{bottom:695.265000px;}
.y9b{bottom:697.965000px;}
.y124{bottom:701.565000px;}
.yf9{bottom:704.265000px;}
.y161{bottom:705.165000px;}
.y22{bottom:709.665000px;}
.y51{bottom:710.565000px;}
.y10e{bottom:715.965000px;}
.y9a{bottom:718.665000px;}
.y123{bottom:722.265000px;}
.yd7{bottom:722.625000px;}
.yf8{bottom:724.965000px;}
.y160{bottom:725.865000px;}
.y21{bottom:730.365000px;}
.y78{bottom:731.265000px;}
.y13b{bottom:736.665000px;}
.y99{bottom:739.365000px;}
.y50{bottom:740.265000px;}
.y122{bottom:742.965000px;}
.yf7{bottom:745.665000px;}
.y15f{bottom:746.565000px;}
.y20{bottom:751.065000px;}
.y77{bottom:751.965000px;}
.yd6{bottom:752.325000px;}
.yb8{bottom:760.065000px;}
.y121{bottom:763.665000px;}
.yf6{bottom:766.365000px;}
.y15e{bottom:767.265000px;}
.y98{bottom:769.065000px;}
.y4f{bottom:769.965000px;}
.y1f{bottom:771.765000px;}
.y76{bottom:772.665000px;}
.yd5{bottom:782.025000px;}
.y120{bottom:784.365000px;}
.yf5{bottom:787.065000px;}
.y15d{bottom:787.965000px;}
.yb7{bottom:789.765000px;}
.y10d{bottom:796.065000px;}
.y97{bottom:798.765000px;}
.y4e{bottom:799.665000px;}
.y1e{bottom:801.465000px;}
.y75{bottom:802.365000px;}
.yd4{bottom:802.725000px;}
.y11f{bottom:805.065000px;}
.y15c{bottom:808.665000px;}
.yb6{bottom:810.465000px;}
.yf4{bottom:816.765000px;}
.yd3{bottom:823.425000px;}
.y96{bottom:828.465000px;}
.y4d{bottom:829.365000px;}
.y1d{bottom:831.165000px;}
.y74{bottom:832.065000px;}
.y11e{bottom:834.765000px;}
.y13a{bottom:837.465000px;}
.yb5{bottom:840.165000px;}
.yf3{bottom:846.465000px;}
.y4c{bottom:850.065000px;}
.yd2{bottom:852.945000px;}
.y11d{bottom:855.465000px;}
.y95{bottom:858.165000px;}
.y1c{bottom:860.865000px;}
.y73{bottom:861.765000px;}
.y139{bottom:867.165000px;}
.yb4{bottom:869.865000px;}
.y4b{bottom:870.765000px;}
.yf2{bottom:876.165000px;}
.y1b{bottom:881.565000px;}
.y72{bottom:882.465000px;}
.yd1{bottom:883.905000px;}
.y94{bottom:887.865000px;}
.y4a{bottom:891.465000px;}
.yf1{bottom:896.865000px;}
.yb3{bottom:899.565000px;}
.y71{bottom:903.165000px;}
.y138{bottom:908.565000px;}
.y1a{bottom:911.265000px;}
.y49{bottom:912.165000px;}
.yd0{bottom:915.090000px;}
.y93{bottom:917.610000px;}
.y70{bottom:923.910000px;}
.yb2{bottom:929.310000px;}
.y48{bottom:932.910000px;}
.ycf{bottom:935.790000px;}
.yf0{bottom:938.310000px;}
.y19{bottom:941.010000px;}
.y6f{bottom:944.610000px;}
.y92{bottom:947.310000px;}
.y47{bottom:953.610000px;}
.yb1{bottom:959.010000px;}
.y6e{bottom:965.310000px;}
.yce{bottom:966.570000px;}
.yef{bottom:968.010000px;}
.y18{bottom:970.710000px;}
.y46{bottom:974.310000px;}
.y91{bottom:977.010000px;}
.y6d{bottom:986.010000px;}
.yb0{bottom:988.710000px;}
.y17{bottom:991.410000px;}
.y45{bottom:995.010000px;}
.ycd{bottom:997.530000px;}
.y90{bottom:997.710000px;}
.y137{bottom:1009.410000px;}
.y44{bottom:1015.710000px;}
.y8f{bottom:1018.410000px;}
.y16{bottom:1021.110000px;}
.ycc{bottom:1028.670000px;}
.y136{bottom:1030.110000px;}
.y43{bottom:1036.410000px;}
.yaf{bottom:1039.110000px;}
.y15{bottom:1041.810000px;}
.y8e{bottom:1048.110000px;}
.y42{bottom:1057.110000px;}
.ycb{bottom:1059.810000px;}
.y8d{bottom:1068.810000px;}
.y14{bottom:1071.510000px;}
.y41{bottom:1077.810000px;}
.y8c{bottom:1089.510000px;}
.y40{bottom:1098.510000px;}
.y13{bottom:1101.210000px;}
.y8b{bottom:1110.210000px;}
.y3f{bottom:1119.210000px;}
.y12{bottom:1130.910000px;}
.y3e{bottom:1139.910000px;}
.yc{bottom:1193.220000px;}
.y7{bottom:1200.960000px;}
.y5{bottom:1205.280000px;}
.yb{bottom:1208.880000px;}
.h4{height:15.660000px;}
.h2{height:18.000000px;}
.h9{height:28.260000px;}
.h5{height:39.600000px;}
.h8{height:49.868086px;}
.hb{height:60.082031px;}
.h7{height:60.660000px;}
.hc{height:61.171875px;}
.ha{height:63.000000px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:84.990000px;}
.w6{width:88.236000px;}
.w2{width:165.810000px;}
.w3{width:184.530000px;}
.w4{width:189.390000px;}
.w5{width:397.515000px;}
.w7{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.440000px;}
.xb{left:10.800000px;}
.x8{left:21.780000px;}
.x6{left:39.600000px;}
.x3{left:61.380000px;}
.x9{left:106.235987px;}
.xc{left:108.755987px;}
.xd{left:123.515987px;}
.xf{left:126.935987px;}
.x14{left:133.235987px;}
.x15{left:160.229987px;}
.x5{left:208.290000px;}
.x13{left:285.734987px;}
.x10{left:330.914987px;}
.xe{left:352.514987px;}
.x12{left:362.234987px;}
.x4{left:364.575000px;}
.x11{left:446.474987px;}
.x1{left:694.950000px;}
.x7{left:767.850000px;}
.xa{left:807.990000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1b{letter-spacing:-0.640000pt;}
.ls2{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.448000pt;}
.ls4{letter-spacing:0.640000pt;}
.lsb{letter-spacing:1.920000pt;}
.lsc{letter-spacing:2.560000pt;}
.ls5{letter-spacing:3.840000pt;}
.ls1a{letter-spacing:5.120000pt;}
.ls19{letter-spacing:6.560000pt;}
.ls11{letter-spacing:7.040000pt;}
.ls12{letter-spacing:7.680000pt;}
.lsf{letter-spacing:8.960000pt;}
.ls0{letter-spacing:10.880000pt;}
.ls9{letter-spacing:12.160000pt;}
.ls15{letter-spacing:18.560000pt;}
.lse{letter-spacing:19.306667pt;}
.ls10{letter-spacing:20.480000pt;}
.ls6{letter-spacing:22.400000pt;}
.ls13{letter-spacing:23.040000pt;}
.ls17{letter-spacing:26.240000pt;}
.ls14{letter-spacing:28.160000pt;}
.ls7{letter-spacing:30.186667pt;}
.ls18{letter-spacing:38.400000pt;}
.ls16{letter-spacing:40.960000pt;}
.lsa{letter-spacing:48.746667pt;}
.ls8{letter-spacing:56.891307pt;}
.ws6{word-spacing:-64.000000pt;}
.ws5{word-spacing:-53.120000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.808000pt;}
.ws0{word-spacing:-13.306880pt;}
.ws4{word-spacing:0.000000pt;}
._26{margin-left:-4.683093pt;}
._2{margin-left:-3.636907pt;}
._1{margin-left:-2.133333pt;}
._0{margin-left:-1.059840pt;}
._3{width:1.187840pt;}
._16{width:2.304000pt;}
._13{width:3.968000pt;}
._5{width:5.312000pt;}
._6{width:6.492160pt;}
._f{width:7.552000pt;}
._10{width:8.704000pt;}
._1f{width:9.792000pt;}
._14{width:10.688000pt;}
._a{width:12.224000pt;}
._d{width:13.376000pt;}
._15{width:14.976000pt;}
._4{width:16.896000pt;}
._1d{width:17.884160pt;}
._17{width:19.136000pt;}
._8{width:20.963840pt;}
._9{width:21.900800pt;}
._12{width:23.616000pt;}
._11{width:24.512000pt;}
._23{width:25.792000pt;}
._b{width:26.688000pt;}
._c{width:27.648000pt;}
._1e{width:28.792320pt;}
._1b{width:29.760000pt;}
._1c{width:30.812160pt;}
._25{width:32.312320pt;}
._24{width:33.315840pt;}
._18{width:34.368000pt;}
._19{width:35.274667pt;}
._20{width:36.736000pt;}
._28{width:38.336000pt;}
._21{width:39.424000pt;}
._22{width:40.768000pt;}
._27{width:41.763840pt;}
._7{width:42.688000pt;}
._e{width:46.528000pt;}
._1a{width:47.872000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.ya{bottom:-24.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:2.080000pt;}
.y2{bottom:4.160000pt;}
.y9{bottom:10.400000pt;}
.y11{bottom:11.200000pt;}
.y3{bottom:19.040000pt;}
.y1{bottom:21.120000pt;}
.y6{bottom:22.080000pt;}
.y8{bottom:40.800000pt;}
.yf{bottom:51.040000pt;}
.ye{bottom:68.960000pt;}
.yd{bottom:83.040000pt;}
.y14e{bottom:101.120000pt;}
.y15b{bottom:104.320000pt;}
.y11c{bottom:109.120000pt;}
.y3d{bottom:109.920000pt;}
.y17c{bottom:111.520000pt;}
.y8a{bottom:112.320000pt;}
.yca{bottom:117.120000pt;}
.y6c{bottom:118.720000pt;}
.y14d{bottom:119.520000pt;}
.y15a{bottom:122.720000pt;}
.y3c{bottom:128.320000pt;}
.y17b{bottom:129.920000pt;}
.yae{bottom:132.320000pt;}
.yc9{bottom:135.520000pt;}
.y6b{bottom:137.120000pt;}
.y89{bottom:138.720000pt;}
.yee{bottom:139.040000pt;}
.y10c{bottom:141.120000pt;}
.y14c{bottom:145.920000pt;}
.y3b{bottom:146.720000pt;}
.y17a{bottom:148.320000pt;}
.yc8{bottom:153.920000pt;}
.y6a{bottom:155.520000pt;}
.y88{bottom:157.120000pt;}
.yed{bottom:157.440000pt;}
.yad{bottom:158.720000pt;}
.y10b{bottom:159.520000pt;}
.y14b{bottom:164.320000pt;}
.y3a{bottom:165.120000pt;}
.y179{bottom:166.720000pt;}
.yc7{bottom:172.320000pt;}
.y69{bottom:173.920000pt;}
.y87{bottom:175.546667pt;}
.y10a{bottom:177.946667pt;}
.y11b{bottom:180.346667pt;}
.y39{bottom:183.546667pt;}
.yec{bottom:183.866667pt;}
.yac{bottom:185.146667pt;}
.y159{bottom:185.946667pt;}
.yc6{bottom:190.746667pt;}
.y135{bottom:191.546667pt;}
.y68{bottom:192.346667pt;}
.y86{bottom:201.946667pt;}
.yeb{bottom:202.266667pt;}
.y178{bottom:203.546667pt;}
.y109{bottom:204.346667pt;}
.y11a{bottom:206.746667pt;}
.y14a{bottom:209.146667pt;}
.y38{bottom:209.946667pt;}
.y67{bottom:210.746667pt;}
.yab{bottom:211.546667pt;}
.y158{bottom:212.346667pt;}
.yc5{bottom:217.146667pt;}
.y134{bottom:217.946667pt;}
.yea{bottom:220.666667pt;}
.y177{bottom:221.946667pt;}
.y119{bottom:225.146667pt;}
.y85{bottom:228.346667pt;}
.y66{bottom:229.146667pt;}
.y108{bottom:230.746667pt;}
.y149{bottom:235.546667pt;}
.y37{bottom:236.346667pt;}
.yaa{bottom:237.946667pt;}
.y157{bottom:238.746667pt;}
.y176{bottom:240.346667pt;}
.yc4{bottom:243.546667pt;}
.ye9{bottom:247.066667pt;}
.y65{bottom:247.546667pt;}
.y107{bottom:249.146667pt;}
.y118{bottom:251.546667pt;}
.y148{bottom:253.946667pt;}
.y84{bottom:254.746667pt;}
.y181{bottom:255.546667pt;}
.y156{bottom:257.146667pt;}
.y175{bottom:258.746667pt;}
.yc3{bottom:261.946667pt;}
.y36{bottom:262.746667pt;}
.ya9{bottom:264.346667pt;}
.ye8{bottom:265.466667pt;}
.y64{bottom:265.946667pt;}
.y117{bottom:269.946667pt;}
.y133{bottom:273.146667pt;}
.y106{bottom:275.546667pt;}
.y174{bottom:277.146667pt;}
.yc2{bottom:280.346667pt;}
.y35{bottom:281.146667pt;}
.y180{bottom:281.946667pt;}
.y155{bottom:283.546667pt;}
.ya8{bottom:290.746667pt;}
.ye7{bottom:291.866667pt;}
.y63{bottom:292.346667pt;}
.y105{bottom:293.946667pt;}
.y173{bottom:295.546667pt;}
.y116{bottom:296.346667pt;}
.yc1{bottom:298.746667pt;}
.y34{bottom:299.546667pt;}
.y154{bottom:301.946667pt;}
.y83{bottom:307.546667pt;}
.y17f{bottom:308.346667pt;}
.ye6{bottom:310.266667pt;}
.y62{bottom:310.746667pt;}
.y172{bottom:313.946667pt;}
.ya7{bottom:317.146667pt;}
.y33{bottom:317.946667pt;}
.y104{bottom:320.346667pt;}
.y115{bottom:322.746667pt;}
.y147{bottom:325.146667pt;}
.y132{bottom:325.946667pt;}
.y61{bottom:329.146667pt;}
.y171{bottom:332.346667pt;}
.y82{bottom:333.946667pt;}
.y17e{bottom:334.746667pt;}
.yc0{bottom:335.546667pt;}
.y32{bottom:336.346667pt;}
.ye5{bottom:336.666667pt;}
.y103{bottom:338.746667pt;}
.y114{bottom:341.146667pt;}
.ya6{bottom:343.546667pt;}
.y131{bottom:344.346667pt;}
.y153{bottom:346.746667pt;}
.y60{bottom:347.546667pt;}
.y170{bottom:350.746667pt;}
.y146{bottom:351.546667pt;}
.y81{bottom:352.346667pt;}
.y31{bottom:354.746667pt;}
.y102{bottom:357.146667pt;}
.y17d{bottom:361.146667pt;}
.ya5{bottom:361.946667pt;}
.y130{bottom:362.746667pt;}
.ye4{bottom:363.066667pt;}
.y152{bottom:365.146667pt;}
.y5f{bottom:365.946667pt;}
.y113{bottom:367.546667pt;}
.y16f{bottom:369.146667pt;}
.y30{bottom:373.146667pt;}
.y145{bottom:377.946667pt;}
.y80{bottom:378.746667pt;}
.ya4{bottom:380.346667pt;}
.y12f{bottom:381.146667pt;}
.ye3{bottom:381.466667pt;}
.y101{bottom:383.546667pt;}
.y5e{bottom:384.346667pt;}
.y16e{bottom:387.586667pt;}
.ybf{bottom:388.386667pt;}
.y2f{bottom:391.586667pt;}
.y112{bottom:393.986667pt;}
.ya3{bottom:398.786667pt;}
.y100{bottom:401.986667pt;}
.y5d{bottom:402.786667pt;}
.y144{bottom:404.386667pt;}
.y7f{bottom:405.186667pt;}
.y16d{bottom:405.986667pt;}
.y12e{bottom:407.586667pt;}
.ye2{bottom:407.906667pt;}
.y2e{bottom:409.986667pt;}
.y111{bottom:412.386667pt;}
.ybe{bottom:414.786667pt;}
.ya2{bottom:417.186667pt;}
.y5c{bottom:421.186667pt;}
.y143{bottom:422.786667pt;}
.y7e{bottom:423.586667pt;}
.y16c{bottom:424.386667pt;}
.ye1{bottom:426.306667pt;}
.y2d{bottom:428.386667pt;}
.ybd{bottom:433.186667pt;}
.y12d{bottom:433.986667pt;}
.y110{bottom:438.786667pt;}
.y16b{bottom:442.786667pt;}
.ya1{bottom:443.586667pt;}
.y2c{bottom:446.786667pt;}
.y5b{bottom:447.586667pt;}
.y142{bottom:449.186667pt;}
.y7d{bottom:449.986667pt;}
.ybc{bottom:451.586667pt;}
.y12c{bottom:452.386667pt;}
.ye0{bottom:452.706667pt;}
.y151{bottom:454.786667pt;}
.y16a{bottom:461.186667pt;}
.y2b{bottom:465.186667pt;}
.y5a{bottom:465.986667pt;}
.y141{bottom:467.586667pt;}
.ya0{bottom:469.986667pt;}
.y12b{bottom:470.786667pt;}
.ydf{bottom:471.106667pt;}
.y150{bottom:473.186667pt;}
.y7c{bottom:476.386667pt;}
.y169{bottom:479.586667pt;}
.y2a{bottom:483.586667pt;}
.y59{bottom:484.386667pt;}
.y9f{bottom:488.386667pt;}
.y12a{bottom:489.186667pt;}
.yde{bottom:489.506667pt;}
.yff{bottom:491.586667pt;}
.y140{bottom:493.986667pt;}
.y7b{bottom:494.786667pt;}
.y168{bottom:497.986667pt;}
.y29{bottom:501.986667pt;}
.y58{bottom:502.786667pt;}
.y129{bottom:507.586667pt;}
.yfe{bottom:509.986667pt;}
.y7a{bottom:513.186667pt;}
.y9e{bottom:514.786667pt;}
.ydd{bottom:515.906667pt;}
.y167{bottom:516.386667pt;}
.y28{bottom:520.386667pt;}
.y57{bottom:521.186667pt;}
.yfd{bottom:528.386667pt;}
.y79{bottom:531.586667pt;}
.y128{bottom:533.986667pt;}
.ydc{bottom:534.306667pt;}
.y166{bottom:534.786667pt;}
.y14f{bottom:536.386667pt;}
.y27{bottom:538.786667pt;}
.y56{bottom:539.586667pt;}
.y9d{bottom:541.186667pt;}
.y13f{bottom:546.786667pt;}
.y10{bottom:548.866667pt;}
.ydb{bottom:552.706667pt;}
.y165{bottom:553.186667pt;}
.yfc{bottom:554.786667pt;}
.y26{bottom:557.186667pt;}
.y55{bottom:557.986667pt;}
.ybb{bottom:559.586667pt;}
.y127{bottom:560.386667pt;}
.y13e{bottom:565.186667pt;}
.y9c{bottom:567.586667pt;}
.yda{bottom:571.106667pt;}
.y164{bottom:571.586667pt;}
.yfb{bottom:573.186667pt;}
.y25{bottom:575.586667pt;}
.y54{bottom:576.386667pt;}
.yba{bottom:577.986667pt;}
.y126{bottom:578.786667pt;}
.y163{bottom:589.986667pt;}
.y13d{bottom:591.586667pt;}
.y24{bottom:593.986667pt;}
.y53{bottom:594.786667pt;}
.y125{bottom:597.186667pt;}
.yd9{bottom:597.506667pt;}
.yfa{bottom:599.613333pt;}
.yb9{bottom:604.413333pt;}
.y162{bottom:608.413333pt;}
.y13c{bottom:610.013333pt;}
.y23{bottom:612.413333pt;}
.y52{bottom:613.213333pt;}
.yd8{bottom:615.933333pt;}
.y10f{bottom:618.013333pt;}
.y9b{bottom:620.413333pt;}
.y124{bottom:623.613333pt;}
.yf9{bottom:626.013333pt;}
.y161{bottom:626.813333pt;}
.y22{bottom:630.813333pt;}
.y51{bottom:631.613333pt;}
.y10e{bottom:636.413333pt;}
.y9a{bottom:638.813333pt;}
.y123{bottom:642.013333pt;}
.yd7{bottom:642.333333pt;}
.yf8{bottom:644.413333pt;}
.y160{bottom:645.213333pt;}
.y21{bottom:649.213333pt;}
.y78{bottom:650.013333pt;}
.y13b{bottom:654.813333pt;}
.y99{bottom:657.213333pt;}
.y50{bottom:658.013333pt;}
.y122{bottom:660.413333pt;}
.yf7{bottom:662.813333pt;}
.y15f{bottom:663.613333pt;}
.y20{bottom:667.613333pt;}
.y77{bottom:668.413333pt;}
.yd6{bottom:668.733333pt;}
.yb8{bottom:675.613333pt;}
.y121{bottom:678.813333pt;}
.yf6{bottom:681.213333pt;}
.y15e{bottom:682.013333pt;}
.y98{bottom:683.613333pt;}
.y4f{bottom:684.413333pt;}
.y1f{bottom:686.013333pt;}
.y76{bottom:686.813333pt;}
.yd5{bottom:695.133333pt;}
.y120{bottom:697.213333pt;}
.yf5{bottom:699.613333pt;}
.y15d{bottom:700.413333pt;}
.yb7{bottom:702.013333pt;}
.y10d{bottom:707.613333pt;}
.y97{bottom:710.013333pt;}
.y4e{bottom:710.813333pt;}
.y1e{bottom:712.413333pt;}
.y75{bottom:713.213333pt;}
.yd4{bottom:713.533333pt;}
.y11f{bottom:715.613333pt;}
.y15c{bottom:718.813333pt;}
.yb6{bottom:720.413333pt;}
.yf4{bottom:726.013333pt;}
.yd3{bottom:731.933333pt;}
.y96{bottom:736.413333pt;}
.y4d{bottom:737.213333pt;}
.y1d{bottom:738.813333pt;}
.y74{bottom:739.613333pt;}
.y11e{bottom:742.013333pt;}
.y13a{bottom:744.413333pt;}
.yb5{bottom:746.813333pt;}
.yf3{bottom:752.413333pt;}
.y4c{bottom:755.613333pt;}
.yd2{bottom:758.173333pt;}
.y11d{bottom:760.413333pt;}
.y95{bottom:762.813333pt;}
.y1c{bottom:765.213333pt;}
.y73{bottom:766.013333pt;}
.y139{bottom:770.813333pt;}
.yb4{bottom:773.213333pt;}
.y4b{bottom:774.013333pt;}
.yf2{bottom:778.813333pt;}
.y1b{bottom:783.613333pt;}
.y72{bottom:784.413333pt;}
.yd1{bottom:785.693333pt;}
.y94{bottom:789.213333pt;}
.y4a{bottom:792.413333pt;}
.yf1{bottom:797.213333pt;}
.yb3{bottom:799.613333pt;}
.y71{bottom:802.813333pt;}
.y138{bottom:807.613333pt;}
.y1a{bottom:810.013333pt;}
.y49{bottom:810.813333pt;}
.yd0{bottom:813.413333pt;}
.y93{bottom:815.653333pt;}
.y70{bottom:821.253333pt;}
.yb2{bottom:826.053333pt;}
.y48{bottom:829.253333pt;}
.ycf{bottom:831.813333pt;}
.yf0{bottom:834.053333pt;}
.y19{bottom:836.453333pt;}
.y6f{bottom:839.653333pt;}
.y92{bottom:842.053333pt;}
.y47{bottom:847.653333pt;}
.yb1{bottom:852.453333pt;}
.y6e{bottom:858.053333pt;}
.yce{bottom:859.173333pt;}
.yef{bottom:860.453333pt;}
.y18{bottom:862.853333pt;}
.y46{bottom:866.053333pt;}
.y91{bottom:868.453333pt;}
.y6d{bottom:876.453333pt;}
.yb0{bottom:878.853333pt;}
.y17{bottom:881.253333pt;}
.y45{bottom:884.453333pt;}
.ycd{bottom:886.693333pt;}
.y90{bottom:886.853333pt;}
.y137{bottom:897.253333pt;}
.y44{bottom:902.853333pt;}
.y8f{bottom:905.253333pt;}
.y16{bottom:907.653333pt;}
.ycc{bottom:914.373333pt;}
.y136{bottom:915.653333pt;}
.y43{bottom:921.253333pt;}
.yaf{bottom:923.653333pt;}
.y15{bottom:926.053333pt;}
.y8e{bottom:931.653333pt;}
.y42{bottom:939.653333pt;}
.ycb{bottom:942.053333pt;}
.y8d{bottom:950.053333pt;}
.y14{bottom:952.453333pt;}
.y41{bottom:958.053333pt;}
.y8c{bottom:968.453333pt;}
.y40{bottom:976.453333pt;}
.y13{bottom:978.853333pt;}
.y8b{bottom:986.853333pt;}
.y3f{bottom:994.853333pt;}
.y12{bottom:1005.253333pt;}
.y3e{bottom:1013.253333pt;}
.yc{bottom:1060.640000pt;}
.y7{bottom:1067.520000pt;}
.y5{bottom:1071.360000pt;}
.yb{bottom:1074.560000pt;}
.h4{height:13.920000pt;}
.h2{height:16.000000pt;}
.h9{height:25.120000pt;}
.h5{height:35.200000pt;}
.h8{height:44.327188pt;}
.hb{height:53.406250pt;}
.h7{height:53.920000pt;}
.hc{height:54.375000pt;}
.ha{height:56.000000pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:75.546667pt;}
.w6{width:78.432000pt;}
.w2{width:147.386667pt;}
.w3{width:164.026667pt;}
.w4{width:168.346667pt;}
.w5{width:353.346667pt;}
.w7{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.280000pt;}
.xb{left:9.600000pt;}
.x8{left:19.360000pt;}
.x6{left:35.200000pt;}
.x3{left:54.560000pt;}
.x9{left:94.431988pt;}
.xc{left:96.671988pt;}
.xd{left:109.791988pt;}
.xf{left:112.831988pt;}
.x14{left:118.431988pt;}
.x15{left:142.426655pt;}
.x5{left:185.146667pt;}
.x13{left:253.986655pt;}
.x10{left:294.146655pt;}
.xe{left:313.346655pt;}
.x12{left:321.986655pt;}
.x4{left:324.066667pt;}
.x11{left:396.866655pt;}
.x1{left:617.733333pt;}
.x7{left:682.533333pt;}
.xa{left:718.213333pt;}
}




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