
    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_f9939985c4dbb4b769afc83c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_14eadb06edd940f3a8f33100.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_a3785031191904735f24f4a9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_547fc1cfc0652ff2c5e461d1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_47f6fa34c9e0b690581c6076.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.106934;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_adb3f22934c7c5da94abf9ba.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b32f6846e39db95543260704.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;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_a9ab3ce472e4ffee93d91939.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_20d657def86013bde00c2464.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_ab8765828559960fd26ba9b7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_493ea0a0df1f2ea805f1e42f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.706543;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);}
.m2{transform:matrix(0.250393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250393,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:-84.960000px;}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-0.947071px;}
.lsa{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.576000px;}
.ls4{letter-spacing:-0.432000px;}
.ls11{letter-spacing:-0.216000px;}
.ls2{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.109200px;}
.ls5{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.018720px;}
.ls1{letter-spacing:0.025920px;}
.ls3{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.288000px;}
.lsf{letter-spacing:2.304000px;}
.ls10{letter-spacing:5.904000px;}
.ls6{letter-spacing:18.840000px;}
.lsb{letter-spacing:194.376000px;}
.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;}
}
.ws5{word-spacing:-72.000000px;}
.ws0{word-spacing:-21.643200px;}
.ws7{word-spacing:-20.304000px;}
.ws8{word-spacing:-20.232000px;}
.ws4{word-spacing:-20.160000px;}
.ws6{word-spacing:-20.016000px;}
.ws3{word-spacing:-19.944000px;}
.ws1{word-spacing:-19.872000px;}
.wsf{word-spacing:-19.800000px;}
.wse{word-spacing:-19.584000px;}
.ws9{word-spacing:-18.414720px;}
.wsa{word-spacing:-18.305520px;}
.wsd{word-spacing:-13.911447px;}
.ws2{word-spacing:0.000000px;}
.wsc{word-spacing:275.509308px;}
.wsb{word-spacing:288.972560px;}
._2a{margin-left:-5.347229px;}
._0{margin-left:-1.080000px;}
._1{width:1.368000px;}
._13{width:2.952000px;}
._6{width:4.176000px;}
._5{width:5.328000px;}
._d{width:6.552000px;}
._14{width:7.704000px;}
._15{width:8.988000px;}
._e{width:10.008000px;}
._1a{width:11.136000px;}
._f{width:12.192000px;}
._1b{width:13.500000px;}
._18{width:14.676000px;}
._17{width:16.344000px;}
._16{width:18.000000px;}
._c{width:19.008000px;}
._8{width:21.144000px;}
._7{width:22.152000px;}
._9{width:23.220000px;}
._1c{width:24.300000px;}
._3{width:25.356000px;}
._2{width:26.496000px;}
._b{width:28.224000px;}
._a{width:29.232000px;}
._1e{width:30.312000px;}
._27{width:31.752000px;}
._12{width:32.760000px;}
._11{width:34.704000px;}
._22{width:36.288000px;}
._10{width:37.296000px;}
._1d{width:39.024000px;}
._25{width:40.824000px;}
._26{width:41.844000px;}
._23{width:42.984000px;}
._1f{width:44.568000px;}
._24{width:45.720000px;}
._30{width:47.664000px;}
._19{width:48.744000px;}
._3c{width:50.904000px;}
._4{width:52.632000px;}
._21{width:54.432000px;}
._20{width:56.016000px;}
._2c{width:58.392000px;}
._36{width:69.744000px;}
._35{width:71.208000px;}
._2e{width:72.432000px;}
._29{width:77.736000px;}
._28{width:78.984000px;}
._32{width:114.552000px;}
._2d{width:123.624000px;}
._39{width:277.920000px;}
._3a{width:279.000000px;}
._2b{width:314.402436px;}
._31{width:336.024000px;}
._38{width:417.900000px;}
._37{width:418.968000px;}
._33{width:523.656000px;}
._34{width:723.900000px;}
._2f{width:1842.912000px;}
._3b{width:1846.512000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:50.041176px;}
.fs4{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs1{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y111{bottom:3.839476px;}
.y105{bottom:6.757478px;}
.ydd{bottom:13.140000px;}
.ye5{bottom:13.320000px;}
.ydc{bottom:14.400000px;}
.y107{bottom:21.170873px;}
.y108{bottom:51.022802px;}
.y4{bottom:57.420000px;}
.y109{bottom:75.115516px;}
.y3{bottom:78.156000px;}
.y10a{bottom:98.216366px;}
.y2{bottom:98.856000px;}
.y1{bottom:119.556000px;}
.y10b{bottom:122.309080px;}
.y117{bottom:142.596000px;}
.y171{bottom:143.496000px;}
.yce{bottom:143.856000px;}
.y10c{bottom:145.413770px;}
.yf2{bottom:148.176000px;}
.yc2{bottom:149.796000px;}
.y29{bottom:150.690000px;}
.y126{bottom:151.230000px;}
.y134{bottom:154.290000px;}
.y97{bottom:158.790000px;}
.ycd{bottom:168.150000px;}
.y10d{bottom:169.500085px;}
.y116{bottom:173.730000px;}
.y170{bottom:174.450000px;}
.y155{bottom:174.990000px;}
.ya7{bottom:177.150000px;}
.yf1{bottom:179.310000px;}
.yc1{bottom:180.750000px;}
.y77{bottom:180.930000px;}
.y60{bottom:181.650000px;}
.y28{bottom:181.830000px;}
.y125{bottom:182.370000px;}
.y133{bottom:185.250000px;}
.y189{bottom:188.130000px;}
.y96{bottom:189.750000px;}
.y45{bottom:191.010000px;}
.y10e{bottom:192.639329px;}
.y115{bottom:204.690000px;}
.y16f{bottom:205.410000px;}
.y154{bottom:206.130000px;}
.yf0{bottom:210.270000px;}
.yc0{bottom:211.890000px;}
.y76{bottom:212.070000px;}
.y27{bottom:212.790000px;}
.y124{bottom:213.330000px;}
.y132{bottom:216.210000px;}
.y10f{bottom:216.700048px;}
.y188{bottom:219.450000px;}
.y95{bottom:220.710000px;}
.y44{bottom:221.970000px;}
.ya6{bottom:225.210000px;}
.y5f{bottom:233.310000px;}
.y153{bottom:237.090000px;}
.yef{bottom:241.410000px;}
.ybf{bottom:242.850000px;}
.y75{bottom:243.030000px;}
.y123{bottom:244.290000px;}
.y114{bottom:252.750000px;}
.y43{bottom:252.930000px;}
.y16e{bottom:253.650000px;}
.y26{bottom:260.850000px;}
.y5e{bottom:264.450000px;}
.y94{bottom:264.990000px;}
.y187{bottom:267.330000px;}
.y152{bottom:268.230000px;}
.yee{bottom:272.370000px;}
.y113{bottom:272.910000px;}
.ya5{bottom:273.270000px;}
.ybe{bottom:276.510000px;}
.y16d{bottom:284.610000px;}
.y74{bottom:291.090000px;}
.y25{bottom:291.990000px;}
.y122{bottom:292.530000px;}
.y5d{bottom:295.410000px;}
.y112{bottom:297.210000px;}
.y106{bottom:297.240000px;}
.y186{bottom:298.470000px;}
.y151{bottom:299.190000px;}
.y42{bottom:301.170000px;}
.yed{bottom:303.330000px;}
.ya4{bottom:304.410000px;}
.yfb{bottom:312.330000px;}
.y16c{bottom:315.390000px;}
.y73{bottom:322.230000px;}
.y24{bottom:322.950000px;}
.y121{bottom:323.490000px;}
.y5c{bottom:326.550000px;}
.ybd{bottom:327.090000px;}
.y185{bottom:329.475000px;}
.y41{bottom:332.175000px;}
.yec{bottom:334.515000px;}
.ya3{bottom:335.415000px;}
.y150{bottom:339.555000px;}
.yfa{bottom:343.335000px;}
.y72{bottom:353.235000px;}
.y23{bottom:354.135000px;}
.yeb{bottom:354.315000px;}
.y120{bottom:354.495000px;}
.y131{bottom:357.555000px;}
.y5b{bottom:357.735000px;}
.ybc{bottom:358.275000px;}
.ydf{bottom:359.130000px;}
.y184{bottom:360.795000px;}
.y40{bottom:363.315000px;}
.y16b{bottom:363.675000px;}
.ya2{bottom:366.555000px;}
.y14f{bottom:370.515000px;}
.yf9{bottom:374.475000px;}
.yde{bottom:382.755000px;}
.y71{bottom:384.195000px;}
.y22{bottom:385.095000px;}
.y5a{bottom:388.515000px;}
.y130{bottom:388.695000px;}
.ybb{bottom:389.235000px;}
.y183{bottom:391.575000px;}
.y3f{bottom:394.275000px;}
.y16a{bottom:394.815000px;}
.ya1{bottom:397.515000px;}
.y11f{bottom:402.735000px;}
.yf8{bottom:405.435000px;}
.y8e{bottom:413.895000px;}
.yea{bottom:414.255000px;}
.y21{bottom:416.235000px;}
.y14e{bottom:418.395000px;}
.y12f{bottom:419.655000px;}
.yba{bottom:420.375000px;}
.y182{bottom:422.715000px;}
.y3e{bottom:425.415000px;}
.y169{bottom:425.775000px;}
.y110{bottom:427.257469px;}
.ya0{bottom:428.655000px;}
.y70{bottom:432.435000px;}
.y11e{bottom:433.695000px;}
.yf7{bottom:436.575000px;}
.y59{bottom:436.755000px;}
.ye9{bottom:445.575000px;}
.y20{bottom:447.195000px;}
.y14d{bottom:449.715000px;}
.y12e{bottom:450.795000px;}
.yb9{bottom:451.335000px;}
.y181{bottom:453.675000px;}
.y3d{bottom:456.375000px;}
.y168{bottom:456.735000px;}
.y9f{bottom:459.615000px;}
.y8d{bottom:462.135000px;}
.y6f{bottom:463.395000px;}
.y11d{bottom:464.835000px;}
.yf6{bottom:467.535000px;}
.y58{bottom:467.715000px;}
.ye8{bottom:477.075000px;}
.y14c{bottom:480.495000px;}
.y12d{bottom:481.755000px;}
.y180{bottom:484.815000px;}
.y3c{bottom:487.515000px;}
.y84{bottom:487.695000px;}
.y9e{bottom:490.575000px;}
.y6e{bottom:494.535000px;}
.y1f{bottom:495.255000px;}
.y11c{bottom:495.795000px;}
.yf5{bottom:498.675000px;}
.y57{bottom:498.855000px;}
.yb8{bottom:499.395000px;}
.ycc{bottom:507.315000px;}
.ye7{bottom:508.575000px;}
.y8c{bottom:510.195000px;}
.y12c{bottom:512.715000px;}
.y17f{bottom:515.775000px;}
.y3b{bottom:518.475000px;}
.y83{bottom:518.835000px;}
.y9d{bottom:521.715000px;}
.y6d{bottom:525.495000px;}
.y1e{bottom:526.395000px;}
.yf4{bottom:527.295000px;}
.y14b{bottom:528.555000px;}
.y9a{bottom:529.275000px;}
.y56{bottom:529.815000px;}
.yb7{bottom:530.535000px;}
.y167{bottom:535.935000px;}
.ycb{bottom:538.275000px;}
.ye6{bottom:540.075000px;}
.y8b{bottom:541.155000px;}
.y104{bottom:544.745447px;}
.y11b{bottom:546.375000px;}
.y17e{bottom:547.095000px;}
.y3a{bottom:549.615000px;}
.y82{bottom:549.795000px;}
.yf3{bottom:551.595000px;}
.y9c{bottom:552.675000px;}
.y6c{bottom:556.635000px;}
.y1d{bottom:557.355000px;}
.y14a{bottom:559.695000px;}
.y55{bottom:560.955000px;}
.yb6{bottom:561.495000px;}
.y166{bottom:566.895000px;}
.yca{bottom:569.415000px;}
.ye4{bottom:571.395000px;}
.y8a{bottom:572.295000px;}
.y99{bottom:577.335000px;}
.y17d{bottom:577.875000px;}
.y81{bottom:580.935000px;}
.y6b{bottom:587.595000px;}
.y1c{bottom:588.495000px;}
.y149{bottom:590.655000px;}
.y103{bottom:591.735000px;}
.y54{bottom:591.915000px;}
.y9b{bottom:596.805000px;}
.y39{bottom:597.705000px;}
.y11a{bottom:598.065000px;}
.y165{bottom:598.245000px;}
.yc9{bottom:600.405000px;}
.ye3{bottom:602.925000px;}
.y89{bottom:603.285000px;}
.y17c{bottom:609.225000px;}
.yb5{bottom:609.585000px;}
.y80{bottom:611.925000px;}
.y6a{bottom:618.765000px;}
.y1b{bottom:619.485000px;}
.y98{bottom:621.465000px;}
.y148{bottom:621.825000px;}
.y102{bottom:622.905000px;}
.y53{bottom:623.085000px;}
.y38{bottom:628.665000px;}
.y164{bottom:629.205000px;}
.yc8{bottom:631.545000px;}
.y88{bottom:634.425000px;}
.y119{bottom:635.325000px;}
.y17b{bottom:640.185000px;}
.y139{bottom:640.365000px;}
.yb4{bottom:640.725000px;}
.y7f{bottom:643.065000px;}
.y69{bottom:649.725000px;}
.y1a{bottom:650.625000px;}
.y147{bottom:652.785000px;}
.y101{bottom:653.865000px;}
.y52{bottom:654.045000px;}
.y118{bottom:659.445000px;}
.y37{bottom:659.805000px;}
.y163{bottom:659.985000px;}
.y93{bottom:660.705000px;}
.yc7{bottom:662.505000px;}
.y87{bottom:665.385000px;}
.ye2{bottom:665.925000px;}
.y12b{bottom:671.145000px;}
.yb3{bottom:671.685000px;}
.y7e{bottom:674.025000px;}
.y19{bottom:681.585000px;}
.y100{bottom:685.005000px;}
.y51{bottom:685.185000px;}
.y36{bottom:690.945000px;}
.y92{bottom:691.845000px;}
.yc6{bottom:693.465000px;}
.ye1{bottom:697.425000px;}
.y68{bottom:697.785000px;}
.y138{bottom:699.765000px;}
.y146{bottom:700.845000px;}
.y12a{bottom:702.105000px;}
.y17a{bottom:702.285000px;}
.yb2{bottom:702.645000px;}
.y7d{bottom:705.165000px;}
.y162{bottom:708.225000px;}
.y18{bottom:712.545000px;}
.y86{bottom:713.445000px;}
.yff{bottom:715.965000px;}
.y50{bottom:716.145000px;}
.y35{bottom:721.905000px;}
.y91{bottom:722.805000px;}
.yc5{bottom:724.605000px;}
.ye0{bottom:728.745000px;}
.y67{bottom:728.925000px;}
.y145{bottom:732.165000px;}
.y129{bottom:733.245000px;}
.y179{bottom:733.425000px;}
.y7c{bottom:736.125000px;}
.y161{bottom:739.185000px;}
.y137{bottom:744.405000px;}
.yc4{bottom:744.765000px;}
.y4f{bottom:747.105000px;}
.yb1{bottom:750.885000px;}
.y34{bottom:752.865000px;}
.y90{bottom:753.765000px;}
.y85{bottom:757.725000px;}
.ydb{bottom:760.245000px;}
.y66{bottom:761.145000px;}
.y144{bottom:762.945000px;}
.y17{bottom:763.305000px;}
.y128{bottom:764.205000px;}
.y7b{bottom:767.265000px;}
.yc3{bottom:769.065000px;}
.y160{bottom:770.505000px;}
.yfe{bottom:778.065000px;}
.y136{bottom:778.245000px;}
.yb0{bottom:781.845000px;}
.y65{bottom:792.105000px;}
.y4e{bottom:795.345000px;}
.y8f{bottom:797.865000px;}
.y7a{bottom:798.225000px;}
.y15f{bottom:801.285000px;}
.y33{bottom:803.445000px;}
.yfd{bottom:806.865000px;}
.yda{bottom:808.665000px;}
.y143{bottom:811.185000px;}
.y16{bottom:814.965000px;}
.y64{bottom:824.505000px;}
.y4d{bottom:826.305000px;}
.y79{bottom:829.365000px;}
.yaf{bottom:829.905000px;}
.yfc{bottom:831.165000px;}
.y15e{bottom:832.245000px;}
.yc{bottom:836.745000px;}
.y32{bottom:839.625000px;}
.y142{bottom:842.145000px;}
.y15{bottom:846.105000px;}
.y63{bottom:856.725000px;}
.y4c{bottom:857.265000px;}
.y178{bottom:857.445000px;}
.y78{bottom:860.325000px;}
.yae{bottom:861.045000px;}
.yd9{bottom:870.810000px;}
.y141{bottom:873.150000px;}
.y135{bottom:874.410000px;}
.y14{bottom:877.110000px;}
.y15d{bottom:880.530000px;}
.yb{bottom:884.850000px;}
.y177{bottom:888.630000px;}
.y62{bottom:888.990000px;}
.y31{bottom:891.510000px;}
.yad{bottom:892.050000px;}
.y140{bottom:893.310000px;}
.yd8{bottom:901.770000px;}
.y4b{bottom:905.550000px;}
.y13{bottom:908.250000px;}
.y15c{bottom:911.670000px;}
.y61{bottom:921.210000px;}
.y13f{bottom:921.570000px;}
.y30{bottom:922.470000px;}
.yac{bottom:923.190000px;}
.yd7{bottom:932.910000px;}
.ya{bottom:933.090000px;}
.y4a{bottom:936.510000px;}
.y176{bottom:936.690000px;}
.y12{bottom:939.210000px;}
.y15b{bottom:942.810000px;}
.y13e{bottom:952.530000px;}
.y2f{bottom:953.610000px;}
.yab{bottom:954.150000px;}
.yd6{bottom:963.870000px;}
.y127{bottom:967.470000px;}
.y49{bottom:967.650000px;}
.y175{bottom:967.830000px;}
.y9{bottom:968.550000px;}
.y11{bottom:970.350000px;}
.y2e{bottom:984.570000px;}
.yaa{bottom:985.110000px;}
.y15a{bottom:994.830000px;}
.y48{bottom:998.610000px;}
.y13d{bottom:1000.590000px;}
.y10{bottom:1001.310000px;}
.y8{bottom:1004.190000px;}
.y2d{bottom:1015.710000px;}
.yd5{bottom:1016.250000px;}
.y159{bottom:1025.790000px;}
.y47{bottom:1029.570000px;}
.y174{bottom:1029.930000px;}
.y13c{bottom:1031.550000px;}
.yf{bottom:1032.450000px;}
.ya9{bottom:1033.350000px;}
.yd4{bottom:1036.950000px;}
.y7{bottom:1046.670000px;}
.y158{bottom:1056.750000px;}
.yd3{bottom:1057.650000px;}
.y173{bottom:1060.890000px;}
.ye{bottom:1063.410000px;}
.y2c{bottom:1077.810000px;}
.y18a{bottom:1077.990000px;}
.yd2{bottom:1078.350000px;}
.y6{bottom:1082.850000px;}
.y13b{bottom:1084.830000px;}
.ya8{bottom:1086.450000px;}
.y172{bottom:1091.670000px;}
.yd1{bottom:1099.050000px;}
.y2b{bottom:1108.770000px;}
.y157{bottom:1108.950000px;}
.yd{bottom:1116.690000px;}
.y5{bottom:1119.210000px;}
.yd0{bottom:1119.750000px;}
.y13a{bottom:1134.540000px;}
.y46{bottom:1139.760000px;}
.y2a{bottom:1139.940000px;}
.y156{bottom:1140.120000px;}
.ycf{bottom:1140.480000px;}
.h11{height:18.301504px;}
.he{height:22.172976px;}
.hd{height:28.425000px;}
.hb{height:28.440000px;}
.hc{height:28.650000px;}
.h9{height:31.140000px;}
.hf{height:52.191383px;}
.h8{height:60.226875px;}
.h7{height:62.327813px;}
.h6{height:64.546875px;}
.h2{height:70.664062px;}
.h5{height:75.093750px;}
.h3{height:87.859687px;}
.h4{height:99.874688px;}
.h10{height:280.268979px;}
.ha{height:374.430000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:107.834592px;}
.w9{width:121.293887px;}
.w4{width:133.582500px;}
.w5{width:160.410000px;}
.w6{width:267.675000px;}
.w3{width:268.575000px;}
.w2{width:294.906000px;}
.w8{width:636.432391px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:1.922756px;}
.x21{left:14.420674px;}
.x1e{left:16.375476px;}
.x1d{left:23.105124px;}
.x1f{left:30.796149px;}
.x1c{left:50.055760px;}
.x13{left:53.085000px;}
.x15{left:57.585000px;}
.x1b{left:67.392614px;}
.x22{left:74.520000px;}
.x1a{left:98.220810px;}
.x1{left:127.656000px;}
.x12{left:129.105000px;}
.x19{left:138.630741px;}
.x11{left:141.876000px;}
.x3{left:163.110000px;}
.xb{left:170.850000px;}
.x8{left:180.750000px;}
.xc{left:208.110000px;}
.x9{left:213.150000px;}
.x5{left:216.390000px;}
.xa{left:223.950000px;}
.x2{left:236.550000px;}
.x4{left:238.350000px;}
.x16{left:262.695000px;}
.x6{left:380.955000px;}
.x7{left:402.405000px;}
.x14{left:425.460000px;}
.x17{left:444.642188px;}
.x20{left:686.332676px;}
.x10{left:722.310000px;}
.xe{left:765.540000px;}
.xf{left:817.920000px;}
.xd{left:819.180000px;}
@media print{
.v1{vertical-align:-75.520000pt;}
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.841841pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.512000pt;}
.ls4{letter-spacing:-0.384000pt;}
.ls11{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.097067pt;}
.ls5{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.016640pt;}
.ls1{letter-spacing:0.023040pt;}
.ls3{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.256000pt;}
.lsf{letter-spacing:2.048000pt;}
.ls10{letter-spacing:5.248000pt;}
.ls6{letter-spacing:16.746667pt;}
.lsb{letter-spacing:172.778667pt;}
.ws5{word-spacing:-64.000000pt;}
.ws0{word-spacing:-19.238400pt;}
.ws7{word-spacing:-18.048000pt;}
.ws8{word-spacing:-17.984000pt;}
.ws4{word-spacing:-17.920000pt;}
.ws6{word-spacing:-17.792000pt;}
.ws3{word-spacing:-17.728000pt;}
.ws1{word-spacing:-17.664000pt;}
.wsf{word-spacing:-17.600000pt;}
.wse{word-spacing:-17.408000pt;}
.ws9{word-spacing:-16.368640pt;}
.wsa{word-spacing:-16.271573pt;}
.wsd{word-spacing:-12.365731pt;}
.ws2{word-spacing:0.000000pt;}
.wsc{word-spacing:244.897163pt;}
.wsb{word-spacing:256.864498pt;}
._2a{margin-left:-4.753093pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.216000pt;}
._13{width:2.624000pt;}
._6{width:3.712000pt;}
._5{width:4.736000pt;}
._d{width:5.824000pt;}
._14{width:6.848000pt;}
._15{width:7.989333pt;}
._e{width:8.896000pt;}
._1a{width:9.898667pt;}
._f{width:10.837333pt;}
._1b{width:12.000000pt;}
._18{width:13.045333pt;}
._17{width:14.528000pt;}
._16{width:16.000000pt;}
._c{width:16.896000pt;}
._8{width:18.794667pt;}
._7{width:19.690667pt;}
._9{width:20.640000pt;}
._1c{width:21.600000pt;}
._3{width:22.538667pt;}
._2{width:23.552000pt;}
._b{width:25.088000pt;}
._a{width:25.984000pt;}
._1e{width:26.944000pt;}
._27{width:28.224000pt;}
._12{width:29.120000pt;}
._11{width:30.848000pt;}
._22{width:32.256000pt;}
._10{width:33.152000pt;}
._1d{width:34.688000pt;}
._25{width:36.288000pt;}
._26{width:37.194667pt;}
._23{width:38.208000pt;}
._1f{width:39.616000pt;}
._24{width:40.640000pt;}
._30{width:42.368000pt;}
._19{width:43.328000pt;}
._3c{width:45.248000pt;}
._4{width:46.784000pt;}
._21{width:48.384000pt;}
._20{width:49.792000pt;}
._2c{width:51.904000pt;}
._36{width:61.994667pt;}
._35{width:63.296000pt;}
._2e{width:64.384000pt;}
._29{width:69.098667pt;}
._28{width:70.208000pt;}
._32{width:101.824000pt;}
._2d{width:109.888000pt;}
._39{width:247.040000pt;}
._3a{width:248.000000pt;}
._2b{width:279.468832pt;}
._31{width:298.688000pt;}
._38{width:371.466667pt;}
._37{width:372.416000pt;}
._33{width:465.472000pt;}
._34{width:643.466667pt;}
._2f{width:1638.144000pt;}
._3b{width:1641.344000pt;}
.fs6{font-size:44.481045pt;}
.fs4{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs1{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y111{bottom:3.412868pt;}
.y105{bottom:6.006648pt;}
.ydd{bottom:11.680000pt;}
.ye5{bottom:11.840000pt;}
.ydc{bottom:12.800000pt;}
.y107{bottom:18.818554pt;}
.y108{bottom:45.353602pt;}
.y4{bottom:51.040000pt;}
.y109{bottom:66.769348pt;}
.y3{bottom:69.472000pt;}
.y10a{bottom:87.303436pt;}
.y2{bottom:87.872000pt;}
.y1{bottom:106.272000pt;}
.y10b{bottom:108.719183pt;}
.y117{bottom:126.752000pt;}
.y171{bottom:127.552000pt;}
.yce{bottom:127.872000pt;}
.y10c{bottom:129.256684pt;}
.yf2{bottom:131.712000pt;}
.yc2{bottom:133.152000pt;}
.y29{bottom:133.946667pt;}
.y126{bottom:134.426667pt;}
.y134{bottom:137.146667pt;}
.y97{bottom:141.146667pt;}
.ycd{bottom:149.466667pt;}
.y10d{bottom:150.666742pt;}
.y116{bottom:154.426667pt;}
.y170{bottom:155.066667pt;}
.y155{bottom:155.546667pt;}
.ya7{bottom:157.466667pt;}
.yf1{bottom:159.386667pt;}
.yc1{bottom:160.666667pt;}
.y77{bottom:160.826667pt;}
.y60{bottom:161.466667pt;}
.y28{bottom:161.626667pt;}
.y125{bottom:162.106667pt;}
.y133{bottom:164.666667pt;}
.y189{bottom:167.226667pt;}
.y96{bottom:168.666667pt;}
.y45{bottom:169.786667pt;}
.y10e{bottom:171.234959pt;}
.y115{bottom:181.946667pt;}
.y16f{bottom:182.586667pt;}
.y154{bottom:183.226667pt;}
.yf0{bottom:186.906667pt;}
.yc0{bottom:188.346667pt;}
.y76{bottom:188.506667pt;}
.y27{bottom:189.146667pt;}
.y124{bottom:189.626667pt;}
.y132{bottom:192.186667pt;}
.y10f{bottom:192.622265pt;}
.y188{bottom:195.066667pt;}
.y95{bottom:196.186667pt;}
.y44{bottom:197.306667pt;}
.ya6{bottom:200.186667pt;}
.y5f{bottom:207.386667pt;}
.y153{bottom:210.746667pt;}
.yef{bottom:214.586667pt;}
.ybf{bottom:215.866667pt;}
.y75{bottom:216.026667pt;}
.y123{bottom:217.146667pt;}
.y114{bottom:224.666667pt;}
.y43{bottom:224.826667pt;}
.y16e{bottom:225.466667pt;}
.y26{bottom:231.866667pt;}
.y5e{bottom:235.066667pt;}
.y94{bottom:235.546667pt;}
.y187{bottom:237.626667pt;}
.y152{bottom:238.426667pt;}
.yee{bottom:242.106667pt;}
.y113{bottom:242.586667pt;}
.ya5{bottom:242.906667pt;}
.ybe{bottom:245.786667pt;}
.y16d{bottom:252.986667pt;}
.y74{bottom:258.746667pt;}
.y25{bottom:259.546667pt;}
.y122{bottom:260.026667pt;}
.y5d{bottom:262.586667pt;}
.y112{bottom:264.186667pt;}
.y106{bottom:264.213333pt;}
.y186{bottom:265.306667pt;}
.y151{bottom:265.946667pt;}
.y42{bottom:267.706667pt;}
.yed{bottom:269.626667pt;}
.ya4{bottom:270.586667pt;}
.yfb{bottom:277.626667pt;}
.y16c{bottom:280.346667pt;}
.y73{bottom:286.426667pt;}
.y24{bottom:287.066667pt;}
.y121{bottom:287.546667pt;}
.y5c{bottom:290.266667pt;}
.ybd{bottom:290.746667pt;}
.y185{bottom:292.866667pt;}
.y41{bottom:295.266667pt;}
.yec{bottom:297.346667pt;}
.ya3{bottom:298.146667pt;}
.y150{bottom:301.826667pt;}
.yfa{bottom:305.186667pt;}
.y72{bottom:313.986667pt;}
.y23{bottom:314.786667pt;}
.yeb{bottom:314.946667pt;}
.y120{bottom:315.106667pt;}
.y131{bottom:317.826667pt;}
.y5b{bottom:317.986667pt;}
.ybc{bottom:318.466667pt;}
.ydf{bottom:319.226667pt;}
.y184{bottom:320.706667pt;}
.y40{bottom:322.946667pt;}
.y16b{bottom:323.266667pt;}
.ya2{bottom:325.826667pt;}
.y14f{bottom:329.346667pt;}
.yf9{bottom:332.866667pt;}
.yde{bottom:340.226667pt;}
.y71{bottom:341.506667pt;}
.y22{bottom:342.306667pt;}
.y5a{bottom:345.346667pt;}
.y130{bottom:345.506667pt;}
.ybb{bottom:345.986667pt;}
.y183{bottom:348.066667pt;}
.y3f{bottom:350.466667pt;}
.y16a{bottom:350.946667pt;}
.ya1{bottom:353.346667pt;}
.y11f{bottom:357.986667pt;}
.yf8{bottom:360.386667pt;}
.y8e{bottom:367.906667pt;}
.yea{bottom:368.226667pt;}
.y21{bottom:369.986667pt;}
.y14e{bottom:371.906667pt;}
.y12f{bottom:373.026667pt;}
.yba{bottom:373.666667pt;}
.y182{bottom:375.746667pt;}
.y3e{bottom:378.146667pt;}
.y169{bottom:378.466667pt;}
.y110{bottom:379.784417pt;}
.ya0{bottom:381.026667pt;}
.y70{bottom:384.386667pt;}
.y11e{bottom:385.506667pt;}
.yf7{bottom:388.066667pt;}
.y59{bottom:388.226667pt;}
.ye9{bottom:396.066667pt;}
.y20{bottom:397.506667pt;}
.y14d{bottom:399.746667pt;}
.y12e{bottom:400.706667pt;}
.yb9{bottom:401.186667pt;}
.y181{bottom:403.266667pt;}
.y3d{bottom:405.666667pt;}
.y168{bottom:405.986667pt;}
.y9f{bottom:408.546667pt;}
.y8d{bottom:410.786667pt;}
.y6f{bottom:411.906667pt;}
.y11d{bottom:413.186667pt;}
.yf6{bottom:415.586667pt;}
.y58{bottom:415.746667pt;}
.ye8{bottom:424.066667pt;}
.y14c{bottom:427.106667pt;}
.y12d{bottom:428.226667pt;}
.y180{bottom:430.946667pt;}
.y3c{bottom:433.346667pt;}
.y84{bottom:433.506667pt;}
.y9e{bottom:436.066667pt;}
.y6e{bottom:439.586667pt;}
.y1f{bottom:440.226667pt;}
.y11c{bottom:440.706667pt;}
.yf5{bottom:443.266667pt;}
.y57{bottom:443.426667pt;}
.yb8{bottom:443.906667pt;}
.ycc{bottom:450.946667pt;}
.ye7{bottom:452.066667pt;}
.y8c{bottom:453.506667pt;}
.y12c{bottom:455.746667pt;}
.y17f{bottom:458.466667pt;}
.y3b{bottom:460.866667pt;}
.y83{bottom:461.186667pt;}
.y9d{bottom:463.746667pt;}
.y6d{bottom:467.106667pt;}
.y1e{bottom:467.906667pt;}
.yf4{bottom:468.706667pt;}
.y14b{bottom:469.826667pt;}
.y9a{bottom:470.466667pt;}
.y56{bottom:470.946667pt;}
.yb7{bottom:471.586667pt;}
.y167{bottom:476.386667pt;}
.ycb{bottom:478.466667pt;}
.ye6{bottom:480.066667pt;}
.y8b{bottom:481.026667pt;}
.y104{bottom:484.218175pt;}
.y11b{bottom:485.666667pt;}
.y17e{bottom:486.306667pt;}
.y3a{bottom:488.546667pt;}
.y82{bottom:488.706667pt;}
.yf3{bottom:490.306667pt;}
.y9c{bottom:491.266667pt;}
.y6c{bottom:494.786667pt;}
.y1d{bottom:495.426667pt;}
.y14a{bottom:497.506667pt;}
.y55{bottom:498.626667pt;}
.yb6{bottom:499.106667pt;}
.y166{bottom:503.906667pt;}
.yca{bottom:506.146667pt;}
.ye4{bottom:507.906667pt;}
.y8a{bottom:508.706667pt;}
.y99{bottom:513.186667pt;}
.y17d{bottom:513.666667pt;}
.y81{bottom:516.386667pt;}
.y6b{bottom:522.306667pt;}
.y1c{bottom:523.106667pt;}
.y149{bottom:525.026667pt;}
.y103{bottom:525.986667pt;}
.y54{bottom:526.146667pt;}
.y9b{bottom:530.493333pt;}
.y39{bottom:531.293333pt;}
.y11a{bottom:531.613333pt;}
.y165{bottom:531.773333pt;}
.yc9{bottom:533.693333pt;}
.ye3{bottom:535.933333pt;}
.y89{bottom:536.253333pt;}
.y17c{bottom:541.533333pt;}
.yb5{bottom:541.853333pt;}
.y80{bottom:543.933333pt;}
.y6a{bottom:550.013333pt;}
.y1b{bottom:550.653333pt;}
.y98{bottom:552.413333pt;}
.y148{bottom:552.733333pt;}
.y102{bottom:553.693333pt;}
.y53{bottom:553.853333pt;}
.y38{bottom:558.813333pt;}
.y164{bottom:559.293333pt;}
.yc8{bottom:561.373333pt;}
.y88{bottom:563.933333pt;}
.y119{bottom:564.733333pt;}
.y17b{bottom:569.053333pt;}
.y139{bottom:569.213333pt;}
.yb4{bottom:569.533333pt;}
.y7f{bottom:571.613333pt;}
.y69{bottom:577.533333pt;}
.y1a{bottom:578.333333pt;}
.y147{bottom:580.253333pt;}
.y101{bottom:581.213333pt;}
.y52{bottom:581.373333pt;}
.y118{bottom:586.173333pt;}
.y37{bottom:586.493333pt;}
.y163{bottom:586.653333pt;}
.y93{bottom:587.293333pt;}
.yc7{bottom:588.893333pt;}
.y87{bottom:591.453333pt;}
.ye2{bottom:591.933333pt;}
.y12b{bottom:596.573333pt;}
.yb3{bottom:597.053333pt;}
.y7e{bottom:599.133333pt;}
.y19{bottom:605.853333pt;}
.y100{bottom:608.893333pt;}
.y51{bottom:609.053333pt;}
.y36{bottom:614.173333pt;}
.y92{bottom:614.973333pt;}
.yc6{bottom:616.413333pt;}
.ye1{bottom:619.933333pt;}
.y68{bottom:620.253333pt;}
.y138{bottom:622.013333pt;}
.y146{bottom:622.973333pt;}
.y12a{bottom:624.093333pt;}
.y17a{bottom:624.253333pt;}
.yb2{bottom:624.573333pt;}
.y7d{bottom:626.813333pt;}
.y162{bottom:629.533333pt;}
.y18{bottom:633.373333pt;}
.y86{bottom:634.173333pt;}
.yff{bottom:636.413333pt;}
.y50{bottom:636.573333pt;}
.y35{bottom:641.693333pt;}
.y91{bottom:642.493333pt;}
.yc5{bottom:644.093333pt;}
.ye0{bottom:647.773333pt;}
.y67{bottom:647.933333pt;}
.y145{bottom:650.813333pt;}
.y129{bottom:651.773333pt;}
.y179{bottom:651.933333pt;}
.y7c{bottom:654.333333pt;}
.y161{bottom:657.053333pt;}
.y137{bottom:661.693333pt;}
.yc4{bottom:662.013333pt;}
.y4f{bottom:664.093333pt;}
.yb1{bottom:667.453333pt;}
.y34{bottom:669.213333pt;}
.y90{bottom:670.013333pt;}
.y85{bottom:673.533333pt;}
.ydb{bottom:675.773333pt;}
.y66{bottom:676.573333pt;}
.y144{bottom:678.173333pt;}
.y17{bottom:678.493333pt;}
.y128{bottom:679.293333pt;}
.y7b{bottom:682.013333pt;}
.yc3{bottom:683.613333pt;}
.y160{bottom:684.893333pt;}
.yfe{bottom:691.613333pt;}
.y136{bottom:691.773333pt;}
.yb0{bottom:694.973333pt;}
.y65{bottom:704.093333pt;}
.y4e{bottom:706.973333pt;}
.y8f{bottom:709.213333pt;}
.y7a{bottom:709.533333pt;}
.y15f{bottom:712.253333pt;}
.y33{bottom:714.173333pt;}
.yfd{bottom:717.213333pt;}
.yda{bottom:718.813333pt;}
.y143{bottom:721.053333pt;}
.y16{bottom:724.413333pt;}
.y64{bottom:732.893333pt;}
.y4d{bottom:734.493333pt;}
.y79{bottom:737.213333pt;}
.yaf{bottom:737.693333pt;}
.yfc{bottom:738.813333pt;}
.y15e{bottom:739.773333pt;}
.yc{bottom:743.773333pt;}
.y32{bottom:746.333333pt;}
.y142{bottom:748.573333pt;}
.y15{bottom:752.093333pt;}
.y63{bottom:761.533333pt;}
.y4c{bottom:762.013333pt;}
.y178{bottom:762.173333pt;}
.y78{bottom:764.733333pt;}
.yae{bottom:765.373333pt;}
.yd9{bottom:774.053333pt;}
.y141{bottom:776.133333pt;}
.y135{bottom:777.253333pt;}
.y14{bottom:779.653333pt;}
.y15d{bottom:782.693333pt;}
.yb{bottom:786.533333pt;}
.y177{bottom:789.893333pt;}
.y62{bottom:790.213333pt;}
.y31{bottom:792.453333pt;}
.yad{bottom:792.933333pt;}
.y140{bottom:794.053333pt;}
.yd8{bottom:801.573333pt;}
.y4b{bottom:804.933333pt;}
.y13{bottom:807.333333pt;}
.y15c{bottom:810.373333pt;}
.y61{bottom:818.853333pt;}
.y13f{bottom:819.173333pt;}
.y30{bottom:819.973333pt;}
.yac{bottom:820.613333pt;}
.yd7{bottom:829.253333pt;}
.ya{bottom:829.413333pt;}
.y4a{bottom:832.453333pt;}
.y176{bottom:832.613333pt;}
.y12{bottom:834.853333pt;}
.y15b{bottom:838.053333pt;}
.y13e{bottom:846.693333pt;}
.y2f{bottom:847.653333pt;}
.yab{bottom:848.133333pt;}
.yd6{bottom:856.773333pt;}
.y127{bottom:859.973333pt;}
.y49{bottom:860.133333pt;}
.y175{bottom:860.293333pt;}
.y9{bottom:860.933333pt;}
.y11{bottom:862.533333pt;}
.y2e{bottom:875.173333pt;}
.yaa{bottom:875.653333pt;}
.y15a{bottom:884.293333pt;}
.y48{bottom:887.653333pt;}
.y13d{bottom:889.413333pt;}
.y10{bottom:890.053333pt;}
.y8{bottom:892.613333pt;}
.y2d{bottom:902.853333pt;}
.yd5{bottom:903.333333pt;}
.y159{bottom:911.813333pt;}
.y47{bottom:915.173333pt;}
.y174{bottom:915.493333pt;}
.y13c{bottom:916.933333pt;}
.yf{bottom:917.733333pt;}
.ya9{bottom:918.533333pt;}
.yd4{bottom:921.733333pt;}
.y7{bottom:930.373333pt;}
.y158{bottom:939.333333pt;}
.yd3{bottom:940.133333pt;}
.y173{bottom:943.013333pt;}
.ye{bottom:945.253333pt;}
.y2c{bottom:958.053333pt;}
.y18a{bottom:958.213333pt;}
.yd2{bottom:958.533333pt;}
.y6{bottom:962.533333pt;}
.y13b{bottom:964.293333pt;}
.ya8{bottom:965.733333pt;}
.y172{bottom:970.373333pt;}
.yd1{bottom:976.933333pt;}
.y2b{bottom:985.573333pt;}
.y157{bottom:985.733333pt;}
.yd{bottom:992.613333pt;}
.y5{bottom:994.853333pt;}
.yd0{bottom:995.333333pt;}
.y13a{bottom:1008.480000pt;}
.y46{bottom:1013.120000pt;}
.y2a{bottom:1013.280000pt;}
.y156{bottom:1013.440000pt;}
.ycf{bottom:1013.760000pt;}
.h11{height:16.268004pt;}
.he{height:19.709312pt;}
.hd{height:25.266667pt;}
.hb{height:25.280000pt;}
.hc{height:25.466667pt;}
.h9{height:27.680000pt;}
.hf{height:46.392340pt;}
.h8{height:53.535000pt;}
.h7{height:55.402500pt;}
.h6{height:57.375000pt;}
.h2{height:62.812500pt;}
.h5{height:66.750000pt;}
.h3{height:78.097500pt;}
.h4{height:88.777500pt;}
.h10{height:249.127981pt;}
.ha{height:332.826667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:95.852971pt;}
.w9{width:107.816789pt;}
.w4{width:118.740000pt;}
.w5{width:142.586667pt;}
.w6{width:237.933333pt;}
.w3{width:238.733333pt;}
.w2{width:262.138667pt;}
.w8{width:565.717681pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:1.709117pt;}
.x21{left:12.818376pt;}
.x1e{left:14.555979pt;}
.x1d{left:20.537888pt;}
.x1f{left:27.374355pt;}
.x1c{left:44.494009pt;}
.x13{left:47.186667pt;}
.x15{left:51.186667pt;}
.x1b{left:59.904546pt;}
.x22{left:66.240000pt;}
.x1a{left:87.307386pt;}
.x1{left:113.472000pt;}
.x12{left:114.760000pt;}
.x19{left:123.227326pt;}
.x11{left:126.112000pt;}
.x3{left:144.986667pt;}
.xb{left:151.866667pt;}
.x8{left:160.666667pt;}
.xc{left:184.986667pt;}
.x9{left:189.466667pt;}
.x5{left:192.346667pt;}
.xa{left:199.066667pt;}
.x2{left:210.266667pt;}
.x4{left:211.866667pt;}
.x16{left:233.506667pt;}
.x6{left:338.626667pt;}
.x7{left:357.693333pt;}
.x14{left:378.186667pt;}
.x17{left:395.237500pt;}
.x20{left:610.073490pt;}
.x10{left:642.053333pt;}
.xe{left:680.480000pt;}
.xf{left:727.040000pt;}
.xd{left:728.160000pt;}
}




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