
    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_ad34b4901846c6be45d73b1f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_05be2a2e1962e75ad5754309.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c87ae75b8191c1b8808358c4.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_358c330f2b20ee3add76dc74.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.692871;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_416caba1e6329d2eb54bba8b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d77a7e344abef12cedd6ef61.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.908203;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_76bbaa78a0254316376f8bb9.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2b91d880b6496b71fe90b8cd.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_fdbc66582f1ea853ceeb30a8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.401855;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;}
.m3{transform:matrix(0.000000,-0.249795,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249795,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249795,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250205,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);}
.v6{vertical-align:-33.120000px;}
.v8{vertical-align:-27.360000px;}
.v2{vertical-align:-23.760000px;}
.vc{vertical-align:-17.678210px;}
.v9{vertical-align:-11.785473px;}
.v4{vertical-align:-5.760000px;}
.vd{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.760000px;}
.vb{vertical-align:11.785473px;}
.ve{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.v3{vertical-align:27.360000px;}
.va{vertical-align:29.463683px;}
.v7{vertical-align:33.120000px;}
.ls19{letter-spacing:-1.512000px;}
.ls15{letter-spacing:-0.936000px;}
.ls18{letter-spacing:-0.792000px;}
.lse{letter-spacing:-0.720000px;}
.ls1b{letter-spacing:-0.504000px;}
.lsa{letter-spacing:-0.432000px;}
.lsd{letter-spacing:-0.288000px;}
.ls28{letter-spacing:-0.259800px;}
.ls9{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.144000px;}
.ls29{letter-spacing:-0.106800px;}
.ls1c{letter-spacing:-0.072000px;}
.ls20{letter-spacing:-0.049106px;}
.ls3{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.049106px;}
.ls26{letter-spacing:0.053280px;}
.ls12{letter-spacing:0.072000px;}
.ls1d{letter-spacing:0.120000px;}
.ls25{letter-spacing:0.135360px;}
.ls6{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.152640px;}
.ls1{letter-spacing:0.178560px;}
.ls0{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.216000px;}
.ls16{letter-spacing:0.256200px;}
.ls27{letter-spacing:0.259800px;}
.ls24{letter-spacing:0.259920px;}
.ls8{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.332640px;}
.ls2{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.432000px;}
.ls22{letter-spacing:0.471419px;}
.lsc{letter-spacing:0.480000px;}
.ls14{letter-spacing:0.540000px;}
.ls1e{letter-spacing:0.672951px;}
.ls5{letter-spacing:0.720000px;}
.ls21{letter-spacing:0.758199px;}
.ls1a{letter-spacing:0.936000px;}
.ls23{letter-spacing:1.092121px;}
.ls11{letter-spacing:1.440000px;}
.ls13{letter-spacing:1.620000px;}
.ls7{letter-spacing:33.984000px;}
.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;}
}
.wsc{word-spacing:-19.440000px;}
.ws10{word-spacing:-18.936000px;}
.ws5{word-spacing:-18.720000px;}
.wsf{word-spacing:-18.432000px;}
.ws9{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.216000px;}
.ws8{word-spacing:-18.144000px;}
.wsd{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws13{word-spacing:-17.928000px;}
.wsb{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.784000px;}
.wsa{word-spacing:-17.712000px;}
.ws11{word-spacing:-17.496000px;}
.ws12{word-spacing:-17.064000px;}
.ws1{word-spacing:-16.560000px;}
.ws1c{word-spacing:-15.300000px;}
.wse{word-spacing:-15.226440px;}
.ws17{word-spacing:-15.111923px;}
.ws1a{word-spacing:-14.993280px;}
.ws19{word-spacing:-14.940000px;}
.ws14{word-spacing:-14.778001px;}
.ws1d{word-spacing:-14.680200px;}
.ws16{word-spacing:-14.019803px;}
.ws2{word-spacing:-12.060000px;}
.ws0{word-spacing:-10.440000px;}
.ws1b{word-spacing:-9.720000px;}
.ws15{word-spacing:-8.863658px;}
.ws6{word-spacing:0.000000px;}
.ws18{word-spacing:259.606477px;}
._13{margin-left:-5.160000px;}
._6{margin-left:-3.912000px;}
._2{margin-left:-2.688000px;}
._0{margin-left:-1.516152px;}
._1{width:1.028303px;}
._e{width:2.848152px;}
._7{width:4.080000px;}
._3{width:5.544000px;}
._8{width:7.251697px;}
._d{width:8.461364px;}
._10{width:9.480000px;}
._14{width:10.800000px;}
._15{width:12.303697px;}
._4{width:13.320000px;}
._5{width:14.328000px;}
._b{width:15.888000px;}
._f{width:16.964303px;}
._a{width:19.161667px;}
._9{width:20.287848px;}
._16{width:21.432455px;}
._1a{width:23.040000px;}
._1b{width:26.784000px;}
._17{width:28.560000px;}
._18{width:29.676000px;}
._19{width:30.780000px;}
._c{width:36.264000px;}
._11{width:64.872000px;}
._12{width:66.468000px;}
._1d{width:232.507993px;}
._1e{width:423.336000px;}
._1c{width:846.156000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:35.356420px;}
.fs9{font-size:35.454632px;}
.fsc{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs6{font-size:47.240105px;}
.fs4{font-size:48.240000px;}
.fs8{font-size:56.079210px;}
.fs7{font-size:56.125235px;}
.fsb{font-size:59.760000px;}
.fs5{font-size:60.000000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y127{bottom:3.600000px;}
.yf8{bottom:3.960000px;}
.y12d{bottom:4.140000px;}
.yfe{bottom:4.320000px;}
.yb5{bottom:4.500000px;}
.yea{bottom:4.680000px;}
.yde{bottom:4.860000px;}
.ydd{bottom:5.040000px;}
.ye7{bottom:5.220000px;}
.ye4{bottom:5.580000px;}
.ye2{bottom:5.760000px;}
.ye6{bottom:6.300000px;}
.yd9{bottom:6.840000px;}
.yfc{bottom:7.020000px;}
.ye0{bottom:7.380000px;}
.y124{bottom:7.920000px;}
.y128{bottom:12.240000px;}
.yf4{bottom:14.040000px;}
.yf6{bottom:14.220000px;}
.ydb{bottom:16.380000px;}
.y12b{bottom:20.700000px;}
.y126{bottom:20.880000px;}
.y120{bottom:22.140000px;}
.y122{bottom:22.860000px;}
.y11f{bottom:23.220000px;}
.yb4{bottom:24.480000px;}
.y123{bottom:25.200000px;}
.yd8{bottom:27.540000px;}
.y12a{bottom:37.980000px;}
.yd1{bottom:43.286821px;}
.yb3{bottom:44.820000px;}
.y1c{bottom:57.420000px;}
.yca{bottom:58.681604px;}
.y104{bottom:66.420000px;}
.y10c{bottom:66.450000px;}
.yfa{bottom:67.905000px;}
.y1{bottom:77.616000px;}
.yc4{bottom:116.496000px;}
.ycb{bottom:118.663772px;}
.y1a{bottom:119.016000px;}
.y56{bottom:123.696000px;}
.y80{bottom:126.756000px;}
.ybc{bottom:129.276000px;}
.yc3{bottom:138.816000px;}
.y55{bottom:144.396000px;}
.y35{bottom:146.556000px;}
.y7f{bottom:147.456000px;}
.ybb{bottom:151.590000px;}
.y19{bottom:160.410000px;}
.yc2{bottom:161.310000px;}
.y54{bottom:165.090000px;}
.yc0{bottom:165.990000px;}
.y7e{bottom:168.150000px;}
.yba{bottom:173.910000px;}
.ycc{bottom:178.651831px;}
.y34{bottom:187.950000px;}
.ybf{bottom:188.310000px;}
.y7d{bottom:188.850000px;}
.yc1{bottom:191.370000px;}
.yd0{bottom:192.764937px;}
.y53{bottom:197.670000px;}
.y95{bottom:200.910000px;}
.y18{bottom:201.810000px;}
.yb9{bottom:203.970000px;}
.ybe{bottom:210.630000px;}
.y52{bottom:218.370000px;}
.y7c{bottom:221.610000px;}
.y33{bottom:229.350000px;}
.ycd{bottom:238.610426px;}
.y51{bottom:239.070000px;}
.ybd{bottom:240.870000px;}
.y7b{bottom:242.310000px;}
.y17{bottom:243.210000px;}
.y50{bottom:259.770000px;}
.y7a{bottom:263.010000px;}
.y32{bottom:270.750000px;}
.yf2{bottom:273.810000px;}
.y79{bottom:283.710000px;}
.y16{bottom:284.610000px;}
.y4f{bottom:292.530000px;}
.y94{bottom:295.590000px;}
.yce{bottom:298.588664px;}
.yf1{bottom:308.010000px;}
.y31{bottom:312.150000px;}
.y4e{bottom:313.230000px;}
.y78{bottom:316.290000px;}
.y15{bottom:326.010000px;}
.y4d{bottom:333.930000px;}
.y77{bottom:337.035000px;}
.yf0{bottom:342.435000px;}
.y93{bottom:349.095000px;}
.y30{bottom:353.595000px;}
.y76{bottom:357.735000px;}
.ycf{bottom:358.576724px;}
.y4c{bottom:366.555000px;}
.y14{bottom:367.455000px;}
.yb1{bottom:368.535000px;}
.y92{bottom:369.795000px;}
.yef{bottom:376.815000px;}
.y75{bottom:378.435000px;}
.y4b{bottom:387.255000px;}
.yaf{bottom:388.875000px;}
.y91{bottom:390.495000px;}
.y3b{bottom:394.635000px;}
.y2f{bottom:394.995000px;}
.y4a{bottom:407.955000px;}
.y13{bottom:408.855000px;}
.y74{bottom:411.195000px;}
.y90{bottom:423.255000px;}
.y49{bottom:428.655000px;}
.y73{bottom:431.895000px;}
.y2e{bottom:436.395000px;}
.y8f{bottom:443.955000px;}
.yee{bottom:445.395000px;}
.y12{bottom:450.255000px;}
.y72{bottom:452.595000px;}
.yae{bottom:455.835000px;}
.y48{bottom:461.415000px;}
.y8e{bottom:464.655000px;}
.yad{bottom:476.535000px;}
.y2d{bottom:477.795000px;}
.yed{bottom:479.775000px;}
.y47{bottom:482.115000px;}
.y71{bottom:485.355000px;}
.y11{bottom:491.655000px;}
.yac{bottom:497.235000px;}
.y46{bottom:502.815000px;}
.y70{bottom:506.055000px;}
.y11d{bottom:510.915000px;}
.yec{bottom:514.155000px;}
.y8d{bottom:517.935000px;}
.y2c{bottom:519.195000px;}
.y6f{bottom:526.755000px;}
.y10{bottom:533.055000px;}
.y45{bottom:535.575000px;}
.y8c{bottom:538.635000px;}
.y11c{bottom:545.115000px;}
.yeb{bottom:548.535000px;}
.yab{bottom:550.695000px;}
.y44{bottom:556.275000px;}
.y6e{bottom:559.335000px;}
.y2b{bottom:560.595000px;}
.y10b{bottom:565.635000px;}
.y39{bottom:567.435000px;}
.yaa{bottom:571.395000px;}
.yf{bottom:574.455000px;}
.y43{bottom:576.975000px;}
.y11b{bottom:579.495000px;}
.y6d{bottom:580.035000px;}
.y112{bottom:586.335000px;}
.ya9{bottom:592.095000px;}
.y6c{bottom:600.735000px;}
.y2a{bottom:601.995000px;}
.y111{bottom:607.065000px;}
.y42{bottom:609.585000px;}
.y8b{bottom:612.825000px;}
.y11a{bottom:613.905000px;}
.ye{bottom:615.705000px;}
.y6b{bottom:621.465000px;}
.yb8{bottom:625.785000px;}
.y110{bottom:627.765000px;}
.y41{bottom:630.285000px;}
.y8a{bottom:633.525000px;}
.y29{bottom:643.425000px;}
.ya8{bottom:645.405000px;}
.y119{bottom:648.285000px;}
.y10f{bottom:648.465000px;}
.y40{bottom:650.985000px;}
.y6a{bottom:654.225000px;}
.yd{bottom:657.105000px;}
.yb7{bottom:660.165000px;}
.yc8{bottom:660.525000px;}
.ya7{bottom:666.105000px;}
.y10e{bottom:669.165000px;}
.y3f{bottom:671.685000px;}
.y69{bottom:674.925000px;}
.y118{bottom:682.665000px;}
.y28{bottom:684.825000px;}
.y10d{bottom:689.865000px;}
.y3e{bottom:692.385000px;}
.yb6{bottom:694.545000px;}
.yc7{bottom:694.905000px;}
.y68{bottom:695.625000px;}
.yc{bottom:698.145000px;}
.ya6{bottom:698.865000px;}
.y89{bottom:707.505000px;}
.yb2{bottom:710.925000px;}
.y103{bottom:711.285000px;}
.y67{bottom:716.325000px;}
.y117{bottom:716.865000px;}
.yc6{bottom:717.225000px;}
.ya5{bottom:719.565000px;}
.y27{bottom:726.225000px;}
.y88{bottom:728.205000px;}
.y10a{bottom:731.985000px;}
.y3a{bottom:733.065000px;}
.y3d{bottom:733.425000px;}
.yd6{bottom:733.965000px;}
.yc5{bottom:739.545000px;}
.ya4{bottom:740.265000px;}
.y66{bottom:748.905000px;}
.y116{bottom:751.245000px;}
.y109{bottom:752.685000px;}
.ya3{bottom:760.965000px;}
.y26{bottom:767.625000px;}
.yd5{bottom:768.165000px;}
.y3c{bottom:768.525000px;}
.y65{bottom:769.605000px;}
.yc9{bottom:770.628065px;}
.yb0{bottom:772.485000px;}
.y108{bottom:773.385000px;}
.yb{bottom:779.145000px;}
.y115{bottom:785.625000px;}
.y64{bottom:790.305000px;}
.ya2{bottom:793.725000px;}
.y107{bottom:794.085000px;}
.y87{bottom:802.365000px;}
.yd4{bottom:802.545000px;}
.y25{bottom:809.025000px;}
.y63{bottom:811.005000px;}
.ya1{bottom:814.425000px;}
.y106{bottom:814.785000px;}
.y114{bottom:820.005000px;}
.ya{bottom:823.065000px;}
.ya0{bottom:835.125000px;}
.y105{bottom:835.485000px;}
.yd3{bottom:836.925000px;}
.y62{bottom:843.765000px;}
.y24{bottom:850.425000px;}
.ye9{bottom:854.025000px;}
.y113{bottom:854.205000px;}
.y9{bottom:855.105000px;}
.y9f{bottom:855.825000px;}
.yf9{bottom:856.905000px;}
.y61{bottom:864.465000px;}
.y12e{bottom:870.630000px;}
.ye8{bottom:875.490000px;}
.y86{bottom:876.570000px;}
.y102{bottom:877.650000px;}
.y60{bottom:885.210000px;}
.y9e{bottom:888.450000px;}
.y23{bottom:891.870000px;}
.y85{bottom:897.270000px;}
.ye5{bottom:898.170000px;}
.y101{bottom:898.350000px;}
.y8{bottom:899.070000px;}
.y12c{bottom:905.190000px;}
.y9d{bottom:909.150000px;}
.y5f{bottom:917.970000px;}
.y100{bottom:919.050000px;}
.ye3{bottom:920.850000px;}
.y129{bottom:923.550000px;}
.y9c{bottom:929.850000px;}
.y7{bottom:931.110000px;}
.y22{bottom:933.270000px;}
.y5e{bottom:938.670000px;}
.yff{bottom:939.750000px;}
.ye1{bottom:944.070000px;}
.y5d{bottom:959.370000px;}
.yfd{bottom:960.450000px;}
.y9b{bottom:962.610000px;}
.ydf{bottom:967.650000px;}
.y84{bottom:971.250000px;}
.y21{bottom:974.670000px;}
.y6{bottom:974.850000px;}
.y125{bottom:975.210000px;}
.y5c{bottom:980.070000px;}
.yfb{bottom:981.150000px;}
.y9a{bottom:983.310000px;}
.y83{bottom:991.950000px;}
.yda{bottom:995.370000px;}
.y99{bottom:1004.010000px;}
.yf5{bottom:1005.450000px;}
.y5{bottom:1006.890000px;}
.y121{bottom:1010.490000px;}
.y5b{bottom:1012.650000px;}
.y38{bottom:1015.710000px;}
.y20{bottom:1016.070000px;}
.ydc{bottom:1018.050000px;}
.y98{bottom:1024.710000px;}
.yf7{bottom:1026.150000px;}
.y5a{bottom:1033.350000px;}
.yd7{bottom:1041.450000px;}
.y4{bottom:1044.870000px;}
.y82{bottom:1045.410000px;}
.yf3{bottom:1047.570000px;}
.y11e{bottom:1050.450000px;}
.y59{bottom:1054.050000px;}
.y1f{bottom:1057.470000px;}
.y81{bottom:1066.110000px;}
.y97{bottom:1078.170000px;}
.y58{bottom:1086.810000px;}
.y3{bottom:1088.790000px;}
.y1e{bottom:1098.510000px;}
.y37{bottom:1098.870000px;}
.yd2{bottom:1105.890000px;}
.y57{bottom:1107.510000px;}
.y96{bottom:1119.570000px;}
.y2{bottom:1137.210000px;}
.y1d{bottom:1139.940000px;}
.y36{bottom:1140.300000px;}
.y1b{bottom:1248.060000px;}
.h2c{height:18.360000px;}
.h1f{height:20.700000px;}
.h22{height:20.736000px;}
.h1c{height:21.456000px;}
.h18{height:22.680000px;}
.h1b{height:23.220000px;}
.h21{height:23.400000px;}
.h1a{height:23.580000px;}
.h19{height:27.000000px;}
.h28{height:34.560000px;}
.h25{height:37.260000px;}
.h27{height:39.060000px;}
.h1d{height:40.140000px;}
.h5{height:41.250937px;}
.h1e{height:41.400000px;}
.ha{height:41.660156px;}
.h17{height:45.360000px;}
.h16{height:46.260000px;}
.hd{height:47.344922px;}
.h13{height:47.609169px;}
.h6{height:48.761719px;}
.h2b{height:51.660000px;}
.h15{height:56.517329px;}
.h14{height:56.563713px;}
.h29{height:58.651172px;}
.h2a{height:59.038594px;}
.h26{height:60.226875px;}
.h11{height:61.560000px;}
.hf{height:64.546875px;}
.h4{height:65.010937px;}
.h2{height:65.884219px;}
.h7{height:70.664062px;}
.h9{height:72.562500px;}
.he{height:74.680922px;}
.h8{height:74.704922px;}
.hc{height:74.824922px;}
.hb{height:74.953125px;}
.h3{height:84.898125px;}
.h23{height:144.900000px;}
.h24{height:144.936000px;}
.h20{height:147.636000px;}
.h10{height:384.195000px;}
.h12{height:385.974352px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:40.140000px;}
.we{width:63.720000px;}
.w1a{width:74.520000px;}
.w15{width:76.320000px;}
.w19{width:84.996000px;}
.w18{width:85.140000px;}
.w1c{width:87.876000px;}
.w1b{width:95.616000px;}
.wf{width:95.796000px;}
.wa{width:106.236000px;}
.wc{width:106.380000px;}
.wb{width:106.416000px;}
.w17{width:117.000000px;}
.w14{width:127.476000px;}
.w13{width:127.620000px;}
.w12{width:127.656000px;}
.w11{width:128.736000px;}
.w9{width:319.035000px;}
.w8{width:329.250000px;}
.w10{width:382.755000px;}
.w6{width:509.609258px;}
.w7{width:648.285000px;}
.w16{width:660.210000px;}
.w3{width:720.690000px;}
.wd{width:734.730000px;}
.w5{width:760.830000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:8.100000px;}
.x30{left:10.260000px;}
.x32{left:12.060000px;}
.x22{left:14.400000px;}
.x20{left:16.590000px;}
.x3a{left:18.000000px;}
.x39{left:19.260000px;}
.x1e{left:21.090000px;}
.x21{left:22.680000px;}
.x1f{left:25.590000px;}
.x38{left:27.360000px;}
.x2a{left:28.974000px;}
.x27{left:30.060000px;}
.x2c{left:31.860000px;}
.x2b{left:34.380000px;}
.x16{left:36.884394px;}
.x2e{left:38.154000px;}
.x2d{left:40.860000px;}
.x1d{left:42.480000px;}
.x15{left:45.607887px;}
.x1a{left:49.530000px;}
.x14{left:51.505460px;}
.x13{left:57.427606px;}
.xb{left:63.360000px;}
.x17{left:116.005248px;}
.x25{left:126.030000px;}
.x4{left:127.656000px;}
.x19{left:138.450000px;}
.x2{left:140.796000px;}
.x5{left:154.649987px;}
.xa{left:163.649987px;}
.x12{left:191.100010px;}
.x2f{left:203.970000px;}
.x3{left:236.010000px;}
.x31{left:244.650000px;}
.x23{left:287.175000px;}
.x24{left:350.895000px;}
.x7{left:406.154987px;}
.x9{left:409.214987px;}
.x33{left:436.035000px;}
.x8{left:438.194987px;}
.x1{left:442.335000px;}
.x6{left:446.474987px;}
.x18{left:456.915000px;}
.x28{left:478.545000px;}
.x34{left:521.025000px;}
.x1b{left:563.145000px;}
.x35{left:595.545000px;}
.x29{left:606.165000px;}
.x1c{left:669.570000px;}
.x11{left:685.049987px;}
.x36{left:691.170000px;}
.xf{left:701.069987px;}
.x10{left:705.389987px;}
.xc{left:712.410000px;}
.x26{left:733.650000px;}
.x37{left:776.310000px;}
.xd{left:784.050000px;}
@media print{
.v6{vertical-align:-29.440000pt;}
.v8{vertical-align:-24.320000pt;}
.v2{vertical-align:-21.120000pt;}
.vc{vertical-align:-15.713964pt;}
.v9{vertical-align:-10.475976pt;}
.v4{vertical-align:-5.120000pt;}
.vd{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.120000pt;}
.vb{vertical-align:10.475976pt;}
.ve{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.v3{vertical-align:24.320000pt;}
.va{vertical-align:26.189941pt;}
.v7{vertical-align:29.440000pt;}
.ls19{letter-spacing:-1.344000pt;}
.ls15{letter-spacing:-0.832000pt;}
.ls18{letter-spacing:-0.704000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls1b{letter-spacing:-0.448000pt;}
.lsa{letter-spacing:-0.384000pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls28{letter-spacing:-0.230933pt;}
.ls9{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls29{letter-spacing:-0.094933pt;}
.ls1c{letter-spacing:-0.064000pt;}
.ls20{letter-spacing:-0.043650pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.043650pt;}
.ls26{letter-spacing:0.047360pt;}
.ls12{letter-spacing:0.064000pt;}
.ls1d{letter-spacing:0.106667pt;}
.ls25{letter-spacing:0.120320pt;}
.ls6{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.135680pt;}
.ls1{letter-spacing:0.158720pt;}
.ls0{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.192000pt;}
.ls16{letter-spacing:0.227733pt;}
.ls27{letter-spacing:0.230933pt;}
.ls24{letter-spacing:0.231040pt;}
.ls8{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.295680pt;}
.ls2{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.384000pt;}
.ls22{letter-spacing:0.419039pt;}
.lsc{letter-spacing:0.426667pt;}
.ls14{letter-spacing:0.480000pt;}
.ls1e{letter-spacing:0.598178pt;}
.ls5{letter-spacing:0.640000pt;}
.ls21{letter-spacing:0.673954pt;}
.ls1a{letter-spacing:0.832000pt;}
.ls23{letter-spacing:0.970774pt;}
.ls11{letter-spacing:1.280000pt;}
.ls13{letter-spacing:1.440000pt;}
.ls7{letter-spacing:30.208000pt;}
.wsc{word-spacing:-17.280000pt;}
.ws10{word-spacing:-16.832000pt;}
.ws5{word-spacing:-16.640000pt;}
.wsf{word-spacing:-16.384000pt;}
.ws9{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.192000pt;}
.ws8{word-spacing:-16.128000pt;}
.wsd{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws13{word-spacing:-15.936000pt;}
.wsb{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.808000pt;}
.wsa{word-spacing:-15.744000pt;}
.ws11{word-spacing:-15.552000pt;}
.ws12{word-spacing:-15.168000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws1c{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.534613pt;}
.ws17{word-spacing:-13.432821pt;}
.ws1a{word-spacing:-13.327360pt;}
.ws19{word-spacing:-13.280000pt;}
.ws14{word-spacing:-13.136001pt;}
.ws1d{word-spacing:-13.049067pt;}
.ws16{word-spacing:-12.462047pt;}
.ws2{word-spacing:-10.720000pt;}
.ws0{word-spacing:-9.280000pt;}
.ws1b{word-spacing:-8.640000pt;}
.ws15{word-spacing:-7.878807pt;}
.ws6{word-spacing:0.000000pt;}
.ws18{word-spacing:230.761313pt;}
._13{margin-left:-4.586667pt;}
._6{margin-left:-3.477333pt;}
._2{margin-left:-2.389333pt;}
._0{margin-left:-1.347690pt;}
._1{width:0.914047pt;}
._e{width:2.531690pt;}
._7{width:3.626667pt;}
._3{width:4.928000pt;}
._8{width:6.445953pt;}
._d{width:7.521212pt;}
._10{width:8.426667pt;}
._14{width:9.600000pt;}
._15{width:10.936620pt;}
._4{width:11.840000pt;}
._5{width:12.736000pt;}
._b{width:14.122667pt;}
._f{width:15.079380pt;}
._a{width:17.032593pt;}
._9{width:18.033643pt;}
._16{width:19.051071pt;}
._1a{width:20.480000pt;}
._1b{width:23.808000pt;}
._17{width:25.386667pt;}
._18{width:26.378667pt;}
._19{width:27.360000pt;}
._c{width:32.234667pt;}
._11{width:57.664000pt;}
._12{width:59.082667pt;}
._1d{width:206.673771pt;}
._1e{width:376.298667pt;}
._1c{width:752.138667pt;}
.fsa{font-size:31.427929pt;}
.fs9{font-size:31.515229pt;}
.fsc{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs6{font-size:41.991205pt;}
.fs4{font-size:42.880000pt;}
.fs8{font-size:49.848187pt;}
.fs7{font-size:49.889097pt;}
.fsb{font-size:53.120000pt;}
.fs5{font-size:53.333333pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y127{bottom:3.200000pt;}
.yf8{bottom:3.520000pt;}
.y12d{bottom:3.680000pt;}
.yfe{bottom:3.840000pt;}
.yb5{bottom:4.000000pt;}
.yea{bottom:4.160000pt;}
.yde{bottom:4.320000pt;}
.ydd{bottom:4.480000pt;}
.ye7{bottom:4.640000pt;}
.ye4{bottom:4.960000pt;}
.ye2{bottom:5.120000pt;}
.ye6{bottom:5.600000pt;}
.yd9{bottom:6.080000pt;}
.yfc{bottom:6.240000pt;}
.ye0{bottom:6.560000pt;}
.y124{bottom:7.040000pt;}
.y128{bottom:10.880000pt;}
.yf4{bottom:12.480000pt;}
.yf6{bottom:12.640000pt;}
.ydb{bottom:14.560000pt;}
.y12b{bottom:18.400000pt;}
.y126{bottom:18.560000pt;}
.y120{bottom:19.680000pt;}
.y122{bottom:20.320000pt;}
.y11f{bottom:20.640000pt;}
.yb4{bottom:21.760000pt;}
.y123{bottom:22.400000pt;}
.yd8{bottom:24.480000pt;}
.y12a{bottom:33.760000pt;}
.yd1{bottom:38.477174pt;}
.yb3{bottom:39.840000pt;}
.y1c{bottom:51.040000pt;}
.yca{bottom:52.161426pt;}
.y104{bottom:59.040000pt;}
.y10c{bottom:59.066667pt;}
.yfa{bottom:60.360000pt;}
.y1{bottom:68.992000pt;}
.yc4{bottom:103.552000pt;}
.ycb{bottom:105.478908pt;}
.y1a{bottom:105.792000pt;}
.y56{bottom:109.952000pt;}
.y80{bottom:112.672000pt;}
.ybc{bottom:114.912000pt;}
.yc3{bottom:123.392000pt;}
.y55{bottom:128.352000pt;}
.y35{bottom:130.272000pt;}
.y7f{bottom:131.072000pt;}
.ybb{bottom:134.746667pt;}
.y19{bottom:142.586667pt;}
.yc2{bottom:143.386667pt;}
.y54{bottom:146.746667pt;}
.yc0{bottom:147.546667pt;}
.y7e{bottom:149.466667pt;}
.yba{bottom:154.586667pt;}
.ycc{bottom:158.801627pt;}
.y34{bottom:167.066667pt;}
.ybf{bottom:167.386667pt;}
.y7d{bottom:167.866667pt;}
.yc1{bottom:170.106667pt;}
.yd0{bottom:171.346611pt;}
.y53{bottom:175.706667pt;}
.y95{bottom:178.586667pt;}
.y18{bottom:179.386667pt;}
.yb9{bottom:181.306667pt;}
.ybe{bottom:187.226667pt;}
.y52{bottom:194.106667pt;}
.y7c{bottom:196.986667pt;}
.y33{bottom:203.866667pt;}
.ycd{bottom:212.098156pt;}
.y51{bottom:212.506667pt;}
.ybd{bottom:214.106667pt;}
.y7b{bottom:215.386667pt;}
.y17{bottom:216.186667pt;}
.y50{bottom:230.906667pt;}
.y7a{bottom:233.786667pt;}
.y32{bottom:240.666667pt;}
.yf2{bottom:243.386667pt;}
.y79{bottom:252.186667pt;}
.y16{bottom:252.986667pt;}
.y4f{bottom:260.026667pt;}
.y94{bottom:262.746667pt;}
.yce{bottom:265.412146pt;}
.yf1{bottom:273.786667pt;}
.y31{bottom:277.466667pt;}
.y4e{bottom:278.426667pt;}
.y78{bottom:281.146667pt;}
.y15{bottom:289.786667pt;}
.y4d{bottom:296.826667pt;}
.y77{bottom:299.586667pt;}
.yf0{bottom:304.386667pt;}
.y93{bottom:310.306667pt;}
.y30{bottom:314.306667pt;}
.y76{bottom:317.986667pt;}
.ycf{bottom:318.734866pt;}
.y4c{bottom:325.826667pt;}
.y14{bottom:326.626667pt;}
.yb1{bottom:327.586667pt;}
.y92{bottom:328.706667pt;}
.yef{bottom:334.946667pt;}
.y75{bottom:336.386667pt;}
.y4b{bottom:344.226667pt;}
.yaf{bottom:345.666667pt;}
.y91{bottom:347.106667pt;}
.y3b{bottom:350.786667pt;}
.y2f{bottom:351.106667pt;}
.y4a{bottom:362.626667pt;}
.y13{bottom:363.426667pt;}
.y74{bottom:365.506667pt;}
.y90{bottom:376.226667pt;}
.y49{bottom:381.026667pt;}
.y73{bottom:383.906667pt;}
.y2e{bottom:387.906667pt;}
.y8f{bottom:394.626667pt;}
.yee{bottom:395.906667pt;}
.y12{bottom:400.226667pt;}
.y72{bottom:402.306667pt;}
.yae{bottom:405.186667pt;}
.y48{bottom:410.146667pt;}
.y8e{bottom:413.026667pt;}
.yad{bottom:423.586667pt;}
.y2d{bottom:424.706667pt;}
.yed{bottom:426.466667pt;}
.y47{bottom:428.546667pt;}
.y71{bottom:431.426667pt;}
.y11{bottom:437.026667pt;}
.yac{bottom:441.986667pt;}
.y46{bottom:446.946667pt;}
.y70{bottom:449.826667pt;}
.y11d{bottom:454.146667pt;}
.yec{bottom:457.026667pt;}
.y8d{bottom:460.386667pt;}
.y2c{bottom:461.506667pt;}
.y6f{bottom:468.226667pt;}
.y10{bottom:473.826667pt;}
.y45{bottom:476.066667pt;}
.y8c{bottom:478.786667pt;}
.y11c{bottom:484.546667pt;}
.yeb{bottom:487.586667pt;}
.yab{bottom:489.506667pt;}
.y44{bottom:494.466667pt;}
.y6e{bottom:497.186667pt;}
.y2b{bottom:498.306667pt;}
.y10b{bottom:502.786667pt;}
.y39{bottom:504.386667pt;}
.yaa{bottom:507.906667pt;}
.yf{bottom:510.626667pt;}
.y43{bottom:512.866667pt;}
.y11b{bottom:515.106667pt;}
.y6d{bottom:515.586667pt;}
.y112{bottom:521.186667pt;}
.ya9{bottom:526.306667pt;}
.y6c{bottom:533.986667pt;}
.y2a{bottom:535.106667pt;}
.y111{bottom:539.613333pt;}
.y42{bottom:541.853333pt;}
.y8b{bottom:544.733333pt;}
.y11a{bottom:545.693333pt;}
.ye{bottom:547.293333pt;}
.y6b{bottom:552.413333pt;}
.yb8{bottom:556.253333pt;}
.y110{bottom:558.013333pt;}
.y41{bottom:560.253333pt;}
.y8a{bottom:563.133333pt;}
.y29{bottom:571.933333pt;}
.ya8{bottom:573.693333pt;}
.y119{bottom:576.253333pt;}
.y10f{bottom:576.413333pt;}
.y40{bottom:578.653333pt;}
.y6a{bottom:581.533333pt;}
.yd{bottom:584.093333pt;}
.yb7{bottom:586.813333pt;}
.yc8{bottom:587.133333pt;}
.ya7{bottom:592.093333pt;}
.y10e{bottom:594.813333pt;}
.y3f{bottom:597.053333pt;}
.y69{bottom:599.933333pt;}
.y118{bottom:606.813333pt;}
.y28{bottom:608.733333pt;}
.y10d{bottom:613.213333pt;}
.y3e{bottom:615.453333pt;}
.yb6{bottom:617.373333pt;}
.yc7{bottom:617.693333pt;}
.y68{bottom:618.333333pt;}
.yc{bottom:620.573333pt;}
.ya6{bottom:621.213333pt;}
.y89{bottom:628.893333pt;}
.yb2{bottom:631.933333pt;}
.y103{bottom:632.253333pt;}
.y67{bottom:636.733333pt;}
.y117{bottom:637.213333pt;}
.yc6{bottom:637.533333pt;}
.ya5{bottom:639.613333pt;}
.y27{bottom:645.533333pt;}
.y88{bottom:647.293333pt;}
.y10a{bottom:650.653333pt;}
.y3a{bottom:651.613333pt;}
.y3d{bottom:651.933333pt;}
.yd6{bottom:652.413333pt;}
.yc5{bottom:657.373333pt;}
.ya4{bottom:658.013333pt;}
.y66{bottom:665.693333pt;}
.y116{bottom:667.773333pt;}
.y109{bottom:669.053333pt;}
.ya3{bottom:676.413333pt;}
.y26{bottom:682.333333pt;}
.yd5{bottom:682.813333pt;}
.y3c{bottom:683.133333pt;}
.y65{bottom:684.093333pt;}
.yc9{bottom:685.002724pt;}
.yb0{bottom:686.653333pt;}
.y108{bottom:687.453333pt;}
.yb{bottom:692.573333pt;}
.y115{bottom:698.333333pt;}
.y64{bottom:702.493333pt;}
.ya2{bottom:705.533333pt;}
.y107{bottom:705.853333pt;}
.y87{bottom:713.213333pt;}
.yd4{bottom:713.373333pt;}
.y25{bottom:719.133333pt;}
.y63{bottom:720.893333pt;}
.ya1{bottom:723.933333pt;}
.y106{bottom:724.253333pt;}
.y114{bottom:728.893333pt;}
.ya{bottom:731.613333pt;}
.ya0{bottom:742.333333pt;}
.y105{bottom:742.653333pt;}
.yd3{bottom:743.933333pt;}
.y62{bottom:750.013333pt;}
.y24{bottom:755.933333pt;}
.ye9{bottom:759.133333pt;}
.y113{bottom:759.293333pt;}
.y9{bottom:760.093333pt;}
.y9f{bottom:760.733333pt;}
.yf9{bottom:761.693333pt;}
.y61{bottom:768.413333pt;}
.y12e{bottom:773.893333pt;}
.ye8{bottom:778.213333pt;}
.y86{bottom:779.173333pt;}
.y102{bottom:780.133333pt;}
.y60{bottom:786.853333pt;}
.y9e{bottom:789.733333pt;}
.y23{bottom:792.773333pt;}
.y85{bottom:797.573333pt;}
.ye5{bottom:798.373333pt;}
.y101{bottom:798.533333pt;}
.y8{bottom:799.173333pt;}
.y12c{bottom:804.613333pt;}
.y9d{bottom:808.133333pt;}
.y5f{bottom:815.973333pt;}
.y100{bottom:816.933333pt;}
.ye3{bottom:818.533333pt;}
.y129{bottom:820.933333pt;}
.y9c{bottom:826.533333pt;}
.y7{bottom:827.653333pt;}
.y22{bottom:829.573333pt;}
.y5e{bottom:834.373333pt;}
.yff{bottom:835.333333pt;}
.ye1{bottom:839.173333pt;}
.y5d{bottom:852.773333pt;}
.yfd{bottom:853.733333pt;}
.y9b{bottom:855.653333pt;}
.ydf{bottom:860.133333pt;}
.y84{bottom:863.333333pt;}
.y21{bottom:866.373333pt;}
.y6{bottom:866.533333pt;}
.y125{bottom:866.853333pt;}
.y5c{bottom:871.173333pt;}
.yfb{bottom:872.133333pt;}
.y9a{bottom:874.053333pt;}
.y83{bottom:881.733333pt;}
.yda{bottom:884.773333pt;}
.y99{bottom:892.453333pt;}
.yf5{bottom:893.733333pt;}
.y5{bottom:895.013333pt;}
.y121{bottom:898.213333pt;}
.y5b{bottom:900.133333pt;}
.y38{bottom:902.853333pt;}
.y20{bottom:903.173333pt;}
.ydc{bottom:904.933333pt;}
.y98{bottom:910.853333pt;}
.yf7{bottom:912.133333pt;}
.y5a{bottom:918.533333pt;}
.yd7{bottom:925.733333pt;}
.y4{bottom:928.773333pt;}
.y82{bottom:929.253333pt;}
.yf3{bottom:931.173333pt;}
.y11e{bottom:933.733333pt;}
.y59{bottom:936.933333pt;}
.y1f{bottom:939.973333pt;}
.y81{bottom:947.653333pt;}
.y97{bottom:958.373333pt;}
.y58{bottom:966.053333pt;}
.y3{bottom:967.813333pt;}
.y1e{bottom:976.453333pt;}
.y37{bottom:976.773333pt;}
.yd2{bottom:983.013333pt;}
.y57{bottom:984.453333pt;}
.y96{bottom:995.173333pt;}
.y2{bottom:1010.853333pt;}
.y1d{bottom:1013.280000pt;}
.y36{bottom:1013.600000pt;}
.y1b{bottom:1109.386667pt;}
.h2c{height:16.320000pt;}
.h1f{height:18.400000pt;}
.h22{height:18.432000pt;}
.h1c{height:19.072000pt;}
.h18{height:20.160000pt;}
.h1b{height:20.640000pt;}
.h21{height:20.800000pt;}
.h1a{height:20.960000pt;}
.h19{height:24.000000pt;}
.h28{height:30.720000pt;}
.h25{height:33.120000pt;}
.h27{height:34.720000pt;}
.h1d{height:35.680000pt;}
.h5{height:36.667500pt;}
.h1e{height:36.800000pt;}
.ha{height:37.031250pt;}
.h17{height:40.320000pt;}
.h16{height:41.120000pt;}
.hd{height:42.084375pt;}
.h13{height:42.319261pt;}
.h6{height:43.343750pt;}
.h2b{height:45.920000pt;}
.h15{height:50.237626pt;}
.h14{height:50.278856pt;}
.h29{height:52.134375pt;}
.h2a{height:52.478750pt;}
.h26{height:53.535000pt;}
.h11{height:54.720000pt;}
.hf{height:57.375000pt;}
.h4{height:57.787500pt;}
.h2{height:58.563750pt;}
.h7{height:62.812500pt;}
.h9{height:64.500000pt;}
.he{height:66.383042pt;}
.h8{height:66.404375pt;}
.hc{height:66.511042pt;}
.hb{height:66.625000pt;}
.h3{height:75.465000pt;}
.h23{height:128.800000pt;}
.h24{height:128.832000pt;}
.h20{height:131.232000pt;}
.h10{height:341.506667pt;}
.h12{height:343.088313pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:35.680000pt;}
.we{width:56.640000pt;}
.w1a{width:66.240000pt;}
.w15{width:67.840000pt;}
.w19{width:75.552000pt;}
.w18{width:75.680000pt;}
.w1c{width:78.112000pt;}
.w1b{width:84.992000pt;}
.wf{width:85.152000pt;}
.wa{width:94.432000pt;}
.wc{width:94.560000pt;}
.wb{width:94.592000pt;}
.w17{width:104.000000pt;}
.w14{width:113.312000pt;}
.w13{width:113.440000pt;}
.w12{width:113.472000pt;}
.w11{width:114.432000pt;}
.w9{width:283.586667pt;}
.w8{width:292.666667pt;}
.w10{width:340.226667pt;}
.w6{width:452.986007pt;}
.w7{width:576.253333pt;}
.w16{width:586.853333pt;}
.w3{width:640.613333pt;}
.wd{width:653.093333pt;}
.w5{width:676.293333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:7.200000pt;}
.x30{left:9.120000pt;}
.x32{left:10.720000pt;}
.x22{left:12.800000pt;}
.x20{left:14.746667pt;}
.x3a{left:16.000000pt;}
.x39{left:17.120000pt;}
.x1e{left:18.746667pt;}
.x21{left:20.160000pt;}
.x1f{left:22.746667pt;}
.x38{left:24.320000pt;}
.x2a{left:25.754667pt;}
.x27{left:26.720000pt;}
.x2c{left:28.320000pt;}
.x2b{left:30.560000pt;}
.x16{left:32.786128pt;}
.x2e{left:33.914667pt;}
.x2d{left:36.320000pt;}
.x1d{left:37.760000pt;}
.x15{left:40.540344pt;}
.x1a{left:44.026667pt;}
.x14{left:45.782631pt;}
.x13{left:51.046761pt;}
.xb{left:56.320000pt;}
.x17{left:103.115776pt;}
.x25{left:112.026667pt;}
.x4{left:113.472000pt;}
.x19{left:123.066667pt;}
.x2{left:125.152000pt;}
.x5{left:137.466655pt;}
.xa{left:145.466655pt;}
.x12{left:169.866675pt;}
.x2f{left:181.306667pt;}
.x3{left:209.786667pt;}
.x31{left:217.466667pt;}
.x23{left:255.266667pt;}
.x24{left:311.906667pt;}
.x7{left:361.026655pt;}
.x9{left:363.746655pt;}
.x33{left:387.586667pt;}
.x8{left:389.506655pt;}
.x1{left:393.186667pt;}
.x6{left:396.866655pt;}
.x18{left:406.146667pt;}
.x28{left:425.373333pt;}
.x34{left:463.133333pt;}
.x1b{left:500.573333pt;}
.x35{left:529.373333pt;}
.x29{left:538.813333pt;}
.x1c{left:595.173333pt;}
.x11{left:608.933322pt;}
.x36{left:614.373333pt;}
.xf{left:623.173322pt;}
.x10{left:627.013322pt;}
.xc{left:633.253333pt;}
.x26{left:652.133333pt;}
.x37{left:690.053333pt;}
.xd{left:696.933333pt;}
}




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