
    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_b57fc163cc4705966829ae68.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.884277;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_5c3005efdce373fb2bce5cb3.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_b0679ad1c5d8ac7fa8ac40ab.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_57dd516b36456c141bed5973.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_28d85c571d1b0c304c235ffa.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_38b9bcb5fbce7925c67b94cd.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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);}
.v1{vertical-align:-76.320000px;}
.v2{vertical-align:-68.400000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.lsf{letter-spacing:-1.080000px;}
.ls19{letter-spacing:-0.810000px;}
.ls6{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.612000px;}
.ls8{letter-spacing:-0.540000px;}
.ls1f{letter-spacing:-0.538800px;}
.ls1c{letter-spacing:-0.450600px;}
.ls10{letter-spacing:-0.360000px;}
.ls20{letter-spacing:-0.269400px;}
.ls1b{letter-spacing:-0.223800px;}
.ls9{letter-spacing:-0.206400px;}
.lsa{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.lse{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.109200px;}
.ls14{letter-spacing:0.119520px;}
.ls16{letter-spacing:0.153600px;}
.lsb{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.223800px;}
.ls17{letter-spacing:0.256200px;}
.lsc{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.305400px;}
.ls7{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.496080px;}
.ls12{letter-spacing:0.816000px;}
.ls11{letter-spacing:0.828000px;}
.lsd{letter-spacing:0.900000px;}
.ls1e{letter-spacing:3.780000px;}
.ls1d{letter-spacing:9.540000px;}
.ls15{letter-spacing:27.540000px;}
.ls13{letter-spacing:112.476000px;}
.ls0{letter-spacing:133.176000px;}
.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;}
}
.ws3{word-spacing:-16.865400px;}
.ws2{word-spacing:-16.669200px;}
.ws1{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.948000px;}
.wsb{word-spacing:-15.768000px;}
.wsd{word-spacing:-15.756000px;}
.ws4{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.226440px;}
.ws7{word-spacing:-15.199800px;}
.wsf{word-spacing:-15.093600px;}
.ws9{word-spacing:-15.046800px;}
.ws8{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.ws5{word-spacing:-14.733600px;}
.wsc{word-spacing:-14.580000px;}
.ws14{word-spacing:-12.420000px;}
.ws12{word-spacing:-12.283800px;}
.ws11{word-spacing:-12.060000px;}
.ws15{word-spacing:-11.836200px;}
.ws18{word-spacing:-11.790600px;}
.ws13{word-spacing:-11.700000px;}
.ws16{word-spacing:-11.609400px;}
.ws17{word-spacing:-11.521200px;}
.wse{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._2{margin-left:-2.105280px;}
._1{margin-left:-1.080000px;}
._0{width:1.314720px;}
._5{width:3.161280px;}
._4{width:4.239360px;}
._3{width:5.720160px;}
._8{width:6.756480px;}
._9{width:7.978560px;}
._a{width:9.288960px;}
._6{width:11.190240px;}
._7{width:12.747360px;}
._b{width:14.662560px;}
._11{width:16.692240px;}
._e{width:17.868240px;}
._f{width:19.848720px;}
._15{width:20.902800px;}
._16{width:21.918480px;}
._12{width:23.556000px;}
._14{width:24.610560px;}
._13{width:28.386000px;}
._17{width:30.417840px;}
._10{width:37.776000px;}
._c{width:42.791040px;}
._d{width:67.656000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y74{bottom:3.420000px;}
.ya1{bottom:3.780000px;}
.y10e{bottom:6.120000px;}
.ya6{bottom:6.300000px;}
.yd7{bottom:6.480000px;}
.yab{bottom:7.020000px;}
.y117{bottom:8.100000px;}
.y114{bottom:8.280000px;}
.y12d{bottom:8.325000px;}
.y78{bottom:9.000000px;}
.y76{bottom:12.060000px;}
.yc3{bottom:14.040000px;}
.y75{bottom:20.700000px;}
.ya2{bottom:21.060000px;}
.yc5{bottom:22.680000px;}
.y8d{bottom:23.940000px;}
.y72{bottom:24.120000px;}
.y116{bottom:25.380000px;}
.y12c{bottom:25.425000px;}
.y113{bottom:25.560000px;}
.yc2{bottom:31.320000px;}
.yc4{bottom:39.960000px;}
.yc1{bottom:48.600000px;}
.y2{bottom:57.600000px;}
.y1{bottom:77.796000px;}
.y111{bottom:85.500000px;}
.y11b{bottom:91.800000px;}
.y12f{bottom:94.134000px;}
.y121{bottom:94.170000px;}
.y127{bottom:94.185000px;}
.y110{bottom:102.780000px;}
.y15c{bottom:114.156000px;}
.yf2{bottom:116.496000px;}
.y13b{bottom:118.476000px;}
.y12e{bottom:122.256000px;}
.ybd{bottom:124.776000px;}
.y39{bottom:125.136000px;}
.y15b{bottom:127.836000px;}
.yf1{bottom:133.776000px;}
.y10c{bottom:133.956000px;}
.y13a{bottom:135.756000px;}
.y15a{bottom:141.696000px;}
.ybc{bottom:142.056000px;}
.y38{bottom:142.416000px;}
.yf0{bottom:151.050000px;}
.y10b{bottom:151.230000px;}
.y139{bottom:152.850000px;}
.y8b{bottom:155.190000px;}
.y159{bottom:155.550000px;}
.ybb{bottom:159.330000px;}
.y37{bottom:159.690000px;}
.y132{bottom:162.030000px;}
.yef{bottom:168.330000px;}
.y10a{bottom:168.510000px;}
.y158{bottom:169.230000px;}
.y138{bottom:169.770000px;}
.y8a{bottom:172.470000px;}
.yba{bottom:176.610000px;}
.y36{bottom:176.970000px;}
.y157{bottom:183.090000px;}
.yee{bottom:185.610000px;}
.y109{bottom:185.790000px;}
.y137{bottom:187.050000px;}
.y89{bottom:189.750000px;}
.yb9{bottom:193.710000px;}
.y35{bottom:194.250000px;}
.y156{bottom:196.950000px;}
.y131{bottom:201.630000px;}
.yed{bottom:202.710000px;}
.y108{bottom:203.070000px;}
.y136{bottom:204.690000px;}
.y88{bottom:207.030000px;}
.y155{bottom:210.630000px;}
.yb8{bottom:210.990000px;}
.y34{bottom:211.530000px;}
.yec{bottom:219.990000px;}
.y107{bottom:220.350000px;}
.y135{bottom:221.970000px;}
.y87{bottom:224.130000px;}
.y154{bottom:224.490000px;}
.yb7{bottom:228.270000px;}
.y33{bottom:228.630000px;}
.yeb{bottom:237.270000px;}
.y106{bottom:237.450000px;}
.y153{bottom:238.350000px;}
.y134{bottom:239.250000px;}
.y86{bottom:241.410000px;}
.yb6{bottom:245.550000px;}
.y32{bottom:245.910000px;}
.y152{bottom:252.030000px;}
.y133{bottom:252.750000px;}
.yea{bottom:254.550000px;}
.y105{bottom:254.730000px;}
.y85{bottom:258.690000px;}
.yb5{bottom:262.830000px;}
.y31{bottom:263.190000px;}
.y151{bottom:265.890000px;}
.ye9{bottom:271.830000px;}
.y104{bottom:272.010000px;}
.y84{bottom:275.970000px;}
.y150{bottom:279.750000px;}
.yb4{bottom:280.110000px;}
.y30{bottom:280.470000px;}
.y130{bottom:281.190000px;}
.ye8{bottom:289.110000px;}
.y103{bottom:289.290000px;}
.y83{bottom:293.250000px;}
.y14f{bottom:293.430000px;}
.yb3{bottom:297.210000px;}
.y2f{bottom:297.750000px;}
.ye7{bottom:306.210000px;}
.y102{bottom:306.570000px;}
.y14e{bottom:307.290000px;}
.y82{bottom:310.350000px;}
.yb2{bottom:314.490000px;}
.y2e{bottom:315.030000px;}
.y126{bottom:320.970000px;}
.y14d{bottom:321.150000px;}
.ye6{bottom:323.490000px;}
.y101{bottom:323.670000px;}
.y81{bottom:327.675000px;}
.yb1{bottom:331.815000px;}
.y2d{bottom:332.175000px;}
.y14c{bottom:334.875000px;}
.ye5{bottom:340.815000px;}
.y100{bottom:340.995000px;}
.y80{bottom:344.955000px;}
.y14b{bottom:348.735000px;}
.y2c{bottom:349.095000px;}
.y65{bottom:349.455000px;}
.ye4{bottom:358.095000px;}
.yff{bottom:358.275000px;}
.y7f{bottom:359.175000px;}
.y12b{bottom:360.795000px;}
.y14a{bottom:362.595000px;}
.yb0{bottom:366.375000px;}
.y2b{bottom:366.735000px;}
.ye3{bottom:375.015000px;}
.yfe{bottom:375.555000px;}
.y149{bottom:376.275000px;}
.y7e{bottom:381.675000px;}
.yaf{bottom:383.475000px;}
.y2a{bottom:384.015000px;}
.y148{bottom:390.135000px;}
.ye2{bottom:392.295000px;}
.yfd{bottom:392.835000px;}
.y12a{bottom:400.395000px;}
.yae{bottom:400.755000px;}
.y29{bottom:401.295000px;}
.y147{bottom:403.995000px;}
.y7d{bottom:404.175000px;}
.ye1{bottom:409.395000px;}
.yfc{bottom:410.115000px;}
.y146{bottom:417.675000px;}
.yad{bottom:418.035000px;}
.y64{bottom:418.575000px;}
.y28{bottom:418.755000px;}
.y7c{bottom:426.675000px;}
.ye0{bottom:427.035000px;}
.yfb{bottom:427.215000px;}
.y145{bottom:431.535000px;}
.yac{bottom:435.315000px;}
.y63{bottom:435.675000px;}
.y27{bottom:437.655000px;}
.y129{bottom:440.175000px;}
.ydf{bottom:444.315000px;}
.yfa{bottom:444.495000px;}
.y144{bottom:445.395000px;}
.y7b{bottom:449.175000px;}
.yaa{bottom:450.255000px;}
.y62{bottom:452.955000px;}
.y26{bottom:456.735000px;}
.y143{bottom:459.075000px;}
.yde{bottom:461.595000px;}
.yf9{bottom:461.775000px;}
.y61{bottom:470.235000px;}
.y7a{bottom:471.675000px;}
.y142{bottom:472.935000px;}
.ya9{bottom:474.015000px;}
.y25{bottom:475.635000px;}
.ydd{bottom:478.875000px;}
.yf8{bottom:479.055000px;}
.y128{bottom:479.955000px;}
.y141{bottom:486.795000px;}
.y60{bottom:487.515000px;}
.y79{bottom:494.175000px;}
.y24{bottom:494.715000px;}
.ydc{bottom:495.975000px;}
.yf7{bottom:496.335000px;}
.ya8{bottom:496.515000px;}
.y140{bottom:500.475000px;}
.y5f{bottom:504.795000px;}
.ydb{bottom:513.255000px;}
.y23{bottom:513.615000px;}
.y13f{bottom:514.335000px;}
.y77{bottom:516.675000px;}
.ya7{bottom:519.015000px;}
.y120{bottom:519.735000px;}
.y5e{bottom:521.895000px;}
.y13e{bottom:528.555000px;}
.yda{bottom:530.535000px;}
.yf6{bottom:530.715000px;}
.y22{bottom:532.695000px;}
.y5d{bottom:539.175000px;}
.y71{bottom:539.895000px;}
.ya5{bottom:541.515000px;}
.y13d{bottom:545.295000px;}
.yd9{bottom:547.815000px;}
.yf5{bottom:547.995000px;}
.y21{bottom:551.595000px;}
.y186{bottom:552.315000px;}
.y5c{bottom:556.455000px;}
.y13c{bottom:559.155000px;}
.y125{bottom:559.515000px;}
.yd8{bottom:565.095000px;}
.yf4{bottom:565.275000px;}
.ya0{bottom:565.455000px;}
.y185{bottom:565.995000px;}
.y20{bottom:570.495000px;}
.y5b{bottom:573.735000px;}
.y73{bottom:575.895000px;}
.yf3{bottom:578.775000px;}
.y184{bottom:579.855000px;}
.yd6{bottom:580.035000px;}
.y1f{bottom:589.575000px;}
.ya4{bottom:590.475000px;}
.y5a{bottom:591.015000px;}
.y183{bottom:593.715000px;}
.y124{bottom:599.325000px;}
.yd5{bottom:602.565000px;}
.y182{bottom:607.425000px;}
.y59{bottom:608.325000px;}
.y1e{bottom:608.505000px;}
.ya3{bottom:615.705000px;}
.y181{bottom:621.285000px;}
.yd4{bottom:625.065000px;}
.y58{bottom:625.425000px;}
.y1d{bottom:627.585000px;}
.y180{bottom:635.145000px;}
.y123{bottom:638.925000px;}
.y57{bottom:642.705000px;}
.y1c{bottom:646.485000px;}
.yd3{bottom:647.565000px;}
.y17f{bottom:648.825000px;}
.y56{bottom:659.985000px;}
.y17e{bottom:662.685000px;}
.y1b{bottom:665.385000px;}
.yd2{bottom:670.065000px;}
.y17d{bottom:676.545000px;}
.y55{bottom:677.265000px;}
.y122{bottom:678.705000px;}
.y1a{bottom:684.105000px;}
.y17c{bottom:690.225000px;}
.y9f{bottom:691.485000px;}
.yd1{bottom:692.565000px;}
.y54{bottom:694.545000px;}
.y19{bottom:703.365000px;}
.y17b{bottom:704.085000px;}
.y70{bottom:711.465000px;}
.y53{bottom:711.825000px;}
.y9e{bottom:713.985000px;}
.yd0{bottom:715.065000px;}
.y17a{bottom:717.945000px;}
.y11a{bottom:718.485000px;}
.y18{bottom:722.445000px;}
.y52{bottom:728.565000px;}
.y6d{bottom:728.925000px;}
.y179{bottom:731.625000px;}
.y9d{bottom:736.485000px;}
.ycf{bottom:737.565000px;}
.y17{bottom:741.345000px;}
.y178{bottom:745.485000px;}
.y51{bottom:745.845000px;}
.y6c{bottom:746.205000px;}
.y11f{bottom:753.765000px;}
.y9c{bottom:758.985000px;}
.y177{bottom:759.345000px;}
.yce{bottom:760.065000px;}
.y16{bottom:760.245000px;}
.y50{bottom:763.125000px;}
.y6b{bottom:763.485000px;}
.y176{bottom:773.025000px;}
.y15{bottom:779.325000px;}
.y4f{bottom:780.405000px;}
.y6a{bottom:780.765000px;}
.y9b{bottom:781.485000px;}
.ycd{bottom:782.565000px;}
.y175{bottom:786.885000px;}
.y11e{bottom:793.545000px;}
.y4e{bottom:797.685000px;}
.y69{bottom:798.045000px;}
.y14{bottom:798.225000px;}
.y174{bottom:800.745000px;}
.y9a{bottom:803.985000px;}
.ycc{bottom:805.065000px;}
.y173{bottom:814.425000px;}
.y4d{bottom:814.785000px;}
.y68{bottom:815.145000px;}
.y13{bottom:817.305000px;}
.y99{bottom:826.485000px;}
.ycb{bottom:827.565000px;}
.y172{bottom:828.285000px;}
.y4c{bottom:832.425000px;}
.y11d{bottom:833.145000px;}
.y12{bottom:836.205000px;}
.y171{bottom:842.145000px;}
.y98{bottom:848.985000px;}
.y4b{bottom:849.705000px;}
.yca{bottom:850.065000px;}
.y11{bottom:855.105000px;}
.y170{bottom:855.825000px;}
.y4a{bottom:867.030000px;}
.y16f{bottom:869.730000px;}
.y97{bottom:871.530000px;}
.yc9{bottom:872.610000px;}
.y11c{bottom:872.970000px;}
.y10{bottom:874.230000px;}
.y16e{bottom:883.590000px;}
.y49{bottom:884.310000px;}
.yf{bottom:892.770000px;}
.y96{bottom:894.030000px;}
.yc8{bottom:895.110000px;}
.y16d{bottom:897.270000px;}
.y48{bottom:901.590000px;}
.y16c{bottom:911.130000px;}
.ye{bottom:912.210000px;}
.y10f{bottom:912.750000px;}
.y95{bottom:916.530000px;}
.yc7{bottom:917.610000px;}
.y47{bottom:918.690000px;}
.y16b{bottom:924.990000px;}
.yd{bottom:931.110000px;}
.yc6{bottom:934.890000px;}
.y46{bottom:935.970000px;}
.y16a{bottom:938.670000px;}
.y94{bottom:939.030000px;}
.yc{bottom:950.190000px;}
.y119{bottom:952.530000px;}
.y45{bottom:953.250000px;}
.ybe{bottom:958.830000px;}
.y93{bottom:961.530000px;}
.y169{bottom:966.390000px;}
.yb{bottom:969.090000px;}
.y44{bottom:970.530000px;}
.y168{bottom:980.070000px;}
.y92{bottom:984.030000px;}
.y43{bottom:987.810000px;}
.ya{bottom:987.990000px;}
.y118{bottom:992.310000px;}
.y167{bottom:993.930000px;}
.y42{bottom:1005.090000px;}
.y91{bottom:1006.530000px;}
.y9{bottom:1007.070000px;}
.y166{bottom:1007.790000px;}
.ybf{bottom:1021.470000px;}
.y67{bottom:1021.830000px;}
.y41{bottom:1022.190000px;}
.y8{bottom:1025.970000px;}
.y90{bottom:1029.030000px;}
.y115{bottom:1032.090000px;}
.y165{bottom:1035.330000px;}
.y66{bottom:1039.110000px;}
.y40{bottom:1039.470000px;}
.y164{bottom:1049.190000px;}
.y8f{bottom:1051.530000px;}
.y6f{bottom:1056.390000px;}
.y3f{bottom:1056.750000px;}
.yc0{bottom:1057.830000px;}
.y163{bottom:1062.870000px;}
.y7{bottom:1064.130000px;}
.y112{bottom:1071.690000px;}
.y6e{bottom:1073.670000px;}
.y3e{bottom:1074.030000px;}
.y8c{bottom:1074.750000px;}
.y162{bottom:1076.730000px;}
.y6{bottom:1084.830000px;}
.y161{bottom:1090.590000px;}
.y3d{bottom:1091.310000px;}
.y160{bottom:1104.270000px;}
.y5{bottom:1105.530000px;}
.y3c{bottom:1108.590000px;}
.y8e{bottom:1110.750000px;}
.y10d{bottom:1111.470000px;}
.y15f{bottom:1118.130000px;}
.y4{bottom:1125.330000px;}
.y3b{bottom:1125.690000px;}
.y15e{bottom:1132.020000px;}
.y3{bottom:1142.640000px;}
.y3a{bottom:1143.000000px;}
.y15d{bottom:1145.700000px;}
.h16{height:17.280000px;}
.hb{height:22.500000px;}
.h9{height:22.536000px;}
.hf{height:23.580000px;}
.h10{height:23.760000px;}
.he{height:23.796000px;}
.ha{height:34.560000px;}
.h1a{height:38.880000px;}
.h1e{height:38.916000px;}
.h19{height:39.060000px;}
.h1c{height:39.096000px;}
.h1f{height:47.344922px;}
.hd{height:48.816000px;}
.h2{height:50.229844px;}
.h8{height:58.536000px;}
.h7{height:58.651172px;}
.h11{height:59.038594px;}
.h13{height:60.120000px;}
.h3{height:60.226875px;}
.h15{height:61.200000px;}
.h17{height:61.423863px;}
.h5{height:65.010937px;}
.h6{height:66.757500px;}
.h14{height:72.360000px;}
.h4{height:72.562500px;}
.hc{height:84.816000px;}
.h12{height:122.760000px;}
.h1b{height:193.530000px;}
.h18{height:198.000000px;}
.h1d{height:198.030000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1b{width:41.400000px;}
.w25{width:41.760000px;}
.w34{width:43.380000px;}
.w33{width:43.596000px;}
.w19{width:52.956000px;}
.w23{width:53.316000px;}
.w2a{width:54.000000px;}
.w30{width:54.180000px;}
.w2c{width:54.216000px;}
.w32{width:54.540000px;}
.w36{width:54.576000px;}
.w31{width:54.720000px;}
.w13{width:57.600000px;}
.w14{width:57.636000px;}
.wc{width:58.140000px;}
.wd{width:58.176000px;}
.w37{width:69.840000px;}
.w35{width:70.560000px;}
.w3e{width:70.920000px;}
.w1e{width:71.676000px;}
.w26{width:72.036000px;}
.w18{width:72.360000px;}
.w22{width:73.080000px;}
.w17{width:74.880000px;}
.w1a{width:78.660000px;}
.w24{width:79.020000px;}
.w16{width:79.056000px;}
.wf{width:79.416000px;}
.w1f{width:81.180000px;}
.w27{width:81.540000px;}
.w15{width:82.260000px;}
.we{width:82.800000px;}
.w21{width:83.160000px;}
.w12{width:89.100000px;}
.w9{width:89.280000px;}
.w7{width:89.316000px;}
.w5{width:89.640000px;}
.w6{width:89.676000px;}
.w10{width:96.660000px;}
.w20{width:100.476000px;}
.w28{width:100.836000px;}
.w3{width:105.156000px;}
.w8{width:105.876000px;}
.w2b{width:109.080000px;}
.w2e{width:109.620000px;}
.w3b{width:111.636000px;}
.w3d{width:112.320000px;}
.w3c{width:113.256000px;}
.w3a{width:128.880000px;}
.w3f{width:131.436000px;}
.w39{width:131.796000px;}
.w1c{width:153.930000px;}
.w2f{width:158.250000px;}
.wa{width:175.350000px;}
.w11{width:176.070000px;}
.w29{width:179.310000px;}
.w1d{width:184.350000px;}
.w2d{width:268.230000px;}
.w4{width:449.355000px;}
.wb{width:466.635000px;}
.w38{width:597.525000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:4.500000px;}
.x1e{left:5.580000px;}
.x20{left:6.840000px;}
.x14{left:8.640000px;}
.x16{left:10.440000px;}
.x2a{left:11.880000px;}
.x4e{left:14.040000px;}
.x26{left:15.660000px;}
.x4f{left:17.280000px;}
.xe{left:18.360000px;}
.x29{left:19.440000px;}
.x11{left:21.240000px;}
.xf{left:22.500000px;}
.x1a{left:23.970000px;}
.x27{left:26.280000px;}
.x19{left:27.720000px;}
.x24{left:29.520000px;}
.x25{left:31.500000px;}
.x17{left:33.300000px;}
.x28{left:35.100000px;}
.x18{left:37.125000px;}
.x34{left:38.160000px;}
.x53{left:39.240000px;}
.x36{left:40.890000px;}
.x35{left:41.940000px;}
.x4a{left:44.100000px;}
.x50{left:45.360000px;}
.x52{left:46.980000px;}
.x3a{left:48.600000px;}
.x37{left:50.220000px;}
.x39{left:52.380000px;}
.x51{left:54.540000px;}
.x38{left:69.705000px;}
.x30{left:72.945000px;}
.x3f{left:94.860000px;}
.x2b{left:117.035987px;}
.x3b{left:123.156000px;}
.x3{left:127.655987px;}
.x4{left:134.675987px;}
.x45{left:138.275987px;}
.x8{left:149.795987px;}
.x2{left:159.509987px;}
.x5{left:161.669987px;}
.x7{left:167.789987px;}
.xa{left:179.490000px;}
.x47{left:193.710000px;}
.xd{left:194.970000px;}
.x6{left:202.349987px;}
.x1c{left:203.790000px;}
.x48{left:268.065000px;}
.x2c{left:277.770000px;}
.xc{left:285.375000px;}
.x1b{left:303.375000px;}
.x49{left:325.515000px;}
.x2d{left:331.455000px;}
.x3c{left:358.635000px;}
.x10{left:375.375000px;}
.x1d{left:393.375000px;}
.x2e{left:410.835000px;}
.x41{left:413.535000px;}
.x1f{left:451.875000px;}
.x31{left:452.955000px;}
.x4b{left:454.395000px;}
.x12{left:465.375000px;}
.x3d{left:468.435000px;}
.x21{left:510.405000px;}
.x3e{left:523.005000px;}
.x32{left:525.345000px;}
.x13{left:555.405000px;}
.x4c{left:566.025000px;}
.x42{left:578.085000px;}
.x22{left:593.565000px;}
.x2f{left:606.885000px;}
.x40{left:633.345000px;}
.x15{left:645.405000px;}
.x23{left:673.350000px;}
.x43{left:676.950000px;}
.x4d{left:679.290000px;}
.x33{left:708.090000px;}
.x44{left:720.690000px;}
.x54{left:770.009987px;}
.x1{left:778.469987px;}
.x9{left:786.749987px;}
.x55{left:793.589987px;}
.x46{left:798.269987px;}
@media print{
.v1{vertical-align:-67.840000pt;}
.v2{vertical-align:-60.800000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.lsf{letter-spacing:-0.960000pt;}
.ls19{letter-spacing:-0.720000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.544000pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls1f{letter-spacing:-0.478933pt;}
.ls1c{letter-spacing:-0.400533pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls20{letter-spacing:-0.239467pt;}
.ls1b{letter-spacing:-0.198933pt;}
.ls9{letter-spacing:-0.183467pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.097067pt;}
.ls14{letter-spacing:0.106240pt;}
.ls16{letter-spacing:0.136533pt;}
.lsb{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.198933pt;}
.ls17{letter-spacing:0.227733pt;}
.lsc{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.271467pt;}
.ls7{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.440960pt;}
.ls12{letter-spacing:0.725333pt;}
.ls11{letter-spacing:0.736000pt;}
.lsd{letter-spacing:0.800000pt;}
.ls1e{letter-spacing:3.360000pt;}
.ls1d{letter-spacing:8.480000pt;}
.ls15{letter-spacing:24.480000pt;}
.ls13{letter-spacing:99.978667pt;}
.ls0{letter-spacing:118.378667pt;}
.ws3{word-spacing:-14.991467pt;}
.ws2{word-spacing:-14.817067pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.176000pt;}
.wsb{word-spacing:-14.016000pt;}
.wsd{word-spacing:-14.005333pt;}
.ws4{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.534613pt;}
.ws7{word-spacing:-13.510933pt;}
.wsf{word-spacing:-13.416533pt;}
.ws9{word-spacing:-13.374933pt;}
.ws8{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.ws5{word-spacing:-13.096533pt;}
.wsc{word-spacing:-12.960000pt;}
.ws14{word-spacing:-11.040000pt;}
.ws12{word-spacing:-10.918933pt;}
.ws11{word-spacing:-10.720000pt;}
.ws15{word-spacing:-10.521067pt;}
.ws18{word-spacing:-10.480533pt;}
.ws13{word-spacing:-10.400000pt;}
.ws16{word-spacing:-10.319467pt;}
.ws17{word-spacing:-10.241067pt;}
.wse{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._2{margin-left:-1.871360pt;}
._1{margin-left:-0.960000pt;}
._0{width:1.168640pt;}
._5{width:2.810027pt;}
._4{width:3.768320pt;}
._3{width:5.084587pt;}
._8{width:6.005760pt;}
._9{width:7.092053pt;}
._a{width:8.256853pt;}
._6{width:9.946880pt;}
._7{width:11.330987pt;}
._b{width:13.033387pt;}
._11{width:14.837547pt;}
._e{width:15.882880pt;}
._f{width:17.643307pt;}
._15{width:18.580267pt;}
._16{width:19.483093pt;}
._12{width:20.938667pt;}
._14{width:21.876053pt;}
._13{width:25.232000pt;}
._17{width:27.038080pt;}
._10{width:33.578667pt;}
._c{width:38.036480pt;}
._d{width:60.138667pt;}
.fs3{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y74{bottom:3.040000pt;}
.ya1{bottom:3.360000pt;}
.y10e{bottom:5.440000pt;}
.ya6{bottom:5.600000pt;}
.yd7{bottom:5.760000pt;}
.yab{bottom:6.240000pt;}
.y117{bottom:7.200000pt;}
.y114{bottom:7.360000pt;}
.y12d{bottom:7.400000pt;}
.y78{bottom:8.000000pt;}
.y76{bottom:10.720000pt;}
.yc3{bottom:12.480000pt;}
.y75{bottom:18.400000pt;}
.ya2{bottom:18.720000pt;}
.yc5{bottom:20.160000pt;}
.y8d{bottom:21.280000pt;}
.y72{bottom:21.440000pt;}
.y116{bottom:22.560000pt;}
.y12c{bottom:22.600000pt;}
.y113{bottom:22.720000pt;}
.yc2{bottom:27.840000pt;}
.yc4{bottom:35.520000pt;}
.yc1{bottom:43.200000pt;}
.y2{bottom:51.200000pt;}
.y1{bottom:69.152000pt;}
.y111{bottom:76.000000pt;}
.y11b{bottom:81.600000pt;}
.y12f{bottom:83.674667pt;}
.y121{bottom:83.706667pt;}
.y127{bottom:83.720000pt;}
.y110{bottom:91.360000pt;}
.y15c{bottom:101.472000pt;}
.yf2{bottom:103.552000pt;}
.y13b{bottom:105.312000pt;}
.y12e{bottom:108.672000pt;}
.ybd{bottom:110.912000pt;}
.y39{bottom:111.232000pt;}
.y15b{bottom:113.632000pt;}
.yf1{bottom:118.912000pt;}
.y10c{bottom:119.072000pt;}
.y13a{bottom:120.672000pt;}
.y15a{bottom:125.952000pt;}
.ybc{bottom:126.272000pt;}
.y38{bottom:126.592000pt;}
.yf0{bottom:134.266667pt;}
.y10b{bottom:134.426667pt;}
.y139{bottom:135.866667pt;}
.y8b{bottom:137.946667pt;}
.y159{bottom:138.266667pt;}
.ybb{bottom:141.626667pt;}
.y37{bottom:141.946667pt;}
.y132{bottom:144.026667pt;}
.yef{bottom:149.626667pt;}
.y10a{bottom:149.786667pt;}
.y158{bottom:150.426667pt;}
.y138{bottom:150.906667pt;}
.y8a{bottom:153.306667pt;}
.yba{bottom:156.986667pt;}
.y36{bottom:157.306667pt;}
.y157{bottom:162.746667pt;}
.yee{bottom:164.986667pt;}
.y109{bottom:165.146667pt;}
.y137{bottom:166.266667pt;}
.y89{bottom:168.666667pt;}
.yb9{bottom:172.186667pt;}
.y35{bottom:172.666667pt;}
.y156{bottom:175.066667pt;}
.y131{bottom:179.226667pt;}
.yed{bottom:180.186667pt;}
.y108{bottom:180.506667pt;}
.y136{bottom:181.946667pt;}
.y88{bottom:184.026667pt;}
.y155{bottom:187.226667pt;}
.yb8{bottom:187.546667pt;}
.y34{bottom:188.026667pt;}
.yec{bottom:195.546667pt;}
.y107{bottom:195.866667pt;}
.y135{bottom:197.306667pt;}
.y87{bottom:199.226667pt;}
.y154{bottom:199.546667pt;}
.yb7{bottom:202.906667pt;}
.y33{bottom:203.226667pt;}
.yeb{bottom:210.906667pt;}
.y106{bottom:211.066667pt;}
.y153{bottom:211.866667pt;}
.y134{bottom:212.666667pt;}
.y86{bottom:214.586667pt;}
.yb6{bottom:218.266667pt;}
.y32{bottom:218.586667pt;}
.y152{bottom:224.026667pt;}
.y133{bottom:224.666667pt;}
.yea{bottom:226.266667pt;}
.y105{bottom:226.426667pt;}
.y85{bottom:229.946667pt;}
.yb5{bottom:233.626667pt;}
.y31{bottom:233.946667pt;}
.y151{bottom:236.346667pt;}
.ye9{bottom:241.626667pt;}
.y104{bottom:241.786667pt;}
.y84{bottom:245.306667pt;}
.y150{bottom:248.666667pt;}
.yb4{bottom:248.986667pt;}
.y30{bottom:249.306667pt;}
.y130{bottom:249.946667pt;}
.ye8{bottom:256.986667pt;}
.y103{bottom:257.146667pt;}
.y83{bottom:260.666667pt;}
.y14f{bottom:260.826667pt;}
.yb3{bottom:264.186667pt;}
.y2f{bottom:264.666667pt;}
.ye7{bottom:272.186667pt;}
.y102{bottom:272.506667pt;}
.y14e{bottom:273.146667pt;}
.y82{bottom:275.866667pt;}
.yb2{bottom:279.546667pt;}
.y2e{bottom:280.026667pt;}
.y126{bottom:285.306667pt;}
.y14d{bottom:285.466667pt;}
.ye6{bottom:287.546667pt;}
.y101{bottom:287.706667pt;}
.y81{bottom:291.266667pt;}
.yb1{bottom:294.946667pt;}
.y2d{bottom:295.266667pt;}
.y14c{bottom:297.666667pt;}
.ye5{bottom:302.946667pt;}
.y100{bottom:303.106667pt;}
.y80{bottom:306.626667pt;}
.y14b{bottom:309.986667pt;}
.y2c{bottom:310.306667pt;}
.y65{bottom:310.626667pt;}
.ye4{bottom:318.306667pt;}
.yff{bottom:318.466667pt;}
.y7f{bottom:319.266667pt;}
.y12b{bottom:320.706667pt;}
.y14a{bottom:322.306667pt;}
.yb0{bottom:325.666667pt;}
.y2b{bottom:325.986667pt;}
.ye3{bottom:333.346667pt;}
.yfe{bottom:333.826667pt;}
.y149{bottom:334.466667pt;}
.y7e{bottom:339.266667pt;}
.yaf{bottom:340.866667pt;}
.y2a{bottom:341.346667pt;}
.y148{bottom:346.786667pt;}
.ye2{bottom:348.706667pt;}
.yfd{bottom:349.186667pt;}
.y12a{bottom:355.906667pt;}
.yae{bottom:356.226667pt;}
.y29{bottom:356.706667pt;}
.y147{bottom:359.106667pt;}
.y7d{bottom:359.266667pt;}
.ye1{bottom:363.906667pt;}
.yfc{bottom:364.546667pt;}
.y146{bottom:371.266667pt;}
.yad{bottom:371.586667pt;}
.y64{bottom:372.066667pt;}
.y28{bottom:372.226667pt;}
.y7c{bottom:379.266667pt;}
.ye0{bottom:379.586667pt;}
.yfb{bottom:379.746667pt;}
.y145{bottom:383.586667pt;}
.yac{bottom:386.946667pt;}
.y63{bottom:387.266667pt;}
.y27{bottom:389.026667pt;}
.y129{bottom:391.266667pt;}
.ydf{bottom:394.946667pt;}
.yfa{bottom:395.106667pt;}
.y144{bottom:395.906667pt;}
.y7b{bottom:399.266667pt;}
.yaa{bottom:400.226667pt;}
.y62{bottom:402.626667pt;}
.y26{bottom:405.986667pt;}
.y143{bottom:408.066667pt;}
.yde{bottom:410.306667pt;}
.yf9{bottom:410.466667pt;}
.y61{bottom:417.986667pt;}
.y7a{bottom:419.266667pt;}
.y142{bottom:420.386667pt;}
.ya9{bottom:421.346667pt;}
.y25{bottom:422.786667pt;}
.ydd{bottom:425.666667pt;}
.yf8{bottom:425.826667pt;}
.y128{bottom:426.626667pt;}
.y141{bottom:432.706667pt;}
.y60{bottom:433.346667pt;}
.y79{bottom:439.266667pt;}
.y24{bottom:439.746667pt;}
.ydc{bottom:440.866667pt;}
.yf7{bottom:441.186667pt;}
.ya8{bottom:441.346667pt;}
.y140{bottom:444.866667pt;}
.y5f{bottom:448.706667pt;}
.ydb{bottom:456.226667pt;}
.y23{bottom:456.546667pt;}
.y13f{bottom:457.186667pt;}
.y77{bottom:459.266667pt;}
.ya7{bottom:461.346667pt;}
.y120{bottom:461.986667pt;}
.y5e{bottom:463.906667pt;}
.y13e{bottom:469.826667pt;}
.yda{bottom:471.586667pt;}
.yf6{bottom:471.746667pt;}
.y22{bottom:473.506667pt;}
.y5d{bottom:479.266667pt;}
.y71{bottom:479.906667pt;}
.ya5{bottom:481.346667pt;}
.y13d{bottom:484.706667pt;}
.yd9{bottom:486.946667pt;}
.yf5{bottom:487.106667pt;}
.y21{bottom:490.306667pt;}
.y186{bottom:490.946667pt;}
.y5c{bottom:494.626667pt;}
.y13c{bottom:497.026667pt;}
.y125{bottom:497.346667pt;}
.yd8{bottom:502.306667pt;}
.yf4{bottom:502.466667pt;}
.ya0{bottom:502.626667pt;}
.y185{bottom:503.106667pt;}
.y20{bottom:507.106667pt;}
.y5b{bottom:509.986667pt;}
.y73{bottom:511.906667pt;}
.yf3{bottom:514.466667pt;}
.y184{bottom:515.426667pt;}
.yd6{bottom:515.586667pt;}
.y1f{bottom:524.066667pt;}
.ya4{bottom:524.866667pt;}
.y5a{bottom:525.346667pt;}
.y183{bottom:527.746667pt;}
.y124{bottom:532.733333pt;}
.yd5{bottom:535.613333pt;}
.y182{bottom:539.933333pt;}
.y59{bottom:540.733333pt;}
.y1e{bottom:540.893333pt;}
.ya3{bottom:547.293333pt;}
.y181{bottom:552.253333pt;}
.yd4{bottom:555.613333pt;}
.y58{bottom:555.933333pt;}
.y1d{bottom:557.853333pt;}
.y180{bottom:564.573333pt;}
.y123{bottom:567.933333pt;}
.y57{bottom:571.293333pt;}
.y1c{bottom:574.653333pt;}
.yd3{bottom:575.613333pt;}
.y17f{bottom:576.733333pt;}
.y56{bottom:586.653333pt;}
.y17e{bottom:589.053333pt;}
.y1b{bottom:591.453333pt;}
.yd2{bottom:595.613333pt;}
.y17d{bottom:601.373333pt;}
.y55{bottom:602.013333pt;}
.y122{bottom:603.293333pt;}
.y1a{bottom:608.093333pt;}
.y17c{bottom:613.533333pt;}
.y9f{bottom:614.653333pt;}
.yd1{bottom:615.613333pt;}
.y54{bottom:617.373333pt;}
.y19{bottom:625.213333pt;}
.y17b{bottom:625.853333pt;}
.y70{bottom:632.413333pt;}
.y53{bottom:632.733333pt;}
.y9e{bottom:634.653333pt;}
.yd0{bottom:635.613333pt;}
.y17a{bottom:638.173333pt;}
.y11a{bottom:638.653333pt;}
.y18{bottom:642.173333pt;}
.y52{bottom:647.613333pt;}
.y6d{bottom:647.933333pt;}
.y179{bottom:650.333333pt;}
.y9d{bottom:654.653333pt;}
.ycf{bottom:655.613333pt;}
.y17{bottom:658.973333pt;}
.y178{bottom:662.653333pt;}
.y51{bottom:662.973333pt;}
.y6c{bottom:663.293333pt;}
.y11f{bottom:670.013333pt;}
.y9c{bottom:674.653333pt;}
.y177{bottom:674.973333pt;}
.yce{bottom:675.613333pt;}
.y16{bottom:675.773333pt;}
.y50{bottom:678.333333pt;}
.y6b{bottom:678.653333pt;}
.y176{bottom:687.133333pt;}
.y15{bottom:692.733333pt;}
.y4f{bottom:693.693333pt;}
.y6a{bottom:694.013333pt;}
.y9b{bottom:694.653333pt;}
.ycd{bottom:695.613333pt;}
.y175{bottom:699.453333pt;}
.y11e{bottom:705.373333pt;}
.y4e{bottom:709.053333pt;}
.y69{bottom:709.373333pt;}
.y14{bottom:709.533333pt;}
.y174{bottom:711.773333pt;}
.y9a{bottom:714.653333pt;}
.ycc{bottom:715.613333pt;}
.y173{bottom:723.933333pt;}
.y4d{bottom:724.253333pt;}
.y68{bottom:724.573333pt;}
.y13{bottom:726.493333pt;}
.y99{bottom:734.653333pt;}
.ycb{bottom:735.613333pt;}
.y172{bottom:736.253333pt;}
.y4c{bottom:739.933333pt;}
.y11d{bottom:740.573333pt;}
.y12{bottom:743.293333pt;}
.y171{bottom:748.573333pt;}
.y98{bottom:754.653333pt;}
.y4b{bottom:755.293333pt;}
.yca{bottom:755.613333pt;}
.y11{bottom:760.093333pt;}
.y170{bottom:760.733333pt;}
.y4a{bottom:770.693333pt;}
.y16f{bottom:773.093333pt;}
.y97{bottom:774.693333pt;}
.yc9{bottom:775.653333pt;}
.y11c{bottom:775.973333pt;}
.y10{bottom:777.093333pt;}
.y16e{bottom:785.413333pt;}
.y49{bottom:786.053333pt;}
.yf{bottom:793.573333pt;}
.y96{bottom:794.693333pt;}
.yc8{bottom:795.653333pt;}
.y16d{bottom:797.573333pt;}
.y48{bottom:801.413333pt;}
.y16c{bottom:809.893333pt;}
.ye{bottom:810.853333pt;}
.y10f{bottom:811.333333pt;}
.y95{bottom:814.693333pt;}
.yc7{bottom:815.653333pt;}
.y47{bottom:816.613333pt;}
.y16b{bottom:822.213333pt;}
.yd{bottom:827.653333pt;}
.yc6{bottom:831.013333pt;}
.y46{bottom:831.973333pt;}
.y16a{bottom:834.373333pt;}
.y94{bottom:834.693333pt;}
.yc{bottom:844.613333pt;}
.y119{bottom:846.693333pt;}
.y45{bottom:847.333333pt;}
.ybe{bottom:852.293333pt;}
.y93{bottom:854.693333pt;}
.y169{bottom:859.013333pt;}
.yb{bottom:861.413333pt;}
.y44{bottom:862.693333pt;}
.y168{bottom:871.173333pt;}
.y92{bottom:874.693333pt;}
.y43{bottom:878.053333pt;}
.ya{bottom:878.213333pt;}
.y118{bottom:882.053333pt;}
.y167{bottom:883.493333pt;}
.y42{bottom:893.413333pt;}
.y91{bottom:894.693333pt;}
.y9{bottom:895.173333pt;}
.y166{bottom:895.813333pt;}
.ybf{bottom:907.973333pt;}
.y67{bottom:908.293333pt;}
.y41{bottom:908.613333pt;}
.y8{bottom:911.973333pt;}
.y90{bottom:914.693333pt;}
.y115{bottom:917.413333pt;}
.y165{bottom:920.293333pt;}
.y66{bottom:923.653333pt;}
.y40{bottom:923.973333pt;}
.y164{bottom:932.613333pt;}
.y8f{bottom:934.693333pt;}
.y6f{bottom:939.013333pt;}
.y3f{bottom:939.333333pt;}
.yc0{bottom:940.293333pt;}
.y163{bottom:944.773333pt;}
.y7{bottom:945.893333pt;}
.y112{bottom:952.613333pt;}
.y6e{bottom:954.373333pt;}
.y3e{bottom:954.693333pt;}
.y8c{bottom:955.333333pt;}
.y162{bottom:957.093333pt;}
.y6{bottom:964.293333pt;}
.y161{bottom:969.413333pt;}
.y3d{bottom:970.053333pt;}
.y160{bottom:981.573333pt;}
.y5{bottom:982.693333pt;}
.y3c{bottom:985.413333pt;}
.y8e{bottom:987.333333pt;}
.y10d{bottom:987.973333pt;}
.y15f{bottom:993.893333pt;}
.y4{bottom:1000.293333pt;}
.y3b{bottom:1000.613333pt;}
.y15e{bottom:1006.240000pt;}
.y3{bottom:1015.680000pt;}
.y3a{bottom:1016.000000pt;}
.y15d{bottom:1018.400000pt;}
.h16{height:15.360000pt;}
.hb{height:20.000000pt;}
.h9{height:20.032000pt;}
.hf{height:20.960000pt;}
.h10{height:21.120000pt;}
.he{height:21.152000pt;}
.ha{height:30.720000pt;}
.h1a{height:34.560000pt;}
.h1e{height:34.592000pt;}
.h19{height:34.720000pt;}
.h1c{height:34.752000pt;}
.h1f{height:42.084375pt;}
.hd{height:43.392000pt;}
.h2{height:44.648750pt;}
.h8{height:52.032000pt;}
.h7{height:52.134375pt;}
.h11{height:52.478750pt;}
.h13{height:53.440000pt;}
.h3{height:53.535000pt;}
.h15{height:54.400000pt;}
.h17{height:54.598989pt;}
.h5{height:57.787500pt;}
.h6{height:59.340000pt;}
.h14{height:64.320000pt;}
.h4{height:64.500000pt;}
.hc{height:75.392000pt;}
.h12{height:109.120000pt;}
.h1b{height:172.026667pt;}
.h18{height:176.000000pt;}
.h1d{height:176.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1b{width:36.800000pt;}
.w25{width:37.120000pt;}
.w34{width:38.560000pt;}
.w33{width:38.752000pt;}
.w19{width:47.072000pt;}
.w23{width:47.392000pt;}
.w2a{width:48.000000pt;}
.w30{width:48.160000pt;}
.w2c{width:48.192000pt;}
.w32{width:48.480000pt;}
.w36{width:48.512000pt;}
.w31{width:48.640000pt;}
.w13{width:51.200000pt;}
.w14{width:51.232000pt;}
.wc{width:51.680000pt;}
.wd{width:51.712000pt;}
.w37{width:62.080000pt;}
.w35{width:62.720000pt;}
.w3e{width:63.040000pt;}
.w1e{width:63.712000pt;}
.w26{width:64.032000pt;}
.w18{width:64.320000pt;}
.w22{width:64.960000pt;}
.w17{width:66.560000pt;}
.w1a{width:69.920000pt;}
.w24{width:70.240000pt;}
.w16{width:70.272000pt;}
.wf{width:70.592000pt;}
.w1f{width:72.160000pt;}
.w27{width:72.480000pt;}
.w15{width:73.120000pt;}
.we{width:73.600000pt;}
.w21{width:73.920000pt;}
.w12{width:79.200000pt;}
.w9{width:79.360000pt;}
.w7{width:79.392000pt;}
.w5{width:79.680000pt;}
.w6{width:79.712000pt;}
.w10{width:85.920000pt;}
.w20{width:89.312000pt;}
.w28{width:89.632000pt;}
.w3{width:93.472000pt;}
.w8{width:94.112000pt;}
.w2b{width:96.960000pt;}
.w2e{width:97.440000pt;}
.w3b{width:99.232000pt;}
.w3d{width:99.840000pt;}
.w3c{width:100.672000pt;}
.w3a{width:114.560000pt;}
.w3f{width:116.832000pt;}
.w39{width:117.152000pt;}
.w1c{width:136.826667pt;}
.w2f{width:140.666667pt;}
.wa{width:155.866667pt;}
.w11{width:156.506667pt;}
.w29{width:159.386667pt;}
.w1d{width:163.866667pt;}
.w2d{width:238.426667pt;}
.w4{width:399.426667pt;}
.wb{width:414.786667pt;}
.w38{width:531.133333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:4.000000pt;}
.x1e{left:4.960000pt;}
.x20{left:6.080000pt;}
.x14{left:7.680000pt;}
.x16{left:9.280000pt;}
.x2a{left:10.560000pt;}
.x4e{left:12.480000pt;}
.x26{left:13.920000pt;}
.x4f{left:15.360000pt;}
.xe{left:16.320000pt;}
.x29{left:17.280000pt;}
.x11{left:18.880000pt;}
.xf{left:20.000000pt;}
.x1a{left:21.306667pt;}
.x27{left:23.360000pt;}
.x19{left:24.640000pt;}
.x24{left:26.240000pt;}
.x25{left:28.000000pt;}
.x17{left:29.600000pt;}
.x28{left:31.200000pt;}
.x18{left:33.000000pt;}
.x34{left:33.920000pt;}
.x53{left:34.880000pt;}
.x36{left:36.346667pt;}
.x35{left:37.280000pt;}
.x4a{left:39.200000pt;}
.x50{left:40.320000pt;}
.x52{left:41.760000pt;}
.x3a{left:43.200000pt;}
.x37{left:44.640000pt;}
.x39{left:46.560000pt;}
.x51{left:48.480000pt;}
.x38{left:61.960000pt;}
.x30{left:64.840000pt;}
.x3f{left:84.320000pt;}
.x2b{left:104.031988pt;}
.x3b{left:109.472000pt;}
.x3{left:113.471988pt;}
.x4{left:119.711988pt;}
.x45{left:122.911988pt;}
.x8{left:133.151988pt;}
.x2{left:141.786655pt;}
.x5{left:143.706655pt;}
.x7{left:149.146655pt;}
.xa{left:159.546667pt;}
.x47{left:172.186667pt;}
.xd{left:173.306667pt;}
.x6{left:179.866655pt;}
.x1c{left:181.146667pt;}
.x48{left:238.280000pt;}
.x2c{left:246.906667pt;}
.xc{left:253.666667pt;}
.x1b{left:269.666667pt;}
.x49{left:289.346667pt;}
.x2d{left:294.626667pt;}
.x3c{left:318.786667pt;}
.x10{left:333.666667pt;}
.x1d{left:349.666667pt;}
.x2e{left:365.186667pt;}
.x41{left:367.586667pt;}
.x1f{left:401.666667pt;}
.x31{left:402.626667pt;}
.x4b{left:403.906667pt;}
.x12{left:413.666667pt;}
.x3d{left:416.386667pt;}
.x21{left:453.693333pt;}
.x3e{left:464.893333pt;}
.x32{left:466.973333pt;}
.x13{left:493.693333pt;}
.x4c{left:503.133333pt;}
.x42{left:513.853333pt;}
.x22{left:527.613333pt;}
.x2f{left:539.453333pt;}
.x40{left:562.973333pt;}
.x15{left:573.693333pt;}
.x23{left:598.533333pt;}
.x43{left:601.733333pt;}
.x4d{left:603.813333pt;}
.x33{left:629.413333pt;}
.x44{left:640.613333pt;}
.x54{left:684.453322pt;}
.x1{left:691.973322pt;}
.x9{left:699.333322pt;}
.x55{left:705.413322pt;}
.x46{left:709.573322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  