
    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_2c03270a55b800892f64dc6a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_e90f05ce63f4bfebc21608b4.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_bdb9c0ffcef78d8e087fcec1.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_536779476c060e783af61719.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_99ee3b0d963512f2fe928b08.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970703;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_f973c883c4398fae77df1747.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.747559;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_65d685ed5465380a8d3ce86b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.970703;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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;}
.ls7{letter-spacing:-0.252000px;}
.ls6{letter-spacing:-0.106800px;}
.ls4{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:21.546720px;}
.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;}
}
.ws1{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.ws5{word-spacing:-14.833200px;}
.ws6{word-spacing:-13.860000px;}
.ws2{word-spacing:-13.500000px;}
.ws3{word-spacing:0.000000px;}
._1d{margin-left:-8.197440px;}
._1a{margin-left:-6.750000px;}
._19{margin-left:-5.130000px;}
._1c{margin-left:-4.104000px;}
._1b{margin-left:-2.862000px;}
._1{margin-left:-1.321920px;}
._0{width:1.322400px;}
._7{width:2.449440px;}
._2{width:4.245600px;}
._6{width:5.746080px;}
._5{width:6.752880px;}
._11{width:8.127360px;}
._b{width:9.860400px;}
._9{width:11.345280px;}
._8{width:12.908160px;}
._13{width:13.923120px;}
._17{width:16.163280px;}
._f{width:17.210880px;}
._c{width:18.585360px;}
._10{width:19.765200px;}
._e{width:21.087120px;}
._d{width:22.111200px;}
._12{width:23.119440px;}
._14{width:24.493920px;}
._15{width:25.525200px;}
._16{width:26.951760px;}
._a{width:28.199040px;}
._18{width:29.334480px;}
._4{width:85.656000px;}
._3{width:687.306000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:30.240000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yf9{bottom:4.500000px;}
.y77{bottom:4.680000px;}
.y138{bottom:4.860000px;}
.y15a{bottom:5.220000px;}
.yce{bottom:5.400000px;}
.y136{bottom:6.120000px;}
.ya2{bottom:7.380000px;}
.y134{bottom:8.100000px;}
.y7e{bottom:9.180000px;}
.ycc{bottom:9.540000px;}
.yca{bottom:9.585000px;}
.yad{bottom:10.080000px;}
.y13b{bottom:10.260000px;}
.yc8{bottom:10.800000px;}
.yab{bottom:11.340000px;}
.ya5{bottom:11.700000px;}
.ya7{bottom:12.240000px;}
.y79{bottom:14.040000px;}
.yc6{bottom:17.640000px;}
.y16c{bottom:18.000000px;}
.y7c{bottom:18.540000px;}
.y7a{bottom:23.220000px;}
.y14d{bottom:23.400000px;}
.y152{bottom:23.445000px;}
.y80{bottom:27.720000px;}
.y7d{bottom:27.900000px;}
.yaa{bottom:29.880000px;}
.ya4{bottom:30.420000px;}
.yb{bottom:36.720000px;}
.y159{bottom:41.220000px;}
.y151{bottom:41.265000px;}
.y164{bottom:41.394000px;}
.y14c{bottom:41.400000px;}
.y169{bottom:41.445000px;}
.ya{bottom:55.260000px;}
.y158{bottom:59.220000px;}
.y150{bottom:59.265000px;}
.y163{bottom:59.394000px;}
.y155{bottom:59.400000px;}
.y170{bottom:59.430000px;}
.y168{bottom:59.445000px;}
.y9{bottom:70.776000px;}
.y16b{bottom:77.220000px;}
.y14f{bottom:77.265000px;}
.y162{bottom:77.394000px;}
.y154{bottom:77.400000px;}
.y16f{bottom:77.430000px;}
.y15c{bottom:95.220000px;}
.y12d{bottom:113.976000px;}
.yf7{bottom:115.956000px;}
.y75{bottom:120.456000px;}
.y184{bottom:124.056000px;}
.ya0{bottom:124.596000px;}
.y3f{bottom:125.316000px;}
.y161{bottom:125.496000px;}
.y12c{bottom:131.256000px;}
.yf6{bottom:133.236000px;}
.y74{bottom:137.736000px;}
.yc4{bottom:139.896000px;}
.y183{bottom:141.336000px;}
.y9f{bottom:141.876000px;}
.y3e{bottom:142.596000px;}
.y12b{bottom:148.536000px;}
.yf5{bottom:150.330000px;}
.y73{bottom:155.010000px;}
.yc3{bottom:157.170000px;}
.y182{bottom:158.610000px;}
.y9e{bottom:159.150000px;}
.y3d{bottom:159.870000px;}
.y12a{bottom:165.810000px;}
.yf4{bottom:167.610000px;}
.y72{bottom:172.290000px;}
.yc2{bottom:174.450000px;}
.y181{bottom:175.890000px;}
.y9d{bottom:176.430000px;}
.y3c{bottom:176.970000px;}
.y129{bottom:182.910000px;}
.yf3{bottom:184.890000px;}
.y71{bottom:189.570000px;}
.yc1{bottom:191.730000px;}
.y180{bottom:192.990000px;}
.y9c{bottom:193.710000px;}
.y3b{bottom:194.250000px;}
.y128{bottom:200.190000px;}
.yf2{bottom:202.170000px;}
.y70{bottom:206.670000px;}
.yc0{bottom:209.010000px;}
.y17f{bottom:210.270000px;}
.y9b{bottom:210.810000px;}
.y3a{bottom:211.530000px;}
.y160{bottom:216.210000px;}
.y127{bottom:217.470000px;}
.yf1{bottom:219.450000px;}
.y6f{bottom:223.950000px;}
.ybf{bottom:226.110000px;}
.y17e{bottom:227.550000px;}
.y9a{bottom:228.090000px;}
.y39{bottom:228.810000px;}
.y126{bottom:234.750000px;}
.yf0{bottom:236.730000px;}
.y6e{bottom:241.230000px;}
.ybe{bottom:243.390000px;}
.y17d{bottom:244.830000px;}
.y99{bottom:245.370000px;}
.y38{bottom:246.090000px;}
.y125{bottom:252.030000px;}
.yef{bottom:253.830000px;}
.y6d{bottom:258.510000px;}
.ybd{bottom:260.670000px;}
.y17c{bottom:262.110000px;}
.y98{bottom:262.650000px;}
.y37{bottom:263.190000px;}
.y14a{bottom:263.370000px;}
.y124{bottom:269.310000px;}
.yee{bottom:271.110000px;}
.ybc{bottom:274.710000px;}
.y6c{bottom:275.790000px;}
.y17b{bottom:279.210000px;}
.y97{bottom:279.930000px;}
.y36{bottom:280.470000px;}
.y123{bottom:286.410000px;}
.yed{bottom:288.390000px;}
.y15f{bottom:288.930000px;}
.y6b{bottom:292.890000px;}
.y17a{bottom:296.490000px;}
.y96{bottom:297.030000px;}
.y35{bottom:297.750000px;}
.y122{bottom:303.690000px;}
.yec{bottom:305.670000px;}
.y6a{bottom:310.170000px;}
.y179{bottom:313.770000px;}
.y95{bottom:314.310000px;}
.y34{bottom:315.030000px;}
.y121{bottom:320.970000px;}
.yeb{bottom:322.950000px;}
.y69{bottom:327.450000px;}
.y178{bottom:331.050000px;}
.y94{bottom:331.590000px;}
.y33{bottom:332.310000px;}
.y120{bottom:338.295000px;}
.yea{bottom:340.095000px;}
.y68{bottom:344.775000px;}
.y177{bottom:348.375000px;}
.y93{bottom:348.915000px;}
.y32{bottom:349.635000px;}
.y11f{bottom:355.575000px;}
.ye9{bottom:357.375000px;}
.y15e{bottom:361.695000px;}
.y67{bottom:362.055000px;}
.y176{bottom:365.655000px;}
.y92{bottom:366.195000px;}
.y31{bottom:366.735000px;}
.y149{bottom:366.915000px;}
.y11e{bottom:372.855000px;}
.ye8{bottom:374.655000px;}
.y66{bottom:379.335000px;}
.y175{bottom:382.755000px;}
.y91{bottom:383.475000px;}
.y30{bottom:384.015000px;}
.y11d{bottom:389.955000px;}
.ye7{bottom:391.935000px;}
.y65{bottom:396.435000px;}
.y174{bottom:400.035000px;}
.y90{bottom:400.575000px;}
.y2f{bottom:401.295000px;}
.y11c{bottom:407.235000px;}
.ye6{bottom:409.215000px;}
.y64{bottom:413.715000px;}
.y173{bottom:417.315000px;}
.y8f{bottom:417.855000px;}
.y2e{bottom:418.575000px;}
.y11b{bottom:424.515000px;}
.ye5{bottom:426.495000px;}
.y63{bottom:430.995000px;}
.y15d{bottom:434.235000px;}
.y172{bottom:434.595000px;}
.y8e{bottom:435.135000px;}
.y2d{bottom:435.855000px;}
.y11a{bottom:441.795000px;}
.ye4{bottom:443.595000px;}
.y62{bottom:448.275000px;}
.y171{bottom:449.355000px;}
.y8d{bottom:452.415000px;}
.y2c{bottom:453.135000px;}
.y119{bottom:459.075000px;}
.ye3{bottom:460.875000px;}
.y61{bottom:465.555000px;}
.y8c{bottom:469.695000px;}
.y2b{bottom:470.235000px;}
.y118{bottom:476.175000px;}
.ye2{bottom:478.155000px;}
.y60{bottom:482.835000px;}
.y8b{bottom:486.975000px;}
.y2a{bottom:487.515000px;}
.y117{bottom:493.455000px;}
.ye1{bottom:495.435000px;}
.y5f{bottom:499.935000px;}
.y8a{bottom:504.075000px;}
.y148{bottom:504.795000px;}
.y15b{bottom:506.955000px;}
.y29{bottom:508.755000px;}
.y116{bottom:510.735000px;}
.ye0{bottom:512.715000px;}
.y5e{bottom:517.215000px;}
.y89{bottom:521.355000px;}
.y147{bottom:522.075000px;}
.y28{bottom:527.295000px;}
.y115{bottom:528.015000px;}
.ydf{bottom:529.995000px;}
.y5d{bottom:534.495000px;}
.y88{bottom:538.635000px;}
.y146{bottom:539.355000px;}
.y114{bottom:545.295000px;}
.y27{bottom:546.015000px;}
.yde{bottom:547.095000px;}
.y5c{bottom:551.775000px;}
.y87{bottom:555.915000px;}
.y145{bottom:556.635000px;}
.y16e{bottom:557.895000px;}
.y113{bottom:562.575000px;}
.ydd{bottom:564.375000px;}
.y26{bottom:564.555000px;}
.y5b{bottom:569.055000px;}
.y86{bottom:573.195000px;}
.y144{bottom:573.735000px;}
.y112{bottom:579.675000px;}
.ydc{bottom:581.655000px;}
.y25{bottom:583.275000px;}
.y5a{bottom:586.155000px;}
.y85{bottom:590.475000px;}
.y143{bottom:591.015000px;}
.y111{bottom:596.955000px;}
.ydb{bottom:598.935000px;}
.y24{bottom:601.815000px;}
.y59{bottom:603.435000px;}
.y84{bottom:607.605000px;}
.y142{bottom:608.325000px;}
.y110{bottom:614.265000px;}
.y157{bottom:615.705000px;}
.yda{bottom:616.245000px;}
.y23{bottom:620.385000px;}
.y58{bottom:620.745000px;}
.y83{bottom:624.885000px;}
.y141{bottom:625.605000px;}
.y10f{bottom:631.545000px;}
.yd9{bottom:633.345000px;}
.ybb{bottom:637.665000px;}
.y57{bottom:638.025000px;}
.y22{bottom:639.105000px;}
.y82{bottom:642.165000px;}
.y140{bottom:642.885000px;}
.y16d{bottom:648.645000px;}
.y10e{bottom:648.825000px;}
.yd8{bottom:650.625000px;}
.y56{bottom:655.305000px;}
.yba{bottom:656.205000px;}
.y21{bottom:657.645000px;}
.y81{bottom:659.445000px;}
.y13f{bottom:660.165000px;}
.y10d{bottom:666.105000px;}
.yd7{bottom:667.905000px;}
.y55{bottom:672.585000px;}
.yb9{bottom:673.485000px;}
.y7f{bottom:674.205000px;}
.y20{bottom:676.365000px;}
.y13e{bottom:677.265000px;}
.y10c{bottom:683.205000px;}
.yd6{bottom:685.185000px;}
.y156{bottom:688.245000px;}
.y54{bottom:689.685000px;}
.yb8{bottom:690.585000px;}
.y13d{bottom:692.925000px;}
.y1f{bottom:694.905000px;}
.y10b{bottom:700.485000px;}
.yd5{bottom:702.465000px;}
.y13c{bottom:703.185000px;}
.y53{bottom:706.965000px;}
.yb7{bottom:707.865000px;}
.y1e{bottom:713.625000px;}
.y10a{bottom:717.765000px;}
.y13a{bottom:717.945000px;}
.yd4{bottom:719.745000px;}
.y7b{bottom:720.645000px;}
.y52{bottom:724.245000px;}
.yb6{bottom:725.145000px;}
.y1d{bottom:732.165000px;}
.y109{bottom:735.045000px;}
.yd3{bottom:736.845000px;}
.y16a{bottom:739.365000px;}
.y51{bottom:741.525000px;}
.y139{bottom:742.245000px;}
.yb5{bottom:742.425000px;}
.y1c{bottom:750.705000px;}
.y108{bottom:752.325000px;}
.yd2{bottom:754.125000px;}
.y50{bottom:758.805000px;}
.yb4{bottom:759.705000px;}
.y153{bottom:760.965000px;}
.y137{bottom:766.365000px;}
.y78{bottom:767.085000px;}
.y1b{bottom:769.425000px;}
.yd1{bottom:771.405000px;}
.y4f{bottom:776.085000px;}
.yb3{bottom:776.805000px;}
.y135{bottom:785.265000px;}
.y107{bottom:786.705000px;}
.y1a{bottom:787.965000px;}
.yd0{bottom:788.685000px;}
.y4e{bottom:793.185000px;}
.yb2{bottom:794.085000px;}
.y106{bottom:803.985000px;}
.y76{bottom:805.065000px;}
.y133{bottom:805.425000px;}
.ycf{bottom:805.965000px;}
.y19{bottom:806.685000px;}
.y4d{bottom:810.465000px;}
.yb1{bottom:811.365000px;}
.ycd{bottom:820.725000px;}
.y105{bottom:821.265000px;}
.y18{bottom:825.225000px;}
.y132{bottom:827.565000px;}
.y4c{bottom:827.745000px;}
.yb0{bottom:828.645000px;}
.y167{bottom:829.905000px;}
.y104{bottom:836.025000px;}
.ycb{bottom:840.165000px;}
.y17{bottom:843.765000px;}
.y4b{bottom:845.025000px;}
.yaf{bottom:845.925000px;}
.y131{bottom:846.285000px;}
.y14e{bottom:851.685000px;}
.y103{bottom:854.565000px;}
.y16{bottom:862.305000px;}
.yae{bottom:863.205000px;}
.yc9{bottom:863.745000px;}
.y130{bottom:864.825000px;}
.y102{bottom:874.770000px;}
.yac{bottom:878.010000px;}
.y4a{bottom:879.630000px;}
.y15{bottom:879.990000px;}
.y12f{bottom:884.310000px;}
.yc7{bottom:887.370000px;}
.y101{bottom:893.490000px;}
.y49{bottom:896.730000px;}
.y14{bottom:898.530000px;}
.ya9{bottom:902.130000px;}
.y166{bottom:902.670000px;}
.y12e{bottom:908.610000px;}
.y100{bottom:912.030000px;}
.yc5{bottom:912.930000px;}
.y48{bottom:914.010000px;}
.y13{bottom:916.170000px;}
.yff{bottom:930.930000px;}
.y47{bottom:931.290000px;}
.y12{bottom:935.250000px;}
.y14b{bottom:942.270000px;}
.ya8{bottom:946.050000px;}
.y46{bottom:948.570000px;}
.yfe{bottom:949.470000px;}
.y11{bottom:954.150000px;}
.y45{bottom:965.850000px;}
.yfd{bottom:968.190000px;}
.ya6{bottom:972.330000px;}
.y10{bottom:972.690000px;}
.y44{bottom:982.950000px;}
.yfc{bottom:986.910000px;}
.yf{bottom:990.330000px;}
.y165{bottom:993.390000px;}
.ya3{bottom:998.610000px;}
.y43{bottom:1000.230000px;}
.yfb{bottom:1007.070000px;}
.ye{bottom:1009.410000px;}
.y42{bottom:1017.510000px;}
.yfa{bottom:1027.230000px;}
.yd{bottom:1028.670000px;}
.y41{bottom:1034.790000px;}
.ya1{bottom:1043.790000px;}
.yf8{bottom:1046.670000px;}
.yc{bottom:1049.370000px;}
.y40{bottom:1052.070000px;}
.y8{bottom:1070.610000px;}
.y7{bottom:1089.150000px;}
.y6{bottom:1104.990000px;}
.y5{bottom:1122.990000px;}
.y4{bottom:1139.760000px;}
.y3{bottom:1180.620000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.h18{height:18.540000px;}
.h9{height:18.720000px;}
.h1a{height:18.900000px;}
.h17{height:19.440000px;}
.h1c{height:19.476000px;}
.h19{height:20.160000px;}
.h1b{height:20.196000px;}
.h1f{height:21.114844px;}
.hd{height:21.420000px;}
.h1d{height:22.140000px;}
.h16{height:23.580000px;}
.h15{height:23.616000px;}
.h11{height:24.120000px;}
.h1e{height:24.300000px;}
.h14{height:24.840000px;}
.hf{height:26.280000px;}
.h13{height:31.680000px;}
.ha{height:37.260000px;}
.h6{height:37.705078px;}
.h21{height:38.100586px;}
.h12{height:41.493516px;}
.h2{height:41.726953px;}
.h5{height:42.164648px;}
.hc{height:43.302656px;}
.h2c{height:43.506914px;}
.h10{height:43.920000px;}
.he{height:44.460000px;}
.h3{height:46.251562px;}
.hb{height:46.440000px;}
.h8{height:46.736719px;}
.h4{height:50.800781px;}
.h20{height:54.000000px;}
.h7{height:65.884219px;}
.h25{height:71.820000px;}
.h27{height:71.856000px;}
.h24{height:72.000000px;}
.h28{height:72.036000px;}
.h29{height:89.820000px;}
.h22{height:89.856000px;}
.h23{height:90.000000px;}
.h2a{height:90.036000px;}
.h2b{height:107.820000px;}
.h26{height:107.856000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1c{width:73.476000px;}
.w14{width:74.376000px;}
.w1d{width:86.940000px;}
.w1e{width:86.976000px;}
.w15{width:87.660000px;}
.w16{width:87.876000px;}
.w7{width:95.040000px;}
.w1a{width:100.476000px;}
.w12{width:101.016000px;}
.w1f{width:107.100000px;}
.w17{width:108.000000px;}
.w1b{width:113.940000px;}
.w13{width:114.660000px;}
.w11{width:119.736000px;}
.w4{width:121.536000px;}
.w20{width:127.476000px;}
.w18{width:128.196000px;}
.w6{width:138.096000px;}
.wd{width:139.500000px;}
.we{width:139.896000px;}
.w21{width:140.976000px;}
.w19{width:141.336000px;}
.w3{width:154.800000px;}
.wa{width:180.570000px;}
.wb{width:233.850000px;}
.w9{width:244.650000px;}
.w5{width:246.450000px;}
.wc{width:377.175000px;}
.w10{width:515.415000px;}
.w8{width:560.985000px;}
.wf{width:656.565000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x25{left:8.100000px;}
.x1f{left:13.860000px;}
.x16{left:18.000000px;}
.x1e{left:19.080000px;}
.x1a{left:21.960000px;}
.x14{left:23.760000px;}
.x39{left:25.740000px;}
.x1b{left:27.540000px;}
.x21{left:30.060000px;}
.x43{left:31.500000px;}
.x1c{left:33.660000px;}
.x3d{left:36.000000px;}
.x44{left:37.080000px;}
.x24{left:39.600000px;}
.x3a{left:52.425000px;}
.x3b{left:56.205000px;}
.x36{left:62.505000px;}
.x35{left:63.765000px;}
.x33{left:65.520000px;}
.x2a{left:69.120000px;}
.x18{left:74.160000px;}
.x2e{left:79.020000px;}
.x2c{left:82.800000px;}
.x1d{left:92.190000px;}
.x13{left:99.936000px;}
.x1{left:108.035987px;}
.x2f{left:109.440000px;}
.x2d{left:113.220000px;}
.x2{left:123.155987px;}
.x3e{left:128.376000px;}
.x47{left:135.035987px;}
.x45{left:139.715987px;}
.x4{left:157.169987px;}
.x48{left:162.029987px;}
.x7{left:182.189987px;}
.x22{left:194.970000px;}
.x37{left:225.749987px;}
.x23{left:243.405000px;}
.x15{left:254.730000px;}
.xf{left:257.249987px;}
.x8{left:279.254987px;}
.xc{left:283.574987px;}
.x3c{left:288.974987px;}
.x30{left:303.554987px;}
.x26{left:308.234987px;}
.x20{left:310.034987px;}
.x28{left:317.954987px;}
.xb{left:324.614987px;}
.xe{left:330.014987px;}
.x29{left:344.595000px;}
.x31{left:346.394987px;}
.x46{left:362.414987px;}
.xa{left:371.054987px;}
.x17{left:376.275000px;}
.xd{left:378.974987px;}
.x12{left:384.554987px;}
.x10{left:386.534987px;}
.x6{left:396.434987px;}
.x11{left:398.954987px;}
.x3f{left:405.075000px;}
.x5{left:412.274987px;}
.x9{left:446.474987px;}
.x32{left:477.105000px;}
.x40{left:492.945000px;}
.x3{left:518.504987px;}
.x2b{left:525.345000px;}
.x41{left:600.945000px;}
.x38{left:615.345000px;}
.x34{left:616.605000px;}
.x19{left:622.725000px;}
.x42{left:729.150000px;}
.x27{left:785.669987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.224000pt;}
.ls6{letter-spacing:-0.094933pt;}
.ls4{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:19.152640pt;}
.ws1{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.ws5{word-spacing:-13.185067pt;}
.ws6{word-spacing:-12.320000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws3{word-spacing:0.000000pt;}
._1d{margin-left:-7.286613pt;}
._1a{margin-left:-6.000000pt;}
._19{margin-left:-4.560000pt;}
._1c{margin-left:-3.648000pt;}
._1b{margin-left:-2.544000pt;}
._1{margin-left:-1.175040pt;}
._0{width:1.175467pt;}
._7{width:2.177280pt;}
._2{width:3.773867pt;}
._6{width:5.107627pt;}
._5{width:6.002560pt;}
._11{width:7.224320pt;}
._b{width:8.764800pt;}
._9{width:10.084693pt;}
._8{width:11.473920pt;}
._13{width:12.376107pt;}
._17{width:14.367360pt;}
._f{width:15.298560pt;}
._c{width:16.520320pt;}
._10{width:17.569067pt;}
._e{width:18.744107pt;}
._d{width:19.654400pt;}
._12{width:20.550613pt;}
._14{width:21.772373pt;}
._15{width:22.689067pt;}
._16{width:23.957120pt;}
._a{width:25.065813pt;}
._18{width:26.075093pt;}
._4{width:76.138667pt;}
._3{width:610.938667pt;}
.fs4{font-size:26.880000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yf9{bottom:4.000000pt;}
.y77{bottom:4.160000pt;}
.y138{bottom:4.320000pt;}
.y15a{bottom:4.640000pt;}
.yce{bottom:4.800000pt;}
.y136{bottom:5.440000pt;}
.ya2{bottom:6.560000pt;}
.y134{bottom:7.200000pt;}
.y7e{bottom:8.160000pt;}
.ycc{bottom:8.480000pt;}
.yca{bottom:8.520000pt;}
.yad{bottom:8.960000pt;}
.y13b{bottom:9.120000pt;}
.yc8{bottom:9.600000pt;}
.yab{bottom:10.080000pt;}
.ya5{bottom:10.400000pt;}
.ya7{bottom:10.880000pt;}
.y79{bottom:12.480000pt;}
.yc6{bottom:15.680000pt;}
.y16c{bottom:16.000000pt;}
.y7c{bottom:16.480000pt;}
.y7a{bottom:20.640000pt;}
.y14d{bottom:20.800000pt;}
.y152{bottom:20.840000pt;}
.y80{bottom:24.640000pt;}
.y7d{bottom:24.800000pt;}
.yaa{bottom:26.560000pt;}
.ya4{bottom:27.040000pt;}
.yb{bottom:32.640000pt;}
.y159{bottom:36.640000pt;}
.y151{bottom:36.680000pt;}
.y164{bottom:36.794667pt;}
.y14c{bottom:36.800000pt;}
.y169{bottom:36.840000pt;}
.ya{bottom:49.120000pt;}
.y158{bottom:52.640000pt;}
.y150{bottom:52.680000pt;}
.y163{bottom:52.794667pt;}
.y155{bottom:52.800000pt;}
.y170{bottom:52.826667pt;}
.y168{bottom:52.840000pt;}
.y9{bottom:62.912000pt;}
.y16b{bottom:68.640000pt;}
.y14f{bottom:68.680000pt;}
.y162{bottom:68.794667pt;}
.y154{bottom:68.800000pt;}
.y16f{bottom:68.826667pt;}
.y15c{bottom:84.640000pt;}
.y12d{bottom:101.312000pt;}
.yf7{bottom:103.072000pt;}
.y75{bottom:107.072000pt;}
.y184{bottom:110.272000pt;}
.ya0{bottom:110.752000pt;}
.y3f{bottom:111.392000pt;}
.y161{bottom:111.552000pt;}
.y12c{bottom:116.672000pt;}
.yf6{bottom:118.432000pt;}
.y74{bottom:122.432000pt;}
.yc4{bottom:124.352000pt;}
.y183{bottom:125.632000pt;}
.y9f{bottom:126.112000pt;}
.y3e{bottom:126.752000pt;}
.y12b{bottom:132.032000pt;}
.yf5{bottom:133.626667pt;}
.y73{bottom:137.786667pt;}
.yc3{bottom:139.706667pt;}
.y182{bottom:140.986667pt;}
.y9e{bottom:141.466667pt;}
.y3d{bottom:142.106667pt;}
.y12a{bottom:147.386667pt;}
.yf4{bottom:148.986667pt;}
.y72{bottom:153.146667pt;}
.yc2{bottom:155.066667pt;}
.y181{bottom:156.346667pt;}
.y9d{bottom:156.826667pt;}
.y3c{bottom:157.306667pt;}
.y129{bottom:162.586667pt;}
.yf3{bottom:164.346667pt;}
.y71{bottom:168.506667pt;}
.yc1{bottom:170.426667pt;}
.y180{bottom:171.546667pt;}
.y9c{bottom:172.186667pt;}
.y3b{bottom:172.666667pt;}
.y128{bottom:177.946667pt;}
.yf2{bottom:179.706667pt;}
.y70{bottom:183.706667pt;}
.yc0{bottom:185.786667pt;}
.y17f{bottom:186.906667pt;}
.y9b{bottom:187.386667pt;}
.y3a{bottom:188.026667pt;}
.y160{bottom:192.186667pt;}
.y127{bottom:193.306667pt;}
.yf1{bottom:195.066667pt;}
.y6f{bottom:199.066667pt;}
.ybf{bottom:200.986667pt;}
.y17e{bottom:202.266667pt;}
.y9a{bottom:202.746667pt;}
.y39{bottom:203.386667pt;}
.y126{bottom:208.666667pt;}
.yf0{bottom:210.426667pt;}
.y6e{bottom:214.426667pt;}
.ybe{bottom:216.346667pt;}
.y17d{bottom:217.626667pt;}
.y99{bottom:218.106667pt;}
.y38{bottom:218.746667pt;}
.y125{bottom:224.026667pt;}
.yef{bottom:225.626667pt;}
.y6d{bottom:229.786667pt;}
.ybd{bottom:231.706667pt;}
.y17c{bottom:232.986667pt;}
.y98{bottom:233.466667pt;}
.y37{bottom:233.946667pt;}
.y14a{bottom:234.106667pt;}
.y124{bottom:239.386667pt;}
.yee{bottom:240.986667pt;}
.ybc{bottom:244.186667pt;}
.y6c{bottom:245.146667pt;}
.y17b{bottom:248.186667pt;}
.y97{bottom:248.826667pt;}
.y36{bottom:249.306667pt;}
.y123{bottom:254.586667pt;}
.yed{bottom:256.346667pt;}
.y15f{bottom:256.826667pt;}
.y6b{bottom:260.346667pt;}
.y17a{bottom:263.546667pt;}
.y96{bottom:264.026667pt;}
.y35{bottom:264.666667pt;}
.y122{bottom:269.946667pt;}
.yec{bottom:271.706667pt;}
.y6a{bottom:275.706667pt;}
.y179{bottom:278.906667pt;}
.y95{bottom:279.386667pt;}
.y34{bottom:280.026667pt;}
.y121{bottom:285.306667pt;}
.yeb{bottom:287.066667pt;}
.y69{bottom:291.066667pt;}
.y178{bottom:294.266667pt;}
.y94{bottom:294.746667pt;}
.y33{bottom:295.386667pt;}
.y120{bottom:300.706667pt;}
.yea{bottom:302.306667pt;}
.y68{bottom:306.466667pt;}
.y177{bottom:309.666667pt;}
.y93{bottom:310.146667pt;}
.y32{bottom:310.786667pt;}
.y11f{bottom:316.066667pt;}
.ye9{bottom:317.666667pt;}
.y15e{bottom:321.506667pt;}
.y67{bottom:321.826667pt;}
.y176{bottom:325.026667pt;}
.y92{bottom:325.506667pt;}
.y31{bottom:325.986667pt;}
.y149{bottom:326.146667pt;}
.y11e{bottom:331.426667pt;}
.ye8{bottom:333.026667pt;}
.y66{bottom:337.186667pt;}
.y175{bottom:340.226667pt;}
.y91{bottom:340.866667pt;}
.y30{bottom:341.346667pt;}
.y11d{bottom:346.626667pt;}
.ye7{bottom:348.386667pt;}
.y65{bottom:352.386667pt;}
.y174{bottom:355.586667pt;}
.y90{bottom:356.066667pt;}
.y2f{bottom:356.706667pt;}
.y11c{bottom:361.986667pt;}
.ye6{bottom:363.746667pt;}
.y64{bottom:367.746667pt;}
.y173{bottom:370.946667pt;}
.y8f{bottom:371.426667pt;}
.y2e{bottom:372.066667pt;}
.y11b{bottom:377.346667pt;}
.ye5{bottom:379.106667pt;}
.y63{bottom:383.106667pt;}
.y15d{bottom:385.986667pt;}
.y172{bottom:386.306667pt;}
.y8e{bottom:386.786667pt;}
.y2d{bottom:387.426667pt;}
.y11a{bottom:392.706667pt;}
.ye4{bottom:394.306667pt;}
.y62{bottom:398.466667pt;}
.y171{bottom:399.426667pt;}
.y8d{bottom:402.146667pt;}
.y2c{bottom:402.786667pt;}
.y119{bottom:408.066667pt;}
.ye3{bottom:409.666667pt;}
.y61{bottom:413.826667pt;}
.y8c{bottom:417.506667pt;}
.y2b{bottom:417.986667pt;}
.y118{bottom:423.266667pt;}
.ye2{bottom:425.026667pt;}
.y60{bottom:429.186667pt;}
.y8b{bottom:432.866667pt;}
.y2a{bottom:433.346667pt;}
.y117{bottom:438.626667pt;}
.ye1{bottom:440.386667pt;}
.y5f{bottom:444.386667pt;}
.y8a{bottom:448.066667pt;}
.y148{bottom:448.706667pt;}
.y15b{bottom:450.626667pt;}
.y29{bottom:452.226667pt;}
.y116{bottom:453.986667pt;}
.ye0{bottom:455.746667pt;}
.y5e{bottom:459.746667pt;}
.y89{bottom:463.426667pt;}
.y147{bottom:464.066667pt;}
.y28{bottom:468.706667pt;}
.y115{bottom:469.346667pt;}
.ydf{bottom:471.106667pt;}
.y5d{bottom:475.106667pt;}
.y88{bottom:478.786667pt;}
.y146{bottom:479.426667pt;}
.y114{bottom:484.706667pt;}
.y27{bottom:485.346667pt;}
.yde{bottom:486.306667pt;}
.y5c{bottom:490.466667pt;}
.y87{bottom:494.146667pt;}
.y145{bottom:494.786667pt;}
.y16e{bottom:495.906667pt;}
.y113{bottom:500.066667pt;}
.ydd{bottom:501.666667pt;}
.y26{bottom:501.826667pt;}
.y5b{bottom:505.826667pt;}
.y86{bottom:509.506667pt;}
.y144{bottom:509.986667pt;}
.y112{bottom:515.266667pt;}
.ydc{bottom:517.026667pt;}
.y25{bottom:518.466667pt;}
.y5a{bottom:521.026667pt;}
.y85{bottom:524.866667pt;}
.y143{bottom:525.346667pt;}
.y111{bottom:530.626667pt;}
.ydb{bottom:532.386667pt;}
.y24{bottom:534.946667pt;}
.y59{bottom:536.386667pt;}
.y84{bottom:540.093333pt;}
.y142{bottom:540.733333pt;}
.y110{bottom:546.013333pt;}
.y157{bottom:547.293333pt;}
.yda{bottom:547.773333pt;}
.y23{bottom:551.453333pt;}
.y58{bottom:551.773333pt;}
.y83{bottom:555.453333pt;}
.y141{bottom:556.093333pt;}
.y10f{bottom:561.373333pt;}
.yd9{bottom:562.973333pt;}
.ybb{bottom:566.813333pt;}
.y57{bottom:567.133333pt;}
.y22{bottom:568.093333pt;}
.y82{bottom:570.813333pt;}
.y140{bottom:571.453333pt;}
.y16d{bottom:576.573333pt;}
.y10e{bottom:576.733333pt;}
.yd8{bottom:578.333333pt;}
.y56{bottom:582.493333pt;}
.yba{bottom:583.293333pt;}
.y21{bottom:584.573333pt;}
.y81{bottom:586.173333pt;}
.y13f{bottom:586.813333pt;}
.y10d{bottom:592.093333pt;}
.yd7{bottom:593.693333pt;}
.y55{bottom:597.853333pt;}
.yb9{bottom:598.653333pt;}
.y7f{bottom:599.293333pt;}
.y20{bottom:601.213333pt;}
.y13e{bottom:602.013333pt;}
.y10c{bottom:607.293333pt;}
.yd6{bottom:609.053333pt;}
.y156{bottom:611.773333pt;}
.y54{bottom:613.053333pt;}
.yb8{bottom:613.853333pt;}
.y13d{bottom:615.933333pt;}
.y1f{bottom:617.693333pt;}
.y10b{bottom:622.653333pt;}
.yd5{bottom:624.413333pt;}
.y13c{bottom:625.053333pt;}
.y53{bottom:628.413333pt;}
.yb7{bottom:629.213333pt;}
.y1e{bottom:634.333333pt;}
.y10a{bottom:638.013333pt;}
.y13a{bottom:638.173333pt;}
.yd4{bottom:639.773333pt;}
.y7b{bottom:640.573333pt;}
.y52{bottom:643.773333pt;}
.yb6{bottom:644.573333pt;}
.y1d{bottom:650.813333pt;}
.y109{bottom:653.373333pt;}
.yd3{bottom:654.973333pt;}
.y16a{bottom:657.213333pt;}
.y51{bottom:659.133333pt;}
.y139{bottom:659.773333pt;}
.yb5{bottom:659.933333pt;}
.y1c{bottom:667.293333pt;}
.y108{bottom:668.733333pt;}
.yd2{bottom:670.333333pt;}
.y50{bottom:674.493333pt;}
.yb4{bottom:675.293333pt;}
.y153{bottom:676.413333pt;}
.y137{bottom:681.213333pt;}
.y78{bottom:681.853333pt;}
.y1b{bottom:683.933333pt;}
.yd1{bottom:685.693333pt;}
.y4f{bottom:689.853333pt;}
.yb3{bottom:690.493333pt;}
.y135{bottom:698.013333pt;}
.y107{bottom:699.293333pt;}
.y1a{bottom:700.413333pt;}
.yd0{bottom:701.053333pt;}
.y4e{bottom:705.053333pt;}
.yb2{bottom:705.853333pt;}
.y106{bottom:714.653333pt;}
.y76{bottom:715.613333pt;}
.y133{bottom:715.933333pt;}
.ycf{bottom:716.413333pt;}
.y19{bottom:717.053333pt;}
.y4d{bottom:720.413333pt;}
.yb1{bottom:721.213333pt;}
.ycd{bottom:729.533333pt;}
.y105{bottom:730.013333pt;}
.y18{bottom:733.533333pt;}
.y132{bottom:735.613333pt;}
.y4c{bottom:735.773333pt;}
.yb0{bottom:736.573333pt;}
.y167{bottom:737.693333pt;}
.y104{bottom:743.133333pt;}
.ycb{bottom:746.813333pt;}
.y17{bottom:750.013333pt;}
.y4b{bottom:751.133333pt;}
.yaf{bottom:751.933333pt;}
.y131{bottom:752.253333pt;}
.y14e{bottom:757.053333pt;}
.y103{bottom:759.613333pt;}
.y16{bottom:766.493333pt;}
.yae{bottom:767.293333pt;}
.yc9{bottom:767.773333pt;}
.y130{bottom:768.733333pt;}
.y102{bottom:777.573333pt;}
.yac{bottom:780.453333pt;}
.y4a{bottom:781.893333pt;}
.y15{bottom:782.213333pt;}
.y12f{bottom:786.053333pt;}
.yc7{bottom:788.773333pt;}
.y101{bottom:794.213333pt;}
.y49{bottom:797.093333pt;}
.y14{bottom:798.693333pt;}
.ya9{bottom:801.893333pt;}
.y166{bottom:802.373333pt;}
.y12e{bottom:807.653333pt;}
.y100{bottom:810.693333pt;}
.yc5{bottom:811.493333pt;}
.y48{bottom:812.453333pt;}
.y13{bottom:814.373333pt;}
.yff{bottom:827.493333pt;}
.y47{bottom:827.813333pt;}
.y12{bottom:831.333333pt;}
.y14b{bottom:837.573333pt;}
.ya8{bottom:840.933333pt;}
.y46{bottom:843.173333pt;}
.yfe{bottom:843.973333pt;}
.y11{bottom:848.133333pt;}
.y45{bottom:858.533333pt;}
.yfd{bottom:860.613333pt;}
.ya6{bottom:864.293333pt;}
.y10{bottom:864.613333pt;}
.y44{bottom:873.733333pt;}
.yfc{bottom:877.253333pt;}
.yf{bottom:880.293333pt;}
.y165{bottom:883.013333pt;}
.ya3{bottom:887.653333pt;}
.y43{bottom:889.093333pt;}
.yfb{bottom:895.173333pt;}
.ye{bottom:897.253333pt;}
.y42{bottom:904.453333pt;}
.yfa{bottom:913.093333pt;}
.yd{bottom:914.373333pt;}
.y41{bottom:919.813333pt;}
.ya1{bottom:927.813333pt;}
.yf8{bottom:930.373333pt;}
.yc{bottom:932.773333pt;}
.y40{bottom:935.173333pt;}
.y8{bottom:951.653333pt;}
.y7{bottom:968.133333pt;}
.y6{bottom:982.213333pt;}
.y5{bottom:998.213333pt;}
.y4{bottom:1013.120000pt;}
.y3{bottom:1049.440000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.h18{height:16.480000pt;}
.h9{height:16.640000pt;}
.h1a{height:16.800000pt;}
.h17{height:17.280000pt;}
.h1c{height:17.312000pt;}
.h19{height:17.920000pt;}
.h1b{height:17.952000pt;}
.h1f{height:18.768750pt;}
.hd{height:19.040000pt;}
.h1d{height:19.680000pt;}
.h16{height:20.960000pt;}
.h15{height:20.992000pt;}
.h11{height:21.440000pt;}
.h1e{height:21.600000pt;}
.h14{height:22.080000pt;}
.hf{height:23.360000pt;}
.h13{height:28.160000pt;}
.ha{height:33.120000pt;}
.h6{height:33.515625pt;}
.h21{height:33.867188pt;}
.h12{height:36.883125pt;}
.h2{height:37.090625pt;}
.h5{height:37.479688pt;}
.hc{height:38.491250pt;}
.h2c{height:38.672812pt;}
.h10{height:39.040000pt;}
.he{height:39.520000pt;}
.h3{height:41.112500pt;}
.hb{height:41.280000pt;}
.h8{height:41.543750pt;}
.h4{height:45.156250pt;}
.h20{height:48.000000pt;}
.h7{height:58.563750pt;}
.h25{height:63.840000pt;}
.h27{height:63.872000pt;}
.h24{height:64.000000pt;}
.h28{height:64.032000pt;}
.h29{height:79.840000pt;}
.h22{height:79.872000pt;}
.h23{height:80.000000pt;}
.h2a{height:80.032000pt;}
.h2b{height:95.840000pt;}
.h26{height:95.872000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1c{width:65.312000pt;}
.w14{width:66.112000pt;}
.w1d{width:77.280000pt;}
.w1e{width:77.312000pt;}
.w15{width:77.920000pt;}
.w16{width:78.112000pt;}
.w7{width:84.480000pt;}
.w1a{width:89.312000pt;}
.w12{width:89.792000pt;}
.w1f{width:95.200000pt;}
.w17{width:96.000000pt;}
.w1b{width:101.280000pt;}
.w13{width:101.920000pt;}
.w11{width:106.432000pt;}
.w4{width:108.032000pt;}
.w20{width:113.312000pt;}
.w18{width:113.952000pt;}
.w6{width:122.752000pt;}
.wd{width:124.000000pt;}
.we{width:124.352000pt;}
.w21{width:125.312000pt;}
.w19{width:125.632000pt;}
.w3{width:137.600000pt;}
.wa{width:160.506667pt;}
.wb{width:207.866667pt;}
.w9{width:217.466667pt;}
.w5{width:219.066667pt;}
.wc{width:335.266667pt;}
.w10{width:458.146667pt;}
.w8{width:498.653333pt;}
.wf{width:583.613333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x25{left:7.200000pt;}
.x1f{left:12.320000pt;}
.x16{left:16.000000pt;}
.x1e{left:16.960000pt;}
.x1a{left:19.520000pt;}
.x14{left:21.120000pt;}
.x39{left:22.880000pt;}
.x1b{left:24.480000pt;}
.x21{left:26.720000pt;}
.x43{left:28.000000pt;}
.x1c{left:29.920000pt;}
.x3d{left:32.000000pt;}
.x44{left:32.960000pt;}
.x24{left:35.200000pt;}
.x3a{left:46.600000pt;}
.x3b{left:49.960000pt;}
.x36{left:55.560000pt;}
.x35{left:56.680000pt;}
.x33{left:58.240000pt;}
.x2a{left:61.440000pt;}
.x18{left:65.920000pt;}
.x2e{left:70.240000pt;}
.x2c{left:73.600000pt;}
.x1d{left:81.946667pt;}
.x13{left:88.832000pt;}
.x1{left:96.031988pt;}
.x2f{left:97.280000pt;}
.x2d{left:100.640000pt;}
.x2{left:109.471988pt;}
.x3e{left:114.112000pt;}
.x47{left:120.031988pt;}
.x45{left:124.191988pt;}
.x4{left:139.706655pt;}
.x48{left:144.026655pt;}
.x7{left:161.946655pt;}
.x22{left:173.306667pt;}
.x37{left:200.666655pt;}
.x23{left:216.360000pt;}
.x15{left:226.426667pt;}
.xf{left:228.666655pt;}
.x8{left:248.226655pt;}
.xc{left:252.066655pt;}
.x3c{left:256.866655pt;}
.x30{left:269.826655pt;}
.x26{left:273.986655pt;}
.x20{left:275.586655pt;}
.x28{left:282.626655pt;}
.xb{left:288.546655pt;}
.xe{left:293.346655pt;}
.x29{left:306.306667pt;}
.x31{left:307.906655pt;}
.x46{left:322.146655pt;}
.xa{left:329.826655pt;}
.x17{left:334.466667pt;}
.xd{left:336.866655pt;}
.x12{left:341.826655pt;}
.x10{left:343.586655pt;}
.x6{left:352.386655pt;}
.x11{left:354.626655pt;}
.x3f{left:360.066667pt;}
.x5{left:366.466655pt;}
.x9{left:396.866655pt;}
.x32{left:424.093333pt;}
.x40{left:438.173333pt;}
.x3{left:460.893322pt;}
.x2b{left:466.973333pt;}
.x41{left:534.173333pt;}
.x38{left:546.973333pt;}
.x34{left:548.093333pt;}
.x19{left:553.533333pt;}
.x42{left:648.133333pt;}
.x27{left:698.373322pt;}
}




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