
    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_f247e9472ed4fa05cfe55e9e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_c6d0e22bc7981e7a952d4e0c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_b9d9b06841409ac8bcd50ce3.woff')format("woff");}.ff3{font-family:ff3;line-height:1.435059;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_69a43f5724fd16b36833398e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_13b5b7b6245aca8b217b7624.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_226d111316d1c1324e174096.woff')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_684679df7f2bfe47ce83d1de.woff')format("woff");}.ff7{font-family:ff7;line-height:0.934082;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_17e1664da23bc22c5ae95b79.woff')format("woff");}.ff8{font-family:ff8;line-height:1.136230;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_d280a8cca75509eb88ee80c3.woff')format("woff");}.ff9{font-family:ff9;line-height:1.372070;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_d95c14c1e3eed5b8fe693219.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c535a4c55b17b0d16e194fc6.woff')format("woff");}.ffb{font-family:ffb;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;}
.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(0.250627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250627,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.451870px;}
.ls9{letter-spacing:-0.432000px;}
.ls16{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.181200px;}
.lsd{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.131087px;}
.ls2{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.222803px;}
.lsc{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.480000px;}
.ls13{letter-spacing:0.720000px;}
.ls6{letter-spacing:20.477280px;}
.ls3{letter-spacing:21.197280px;}
.lsf{letter-spacing:163.519146px;}
.ls0{letter-spacing:849.216000px;}
.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;}
}
.ws2{word-spacing:-21.420000px;}
.ws3{word-spacing:-18.216000px;}
.wse{word-spacing:-18.144000px;}
.ws15{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.928000px;}
.ws8{word-spacing:-17.856000px;}
.ws16{word-spacing:-17.712000px;}
.ws4{word-spacing:-17.568000px;}
.wsa{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.238800px;}
.wsb{word-spacing:-14.940000px;}
.wsc{word-spacing:-13.410720px;}
.ws12{word-spacing:-0.048543px;}
.ws1{word-spacing:0.000000px;}
.wsf{word-spacing:53.250689px;}
.ws11{word-spacing:86.649057px;}
.ws10{word-spacing:94.896586px;}
.ws14{word-spacing:110.412965px;}
.ws13{word-spacing:110.413189px;}
.ws6{word-spacing:240.900000px;}
.ws5{word-spacing:241.500000px;}
.wsd{word-spacing:256.649520px;}
._b{margin-left:-4.536000px;}
._8{margin-left:-2.884320px;}
._0{margin-left:-1.723680px;}
._1{width:1.053360px;}
._7{width:2.110320px;}
._9{width:3.432000px;}
._a{width:4.538640px;}
._c{width:6.478800px;}
._e{width:7.921200px;}
._11{width:9.792000px;}
._10{width:10.944000px;}
._15{width:12.024000px;}
._f{width:13.332960px;}
._4{width:14.463360px;}
._3{width:15.560640px;}
._2{width:16.603680px;}
._d{width:19.728000px;}
._6{width:21.240000px;}
._5{width:22.392000px;}
._12{width:23.688000px;}
._3c{width:25.776000px;}
._16{width:27.000000px;}
._33{width:28.800000px;}
._45{width:30.096000px;}
._46{width:31.104000px;}
._49{width:32.832000px;}
._42{width:34.488000px;}
._14{width:39.192000px;}
._13{width:40.440000px;}
._3a{width:44.496000px;}
._35{width:45.792000px;}
._34{width:46.800000px;}
._47{width:49.680000px;}
._32{width:50.976000px;}
._48{width:52.783680px;}
._31{width:54.576000px;}
._30{width:56.083680px;}
._38{width:57.172320px;}
._3d{width:64.440000px;}
._18{width:67.380363px;}
._19{width:70.010762px;}
._1d{width:71.220900px;}
._2d{width:74.520000px;}
._41{width:76.536000px;}
._40{width:82.440000px;}
._3b{width:85.104000px;}
._22{width:95.831954px;}
._2c{width:98.784000px;}
._3e{width:99.936000px;}
._3f{width:101.424000px;}
._37{width:114.048000px;}
._43{width:116.568000px;}
._27{width:119.539714px;}
._1c{width:120.569088px;}
._2f{width:128.376000px;}
._39{width:136.440000px;}
._21{width:144.728495px;}
._28{width:164.459040px;}
._2a{width:168.887903px;}
._44{width:184.248000px;}
._1b{width:203.784825px;}
._36{width:234.720000px;}
._2e{width:343.416000px;}
._24{width:364.114072px;}
._2b{width:421.963092px;}
._1f{width:572.543245px;}
._25{width:600.768097px;}
._29{width:639.364212px;}
._1a{width:683.845007px;}
._26{width:734.070654px;}
._23{width:795.040409px;}
._4a{width:824.844000px;}
._17{width:1139.914107px;}
._20{width:1226.637627px;}
._1e{width:1246.533479px;}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs6{font-size:48.240000px;}
.fs7{font-size:48.542513px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:72.144000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y89{bottom:3.960000px;}
.ye9{bottom:4.019633px;}
.yba{bottom:5.580000px;}
.yb7{bottom:5.760000px;}
.yee{bottom:7.020000px;}
.yfc{bottom:7.200000px;}
.yeb{bottom:7.560000px;}
.ya6{bottom:11.670000px;}
.ycd{bottom:12.600000px;}
.ye8{bottom:20.182053px;}
.yaf{bottom:22.245000px;}
.yf4{bottom:30.780000px;}
.yed{bottom:30.960000px;}
.yf7{bottom:30.990000px;}
.ye7{bottom:36.372211px;}
.ya7{bottom:43.410000px;}
.yd4{bottom:46.830000px;}
.ye6{bottom:52.534408px;}
.yf9{bottom:54.540000px;}
.yfe{bottom:54.585000px;}
.yf1{bottom:54.720000px;}
.yf6{bottom:54.750000px;}
.y2{bottom:56.160000px;}
.yce{bottom:61.125000px;}
.ye5{bottom:68.696604px;}
.y1{bottom:74.160000px;}
.ya8{bottom:75.135000px;}
.yf0{bottom:78.480000px;}
.ye4{bottom:84.858800px;}
.ye3{bottom:101.020996px;}
.yf3{bottom:102.240000px;}
.yfb{bottom:102.420000px;}
.ya9{bottom:106.845000px;}
.ycf{bottom:109.620000px;}
.y12b{bottom:113.940000px;}
.ye2{bottom:117.206680px;}
.y39{bottom:118.080000px;}
.y87{bottom:122.040000px;}
.ydd{bottom:132.480000px;}
.ye1{bottom:133.368876px;}
.y58{bottom:135.180000px;}
.y70{bottom:137.520000px;}
.yaa{bottom:138.570000px;}
.y113{bottom:139.320000px;}
.y12a{bottom:145.080000px;}
.y10c{bottom:146.160000px;}
.y38{bottom:149.040000px;}
.ye0{bottom:149.531072px;}
.y86{bottom:151.020000px;}
.y102{bottom:151.740000px;}
.yd0{bottom:158.145000px;}
.yc9{bottom:160.380000px;}
.ydc{bottom:163.440000px;}
.ydf{bottom:165.693269px;}
.ya2{bottom:165.960000px;}
.y6f{bottom:168.510000px;}
.yab{bottom:170.280000px;}
.y112{bottom:173.190000px;}
.y57{bottom:175.170000px;}
.y129{bottom:176.070000px;}
.y101{bottom:176.250000px;}
.y10a{bottom:178.590000px;}
.y37{bottom:180.210000px;}
.y85{bottom:189.210000px;}
.ya5{bottom:192.525000px;}
.ya1{bottom:197.130000px;}
.ydb{bottom:197.850000px;}
.yde{bottom:198.045000px;}
.y111{bottom:198.930000px;}
.y6e{bottom:199.650000px;}
.y100{bottom:200.010000px;}
.yc8{bottom:200.550000px;}
.yac{bottom:201.990000px;}
.y56{bottom:206.310000px;}
.yd1{bottom:206.640000px;}
.y128{bottom:207.210000px;}
.y146{bottom:208.290000px;}
.y36{bottom:211.170000px;}
.ya4{bottom:213.225000px;}
.y84{bottom:220.170000px;}
.y6d{bottom:230.610000px;}
.yc7{bottom:231.510000px;}
.yad{bottom:233.745000px;}
.y55{bottom:237.270000px;}
.y127{bottom:238.170000px;}
.y145{bottom:239.430000px;}
.y35{bottom:242.310000px;}
.ycc{bottom:242.925000px;}
.ya0{bottom:243.210000px;}
.yff{bottom:247.530000px;}
.y83{bottom:251.310000px;}
.yd2{bottom:255.135000px;}
.ycb{bottom:256.605000px;}
.y9f{bottom:259.950000px;}
.ya3{bottom:260.100000px;}
.y6c{bottom:261.750000px;}
.yc6{bottom:262.650000px;}
.yae{bottom:265.470000px;}
.y54{bottom:268.410000px;}
.y126{bottom:269.310000px;}
.y144{bottom:270.390000px;}
.y34{bottom:282.270000px;}
.y6b{bottom:292.710000px;}
.yc5{bottom:293.610000px;}
.yb0{bottom:294.690000px;}
.y125{bottom:300.270000px;}
.y143{bottom:301.350000px;}
.yd3{bottom:303.660000px;}
.y53{bottom:308.370000px;}
.y33{bottom:313.410000px;}
.y6a{bottom:323.670000px;}
.yc4{bottom:324.750000px;}
.y124{bottom:331.410000px;}
.y142{bottom:332.490000px;}
.y52{bottom:339.510000px;}
.y32{bottom:344.370000px;}
.yc3{bottom:355.710000px;}
.y123{bottom:362.370000px;}
.y141{bottom:363.450000px;}
.y69{bottom:363.810000px;}
.yfd{bottom:366.690000px;}
.y51{bottom:370.470000px;}
.y31{bottom:375.510000px;}
.y122{bottom:393.510000px;}
.y140{bottom:394.590000px;}
.y68{bottom:394.770000px;}
.yda{bottom:395.670000px;}
.yc2{bottom:395.850000px;}
.y50{bottom:401.610000px;}
.y30{bottom:406.470000px;}
.yc1{bottom:422.355000px;}
.y121{bottom:424.515000px;}
.y13f{bottom:425.595000px;}
.y67{bottom:425.955000px;}
.y4f{bottom:432.615000px;}
.y2f{bottom:437.655000px;}
.yfa{bottom:438.015000px;}
.y19{bottom:438.375000px;}
.yc0{bottom:441.975000px;}
.y120{bottom:455.655000px;}
.y13e{bottom:456.735000px;}
.y66{bottom:456.915000px;}
.ybf{bottom:461.595000px;}
.y2e{bottom:468.615000px;}
.y18{bottom:472.215000px;}
.y4e{bottom:472.755000px;}
.ybe{bottom:481.215000px;}
.y11f{bottom:486.615000px;}
.y13d{bottom:487.695000px;}
.y65{bottom:488.055000px;}
.y82{bottom:499.755000px;}
.ybd{bottom:501.015000px;}
.y17{bottom:503.355000px;}
.y4d{bottom:503.715000px;}
.y2d{bottom:508.755000px;}
.y11e{bottom:517.755000px;}
.y13c{bottom:518.835000px;}
.y64{bottom:519.015000px;}
.ybc{bottom:520.635000px;}
.y109{bottom:521.535000px;}
.y81{bottom:530.715000px;}
.y16{bottom:534.315000px;}
.y4c{bottom:534.855000px;}
.y2c{bottom:539.715000px;}
.ybb{bottom:540.255000px;}
.y11d{bottom:548.715000px;}
.y13b{bottom:549.795000px;}
.y110{bottom:551.415000px;}
.y108{bottom:552.495000px;}
.yf8{bottom:557.175000px;}
.y63{bottom:559.155000px;}
.yb9{bottom:559.875000px;}
.y80{bottom:561.855000px;}
.y15{bottom:565.455000px;}
.y4b{bottom:565.815000px;}
.y2b{bottom:570.855000px;}
.y10f{bottom:572.115000px;}
.yb8{bottom:579.495000px;}
.y11c{bottom:579.855000px;}
.y10b{bottom:580.575000px;}
.y13a{bottom:580.935000px;}
.y107{bottom:583.635000px;}
.y62{bottom:590.115000px;}
.y7f{bottom:592.815000px;}
.y9e{bottom:593.535000px;}
.y14{bottom:596.415000px;}
.y4a{bottom:596.955000px;}
.y10e{bottom:597.855000px;}
.yb6{bottom:599.115000px;}
.y2a{bottom:601.815000px;}
.y11b{bottom:610.815000px;}
.y139{bottom:611.895000px;}
.y106{bottom:614.595000px;}
.yb5{bottom:619.635000px;}
.y61{bottom:621.255000px;}
.y7e{bottom:623.955000px;}
.y13{bottom:627.555000px;}
.y49{bottom:627.915000px;}
.yf5{bottom:628.455000px;}
.y29{bottom:632.955000px;}
.y9d{bottom:633.135000px;}
.y11a{bottom:641.955000px;}
.y138{bottom:643.035000px;}
.y105{bottom:645.735000px;}
.y60{bottom:652.215000px;}
.yb4{bottom:654.015000px;}
.y7d{bottom:654.915000px;}
.y12{bottom:658.545000px;}
.y48{bottom:659.085000px;}
.y28{bottom:663.945000px;}
.y9c{bottom:664.125000px;}
.y119{bottom:672.945000px;}
.y137{bottom:674.025000px;}
.y104{bottom:675.465000px;}
.yb3{bottom:683.025000px;}
.y5f{bottom:683.385000px;}
.y7c{bottom:686.085000px;}
.y11{bottom:689.685000px;}
.y103{bottom:692.205000px;}
.y27{bottom:695.085000px;}
.y9b{bottom:695.265000px;}
.yf2{bottom:699.945000px;}
.y118{bottom:704.085000px;}
.y136{bottom:705.165000px;}
.y47{bottom:710.385000px;}
.y5e{bottom:714.345000px;}
.y7b{bottom:717.045000px;}
.y10{bottom:720.645000px;}
.y9a{bottom:726.225000px;}
.yb2{bottom:727.125000px;}
.y46{bottom:733.245000px;}
.y26{bottom:735.045000px;}
.y135{bottom:736.125000px;}
.yd9{bottom:738.645000px;}
.y5d{bottom:745.485000px;}
.y7a{bottom:748.005000px;}
.yf{bottom:751.785000px;}
.y99{bottom:757.365000px;}
.yb1{bottom:761.505000px;}
.yca{bottom:761.580000px;}
.y45{bottom:762.225000px;}
.y25{bottom:766.005000px;}
.y134{bottom:767.265000px;}
.yd8{bottom:769.605000px;}
.y79{bottom:779.145000px;}
.ye{bottom:782.745000px;}
.y5c{bottom:785.445000px;}
.y44{bottom:793.365000px;}
.y24{bottom:797.145000px;}
.y98{bottom:797.325000px;}
.y133{bottom:798.225000px;}
.yd7{bottom:800.745000px;}
.yd{bottom:813.705000px;}
.yef{bottom:818.925000px;}
.y78{bottom:821.445000px;}
.y97{bottom:823.785000px;}
.y43{bottom:824.325000px;}
.y23{bottom:828.105000px;}
.y132{bottom:829.365000px;}
.y5b{bottom:834.585000px;}
.y96{bottom:844.485000px;}
.yc{bottom:844.845000px;}
.yd6{bottom:846.825000px;}
.y42{bottom:855.465000px;}
.y22{bottom:859.245000px;}
.y131{bottom:860.325000px;}
.y5a{bottom:863.565000px;}
.y95{bottom:865.185000px;}
.yd5{bottom:872.565000px;}
.y77{bottom:873.465000px;}
.yb{bottom:875.805000px;}
.y59{bottom:877.605000px;}
.y94{bottom:885.885000px;}
.y41{bottom:886.425000px;}
.y21{bottom:890.205000px;}
.y130{bottom:891.465000px;}
.y76{bottom:904.470000px;}
.y10d{bottom:904.650000px;}
.y93{bottom:906.630000px;}
.ya{bottom:906.990000px;}
.yec{bottom:914.190000px;}
.y20{bottom:921.390000px;}
.y12f{bottom:922.470000px;}
.y40{bottom:926.610000px;}
.y92{bottom:927.330000px;}
.y75{bottom:935.610000px;}
.y9{bottom:937.950000px;}
.y91{bottom:948.030000px;}
.y117{bottom:952.350000px;}
.y12e{bottom:953.610000px;}
.y3f{bottom:957.570000px;}
.y1f{bottom:961.350000px;}
.yea{bottom:962.610000px;}
.y74{bottom:966.570000px;}
.y90{bottom:968.730000px;}
.y8{bottom:969.090000px;}
.y116{bottom:983.490000px;}
.y12d{bottom:984.570000px;}
.y8f{bottom:989.430000px;}
.y1e{bottom:992.490000px;}
.y3e{bottom:997.710000px;}
.y7{bottom:1000.050000px;}
.y73{bottom:1006.710000px;}
.y8e{bottom:1010.130000px;}
.y115{bottom:1014.450000px;}
.y12c{bottom:1015.710000px;}
.y1d{bottom:1023.450000px;}
.y3d{bottom:1028.670000px;}
.y8d{bottom:1030.830000px;}
.y6{bottom:1031.190000px;}
.y72{bottom:1046.670000px;}
.y8c{bottom:1051.530000px;}
.y1c{bottom:1054.590000px;}
.y5{bottom:1059.810000px;}
.y114{bottom:1065.930000px;}
.y3c{bottom:1068.810000px;}
.y8b{bottom:1072.230000px;}
.y71{bottom:1077.810000px;}
.y1b{bottom:1085.550000px;}
.y4{bottom:1092.930000px;}
.y3b{bottom:1108.770000px;}
.y8a{bottom:1113.630000px;}
.y3{bottom:1134.330000px;}
.y88{bottom:1135.050000px;}
.y1a{bottom:1137.030000px;}
.y3a{bottom:1139.910000px;}
.he{height:19.620000px;}
.hd{height:19.800000px;}
.h9{height:20.700000px;}
.h7{height:20.736000px;}
.h1d{height:23.760000px;}
.h14{height:24.300000px;}
.ha{height:32.273438px;}
.h12{height:36.691313px;}
.h1c{height:47.520000px;}
.h15{height:47.700000px;}
.h13{height:48.281786px;}
.h10{height:50.312812px;}
.h2{height:53.573906px;}
.h1f{height:59.343750px;}
.h4{height:64.546875px;}
.h3{height:67.565039px;}
.h8{height:70.664062px;}
.hc{height:70.805391px;}
.h19{height:71.280000px;}
.h1b{height:71.316000px;}
.h18{height:71.496000px;}
.h1e{height:71.824219px;}
.h5{height:75.519844px;}
.h6{height:87.695156px;}
.h16{height:95.256000px;}
.h17{height:118.980000px;}
.h1a{height:119.160000px;}
.h11{height:177.833118px;}
.hb{height:322.740000px;}
.hf{height:324.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:51.300000px;}
.wa{width:51.516000px;}
.w13{width:68.580000px;}
.we{width:79.200000px;}
.w11{width:85.140000px;}
.w7{width:86.400000px;}
.w8{width:86.436000px;}
.w9{width:91.260000px;}
.w14{width:116.856000px;}
.w12{width:127.296000px;}
.w4{width:143.676000px;}
.wf{width:158.610000px;}
.w10{width:187.230000px;}
.w6{width:228.270000px;}
.w15{width:239.610000px;}
.w3{width:446.655000px;}
.wc{width:540.000000px;}
.w5{width:624.420000px;}
.wd{width:637.120552px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2d{left:2.018334px;}
.x38{left:8.100000px;}
.x18{left:9.930000px;}
.x16{left:12.960000px;}
.x28{left:16.530000px;}
.x17{left:18.930000px;}
.x8{left:23.040000px;}
.x34{left:25.020000px;}
.x36{left:29.694000px;}
.x19{left:35.355000px;}
.xb{left:42.120000px;}
.x29{left:46.290000px;}
.x3a{left:50.265000px;}
.x3b{left:52.425000px;}
.xa{left:54.180000px;}
.x30{left:58.680000px;}
.xd{left:60.480000px;}
.xf{left:62.685000px;}
.xe{left:65.025000px;}
.xc{left:67.185000px;}
.x10{left:71.685000px;}
.x32{left:76.500000px;}
.x3{left:127.655987px;}
.x2{left:145.475987px;}
.x7{left:151.410000px;}
.x3f{left:163.649987px;}
.x25{left:176.400000px;}
.x37{left:196.230000px;}
.x3e{left:197.309987px;}
.x13{left:198.389987px;}
.x2f{left:206.850000px;}
.x2b{left:209.369987px;}
.x1c{left:212.429987px;}
.x2e{left:232.409987px;}
.x26{left:276.915000px;}
.x1a{left:283.890000px;}
.x5{left:293.294987px;}
.x27{left:297.105000px;}
.x39{left:313.095000px;}
.x1d{left:334.154987px;}
.x11{left:342.074987px;}
.x6{left:350.534987px;}
.x1e{left:355.935000px;}
.x31{left:365.475000px;}
.x14{left:382.245000px;}
.x15{left:414.870000px;}
.x1f{left:442.335000px;}
.x24{left:446.474987px;}
.x3c{left:447.914987px;}
.x1{left:451.694987px;}
.x20{left:528.765000px;}
.x33{left:552.705000px;}
.x9{left:598.065000px;}
.x21{left:620.025000px;}
.x35{left:637.845000px;}
.x22{left:671.550000px;}
.x1b{left:716.549987px;}
.x23{left:722.850000px;}
.x4{left:759.929987px;}
.x2c{left:765.509987px;}
.x12{left:770.549987px;}
.x2a{left:782.429987px;}
.x3d{left:784.769987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.401663pt;}
.ls9{letter-spacing:-0.384000pt;}
.ls16{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.161067pt;}
.lsd{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.116522pt;}
.ls2{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.198047pt;}
.lsc{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.426667pt;}
.ls13{letter-spacing:0.640000pt;}
.ls6{letter-spacing:18.202027pt;}
.ls3{letter-spacing:18.842027pt;}
.lsf{letter-spacing:145.350352pt;}
.ls0{letter-spacing:754.858667pt;}
.ws2{word-spacing:-19.040000pt;}
.ws3{word-spacing:-16.192000pt;}
.wse{word-spacing:-16.128000pt;}
.ws15{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.936000pt;}
.ws8{word-spacing:-15.872000pt;}
.ws16{word-spacing:-15.744000pt;}
.ws4{word-spacing:-15.616000pt;}
.wsa{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.545600pt;}
.wsb{word-spacing:-13.280000pt;}
.wsc{word-spacing:-11.920640pt;}
.ws12{word-spacing:-0.043149pt;}
.ws1{word-spacing:0.000000pt;}
.wsf{word-spacing:47.333946pt;}
.ws11{word-spacing:77.021384pt;}
.ws10{word-spacing:84.352521pt;}
.ws14{word-spacing:98.144858pt;}
.ws13{word-spacing:98.145057pt;}
.ws6{word-spacing:214.133333pt;}
.ws5{word-spacing:214.666667pt;}
.wsd{word-spacing:228.132907pt;}
._b{margin-left:-4.032000pt;}
._8{margin-left:-2.563840pt;}
._0{margin-left:-1.532160pt;}
._1{width:0.936320pt;}
._7{width:1.875840pt;}
._9{width:3.050667pt;}
._a{width:4.034347pt;}
._c{width:5.758933pt;}
._e{width:7.041067pt;}
._11{width:8.704000pt;}
._10{width:9.728000pt;}
._15{width:10.688000pt;}
._f{width:11.851520pt;}
._4{width:12.856320pt;}
._3{width:13.831680pt;}
._2{width:14.758827pt;}
._d{width:17.536000pt;}
._6{width:18.880000pt;}
._5{width:19.904000pt;}
._12{width:21.056000pt;}
._3c{width:22.912000pt;}
._16{width:24.000000pt;}
._33{width:25.600000pt;}
._45{width:26.752000pt;}
._46{width:27.648000pt;}
._49{width:29.184000pt;}
._42{width:30.656000pt;}
._14{width:34.837333pt;}
._13{width:35.946667pt;}
._3a{width:39.552000pt;}
._35{width:40.704000pt;}
._34{width:41.600000pt;}
._47{width:44.160000pt;}
._32{width:45.312000pt;}
._48{width:46.918827pt;}
._31{width:48.512000pt;}
._30{width:49.852160pt;}
._38{width:50.819840pt;}
._3d{width:57.280000pt;}
._18{width:59.893656pt;}
._19{width:62.231788pt;}
._1d{width:63.307466pt;}
._2d{width:66.240000pt;}
._41{width:68.032000pt;}
._40{width:73.280000pt;}
._3b{width:75.648000pt;}
._22{width:85.183959pt;}
._2c{width:87.808000pt;}
._3e{width:88.832000pt;}
._3f{width:90.154667pt;}
._37{width:101.376000pt;}
._43{width:103.616000pt;}
._27{width:106.257524pt;}
._1c{width:107.172523pt;}
._2f{width:114.112000pt;}
._39{width:121.280000pt;}
._21{width:128.647552pt;}
._28{width:146.185814pt;}
._2a{width:150.122580pt;}
._44{width:163.776000pt;}
._1b{width:181.142066pt;}
._36{width:208.640000pt;}
._2e{width:305.258667pt;}
._24{width:323.656953pt;}
._2b{width:375.078304pt;}
._1f{width:508.927329pt;}
._25{width:534.016087pt;}
._29{width:568.323744pt;}
._1a{width:607.862228pt;}
._26{width:652.507248pt;}
._23{width:706.702585pt;}
._4a{width:733.194667pt;}
._17{width:1013.256984pt;}
._20{width:1090.344557pt;}
._1e{width:1108.029759pt;}
.fs4{font-size:32.000000pt;}
.fs6{font-size:42.880000pt;}
.fs7{font-size:43.148900pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:64.128000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y89{bottom:3.520000pt;}
.ye9{bottom:3.573007pt;}
.yba{bottom:4.960000pt;}
.yb7{bottom:5.120000pt;}
.yee{bottom:6.240000pt;}
.yfc{bottom:6.400000pt;}
.yeb{bottom:6.720000pt;}
.ya6{bottom:10.373333pt;}
.ycd{bottom:11.200000pt;}
.ye8{bottom:17.939603pt;}
.yaf{bottom:19.773333pt;}
.yf4{bottom:27.360000pt;}
.yed{bottom:27.520000pt;}
.yf7{bottom:27.546667pt;}
.ye7{bottom:32.330855pt;}
.ya7{bottom:38.586667pt;}
.yd4{bottom:41.626667pt;}
.ye6{bottom:46.697251pt;}
.yf9{bottom:48.480000pt;}
.yfe{bottom:48.520000pt;}
.yf1{bottom:48.640000pt;}
.yf6{bottom:48.666667pt;}
.y2{bottom:49.920000pt;}
.yce{bottom:54.333333pt;}
.ye5{bottom:61.063648pt;}
.y1{bottom:65.920000pt;}
.ya8{bottom:66.786667pt;}
.yf0{bottom:69.760000pt;}
.ye4{bottom:75.430044pt;}
.ye3{bottom:89.796441pt;}
.yf3{bottom:90.880000pt;}
.yfb{bottom:91.040000pt;}
.ya9{bottom:94.973333pt;}
.ycf{bottom:97.440000pt;}
.y12b{bottom:101.280000pt;}
.ye2{bottom:104.183716pt;}
.y39{bottom:104.960000pt;}
.y87{bottom:108.480000pt;}
.ydd{bottom:117.760000pt;}
.ye1{bottom:118.550112pt;}
.y58{bottom:120.160000pt;}
.y70{bottom:122.240000pt;}
.yaa{bottom:123.173333pt;}
.y113{bottom:123.840000pt;}
.y12a{bottom:128.960000pt;}
.y10c{bottom:129.920000pt;}
.y38{bottom:132.480000pt;}
.ye0{bottom:132.916509pt;}
.y86{bottom:134.240000pt;}
.y102{bottom:134.880000pt;}
.yd0{bottom:140.573333pt;}
.yc9{bottom:142.560000pt;}
.ydc{bottom:145.280000pt;}
.ydf{bottom:147.282905pt;}
.ya2{bottom:147.520000pt;}
.y6f{bottom:149.786667pt;}
.yab{bottom:151.360000pt;}
.y112{bottom:153.946667pt;}
.y57{bottom:155.706667pt;}
.y129{bottom:156.506667pt;}
.y101{bottom:156.666667pt;}
.y10a{bottom:158.746667pt;}
.y37{bottom:160.186667pt;}
.y85{bottom:168.186667pt;}
.ya5{bottom:171.133333pt;}
.ya1{bottom:175.226667pt;}
.ydb{bottom:175.866667pt;}
.yde{bottom:176.040000pt;}
.y111{bottom:176.826667pt;}
.y6e{bottom:177.466667pt;}
.y100{bottom:177.786667pt;}
.yc8{bottom:178.266667pt;}
.yac{bottom:179.546667pt;}
.y56{bottom:183.386667pt;}
.yd1{bottom:183.680000pt;}
.y128{bottom:184.186667pt;}
.y146{bottom:185.146667pt;}
.y36{bottom:187.706667pt;}
.ya4{bottom:189.533333pt;}
.y84{bottom:195.706667pt;}
.y6d{bottom:204.986667pt;}
.yc7{bottom:205.786667pt;}
.yad{bottom:207.773333pt;}
.y55{bottom:210.906667pt;}
.y127{bottom:211.706667pt;}
.y145{bottom:212.826667pt;}
.y35{bottom:215.386667pt;}
.ycc{bottom:215.933333pt;}
.ya0{bottom:216.186667pt;}
.yff{bottom:220.026667pt;}
.y83{bottom:223.386667pt;}
.yd2{bottom:226.786667pt;}
.ycb{bottom:228.093333pt;}
.y9f{bottom:231.066667pt;}
.ya3{bottom:231.200000pt;}
.y6c{bottom:232.666667pt;}
.yc6{bottom:233.466667pt;}
.yae{bottom:235.973333pt;}
.y54{bottom:238.586667pt;}
.y126{bottom:239.386667pt;}
.y144{bottom:240.346667pt;}
.y34{bottom:250.906667pt;}
.y6b{bottom:260.186667pt;}
.yc5{bottom:260.986667pt;}
.yb0{bottom:261.946667pt;}
.y125{bottom:266.906667pt;}
.y143{bottom:267.866667pt;}
.yd3{bottom:269.920000pt;}
.y53{bottom:274.106667pt;}
.y33{bottom:278.586667pt;}
.y6a{bottom:287.706667pt;}
.yc4{bottom:288.666667pt;}
.y124{bottom:294.586667pt;}
.y142{bottom:295.546667pt;}
.y52{bottom:301.786667pt;}
.y32{bottom:306.106667pt;}
.yc3{bottom:316.186667pt;}
.y123{bottom:322.106667pt;}
.y141{bottom:323.066667pt;}
.y69{bottom:323.386667pt;}
.yfd{bottom:325.946667pt;}
.y51{bottom:329.306667pt;}
.y31{bottom:333.786667pt;}
.y122{bottom:349.786667pt;}
.y140{bottom:350.746667pt;}
.y68{bottom:350.906667pt;}
.yda{bottom:351.706667pt;}
.yc2{bottom:351.866667pt;}
.y50{bottom:356.986667pt;}
.y30{bottom:361.306667pt;}
.yc1{bottom:375.426667pt;}
.y121{bottom:377.346667pt;}
.y13f{bottom:378.306667pt;}
.y67{bottom:378.626667pt;}
.y4f{bottom:384.546667pt;}
.y2f{bottom:389.026667pt;}
.yfa{bottom:389.346667pt;}
.y19{bottom:389.666667pt;}
.yc0{bottom:392.866667pt;}
.y120{bottom:405.026667pt;}
.y13e{bottom:405.986667pt;}
.y66{bottom:406.146667pt;}
.ybf{bottom:410.306667pt;}
.y2e{bottom:416.546667pt;}
.y18{bottom:419.746667pt;}
.y4e{bottom:420.226667pt;}
.ybe{bottom:427.746667pt;}
.y11f{bottom:432.546667pt;}
.y13d{bottom:433.506667pt;}
.y65{bottom:433.826667pt;}
.y82{bottom:444.226667pt;}
.ybd{bottom:445.346667pt;}
.y17{bottom:447.426667pt;}
.y4d{bottom:447.746667pt;}
.y2d{bottom:452.226667pt;}
.y11e{bottom:460.226667pt;}
.y13c{bottom:461.186667pt;}
.y64{bottom:461.346667pt;}
.ybc{bottom:462.786667pt;}
.y109{bottom:463.586667pt;}
.y81{bottom:471.746667pt;}
.y16{bottom:474.946667pt;}
.y4c{bottom:475.426667pt;}
.y2c{bottom:479.746667pt;}
.ybb{bottom:480.226667pt;}
.y11d{bottom:487.746667pt;}
.y13b{bottom:488.706667pt;}
.y110{bottom:490.146667pt;}
.y108{bottom:491.106667pt;}
.yf8{bottom:495.266667pt;}
.y63{bottom:497.026667pt;}
.yb9{bottom:497.666667pt;}
.y80{bottom:499.426667pt;}
.y15{bottom:502.626667pt;}
.y4b{bottom:502.946667pt;}
.y2b{bottom:507.426667pt;}
.y10f{bottom:508.546667pt;}
.yb8{bottom:515.106667pt;}
.y11c{bottom:515.426667pt;}
.y10b{bottom:516.066667pt;}
.y13a{bottom:516.386667pt;}
.y107{bottom:518.786667pt;}
.y62{bottom:524.546667pt;}
.y7f{bottom:526.946667pt;}
.y9e{bottom:527.586667pt;}
.y14{bottom:530.146667pt;}
.y4a{bottom:530.626667pt;}
.y10e{bottom:531.426667pt;}
.yb6{bottom:532.546667pt;}
.y2a{bottom:534.946667pt;}
.y11b{bottom:542.946667pt;}
.y139{bottom:543.906667pt;}
.y106{bottom:546.306667pt;}
.yb5{bottom:550.786667pt;}
.y61{bottom:552.226667pt;}
.y7e{bottom:554.626667pt;}
.y13{bottom:557.826667pt;}
.y49{bottom:558.146667pt;}
.yf5{bottom:558.626667pt;}
.y29{bottom:562.626667pt;}
.y9d{bottom:562.786667pt;}
.y11a{bottom:570.626667pt;}
.y138{bottom:571.586667pt;}
.y105{bottom:573.986667pt;}
.y60{bottom:579.746667pt;}
.yb4{bottom:581.346667pt;}
.y7d{bottom:582.146667pt;}
.y12{bottom:585.373333pt;}
.y48{bottom:585.853333pt;}
.y28{bottom:590.173333pt;}
.y9c{bottom:590.333333pt;}
.y119{bottom:598.173333pt;}
.y137{bottom:599.133333pt;}
.y104{bottom:600.413333pt;}
.yb3{bottom:607.133333pt;}
.y5f{bottom:607.453333pt;}
.y7c{bottom:609.853333pt;}
.y11{bottom:613.053333pt;}
.y103{bottom:615.293333pt;}
.y27{bottom:617.853333pt;}
.y9b{bottom:618.013333pt;}
.yf2{bottom:622.173333pt;}
.y118{bottom:625.853333pt;}
.y136{bottom:626.813333pt;}
.y47{bottom:631.453333pt;}
.y5e{bottom:634.973333pt;}
.y7b{bottom:637.373333pt;}
.y10{bottom:640.573333pt;}
.y9a{bottom:645.533333pt;}
.yb2{bottom:646.333333pt;}
.y46{bottom:651.773333pt;}
.y26{bottom:653.373333pt;}
.y135{bottom:654.333333pt;}
.yd9{bottom:656.573333pt;}
.y5d{bottom:662.653333pt;}
.y7a{bottom:664.893333pt;}
.yf{bottom:668.253333pt;}
.y99{bottom:673.213333pt;}
.yb1{bottom:676.893333pt;}
.yca{bottom:676.960000pt;}
.y45{bottom:677.533333pt;}
.y25{bottom:680.893333pt;}
.y134{bottom:682.013333pt;}
.yd8{bottom:684.093333pt;}
.y79{bottom:692.573333pt;}
.ye{bottom:695.773333pt;}
.y5c{bottom:698.173333pt;}
.y44{bottom:705.213333pt;}
.y24{bottom:708.573333pt;}
.y98{bottom:708.733333pt;}
.y133{bottom:709.533333pt;}
.yd7{bottom:711.773333pt;}
.yd{bottom:723.293333pt;}
.yef{bottom:727.933333pt;}
.y78{bottom:730.173333pt;}
.y97{bottom:732.253333pt;}
.y43{bottom:732.733333pt;}
.y23{bottom:736.093333pt;}
.y132{bottom:737.213333pt;}
.y5b{bottom:741.853333pt;}
.y96{bottom:750.653333pt;}
.yc{bottom:750.973333pt;}
.yd6{bottom:752.733333pt;}
.y42{bottom:760.413333pt;}
.y22{bottom:763.773333pt;}
.y131{bottom:764.733333pt;}
.y5a{bottom:767.613333pt;}
.y95{bottom:769.053333pt;}
.yd5{bottom:775.613333pt;}
.y77{bottom:776.413333pt;}
.yb{bottom:778.493333pt;}
.y59{bottom:780.093333pt;}
.y94{bottom:787.453333pt;}
.y41{bottom:787.933333pt;}
.y21{bottom:791.293333pt;}
.y130{bottom:792.413333pt;}
.y76{bottom:803.973333pt;}
.y10d{bottom:804.133333pt;}
.y93{bottom:805.893333pt;}
.ya{bottom:806.213333pt;}
.yec{bottom:812.613333pt;}
.y20{bottom:819.013333pt;}
.y12f{bottom:819.973333pt;}
.y40{bottom:823.653333pt;}
.y92{bottom:824.293333pt;}
.y75{bottom:831.653333pt;}
.y9{bottom:833.733333pt;}
.y91{bottom:842.693333pt;}
.y117{bottom:846.533333pt;}
.y12e{bottom:847.653333pt;}
.y3f{bottom:851.173333pt;}
.y1f{bottom:854.533333pt;}
.yea{bottom:855.653333pt;}
.y74{bottom:859.173333pt;}
.y90{bottom:861.093333pt;}
.y8{bottom:861.413333pt;}
.y116{bottom:874.213333pt;}
.y12d{bottom:875.173333pt;}
.y8f{bottom:879.493333pt;}
.y1e{bottom:882.213333pt;}
.y3e{bottom:886.853333pt;}
.y7{bottom:888.933333pt;}
.y73{bottom:894.853333pt;}
.y8e{bottom:897.893333pt;}
.y115{bottom:901.733333pt;}
.y12c{bottom:902.853333pt;}
.y1d{bottom:909.733333pt;}
.y3d{bottom:914.373333pt;}
.y8d{bottom:916.293333pt;}
.y6{bottom:916.613333pt;}
.y72{bottom:930.373333pt;}
.y8c{bottom:934.693333pt;}
.y1c{bottom:937.413333pt;}
.y5{bottom:942.053333pt;}
.y114{bottom:947.493333pt;}
.y3c{bottom:950.053333pt;}
.y8b{bottom:953.093333pt;}
.y71{bottom:958.053333pt;}
.y1b{bottom:964.933333pt;}
.y4{bottom:971.493333pt;}
.y3b{bottom:985.573333pt;}
.y8a{bottom:989.893333pt;}
.y3{bottom:1008.293333pt;}
.y88{bottom:1008.933333pt;}
.y1a{bottom:1010.693333pt;}
.y3a{bottom:1013.253333pt;}
.he{height:17.440000pt;}
.hd{height:17.600000pt;}
.h9{height:18.400000pt;}
.h7{height:18.432000pt;}
.h1d{height:21.120000pt;}
.h14{height:21.600000pt;}
.ha{height:28.687500pt;}
.h12{height:32.614501pt;}
.h1c{height:42.240000pt;}
.h15{height:42.400000pt;}
.h13{height:42.917144pt;}
.h10{height:44.722500pt;}
.h2{height:47.621250pt;}
.h1f{height:52.750000pt;}
.h4{height:57.375000pt;}
.h3{height:60.057813pt;}
.h8{height:62.812500pt;}
.hc{height:62.938125pt;}
.h19{height:63.360000pt;}
.h1b{height:63.392000pt;}
.h18{height:63.552000pt;}
.h1e{height:63.843750pt;}
.h5{height:67.128750pt;}
.h6{height:77.951250pt;}
.h16{height:84.672000pt;}
.h17{height:105.760000pt;}
.h1a{height:105.920000pt;}
.h11{height:158.073883pt;}
.hb{height:286.880000pt;}
.hf{height:288.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:45.600000pt;}
.wa{width:45.792000pt;}
.w13{width:60.960000pt;}
.we{width:70.400000pt;}
.w11{width:75.680000pt;}
.w7{width:76.800000pt;}
.w8{width:76.832000pt;}
.w9{width:81.120000pt;}
.w14{width:103.872000pt;}
.w12{width:113.152000pt;}
.w4{width:127.712000pt;}
.wf{width:140.986667pt;}
.w10{width:166.426667pt;}
.w6{width:202.906667pt;}
.w15{width:212.986667pt;}
.w3{width:397.026667pt;}
.wc{width:480.000000pt;}
.w5{width:555.040000pt;}
.wd{width:566.329379pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2d{left:1.794075pt;}
.x38{left:7.200000pt;}
.x18{left:8.826667pt;}
.x16{left:11.520000pt;}
.x28{left:14.693333pt;}
.x17{left:16.826667pt;}
.x8{left:20.480000pt;}
.x34{left:22.240000pt;}
.x36{left:26.394667pt;}
.x19{left:31.426667pt;}
.xb{left:37.440000pt;}
.x29{left:41.146667pt;}
.x3a{left:44.680000pt;}
.x3b{left:46.600000pt;}
.xa{left:48.160000pt;}
.x30{left:52.160000pt;}
.xd{left:53.760000pt;}
.xf{left:55.720000pt;}
.xe{left:57.800000pt;}
.xc{left:59.720000pt;}
.x10{left:63.720000pt;}
.x32{left:68.000000pt;}
.x3{left:113.471988pt;}
.x2{left:129.311988pt;}
.x7{left:134.586667pt;}
.x3f{left:145.466655pt;}
.x25{left:156.800000pt;}
.x37{left:174.426667pt;}
.x3e{left:175.386655pt;}
.x13{left:176.346655pt;}
.x2f{left:183.866667pt;}
.x2b{left:186.106655pt;}
.x1c{left:188.826655pt;}
.x2e{left:206.586655pt;}
.x26{left:246.146667pt;}
.x1a{left:252.346667pt;}
.x5{left:260.706655pt;}
.x27{left:264.093333pt;}
.x39{left:278.306667pt;}
.x1d{left:297.026655pt;}
.x11{left:304.066655pt;}
.x6{left:311.586655pt;}
.x1e{left:316.386667pt;}
.x31{left:324.866667pt;}
.x14{left:339.773333pt;}
.x15{left:368.773333pt;}
.x1f{left:393.186667pt;}
.x24{left:396.866655pt;}
.x3c{left:398.146655pt;}
.x1{left:401.506655pt;}
.x20{left:470.013333pt;}
.x33{left:491.293333pt;}
.x9{left:531.613333pt;}
.x21{left:551.133333pt;}
.x35{left:566.973333pt;}
.x22{left:596.933333pt;}
.x1b{left:636.933322pt;}
.x23{left:642.533333pt;}
.x4{left:675.493322pt;}
.x2c{left:680.453322pt;}
.x12{left:684.933322pt;}
.x2a{left:695.493322pt;}
.x3d{left:697.573322pt;}
}




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