
    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_5e868ba4d129b7a6423201c7.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f5188fe7ab1cb51d1410514e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.973633;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_124c9f2bc930dbc7df6c9c4b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973145;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_b9b73a99abc8a2575b9ede63.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d279b833c986fa7a91e2a971.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ae4c63117f7219729f7a4568.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.972656;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_4dc64157d321781c3bb4cf8b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c19efd4f2519719bda5d63c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_76551fd44afd711c1f447211.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_4895bf240e3d4495ea39e12b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.976562;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls5{letter-spacing:-0.308400px;}
.ls3{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.269400px;}
.ls7{letter-spacing:-0.223800px;}
.ls6{letter-spacing:-0.045360px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.115200px;}
.lsb{letter-spacing:0.120000px;}
.ls8{letter-spacing:0.269400px;}
.ls1{letter-spacing:0.316800px;}
.lsa{letter-spacing:0.720000px;}
.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;}
}
.wsb{word-spacing:-48.600000px;}
.ws5{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.712000px;}
.ws0{word-spacing:-17.352000px;}
.ws1{word-spacing:-16.280640px;}
.ws6{word-spacing:-15.655440px;}
.ws9{word-spacing:-12.329400px;}
.ws7{word-spacing:-12.014640px;}
.ws8{word-spacing:-11.836200px;}
.wsa{word-spacing:-11.790600px;}
.ws2{word-spacing:0.000000px;}
._12{margin-left:-2.890560px;}
._1{margin-left:-1.665600px;}
._0{width:1.738560px;}
._f{width:3.445440px;}
._6{width:4.896000px;}
._7{width:6.336000px;}
._8{width:7.992000px;}
._9{width:8.998080px;}
._d{width:11.088000px;}
._e{width:12.681600px;}
._a{width:14.688000px;}
._b{width:15.839040px;}
._c{width:16.968960px;}
._5{width:23.164800px;}
._4{width:24.273600px;}
._10{width:26.270400px;}
._2{width:31.248000px;}
._3{width:32.328000px;}
._11{width:159.960000px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(79,129,189);}
.fc0{color:rgb(0,72,126);}
.fs5{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y10d{bottom:4.125000px;}
.y146{bottom:4.135500px;}
.ya5{bottom:4.140000px;}
.y13b{bottom:4.320000px;}
.yab{bottom:4.485000px;}
.yb2{bottom:4.489500px;}
.yb3{bottom:4.495500px;}
.y34{bottom:4.500000px;}
.y115{bottom:14.755500px;}
.y111{bottom:14.925000px;}
.y118{bottom:14.940000px;}
.y141{bottom:24.825000px;}
.y145{bottom:24.835500px;}
.y139{bottom:24.840000px;}
.y13d{bottom:24.870000px;}
.y110{bottom:25.185000px;}
.y114{bottom:25.195500px;}
.y33{bottom:25.200000px;}
.yb5{bottom:25.555500px;}
.ybb{bottom:25.920000px;}
.yb{bottom:34.956000px;}
.ya7{bottom:36.345000px;}
.yc0{bottom:36.360000px;}
.ya{bottom:39.276000px;}
.y32{bottom:45.900000px;}
.yba{bottom:46.620000px;}
.yad{bottom:47.149500px;}
.y116{bottom:58.540500px;}
.y9e{bottom:60.696000px;}
.y147{bottom:60.700500px;}
.yb4{bottom:63.760500px;}
.y31{bottom:66.600000px;}
.yeb{bottom:70.416000px;}
.y3e{bottom:75.276000px;}
.y176{bottom:76.536000px;}
.y6f{bottom:77.976000px;}
.y9d{bottom:81.396000px;}
.y144{bottom:82.120500px;}
.yb7{bottom:85.180500px;}
.y30{bottom:87.300000px;}
.yea{bottom:91.116000px;}
.y3d{bottom:95.976000px;}
.y175{bottom:97.236000px;}
.y6e{bottom:98.676000px;}
.y113{bottom:100.660500px;}
.y9c{bottom:102.096000px;}
.yb6{bottom:106.600500px;}
.y2f{bottom:108.000000px;}
.ye9{bottom:111.816000px;}
.y3c{bottom:116.676000px;}
.y174{bottom:117.936000px;}
.y6d{bottom:119.376000px;}
.y9b{bottom:122.796000px;}
.y143{bottom:124.420500px;}
.yac{bottom:128.020500px;}
.y2e{bottom:128.700000px;}
.ye8{bottom:132.516000px;}
.y3b{bottom:137.376000px;}
.y173{bottom:138.636000px;}
.y6c{bottom:140.076000px;}
.y112{bottom:142.780500px;}
.y9a{bottom:143.496000px;}
.y142{bottom:145.840500px;}
.y2d{bottom:149.400000px;}
.yb1{bottom:149.620500px;}
.ye7{bottom:152.850000px;}
.y3a{bottom:158.070000px;}
.y172{bottom:158.970000px;}
.y6b{bottom:160.770000px;}
.y99{bottom:164.190000px;}
.y10f{bottom:164.205000px;}
.y140{bottom:167.265000px;}
.y2c{bottom:170.100000px;}
.yb0{bottom:171.045000px;}
.ye6{bottom:173.910000px;}
.y39{bottom:178.770000px;}
.y171{bottom:179.670000px;}
.y6a{bottom:181.470000px;}
.y98{bottom:184.890000px;}
.y2b{bottom:190.800000px;}
.yaf{bottom:192.465000px;}
.ye5{bottom:194.610000px;}
.y38{bottom:199.470000px;}
.y170{bottom:200.730000px;}
.y69{bottom:202.170000px;}
.y97{bottom:205.590000px;}
.y10e{bottom:206.325000px;}
.y13f{bottom:209.385000px;}
.y2a{bottom:211.500000px;}
.y178{bottom:212.610000px;}
.yae{bottom:213.885000px;}
.ye4{bottom:215.310000px;}
.y37{bottom:220.170000px;}
.y16f{bottom:221.430000px;}
.y68{bottom:222.870000px;}
.y96{bottom:226.290000px;}
.y10c{bottom:227.925000px;}
.y13e{bottom:230.805000px;}
.y29{bottom:232.200000px;}
.ya6{bottom:235.305000px;}
.ye3{bottom:236.010000px;}
.y36{bottom:240.510000px;}
.y16e{bottom:242.130000px;}
.y67{bottom:243.570000px;}
.y177{bottom:244.830000px;}
.y95{bottom:246.990000px;}
.y13c{bottom:252.225000px;}
.y28{bottom:252.900000px;}
.y10b{bottom:253.470000px;}
.ye2{bottom:256.710000px;}
.yaa{bottom:256.725000px;}
.y35{bottom:261.210000px;}
.y16d{bottom:262.830000px;}
.y66{bottom:264.270000px;}
.y94{bottom:267.690000px;}
.y27{bottom:273.600000px;}
.y10a{bottom:274.215000px;}
.ye1{bottom:277.455000px;}
.y20{bottom:277.815000px;}
.ya9{bottom:278.355000px;}
.y16c{bottom:283.575000px;}
.y65{bottom:285.015000px;}
.y93{bottom:288.435000px;}
.y26{bottom:294.330000px;}
.y13a{bottom:294.555000px;}
.y109{bottom:294.915000px;}
.ye0{bottom:298.155000px;}
.ya8{bottom:299.775000px;}
.y16b{bottom:304.275000px;}
.y64{bottom:305.715000px;}
.y92{bottom:309.135000px;}
.y25{bottom:315.030000px;}
.y108{bottom:315.975000px;}
.ydf{bottom:318.495000px;}
.ya4{bottom:321.195000px;}
.y16a{bottom:324.975000px;}
.y63{bottom:326.415000px;}
.y91{bottom:329.835000px;}
.y24{bottom:335.730000px;}
.y107{bottom:336.675000px;}
.y138{bottom:337.395000px;}
.yde{bottom:339.555000px;}
.y169{bottom:345.675000px;}
.ya3{bottom:346.755000px;}
.y62{bottom:347.115000px;}
.y90{bottom:350.535000px;}
.y23{bottom:356.430000px;}
.y106{bottom:357.375000px;}
.ydd{bottom:360.255000px;}
.y168{bottom:366.375000px;}
.ya2{bottom:367.455000px;}
.y61{bottom:367.815000px;}
.y8f{bottom:371.235000px;}
.y22{bottom:377.130000px;}
.y105{bottom:378.075000px;}
.ydc{bottom:380.955000px;}
.y137{bottom:383.655000px;}
.y167{bottom:387.075000px;}
.ya1{bottom:388.155000px;}
.y60{bottom:388.515000px;}
.y8e{bottom:391.935000px;}
.y21{bottom:397.830000px;}
.y104{bottom:398.775000px;}
.ydb{bottom:401.655000px;}
.y136{bottom:404.355000px;}
.y166{bottom:407.775000px;}
.y5f{bottom:409.215000px;}
.y8d{bottom:412.635000px;}
.y103{bottom:419.475000px;}
.yda{bottom:422.355000px;}
.y135{bottom:425.055000px;}
.y165{bottom:428.475000px;}
.y5e{bottom:429.915000px;}
.y8c{bottom:433.335000px;}
.y102{bottom:440.175000px;}
.yd9{bottom:443.055000px;}
.y134{bottom:446.115000px;}
.y164{bottom:449.175000px;}
.y5d{bottom:450.615000px;}
.y8b{bottom:454.035000px;}
.y101{bottom:460.875000px;}
.yd8{bottom:463.755000px;}
.y133{bottom:466.815000px;}
.y163{bottom:469.875000px;}
.y5c{bottom:471.315000px;}
.y8a{bottom:474.735000px;}
.y100{bottom:481.575000px;}
.yd7{bottom:484.455000px;}
.y132{bottom:487.515000px;}
.y162{bottom:490.575000px;}
.y5b{bottom:492.015000px;}
.y89{bottom:495.435000px;}
.yff{bottom:502.275000px;}
.yd6{bottom:504.795000px;}
.y131{bottom:508.215000px;}
.y161{bottom:511.275000px;}
.y5a{bottom:512.715000px;}
.y88{bottom:516.135000px;}
.yfe{bottom:522.975000px;}
.yd5{bottom:525.855000px;}
.y130{bottom:528.915000px;}
.y160{bottom:531.975000px;}
.y59{bottom:533.415000px;}
.y87{bottom:536.835000px;}
.yfd{bottom:543.675000px;}
.yd4{bottom:546.555000px;}
.y12f{bottom:549.615000px;}
.y15f{bottom:552.675000px;}
.y58{bottom:554.115000px;}
.y86{bottom:557.565000px;}
.yfc{bottom:564.405000px;}
.yd3{bottom:567.285000px;}
.y12e{bottom:570.345000px;}
.y15e{bottom:573.405000px;}
.y57{bottom:574.845000px;}
.y85{bottom:578.265000px;}
.yfb{bottom:581.325000px;}
.yd2{bottom:587.985000px;}
.y12d{bottom:591.045000px;}
.y15d{bottom:594.105000px;}
.y56{bottom:595.545000px;}
.y84{bottom:598.965000px;}
.yfa{bottom:602.745000px;}
.yd1{bottom:608.685000px;}
.y12c{bottom:611.745000px;}
.y15c{bottom:614.805000px;}
.y55{bottom:616.245000px;}
.y83{bottom:619.665000px;}
.yf9{bottom:624.165000px;}
.yd0{bottom:629.385000px;}
.y12b{bottom:632.445000px;}
.y15b{bottom:635.505000px;}
.y54{bottom:636.945000px;}
.y82{bottom:640.365000px;}
.yf8{bottom:645.585000px;}
.ycf{bottom:650.085000px;}
.y12a{bottom:653.145000px;}
.y15a{bottom:656.025000px;}
.y53{bottom:657.645000px;}
.y81{bottom:661.065000px;}
.yf7{bottom:667.005000px;}
.yce{bottom:670.425000px;}
.y129{bottom:673.845000px;}
.y159{bottom:676.725000px;}
.y52{bottom:678.345000px;}
.y80{bottom:681.765000px;}
.yf6{bottom:688.425000px;}
.ycd{bottom:691.485000px;}
.y128{bottom:694.545000px;}
.y1f{bottom:695.805000px;}
.y158{bottom:697.425000px;}
.y51{bottom:699.045000px;}
.y7f{bottom:702.465000px;}
.yf5{bottom:710.025000px;}
.ycc{bottom:712.185000px;}
.y127{bottom:715.245000px;}
.y1e{bottom:716.325000px;}
.y157{bottom:718.125000px;}
.ya0{bottom:719.385000px;}
.y50{bottom:719.745000px;}
.y7e{bottom:723.165000px;}
.yf4{bottom:731.445000px;}
.ycb{bottom:732.885000px;}
.y126{bottom:735.945000px;}
.y1d{bottom:736.305000px;}
.y156{bottom:738.825000px;}
.y9f{bottom:740.085000px;}
.y4f{bottom:740.445000px;}
.y7d{bottom:743.865000px;}
.yf3{bottom:752.865000px;}
.yca{bottom:753.585000px;}
.y1c{bottom:755.025000px;}
.y125{bottom:756.645000px;}
.y155{bottom:759.525000px;}
.y4e{bottom:761.145000px;}
.y7c{bottom:764.565000px;}
.y1b{bottom:773.925000px;}
.yc9{bottom:774.285000px;}
.y124{bottom:777.345000px;}
.y154{bottom:780.225000px;}
.y4d{bottom:781.845000px;}
.y7b{bottom:785.265000px;}
.y1a{bottom:792.645000px;}
.yc8{bottom:794.985000px;}
.yf2{bottom:795.705000px;}
.y123{bottom:798.045000px;}
.y153{bottom:800.925000px;}
.y4c{bottom:802.545000px;}
.y7a{bottom:805.965000px;}
.y19{bottom:811.365000px;}
.yc7{bottom:815.685000px;}
.yf1{bottom:817.125000px;}
.y122{bottom:818.745000px;}
.y152{bottom:821.625000px;}
.y4b{bottom:823.245000px;}
.y79{bottom:826.665000px;}
.y18{bottom:830.085000px;}
.yc6{bottom:836.385000px;}
.yf0{bottom:838.770000px;}
.y121{bottom:839.490000px;}
.y151{bottom:842.370000px;}
.y4a{bottom:843.990000px;}
.y78{bottom:847.410000px;}
.y17{bottom:848.850000px;}
.yc5{bottom:857.130000px;}
.y120{bottom:860.190000px;}
.y150{bottom:863.070000px;}
.yef{bottom:864.330000px;}
.y49{bottom:864.690000px;}
.y16{bottom:867.570000px;}
.y77{bottom:868.110000px;}
.yc4{bottom:877.470000px;}
.y11f{bottom:880.890000px;}
.y14f{bottom:883.770000px;}
.yee{bottom:885.030000px;}
.y48{bottom:885.390000px;}
.y15{bottom:886.290000px;}
.y76{bottom:888.810000px;}
.ybf{bottom:894.750000px;}
.y11e{bottom:901.590000px;}
.y14e{bottom:904.470000px;}
.y14{bottom:905.190000px;}
.y47{bottom:906.090000px;}
.y75{bottom:909.510000px;}
.yc3{bottom:916.170000px;}
.y11d{bottom:922.290000px;}
.y13{bottom:923.910000px;}
.y14d{bottom:925.170000px;}
.y46{bottom:926.790000px;}
.y74{bottom:930.210000px;}
.yc2{bottom:937.770000px;}
.y11c{bottom:939.210000px;}
.y12{bottom:942.630000px;}
.y14c{bottom:945.870000px;}
.y45{bottom:947.490000px;}
.y73{bottom:950.550000px;}
.yc1{bottom:959.190000px;}
.y11b{bottom:960.630000px;}
.y11{bottom:961.350000px;}
.y14b{bottom:966.570000px;}
.y44{bottom:968.190000px;}
.y72{bottom:971.250000px;}
.y10{bottom:980.070000px;}
.yb9{bottom:980.610000px;}
.y11a{bottom:982.050000px;}
.y14a{bottom:987.270000px;}
.yed{bottom:988.530000px;}
.y43{bottom:988.890000px;}
.y71{bottom:991.770000px;}
.yf{bottom:998.790000px;}
.ybe{bottom:1002.030000px;}
.y149{bottom:1007.970000px;}
.yec{bottom:1009.230000px;}
.y42{bottom:1009.590000px;}
.y70{bottom:1010.850000px;}
.ybd{bottom:1023.450000px;}
.y119{bottom:1024.170000px;}
.y148{bottom:1028.670000px;}
.ye{bottom:1030.110000px;}
.y41{bottom:1030.290000px;}
.ybc{bottom:1044.870000px;}
.y117{bottom:1045.590000px;}
.yd{bottom:1050.810000px;}
.y40{bottom:1050.990000px;}
.yb8{bottom:1066.290000px;}
.yc{bottom:1071.510000px;}
.y3f{bottom:1071.690000px;}
.y9{bottom:1088.070000px;}
.y8{bottom:1093.650000px;}
.y7{bottom:1116.150000px;}
.y6{bottom:1133.280000px;}
.y5{bottom:1150.380000px;}
.y4{bottom:1167.300000px;}
.y3{bottom:1184.940000px;}
.y2{bottom:1207.620000px;}
.y1{bottom:1238.580000px;}
.h1e{height:20.505000px;}
.h10{height:20.685000px;}
.h14{height:20.695500px;}
.h16{height:20.700000px;}
.h12{height:20.721000px;}
.h19{height:41.385000px;}
.h1a{height:41.395500px;}
.h1b{height:41.400000px;}
.h1f{height:41.421000px;}
.h5{height:45.228516px;}
.hb{height:50.100469px;}
.h7{height:50.132812px;}
.h9{height:50.800781px;}
.h8{height:54.457031px;}
.h4{height:54.492188px;}
.h15{height:63.535500px;}
.h6{height:63.755859px;}
.hf{height:64.546875px;}
.he{height:65.010937px;}
.h1c{height:70.628906px;}
.hd{height:70.664062px;}
.ha{height:72.562500px;}
.h1d{height:80.464922px;}
.h3{height:81.738281px;}
.h17{height:84.960000px;}
.h18{height:85.140000px;}
.h11{height:85.161000px;}
.h2{height:105.996094px;}
.h13{height:106.555500px;}
.hc{height:414.030000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.wd{width:69.285000px;}
.we{width:75.765000px;}
.wf{width:81.741000px;}
.w14{width:88.041000px;}
.w13{width:88.545000px;}
.w8{width:88.560000px;}
.wa{width:94.665000px;}
.w5{width:99.705000px;}
.w9{width:107.676000px;}
.wb{width:113.421000px;}
.w6{width:117.561000px;}
.w12{width:145.836000px;}
.w4{width:217.830000px;}
.w3{width:223.950000px;}
.w7{width:253.830000px;}
.w11{width:336.630000px;}
.wc{width:432.255000px;}
.w10{width:661.245000px;}
.w2{width:696.165000px;}
.w1{width:893.250000px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x8{left:7.740000px;}
.x17{left:11.865000px;}
.x13{left:14.220000px;}
.x20{left:19.830000px;}
.x1e{left:21.765000px;}
.x21{left:26.625000px;}
.x18{left:28.440000px;}
.x1a{left:31.665000px;}
.x1b{left:32.940000px;}
.x10{left:36.345000px;}
.x11{left:38.505000px;}
.xe{left:40.845000px;}
.xf{left:43.050000px;}
.x19{left:45.390000px;}
.xb{left:46.785000px;}
.xd{left:49.890000px;}
.x7{left:118.296000px;}
.x1{left:126.036000px;}
.x4{left:136.656000px;}
.x25{left:180.030000px;}
.x5{left:194.610000px;}
.x9{left:342.975000px;}
.x12{left:372.855000px;}
.x6{left:439.275000px;}
.x2{left:440.715000px;}
.x3{left:448.995000px;}
.x22{left:455.655000px;}
.x14{left:462.135000px;}
.x1c{left:551.280000px;}
.xa{left:561.540000px;}
.x15{left:570.720000px;}
.x23{left:602.220000px;}
.x1d{left:621.300000px;}
.xc{left:661.980000px;}
.x16{left:666.120000px;}
.x24{left:691.500000px;}
.x1f{left:697.800000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls5{letter-spacing:-0.274133pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.239467pt;}
.ls7{letter-spacing:-0.198933pt;}
.ls6{letter-spacing:-0.040320pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.102400pt;}
.lsb{letter-spacing:0.106667pt;}
.ls8{letter-spacing:0.239467pt;}
.ls1{letter-spacing:0.281600pt;}
.lsa{letter-spacing:0.640000pt;}
.wsb{word-spacing:-43.200000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws0{word-spacing:-15.424000pt;}
.ws1{word-spacing:-14.471680pt;}
.ws6{word-spacing:-13.915947pt;}
.ws9{word-spacing:-10.959467pt;}
.ws7{word-spacing:-10.679680pt;}
.ws8{word-spacing:-10.521067pt;}
.wsa{word-spacing:-10.480533pt;}
.ws2{word-spacing:0.000000pt;}
._12{margin-left:-2.569387pt;}
._1{margin-left:-1.480533pt;}
._0{width:1.545387pt;}
._f{width:3.062613pt;}
._6{width:4.352000pt;}
._7{width:5.632000pt;}
._8{width:7.104000pt;}
._9{width:7.998293pt;}
._d{width:9.856000pt;}
._e{width:11.272533pt;}
._a{width:13.056000pt;}
._b{width:14.079147pt;}
._c{width:15.083520pt;}
._5{width:20.590933pt;}
._4{width:21.576533pt;}
._10{width:23.351467pt;}
._2{width:27.776000pt;}
._3{width:28.736000pt;}
._11{width:142.186667pt;}
.fs5{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y10d{bottom:3.666667pt;}
.y146{bottom:3.676000pt;}
.ya5{bottom:3.680000pt;}
.y13b{bottom:3.840000pt;}
.yab{bottom:3.986667pt;}
.yb2{bottom:3.990667pt;}
.yb3{bottom:3.996000pt;}
.y34{bottom:4.000000pt;}
.y115{bottom:13.116000pt;}
.y111{bottom:13.266667pt;}
.y118{bottom:13.280000pt;}
.y141{bottom:22.066667pt;}
.y145{bottom:22.076000pt;}
.y139{bottom:22.080000pt;}
.y13d{bottom:22.106667pt;}
.y110{bottom:22.386667pt;}
.y114{bottom:22.396000pt;}
.y33{bottom:22.400000pt;}
.yb5{bottom:22.716000pt;}
.ybb{bottom:23.040000pt;}
.yb{bottom:31.072000pt;}
.ya7{bottom:32.306667pt;}
.yc0{bottom:32.320000pt;}
.ya{bottom:34.912000pt;}
.y32{bottom:40.800000pt;}
.yba{bottom:41.440000pt;}
.yad{bottom:41.910667pt;}
.y116{bottom:52.036000pt;}
.y9e{bottom:53.952000pt;}
.y147{bottom:53.956000pt;}
.yb4{bottom:56.676000pt;}
.y31{bottom:59.200000pt;}
.yeb{bottom:62.592000pt;}
.y3e{bottom:66.912000pt;}
.y176{bottom:68.032000pt;}
.y6f{bottom:69.312000pt;}
.y9d{bottom:72.352000pt;}
.y144{bottom:72.996000pt;}
.yb7{bottom:75.716000pt;}
.y30{bottom:77.600000pt;}
.yea{bottom:80.992000pt;}
.y3d{bottom:85.312000pt;}
.y175{bottom:86.432000pt;}
.y6e{bottom:87.712000pt;}
.y113{bottom:89.476000pt;}
.y9c{bottom:90.752000pt;}
.yb6{bottom:94.756000pt;}
.y2f{bottom:96.000000pt;}
.ye9{bottom:99.392000pt;}
.y3c{bottom:103.712000pt;}
.y174{bottom:104.832000pt;}
.y6d{bottom:106.112000pt;}
.y9b{bottom:109.152000pt;}
.y143{bottom:110.596000pt;}
.yac{bottom:113.796000pt;}
.y2e{bottom:114.400000pt;}
.ye8{bottom:117.792000pt;}
.y3b{bottom:122.112000pt;}
.y173{bottom:123.232000pt;}
.y6c{bottom:124.512000pt;}
.y112{bottom:126.916000pt;}
.y9a{bottom:127.552000pt;}
.y142{bottom:129.636000pt;}
.y2d{bottom:132.800000pt;}
.yb1{bottom:132.996000pt;}
.ye7{bottom:135.866667pt;}
.y3a{bottom:140.506667pt;}
.y172{bottom:141.306667pt;}
.y6b{bottom:142.906667pt;}
.y99{bottom:145.946667pt;}
.y10f{bottom:145.960000pt;}
.y140{bottom:148.680000pt;}
.y2c{bottom:151.200000pt;}
.yb0{bottom:152.040000pt;}
.ye6{bottom:154.586667pt;}
.y39{bottom:158.906667pt;}
.y171{bottom:159.706667pt;}
.y6a{bottom:161.306667pt;}
.y98{bottom:164.346667pt;}
.y2b{bottom:169.600000pt;}
.yaf{bottom:171.080000pt;}
.ye5{bottom:172.986667pt;}
.y38{bottom:177.306667pt;}
.y170{bottom:178.426667pt;}
.y69{bottom:179.706667pt;}
.y97{bottom:182.746667pt;}
.y10e{bottom:183.400000pt;}
.y13f{bottom:186.120000pt;}
.y2a{bottom:188.000000pt;}
.y178{bottom:188.986667pt;}
.yae{bottom:190.120000pt;}
.ye4{bottom:191.386667pt;}
.y37{bottom:195.706667pt;}
.y16f{bottom:196.826667pt;}
.y68{bottom:198.106667pt;}
.y96{bottom:201.146667pt;}
.y10c{bottom:202.600000pt;}
.y13e{bottom:205.160000pt;}
.y29{bottom:206.400000pt;}
.ya6{bottom:209.160000pt;}
.ye3{bottom:209.786667pt;}
.y36{bottom:213.786667pt;}
.y16e{bottom:215.226667pt;}
.y67{bottom:216.506667pt;}
.y177{bottom:217.626667pt;}
.y95{bottom:219.546667pt;}
.y13c{bottom:224.200000pt;}
.y28{bottom:224.800000pt;}
.y10b{bottom:225.306667pt;}
.ye2{bottom:228.186667pt;}
.yaa{bottom:228.200000pt;}
.y35{bottom:232.186667pt;}
.y16d{bottom:233.626667pt;}
.y66{bottom:234.906667pt;}
.y94{bottom:237.946667pt;}
.y27{bottom:243.200000pt;}
.y10a{bottom:243.746667pt;}
.ye1{bottom:246.626667pt;}
.y20{bottom:246.946667pt;}
.ya9{bottom:247.426667pt;}
.y16c{bottom:252.066667pt;}
.y65{bottom:253.346667pt;}
.y93{bottom:256.386667pt;}
.y26{bottom:261.626667pt;}
.y13a{bottom:261.826667pt;}
.y109{bottom:262.146667pt;}
.ye0{bottom:265.026667pt;}
.ya8{bottom:266.466667pt;}
.y16b{bottom:270.466667pt;}
.y64{bottom:271.746667pt;}
.y92{bottom:274.786667pt;}
.y25{bottom:280.026667pt;}
.y108{bottom:280.866667pt;}
.ydf{bottom:283.106667pt;}
.ya4{bottom:285.506667pt;}
.y16a{bottom:288.866667pt;}
.y63{bottom:290.146667pt;}
.y91{bottom:293.186667pt;}
.y24{bottom:298.426667pt;}
.y107{bottom:299.266667pt;}
.y138{bottom:299.906667pt;}
.yde{bottom:301.826667pt;}
.y169{bottom:307.266667pt;}
.ya3{bottom:308.226667pt;}
.y62{bottom:308.546667pt;}
.y90{bottom:311.586667pt;}
.y23{bottom:316.826667pt;}
.y106{bottom:317.666667pt;}
.ydd{bottom:320.226667pt;}
.y168{bottom:325.666667pt;}
.ya2{bottom:326.626667pt;}
.y61{bottom:326.946667pt;}
.y8f{bottom:329.986667pt;}
.y22{bottom:335.226667pt;}
.y105{bottom:336.066667pt;}
.ydc{bottom:338.626667pt;}
.y137{bottom:341.026667pt;}
.y167{bottom:344.066667pt;}
.ya1{bottom:345.026667pt;}
.y60{bottom:345.346667pt;}
.y8e{bottom:348.386667pt;}
.y21{bottom:353.626667pt;}
.y104{bottom:354.466667pt;}
.ydb{bottom:357.026667pt;}
.y136{bottom:359.426667pt;}
.y166{bottom:362.466667pt;}
.y5f{bottom:363.746667pt;}
.y8d{bottom:366.786667pt;}
.y103{bottom:372.866667pt;}
.yda{bottom:375.426667pt;}
.y135{bottom:377.826667pt;}
.y165{bottom:380.866667pt;}
.y5e{bottom:382.146667pt;}
.y8c{bottom:385.186667pt;}
.y102{bottom:391.266667pt;}
.yd9{bottom:393.826667pt;}
.y134{bottom:396.546667pt;}
.y164{bottom:399.266667pt;}
.y5d{bottom:400.546667pt;}
.y8b{bottom:403.586667pt;}
.y101{bottom:409.666667pt;}
.yd8{bottom:412.226667pt;}
.y133{bottom:414.946667pt;}
.y163{bottom:417.666667pt;}
.y5c{bottom:418.946667pt;}
.y8a{bottom:421.986667pt;}
.y100{bottom:428.066667pt;}
.yd7{bottom:430.626667pt;}
.y132{bottom:433.346667pt;}
.y162{bottom:436.066667pt;}
.y5b{bottom:437.346667pt;}
.y89{bottom:440.386667pt;}
.yff{bottom:446.466667pt;}
.yd6{bottom:448.706667pt;}
.y131{bottom:451.746667pt;}
.y161{bottom:454.466667pt;}
.y5a{bottom:455.746667pt;}
.y88{bottom:458.786667pt;}
.yfe{bottom:464.866667pt;}
.yd5{bottom:467.426667pt;}
.y130{bottom:470.146667pt;}
.y160{bottom:472.866667pt;}
.y59{bottom:474.146667pt;}
.y87{bottom:477.186667pt;}
.yfd{bottom:483.266667pt;}
.yd4{bottom:485.826667pt;}
.y12f{bottom:488.546667pt;}
.y15f{bottom:491.266667pt;}
.y58{bottom:492.546667pt;}
.y86{bottom:495.613333pt;}
.yfc{bottom:501.693333pt;}
.yd3{bottom:504.253333pt;}
.y12e{bottom:506.973333pt;}
.y15e{bottom:509.693333pt;}
.y57{bottom:510.973333pt;}
.y85{bottom:514.013333pt;}
.yfb{bottom:516.733333pt;}
.yd2{bottom:522.653333pt;}
.y12d{bottom:525.373333pt;}
.y15d{bottom:528.093333pt;}
.y56{bottom:529.373333pt;}
.y84{bottom:532.413333pt;}
.yfa{bottom:535.773333pt;}
.yd1{bottom:541.053333pt;}
.y12c{bottom:543.773333pt;}
.y15c{bottom:546.493333pt;}
.y55{bottom:547.773333pt;}
.y83{bottom:550.813333pt;}
.yf9{bottom:554.813333pt;}
.yd0{bottom:559.453333pt;}
.y12b{bottom:562.173333pt;}
.y15b{bottom:564.893333pt;}
.y54{bottom:566.173333pt;}
.y82{bottom:569.213333pt;}
.yf8{bottom:573.853333pt;}
.ycf{bottom:577.853333pt;}
.y12a{bottom:580.573333pt;}
.y15a{bottom:583.133333pt;}
.y53{bottom:584.573333pt;}
.y81{bottom:587.613333pt;}
.yf7{bottom:592.893333pt;}
.yce{bottom:595.933333pt;}
.y129{bottom:598.973333pt;}
.y159{bottom:601.533333pt;}
.y52{bottom:602.973333pt;}
.y80{bottom:606.013333pt;}
.yf6{bottom:611.933333pt;}
.ycd{bottom:614.653333pt;}
.y128{bottom:617.373333pt;}
.y1f{bottom:618.493333pt;}
.y158{bottom:619.933333pt;}
.y51{bottom:621.373333pt;}
.y7f{bottom:624.413333pt;}
.yf5{bottom:631.133333pt;}
.ycc{bottom:633.053333pt;}
.y127{bottom:635.773333pt;}
.y1e{bottom:636.733333pt;}
.y157{bottom:638.333333pt;}
.ya0{bottom:639.453333pt;}
.y50{bottom:639.773333pt;}
.y7e{bottom:642.813333pt;}
.yf4{bottom:650.173333pt;}
.ycb{bottom:651.453333pt;}
.y126{bottom:654.173333pt;}
.y1d{bottom:654.493333pt;}
.y156{bottom:656.733333pt;}
.y9f{bottom:657.853333pt;}
.y4f{bottom:658.173333pt;}
.y7d{bottom:661.213333pt;}
.yf3{bottom:669.213333pt;}
.yca{bottom:669.853333pt;}
.y1c{bottom:671.133333pt;}
.y125{bottom:672.573333pt;}
.y155{bottom:675.133333pt;}
.y4e{bottom:676.573333pt;}
.y7c{bottom:679.613333pt;}
.y1b{bottom:687.933333pt;}
.yc9{bottom:688.253333pt;}
.y124{bottom:690.973333pt;}
.y154{bottom:693.533333pt;}
.y4d{bottom:694.973333pt;}
.y7b{bottom:698.013333pt;}
.y1a{bottom:704.573333pt;}
.yc8{bottom:706.653333pt;}
.yf2{bottom:707.293333pt;}
.y123{bottom:709.373333pt;}
.y153{bottom:711.933333pt;}
.y4c{bottom:713.373333pt;}
.y7a{bottom:716.413333pt;}
.y19{bottom:721.213333pt;}
.yc7{bottom:725.053333pt;}
.yf1{bottom:726.333333pt;}
.y122{bottom:727.773333pt;}
.y152{bottom:730.333333pt;}
.y4b{bottom:731.773333pt;}
.y79{bottom:734.813333pt;}
.y18{bottom:737.853333pt;}
.yc6{bottom:743.453333pt;}
.yf0{bottom:745.573333pt;}
.y121{bottom:746.213333pt;}
.y151{bottom:748.773333pt;}
.y4a{bottom:750.213333pt;}
.y78{bottom:753.253333pt;}
.y17{bottom:754.533333pt;}
.yc5{bottom:761.893333pt;}
.y120{bottom:764.613333pt;}
.y150{bottom:767.173333pt;}
.yef{bottom:768.293333pt;}
.y49{bottom:768.613333pt;}
.y16{bottom:771.173333pt;}
.y77{bottom:771.653333pt;}
.yc4{bottom:779.973333pt;}
.y11f{bottom:783.013333pt;}
.y14f{bottom:785.573333pt;}
.yee{bottom:786.693333pt;}
.y48{bottom:787.013333pt;}
.y15{bottom:787.813333pt;}
.y76{bottom:790.053333pt;}
.ybf{bottom:795.333333pt;}
.y11e{bottom:801.413333pt;}
.y14e{bottom:803.973333pt;}
.y14{bottom:804.613333pt;}
.y47{bottom:805.413333pt;}
.y75{bottom:808.453333pt;}
.yc3{bottom:814.373333pt;}
.y11d{bottom:819.813333pt;}
.y13{bottom:821.253333pt;}
.y14d{bottom:822.373333pt;}
.y46{bottom:823.813333pt;}
.y74{bottom:826.853333pt;}
.yc2{bottom:833.573333pt;}
.y11c{bottom:834.853333pt;}
.y12{bottom:837.893333pt;}
.y14c{bottom:840.773333pt;}
.y45{bottom:842.213333pt;}
.y73{bottom:844.933333pt;}
.yc1{bottom:852.613333pt;}
.y11b{bottom:853.893333pt;}
.y11{bottom:854.533333pt;}
.y14b{bottom:859.173333pt;}
.y44{bottom:860.613333pt;}
.y72{bottom:863.333333pt;}
.y10{bottom:871.173333pt;}
.yb9{bottom:871.653333pt;}
.y11a{bottom:872.933333pt;}
.y14a{bottom:877.573333pt;}
.yed{bottom:878.693333pt;}
.y43{bottom:879.013333pt;}
.y71{bottom:881.573333pt;}
.yf{bottom:887.813333pt;}
.ybe{bottom:890.693333pt;}
.y149{bottom:895.973333pt;}
.yec{bottom:897.093333pt;}
.y42{bottom:897.413333pt;}
.y70{bottom:898.533333pt;}
.ybd{bottom:909.733333pt;}
.y119{bottom:910.373333pt;}
.y148{bottom:914.373333pt;}
.ye{bottom:915.653333pt;}
.y41{bottom:915.813333pt;}
.ybc{bottom:928.773333pt;}
.y117{bottom:929.413333pt;}
.yd{bottom:934.053333pt;}
.y40{bottom:934.213333pt;}
.yb8{bottom:947.813333pt;}
.yc{bottom:952.453333pt;}
.y3f{bottom:952.613333pt;}
.y9{bottom:967.173333pt;}
.y8{bottom:972.133333pt;}
.y7{bottom:992.133333pt;}
.y6{bottom:1007.360000pt;}
.y5{bottom:1022.560000pt;}
.y4{bottom:1037.600000pt;}
.y3{bottom:1053.280000pt;}
.y2{bottom:1073.440000pt;}
.y1{bottom:1100.960000pt;}
.h1e{height:18.226667pt;}
.h10{height:18.386667pt;}
.h14{height:18.396000pt;}
.h16{height:18.400000pt;}
.h12{height:18.418667pt;}
.h19{height:36.786667pt;}
.h1a{height:36.796000pt;}
.h1b{height:36.800000pt;}
.h1f{height:36.818667pt;}
.h5{height:40.203125pt;}
.hb{height:44.533750pt;}
.h7{height:44.562500pt;}
.h9{height:45.156250pt;}
.h8{height:48.406250pt;}
.h4{height:48.437500pt;}
.h15{height:56.476000pt;}
.h6{height:56.671875pt;}
.hf{height:57.375000pt;}
.he{height:57.787500pt;}
.h1c{height:62.781250pt;}
.hd{height:62.812500pt;}
.ha{height:64.500000pt;}
.h1d{height:71.524375pt;}
.h3{height:72.656250pt;}
.h17{height:75.520000pt;}
.h18{height:75.680000pt;}
.h11{height:75.698667pt;}
.h2{height:94.218750pt;}
.h13{height:94.716000pt;}
.hc{height:368.026667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.wd{width:61.586667pt;}
.we{width:67.346667pt;}
.wf{width:72.658667pt;}
.w14{width:78.258667pt;}
.w13{width:78.706667pt;}
.w8{width:78.720000pt;}
.wa{width:84.146667pt;}
.w5{width:88.626667pt;}
.w9{width:95.712000pt;}
.wb{width:100.818667pt;}
.w6{width:104.498667pt;}
.w12{width:129.632000pt;}
.w4{width:193.626667pt;}
.w3{width:199.066667pt;}
.w7{width:225.626667pt;}
.w11{width:299.226667pt;}
.wc{width:384.226667pt;}
.w10{width:587.773333pt;}
.w2{width:618.813333pt;}
.w1{width:794.000000pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x8{left:6.880000pt;}
.x17{left:10.546667pt;}
.x13{left:12.640000pt;}
.x20{left:17.626667pt;}
.x1e{left:19.346667pt;}
.x21{left:23.666667pt;}
.x18{left:25.280000pt;}
.x1a{left:28.146667pt;}
.x1b{left:29.280000pt;}
.x10{left:32.306667pt;}
.x11{left:34.226667pt;}
.xe{left:36.306667pt;}
.xf{left:38.266667pt;}
.x19{left:40.346667pt;}
.xb{left:41.586667pt;}
.xd{left:44.346667pt;}
.x7{left:105.152000pt;}
.x1{left:112.032000pt;}
.x4{left:121.472000pt;}
.x25{left:160.026667pt;}
.x5{left:172.986667pt;}
.x9{left:304.866667pt;}
.x12{left:331.426667pt;}
.x6{left:390.466667pt;}
.x2{left:391.746667pt;}
.x3{left:399.106667pt;}
.x22{left:405.026667pt;}
.x14{left:410.786667pt;}
.x1c{left:490.026667pt;}
.xa{left:499.146667pt;}
.x15{left:507.306667pt;}
.x23{left:535.306667pt;}
.x1d{left:552.266667pt;}
.xc{left:588.426667pt;}
.x16{left:592.106667pt;}
.x24{left:614.666667pt;}
.x1f{left:620.266667pt;}
}




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