
    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_9e27c0ecd851cab39ed3da97.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_6bb7ac5776c024a701909efe.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_4792bff968c0a6699ab119f7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.869141;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_435244f7d21e6dd44f517831.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.869141;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_c919e7077b4c2ed90c9804f7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7c85e0847d3f4664a4717713.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.861816;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_1dbcba586c9eb4599ffe48b1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d0d27949fbedbc6d50f1c74c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_74ba71f9515204b54a24463f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.861816;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_82e86e829bd1140cfda243a6.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.760000px;}
.v1{vertical-align:23.760000px;}
.ls6{letter-spacing:-2.808000px;}
.ls15{letter-spacing:-0.894000px;}
.lsd{letter-spacing:-0.852000px;}
.ls10{letter-spacing:-0.720000px;}
.ls1b{letter-spacing:-0.368400px;}
.ls1c{letter-spacing:-0.366000px;}
.ls17{letter-spacing:-0.310800px;}
.ls4{letter-spacing:-0.309600px;}
.ls7{letter-spacing:-0.282000px;}
.ls8{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.175800px;}
.lsc{letter-spacing:-0.132600px;}
.ls1d{letter-spacing:-0.115200px;}
.ls1e{letter-spacing:-0.048960px;}
.lsf{letter-spacing:-0.025920px;}
.ls5{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.055008px;}
.ls19{letter-spacing:0.115200px;}
.ls14{letter-spacing:0.126720px;}
.lsa{letter-spacing:0.129600px;}
.ls1{letter-spacing:0.132480px;}
.lsb{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.149760px;}
.ls2{letter-spacing:0.216000px;}
.ls16{letter-spacing:0.247800px;}
.ls3{letter-spacing:0.256200px;}
.lse{letter-spacing:0.256320px;}
.ls1a{letter-spacing:0.313800px;}
.ls20{letter-spacing:2.465280px;}
.ls18{letter-spacing:8.069760px;}
.ls1f{letter-spacing:35.585280px;}
.ls11{letter-spacing:39.161280px;}
.ls12{letter-spacing:849.185760px;}
.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;}
}
.ws11{word-spacing:-66.240000px;}
.wsd{word-spacing:-63.360000px;}
.ws8{word-spacing:-16.488000px;}
.wsa{word-spacing:-16.272000px;}
.wse{word-spacing:-15.284040px;}
.ws0{word-spacing:-15.226440px;}
.ws6{word-spacing:-15.099840px;}
.wsf{word-spacing:-15.085440px;}
.ws3{word-spacing:-14.970240px;}
.ws9{word-spacing:-14.944320px;}
.ws14{word-spacing:-14.921280px;}
.ws13{word-spacing:-14.855040px;}
.ws5{word-spacing:-14.794440px;}
.ws4{word-spacing:-14.754240px;}
.wsc{word-spacing:-14.659440px;}
.ws12{word-spacing:-14.604240px;}
.ws10{word-spacing:-14.601840px;}
.wsb{word-spacing:-12.204000px;}
.ws2{word-spacing:-9.437760px;}
.ws1{word-spacing:-9.128160px;}
.ws7{word-spacing:0.000000px;}
._5{margin-left:-12.690960px;}
._4{margin-left:-9.757680px;}
._3{margin-left:-4.479840px;}
._2{margin-left:-3.030480px;}
._1{margin-left:-1.192320px;}
._0{width:1.301520px;}
._b{width:2.715840px;}
._d{width:4.239360px;}
._9{width:5.365440px;}
._a{width:7.021440px;}
._7{width:8.544960px;}
._6{width:10.068480px;}
._8{width:11.128320px;}
._10{width:12.339840px;}
._c{width:13.692480px;}
._11{width:17.089920px;}
._12{width:18.642720px;}
._13{width:19.747200px;}
._f{width:489.029760px;}
._e{width:1035.638880px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:41.760000px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:63.360000px;}
.fs5{font-size:63.504000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y119{bottom:2.010000px;}
.y9e{bottom:2.415000px;}
.y115{bottom:3.450000px;}
.y11b{bottom:3.810000px;}
.y117{bottom:3.855000px;}
.y55{bottom:4.035000px;}
.yce{bottom:4.140000px;}
.yd3{bottom:4.500000px;}
.yed{bottom:4.530000px;}
.yd9{bottom:4.680000px;}
.y18a{bottom:4.725000px;}
.y13d{bottom:5.400000px;}
.y13b{bottom:5.580000px;}
.y5e{bottom:6.015000px;}
.y132{bottom:6.300000px;}
.y53{bottom:6.690000px;}
.y13a{bottom:7.380000px;}
.y133{bottom:7.920000px;}
.y147{bottom:9.030000px;}
.y111{bottom:9.255000px;}
.y5b{bottom:9.570000px;}
.y66{bottom:10.470000px;}
.y63{bottom:10.650000px;}
.y165{bottom:11.160000px;}
.ye8{bottom:11.190000px;}
.y169{bottom:11.265000px;}
.y60{bottom:12.450000px;}
.ye1{bottom:14.145000px;}
.ye3{bottom:14.325000px;}
.y187{bottom:14.625000px;}
.y15a{bottom:14.760000px;}
.y13f{bottom:15.120000px;}
.y58{bottom:17.355000px;}
.yd5{bottom:24.660000px;}
.y189{bottom:24.705000px;}
.yd8{bottom:24.840000px;}
.ydb{bottom:24.885000px;}
.y15d{bottom:25.200000px;}
.y146{bottom:25.590000px;}
.y5d{bottom:27.795000px;}
.y168{bottom:27.825000px;}
.y138{bottom:27.900000px;}
.y162{bottom:28.080000px;}
.y164{bottom:31.320000px;}
.y5a{bottom:31.350000px;}
.y65{bottom:32.250000px;}
.y62{bottom:32.430000px;}
.y186{bottom:34.785000px;}
.y159{bottom:34.920000px;}
.y141{bottom:36.045000px;}
.y57{bottom:39.135000px;}
.yd7{bottom:44.820000px;}
.y188{bottom:44.865000px;}
.ydd{bottom:45.000000px;}
.y15c{bottom:45.360000px;}
.y15f{bottom:45.720000px;}
.y113{bottom:47.730000px;}
.y137{bottom:47.880000px;}
.y161{bottom:48.240000px;}
.ye6{bottom:51.330000px;}
.y163{bottom:51.480000px;}
.yea{bottom:51.510000px;}
.y10f{bottom:53.715000px;}
.y158{bottom:55.080000px;}
.y6{bottom:57.600000px;}
.ydf{bottom:65.160000px;}
.y15e{bottom:65.880000px;}
.y8b{bottom:123.480000px;}
.y8a{bottom:145.260000px;}
.y2c{bottom:151.200000px;}
.y101{bottom:165.810000px;}
.y89{bottom:166.890000px;}
.y181{bottom:169.050000px;}
.y2b{bottom:172.830000px;}
.yb9{bottom:176.970000px;}
.y51{bottom:181.290000px;}
.y145{bottom:181.440000px;}
.y100{bottom:187.590000px;}
.y88{bottom:188.670000px;}
.y2a{bottom:194.610000px;}
.y50{bottom:203.070000px;}
.y180{bottom:204.150000px;}
.yd1{bottom:212.430000px;}
.y29{bottom:216.390000px;}
.y131{bottom:216.570000px;}
.y156{bottom:217.470000px;}
.yff{bottom:221.250000px;}
.y87{bottom:222.510000px;}
.y4f{bottom:224.850000px;}
.yb8{bottom:225.570000px;}
.y11a{bottom:231.480000px;}
.y17f{bottom:237.990000px;}
.y28{bottom:238.170000px;}
.y86{bottom:244.110000px;}
.yb7{bottom:245.730000px;}
.yd0{bottom:246.270000px;}
.y4e{bottom:246.630000px;}
.y130{bottom:250.410000px;}
.y155{bottom:253.110000px;}
.yfe{bottom:255.090000px;}
.y27{bottom:259.770000px;}
.yec{bottom:261.540000px;}
.y5f{bottom:262.260000px;}
.yb6{bottom:265.710000px;}
.y85{bottom:265.890000px;}
.y17e{bottom:271.650000px;}
.y166{bottom:275.610000px;}
.y26{bottom:281.550000px;}
.y12f{bottom:284.070000px;}
.yb5{bottom:285.870000px;}
.y84{bottom:287.670000px;}
.yfd{bottom:288.750000px;}
.y118{bottom:291.780000px;}
.y25{bottom:303.330000px;}
.y17d{bottom:305.490000px;}
.yb4{bottom:306.030000px;}
.ye5{bottom:306.720000px;}
.ye9{bottom:307.980000px;}
.y52{bottom:311.580000px;}
.y12e{bottom:317.910000px;}
.y83{bottom:321.330000px;}
.yfc{bottom:322.590000px;}
.y24{bottom:325.110000px;}
.yb3{bottom:326.190000px;}
.y17c{bottom:327.090000px;}
.y4d{bottom:330.690000px;}
.y112{bottom:335.520000px;}
.y160{bottom:336.810000px;}
.y64{bottom:337.860000px;}
.ye7{bottom:338.070000px;}
.yeb{bottom:339.330000px;}
.y82{bottom:343.110000px;}
.yb2{bottom:346.350000px;}
.y23{bottom:346.710000px;}
.y17b{bottom:348.870000px;}
.y12d{bottom:351.570000px;}
.y1a9{bottom:355.530000px;}
.yfb{bottom:356.250000px;}
.y59{bottom:359.460000px;}
.y114{bottom:361.650000px;}
.y4c{bottom:364.350000px;}
.y81{bottom:364.890000px;}
.y61{bottom:365.940000px;}
.yb1{bottom:366.510000px;}
.y22{bottom:368.490000px;}
.y9c{bottom:369.930000px;}
.y17a{bottom:370.650000px;}
.y12c{bottom:385.410000px;}
.yb0{bottom:386.670000px;}
.y1a8{bottom:389.190000px;}
.yfa{bottom:389.910000px;}
.y9b{bottom:391.710000px;}
.y179{bottom:392.430000px;}
.y80{bottom:394.230000px;}
.y4b{bottom:398.190000px;}
.y21{bottom:399.810000px;}
.y15b{bottom:404.535000px;}
.yaf{bottom:406.875000px;}
.y1a7{bottom:411.015000px;}
.y9a{bottom:413.355000px;}
.y12b{bottom:419.115000px;}
.y10e{bottom:421.020000px;}
.y178{bottom:423.615000px;}
.yf9{bottom:423.795000px;}
.y7f{bottom:429.555000px;}
.y5c{bottom:430.200000px;}
.y4a{bottom:431.895000px;}
.y1a6{bottom:432.795000px;}
.y99{bottom:435.135000px;}
.y20{bottom:439.455000px;}
.yae{bottom:440.535000px;}
.y7e{bottom:451.335000px;}
.y12a{bottom:452.775000px;}
.y110{bottom:452.955000px;}
.y98{bottom:456.915000px;}
.yf8{bottom:457.455000px;}
.y1f{bottom:459.615000px;}
.yad{bottom:462.315000px;}
.y177{bottom:464.835000px;}
.y49{bottom:465.735000px;}
.y1a5{bottom:466.455000px;}
.y7d{bottom:473.115000px;}
.y97{bottom:478.695000px;}
.y1e{bottom:479.775000px;}
.yac{bottom:484.095000px;}
.y129{bottom:486.615000px;}
.y1a4{bottom:488.235000px;}
.yf7{bottom:491.295000px;}
.y56{bottom:495.180000px;}
.y7c{bottom:495.615000px;}
.y48{bottom:499.395000px;}
.y96{bottom:500.295000px;}
.yab{bottom:505.695000px;}
.y176{bottom:508.395000px;}
.y1a3{bottom:510.015000px;}
.y116{bottom:511.920000px;}
.y1d{bottom:517.755000px;}
.y128{bottom:520.275000px;}
.y95{bottom:522.075000px;}
.yf6{bottom:524.955000px;}
.y7b{bottom:525.135000px;}
.y175{bottom:529.995000px;}
.y1a2{bottom:531.795000px;}
.y47{bottom:533.055000px;}
.yaa{bottom:535.035000px;}
.y1c{bottom:537.915000px;}
.y94{bottom:551.415000px;}
.y174{bottom:551.775000px;}
.y1a1{bottom:553.395000px;}
.y127{bottom:554.115000px;}
.y7a{bottom:556.095000px;}
.y1b{bottom:558.075000px;}
.yf5{bottom:558.795000px;}
.y46{bottom:566.895000px;}
.y157{bottom:567.975000px;}
.ya9{bottom:570.495000px;}
.y173{bottom:573.555000px;}
.y1a0{bottom:575.175000px;}
.y54{bottom:576.180000px;}
.y1a{bottom:578.235000px;}
.y9d{bottom:583.740000px;}
.y126{bottom:587.775000px;}
.y79{bottom:591.375000px;}
.ya8{bottom:592.275000px;}
.yf4{bottom:592.455000px;}
.y172{bottom:595.335000px;}
.y19{bottom:598.395000px;}
.y45{bottom:600.555000px;}
.y19f{bottom:606.315000px;}
.yf3{bottom:612.615000px;}
.y78{bottom:613.155000px;}
.ya7{bottom:613.875000px;}
.y171{bottom:616.935000px;}
.y18{bottom:618.555000px;}
.y125{bottom:621.435000px;}
.y44{bottom:634.395000px;}
.y77{bottom:634.935000px;}
.y17{bottom:638.715000px;}
.y124{bottom:643.215000px;}
.ya6{bottom:645.195000px;}
.yf2{bottom:646.275000px;}
.y19e{bottom:647.715000px;}
.y43{bottom:656.205000px;}
.y76{bottom:656.565000px;}
.y16{bottom:658.905000px;}
.y170{bottom:660.525000px;}
.y123{bottom:665.025000px;}
.yf1{bottom:668.085000px;}
.y19d{bottom:669.345000px;}
.y42{bottom:677.805000px;}
.y75{bottom:678.345000px;}
.y154{bottom:678.885000px;}
.y15{bottom:679.065000px;}
.y16f{bottom:682.305000px;}
.yf0{bottom:689.865000px;}
.y19c{bottom:691.125000px;}
.ya5{bottom:693.825000px;}
.y122{bottom:698.685000px;}
.y41{bottom:699.585000px;}
.y74{bottom:700.125000px;}
.y16e{bottom:703.905000px;}
.y167{bottom:704.700000px;}
.ycd{bottom:710.385000px;}
.y19b{bottom:712.905000px;}
.y14{bottom:717.225000px;}
.ye2{bottom:718.560000px;}
.ye0{bottom:718.920000px;}
.ye4{bottom:719.100000px;}
.yef{bottom:719.205000px;}
.y121{bottom:720.465000px;}
.y40{bottom:721.365000px;}
.y73{bottom:721.905000px;}
.y19a{bottom:734.685000px;}
.y16d{bottom:735.045000px;}
.y153{bottom:736.305000px;}
.y13{bottom:737.205000px;}
.y120{bottom:742.245000px;}
.y3f{bottom:743.145000px;}
.y72{bottom:743.505000px;}
.yca{bottom:743.730000px;}
.yde{bottom:748.365000px;}
.ycc{bottom:753.150000px;}
.yee{bottom:755.025000px;}
.y199{bottom:756.285000px;}
.y12{bottom:757.365000px;}
.yc9{bottom:763.890000px;}
.y11f{bottom:764.025000px;}
.y3e{bottom:764.745000px;}
.y71{bottom:765.285000px;}
.y152{bottom:769.965000px;}
.ycb{bottom:771.330000px;}
.y16c{bottom:776.445000px;}
.y11{bottom:777.525000px;}
.y198{bottom:778.065000px;}
.yc8{bottom:781.170000px;}
.y11e{bottom:785.625000px;}
.y3d{bottom:786.525000px;}
.y70{bottom:796.425000px;}
.y16b{bottom:798.225000px;}
.y10d{bottom:798.405000px;}
.y197{bottom:799.845000px;}
.y151{bottom:803.625000px;}
.y11d{bottom:807.405000px;}
.y3c{bottom:808.305000px;}
.y10c{bottom:819.285000px;}
.y196{bottom:821.625000px;}
.yc4{bottom:821.850000px;}
.y10{bottom:824.685000px;}
.ydc{bottom:829.725000px;}
.y3b{bottom:830.085000px;}
.y16a{bottom:832.425000px;}
.y150{bottom:837.465000px;}
.y6f{bottom:837.825000px;}
.yc3{bottom:839.130000px;}
.yc7{bottom:839.415000px;}
.y10b{bottom:840.165000px;}
.y11c{bottom:841.605000px;}
.y195{bottom:843.225000px;}
.yf{bottom:844.845000px;}
.y18b{bottom:854.925000px;}
.yc2{bottom:856.410000px;}
.yc6{bottom:857.595000px;}
.y3a{bottom:859.425000px;}
.y10a{bottom:861.045000px;}
.y140{bottom:864.105000px;}
.ye{bottom:865.005000px;}
.y14f{bottom:871.125000px;}
.yc5{bottom:875.775000px;}
.yc1{bottom:876.570000px;}
.y6e{bottom:881.205000px;}
.y109{bottom:881.925000px;}
.y144{bottom:884.985000px;}
.yd{bottom:885.165000px;}
.yda{bottom:890.925000px;}
.y39{bottom:892.185000px;}
.yc0{bottom:893.850000px;}
.y185{bottom:895.965000px;}
.y108{bottom:902.850000px;}
.y6d{bottom:903.030000px;}
.y14e{bottom:905.010000px;}
.yc{bottom:905.370000px;}
.y143{bottom:905.910000px;}
.y93{bottom:916.530000px;}
.y107{bottom:923.730000px;}
.y6c{bottom:924.810000px;}
.yb{bottom:925.530000px;}
.y142{bottom:926.790000px;}
.ybd{bottom:930.390000px;}
.yd6{bottom:932.010000px;}
.y38{bottom:933.450000px;}
.y92{bottom:938.310000px;}
.y14d{bottom:938.670000px;}
.y106{bottom:944.610000px;}
.y194{bottom:947.310000px;}
.ybc{bottom:947.670000px;}
.ybf{bottom:948.810000px;}
.ya{bottom:951.630000px;}
.y6b{bottom:954.150000px;}
.y37{bottom:955.230000px;}
.y184{bottom:957.030000px;}
.y91{bottom:959.910000px;}
.y105{bottom:965.490000px;}
.ybb{bottom:965.670000px;}
.ybe{bottom:966.990000px;}
.y193{bottom:967.470000px;}
.y13e{bottom:968.730000px;}
.y14c{bottom:972.330000px;}
.y36{bottom:977.010000px;}
.y90{bottom:981.690000px;}
.y9{bottom:983.670000px;}
.yba{bottom:985.860000px;}
.y104{bottom:986.550000px;}
.y192{bottom:987.450000px;}
.y6a{bottom:989.430000px;}
.y13c{bottom:989.610000px;}
.yd4{bottom:993.210000px;}
.y183{bottom:998.070000px;}
.y35{bottom:998.610000px;}
.y8f{bottom:1003.470000px;}
.y14b{bottom:1006.170000px;}
.y103{bottom:1007.430000px;}
.y191{bottom:1007.610000px;}
.y69{bottom:1011.210000px;}
.y139{bottom:1011.390000px;}
.ya4{bottom:1023.090000px;}
.y8e{bottom:1025.250000px;}
.y190{bottom:1027.770000px;}
.y102{bottom:1028.310000px;}
.y34{bottom:1032.450000px;}
.y68{bottom:1032.990000px;}
.yd2{bottom:1034.250000px;}
.y136{bottom:1034.970000px;}
.y8{bottom:1035.150000px;}
.y182{bottom:1039.110000px;}
.y14a{bottom:1039.830000px;}
.ya3{bottom:1044.870000px;}
.y8d{bottom:1046.850000px;}
.y18f{bottom:1047.930000px;}
.y33{bottom:1054.230000px;}
.y135{bottom:1055.850000px;}
.y67{bottom:1062.330000px;}
.ya2{bottom:1066.650000px;}
.y18e{bottom:1068.090000px;}
.y149{bottom:1073.670000px;}
.y7{bottom:1075.470000px;}
.y32{bottom:1075.830000px;}
.y134{bottom:1076.730000px;}
.y8c{bottom:1077.990000px;}
.ycf{bottom:1079.070000px;}
.y18d{bottom:1088.250000px;}
.ya1{bottom:1088.430000px;}
.y31{bottom:1097.610000px;}
.y148{bottom:1107.330000px;}
.y18c{bottom:1108.410000px;}
.ya0{bottom:1110.210000px;}
.y5{bottom:1111.470000px;}
.y30{bottom:1119.390000px;}
.y4{bottom:1131.630000px;}
.y9f{bottom:1139.550000px;}
.y2f{bottom:1141.170000px;}
.y3{bottom:1153.800000px;}
.y2e{bottom:1171.980000px;}
.y2{bottom:1174.140000px;}
.y2d{bottom:1194.120000px;}
.y1{bottom:1194.300000px;}
.h29{height:17.820000px;}
.h28{height:19.440000px;}
.h9{height:19.800000px;}
.h19{height:19.980000px;}
.h24{height:20.160000px;}
.h25{height:20.196000px;}
.h2d{height:20.880000px;}
.h8{height:22.320000px;}
.h2c{height:22.860000px;}
.h2a{height:23.400000px;}
.h12{height:24.300000px;}
.h17{height:25.920000px;}
.h23{height:26.460000px;}
.h20{height:29.700000px;}
.h1f{height:29.880000px;}
.h6{height:29.974219px;}
.he{height:34.560000px;}
.h18{height:37.309570px;}
.h1a{height:40.140000px;}
.h34{height:40.320000px;}
.h1c{height:40.356000px;}
.h2e{height:41.040000px;}
.hc{height:43.560000px;}
.h16{height:45.478125px;}
.h15{height:45.581484px;}
.hd{height:45.766406px;}
.hb{height:46.980000px;}
.h3{height:47.545312px;}
.h30{height:47.700000px;}
.hf{height:48.060000px;}
.h10{height:49.218750px;}
.h33{height:49.680000px;}
.h14{height:49.746094px;}
.h5{height:52.612734px;}
.h2{height:53.734219px;}
.ha{height:54.900000px;}
.h1b{height:60.300000px;}
.h35{height:60.336000px;}
.h1d{height:60.480000px;}
.h27{height:63.360000px;}
.h21{height:66.960000px;}
.h32{height:66.996000px;}
.h22{height:67.140000px;}
.h13{height:68.084282px;}
.h26{height:69.480000px;}
.h11{height:72.562500px;}
.h7{height:74.953125px;}
.h1e{height:80.640000px;}
.h31{height:81.360000px;}
.h2f{height:82.836000px;}
.h2b{height:86.580000px;}
.h4{height:91.035352px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1e{width:47.160000px;}
.w5{width:62.460000px;}
.w14{width:91.800000px;}
.wb{width:95.616000px;}
.w6{width:98.460000px;}
.wa{width:106.740000px;}
.w3{width:111.960000px;}
.w4{width:118.260000px;}
.w21{width:121.860000px;}
.wd{width:122.220000px;}
.w1a{width:123.840000px;}
.w19{width:128.700000px;}
.w17{width:129.096000px;}
.w24{width:132.300000px;}
.we{width:133.200000px;}
.w1f{width:134.676000px;}
.w1c{width:140.760000px;}
.w16{width:141.516000px;}
.w15{width:141.696000px;}
.w13{width:191.370000px;}
.w1d{width:196.815000px;}
.w10{width:245.880000px;}
.wf{width:254.160000px;}
.w11{width:259.560000px;}
.w18{width:412.305000px;}
.wc{width:478.155000px;}
.w7{width:486.360000px;}
.w23{width:561.960000px;}
.w20{width:562.500000px;}
.w25{width:575.790000px;}
.w22{width:586.230000px;}
.w1b{width:593.820000px;}
.w12{width:700.020000px;}
.w9{width:701.430000px;}
.w8{width:708.480000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x25{left:8.100000px;}
.x10{left:11.010000px;}
.x57{left:12.060000px;}
.xd{left:16.050000px;}
.x5b{left:17.280000px;}
.x55{left:18.720000px;}
.x4e{left:20.340000px;}
.xe{left:22.350000px;}
.x49{left:23.580000px;}
.x11{left:24.870000px;}
.x12{left:26.130000px;}
.x59{left:27.720000px;}
.x16{left:28.725000px;}
.x5c{left:30.954000px;}
.x45{left:32.400000px;}
.x13{left:34.410000px;}
.x56{left:35.994000px;}
.x3b{left:39.450000px;}
.x17{left:41.505000px;}
.x4c{left:43.554000px;}
.x3c{left:45.180000px;}
.x48{left:48.420000px;}
.x46{left:49.854000px;}
.x36{left:51.120000px;}
.x51{left:52.560000px;}
.x39{left:54.030000px;}
.x37{left:56.190000px;}
.x35{left:58.350000px;}
.x3a{left:60.300000px;}
.x38{left:62.490000px;}
.x4b{left:68.400000px;}
.x4d{left:70.380000px;}
.x4a{left:74.340000px;}
.x47{left:76.680000px;}
.x52{left:80.820000px;}
.x4f{left:82.980000px;}
.x50{left:87.120000px;}
.x1{left:106.235987px;}
.x19{left:111.960000px;}
.x2e{left:120.780000px;}
.x3{left:122.435987px;}
.x24{left:128.519987px;}
.x1a{left:133.235987px;}
.x22{left:134.639987px;}
.x2f{left:135.756000px;}
.x1f{left:137.519987px;}
.x1e{left:140.399987px;}
.x28{left:149.580000px;}
.x14{left:152.100000px;}
.xc{left:153.360000px;}
.x23{left:158.249987px;}
.x1b{left:160.229987px;}
.xf{left:166.860000px;}
.x53{left:175.500000px;}
.x34{left:187.050000px;}
.x58{left:192.600000px;}
.x40{left:194.580000px;}
.x26{left:228.990000px;}
.x4{left:232.049987px;}
.x54{left:244.110000px;}
.x5a{left:254.550000px;}
.x8{left:261.929987px;}
.x41{left:263.010000px;}
.x6{left:269.894987px;}
.x20{left:271.589987px;}
.x1c{left:276.044987px;}
.x21{left:278.429987px;}
.x2b{left:281.774987px;}
.x1d{left:282.884987px;}
.x27{left:324.615000px;}
.x9{left:325.694987px;}
.x30{left:327.135000px;}
.x29{left:359.820000px;}
.x7{left:373.034987px;}
.x5{left:375.014987px;}
.x31{left:418.935000px;}
.xb{left:424.514987px;}
.x2{left:438.014987px;}
.xa{left:446.504987px;}
.x42{left:459.825000px;}
.x43{left:506.985000px;}
.x15{left:522.720000px;}
.x2c{left:531.540000px;}
.x2d{left:542.624987px;}
.x2a{left:551.880000px;}
.x32{left:560.625000px;}
.x18{left:658.260000px;}
.x3d{left:659.520000px;}
.x3f{left:664.380000px;}
.x3e{left:670.649987px;}
.x44{left:698.370000px;}
.x33{left:702.150000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.120000pt;}
.v1{vertical-align:21.120000pt;}
.ls6{letter-spacing:-2.496000pt;}
.ls15{letter-spacing:-0.794667pt;}
.lsd{letter-spacing:-0.757333pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls1b{letter-spacing:-0.327467pt;}
.ls1c{letter-spacing:-0.325333pt;}
.ls17{letter-spacing:-0.276267pt;}
.ls4{letter-spacing:-0.275200pt;}
.ls7{letter-spacing:-0.250667pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.156267pt;}
.lsc{letter-spacing:-0.117867pt;}
.ls1d{letter-spacing:-0.102400pt;}
.ls1e{letter-spacing:-0.043520pt;}
.lsf{letter-spacing:-0.023040pt;}
.ls5{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.048896pt;}
.ls19{letter-spacing:0.102400pt;}
.ls14{letter-spacing:0.112640pt;}
.lsa{letter-spacing:0.115200pt;}
.ls1{letter-spacing:0.117760pt;}
.lsb{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls2{letter-spacing:0.192000pt;}
.ls16{letter-spacing:0.220267pt;}
.ls3{letter-spacing:0.227733pt;}
.lse{letter-spacing:0.227840pt;}
.ls1a{letter-spacing:0.278933pt;}
.ls20{letter-spacing:2.191360pt;}
.ls18{letter-spacing:7.173120pt;}
.ls1f{letter-spacing:31.631360pt;}
.ls11{letter-spacing:34.810027pt;}
.ls12{letter-spacing:754.831787pt;}
.ws11{word-spacing:-58.880000pt;}
.wsd{word-spacing:-56.320000pt;}
.ws8{word-spacing:-14.656000pt;}
.wsa{word-spacing:-14.464000pt;}
.wse{word-spacing:-13.585813pt;}
.ws0{word-spacing:-13.534613pt;}
.ws6{word-spacing:-13.422080pt;}
.wsf{word-spacing:-13.409280pt;}
.ws3{word-spacing:-13.306880pt;}
.ws9{word-spacing:-13.283840pt;}
.ws14{word-spacing:-13.263360pt;}
.ws13{word-spacing:-13.204480pt;}
.ws5{word-spacing:-13.150613pt;}
.ws4{word-spacing:-13.114880pt;}
.wsc{word-spacing:-13.030613pt;}
.ws12{word-spacing:-12.981547pt;}
.ws10{word-spacing:-12.979413pt;}
.wsb{word-spacing:-10.848000pt;}
.ws2{word-spacing:-8.389120pt;}
.ws1{word-spacing:-8.113920pt;}
.ws7{word-spacing:0.000000pt;}
._5{margin-left:-11.280853pt;}
._4{margin-left:-8.673493pt;}
._3{margin-left:-3.982080pt;}
._2{margin-left:-2.693760pt;}
._1{margin-left:-1.059840pt;}
._0{width:1.156907pt;}
._b{width:2.414080pt;}
._d{width:3.768320pt;}
._9{width:4.769280pt;}
._a{width:6.241280pt;}
._7{width:7.595520pt;}
._6{width:8.949760pt;}
._8{width:9.891840pt;}
._10{width:10.968747pt;}
._c{width:12.171093pt;}
._11{width:15.191040pt;}
._12{width:16.571307pt;}
._13{width:17.553067pt;}
._f{width:434.693120pt;}
._e{width:920.567893pt;}
.fs1{font-size:37.120000pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:56.320000pt;}
.fs5{font-size:56.448000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y119{bottom:1.786667pt;}
.y9e{bottom:2.146667pt;}
.y115{bottom:3.066667pt;}
.y11b{bottom:3.386667pt;}
.y117{bottom:3.426667pt;}
.y55{bottom:3.586667pt;}
.yce{bottom:3.680000pt;}
.yd3{bottom:4.000000pt;}
.yed{bottom:4.026667pt;}
.yd9{bottom:4.160000pt;}
.y18a{bottom:4.200000pt;}
.y13d{bottom:4.800000pt;}
.y13b{bottom:4.960000pt;}
.y5e{bottom:5.346667pt;}
.y132{bottom:5.600000pt;}
.y53{bottom:5.946667pt;}
.y13a{bottom:6.560000pt;}
.y133{bottom:7.040000pt;}
.y147{bottom:8.026667pt;}
.y111{bottom:8.226667pt;}
.y5b{bottom:8.506667pt;}
.y66{bottom:9.306667pt;}
.y63{bottom:9.466667pt;}
.y165{bottom:9.920000pt;}
.ye8{bottom:9.946667pt;}
.y169{bottom:10.013333pt;}
.y60{bottom:11.066667pt;}
.ye1{bottom:12.573333pt;}
.ye3{bottom:12.733333pt;}
.y187{bottom:13.000000pt;}
.y15a{bottom:13.120000pt;}
.y13f{bottom:13.440000pt;}
.y58{bottom:15.426667pt;}
.yd5{bottom:21.920000pt;}
.y189{bottom:21.960000pt;}
.yd8{bottom:22.080000pt;}
.ydb{bottom:22.120000pt;}
.y15d{bottom:22.400000pt;}
.y146{bottom:22.746667pt;}
.y5d{bottom:24.706667pt;}
.y168{bottom:24.733333pt;}
.y138{bottom:24.800000pt;}
.y162{bottom:24.960000pt;}
.y164{bottom:27.840000pt;}
.y5a{bottom:27.866667pt;}
.y65{bottom:28.666667pt;}
.y62{bottom:28.826667pt;}
.y186{bottom:30.920000pt;}
.y159{bottom:31.040000pt;}
.y141{bottom:32.040000pt;}
.y57{bottom:34.786667pt;}
.yd7{bottom:39.840000pt;}
.y188{bottom:39.880000pt;}
.ydd{bottom:40.000000pt;}
.y15c{bottom:40.320000pt;}
.y15f{bottom:40.640000pt;}
.y113{bottom:42.426667pt;}
.y137{bottom:42.560000pt;}
.y161{bottom:42.880000pt;}
.ye6{bottom:45.626667pt;}
.y163{bottom:45.760000pt;}
.yea{bottom:45.786667pt;}
.y10f{bottom:47.746667pt;}
.y158{bottom:48.960000pt;}
.y6{bottom:51.200000pt;}
.ydf{bottom:57.920000pt;}
.y15e{bottom:58.560000pt;}
.y8b{bottom:109.760000pt;}
.y8a{bottom:129.120000pt;}
.y2c{bottom:134.400000pt;}
.y101{bottom:147.386667pt;}
.y89{bottom:148.346667pt;}
.y181{bottom:150.266667pt;}
.y2b{bottom:153.626667pt;}
.yb9{bottom:157.306667pt;}
.y51{bottom:161.146667pt;}
.y145{bottom:161.280000pt;}
.y100{bottom:166.746667pt;}
.y88{bottom:167.706667pt;}
.y2a{bottom:172.986667pt;}
.y50{bottom:180.506667pt;}
.y180{bottom:181.466667pt;}
.yd1{bottom:188.826667pt;}
.y29{bottom:192.346667pt;}
.y131{bottom:192.506667pt;}
.y156{bottom:193.306667pt;}
.yff{bottom:196.666667pt;}
.y87{bottom:197.786667pt;}
.y4f{bottom:199.866667pt;}
.yb8{bottom:200.506667pt;}
.y11a{bottom:205.760000pt;}
.y17f{bottom:211.546667pt;}
.y28{bottom:211.706667pt;}
.y86{bottom:216.986667pt;}
.yb7{bottom:218.426667pt;}
.yd0{bottom:218.906667pt;}
.y4e{bottom:219.226667pt;}
.y130{bottom:222.586667pt;}
.y155{bottom:224.986667pt;}
.yfe{bottom:226.746667pt;}
.y27{bottom:230.906667pt;}
.yec{bottom:232.480000pt;}
.y5f{bottom:233.120000pt;}
.yb6{bottom:236.186667pt;}
.y85{bottom:236.346667pt;}
.y17e{bottom:241.466667pt;}
.y166{bottom:244.986667pt;}
.y26{bottom:250.266667pt;}
.y12f{bottom:252.506667pt;}
.yb5{bottom:254.106667pt;}
.y84{bottom:255.706667pt;}
.yfd{bottom:256.666667pt;}
.y118{bottom:259.360000pt;}
.y25{bottom:269.626667pt;}
.y17d{bottom:271.546667pt;}
.yb4{bottom:272.026667pt;}
.ye5{bottom:272.640000pt;}
.ye9{bottom:273.760000pt;}
.y52{bottom:276.960000pt;}
.y12e{bottom:282.586667pt;}
.y83{bottom:285.626667pt;}
.yfc{bottom:286.746667pt;}
.y24{bottom:288.986667pt;}
.yb3{bottom:289.946667pt;}
.y17c{bottom:290.746667pt;}
.y4d{bottom:293.946667pt;}
.y112{bottom:298.240000pt;}
.y160{bottom:299.386667pt;}
.y64{bottom:300.320000pt;}
.ye7{bottom:300.506667pt;}
.yeb{bottom:301.626667pt;}
.y82{bottom:304.986667pt;}
.yb2{bottom:307.866667pt;}
.y23{bottom:308.186667pt;}
.y17b{bottom:310.106667pt;}
.y12d{bottom:312.506667pt;}
.y1a9{bottom:316.026667pt;}
.yfb{bottom:316.666667pt;}
.y59{bottom:319.520000pt;}
.y114{bottom:321.466667pt;}
.y4c{bottom:323.866667pt;}
.y81{bottom:324.346667pt;}
.y61{bottom:325.280000pt;}
.yb1{bottom:325.786667pt;}
.y22{bottom:327.546667pt;}
.y9c{bottom:328.826667pt;}
.y17a{bottom:329.466667pt;}
.y12c{bottom:342.586667pt;}
.yb0{bottom:343.706667pt;}
.y1a8{bottom:345.946667pt;}
.yfa{bottom:346.586667pt;}
.y9b{bottom:348.186667pt;}
.y179{bottom:348.826667pt;}
.y80{bottom:350.426667pt;}
.y4b{bottom:353.946667pt;}
.y21{bottom:355.386667pt;}
.y15b{bottom:359.586667pt;}
.yaf{bottom:361.666667pt;}
.y1a7{bottom:365.346667pt;}
.y9a{bottom:367.426667pt;}
.y12b{bottom:372.546667pt;}
.y10e{bottom:374.240000pt;}
.y178{bottom:376.546667pt;}
.yf9{bottom:376.706667pt;}
.y7f{bottom:381.826667pt;}
.y5c{bottom:382.400000pt;}
.y4a{bottom:383.906667pt;}
.y1a6{bottom:384.706667pt;}
.y99{bottom:386.786667pt;}
.y20{bottom:390.626667pt;}
.yae{bottom:391.586667pt;}
.y7e{bottom:401.186667pt;}
.y12a{bottom:402.466667pt;}
.y110{bottom:402.626667pt;}
.y98{bottom:406.146667pt;}
.yf8{bottom:406.626667pt;}
.y1f{bottom:408.546667pt;}
.yad{bottom:410.946667pt;}
.y177{bottom:413.186667pt;}
.y49{bottom:413.986667pt;}
.y1a5{bottom:414.626667pt;}
.y7d{bottom:420.546667pt;}
.y97{bottom:425.506667pt;}
.y1e{bottom:426.466667pt;}
.yac{bottom:430.306667pt;}
.y129{bottom:432.546667pt;}
.y1a4{bottom:433.986667pt;}
.yf7{bottom:436.706667pt;}
.y56{bottom:440.160000pt;}
.y7c{bottom:440.546667pt;}
.y48{bottom:443.906667pt;}
.y96{bottom:444.706667pt;}
.yab{bottom:449.506667pt;}
.y176{bottom:451.906667pt;}
.y1a3{bottom:453.346667pt;}
.y116{bottom:455.040000pt;}
.y1d{bottom:460.226667pt;}
.y128{bottom:462.466667pt;}
.y95{bottom:464.066667pt;}
.yf6{bottom:466.626667pt;}
.y7b{bottom:466.786667pt;}
.y175{bottom:471.106667pt;}
.y1a2{bottom:472.706667pt;}
.y47{bottom:473.826667pt;}
.yaa{bottom:475.586667pt;}
.y1c{bottom:478.146667pt;}
.y94{bottom:490.146667pt;}
.y174{bottom:490.466667pt;}
.y1a1{bottom:491.906667pt;}
.y127{bottom:492.546667pt;}
.y7a{bottom:494.306667pt;}
.y1b{bottom:496.066667pt;}
.yf5{bottom:496.706667pt;}
.y46{bottom:503.906667pt;}
.y157{bottom:504.866667pt;}
.ya9{bottom:507.106667pt;}
.y173{bottom:509.826667pt;}
.y1a0{bottom:511.266667pt;}
.y54{bottom:512.160000pt;}
.y1a{bottom:513.986667pt;}
.y9d{bottom:518.880000pt;}
.y126{bottom:522.466667pt;}
.y79{bottom:525.666667pt;}
.ya8{bottom:526.466667pt;}
.yf4{bottom:526.626667pt;}
.y172{bottom:529.186667pt;}
.y19{bottom:531.906667pt;}
.y45{bottom:533.826667pt;}
.y19f{bottom:538.946667pt;}
.yf3{bottom:544.546667pt;}
.y78{bottom:545.026667pt;}
.ya7{bottom:545.666667pt;}
.y171{bottom:548.386667pt;}
.y18{bottom:549.826667pt;}
.y125{bottom:552.386667pt;}
.y44{bottom:563.906667pt;}
.y77{bottom:564.386667pt;}
.y17{bottom:567.746667pt;}
.y124{bottom:571.746667pt;}
.ya6{bottom:573.506667pt;}
.yf2{bottom:574.466667pt;}
.y19e{bottom:575.746667pt;}
.y43{bottom:583.293333pt;}
.y76{bottom:583.613333pt;}
.y16{bottom:585.693333pt;}
.y170{bottom:587.133333pt;}
.y123{bottom:591.133333pt;}
.yf1{bottom:593.853333pt;}
.y19d{bottom:594.973333pt;}
.y42{bottom:602.493333pt;}
.y75{bottom:602.973333pt;}
.y154{bottom:603.453333pt;}
.y15{bottom:603.613333pt;}
.y16f{bottom:606.493333pt;}
.yf0{bottom:613.213333pt;}
.y19c{bottom:614.333333pt;}
.ya5{bottom:616.733333pt;}
.y122{bottom:621.053333pt;}
.y41{bottom:621.853333pt;}
.y74{bottom:622.333333pt;}
.y16e{bottom:625.693333pt;}
.y167{bottom:626.400000pt;}
.ycd{bottom:631.453333pt;}
.y19b{bottom:633.693333pt;}
.y14{bottom:637.533333pt;}
.ye2{bottom:638.720000pt;}
.ye0{bottom:639.040000pt;}
.ye4{bottom:639.200000pt;}
.yef{bottom:639.293333pt;}
.y121{bottom:640.413333pt;}
.y40{bottom:641.213333pt;}
.y73{bottom:641.693333pt;}
.y19a{bottom:653.053333pt;}
.y16d{bottom:653.373333pt;}
.y153{bottom:654.493333pt;}
.y13{bottom:655.293333pt;}
.y120{bottom:659.773333pt;}
.y3f{bottom:660.573333pt;}
.y72{bottom:660.893333pt;}
.yca{bottom:661.093333pt;}
.yde{bottom:665.213333pt;}
.ycc{bottom:669.466667pt;}
.yee{bottom:671.133333pt;}
.y199{bottom:672.253333pt;}
.y12{bottom:673.213333pt;}
.yc9{bottom:679.013333pt;}
.y11f{bottom:679.133333pt;}
.y3e{bottom:679.773333pt;}
.y71{bottom:680.253333pt;}
.y152{bottom:684.413333pt;}
.ycb{bottom:685.626667pt;}
.y16c{bottom:690.173333pt;}
.y11{bottom:691.133333pt;}
.y198{bottom:691.613333pt;}
.yc8{bottom:694.373333pt;}
.y11e{bottom:698.333333pt;}
.y3d{bottom:699.133333pt;}
.y70{bottom:707.933333pt;}
.y16b{bottom:709.533333pt;}
.y10d{bottom:709.693333pt;}
.y197{bottom:710.973333pt;}
.y151{bottom:714.333333pt;}
.y11d{bottom:717.693333pt;}
.y3c{bottom:718.493333pt;}
.y10c{bottom:728.253333pt;}
.y196{bottom:730.333333pt;}
.yc4{bottom:730.533333pt;}
.y10{bottom:733.053333pt;}
.ydc{bottom:737.533333pt;}
.y3b{bottom:737.853333pt;}
.y16a{bottom:739.933333pt;}
.y150{bottom:744.413333pt;}
.y6f{bottom:744.733333pt;}
.yc3{bottom:745.893333pt;}
.yc7{bottom:746.146667pt;}
.y10b{bottom:746.813333pt;}
.y11c{bottom:748.093333pt;}
.y195{bottom:749.533333pt;}
.yf{bottom:750.973333pt;}
.y18b{bottom:759.933333pt;}
.yc2{bottom:761.253333pt;}
.yc6{bottom:762.306667pt;}
.y3a{bottom:763.933333pt;}
.y10a{bottom:765.373333pt;}
.y140{bottom:768.093333pt;}
.ye{bottom:768.893333pt;}
.y14f{bottom:774.333333pt;}
.yc5{bottom:778.466667pt;}
.yc1{bottom:779.173333pt;}
.y6e{bottom:783.293333pt;}
.y109{bottom:783.933333pt;}
.y144{bottom:786.653333pt;}
.yd{bottom:786.813333pt;}
.yda{bottom:791.933333pt;}
.y39{bottom:793.053333pt;}
.yc0{bottom:794.533333pt;}
.y185{bottom:796.413333pt;}
.y108{bottom:802.533333pt;}
.y6d{bottom:802.693333pt;}
.y14e{bottom:804.453333pt;}
.yc{bottom:804.773333pt;}
.y143{bottom:805.253333pt;}
.y93{bottom:814.693333pt;}
.y107{bottom:821.093333pt;}
.y6c{bottom:822.053333pt;}
.yb{bottom:822.693333pt;}
.y142{bottom:823.813333pt;}
.ybd{bottom:827.013333pt;}
.yd6{bottom:828.453333pt;}
.y38{bottom:829.733333pt;}
.y92{bottom:834.053333pt;}
.y14d{bottom:834.373333pt;}
.y106{bottom:839.653333pt;}
.y194{bottom:842.053333pt;}
.ybc{bottom:842.373333pt;}
.ybf{bottom:843.386667pt;}
.ya{bottom:845.893333pt;}
.y6b{bottom:848.133333pt;}
.y37{bottom:849.093333pt;}
.y184{bottom:850.693333pt;}
.y91{bottom:853.253333pt;}
.y105{bottom:858.213333pt;}
.ybb{bottom:858.373333pt;}
.ybe{bottom:859.546667pt;}
.y193{bottom:859.973333pt;}
.y13e{bottom:861.093333pt;}
.y14c{bottom:864.293333pt;}
.y36{bottom:868.453333pt;}
.y90{bottom:872.613333pt;}
.y9{bottom:874.373333pt;}
.yba{bottom:876.320000pt;}
.y104{bottom:876.933333pt;}
.y192{bottom:877.733333pt;}
.y6a{bottom:879.493333pt;}
.y13c{bottom:879.653333pt;}
.yd4{bottom:882.853333pt;}
.y183{bottom:887.173333pt;}
.y35{bottom:887.653333pt;}
.y8f{bottom:891.973333pt;}
.y14b{bottom:894.373333pt;}
.y103{bottom:895.493333pt;}
.y191{bottom:895.653333pt;}
.y69{bottom:898.853333pt;}
.y139{bottom:899.013333pt;}
.ya4{bottom:909.413333pt;}
.y8e{bottom:911.333333pt;}
.y190{bottom:913.573333pt;}
.y102{bottom:914.053333pt;}
.y34{bottom:917.733333pt;}
.y68{bottom:918.213333pt;}
.yd2{bottom:919.333333pt;}
.y136{bottom:919.973333pt;}
.y8{bottom:920.133333pt;}
.y182{bottom:923.653333pt;}
.y14a{bottom:924.293333pt;}
.ya3{bottom:928.773333pt;}
.y8d{bottom:930.533333pt;}
.y18f{bottom:931.493333pt;}
.y33{bottom:937.093333pt;}
.y135{bottom:938.533333pt;}
.y67{bottom:944.293333pt;}
.ya2{bottom:948.133333pt;}
.y18e{bottom:949.413333pt;}
.y149{bottom:954.373333pt;}
.y7{bottom:955.973333pt;}
.y32{bottom:956.293333pt;}
.y134{bottom:957.093333pt;}
.y8c{bottom:958.213333pt;}
.ycf{bottom:959.173333pt;}
.y18d{bottom:967.333333pt;}
.ya1{bottom:967.493333pt;}
.y31{bottom:975.653333pt;}
.y148{bottom:984.293333pt;}
.y18c{bottom:985.253333pt;}
.ya0{bottom:986.853333pt;}
.y5{bottom:987.973333pt;}
.y30{bottom:995.013333pt;}
.y4{bottom:1005.893333pt;}
.y9f{bottom:1012.933333pt;}
.y2f{bottom:1014.373333pt;}
.y3{bottom:1025.600000pt;}
.y2e{bottom:1041.760000pt;}
.y2{bottom:1043.680000pt;}
.y2d{bottom:1061.440000pt;}
.y1{bottom:1061.600000pt;}
.h29{height:15.840000pt;}
.h28{height:17.280000pt;}
.h9{height:17.600000pt;}
.h19{height:17.760000pt;}
.h24{height:17.920000pt;}
.h25{height:17.952000pt;}
.h2d{height:18.560000pt;}
.h8{height:19.840000pt;}
.h2c{height:20.320000pt;}
.h2a{height:20.800000pt;}
.h12{height:21.600000pt;}
.h17{height:23.040000pt;}
.h23{height:23.520000pt;}
.h20{height:26.400000pt;}
.h1f{height:26.560000pt;}
.h6{height:26.643750pt;}
.he{height:30.720000pt;}
.h18{height:33.164062pt;}
.h1a{height:35.680000pt;}
.h34{height:35.840000pt;}
.h1c{height:35.872000pt;}
.h2e{height:36.480000pt;}
.hc{height:38.720000pt;}
.h16{height:40.425000pt;}
.h15{height:40.516875pt;}
.hd{height:40.681250pt;}
.hb{height:41.760000pt;}
.h3{height:42.262500pt;}
.h30{height:42.400000pt;}
.hf{height:42.720000pt;}
.h10{height:43.750000pt;}
.h33{height:44.160000pt;}
.h14{height:44.218750pt;}
.h5{height:46.766875pt;}
.h2{height:47.763750pt;}
.ha{height:48.800000pt;}
.h1b{height:53.600000pt;}
.h35{height:53.632000pt;}
.h1d{height:53.760000pt;}
.h27{height:56.320000pt;}
.h21{height:59.520000pt;}
.h32{height:59.552000pt;}
.h22{height:59.680000pt;}
.h13{height:60.519362pt;}
.h26{height:61.760000pt;}
.h11{height:64.500000pt;}
.h7{height:66.625000pt;}
.h1e{height:71.680000pt;}
.h31{height:72.320000pt;}
.h2f{height:73.632000pt;}
.h2b{height:76.960000pt;}
.h4{height:80.920312pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1e{width:41.920000pt;}
.w5{width:55.520000pt;}
.w14{width:81.600000pt;}
.wb{width:84.992000pt;}
.w6{width:87.520000pt;}
.wa{width:94.880000pt;}
.w3{width:99.520000pt;}
.w4{width:105.120000pt;}
.w21{width:108.320000pt;}
.wd{width:108.640000pt;}
.w1a{width:110.080000pt;}
.w19{width:114.400000pt;}
.w17{width:114.752000pt;}
.w24{width:117.600000pt;}
.we{width:118.400000pt;}
.w1f{width:119.712000pt;}
.w1c{width:125.120000pt;}
.w16{width:125.792000pt;}
.w15{width:125.952000pt;}
.w13{width:170.106667pt;}
.w1d{width:174.946667pt;}
.w10{width:218.560000pt;}
.wf{width:225.920000pt;}
.w11{width:230.720000pt;}
.w18{width:366.493333pt;}
.wc{width:425.026667pt;}
.w7{width:432.320000pt;}
.w23{width:499.520000pt;}
.w20{width:500.000000pt;}
.w25{width:511.813333pt;}
.w22{width:521.093333pt;}
.w1b{width:527.840000pt;}
.w12{width:622.240000pt;}
.w9{width:623.493333pt;}
.w8{width:629.760000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x25{left:7.200000pt;}
.x10{left:9.786667pt;}
.x57{left:10.720000pt;}
.xd{left:14.266667pt;}
.x5b{left:15.360000pt;}
.x55{left:16.640000pt;}
.x4e{left:18.080000pt;}
.xe{left:19.866667pt;}
.x49{left:20.960000pt;}
.x11{left:22.106667pt;}
.x12{left:23.226667pt;}
.x59{left:24.640000pt;}
.x16{left:25.533333pt;}
.x5c{left:27.514667pt;}
.x45{left:28.800000pt;}
.x13{left:30.586667pt;}
.x56{left:31.994667pt;}
.x3b{left:35.066667pt;}
.x17{left:36.893333pt;}
.x4c{left:38.714667pt;}
.x3c{left:40.160000pt;}
.x48{left:43.040000pt;}
.x46{left:44.314667pt;}
.x36{left:45.440000pt;}
.x51{left:46.720000pt;}
.x39{left:48.026667pt;}
.x37{left:49.946667pt;}
.x35{left:51.866667pt;}
.x3a{left:53.600000pt;}
.x38{left:55.546667pt;}
.x4b{left:60.800000pt;}
.x4d{left:62.560000pt;}
.x4a{left:66.080000pt;}
.x47{left:68.160000pt;}
.x52{left:71.840000pt;}
.x4f{left:73.760000pt;}
.x50{left:77.440000pt;}
.x1{left:94.431988pt;}
.x19{left:99.520000pt;}
.x2e{left:107.360000pt;}
.x3{left:108.831988pt;}
.x24{left:114.239988pt;}
.x1a{left:118.431988pt;}
.x22{left:119.679988pt;}
.x2f{left:120.672000pt;}
.x1f{left:122.239988pt;}
.x1e{left:124.799988pt;}
.x28{left:132.960000pt;}
.x14{left:135.200000pt;}
.xc{left:136.320000pt;}
.x23{left:140.666655pt;}
.x1b{left:142.426655pt;}
.xf{left:148.320000pt;}
.x53{left:156.000000pt;}
.x34{left:166.266667pt;}
.x58{left:171.200000pt;}
.x40{left:172.960000pt;}
.x26{left:203.546667pt;}
.x4{left:206.266655pt;}
.x54{left:216.986667pt;}
.x5a{left:226.266667pt;}
.x8{left:232.826655pt;}
.x41{left:233.786667pt;}
.x6{left:239.906655pt;}
.x20{left:241.413322pt;}
.x1c{left:245.373322pt;}
.x21{left:247.493322pt;}
.x2b{left:250.466655pt;}
.x1d{left:251.453322pt;}
.x27{left:288.546667pt;}
.x9{left:289.506655pt;}
.x30{left:290.786667pt;}
.x29{left:319.840000pt;}
.x7{left:331.586655pt;}
.x5{left:333.346655pt;}
.x31{left:372.386667pt;}
.xb{left:377.346655pt;}
.x2{left:389.346655pt;}
.xa{left:396.893322pt;}
.x42{left:408.733333pt;}
.x43{left:450.653333pt;}
.x15{left:464.640000pt;}
.x2c{left:472.480000pt;}
.x2d{left:482.333322pt;}
.x2a{left:490.560000pt;}
.x32{left:498.333333pt;}
.x18{left:585.120000pt;}
.x3d{left:586.240000pt;}
.x3f{left:590.560000pt;}
.x3e{left:596.133322pt;}
.x44{left:620.773333pt;}
.x33{left:624.133333pt;}
}




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