
    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_23ea177e4beb2fe17fe29aa0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.776367;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_4348438bf42dc356fe76095c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939941;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_f5569bbb75508f895490e5e2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.877441;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_b3beba8c776a8f692214a91e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.776855;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_c42ea4204e291fc2a46abafd.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d2aaa1a60d7d0d484aab2fc7.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c54c0678a8ded5741d336daa.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_10b2d308a994e12d022fd4ca.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.776367;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_d3210f43e516087205c9e57d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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_a29d9238312b33310c03d72c.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c208916093499d2b1a895b2f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.738770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_2718d5415e96673691500e0f.woff2')format("woff");}.ffc{font-family:ffc;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;}
@font-face{font-family:ffd;src:url('chunks/assets/font_ad59332db88b08b0ce223942.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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.255915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255915,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.288450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288450,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v3{vertical-align:-165.780000px;}
.v2{vertical-align:-82.980000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v4{vertical-align:27.360000px;}
.ls7{letter-spacing:-4.320000px;}
.ls4{letter-spacing:-1.049103px;}
.lsd{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.lsf{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.078000px;}
.lsc{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.162000px;}
.lsb{letter-spacing:0.576000px;}
.lse{letter-spacing:0.720000px;}
.ls2{letter-spacing:1.220205px;}
.ls9{letter-spacing:14.400000px;}
.ls8{letter-spacing:2339.016000px;}
.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;}
}
.ws4{word-spacing:-72.000000px;}
.ws9{word-spacing:-18.576000px;}
.wsa{word-spacing:-18.144000px;}
.wsb{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.928000px;}
.ws8{word-spacing:-17.856000px;}
.ws6{word-spacing:-15.984000px;}
.ws5{word-spacing:-14.040000px;}
.ws7{word-spacing:-12.060000px;}
.ws2{word-spacing:0.000000px;}
.ws1{word-spacing:0.999488px;}
.ws0{word-spacing:420.975840px;}
._3{margin-left:-6.123840px;}
._4{margin-left:-4.118400px;}
._2{margin-left:-2.232000px;}
._1{margin-left:-1.198080px;}
._0{width:1.377792px;}
._a{width:2.438208px;}
._6{width:4.176000px;}
._7{width:6.048000px;}
._b{width:7.146624px;}
._8{width:9.144000px;}
._9{width:10.646208px;}
._f{width:11.731584px;}
._e{width:13.536000px;}
._d{width:14.976000px;}
._c{width:16.488000px;}
._15{width:19.358208px;}
._10{width:21.240000px;}
._11{width:22.968000px;}
._14{width:24.552000px;}
._2b{width:26.478624px;}
._12{width:27.576000px;}
._13{width:28.846080px;}
._18{width:30.256128px;}
._19{width:31.493952px;}
._16{width:32.544000px;}
._17{width:33.960000px;}
._2a{width:35.150304px;}
._28{width:36.648000px;}
._29{width:37.750368px;}
._1d{width:40.008000px;}
._20{width:46.368000px;}
._1e{width:55.728000px;}
._1b{width:61.560000px;}
._24{width:124.272000px;}
._21{width:125.856000px;}
._1f{width:140.976000px;}
._1c{width:197.976000px;}
._5{width:431.756880px;}
._1a{width:677.832576px;}
._23{width:2139.828000px;}
._27{width:2225.832000px;}
._22{width:2289.696000px;}
._26{width:2406.336000px;}
._25{width:2426.640000px;}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(13,13,13);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs4{font-size:45.360000px;}
.fs9{font-size:48.240000px;}
.fs7{font-size:49.615044px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:59.904000px;}
.fs6{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs8{font-size:84.240000px;}
.yac{bottom:-2.145000px;}
.y15{bottom:-1.965000px;}
.y0{bottom:0.000000px;}
.yb0{bottom:2.700000px;}
.y17{bottom:3.393136px;}
.y132{bottom:4.485000px;}
.y13d{bottom:4.500000px;}
.y150{bottom:5.055000px;}
.y135{bottom:6.465000px;}
.y139{bottom:7.905000px;}
.ye0{bottom:14.565000px;}
.yeb{bottom:14.580000px;}
.ye2{bottom:14.610000px;}
.yee{bottom:14.745000px;}
.ye4{bottom:14.760000px;}
.ye9{bottom:14.925000px;}
.ye6{bottom:14.940000px;}
.y11{bottom:15.675000px;}
.y14{bottom:17.115000px;}
.y40{bottom:18.705000px;}
.y131{bottom:24.825000px;}
.yf4{bottom:24.840000px;}
.y133{bottom:25.185000px;}
.y13c{bottom:25.200000px;}
.y14e{bottom:25.380000px;}
.y151{bottom:25.740000px;}
.y12f{bottom:26.805000px;}
.y121{bottom:26.985000px;}
.y128{bottom:27.000000px;}
.y138{bottom:28.245000px;}
.y11d{bottom:42.315000px;}
.yf3{bottom:45.540000px;}
.y13b{bottom:45.570000px;}
.yab{bottom:46.815000px;}
.y13{bottom:46.995000px;}
.y123{bottom:47.325000px;}
.y127{bottom:47.340000px;}
.y120{bottom:47.370000px;}
.y12e{bottom:47.505000px;}
.y129{bottom:47.700000px;}
.yaf{bottom:53.460000px;}
.ya7{bottom:56.700000px;}
.y11b{bottom:62.640000px;}
.y11e{bottom:63.000000px;}
.y12d{bottom:68.250000px;}
.yd{bottom:78.480000px;}
.y119{bottom:83.520000px;}
.y117{bottom:83.535000px;}
.y12c{bottom:88.950000px;}
.yc{bottom:94.680000px;}
.y115{bottom:104.220000px;}
.y118{bottom:104.235000px;}
.y126{bottom:119.340000px;}
.y10b{bottom:120.780000px;}
.y81{bottom:122.040000px;}
.y164{bottom:122.220000px;}
.y8b{bottom:124.380000px;}
.y68{bottom:124.740000px;}
.y114{bottom:124.920000px;}
.y13a{bottom:126.540000px;}
.y3e{bottom:129.060000px;}
.y16b{bottom:131.580000px;}
.ye3{bottom:135.360000px;}
.y10a{bottom:141.480000px;}
.y80{bottom:142.740000px;}
.y163{bottom:142.920000px;}
.y8a{bottom:145.080000px;}
.y67{bottom:145.440000px;}
.y3d{bottom:149.760000px;}
.y16a{bottom:152.280000px;}
.y109{bottom:162.180000px;}
.y7f{bottom:163.440000px;}
.y162{bottom:163.620000px;}
.y89{bottom:165.780000px;}
.y66{bottom:166.140000px;}
.ye1{bottom:167.220000px;}
.y3c{bottom:170.490000px;}
.y169{bottom:173.010000px;}
.y108{bottom:182.910000px;}
.y125{bottom:184.005000px;}
.y7e{bottom:184.170000px;}
.y161{bottom:184.350000px;}
.y88{bottom:186.510000px;}
.y65{bottom:186.870000px;}
.y137{bottom:189.585000px;}
.y3b{bottom:191.190000px;}
.y168{bottom:193.710000px;}
.ydf{bottom:198.765000px;}
.y107{bottom:203.610000px;}
.y7d{bottom:204.870000px;}
.y160{bottom:205.050000px;}
.y87{bottom:207.210000px;}
.y64{bottom:207.570000px;}
.y3a{bottom:211.890000px;}
.y167{bottom:214.410000px;}
.y106{bottom:224.310000px;}
.y7c{bottom:225.570000px;}
.y15f{bottom:225.750000px;}
.y86{bottom:227.910000px;}
.y63{bottom:228.270000px;}
.y39{bottom:232.590000px;}
.yde{bottom:234.750000px;}
.y166{bottom:235.110000px;}
.y136{bottom:235.125000px;}
.y105{bottom:245.010000px;}
.y7b{bottom:246.270000px;}
.y15e{bottom:246.450000px;}
.y85{bottom:248.610000px;}
.y124{bottom:248.805000px;}
.y62{bottom:248.970000px;}
.y38{bottom:253.290000px;}
.ydd{bottom:255.450000px;}
.y165{bottom:255.810000px;}
.y104{bottom:265.710000px;}
.y7a{bottom:266.970000px;}
.y15d{bottom:267.150000px;}
.y84{bottom:269.310000px;}
.y61{bottom:269.670000px;}
.y37{bottom:273.990000px;}
.ydc{bottom:276.510000px;}
.y134{bottom:277.245000px;}
.y103{bottom:286.410000px;}
.y79{bottom:287.670000px;}
.y15c{bottom:287.850000px;}
.y60{bottom:290.370000px;}
.y36{bottom:294.690000px;}
.ydb{bottom:297.210000px;}
.y102{bottom:307.110000px;}
.y78{bottom:308.370000px;}
.y5f{bottom:311.070000px;}
.y122{bottom:313.425000px;}
.y14c{bottom:313.770000px;}
.y35{bottom:315.390000px;}
.yda{bottom:317.910000px;}
.y130{bottom:321.345000px;}
.y101{bottom:327.810000px;}
.y77{bottom:330.510000px;}
.y5e{bottom:331.770000px;}
.y14b{bottom:334.470000px;}
.y34{bottom:336.090000px;}
.yd9{bottom:338.610000px;}
.y100{bottom:348.510000px;}
.y76{bottom:351.210000px;}
.y5d{bottom:352.470000px;}
.y14a{bottom:355.530000px;}
.y33{bottom:356.790000px;}
.yd8{bottom:359.310000px;}
.y3f{bottom:359.865000px;}
.y12b{bottom:363.645000px;}
.yff{bottom:369.210000px;}
.y75{bottom:371.910000px;}
.y6c{bottom:372.810000px;}
.y5c{bottom:373.170000px;}
.y149{bottom:376.230000px;}
.y32{bottom:377.490000px;}
.y11f{bottom:378.045000px;}
.yd7{bottom:380.010000px;}
.yfe{bottom:389.910000px;}
.y74{bottom:392.610000px;}
.y6b{bottom:393.510000px;}
.y5b{bottom:393.870000px;}
.y148{bottom:396.930000px;}
.y31{bottom:398.190000px;}
.yd6{bottom:400.710000px;}
.yfd{bottom:410.610000px;}
.y73{bottom:413.355000px;}
.y5a{bottom:414.615000px;}
.y147{bottom:417.315000px;}
.y30{bottom:418.935000px;}
.yd5{bottom:421.455000px;}
.yfc{bottom:430.995000px;}
.y72{bottom:434.055000px;}
.y59{bottom:435.315000px;}
.y146{bottom:438.015000px;}
.yd4{bottom:442.155000px;}
.y11c{bottom:442.680000px;}
.y11a{bottom:442.695000px;}
.y2f{bottom:445.215000px;}
.yfb{bottom:452.055000px;}
.y71{bottom:454.755000px;}
.y58{bottom:456.015000px;}
.y145{bottom:458.715000px;}
.y2e{bottom:460.335000px;}
.yd3{bottom:462.855000px;}
.yfa{bottom:468.975000px;}
.y70{bottom:475.455000px;}
.y9d{bottom:476.355000px;}
.y57{bottom:476.715000px;}
.y144{bottom:479.415000px;}
.y2d{bottom:481.035000px;}
.y12a{bottom:483.195000px;}
.yd2{bottom:483.555000px;}
.y6f{bottom:496.155000px;}
.y9c{bottom:497.055000px;}
.y56{bottom:497.415000px;}
.y143{bottom:500.115000px;}
.y158{bottom:500.295000px;}
.yf9{bottom:500.835000px;}
.y2c{bottom:501.375000px;}
.yc7{bottom:503.895000px;}
.yd1{bottom:504.255000px;}
.y6e{bottom:516.855000px;}
.y9b{bottom:517.755000px;}
.y55{bottom:518.115000px;}
.y142{bottom:520.815000px;}
.y157{bottom:520.995000px;}
.y2b{bottom:521.355000px;}
.y116{bottom:522.600000px;}
.y113{bottom:522.615000px;}
.yc6{bottom:524.595000px;}
.yd0{bottom:524.955000px;}
.yf8{bottom:532.515000px;}
.y6d{bottom:537.375000px;}
.y9a{bottom:538.455000px;}
.y54{bottom:538.815000px;}
.y141{bottom:541.515000px;}
.y156{bottom:541.695000px;}
.y2a{bottom:542.235000px;}
.yc5{bottom:545.295000px;}
.ycf{bottom:545.655000px;}
.y99{bottom:559.155000px;}
.y53{bottom:559.515000px;}
.y155{bottom:562.395000px;}
.y29{bottom:562.575000px;}
.yf7{bottom:564.375000px;}
.yc4{bottom:565.995000px;}
.yce{bottom:566.355000px;}
.y98{bottom:579.855000px;}
.y52{bottom:580.215000px;}
.y154{bottom:583.095000px;}
.y28{bottom:583.275000px;}
.yc3{bottom:587.055000px;}
.yf6{bottom:596.235000px;}
.y97{bottom:600.555000px;}
.y51{bottom:600.915000px;}
.y153{bottom:603.795000px;}
.y27{bottom:604.335000px;}
.yc2{bottom:607.755000px;}
.y96{bottom:621.255000px;}
.y50{bottom:621.615000px;}
.y152{bottom:624.495000px;}
.y26{bottom:625.035000px;}
.yf5{bottom:627.735000px;}
.yc1{bottom:628.455000px;}
.y95{bottom:641.955000px;}
.y4f{bottom:642.315000px;}
.y25{bottom:645.375000px;}
.y15b{bottom:648.795000px;}
.yc0{bottom:649.155000px;}
.yf2{bottom:659.625000px;}
.y94{bottom:662.685000px;}
.y4e{bottom:663.045000px;}
.y24{bottom:666.105000px;}
.y112{bottom:669.525000px;}
.ybf{bottom:669.885000px;}
.y93{bottom:683.385000px;}
.y4d{bottom:683.745000px;}
.y23{bottom:687.165000px;}
.y111{bottom:690.225000px;}
.ybe{bottom:690.585000px;}
.y92{bottom:704.085000px;}
.y4c{bottom:704.445000px;}
.y22{bottom:707.865000px;}
.y110{bottom:710.925000px;}
.ybd{bottom:711.285000px;}
.y4b{bottom:724.785000px;}
.y6a{bottom:725.145000px;}
.yf1{bottom:726.585000px;}
.y21{bottom:728.205000px;}
.y10f{bottom:731.625000px;}
.ybc{bottom:731.985000px;}
.y140{bottom:733.605000px;}
.y91{bottom:745.485000px;}
.y4a{bottom:745.845000px;}
.yf0{bottom:747.285000px;}
.y20{bottom:748.905000px;}
.y10e{bottom:752.325000px;}
.ybb{bottom:752.685000px;}
.y13f{bottom:754.305000px;}
.y90{bottom:766.185000px;}
.y49{bottom:766.545000px;}
.yef{bottom:768.345000px;}
.y1f{bottom:769.965000px;}
.y10d{bottom:773.025000px;}
.yba{bottom:773.385000px;}
.y13e{bottom:774.645000px;}
.yed{bottom:785.280000px;}
.y48{bottom:786.885000px;}
.y69{bottom:787.245000px;}
.y1e{bottom:790.665000px;}
.ycd{bottom:793.725000px;}
.yb9{bottom:794.085000px;}
.y83{bottom:807.585000px;}
.y47{bottom:807.945000px;}
.y1d{bottom:811.365000px;}
.ycc{bottom:814.425000px;}
.yb8{bottom:814.785000px;}
.yec{bottom:817.140000px;}
.y82{bottom:828.285000px;}
.y46{bottom:828.645000px;}
.y1c{bottom:832.245000px;}
.ycb{bottom:835.125000px;}
.yb7{bottom:835.485000px;}
.yea{bottom:848.625000px;}
.y8f{bottom:848.985000px;}
.y45{bottom:849.345000px;}
.yca{bottom:855.825000px;}
.yb6{bottom:856.185000px;}
.y1b{bottom:856.545000px;}
.y8e{bottom:869.685000px;}
.y44{bottom:870.045000px;}
.y15a{bottom:876.525000px;}
.yb5{bottom:876.885000px;}
.ye8{bottom:880.500000px;}
.y1a{bottom:880.665000px;}
.y43{bottom:890.745000px;}
.y159{bottom:897.225000px;}
.yb4{bottom:897.585000px;}
.y19{bottom:904.830000px;}
.y8d{bottom:911.130000px;}
.y42{bottom:911.490000px;}
.ye7{bottom:912.390000px;}
.yc9{bottom:917.970000px;}
.yb3{bottom:918.330000px;}
.y18{bottom:928.950000px;}
.y8c{bottom:931.830000px;}
.y41{bottom:932.190000px;}
.y14f{bottom:933.255000px;}
.y14d{bottom:933.270000px;}
.y12{bottom:936.495000px;}
.yb2{bottom:938.670000px;}
.y10c{bottom:939.030000px;}
.ye5{bottom:944.070000px;}
.yb{bottom:951.270000px;}
.yc8{bottom:959.370000px;}
.yb1{bottom:959.730000px;}
.y16{bottom:960.101583px;}
.ya{bottom:967.470000px;}
.yaa{bottom:970.875000px;}
.y10{bottom:973.935000px;}
.ya6{bottom:978.630000px;}
.y9{bottom:983.850000px;}
.yad{bottom:994.481583px;}
.ya5{bottom:995.010000px;}
.y8{bottom:1000.050000px;}
.yae{bottom:1002.375000px;}
.ya4{bottom:1011.210000px;}
.y7{bottom:1016.430000px;}
.ya3{bottom:1027.590000px;}
.y6{bottom:1032.630000px;}
.ya2{bottom:1043.790000px;}
.y5{bottom:1049.010000px;}
.ya1{bottom:1060.170000px;}
.y4{bottom:1065.210000px;}
.ya0{bottom:1076.370000px;}
.y9f{bottom:1092.750000px;}
.y9e{bottom:1108.950000px;}
.yf{bottom:1132.530000px;}
.ye{bottom:1153.260000px;}
.ya9{bottom:1176.300000px;}
.ya8{bottom:1197.000000px;}
.y3{bottom:1216.800000px;}
.y2{bottom:1233.000000px;}
.y1{bottom:1249.380000px;}
.hb{height:15.846752px;}
.h14{height:16.200000px;}
.h5{height:29.700000px;}
.h1c{height:30.765000px;}
.h16{height:30.816000px;}
.h19{height:30.945000px;}
.h17{height:30.960000px;}
.h15{height:31.125000px;}
.h1b{height:31.140000px;}
.h1a{height:31.161000px;}
.h1f{height:31.170000px;}
.h9{height:31.952109px;}
.h8{height:39.247031px;}
.h2{height:41.027344px;}
.h2f{height:41.385000px;}
.h2d{height:41.391000px;}
.h2e{height:41.400000px;}
.h36{height:41.931000px;}
.h37{height:41.940000px;}
.h6{height:42.602344px;}
.h3{height:42.705000px;}
.h30{height:43.371000px;}
.h31{height:43.380000px;}
.h32{height:44.811000px;}
.h33{height:44.820000px;}
.h10{height:48.616875px;}
.h11{height:49.680000px;}
.ha{height:50.326875px;}
.h4{height:51.328125px;}
.hc{height:51.746940px;}
.h38{height:52.066406px;}
.h13{height:58.860000px;}
.h7{height:59.040000px;}
.h1e{height:62.095500px;}
.h1d{height:62.100000px;}
.h34{height:62.136000px;}
.h35{height:62.145000px;}
.h27{height:63.891000px;}
.h28{height:63.900000px;}
.h26{height:63.922500px;}
.h29{height:63.936000px;}
.h2a{height:63.945000px;}
.h12{height:66.757500px;}
.hf{height:70.664062px;}
.he{height:72.562500px;}
.h18{height:74.704922px;}
.h25{height:79.185000px;}
.h23{height:79.195500px;}
.h24{height:79.200000px;}
.hd{height:84.898125px;}
.h2b{height:105.501000px;}
.h2c{height:105.502500px;}
.h20{height:141.510000px;}
.h21{height:141.516000px;}
.h22{height:141.525000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:25.920000px;}
.w12{width:63.216000px;}
.we{width:63.705000px;}
.w18{width:84.225000px;}
.w13{width:84.235500px;}
.w14{width:84.240000px;}
.w1a{width:94.845000px;}
.w16{width:94.851000px;}
.w17{width:94.860000px;}
.w19{width:95.061000px;}
.w15{width:95.062500px;}
.wb{width:95.220000px;}
.w20{width:98.661000px;}
.w22{width:98.662500px;}
.w4{width:103.903602px;}
.w8{width:103.903605px;}
.w5{width:103.903611px;}
.w28{width:105.516000px;}
.w29{width:105.525000px;}
.wd{width:108.921000px;}
.w1d{width:108.936000px;}
.w1e{width:108.945000px;}
.w10{width:116.095500px;}
.w11{width:116.100000px;}
.w2a{width:116.265000px;}
.w2d{width:116.275500px;}
.w2e{width:116.280000px;}
.w2b{width:116.841000px;}
.w2c{width:116.842500px;}
.w1f{width:120.045000px;}
.w23{width:120.055500px;}
.w24{width:120.060000px;}
.wc{width:133.236000px;}
.w26{width:147.955500px;}
.w27{width:147.960000px;}
.w1c{width:152.850000px;}
.w25{width:190.455000px;}
.w1b{width:196.410000px;}
.w21{width:196.425000px;}
.w6{width:200.025000px;}
.wf{width:233.301000px;}
.wa{width:275.781000px;}
.w3{width:330.735000px;}
.w7{width:330.915000px;}
.w2{width:403.995000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:10.800000px;}
.x6{left:15.120000px;}
.x19{left:32.220000px;}
.x10{left:47.880000px;}
.x11{left:61.560000px;}
.x7{left:70.560000px;}
.x12{left:74.340000px;}
.x9{left:85.771527px;}
.x27{left:92.160000px;}
.x13{left:97.740000px;}
.x1{left:108.036000px;}
.x1e{left:109.125000px;}
.x14{left:111.420000px;}
.xe{left:120.996000px;}
.x15{left:125.280000px;}
.x16{left:139.140000px;}
.x36{left:148.536000px;}
.x17{left:152.100000px;}
.xc{left:171.030000px;}
.x1a{left:172.171523px;}
.xd{left:187.590000px;}
.x3{left:204.150000px;}
.xa{left:210.511515px;}
.x28{left:289.305000px;}
.x2c{left:299.955000px;}
.xf{left:318.315000px;}
.x23{left:343.155000px;}
.x1f{left:385.635000px;}
.x1b{left:419.115000px;}
.x2{left:420.915000px;}
.xb{left:432.075000px;}
.x29{left:442.875000px;}
.x2d{left:448.815000px;}
.x5{left:460.335000px;}
.x4{left:475.275000px;}
.x20{left:481.575000px;}
.x24{left:523.905000px;}
.x2a{left:552.540000px;}
.x2e{left:555.060000px;}
.x25{left:608.880000px;}
.x21{left:615.540000px;}
.x2f{left:672.060000px;}
.x2b{left:673.320000px;}
.x33{left:682.485000px;}
.x1c{left:697.290000px;}
.x35{left:699.270000px;}
.x18{left:701.070000px;}
.x31{left:703.230000px;}
.x26{left:704.670000px;}
.x34{left:706.290000px;}
.x32{left:707.370000px;}
.x30{left:711.150000px;}
.x1d{left:713.130000px;}
.x22{left:725.190000px;}
@media print{
.v3{vertical-align:-147.360000pt;}
.v2{vertical-align:-73.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v4{vertical-align:24.320000pt;}
.ls7{letter-spacing:-3.840000pt;}
.ls4{letter-spacing:-0.932536pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.lsf{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.069333pt;}
.lsc{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.144000pt;}
.lsb{letter-spacing:0.512000pt;}
.lse{letter-spacing:0.640000pt;}
.ls2{letter-spacing:1.084627pt;}
.ls9{letter-spacing:12.800000pt;}
.ls8{letter-spacing:2079.125333pt;}
.ws4{word-spacing:-64.000000pt;}
.ws9{word-spacing:-16.512000pt;}
.wsa{word-spacing:-16.128000pt;}
.wsb{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.936000pt;}
.ws8{word-spacing:-15.872000pt;}
.ws6{word-spacing:-14.208000pt;}
.ws5{word-spacing:-12.480000pt;}
.ws7{word-spacing:-10.720000pt;}
.ws2{word-spacing:0.000000pt;}
.ws1{word-spacing:0.888434pt;}
.ws0{word-spacing:374.200747pt;}
._3{margin-left:-5.443413pt;}
._4{margin-left:-3.660800pt;}
._2{margin-left:-1.984000pt;}
._1{margin-left:-1.064960pt;}
._0{width:1.224704pt;}
._a{width:2.167296pt;}
._6{width:3.712000pt;}
._7{width:5.376000pt;}
._b{width:6.352555pt;}
._8{width:8.128000pt;}
._9{width:9.463296pt;}
._f{width:10.428075pt;}
._e{width:12.032000pt;}
._d{width:13.312000pt;}
._c{width:14.656000pt;}
._15{width:17.207296pt;}
._10{width:18.880000pt;}
._11{width:20.416000pt;}
._14{width:21.824000pt;}
._2b{width:23.536555pt;}
._12{width:24.512000pt;}
._13{width:25.640960pt;}
._18{width:26.894336pt;}
._19{width:27.994624pt;}
._16{width:28.928000pt;}
._17{width:30.186667pt;}
._2a{width:31.244715pt;}
._28{width:32.576000pt;}
._29{width:33.555883pt;}
._1d{width:35.562667pt;}
._20{width:41.216000pt;}
._1e{width:49.536000pt;}
._1b{width:54.720000pt;}
._24{width:110.464000pt;}
._21{width:111.872000pt;}
._1f{width:125.312000pt;}
._1c{width:175.978667pt;}
._5{width:383.783893pt;}
._1a{width:602.517845pt;}
._23{width:1902.069333pt;}
._27{width:1978.517333pt;}
._22{width:2035.285333pt;}
._26{width:2138.965333pt;}
._25{width:2157.013333pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:40.320000pt;}
.fs9{font-size:42.880000pt;}
.fs7{font-size:44.102261pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:53.248000pt;}
.fs6{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs8{font-size:74.880000pt;}
.yac{bottom:-1.906667pt;}
.y15{bottom:-1.746667pt;}
.y0{bottom:0.000000pt;}
.yb0{bottom:2.400000pt;}
.y17{bottom:3.016121pt;}
.y132{bottom:3.986667pt;}
.y13d{bottom:4.000000pt;}
.y150{bottom:4.493333pt;}
.y135{bottom:5.746667pt;}
.y139{bottom:7.026667pt;}
.ye0{bottom:12.946667pt;}
.yeb{bottom:12.960000pt;}
.ye2{bottom:12.986667pt;}
.yee{bottom:13.106667pt;}
.ye4{bottom:13.120000pt;}
.ye9{bottom:13.266667pt;}
.ye6{bottom:13.280000pt;}
.y11{bottom:13.933333pt;}
.y14{bottom:15.213333pt;}
.y40{bottom:16.626667pt;}
.y131{bottom:22.066667pt;}
.yf4{bottom:22.080000pt;}
.y133{bottom:22.386667pt;}
.y13c{bottom:22.400000pt;}
.y14e{bottom:22.560000pt;}
.y151{bottom:22.880000pt;}
.y12f{bottom:23.826667pt;}
.y121{bottom:23.986667pt;}
.y128{bottom:24.000000pt;}
.y138{bottom:25.106667pt;}
.y11d{bottom:37.613333pt;}
.yf3{bottom:40.480000pt;}
.y13b{bottom:40.506667pt;}
.yab{bottom:41.613333pt;}
.y13{bottom:41.773333pt;}
.y123{bottom:42.066667pt;}
.y127{bottom:42.080000pt;}
.y120{bottom:42.106667pt;}
.y12e{bottom:42.226667pt;}
.y129{bottom:42.400000pt;}
.yaf{bottom:47.520000pt;}
.ya7{bottom:50.400000pt;}
.y11b{bottom:55.680000pt;}
.y11e{bottom:56.000000pt;}
.y12d{bottom:60.666667pt;}
.yd{bottom:69.760000pt;}
.y119{bottom:74.240000pt;}
.y117{bottom:74.253333pt;}
.y12c{bottom:79.066667pt;}
.yc{bottom:84.160000pt;}
.y115{bottom:92.640000pt;}
.y118{bottom:92.653333pt;}
.y126{bottom:106.080000pt;}
.y10b{bottom:107.360000pt;}
.y81{bottom:108.480000pt;}
.y164{bottom:108.640000pt;}
.y8b{bottom:110.560000pt;}
.y68{bottom:110.880000pt;}
.y114{bottom:111.040000pt;}
.y13a{bottom:112.480000pt;}
.y3e{bottom:114.720000pt;}
.y16b{bottom:116.960000pt;}
.ye3{bottom:120.320000pt;}
.y10a{bottom:125.760000pt;}
.y80{bottom:126.880000pt;}
.y163{bottom:127.040000pt;}
.y8a{bottom:128.960000pt;}
.y67{bottom:129.280000pt;}
.y3d{bottom:133.120000pt;}
.y16a{bottom:135.360000pt;}
.y109{bottom:144.160000pt;}
.y7f{bottom:145.280000pt;}
.y162{bottom:145.440000pt;}
.y89{bottom:147.360000pt;}
.y66{bottom:147.680000pt;}
.ye1{bottom:148.640000pt;}
.y3c{bottom:151.546667pt;}
.y169{bottom:153.786667pt;}
.y108{bottom:162.586667pt;}
.y125{bottom:163.560000pt;}
.y7e{bottom:163.706667pt;}
.y161{bottom:163.866667pt;}
.y88{bottom:165.786667pt;}
.y65{bottom:166.106667pt;}
.y137{bottom:168.520000pt;}
.y3b{bottom:169.946667pt;}
.y168{bottom:172.186667pt;}
.ydf{bottom:176.680000pt;}
.y107{bottom:180.986667pt;}
.y7d{bottom:182.106667pt;}
.y160{bottom:182.266667pt;}
.y87{bottom:184.186667pt;}
.y64{bottom:184.506667pt;}
.y3a{bottom:188.346667pt;}
.y167{bottom:190.586667pt;}
.y106{bottom:199.386667pt;}
.y7c{bottom:200.506667pt;}
.y15f{bottom:200.666667pt;}
.y86{bottom:202.586667pt;}
.y63{bottom:202.906667pt;}
.y39{bottom:206.746667pt;}
.yde{bottom:208.666667pt;}
.y166{bottom:208.986667pt;}
.y136{bottom:209.000000pt;}
.y105{bottom:217.786667pt;}
.y7b{bottom:218.906667pt;}
.y15e{bottom:219.066667pt;}
.y85{bottom:220.986667pt;}
.y124{bottom:221.160000pt;}
.y62{bottom:221.306667pt;}
.y38{bottom:225.146667pt;}
.ydd{bottom:227.066667pt;}
.y165{bottom:227.386667pt;}
.y104{bottom:236.186667pt;}
.y7a{bottom:237.306667pt;}
.y15d{bottom:237.466667pt;}
.y84{bottom:239.386667pt;}
.y61{bottom:239.706667pt;}
.y37{bottom:243.546667pt;}
.ydc{bottom:245.786667pt;}
.y134{bottom:246.440000pt;}
.y103{bottom:254.586667pt;}
.y79{bottom:255.706667pt;}
.y15c{bottom:255.866667pt;}
.y60{bottom:258.106667pt;}
.y36{bottom:261.946667pt;}
.ydb{bottom:264.186667pt;}
.y102{bottom:272.986667pt;}
.y78{bottom:274.106667pt;}
.y5f{bottom:276.506667pt;}
.y122{bottom:278.600000pt;}
.y14c{bottom:278.906667pt;}
.y35{bottom:280.346667pt;}
.yda{bottom:282.586667pt;}
.y130{bottom:285.640000pt;}
.y101{bottom:291.386667pt;}
.y77{bottom:293.786667pt;}
.y5e{bottom:294.906667pt;}
.y14b{bottom:297.306667pt;}
.y34{bottom:298.746667pt;}
.yd9{bottom:300.986667pt;}
.y100{bottom:309.786667pt;}
.y76{bottom:312.186667pt;}
.y5d{bottom:313.306667pt;}
.y14a{bottom:316.026667pt;}
.y33{bottom:317.146667pt;}
.yd8{bottom:319.386667pt;}
.y3f{bottom:319.880000pt;}
.y12b{bottom:323.240000pt;}
.yff{bottom:328.186667pt;}
.y75{bottom:330.586667pt;}
.y6c{bottom:331.386667pt;}
.y5c{bottom:331.706667pt;}
.y149{bottom:334.426667pt;}
.y32{bottom:335.546667pt;}
.y11f{bottom:336.040000pt;}
.yd7{bottom:337.786667pt;}
.yfe{bottom:346.586667pt;}
.y74{bottom:348.986667pt;}
.y6b{bottom:349.786667pt;}
.y5b{bottom:350.106667pt;}
.y148{bottom:352.826667pt;}
.y31{bottom:353.946667pt;}
.yd6{bottom:356.186667pt;}
.yfd{bottom:364.986667pt;}
.y73{bottom:367.426667pt;}
.y5a{bottom:368.546667pt;}
.y147{bottom:370.946667pt;}
.y30{bottom:372.386667pt;}
.yd5{bottom:374.626667pt;}
.yfc{bottom:383.106667pt;}
.y72{bottom:385.826667pt;}
.y59{bottom:386.946667pt;}
.y146{bottom:389.346667pt;}
.yd4{bottom:393.026667pt;}
.y11c{bottom:393.493333pt;}
.y11a{bottom:393.506667pt;}
.y2f{bottom:395.746667pt;}
.yfb{bottom:401.826667pt;}
.y71{bottom:404.226667pt;}
.y58{bottom:405.346667pt;}
.y145{bottom:407.746667pt;}
.y2e{bottom:409.186667pt;}
.yd3{bottom:411.426667pt;}
.yfa{bottom:416.866667pt;}
.y70{bottom:422.626667pt;}
.y9d{bottom:423.426667pt;}
.y57{bottom:423.746667pt;}
.y144{bottom:426.146667pt;}
.y2d{bottom:427.586667pt;}
.y12a{bottom:429.506667pt;}
.yd2{bottom:429.826667pt;}
.y6f{bottom:441.026667pt;}
.y9c{bottom:441.826667pt;}
.y56{bottom:442.146667pt;}
.y143{bottom:444.546667pt;}
.y158{bottom:444.706667pt;}
.yf9{bottom:445.186667pt;}
.y2c{bottom:445.666667pt;}
.yc7{bottom:447.906667pt;}
.yd1{bottom:448.226667pt;}
.y6e{bottom:459.426667pt;}
.y9b{bottom:460.226667pt;}
.y55{bottom:460.546667pt;}
.y142{bottom:462.946667pt;}
.y157{bottom:463.106667pt;}
.y2b{bottom:463.426667pt;}
.y116{bottom:464.533333pt;}
.y113{bottom:464.546667pt;}
.yc6{bottom:466.306667pt;}
.yd0{bottom:466.626667pt;}
.yf8{bottom:473.346667pt;}
.y6d{bottom:477.666667pt;}
.y9a{bottom:478.626667pt;}
.y54{bottom:478.946667pt;}
.y141{bottom:481.346667pt;}
.y156{bottom:481.506667pt;}
.y2a{bottom:481.986667pt;}
.yc5{bottom:484.706667pt;}
.ycf{bottom:485.026667pt;}
.y99{bottom:497.026667pt;}
.y53{bottom:497.346667pt;}
.y155{bottom:499.906667pt;}
.y29{bottom:500.066667pt;}
.yf7{bottom:501.666667pt;}
.yc4{bottom:503.106667pt;}
.yce{bottom:503.426667pt;}
.y98{bottom:515.426667pt;}
.y52{bottom:515.746667pt;}
.y154{bottom:518.306667pt;}
.y28{bottom:518.466667pt;}
.yc3{bottom:521.826667pt;}
.yf6{bottom:529.986667pt;}
.y97{bottom:533.826667pt;}
.y51{bottom:534.146667pt;}
.y153{bottom:536.706667pt;}
.y27{bottom:537.186667pt;}
.yc2{bottom:540.226667pt;}
.y96{bottom:552.226667pt;}
.y50{bottom:552.546667pt;}
.y152{bottom:555.106667pt;}
.y26{bottom:555.586667pt;}
.yf5{bottom:557.986667pt;}
.yc1{bottom:558.626667pt;}
.y95{bottom:570.626667pt;}
.y4f{bottom:570.946667pt;}
.y25{bottom:573.666667pt;}
.y15b{bottom:576.706667pt;}
.yc0{bottom:577.026667pt;}
.yf2{bottom:586.333333pt;}
.y94{bottom:589.053333pt;}
.y4e{bottom:589.373333pt;}
.y24{bottom:592.093333pt;}
.y112{bottom:595.133333pt;}
.ybf{bottom:595.453333pt;}
.y93{bottom:607.453333pt;}
.y4d{bottom:607.773333pt;}
.y23{bottom:610.813333pt;}
.y111{bottom:613.533333pt;}
.ybe{bottom:613.853333pt;}
.y92{bottom:625.853333pt;}
.y4c{bottom:626.173333pt;}
.y22{bottom:629.213333pt;}
.y110{bottom:631.933333pt;}
.ybd{bottom:632.253333pt;}
.y4b{bottom:644.253333pt;}
.y6a{bottom:644.573333pt;}
.yf1{bottom:645.853333pt;}
.y21{bottom:647.293333pt;}
.y10f{bottom:650.333333pt;}
.ybc{bottom:650.653333pt;}
.y140{bottom:652.093333pt;}
.y91{bottom:662.653333pt;}
.y4a{bottom:662.973333pt;}
.yf0{bottom:664.253333pt;}
.y20{bottom:665.693333pt;}
.y10e{bottom:668.733333pt;}
.ybb{bottom:669.053333pt;}
.y13f{bottom:670.493333pt;}
.y90{bottom:681.053333pt;}
.y49{bottom:681.373333pt;}
.yef{bottom:682.973333pt;}
.y1f{bottom:684.413333pt;}
.y10d{bottom:687.133333pt;}
.yba{bottom:687.453333pt;}
.y13e{bottom:688.573333pt;}
.yed{bottom:698.026667pt;}
.y48{bottom:699.453333pt;}
.y69{bottom:699.773333pt;}
.y1e{bottom:702.813333pt;}
.ycd{bottom:705.533333pt;}
.yb9{bottom:705.853333pt;}
.y83{bottom:717.853333pt;}
.y47{bottom:718.173333pt;}
.y1d{bottom:721.213333pt;}
.ycc{bottom:723.933333pt;}
.yb8{bottom:724.253333pt;}
.yec{bottom:726.346667pt;}
.y82{bottom:736.253333pt;}
.y46{bottom:736.573333pt;}
.y1c{bottom:739.773333pt;}
.ycb{bottom:742.333333pt;}
.yb7{bottom:742.653333pt;}
.yea{bottom:754.333333pt;}
.y8f{bottom:754.653333pt;}
.y45{bottom:754.973333pt;}
.yca{bottom:760.733333pt;}
.yb6{bottom:761.053333pt;}
.y1b{bottom:761.373333pt;}
.y8e{bottom:773.053333pt;}
.y44{bottom:773.373333pt;}
.y15a{bottom:779.133333pt;}
.yb5{bottom:779.453333pt;}
.ye8{bottom:782.666667pt;}
.y1a{bottom:782.813333pt;}
.y43{bottom:791.773333pt;}
.y159{bottom:797.533333pt;}
.yb4{bottom:797.853333pt;}
.y19{bottom:804.293333pt;}
.y8d{bottom:809.893333pt;}
.y42{bottom:810.213333pt;}
.ye7{bottom:811.013333pt;}
.yc9{bottom:815.973333pt;}
.yb3{bottom:816.293333pt;}
.y18{bottom:825.733333pt;}
.y8c{bottom:828.293333pt;}
.y41{bottom:828.613333pt;}
.y14f{bottom:829.560000pt;}
.y14d{bottom:829.573333pt;}
.y12{bottom:832.440000pt;}
.yb2{bottom:834.373333pt;}
.y10c{bottom:834.693333pt;}
.ye5{bottom:839.173333pt;}
.yb{bottom:845.573333pt;}
.yc8{bottom:852.773333pt;}
.yb1{bottom:853.093333pt;}
.y16{bottom:853.423630pt;}
.ya{bottom:859.973333pt;}
.yaa{bottom:863.000000pt;}
.y10{bottom:865.720000pt;}
.ya6{bottom:869.893333pt;}
.y9{bottom:874.533333pt;}
.yad{bottom:883.983630pt;}
.ya5{bottom:884.453333pt;}
.y8{bottom:888.933333pt;}
.yae{bottom:891.000000pt;}
.ya4{bottom:898.853333pt;}
.y7{bottom:903.493333pt;}
.ya3{bottom:913.413333pt;}
.y6{bottom:917.893333pt;}
.ya2{bottom:927.813333pt;}
.y5{bottom:932.453333pt;}
.ya1{bottom:942.373333pt;}
.y4{bottom:946.853333pt;}
.ya0{bottom:956.773333pt;}
.y9f{bottom:971.333333pt;}
.y9e{bottom:985.733333pt;}
.yf{bottom:1006.693333pt;}
.ye{bottom:1025.120000pt;}
.ya9{bottom:1045.600000pt;}
.ya8{bottom:1064.000000pt;}
.y3{bottom:1081.600000pt;}
.y2{bottom:1096.000000pt;}
.y1{bottom:1110.560000pt;}
.hb{height:14.086002pt;}
.h14{height:14.400000pt;}
.h5{height:26.400000pt;}
.h1c{height:27.346667pt;}
.h16{height:27.392000pt;}
.h19{height:27.506667pt;}
.h17{height:27.520000pt;}
.h15{height:27.666667pt;}
.h1b{height:27.680000pt;}
.h1a{height:27.698667pt;}
.h1f{height:27.706667pt;}
.h9{height:28.401875pt;}
.h8{height:34.886250pt;}
.h2{height:36.468750pt;}
.h2f{height:36.786667pt;}
.h2d{height:36.792000pt;}
.h2e{height:36.800000pt;}
.h36{height:37.272000pt;}
.h37{height:37.280000pt;}
.h6{height:37.868750pt;}
.h3{height:37.960000pt;}
.h30{height:38.552000pt;}
.h31{height:38.560000pt;}
.h32{height:39.832000pt;}
.h33{height:39.840000pt;}
.h10{height:43.215000pt;}
.h11{height:44.160000pt;}
.ha{height:44.735000pt;}
.h4{height:45.625000pt;}
.hc{height:45.997280pt;}
.h38{height:46.281250pt;}
.h13{height:52.320000pt;}
.h7{height:52.480000pt;}
.h1e{height:55.196000pt;}
.h1d{height:55.200000pt;}
.h34{height:55.232000pt;}
.h35{height:55.240000pt;}
.h27{height:56.792000pt;}
.h28{height:56.800000pt;}
.h26{height:56.820000pt;}
.h29{height:56.832000pt;}
.h2a{height:56.840000pt;}
.h12{height:59.340000pt;}
.hf{height:62.812500pt;}
.he{height:64.500000pt;}
.h18{height:66.404375pt;}
.h25{height:70.386667pt;}
.h23{height:70.396000pt;}
.h24{height:70.400000pt;}
.hd{height:75.465000pt;}
.h2b{height:93.778667pt;}
.h2c{height:93.780000pt;}
.h20{height:125.786667pt;}
.h21{height:125.792000pt;}
.h22{height:125.800000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:23.040000pt;}
.w12{width:56.192000pt;}
.we{width:56.626667pt;}
.w18{width:74.866667pt;}
.w13{width:74.876000pt;}
.w14{width:74.880000pt;}
.w1a{width:84.306667pt;}
.w16{width:84.312000pt;}
.w17{width:84.320000pt;}
.w19{width:84.498667pt;}
.w15{width:84.500000pt;}
.wb{width:84.640000pt;}
.w20{width:87.698667pt;}
.w22{width:87.700000pt;}
.w4{width:92.358758pt;}
.w8{width:92.358760pt;}
.w5{width:92.358766pt;}
.w28{width:93.792000pt;}
.w29{width:93.800000pt;}
.wd{width:96.818667pt;}
.w1d{width:96.832000pt;}
.w1e{width:96.840000pt;}
.w10{width:103.196000pt;}
.w11{width:103.200000pt;}
.w2a{width:103.346667pt;}
.w2d{width:103.356000pt;}
.w2e{width:103.360000pt;}
.w2b{width:103.858667pt;}
.w2c{width:103.860000pt;}
.w1f{width:106.706667pt;}
.w23{width:106.716000pt;}
.w24{width:106.720000pt;}
.wc{width:118.432000pt;}
.w26{width:131.516000pt;}
.w27{width:131.520000pt;}
.w1c{width:135.866667pt;}
.w25{width:169.293333pt;}
.w1b{width:174.586667pt;}
.w21{width:174.600000pt;}
.w6{width:177.800000pt;}
.wf{width:207.378667pt;}
.wa{width:245.138667pt;}
.w3{width:293.986667pt;}
.w7{width:294.146667pt;}
.w2{width:359.106667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:9.600000pt;}
.x6{left:13.440000pt;}
.x19{left:28.640000pt;}
.x10{left:42.560000pt;}
.x11{left:54.720000pt;}
.x7{left:62.720000pt;}
.x12{left:66.080000pt;}
.x9{left:76.241358pt;}
.x27{left:81.920000pt;}
.x13{left:86.880000pt;}
.x1{left:96.032000pt;}
.x1e{left:97.000000pt;}
.x14{left:99.040000pt;}
.xe{left:107.552000pt;}
.x15{left:111.360000pt;}
.x16{left:123.680000pt;}
.x36{left:132.032000pt;}
.x17{left:135.200000pt;}
.xc{left:152.026667pt;}
.x1a{left:153.041354pt;}
.xd{left:166.746667pt;}
.x3{left:181.466667pt;}
.xa{left:187.121346pt;}
.x28{left:257.160000pt;}
.x2c{left:266.626667pt;}
.xf{left:282.946667pt;}
.x23{left:305.026667pt;}
.x1f{left:342.786667pt;}
.x1b{left:372.546667pt;}
.x2{left:374.146667pt;}
.xb{left:384.066667pt;}
.x29{left:393.666667pt;}
.x2d{left:398.946667pt;}
.x5{left:409.186667pt;}
.x4{left:422.466667pt;}
.x20{left:428.066667pt;}
.x24{left:465.693333pt;}
.x2a{left:491.146667pt;}
.x2e{left:493.386667pt;}
.x25{left:541.226667pt;}
.x21{left:547.146667pt;}
.x2f{left:597.386667pt;}
.x2b{left:598.506667pt;}
.x33{left:606.653333pt;}
.x1c{left:619.813333pt;}
.x35{left:621.573333pt;}
.x18{left:623.173333pt;}
.x31{left:625.093333pt;}
.x26{left:626.373333pt;}
.x34{left:627.813333pt;}
.x32{left:628.773333pt;}
.x30{left:632.133333pt;}
.x1d{left:633.893333pt;}
.x22{left:644.613333pt;}
}




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