
    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_c8a795f194f5b23b7e3329c9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_054b7717362d248d6492a8a9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8e12e83541e3d1b187b32984.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d15cc4e2b457d98811508f18.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0656853f883faa1387e67e3a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3089ec4c8bd7f9aef75aec8b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2b32e13f6168090dbcfd5420.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.001465;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8acc8045c935d63cd3a8233b.woff2')format("woff");}.ff9{font-family:ff9;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);}
.v6{vertical-align:-88.560000px;}
.v4{vertical-align:-82.800000px;}
.v3{vertical-align:-71.280000px;}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v5{vertical-align:82.800000px;}
.ls17{letter-spacing:-0.576000px;}
.ls8{letter-spacing:-0.457800px;}
.lsa{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.018720px;}
.ls7{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.149760px;}
.ls2{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.256200px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:5.760000px;}
.lsb{letter-spacing:7.344000px;}
.ls5{letter-spacing:10.944000px;}
.ls18{letter-spacing:36.000000px;}
.lsc{letter-spacing:54.840000px;}
.ls16{letter-spacing:103.680000px;}
.ls4{letter-spacing:416.316000px;}
.lse{letter-spacing:539.976000px;}
.ls11{letter-spacing:843.276000px;}
.ls15{letter-spacing:917.436000px;}
.ls12{letter-spacing:928.236000px;}
.ls13{letter-spacing:1070.100000px;}
.ls14{letter-spacing:1492.116000px;}
.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;}
}
.ws6{word-spacing:-72.000000px;}
.ws2{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.856000px;}
.ws1{word-spacing:-16.102200px;}
.ws0{word-spacing:-15.226440px;}
.ws3{word-spacing:-12.060000px;}
.ws4{word-spacing:-11.700000px;}
.ws5{word-spacing:0.000000px;}
._16{margin-left:-2.344800px;}
._0{margin-left:-1.224000px;}
._1{width:1.224000px;}
._2{width:2.400000px;}
._5{width:3.696000px;}
._4{width:4.840320px;}
._3{width:5.961600px;}
._6{width:7.315200px;}
._14{width:8.496000px;}
._15{width:9.520800px;}
._7{width:10.584000px;}
._8{width:11.736000px;}
._b{width:12.936000px;}
._18{width:14.697600px;}
._d{width:15.840000px;}
._e{width:16.992000px;}
._a{width:19.152000px;}
._9{width:20.304000px;}
._c{width:22.176000px;}
._10{width:23.328000px;}
._11{width:24.408000px;}
._13{width:25.560000px;}
._12{width:26.640000px;}
._17{width:28.080000px;}
._f{width:39.240000px;}
._1b{width:72.156000px;}
._1c{width:198.000000px;}
._1a{width:568.308000px;}
._19{width:1170.228000px;}
.fc3{color:rgb(32,33,34);}
.fc2{color:transparent;}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y12a{bottom:0.900000px;}
.y130{bottom:3.960000px;}
.y79{bottom:5.220000px;}
.y101{bottom:5.265000px;}
.y76{bottom:5.400000px;}
.yd2{bottom:5.430000px;}
.y97{bottom:5.445000px;}
.yca{bottom:5.580000px;}
.yd9{bottom:5.940000px;}
.y5e{bottom:6.840000px;}
.y62{bottom:6.870000px;}
.y60{bottom:7.020000px;}
.y10c{bottom:24.660000px;}
.yae{bottom:25.920000px;}
.y85{bottom:26.100000px;}
.yd1{bottom:26.130000px;}
.yc6{bottom:26.280000px;}
.y114{bottom:26.325000px;}
.y75{bottom:27.540000px;}
.y77{bottom:27.720000px;}
.y12f{bottom:45.360000px;}
.y10b{bottom:46.800000px;}
.ycf{bottom:46.830000px;}
.y10d{bottom:46.980000px;}
.yd0{bottom:47.010000px;}
.y113{bottom:47.025000px;}
.ya2{bottom:48.240000px;}
.y116{bottom:48.420000px;}
.y2{bottom:57.456000px;}
.y12e{bottom:66.060000px;}
.y110{bottom:66.105000px;}
.y112{bottom:67.725000px;}
.y1{bottom:77.616000px;}
.y12d{bottom:86.760000px;}
.y10f{bottom:88.245000px;}
.y111{bottom:88.425000px;}
.y12c{bottom:107.460000px;}
.yc4{bottom:109.656000px;}
.y9e{bottom:111.996000px;}
.y109{bottom:113.436000px;}
.y30{bottom:120.996000px;}
.y128{bottom:121.176000px;}
.y5d{bottom:127.836000px;}
.y12b{bottom:128.160000px;}
.y73{bottom:128.736000px;}
.ye2{bottom:129.456000px;}
.y108{bottom:134.136000px;}
.yc3{bottom:134.316000px;}
.y9d{bottom:136.836000px;}
.y2f{bottom:141.696000px;}
.y127{bottom:141.876000px;}
.y72{bottom:149.436000px;}
.y5c{bottom:149.796000px;}
.ye1{bottom:150.150000px;}
.y107{bottom:154.830000px;}
.yc2{bottom:159.150000px;}
.y9c{bottom:161.670000px;}
.y2e{bottom:162.390000px;}
.y126{bottom:162.570000px;}
.ye0{bottom:170.850000px;}
.y5b{bottom:171.750000px;}
.y106{bottom:175.530000px;}
.y2d{bottom:183.090000px;}
.y125{bottom:183.270000px;}
.yc1{bottom:183.990000px;}
.y9b{bottom:186.510000px;}
.y71{bottom:190.830000px;}
.ydf{bottom:191.550000px;}
.y5a{bottom:192.450000px;}
.y105{bottom:196.230000px;}
.y2c{bottom:203.790000px;}
.y124{bottom:203.970000px;}
.yc0{bottom:208.830000px;}
.y9a{bottom:211.350000px;}
.y70{bottom:211.530000px;}
.yde{bottom:212.250000px;}
.y59{bottom:214.410000px;}
.y104{bottom:216.930000px;}
.y2b{bottom:224.490000px;}
.y123{bottom:224.670000px;}
.ydd{bottom:230.610000px;}
.y6f{bottom:232.230000px;}
.ybf{bottom:233.670000px;}
.y103{bottom:234.750000px;}
.y58{bottom:235.110000px;}
.y99{bottom:236.010000px;}
.y2a{bottom:245.190000px;}
.y122{bottom:245.370000px;}
.y6e{bottom:252.930000px;}
.ydc{bottom:255.450000px;}
.y57{bottom:255.810000px;}
.ybe{bottom:258.510000px;}
.y102{bottom:259.590000px;}
.y98{bottom:260.850000px;}
.y29{bottom:265.890000px;}
.y121{bottom:266.070000px;}
.y6d{bottom:273.630000px;}
.y56{bottom:276.510000px;}
.ydb{bottom:280.110000px;}
.ybd{bottom:283.350000px;}
.y100{bottom:284.430000px;}
.y96{bottom:285.690000px;}
.y28{bottom:286.590000px;}
.y120{bottom:286.770000px;}
.y6c{bottom:294.375000px;}
.y55{bottom:297.255000px;}
.yda{bottom:304.995000px;}
.y27{bottom:307.335000px;}
.y11f{bottom:307.515000px;}
.ybc{bottom:308.235000px;}
.yff{bottom:309.315000px;}
.y95{bottom:310.575000px;}
.y129{bottom:313.995000px;}
.y6b{bottom:315.075000px;}
.y54{bottom:317.955000px;}
.y26{bottom:328.035000px;}
.y11e{bottom:328.215000px;}
.ybb{bottom:333.075000px;}
.yfe{bottom:334.155000px;}
.y94{bottom:335.415000px;}
.y6a{bottom:335.775000px;}
.y53{bottom:338.655000px;}
.y25{bottom:348.735000px;}
.y11d{bottom:348.915000px;}
.yd8{bottom:350.535000px;}
.y69{bottom:356.475000px;}
.yba{bottom:357.915000px;}
.yfd{bottom:358.815000px;}
.y52{bottom:359.355000px;}
.y93{bottom:360.255000px;}
.y24{bottom:369.435000px;}
.y11c{bottom:369.615000px;}
.yd7{bottom:375.915000px;}
.y68{bottom:378.975000px;}
.y51{bottom:380.055000px;}
.yb9{bottom:382.755000px;}
.yfc{bottom:383.655000px;}
.y92{bottom:385.095000px;}
.y23{bottom:390.135000px;}
.y11b{bottom:390.315000px;}
.y50{bottom:400.755000px;}
.y67{bottom:404.895000px;}
.yb8{bottom:407.415000px;}
.yfb{bottom:408.495000px;}
.y91{bottom:409.935000px;}
.y22{bottom:410.835000px;}
.y11a{bottom:412.275000px;}
.y4f{bottom:421.455000px;}
.yd6{bottom:425.595000px;}
.y21{bottom:431.535000px;}
.yb7{bottom:432.255000px;}
.y66{bottom:432.435000px;}
.yfa{bottom:433.335000px;}
.y90{bottom:434.775000px;}
.y119{bottom:436.215000px;}
.y4e{bottom:442.155000px;}
.yd5{bottom:450.435000px;}
.y20{bottom:452.235000px;}
.yb6{bottom:457.095000px;}
.y8f{bottom:459.615000px;}
.y65{bottom:459.795000px;}
.yf9{bottom:462.495000px;}
.y4d{bottom:462.855000px;}
.y1f{bottom:472.935000px;}
.yd4{bottom:475.275000px;}
.yb5{bottom:481.935000px;}
.y4c{bottom:483.555000px;}
.y64{bottom:487.335000px;}
.y8e{bottom:488.775000px;}
.y1e{bottom:493.635000px;}
.yf8{bottom:503.895000px;}
.y4b{bottom:504.255000px;}
.yb4{bottom:506.775000px;}
.y1d{bottom:514.335000px;}
.y63{bottom:514.695000px;}
.yd3{bottom:520.815000px;}
.yf7{bottom:524.595000px;}
.y4a{bottom:524.955000px;}
.y8d{bottom:530.175000px;}
.yb3{bottom:531.615000px;}
.y1c{bottom:535.035000px;}
.y61{bottom:542.235000px;}
.yf6{bottom:545.295000px;}
.y49{bottom:545.655000px;}
.y8c{bottom:550.905000px;}
.y1b{bottom:555.765000px;}
.yb2{bottom:556.485000px;}
.yf5{bottom:566.025000px;}
.y48{bottom:566.385000px;}
.y5f{bottom:569.625000px;}
.y8b{bottom:571.605000px;}
.y1a{bottom:576.465000px;}
.yb1{bottom:581.325000px;}
.yf4{bottom:586.725000px;}
.y47{bottom:587.085000px;}
.y8a{bottom:592.305000px;}
.y19{bottom:597.165000px;}
.yb0{bottom:606.165000px;}
.yf3{bottom:607.425000px;}
.y46{bottom:607.785000px;}
.yce{bottom:611.925000px;}
.y89{bottom:613.005000px;}
.y118{bottom:617.145000px;}
.y18{bottom:617.865000px;}
.yf2{bottom:628.125000px;}
.y45{bottom:628.485000px;}
.yaf{bottom:631.005000px;}
.y88{bottom:633.705000px;}
.ycd{bottom:636.765000px;}
.y17{bottom:638.565000px;}
.yf1{bottom:648.825000px;}
.y44{bottom:649.185000px;}
.y87{bottom:654.405000px;}
.yad{bottom:655.845000px;}
.y16{bottom:659.265000px;}
.ycc{bottom:661.605000px;}
.y117{bottom:664.125000px;}
.yf0{bottom:669.525000px;}
.y43{bottom:669.885000px;}
.y86{bottom:674.925000px;}
.y15{bottom:679.965000px;}
.ycb{bottom:686.445000px;}
.yef{bottom:690.225000px;}
.y42{bottom:690.585000px;}
.y84{bottom:692.925000px;}
.y14{bottom:700.665000px;}
.yee{bottom:710.925000px;}
.y41{bottom:711.285000px;}
.y13{bottom:721.365000px;}
.yac{bottom:726.225000px;}
.y115{bottom:730.365000px;}
.yed{bottom:731.625000px;}
.yc9{bottom:731.805000px;}
.y40{bottom:731.985000px;}
.y83{bottom:738.825000px;}
.y12{bottom:742.065000px;}
.yab{bottom:746.925000px;}
.yec{bottom:752.325000px;}
.y3f{bottom:752.685000px;}
.y11{bottom:762.765000px;}
.y82{bottom:763.665000px;}
.yaa{bottom:767.625000px;}
.y3e{bottom:773.385000px;}
.yeb{bottom:774.285000px;}
.yc8{bottom:777.345000px;}
.y10{bottom:782.025000px;}
.ya9{bottom:788.325000px;}
.y81{bottom:788.505000px;}
.y3d{bottom:794.085000px;}
.yf{bottom:797.145000px;}
.y10e{bottom:798.045000px;}
.yea{bottom:798.225000px;}
.yc7{bottom:802.185000px;}
.ya8{bottom:809.070000px;}
.y80{bottom:813.210000px;}
.y3c{bottom:814.830000px;}
.ye{bottom:816.450000px;}
.ye9{bottom:823.110000px;}
.yc5{bottom:827.070000px;}
.ya7{bottom:829.770000px;}
.y3b{bottom:835.530000px;}
.y7f{bottom:838.050000px;}
.ye8{bottom:847.950000px;}
.yd{bottom:849.210000px;}
.ya6{bottom:850.470000px;}
.y3a{bottom:856.230000px;}
.y7e{bottom:862.890000px;}
.yc{bottom:864.150000px;}
.ya5{bottom:871.170000px;}
.ye7{bottom:872.610000px;}
.y39{bottom:876.930000px;}
.yb{bottom:883.410000px;}
.y7d{bottom:887.730000px;}
.ya4{bottom:891.870000px;}
.ye6{bottom:897.450000px;}
.y38{bottom:897.630000px;}
.y10a{bottom:905.730000px;}
.ya{bottom:908.610000px;}
.y7c{bottom:912.570000px;}
.ya3{bottom:914.010000px;}
.y37{bottom:918.330000px;}
.y9{bottom:918.510000px;}
.ye5{bottom:922.290000px;}
.y7b{bottom:937.410000px;}
.y36{bottom:939.030000px;}
.y8{bottom:940.650000px;}
.ye4{bottom:947.130000px;}
.y35{bottom:959.730000px;}
.y7a{bottom:962.250000px;}
.y7{bottom:966.210000px;}
.ye3{bottom:971.970000px;}
.y34{bottom:980.430000px;}
.y78{bottom:987.090000px;}
.y6{bottom:993.750000px;}
.y33{bottom:1001.130000px;}
.ya1{bottom:1005.450000px;}
.y74{bottom:1011.930000px;}
.y5{bottom:1020.750000px;}
.y32{bottom:1021.830000px;}
.ya0{bottom:1030.290000px;}
.y31{bottom:1042.530000px;}
.y4{bottom:1043.970000px;}
.y9f{bottom:1055.130000px;}
.y3{bottom:1063.230000px;}
.h13{height:23.580000px;}
.h15{height:23.616000px;}
.h14{height:23.760000px;}
.h17{height:23.796000px;}
.h1b{height:24.300000px;}
.he{height:26.640000px;}
.h10{height:26.676000px;}
.hf{height:26.820000px;}
.h16{height:44.280000px;}
.h19{height:44.460000px;}
.h12{height:45.900000px;}
.h1f{height:45.936000px;}
.h9{height:47.321367px;}
.h6{height:47.344922px;}
.h7{height:48.802500px;}
.hc{height:50.273438px;}
.h3{height:65.010937px;}
.h1d{height:65.160000px;}
.h1a{height:65.196000px;}
.h1{height:65.884219px;}
.h18{height:66.600000px;}
.h8{height:70.628906px;}
.ha{height:70.664062px;}
.h2{height:72.562500px;}
.hd{height:74.004654px;}
.hb{height:74.953125px;}
.h4{height:84.898125px;}
.h5{height:96.508125px;}
.h11{height:105.996094px;}
.h1e{height:106.596000px;}
.h20{height:144.900000px;}
.h1c{height:153.464063px;}
.h0{height:1188.000000px;}
.w18{width:47.520000px;}
.w2{width:56.880000px;}
.w13{width:59.760000px;}
.w8{width:61.020000px;}
.we{width:67.680000px;}
.w28{width:85.140000px;}
.w1c{width:100.080000px;}
.w1b{width:110.196000px;}
.w29{width:119.700000px;}
.w16{width:127.260000px;}
.w1f{width:128.520000px;}
.w20{width:128.556000px;}
.w1e{width:129.096000px;}
.w19{width:133.596000px;}
.w15{width:134.136000px;}
.w6{width:148.176000px;}
.w4{width:153.750000px;}
.w3{width:159.690000px;}
.w5{width:160.020000px;}
.wa{width:167.790000px;}
.wb{width:171.570000px;}
.w21{width:177.150000px;}
.w11{width:187.950000px;}
.w10{width:201.450000px;}
.w23{width:203.250000px;}
.w24{width:203.430000px;}
.w22{width:203.790000px;}
.wf{width:235.290000px;}
.w25{width:265.350000px;}
.w26{width:282.450000px;}
.w9{width:282.990000px;}
.w27{width:285.375000px;}
.w1a{width:308.550000px;}
.wc{width:344.550000px;}
.w14{width:370.335000px;}
.w7{width:371.775000px;}
.w17{width:431.175000px;}
.w1d{width:443.235000px;}
.w2a{width:583.845000px;}
.wd{width:685.905000px;}
.w12{width:695.625000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1d{left:7.560000px;}
.x13{left:9.540000px;}
.xd{left:12.240000px;}
.x15{left:14.220000px;}
.x2f{left:15.480000px;}
.x21{left:19.260000px;}
.x2b{left:21.420000px;}
.x16{left:23.760000px;}
.x3a{left:24.840000px;}
.x24{left:26.100000px;}
.x34{left:29.340000px;}
.x3b{left:31.140000px;}
.x33{left:34.200000px;}
.x1f{left:35.820000px;}
.x49{left:38.700000px;}
.x22{left:39.810000px;}
.x4a{left:41.580000px;}
.x43{left:43.380000px;}
.x11{left:46.800000px;}
.x40{left:48.600000px;}
.x48{left:50.580000px;}
.x41{left:52.380000px;}
.x19{left:53.865000px;}
.x4f{left:55.260000px;}
.x42{left:58.140000px;}
.x50{left:59.790000px;}
.xf{left:60.840000px;}
.x20{left:63.000000px;}
.x57{left:64.080000px;}
.x1a{left:66.420000px;}
.x17{left:67.860000px;}
.x18{left:70.920000px;}
.x2d{left:72.405000px;}
.x26{left:74.730000px;}
.x38{left:78.165000px;}
.x28{left:79.230000px;}
.x3c{left:80.505000px;}
.x36{left:82.665000px;}
.x56{left:83.874000px;}
.x37{left:87.150000px;}
.x55{left:89.640000px;}
.x39{left:91.650000px;}
.x3d{left:93.240000px;}
.x27{left:94.500000px;}
.x35{left:96.150000px;}
.x54{left:97.560000px;}
.x5c{left:99.936000px;}
.x59{left:103.170000px;}
.x2{left:108.035986px;}
.x5d{left:111.594000px;}
.x4{left:112.715986px;}
.x1c{left:113.976000px;}
.xc{left:115.236000px;}
.x29{left:120.285000px;}
.x3{left:121.355986px;}
.x6{left:123.695986px;}
.x2a{left:125.325000px;}
.x25{left:127.305000px;}
.x2c{left:128.745000px;}
.xa{left:135.035986px;}
.x5b{left:141.875986px;}
.xb{left:162.029986px;}
.xe{left:172.830000px;}
.x1e{left:175.530000px;}
.x2e{left:178.949986px;}
.x30{left:182.730000px;}
.x7{left:188.309986px;}
.x5e{left:219.630000px;}
.x1b{left:247.889986px;}
.x4b{left:292.215000px;}
.x45{left:296.715000px;}
.x10{left:333.255000px;}
.x44{left:335.774986px;}
.x51{left:343.694986px;}
.x8{left:361.514986px;}
.x52{left:380.415000px;}
.x31{left:419.115000px;}
.x4c{left:421.815000px;}
.x9{left:427.934986px;}
.x58{left:446.115000px;}
.x1{left:450.614986px;}
.x5{left:459.074986px;}
.x12{left:487.725000px;}
.x3e{left:547.305000px;}
.x4d{left:551.445000px;}
.x53{left:584.745000px;}
.x46{left:606.345000px;}
.x32{left:621.645000px;}
.x23{left:628.305000px;}
.x14{left:648.465000px;}
.x4e{left:681.090000px;}
.x3f{left:682.350000px;}
.x47{left:717.630000px;}
.x5a{left:732.570000px;}
@media print{
.v6{vertical-align:-78.720000pt;}
.v4{vertical-align:-73.600000pt;}
.v3{vertical-align:-63.360000pt;}
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v5{vertical-align:73.600000pt;}
.ls17{letter-spacing:-0.512000pt;}
.ls8{letter-spacing:-0.406933pt;}
.lsa{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.016640pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.133120pt;}
.ls2{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.227733pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:5.120000pt;}
.lsb{letter-spacing:6.528000pt;}
.ls5{letter-spacing:9.728000pt;}
.ls18{letter-spacing:32.000000pt;}
.lsc{letter-spacing:48.746667pt;}
.ls16{letter-spacing:92.160000pt;}
.ls4{letter-spacing:370.058667pt;}
.lse{letter-spacing:479.978667pt;}
.ls11{letter-spacing:749.578667pt;}
.ls15{letter-spacing:815.498667pt;}
.ls12{letter-spacing:825.098667pt;}
.ls13{letter-spacing:951.200000pt;}
.ls14{letter-spacing:1326.325333pt;}
.ws6{word-spacing:-64.000000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws1{word-spacing:-14.313067pt;}
.ws0{word-spacing:-13.534613pt;}
.ws3{word-spacing:-10.720000pt;}
.ws4{word-spacing:-10.400000pt;}
.ws5{word-spacing:0.000000pt;}
._16{margin-left:-2.084267pt;}
._0{margin-left:-1.088000pt;}
._1{width:1.088000pt;}
._2{width:2.133333pt;}
._5{width:3.285333pt;}
._4{width:4.302507pt;}
._3{width:5.299200pt;}
._6{width:6.502400pt;}
._14{width:7.552000pt;}
._15{width:8.462933pt;}
._7{width:9.408000pt;}
._8{width:10.432000pt;}
._b{width:11.498667pt;}
._18{width:13.064533pt;}
._d{width:14.080000pt;}
._e{width:15.104000pt;}
._a{width:17.024000pt;}
._9{width:18.048000pt;}
._c{width:19.712000pt;}
._10{width:20.736000pt;}
._11{width:21.696000pt;}
._13{width:22.720000pt;}
._12{width:23.680000pt;}
._17{width:24.960000pt;}
._f{width:34.880000pt;}
._1b{width:64.138667pt;}
._1c{width:176.000000pt;}
._1a{width:505.162667pt;}
._19{width:1040.202667pt;}
.fs4{font-size:42.880000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y12a{bottom:0.800000pt;}
.y130{bottom:3.520000pt;}
.y79{bottom:4.640000pt;}
.y101{bottom:4.680000pt;}
.y76{bottom:4.800000pt;}
.yd2{bottom:4.826667pt;}
.y97{bottom:4.840000pt;}
.yca{bottom:4.960000pt;}
.yd9{bottom:5.280000pt;}
.y5e{bottom:6.080000pt;}
.y62{bottom:6.106667pt;}
.y60{bottom:6.240000pt;}
.y10c{bottom:21.920000pt;}
.yae{bottom:23.040000pt;}
.y85{bottom:23.200000pt;}
.yd1{bottom:23.226667pt;}
.yc6{bottom:23.360000pt;}
.y114{bottom:23.400000pt;}
.y75{bottom:24.480000pt;}
.y77{bottom:24.640000pt;}
.y12f{bottom:40.320000pt;}
.y10b{bottom:41.600000pt;}
.ycf{bottom:41.626667pt;}
.y10d{bottom:41.760000pt;}
.yd0{bottom:41.786667pt;}
.y113{bottom:41.800000pt;}
.ya2{bottom:42.880000pt;}
.y116{bottom:43.040000pt;}
.y2{bottom:51.072000pt;}
.y12e{bottom:58.720000pt;}
.y110{bottom:58.760000pt;}
.y112{bottom:60.200000pt;}
.y1{bottom:68.992000pt;}
.y12d{bottom:77.120000pt;}
.y10f{bottom:78.440000pt;}
.y111{bottom:78.600000pt;}
.y12c{bottom:95.520000pt;}
.yc4{bottom:97.472000pt;}
.y9e{bottom:99.552000pt;}
.y109{bottom:100.832000pt;}
.y30{bottom:107.552000pt;}
.y128{bottom:107.712000pt;}
.y5d{bottom:113.632000pt;}
.y12b{bottom:113.920000pt;}
.y73{bottom:114.432000pt;}
.ye2{bottom:115.072000pt;}
.y108{bottom:119.232000pt;}
.yc3{bottom:119.392000pt;}
.y9d{bottom:121.632000pt;}
.y2f{bottom:125.952000pt;}
.y127{bottom:126.112000pt;}
.y72{bottom:132.832000pt;}
.y5c{bottom:133.152000pt;}
.ye1{bottom:133.466667pt;}
.y107{bottom:137.626667pt;}
.yc2{bottom:141.466667pt;}
.y9c{bottom:143.706667pt;}
.y2e{bottom:144.346667pt;}
.y126{bottom:144.506667pt;}
.ye0{bottom:151.866667pt;}
.y5b{bottom:152.666667pt;}
.y106{bottom:156.026667pt;}
.y2d{bottom:162.746667pt;}
.y125{bottom:162.906667pt;}
.yc1{bottom:163.546667pt;}
.y9b{bottom:165.786667pt;}
.y71{bottom:169.626667pt;}
.ydf{bottom:170.266667pt;}
.y5a{bottom:171.066667pt;}
.y105{bottom:174.426667pt;}
.y2c{bottom:181.146667pt;}
.y124{bottom:181.306667pt;}
.yc0{bottom:185.626667pt;}
.y9a{bottom:187.866667pt;}
.y70{bottom:188.026667pt;}
.yde{bottom:188.666667pt;}
.y59{bottom:190.586667pt;}
.y104{bottom:192.826667pt;}
.y2b{bottom:199.546667pt;}
.y123{bottom:199.706667pt;}
.ydd{bottom:204.986667pt;}
.y6f{bottom:206.426667pt;}
.ybf{bottom:207.706667pt;}
.y103{bottom:208.666667pt;}
.y58{bottom:208.986667pt;}
.y99{bottom:209.786667pt;}
.y2a{bottom:217.946667pt;}
.y122{bottom:218.106667pt;}
.y6e{bottom:224.826667pt;}
.ydc{bottom:227.066667pt;}
.y57{bottom:227.386667pt;}
.ybe{bottom:229.786667pt;}
.y102{bottom:230.746667pt;}
.y98{bottom:231.866667pt;}
.y29{bottom:236.346667pt;}
.y121{bottom:236.506667pt;}
.y6d{bottom:243.226667pt;}
.y56{bottom:245.786667pt;}
.ydb{bottom:248.986667pt;}
.ybd{bottom:251.866667pt;}
.y100{bottom:252.826667pt;}
.y96{bottom:253.946667pt;}
.y28{bottom:254.746667pt;}
.y120{bottom:254.906667pt;}
.y6c{bottom:261.666667pt;}
.y55{bottom:264.226667pt;}
.yda{bottom:271.106667pt;}
.y27{bottom:273.186667pt;}
.y11f{bottom:273.346667pt;}
.ybc{bottom:273.986667pt;}
.yff{bottom:274.946667pt;}
.y95{bottom:276.066667pt;}
.y129{bottom:279.106667pt;}
.y6b{bottom:280.066667pt;}
.y54{bottom:282.626667pt;}
.y26{bottom:291.586667pt;}
.y11e{bottom:291.746667pt;}
.ybb{bottom:296.066667pt;}
.yfe{bottom:297.026667pt;}
.y94{bottom:298.146667pt;}
.y6a{bottom:298.466667pt;}
.y53{bottom:301.026667pt;}
.y25{bottom:309.986667pt;}
.y11d{bottom:310.146667pt;}
.yd8{bottom:311.586667pt;}
.y69{bottom:316.866667pt;}
.yba{bottom:318.146667pt;}
.yfd{bottom:318.946667pt;}
.y52{bottom:319.426667pt;}
.y93{bottom:320.226667pt;}
.y24{bottom:328.386667pt;}
.y11c{bottom:328.546667pt;}
.yd7{bottom:334.146667pt;}
.y68{bottom:336.866667pt;}
.y51{bottom:337.826667pt;}
.yb9{bottom:340.226667pt;}
.yfc{bottom:341.026667pt;}
.y92{bottom:342.306667pt;}
.y23{bottom:346.786667pt;}
.y11b{bottom:346.946667pt;}
.y50{bottom:356.226667pt;}
.y67{bottom:359.906667pt;}
.yb8{bottom:362.146667pt;}
.yfb{bottom:363.106667pt;}
.y91{bottom:364.386667pt;}
.y22{bottom:365.186667pt;}
.y11a{bottom:366.466667pt;}
.y4f{bottom:374.626667pt;}
.yd6{bottom:378.306667pt;}
.y21{bottom:383.586667pt;}
.yb7{bottom:384.226667pt;}
.y66{bottom:384.386667pt;}
.yfa{bottom:385.186667pt;}
.y90{bottom:386.466667pt;}
.y119{bottom:387.746667pt;}
.y4e{bottom:393.026667pt;}
.yd5{bottom:400.386667pt;}
.y20{bottom:401.986667pt;}
.yb6{bottom:406.306667pt;}
.y8f{bottom:408.546667pt;}
.y65{bottom:408.706667pt;}
.yf9{bottom:411.106667pt;}
.y4d{bottom:411.426667pt;}
.y1f{bottom:420.386667pt;}
.yd4{bottom:422.466667pt;}
.yb5{bottom:428.386667pt;}
.y4c{bottom:429.826667pt;}
.y64{bottom:433.186667pt;}
.y8e{bottom:434.466667pt;}
.y1e{bottom:438.786667pt;}
.yf8{bottom:447.906667pt;}
.y4b{bottom:448.226667pt;}
.yb4{bottom:450.466667pt;}
.y1d{bottom:457.186667pt;}
.y63{bottom:457.506667pt;}
.yd3{bottom:462.946667pt;}
.yf7{bottom:466.306667pt;}
.y4a{bottom:466.626667pt;}
.y8d{bottom:471.266667pt;}
.yb3{bottom:472.546667pt;}
.y1c{bottom:475.586667pt;}
.y61{bottom:481.986667pt;}
.yf6{bottom:484.706667pt;}
.y49{bottom:485.026667pt;}
.y8c{bottom:489.693333pt;}
.y1b{bottom:494.013333pt;}
.yb2{bottom:494.653333pt;}
.yf5{bottom:503.133333pt;}
.y48{bottom:503.453333pt;}
.y5f{bottom:506.333333pt;}
.y8b{bottom:508.093333pt;}
.y1a{bottom:512.413333pt;}
.yb1{bottom:516.733333pt;}
.yf4{bottom:521.533333pt;}
.y47{bottom:521.853333pt;}
.y8a{bottom:526.493333pt;}
.y19{bottom:530.813333pt;}
.yb0{bottom:538.813333pt;}
.yf3{bottom:539.933333pt;}
.y46{bottom:540.253333pt;}
.yce{bottom:543.933333pt;}
.y89{bottom:544.893333pt;}
.y118{bottom:548.573333pt;}
.y18{bottom:549.213333pt;}
.yf2{bottom:558.333333pt;}
.y45{bottom:558.653333pt;}
.yaf{bottom:560.893333pt;}
.y88{bottom:563.293333pt;}
.ycd{bottom:566.013333pt;}
.y17{bottom:567.613333pt;}
.yf1{bottom:576.733333pt;}
.y44{bottom:577.053333pt;}
.y87{bottom:581.693333pt;}
.yad{bottom:582.973333pt;}
.y16{bottom:586.013333pt;}
.ycc{bottom:588.093333pt;}
.y117{bottom:590.333333pt;}
.yf0{bottom:595.133333pt;}
.y43{bottom:595.453333pt;}
.y86{bottom:599.933333pt;}
.y15{bottom:604.413333pt;}
.ycb{bottom:610.173333pt;}
.yef{bottom:613.533333pt;}
.y42{bottom:613.853333pt;}
.y84{bottom:615.933333pt;}
.y14{bottom:622.813333pt;}
.yee{bottom:631.933333pt;}
.y41{bottom:632.253333pt;}
.y13{bottom:641.213333pt;}
.yac{bottom:645.533333pt;}
.y115{bottom:649.213333pt;}
.yed{bottom:650.333333pt;}
.yc9{bottom:650.493333pt;}
.y40{bottom:650.653333pt;}
.y83{bottom:656.733333pt;}
.y12{bottom:659.613333pt;}
.yab{bottom:663.933333pt;}
.yec{bottom:668.733333pt;}
.y3f{bottom:669.053333pt;}
.y11{bottom:678.013333pt;}
.y82{bottom:678.813333pt;}
.yaa{bottom:682.333333pt;}
.y3e{bottom:687.453333pt;}
.yeb{bottom:688.253333pt;}
.yc8{bottom:690.973333pt;}
.y10{bottom:695.133333pt;}
.ya9{bottom:700.733333pt;}
.y81{bottom:700.893333pt;}
.y3d{bottom:705.853333pt;}
.yf{bottom:708.573333pt;}
.y10e{bottom:709.373333pt;}
.yea{bottom:709.533333pt;}
.yc7{bottom:713.053333pt;}
.ya8{bottom:719.173333pt;}
.y80{bottom:722.853333pt;}
.y3c{bottom:724.293333pt;}
.ye{bottom:725.733333pt;}
.ye9{bottom:731.653333pt;}
.yc5{bottom:735.173333pt;}
.ya7{bottom:737.573333pt;}
.y3b{bottom:742.693333pt;}
.y7f{bottom:744.933333pt;}
.ye8{bottom:753.733333pt;}
.yd{bottom:754.853333pt;}
.ya6{bottom:755.973333pt;}
.y3a{bottom:761.093333pt;}
.y7e{bottom:767.013333pt;}
.yc{bottom:768.133333pt;}
.ya5{bottom:774.373333pt;}
.ye7{bottom:775.653333pt;}
.y39{bottom:779.493333pt;}
.yb{bottom:785.253333pt;}
.y7d{bottom:789.093333pt;}
.ya4{bottom:792.773333pt;}
.ye6{bottom:797.733333pt;}
.y38{bottom:797.893333pt;}
.y10a{bottom:805.093333pt;}
.ya{bottom:807.653333pt;}
.y7c{bottom:811.173333pt;}
.ya3{bottom:812.453333pt;}
.y37{bottom:816.293333pt;}
.y9{bottom:816.453333pt;}
.ye5{bottom:819.813333pt;}
.y7b{bottom:833.253333pt;}
.y36{bottom:834.693333pt;}
.y8{bottom:836.133333pt;}
.ye4{bottom:841.893333pt;}
.y35{bottom:853.093333pt;}
.y7a{bottom:855.333333pt;}
.y7{bottom:858.853333pt;}
.ye3{bottom:863.973333pt;}
.y34{bottom:871.493333pt;}
.y78{bottom:877.413333pt;}
.y6{bottom:883.333333pt;}
.y33{bottom:889.893333pt;}
.ya1{bottom:893.733333pt;}
.y74{bottom:899.493333pt;}
.y5{bottom:907.333333pt;}
.y32{bottom:908.293333pt;}
.ya0{bottom:915.813333pt;}
.y31{bottom:926.693333pt;}
.y4{bottom:927.973333pt;}
.y9f{bottom:937.893333pt;}
.y3{bottom:945.093333pt;}
.h13{height:20.960000pt;}
.h15{height:20.992000pt;}
.h14{height:21.120000pt;}
.h17{height:21.152000pt;}
.h1b{height:21.600000pt;}
.he{height:23.680000pt;}
.h10{height:23.712000pt;}
.hf{height:23.840000pt;}
.h16{height:39.360000pt;}
.h19{height:39.520000pt;}
.h12{height:40.800000pt;}
.h1f{height:40.832000pt;}
.h9{height:42.063437pt;}
.h6{height:42.084375pt;}
.h7{height:43.380000pt;}
.hc{height:44.687500pt;}
.h3{height:57.787500pt;}
.h1d{height:57.920000pt;}
.h1a{height:57.952000pt;}
.h1{height:58.563750pt;}
.h18{height:59.200000pt;}
.h8{height:62.781250pt;}
.ha{height:62.812500pt;}
.h2{height:64.500000pt;}
.hd{height:65.781915pt;}
.hb{height:66.625000pt;}
.h4{height:75.465000pt;}
.h5{height:85.785000pt;}
.h11{height:94.218750pt;}
.h1e{height:94.752000pt;}
.h20{height:128.800000pt;}
.h1c{height:136.412500pt;}
.h0{height:1056.000000pt;}
.w18{width:42.240000pt;}
.w2{width:50.560000pt;}
.w13{width:53.120000pt;}
.w8{width:54.240000pt;}
.we{width:60.160000pt;}
.w28{width:75.680000pt;}
.w1c{width:88.960000pt;}
.w1b{width:97.952000pt;}
.w29{width:106.400000pt;}
.w16{width:113.120000pt;}
.w1f{width:114.240000pt;}
.w20{width:114.272000pt;}
.w1e{width:114.752000pt;}
.w19{width:118.752000pt;}
.w15{width:119.232000pt;}
.w6{width:131.712000pt;}
.w4{width:136.666667pt;}
.w3{width:141.946667pt;}
.w5{width:142.240000pt;}
.wa{width:149.146667pt;}
.wb{width:152.506667pt;}
.w21{width:157.466667pt;}
.w11{width:167.066667pt;}
.w10{width:179.066667pt;}
.w23{width:180.666667pt;}
.w24{width:180.826667pt;}
.w22{width:181.146667pt;}
.wf{width:209.146667pt;}
.w25{width:235.866667pt;}
.w26{width:251.066667pt;}
.w9{width:251.546667pt;}
.w27{width:253.666667pt;}
.w1a{width:274.266667pt;}
.wc{width:306.266667pt;}
.w14{width:329.186667pt;}
.w7{width:330.466667pt;}
.w17{width:383.266667pt;}
.w1d{width:393.986667pt;}
.w2a{width:518.973333pt;}
.wd{width:609.693333pt;}
.w12{width:618.333333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:6.720000pt;}
.x13{left:8.480000pt;}
.xd{left:10.880000pt;}
.x15{left:12.640000pt;}
.x2f{left:13.760000pt;}
.x21{left:17.120000pt;}
.x2b{left:19.040000pt;}
.x16{left:21.120000pt;}
.x3a{left:22.080000pt;}
.x24{left:23.200000pt;}
.x34{left:26.080000pt;}
.x3b{left:27.680000pt;}
.x33{left:30.400000pt;}
.x1f{left:31.840000pt;}
.x49{left:34.400000pt;}
.x22{left:35.386667pt;}
.x4a{left:36.960000pt;}
.x43{left:38.560000pt;}
.x11{left:41.600000pt;}
.x40{left:43.200000pt;}
.x48{left:44.960000pt;}
.x41{left:46.560000pt;}
.x19{left:47.880000pt;}
.x4f{left:49.120000pt;}
.x42{left:51.680000pt;}
.x50{left:53.146667pt;}
.xf{left:54.080000pt;}
.x20{left:56.000000pt;}
.x57{left:56.960000pt;}
.x1a{left:59.040000pt;}
.x17{left:60.320000pt;}
.x18{left:63.040000pt;}
.x2d{left:64.360000pt;}
.x26{left:66.426667pt;}
.x38{left:69.480000pt;}
.x28{left:70.426667pt;}
.x3c{left:71.560000pt;}
.x36{left:73.480000pt;}
.x56{left:74.554667pt;}
.x37{left:77.466667pt;}
.x55{left:79.680000pt;}
.x39{left:81.466667pt;}
.x3d{left:82.880000pt;}
.x27{left:84.000000pt;}
.x35{left:85.466667pt;}
.x54{left:86.720000pt;}
.x5c{left:88.832000pt;}
.x59{left:91.706667pt;}
.x2{left:96.031988pt;}
.x5d{left:99.194667pt;}
.x4{left:100.191988pt;}
.x1c{left:101.312000pt;}
.xc{left:102.432000pt;}
.x29{left:106.920000pt;}
.x3{left:107.871988pt;}
.x6{left:109.951988pt;}
.x2a{left:111.400000pt;}
.x25{left:113.160000pt;}
.x2c{left:114.440000pt;}
.xa{left:120.031988pt;}
.x5b{left:126.111988pt;}
.xb{left:144.026655pt;}
.xe{left:153.626667pt;}
.x1e{left:156.026667pt;}
.x2e{left:159.066655pt;}
.x30{left:162.426667pt;}
.x7{left:167.386655pt;}
.x5e{left:195.226667pt;}
.x1b{left:220.346655pt;}
.x4b{left:259.746667pt;}
.x45{left:263.746667pt;}
.x10{left:296.226667pt;}
.x44{left:298.466655pt;}
.x51{left:305.506655pt;}
.x8{left:321.346655pt;}
.x52{left:338.146667pt;}
.x31{left:372.546667pt;}
.x4c{left:374.946667pt;}
.x9{left:380.386655pt;}
.x58{left:396.546667pt;}
.x1{left:400.546655pt;}
.x5{left:408.066655pt;}
.x12{left:433.533333pt;}
.x3e{left:486.493333pt;}
.x4d{left:490.173333pt;}
.x53{left:519.773333pt;}
.x46{left:538.973333pt;}
.x32{left:552.573333pt;}
.x23{left:558.493333pt;}
.x14{left:576.413333pt;}
.x4e{left:605.413333pt;}
.x3f{left:606.533333pt;}
.x47{left:637.893333pt;}
.x5a{left:651.173333pt;}
}




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