
    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_781ea033a3a5e540505e0d68.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_e440fbedeeeddcec3c42256e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_82b5da0e800deb4a72ef7956.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_67fa37f9868141ef66c53baa.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_8c8a8045834a7cf66ec6ba4a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_11a0121193642da48704a8f3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_58985701b4c755d552b4c977.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_5f92968640ea48f28ae638ef.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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);}
.v5{vertical-align:-65.700000px;}
.vb{vertical-align:-64.080000px;}
.v1{vertical-align:-62.640000px;}
.v6{vertical-align:-61.200000px;}
.v9{vertical-align:-49.530000px;}
.v3{vertical-align:-18.000000px;}
.v8{vertical-align:-9.006000px;}
.v7{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:1.440000px;}
.v4{vertical-align:18.000000px;}
.v2{vertical-align:23.760000px;}
.ls11{letter-spacing:-1.260000px;}
.ls18{letter-spacing:-0.972000px;}
.ls23{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.360000px;}
.ls2b{letter-spacing:-0.342000px;}
.lse{letter-spacing:-0.220800px;}
.ls22{letter-spacing:-0.216000px;}
.ls26{letter-spacing:-0.144000px;}
.ls29{letter-spacing:-0.126000px;}
.ls21{letter-spacing:-0.108000px;}
.lsd{letter-spacing:-0.027360px;}
.ls16{letter-spacing:-0.018000px;}
.lsb{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.018000px;}
.ls14{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.108000px;}
.ls15{letter-spacing:0.109200px;}
.ls1{letter-spacing:0.180000px;}
.ls2a{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.738000px;}
.ls17{letter-spacing:0.828000px;}
.ls4{letter-spacing:2.340000px;}
.ls30{letter-spacing:2.988000px;}
.ls5{letter-spacing:3.060000px;}
.ls3{letter-spacing:4.500000px;}
.ls2f{letter-spacing:30.348000px;}
.ls6{letter-spacing:52.560000px;}
.ls8{letter-spacing:55.620000px;}
.ls24{letter-spacing:88.092000px;}
.ls1a{letter-spacing:107.460000px;}
.ls1c{letter-spacing:124.140000px;}
.ls1b{letter-spacing:144.900000px;}
.ls1d{letter-spacing:145.620000px;}
.ls0{letter-spacing:154.980000px;}
.ls1e{letter-spacing:166.500000px;}
.ls28{letter-spacing:877.320000px;}
.ls1f{letter-spacing:1061.700000px;}
.ls12{letter-spacing:1156.080000px;}
.ls27{letter-spacing:1249.680000px;}
.ls19{letter-spacing:1259.100000px;}
.ls20{letter-spacing:1280.700000px;}
.ls7{letter-spacing:1367.040000px;}
.ls2d{letter-spacing:1410.960000px;}
.ls25{letter-spacing:1439.040000px;}
.ls2c{letter-spacing:1609.800000px;}
.ls2e{letter-spacing:1701.960000px;}
.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;}
}
.ws16{word-spacing:-54.000000px;}
.ws6{word-spacing:-20.700000px;}
.ws1{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.wsf{word-spacing:-16.669200px;}
.ws3{word-spacing:-14.580000px;}
.wsb{word-spacing:-14.238000px;}
.ws5{word-spacing:-14.220000px;}
.ws2{word-spacing:-14.192640px;}
.ws4{word-spacing:-13.999200px;}
.wsa{word-spacing:-13.860000px;}
.ws1a{word-spacing:-13.716000px;}
.wsc{word-spacing:-13.680000px;}
.ws15{word-spacing:-13.608000px;}
.wsd{word-spacing:-13.518000px;}
.ws9{word-spacing:-13.500000px;}
.ws10{word-spacing:-13.482000px;}
.ws13{word-spacing:-13.392000px;}
.ws19{word-spacing:-13.374000px;}
.ws18{word-spacing:-13.356000px;}
.ws1c{word-spacing:-13.284000px;}
.ws1b{word-spacing:-13.158000px;}
.ws17{word-spacing:-13.140000px;}
.ws14{word-spacing:-12.780000px;}
.ws11{word-spacing:-12.528000px;}
.ws7{word-spacing:-10.440000px;}
.ws8{word-spacing:-9.000000px;}
.wse{word-spacing:0.000000px;}
.ws12{word-spacing:48.858000px;}
._a{margin-left:-74.653680px;}
._1{margin-left:-3.225600px;}
._0{margin-left:-1.368000px;}
._2{width:1.078560px;}
._5{width:2.353440px;}
._6{width:3.748560px;}
._8{width:4.756080px;}
._7{width:5.782320px;}
._28{width:7.560000px;}
._2a{width:8.940000px;}
._3{width:31.050000px;}
._4{width:32.790000px;}
._14{width:101.755440px;}
._10{width:111.996000px;}
._11{width:121.068000px;}
._f{width:125.460000px;}
._d{width:137.460000px;}
._e{width:145.548000px;}
._12{width:171.900000px;}
._13{width:179.820000px;}
._25{width:206.640000px;}
._c{width:254.917440px;}
._1e{width:316.332000px;}
._23{width:344.160000px;}
._29{width:350.754000px;}
._1f{width:370.080000px;}
._27{width:387.336000px;}
._21{width:406.800000px;}
._20{width:413.850000px;}
._26{width:445.610880px;}
._15{width:454.350000px;}
._1a{width:527.682000px;}
._b{width:540.498000px;}
._24{width:583.896000px;}
._1d{width:626.059440px;}
._22{width:646.836000px;}
._17{width:688.405440px;}
._18{width:736.386000px;}
._19{width:760.572000px;}
._1b{width:762.200880px;}
._16{width:767.466000px;}
._1c{width:807.588000px;}
._9{width:1041.420000px;}
.fc6{color:transparent;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc5{color:rgb(0,0,255);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:12.240000px;}
.fsd{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fsc{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsb{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y83{bottom:2.850000px;}
.y3b{bottom:2.880000px;}
.y8e{bottom:3.000000px;}
.y125{bottom:3.060000px;}
.y43{bottom:3.240000px;}
.y52{bottom:3.420000px;}
.yfb{bottom:8.280000px;}
.yfc{bottom:8.640000px;}
.y4c{bottom:8.820000px;}
.yf8{bottom:10.665000px;}
.y4f{bottom:11.160000px;}
.y53{bottom:11.520000px;}
.y101{bottom:13.860000px;}
.y103{bottom:14.220000px;}
.y41{bottom:15.660000px;}
.y107{bottom:18.360000px;}
.yf9{bottom:18.405000px;}
.y4e{bottom:18.540000px;}
.y48{bottom:18.720000px;}
.y51{bottom:18.900000px;}
.y4b{bottom:24.480000px;}
.y100{bottom:29.340000px;}
.y102{bottom:29.700000px;}
.y3e{bottom:30.960000px;}
.y40{bottom:31.320000px;}
.y4a{bottom:36.720000px;}
.y3f{bottom:46.800000px;}
.y2{bottom:57.960000px;}
.y46{bottom:59.580000px;}
.y45{bottom:75.270000px;}
.y1{bottom:76.860000px;}
.y122{bottom:97.740000px;}
.y9b{bottom:101.880000px;}
.ye8{bottom:103.680000px;}
.ya7{bottom:109.830000px;}
.y6c{bottom:109.980000px;}
.y121{bottom:113.400000px;}
.y9a{bottom:114.300000px;}
.ye7{bottom:119.340000px;}
.y49{bottom:123.870000px;}
.y6b{bottom:125.460000px;}
.ya6{bottom:125.670000px;}
.y120{bottom:128.880000px;}
.y47{bottom:129.630000px;}
.ye6{bottom:134.856000px;}
.y6a{bottom:141.156000px;}
.ya5{bottom:141.360000px;}
.y11f{bottom:144.576000px;}
.ye5{bottom:150.330000px;}
.y69{bottom:156.630000px;}
.ya4{bottom:157.020000px;}
.y11e{bottom:160.050000px;}
.ye4{bottom:165.990000px;}
.ya3{bottom:169.260000px;}
.y68{bottom:172.290000px;}
.y11d{bottom:175.530000px;}
.ye3{bottom:181.470000px;}
.y67{bottom:187.770000px;}
.y33{bottom:188.490000px;}
.y11c{bottom:191.190000px;}
.ye2{bottom:197.130000px;}
.y66{bottom:203.070000px;}
.y32{bottom:204.150000px;}
.y11b{bottom:206.670000px;}
.ye1{bottom:212.610000px;}
.y65{bottom:218.730000px;}
.y31{bottom:219.630000px;}
.y11a{bottom:222.330000px;}
.ye0{bottom:228.270000px;}
.y64{bottom:234.570000px;}
.y30{bottom:235.110000px;}
.y119{bottom:237.810000px;}
.ydf{bottom:243.750000px;}
.y63{bottom:250.050000px;}
.y2f{bottom:250.590000px;}
.y118{bottom:250.950000px;}
.yde{bottom:259.230000px;}
.y62{bottom:265.710000px;}
.y2e{bottom:266.250000px;}
.y117{bottom:271.650000px;}
.ydd{bottom:274.890000px;}
.y61{bottom:281.190000px;}
.y2d{bottom:281.730000px;}
.ydc{bottom:290.370000px;}
.y116{bottom:292.530000px;}
.y60{bottom:296.490000px;}
.ydb{bottom:305.850000px;}
.y5f{bottom:312.150000px;}
.y2c{bottom:312.510000px;}
.y115{bottom:313.410000px;}
.yda{bottom:321.330000px;}
.y5e{bottom:327.990000px;}
.y114{bottom:334.290000px;}
.yd9{bottom:336.990000px;}
.y2b{bottom:343.650000px;}
.yd8{bottom:352.470000px;}
.y113{bottom:355.170000px;}
.y5d{bottom:358.950000px;}
.y2a{bottom:361.830000px;}
.yd7{bottom:368.130000px;}
.y5c{bottom:374.430000px;}
.y112{bottom:376.050000px;}
.y14a{bottom:381.990000px;}
.yd6{bottom:383.610000px;}
.y5b{bottom:390.135000px;}
.y29{bottom:390.855000px;}
.y111{bottom:396.795000px;}
.y149{bottom:397.515000px;}
.y99{bottom:398.850000px;}
.yd5{bottom:399.135000px;}
.y5a{bottom:405.975000px;}
.y28{bottom:409.035000px;}
.y148{bottom:412.995000px;}
.yd4{bottom:414.795000px;}
.y98{bottom:415.200000px;}
.y110{bottom:417.675000px;}
.y59{bottom:421.635000px;}
.y27{bottom:424.515000px;}
.y147{bottom:428.475000px;}
.yd3{bottom:430.275000px;}
.y58{bottom:436.935000px;}
.y97{bottom:436.950000px;}
.y26{bottom:440.175000px;}
.y146{bottom:444.135000px;}
.yd2{bottom:445.935000px;}
.y57{bottom:452.415000px;}
.y96{bottom:458.700000px;}
.y145{bottom:459.615000px;}
.yd1{bottom:461.415000px;}
.y25{bottom:462.495000px;}
.y10f{bottom:465.195000px;}
.y56{bottom:468.435000px;}
.y144{bottom:475.095000px;}
.yd0{bottom:476.895000px;}
.y24{bottom:478.155000px;}
.y95{bottom:480.450000px;}
.y10e{bottom:480.675000px;}
.y55{bottom:483.735000px;}
.y143{bottom:490.575000px;}
.ycf{bottom:492.555000px;}
.y23{bottom:493.635000px;}
.y10d{bottom:496.335000px;}
.y54{bottom:499.215000px;}
.ya2{bottom:499.560000px;}
.y94{bottom:502.500000px;}
.y142{bottom:506.235000px;}
.yce{bottom:508.035000px;}
.y22{bottom:509.115000px;}
.y10c{bottom:511.995000px;}
.y50{bottom:512.535000px;}
.ya1{bottom:515.040000px;}
.y141{bottom:521.715000px;}
.ycd{bottom:523.695000px;}
.y93{bottom:524.250000px;}
.y21{bottom:524.595000px;}
.y10b{bottom:524.955000px;}
.ya0{bottom:527.460000px;}
.y140{bottom:537.195000px;}
.y20{bottom:540.255000px;}
.y4d{bottom:545.115000px;}
.y92{bottom:546.000000px;}
.ycc{bottom:546.915000px;}
.y13f{bottom:552.675000px;}
.y1f{bottom:555.735000px;}
.y10a{bottom:561.675000px;}
.y91{bottom:567.750000px;}
.y13e{bottom:568.335000px;}
.ycb{bottom:570.315000px;}
.y1e{bottom:571.395000px;}
.y44{bottom:576.975000px;}
.y13d{bottom:583.815000px;}
.y90{bottom:589.800000px;}
.y1d{bottom:593.715000px;}
.y109{bottom:598.215000px;}
.y13c{bottom:599.295000px;}
.y8d{bottom:608.250000px;}
.yca{bottom:609.195000px;}
.y1c{bottom:609.375000px;}
.y8c{bottom:611.220000px;}
.y8f{bottom:611.250000px;}
.y13b{bottom:614.595000px;}
.yc9{bottom:624.675000px;}
.y13a{bottom:630.075000px;}
.y1b{bottom:631.695000px;}
.y108{bottom:634.935000px;}
.yc8{bottom:640.365000px;}
.y1a{bottom:647.385000px;}
.y8b{bottom:648.690000px;}
.yc7{bottom:655.485000px;}
.y139{bottom:661.425000px;}
.y8a{bottom:664.350000px;}
.y19{bottom:669.525000px;}
.yc6{bottom:671.145000px;}
.y106{bottom:671.685000px;}
.y138{bottom:677.265000px;}
.y89{bottom:680.550000px;}
.yc5{bottom:687.165000px;}
.y137{bottom:692.745000px;}
.y18{bottom:696.345000px;}
.y88{bottom:702.600000px;}
.yc4{bottom:702.645000px;}
.y136{bottom:708.225000px;}
.y17{bottom:711.825000px;}
.yc3{bottom:718.125000px;}
.y105{bottom:719.385000px;}
.y42{bottom:722.265000px;}
.y135{bottom:723.885000px;}
.y87{bottom:724.800000px;}
.y16{bottom:727.305000px;}
.yc2{bottom:733.605000px;}
.y104{bottom:734.685000px;}
.y3d{bottom:738.465000px;}
.y134{bottom:739.365000px;}
.y86{bottom:747.000000px;}
.yff{bottom:748.005000px;}
.yc1{bottom:749.265000px;}
.y133{bottom:754.845000px;}
.y15{bottom:762.045000px;}
.yc0{bottom:764.745000px;}
.y85{bottom:769.050000px;}
.y132{bottom:770.505000px;}
.ybf{bottom:780.405000px;}
.y14{bottom:782.025000px;}
.y131{bottom:785.625000px;}
.y82{bottom:788.400000px;}
.y84{bottom:791.250000px;}
.ybe{bottom:795.885000px;}
.yfe{bottom:801.825000px;}
.y3c{bottom:810.645000px;}
.ybd{bottom:811.365000px;}
.y81{bottom:813.300000px;}
.y13{bottom:814.425000px;}
.y130{bottom:817.305000px;}
.y3a{bottom:826.845000px;}
.yfd{bottom:828.645000px;}
.ybc{bottom:828.825000px;}
.y9f{bottom:830.010000px;}
.y12f{bottom:830.265000px;}
.y80{bottom:835.500000px;}
.y12{bottom:836.925000px;}
.ybb{bottom:844.305000px;}
.y11{bottom:845.385000px;}
.y9e{bottom:845.670000px;}
.y39{bottom:846.465000px;}
.y12e{bottom:851.145000px;}
.yfa{bottom:855.645000px;}
.y7f{bottom:857.565000px;}
.y9d{bottom:857.910000px;}
.yba{bottom:859.965000px;}
.y38{bottom:861.765000px;}
.y10{bottom:870.945000px;}
.y12d{bottom:872.925000px;}
.yb9{bottom:875.265000px;}
.yf7{bottom:882.645000px;}
.yb8{bottom:890.745000px;}
.y37{bottom:893.310000px;}
.y7e{bottom:895.410000px;}
.y36{bottom:905.730000px;}
.yf{bottom:910.050000px;}
.y7d{bottom:911.250000px;}
.y12c{bottom:914.370000px;}
.yf6{bottom:917.790000px;}
.yb7{bottom:922.290000px;}
.y7c{bottom:927.300000px;}
.yf5{bottom:933.270000px;}
.ye{bottom:934.170000px;}
.y12b{bottom:936.330000px;}
.yb6{bottom:938.850000px;}
.yf4{bottom:948.930000px;}
.y7b{bottom:951.750000px;}
.yb5{bottom:955.410000px;}
.y12a{bottom:957.930000px;}
.yd{bottom:958.290000px;}
.yf3{bottom:964.410000px;}
.yb4{bottom:971.970000px;}
.y7a{bottom:976.260000px;}
.y129{bottom:978.090000px;}
.yf2{bottom:980.070000px;}
.yb3{bottom:987.630000px;}
.yf1{bottom:995.190000px;}
.y128{bottom:1000.050000px;}
.yc{bottom:1000.590000px;}
.yb2{bottom:1003.110000px;}
.yf0{bottom:1010.850000px;}
.y79{bottom:1016.400000px;}
.yb1{bottom:1018.590000px;}
.y127{bottom:1019.670000px;}
.y78{bottom:1032.420000px;}
.yb0{bottom:1033.890000px;}
.y9{bottom:1034.070000px;}
.y126{bottom:1035.870000px;}
.yb{bottom:1039.290000px;}
.y77{bottom:1048.080000px;}
.yaf{bottom:1049.550000px;}
.yef{bottom:1050.090000px;}
.y8{bottom:1057.290000px;}
.y76{bottom:1063.560000px;}
.yae{bottom:1065.390000px;}
.yee{bottom:1065.570000px;}
.ya{bottom:1071.330000px;}
.y124{bottom:1072.410000px;}
.y75{bottom:1079.220000px;}
.yad{bottom:1081.050000px;}
.yed{bottom:1081.230000px;}
.y7{bottom:1086.630000px;}
.y74{bottom:1093.080000px;}
.yac{bottom:1096.530000px;}
.yec{bottom:1096.710000px;}
.y73{bottom:1103.160000px;}
.y6{bottom:1105.710000px;}
.yab{bottom:1112.190000px;}
.y72{bottom:1117.380000px;}
.y123{bottom:1120.110000px;}
.y5{bottom:1122.990000px;}
.yaa{bottom:1127.310000px;}
.y71{bottom:1127.640000px;}
.yeb{bottom:1127.850000px;}
.y4{bottom:1140.270000px;}
.ya9{bottom:1142.970000px;}
.y70{bottom:1143.300000px;}
.yea{bottom:1143.330000px;}
.y3{bottom:1158.300000px;}
.ya8{bottom:1158.660000px;}
.y6f{bottom:1158.810000px;}
.ye9{bottom:1158.840000px;}
.y9c{bottom:1158.960000px;}
.y6e{bottom:1175.160000px;}
.y35{bottom:1175.220000px;}
.y6d{bottom:1193.700000px;}
.y34{bottom:1193.760000px;}
.ha{height:12.335625px;}
.h13{height:15.480000px;}
.h28{height:18.900000px;}
.h29{height:19.440000px;}
.h2c{height:19.656000px;}
.h27{height:19.980000px;}
.h26{height:20.016000px;}
.h25{height:20.160000px;}
.h2b{height:20.340000px;}
.h2a{height:20.700000px;}
.h1c{height:21.060000px;}
.h1b{height:21.240000px;}
.h1f{height:26.100000px;}
.h20{height:26.280000px;}
.h18{height:30.476250px;}
.h1e{height:30.996000px;}
.h16{height:31.140000px;}
.h17{height:31.860000px;}
.hb{height:35.314453px;}
.h22{height:35.820000px;}
.h24{height:36.000000px;}
.h23{height:36.036000px;}
.h10{height:38.158594px;}
.h11{height:47.344922px;}
.h6{height:48.616875px;}
.hd{height:52.971680px;}
.h12{height:52.998047px;}
.h21{height:53.100000px;}
.hc{height:53.314453px;}
.he{height:54.421875px;}
.h19{height:54.438047px;}
.h1a{height:54.438647px;}
.h1d{height:55.503491px;}
.h7{height:55.796836px;}
.h8{height:58.621992px;}
.h3{height:60.226875px;}
.hf{height:62.153438px;}
.h1{height:65.010937px;}
.h4{height:66.757500px;}
.h14{height:71.460000px;}
.h2{height:72.562500px;}
.h5{height:81.995625px;}
.h9{height:84.898125px;}
.h15{height:144.576000px;}
.h0{height:1263.000000px;}
.w13{width:54.216000px;}
.w18{width:72.540000px;}
.w15{width:72.720000px;}
.w14{width:77.580000px;}
.w17{width:77.616000px;}
.w16{width:77.796000px;}
.wc{width:89.640000px;}
.wa{width:89.820000px;}
.wb{width:89.856000px;}
.wd{width:90.216000px;}
.w1b{width:94.500000px;}
.wf{width:94.680000px;}
.w1f{width:95.220000px;}
.w21{width:95.256000px;}
.w23{width:95.436000px;}
.w9{width:102.276000px;}
.w22{width:105.840000px;}
.w20{width:106.056000px;}
.w1e{width:108.216000px;}
.w2{width:115.056000px;}
.w10{width:132.156000px;}
.w12{width:150.690000px;}
.w11{width:150.870000px;}
.w19{width:162.390000px;}
.w1a{width:162.570000px;}
.w8{width:183.600000px;}
.w5{width:204.510000px;}
.w3{width:204.870000px;}
.w7{width:218.400000px;}
.w6{width:283.890000px;}
.w4{width:284.430000px;}
.w1d{width:297.435000px;}
.w1c{width:310.215000px;}
.we{width:360.255000px;}
.w1{width:893.999987px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x44{left:8.460000px;}
.x18{left:10.440000px;}
.x57{left:12.060000px;}
.x4f{left:13.680000px;}
.x50{left:15.660000px;}
.x54{left:17.280000px;}
.x1b{left:18.720000px;}
.x59{left:21.240000px;}
.x4d{left:22.320000px;}
.x58{left:23.760000px;}
.x67{left:25.920000px;}
.x21{left:27.900000px;}
.x65{left:28.980000px;}
.x2{left:30.059987px;}
.x47{left:31.530000px;}
.x4a{left:33.300000px;}
.x1c{left:34.380000px;}
.x66{left:36.000000px;}
.x49{left:37.305000px;}
.x28{left:38.340000px;}
.x13{left:40.680000px;}
.x1d{left:43.380000px;}
.x37{left:45.150000px;}
.xd{left:46.799987px;}
.xf{left:50.399987px;}
.x8{left:52.019987px;}
.x19{left:56.520000px;}
.x5d{left:58.320000px;}
.x5c{left:59.580000px;}
.x31{left:60.600000px;}
.x51{left:62.100000px;}
.x1f{left:64.440000px;}
.x26{left:66.960000px;}
.x15{left:70.740000px;}
.x5e{left:72.540000px;}
.x6a{left:74.339987px;}
.x5b{left:77.760000px;}
.x1a{left:84.960000px;}
.x29{left:87.120000px;}
.x1e{left:89.280000px;}
.x9{left:92.915987px;}
.x22{left:102.600000px;}
.x27{left:105.120000px;}
.x20{left:107.460000px;}
.x17{left:110.520000px;}
.x4c{left:112.716000px;}
.x60{left:119.385000px;}
.x2a{left:123.300000px;}
.x24{left:142.425000px;}
.x12{left:150.510000px;}
.x23{left:152.460000px;}
.x11{left:175.349987px;}
.x5f{left:196.590000px;}
.x30{left:203.250000px;}
.x25{left:206.505000px;}
.x4e{left:207.750000px;}
.x43{left:221.430000px;}
.x35{left:230.940000px;}
.x2c{left:237.720000px;}
.x5{left:244.109987px;}
.x39{left:245.850000px;}
.x34{left:249.450000px;}
.x2f{left:251.250000px;}
.x3e{left:258.135000px;}
.x53{left:262.335000px;}
.x14{left:265.935000px;}
.x3{left:270.254987px;}
.x33{left:276.600000px;}
.x2e{left:277.800000px;}
.x3c{left:284.505000px;}
.x32{left:285.600000px;}
.x40{left:286.665000px;}
.x2d{left:289.140000px;}
.x4{left:290.594987px;}
.x61{left:305.175000px;}
.xb{left:317.954987px;}
.x45{left:324.075000px;}
.xa{left:330.914987px;}
.x4b{left:339.554987px;}
.x42{left:344.234987px;}
.x2b{left:355.754987px;}
.x41{left:376.274987px;}
.x62{left:400.755000px;}
.xe{left:412.454987px;}
.x46{left:414.255000px;}
.x68{left:430.844987px;}
.x1{left:440.744987px;}
.xc{left:449.204987px;}
.x5a{left:453.165000px;}
.x16{left:471.165000px;}
.x69{left:476.204987px;}
.x6{left:478.904987px;}
.x52{left:491.505000px;}
.x36{left:504.450000px;}
.x7{left:506.444987px;}
.x55{left:564.585000px;}
.x48{left:594.465000px;}
.x63{left:602.970000px;}
.x38{left:643.050000px;}
.x10{left:659.489987px;}
.x3d{left:679.035000px;}
.x3b{left:681.105000px;}
.x3f{left:684.765000px;}
.x3a{left:689.190000px;}
.x64{left:709.170000px;}
.x56{left:715.650000px;}
@media print{
.v5{vertical-align:-58.400000pt;}
.vb{vertical-align:-56.960000pt;}
.v1{vertical-align:-55.680000pt;}
.v6{vertical-align:-54.400000pt;}
.v9{vertical-align:-44.026667pt;}
.v3{vertical-align:-16.000000pt;}
.v8{vertical-align:-8.005333pt;}
.v7{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:1.280000pt;}
.v4{vertical-align:16.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls11{letter-spacing:-1.120000pt;}
.ls18{letter-spacing:-0.864000pt;}
.ls23{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls2b{letter-spacing:-0.304000pt;}
.lse{letter-spacing:-0.196267pt;}
.ls22{letter-spacing:-0.192000pt;}
.ls26{letter-spacing:-0.128000pt;}
.ls29{letter-spacing:-0.112000pt;}
.ls21{letter-spacing:-0.096000pt;}
.lsd{letter-spacing:-0.024320pt;}
.ls16{letter-spacing:-0.016000pt;}
.lsb{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.016000pt;}
.ls14{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.096000pt;}
.ls15{letter-spacing:0.097067pt;}
.ls1{letter-spacing:0.160000pt;}
.ls2a{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.656000pt;}
.ls17{letter-spacing:0.736000pt;}
.ls4{letter-spacing:2.080000pt;}
.ls30{letter-spacing:2.656000pt;}
.ls5{letter-spacing:2.720000pt;}
.ls3{letter-spacing:4.000000pt;}
.ls2f{letter-spacing:26.976000pt;}
.ls6{letter-spacing:46.720000pt;}
.ls8{letter-spacing:49.440000pt;}
.ls24{letter-spacing:78.304000pt;}
.ls1a{letter-spacing:95.520000pt;}
.ls1c{letter-spacing:110.346667pt;}
.ls1b{letter-spacing:128.800000pt;}
.ls1d{letter-spacing:129.440000pt;}
.ls0{letter-spacing:137.760000pt;}
.ls1e{letter-spacing:148.000000pt;}
.ls28{letter-spacing:779.840000pt;}
.ls1f{letter-spacing:943.733333pt;}
.ls12{letter-spacing:1027.626667pt;}
.ls27{letter-spacing:1110.826667pt;}
.ls19{letter-spacing:1119.200000pt;}
.ls20{letter-spacing:1138.400000pt;}
.ls7{letter-spacing:1215.146667pt;}
.ls2d{letter-spacing:1254.186667pt;}
.ls25{letter-spacing:1279.146667pt;}
.ls2c{letter-spacing:1430.933333pt;}
.ls2e{letter-spacing:1512.853333pt;}
.ws16{word-spacing:-48.000000pt;}
.ws6{word-spacing:-18.400000pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsf{word-spacing:-14.817067pt;}
.ws3{word-spacing:-12.960000pt;}
.wsb{word-spacing:-12.656000pt;}
.ws5{word-spacing:-12.640000pt;}
.ws2{word-spacing:-12.615680pt;}
.ws4{word-spacing:-12.443733pt;}
.wsa{word-spacing:-12.320000pt;}
.ws1a{word-spacing:-12.192000pt;}
.wsc{word-spacing:-12.160000pt;}
.ws15{word-spacing:-12.096000pt;}
.wsd{word-spacing:-12.016000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws10{word-spacing:-11.984000pt;}
.ws13{word-spacing:-11.904000pt;}
.ws19{word-spacing:-11.888000pt;}
.ws18{word-spacing:-11.872000pt;}
.ws1c{word-spacing:-11.808000pt;}
.ws1b{word-spacing:-11.696000pt;}
.ws17{word-spacing:-11.680000pt;}
.ws14{word-spacing:-11.360000pt;}
.ws11{word-spacing:-11.136000pt;}
.ws7{word-spacing:-9.280000pt;}
.ws8{word-spacing:-8.000000pt;}
.wse{word-spacing:0.000000pt;}
.ws12{word-spacing:43.429333pt;}
._a{margin-left:-66.358827pt;}
._1{margin-left:-2.867200pt;}
._0{margin-left:-1.216000pt;}
._2{width:0.958720pt;}
._5{width:2.091947pt;}
._6{width:3.332053pt;}
._8{width:4.227627pt;}
._7{width:5.139840pt;}
._28{width:6.720000pt;}
._2a{width:7.946667pt;}
._3{width:27.600000pt;}
._4{width:29.146667pt;}
._14{width:90.449280pt;}
._10{width:99.552000pt;}
._11{width:107.616000pt;}
._f{width:111.520000pt;}
._d{width:122.186667pt;}
._e{width:129.376000pt;}
._12{width:152.800000pt;}
._13{width:159.840000pt;}
._25{width:183.680000pt;}
._c{width:226.593280pt;}
._1e{width:281.184000pt;}
._23{width:305.920000pt;}
._29{width:311.781333pt;}
._1f{width:328.960000pt;}
._27{width:344.298667pt;}
._21{width:361.600000pt;}
._20{width:367.866667pt;}
._26{width:396.098560pt;}
._15{width:403.866667pt;}
._1a{width:469.050667pt;}
._b{width:480.442667pt;}
._24{width:519.018667pt;}
._1d{width:556.497280pt;}
._22{width:574.965333pt;}
._17{width:611.915947pt;}
._18{width:654.565333pt;}
._19{width:676.064000pt;}
._1b{width:677.511893pt;}
._16{width:682.192000pt;}
._1c{width:717.856000pt;}
._9{width:925.706667pt;}
.fs8{font-size:10.880000pt;}
.fsd{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fsc{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsb{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y83{bottom:2.533333pt;}
.y3b{bottom:2.560000pt;}
.y8e{bottom:2.666667pt;}
.y125{bottom:2.720000pt;}
.y43{bottom:2.880000pt;}
.y52{bottom:3.040000pt;}
.yfb{bottom:7.360000pt;}
.yfc{bottom:7.680000pt;}
.y4c{bottom:7.840000pt;}
.yf8{bottom:9.480000pt;}
.y4f{bottom:9.920000pt;}
.y53{bottom:10.240000pt;}
.y101{bottom:12.320000pt;}
.y103{bottom:12.640000pt;}
.y41{bottom:13.920000pt;}
.y107{bottom:16.320000pt;}
.yf9{bottom:16.360000pt;}
.y4e{bottom:16.480000pt;}
.y48{bottom:16.640000pt;}
.y51{bottom:16.800000pt;}
.y4b{bottom:21.760000pt;}
.y100{bottom:26.080000pt;}
.y102{bottom:26.400000pt;}
.y3e{bottom:27.520000pt;}
.y40{bottom:27.840000pt;}
.y4a{bottom:32.640000pt;}
.y3f{bottom:41.600000pt;}
.y2{bottom:51.520000pt;}
.y46{bottom:52.960000pt;}
.y45{bottom:66.906667pt;}
.y1{bottom:68.320000pt;}
.y122{bottom:86.880000pt;}
.y9b{bottom:90.560000pt;}
.ye8{bottom:92.160000pt;}
.ya7{bottom:97.626667pt;}
.y6c{bottom:97.760000pt;}
.y121{bottom:100.800000pt;}
.y9a{bottom:101.600000pt;}
.ye7{bottom:106.080000pt;}
.y49{bottom:110.106667pt;}
.y6b{bottom:111.520000pt;}
.ya6{bottom:111.706667pt;}
.y120{bottom:114.560000pt;}
.y47{bottom:115.226667pt;}
.ye6{bottom:119.872000pt;}
.y6a{bottom:125.472000pt;}
.ya5{bottom:125.653333pt;}
.y11f{bottom:128.512000pt;}
.ye5{bottom:133.626667pt;}
.y69{bottom:139.226667pt;}
.ya4{bottom:139.573333pt;}
.y11e{bottom:142.266667pt;}
.ye4{bottom:147.546667pt;}
.ya3{bottom:150.453333pt;}
.y68{bottom:153.146667pt;}
.y11d{bottom:156.026667pt;}
.ye3{bottom:161.306667pt;}
.y67{bottom:166.906667pt;}
.y33{bottom:167.546667pt;}
.y11c{bottom:169.946667pt;}
.ye2{bottom:175.226667pt;}
.y66{bottom:180.506667pt;}
.y32{bottom:181.466667pt;}
.y11b{bottom:183.706667pt;}
.ye1{bottom:188.986667pt;}
.y65{bottom:194.426667pt;}
.y31{bottom:195.226667pt;}
.y11a{bottom:197.626667pt;}
.ye0{bottom:202.906667pt;}
.y64{bottom:208.506667pt;}
.y30{bottom:208.986667pt;}
.y119{bottom:211.386667pt;}
.ydf{bottom:216.666667pt;}
.y63{bottom:222.266667pt;}
.y2f{bottom:222.746667pt;}
.y118{bottom:223.066667pt;}
.yde{bottom:230.426667pt;}
.y62{bottom:236.186667pt;}
.y2e{bottom:236.666667pt;}
.y117{bottom:241.466667pt;}
.ydd{bottom:244.346667pt;}
.y61{bottom:249.946667pt;}
.y2d{bottom:250.426667pt;}
.ydc{bottom:258.106667pt;}
.y116{bottom:260.026667pt;}
.y60{bottom:263.546667pt;}
.ydb{bottom:271.866667pt;}
.y5f{bottom:277.466667pt;}
.y2c{bottom:277.786667pt;}
.y115{bottom:278.586667pt;}
.yda{bottom:285.626667pt;}
.y5e{bottom:291.546667pt;}
.y114{bottom:297.146667pt;}
.yd9{bottom:299.546667pt;}
.y2b{bottom:305.466667pt;}
.yd8{bottom:313.306667pt;}
.y113{bottom:315.706667pt;}
.y5d{bottom:319.066667pt;}
.y2a{bottom:321.626667pt;}
.yd7{bottom:327.226667pt;}
.y5c{bottom:332.826667pt;}
.y112{bottom:334.266667pt;}
.y14a{bottom:339.546667pt;}
.yd6{bottom:340.986667pt;}
.y5b{bottom:346.786667pt;}
.y29{bottom:347.426667pt;}
.y111{bottom:352.706667pt;}
.y149{bottom:353.346667pt;}
.y99{bottom:354.533333pt;}
.yd5{bottom:354.786667pt;}
.y5a{bottom:360.866667pt;}
.y28{bottom:363.586667pt;}
.y148{bottom:367.106667pt;}
.yd4{bottom:368.706667pt;}
.y98{bottom:369.066667pt;}
.y110{bottom:371.266667pt;}
.y59{bottom:374.786667pt;}
.y27{bottom:377.346667pt;}
.y147{bottom:380.866667pt;}
.yd3{bottom:382.466667pt;}
.y58{bottom:388.386667pt;}
.y97{bottom:388.400000pt;}
.y26{bottom:391.266667pt;}
.y146{bottom:394.786667pt;}
.yd2{bottom:396.386667pt;}
.y57{bottom:402.146667pt;}
.y96{bottom:407.733333pt;}
.y145{bottom:408.546667pt;}
.yd1{bottom:410.146667pt;}
.y25{bottom:411.106667pt;}
.y10f{bottom:413.506667pt;}
.y56{bottom:416.386667pt;}
.y144{bottom:422.306667pt;}
.yd0{bottom:423.906667pt;}
.y24{bottom:425.026667pt;}
.y95{bottom:427.066667pt;}
.y10e{bottom:427.266667pt;}
.y55{bottom:429.986667pt;}
.y143{bottom:436.066667pt;}
.ycf{bottom:437.826667pt;}
.y23{bottom:438.786667pt;}
.y10d{bottom:441.186667pt;}
.y54{bottom:443.746667pt;}
.ya2{bottom:444.053333pt;}
.y94{bottom:446.666667pt;}
.y142{bottom:449.986667pt;}
.yce{bottom:451.586667pt;}
.y22{bottom:452.546667pt;}
.y10c{bottom:455.106667pt;}
.y50{bottom:455.586667pt;}
.ya1{bottom:457.813333pt;}
.y141{bottom:463.746667pt;}
.ycd{bottom:465.506667pt;}
.y93{bottom:466.000000pt;}
.y21{bottom:466.306667pt;}
.y10b{bottom:466.626667pt;}
.ya0{bottom:468.853333pt;}
.y140{bottom:477.506667pt;}
.y20{bottom:480.226667pt;}
.y4d{bottom:484.546667pt;}
.y92{bottom:485.333333pt;}
.ycc{bottom:486.146667pt;}
.y13f{bottom:491.266667pt;}
.y1f{bottom:493.986667pt;}
.y10a{bottom:499.266667pt;}
.y91{bottom:504.666667pt;}
.y13e{bottom:505.186667pt;}
.ycb{bottom:506.946667pt;}
.y1e{bottom:507.906667pt;}
.y44{bottom:512.866667pt;}
.y13d{bottom:518.946667pt;}
.y90{bottom:524.266667pt;}
.y1d{bottom:527.746667pt;}
.y109{bottom:531.746667pt;}
.y13c{bottom:532.706667pt;}
.y8d{bottom:540.666667pt;}
.yca{bottom:541.506667pt;}
.y1c{bottom:541.666667pt;}
.y8c{bottom:543.306667pt;}
.y8f{bottom:543.333333pt;}
.y13b{bottom:546.306667pt;}
.yc9{bottom:555.266667pt;}
.y13a{bottom:560.066667pt;}
.y1b{bottom:561.506667pt;}
.y108{bottom:564.386667pt;}
.yc8{bottom:569.213333pt;}
.y1a{bottom:575.453333pt;}
.y8b{bottom:576.613333pt;}
.yc7{bottom:582.653333pt;}
.y139{bottom:587.933333pt;}
.y8a{bottom:590.533333pt;}
.y19{bottom:595.133333pt;}
.yc6{bottom:596.573333pt;}
.y106{bottom:597.053333pt;}
.y138{bottom:602.013333pt;}
.y89{bottom:604.933333pt;}
.yc5{bottom:610.813333pt;}
.y137{bottom:615.773333pt;}
.y18{bottom:618.973333pt;}
.y88{bottom:624.533333pt;}
.yc4{bottom:624.573333pt;}
.y136{bottom:629.533333pt;}
.y17{bottom:632.733333pt;}
.yc3{bottom:638.333333pt;}
.y105{bottom:639.453333pt;}
.y42{bottom:642.013333pt;}
.y135{bottom:643.453333pt;}
.y87{bottom:644.266667pt;}
.y16{bottom:646.493333pt;}
.yc2{bottom:652.093333pt;}
.y104{bottom:653.053333pt;}
.y3d{bottom:656.413333pt;}
.y134{bottom:657.213333pt;}
.y86{bottom:664.000000pt;}
.yff{bottom:664.893333pt;}
.yc1{bottom:666.013333pt;}
.y133{bottom:670.973333pt;}
.y15{bottom:677.373333pt;}
.yc0{bottom:679.773333pt;}
.y85{bottom:683.600000pt;}
.y132{bottom:684.893333pt;}
.ybf{bottom:693.693333pt;}
.y14{bottom:695.133333pt;}
.y131{bottom:698.333333pt;}
.y82{bottom:700.800000pt;}
.y84{bottom:703.333333pt;}
.ybe{bottom:707.453333pt;}
.yfe{bottom:712.733333pt;}
.y3c{bottom:720.573333pt;}
.ybd{bottom:721.213333pt;}
.y81{bottom:722.933333pt;}
.y13{bottom:723.933333pt;}
.y130{bottom:726.493333pt;}
.y3a{bottom:734.973333pt;}
.yfd{bottom:736.573333pt;}
.ybc{bottom:736.733333pt;}
.y9f{bottom:737.786667pt;}
.y12f{bottom:738.013333pt;}
.y80{bottom:742.666667pt;}
.y12{bottom:743.933333pt;}
.ybb{bottom:750.493333pt;}
.y11{bottom:751.453333pt;}
.y9e{bottom:751.706667pt;}
.y39{bottom:752.413333pt;}
.y12e{bottom:756.573333pt;}
.yfa{bottom:760.573333pt;}
.y7f{bottom:762.280000pt;}
.y9d{bottom:762.586667pt;}
.yba{bottom:764.413333pt;}
.y38{bottom:766.013333pt;}
.y10{bottom:774.173333pt;}
.y12d{bottom:775.933333pt;}
.yb9{bottom:778.013333pt;}
.yf7{bottom:784.573333pt;}
.yb8{bottom:791.773333pt;}
.y37{bottom:794.053333pt;}
.y7e{bottom:795.920000pt;}
.y36{bottom:805.093333pt;}
.yf{bottom:808.933333pt;}
.y7d{bottom:810.000000pt;}
.y12c{bottom:812.773333pt;}
.yf6{bottom:815.813333pt;}
.yb7{bottom:819.813333pt;}
.y7c{bottom:824.266667pt;}
.yf5{bottom:829.573333pt;}
.ye{bottom:830.373333pt;}
.y12b{bottom:832.293333pt;}
.yb6{bottom:834.533333pt;}
.yf4{bottom:843.493333pt;}
.y7b{bottom:846.000000pt;}
.yb5{bottom:849.253333pt;}
.y12a{bottom:851.493333pt;}
.yd{bottom:851.813333pt;}
.yf3{bottom:857.253333pt;}
.yb4{bottom:863.973333pt;}
.y7a{bottom:867.786667pt;}
.y129{bottom:869.413333pt;}
.yf2{bottom:871.173333pt;}
.yb3{bottom:877.893333pt;}
.yf1{bottom:884.613333pt;}
.y128{bottom:888.933333pt;}
.yc{bottom:889.413333pt;}
.yb2{bottom:891.653333pt;}
.yf0{bottom:898.533333pt;}
.y79{bottom:903.466667pt;}
.yb1{bottom:905.413333pt;}
.y127{bottom:906.373333pt;}
.y78{bottom:917.706667pt;}
.yb0{bottom:919.013333pt;}
.y9{bottom:919.173333pt;}
.y126{bottom:920.773333pt;}
.yb{bottom:923.813333pt;}
.y77{bottom:931.626667pt;}
.yaf{bottom:932.933333pt;}
.yef{bottom:933.413333pt;}
.y8{bottom:939.813333pt;}
.y76{bottom:945.386667pt;}
.yae{bottom:947.013333pt;}
.yee{bottom:947.173333pt;}
.ya{bottom:952.293333pt;}
.y124{bottom:953.253333pt;}
.y75{bottom:959.306667pt;}
.yad{bottom:960.933333pt;}
.yed{bottom:961.093333pt;}
.y7{bottom:965.893333pt;}
.y74{bottom:971.626667pt;}
.yac{bottom:974.693333pt;}
.yec{bottom:974.853333pt;}
.y73{bottom:980.586667pt;}
.y6{bottom:982.853333pt;}
.yab{bottom:988.613333pt;}
.y72{bottom:993.226667pt;}
.y123{bottom:995.653333pt;}
.y5{bottom:998.213333pt;}
.yaa{bottom:1002.053333pt;}
.y71{bottom:1002.346667pt;}
.yeb{bottom:1002.533333pt;}
.y4{bottom:1013.573333pt;}
.ya9{bottom:1015.973333pt;}
.y70{bottom:1016.266667pt;}
.yea{bottom:1016.293333pt;}
.y3{bottom:1029.600000pt;}
.ya8{bottom:1029.920000pt;}
.y6f{bottom:1030.053333pt;}
.ye9{bottom:1030.080000pt;}
.y9c{bottom:1030.186667pt;}
.y6e{bottom:1044.586667pt;}
.y35{bottom:1044.640000pt;}
.y6d{bottom:1061.066667pt;}
.y34{bottom:1061.120000pt;}
.ha{height:10.965000pt;}
.h13{height:13.760000pt;}
.h28{height:16.800000pt;}
.h29{height:17.280000pt;}
.h2c{height:17.472000pt;}
.h27{height:17.760000pt;}
.h26{height:17.792000pt;}
.h25{height:17.920000pt;}
.h2b{height:18.080000pt;}
.h2a{height:18.400000pt;}
.h1c{height:18.720000pt;}
.h1b{height:18.880000pt;}
.h1f{height:23.200000pt;}
.h20{height:23.360000pt;}
.h18{height:27.090000pt;}
.h1e{height:27.552000pt;}
.h16{height:27.680000pt;}
.h17{height:28.320000pt;}
.hb{height:31.390625pt;}
.h22{height:31.840000pt;}
.h24{height:32.000000pt;}
.h23{height:32.032000pt;}
.h10{height:33.918750pt;}
.h11{height:42.084375pt;}
.h6{height:43.215000pt;}
.hd{height:47.085938pt;}
.h12{height:47.109375pt;}
.h21{height:47.200000pt;}
.hc{height:47.390625pt;}
.he{height:48.375000pt;}
.h19{height:48.389375pt;}
.h1a{height:48.389908pt;}
.h1d{height:49.336436pt;}
.h7{height:49.597187pt;}
.h8{height:52.108438pt;}
.h3{height:53.535000pt;}
.hf{height:55.247500pt;}
.h1{height:57.787500pt;}
.h4{height:59.340000pt;}
.h14{height:63.520000pt;}
.h2{height:64.500000pt;}
.h5{height:72.885000pt;}
.h9{height:75.465000pt;}
.h15{height:128.512000pt;}
.h0{height:1122.666667pt;}
.w13{width:48.192000pt;}
.w18{width:64.480000pt;}
.w15{width:64.640000pt;}
.w14{width:68.960000pt;}
.w17{width:68.992000pt;}
.w16{width:69.152000pt;}
.wc{width:79.680000pt;}
.wa{width:79.840000pt;}
.wb{width:79.872000pt;}
.wd{width:80.192000pt;}
.w1b{width:84.000000pt;}
.wf{width:84.160000pt;}
.w1f{width:84.640000pt;}
.w21{width:84.672000pt;}
.w23{width:84.832000pt;}
.w9{width:90.912000pt;}
.w22{width:94.080000pt;}
.w20{width:94.272000pt;}
.w1e{width:96.192000pt;}
.w2{width:102.272000pt;}
.w10{width:117.472000pt;}
.w12{width:133.946667pt;}
.w11{width:134.106667pt;}
.w19{width:144.346667pt;}
.w1a{width:144.506667pt;}
.w8{width:163.200000pt;}
.w5{width:181.786667pt;}
.w3{width:182.106667pt;}
.w7{width:194.133333pt;}
.w6{width:252.346667pt;}
.w4{width:252.826667pt;}
.w1d{width:264.386667pt;}
.w1c{width:275.746667pt;}
.we{width:320.226667pt;}
.w1{width:794.666655pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x44{left:7.520000pt;}
.x18{left:9.280000pt;}
.x57{left:10.720000pt;}
.x4f{left:12.160000pt;}
.x50{left:13.920000pt;}
.x54{left:15.360000pt;}
.x1b{left:16.640000pt;}
.x59{left:18.880000pt;}
.x4d{left:19.840000pt;}
.x58{left:21.120000pt;}
.x67{left:23.040000pt;}
.x21{left:24.800000pt;}
.x65{left:25.760000pt;}
.x2{left:26.719988pt;}
.x47{left:28.026667pt;}
.x4a{left:29.600000pt;}
.x1c{left:30.560000pt;}
.x66{left:32.000000pt;}
.x49{left:33.160000pt;}
.x28{left:34.080000pt;}
.x13{left:36.160000pt;}
.x1d{left:38.560000pt;}
.x37{left:40.133333pt;}
.xd{left:41.599988pt;}
.xf{left:44.799988pt;}
.x8{left:46.239988pt;}
.x19{left:50.240000pt;}
.x5d{left:51.840000pt;}
.x5c{left:52.960000pt;}
.x31{left:53.866667pt;}
.x51{left:55.200000pt;}
.x1f{left:57.280000pt;}
.x26{left:59.520000pt;}
.x15{left:62.880000pt;}
.x5e{left:64.480000pt;}
.x6a{left:66.079988pt;}
.x5b{left:69.120000pt;}
.x1a{left:75.520000pt;}
.x29{left:77.440000pt;}
.x1e{left:79.360000pt;}
.x9{left:82.591988pt;}
.x22{left:91.200000pt;}
.x27{left:93.440000pt;}
.x20{left:95.520000pt;}
.x17{left:98.240000pt;}
.x4c{left:100.192000pt;}
.x60{left:106.120000pt;}
.x2a{left:109.600000pt;}
.x24{left:126.600000pt;}
.x12{left:133.786667pt;}
.x23{left:135.520000pt;}
.x11{left:155.866655pt;}
.x5f{left:174.746667pt;}
.x30{left:180.666667pt;}
.x25{left:183.560000pt;}
.x4e{left:184.666667pt;}
.x43{left:196.826667pt;}
.x35{left:205.280000pt;}
.x2c{left:211.306667pt;}
.x5{left:216.986655pt;}
.x39{left:218.533333pt;}
.x34{left:221.733333pt;}
.x2f{left:223.333333pt;}
.x3e{left:229.453333pt;}
.x53{left:233.186667pt;}
.x14{left:236.386667pt;}
.x3{left:240.226655pt;}
.x33{left:245.866667pt;}
.x2e{left:246.933333pt;}
.x3c{left:252.893333pt;}
.x32{left:253.866667pt;}
.x40{left:254.813333pt;}
.x2d{left:257.013333pt;}
.x4{left:258.306655pt;}
.x61{left:271.266667pt;}
.xb{left:282.626655pt;}
.x45{left:288.066667pt;}
.xa{left:294.146655pt;}
.x4b{left:301.826655pt;}
.x42{left:305.986655pt;}
.x2b{left:316.226655pt;}
.x41{left:334.466655pt;}
.x62{left:356.226667pt;}
.xe{left:366.626655pt;}
.x46{left:368.226667pt;}
.x68{left:382.973321pt;}
.x1{left:391.773321pt;}
.xc{left:399.293321pt;}
.x5a{left:402.813333pt;}
.x16{left:418.813333pt;}
.x69{left:423.293321pt;}
.x6{left:425.693321pt;}
.x52{left:436.893333pt;}
.x36{left:448.400000pt;}
.x7{left:450.173321pt;}
.x55{left:501.853333pt;}
.x48{left:528.413333pt;}
.x63{left:535.973333pt;}
.x38{left:571.600000pt;}
.x10{left:586.213321pt;}
.x3d{left:603.586667pt;}
.x3b{left:605.426667pt;}
.x3f{left:608.680000pt;}
.x3a{left:612.613333pt;}
.x64{left:630.373333pt;}
.x56{left:636.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; }
  