
    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_b26d47ff91567024632e0c10.woff')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_6179682d2c46f9eb476c5e61.woff')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_330f9760b7cfbb9188e3f282.woff')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_b8c7199508e1088c1f356520.woff')format("woff");}.ff4{font-family:ff4;line-height:0.706543;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_8013a83ba10e6b422adae5b9.woff')format("woff");}.ff5{font-family:ff5;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f2bdcd5f9199f62d649599b7.woff')format("woff");}.ff6{font-family:ff6;line-height:0.708008;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_24fa82262ff97a7d1a4b3bf7.woff')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_9154edcf8418c56ce03a19d4.woff')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_65722847b31133e041e10a80.woff')format("woff");}.ff9{font-family:ff9;line-height:1.128418;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_cbc07b1c6ce02f9d1eb53a91.woff')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{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;}
.v2{vertical-align:20.880000px;}
.v1{vertical-align:30.240000px;}
.lse{letter-spacing:-0.936000px;}
.ls10{letter-spacing:-0.513600px;}
.ls14{letter-spacing:-0.288000px;}
.ls16{letter-spacing:-0.216000px;}
.ls13{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.017280px;}
.ls8{letter-spacing:-0.008640px;}
.ls5{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.008640px;}
.ls2{letter-spacing:0.012960px;}
.ls3{letter-spacing:0.017280px;}
.lsb{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.150000px;}
.ls0{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.513600px;}
.ls7{letter-spacing:0.666000px;}
.ls17{letter-spacing:0.720000px;}
.lsf{letter-spacing:3.600000px;}
.ls9{letter-spacing:5.760000px;}
.lsd{letter-spacing:10.800000px;}
.ls12{letter-spacing:57.024000px;}
.ls11{letter-spacing:61.344000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-19.457280px;}
.ws8{word-spacing:-19.431360px;}
.ws6{word-spacing:-19.422720px;}
.ws11{word-spacing:-18.720000px;}
.wsf{word-spacing:-18.288000px;}
.ws9{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.856000px;}
.ws10{word-spacing:-17.784000px;}
.wsd{word-spacing:-17.712000px;}
.wsa{word-spacing:-17.064000px;}
.ws1{word-spacing:-15.606000px;}
.ws0{word-spacing:-15.453600px;}
.ws7{word-spacing:-15.300000px;}
.ws2{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.426400px;}
.wse{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._c{margin-left:-4.509120px;}
._b{margin-left:-3.469440px;}
._2{margin-left:-2.165760px;}
._5{margin-left:-1.138560px;}
._0{width:1.015920px;}
._6{width:2.021760px;}
._9{width:3.372480px;}
._4{width:5.174160px;}
._a{width:6.746880px;}
._18{width:8.305200px;}
._12{width:9.336000px;}
._13{width:10.650720px;}
._17{width:11.954400px;}
._f{width:13.505760px;}
._10{width:14.616000px;}
._11{width:15.984000px;}
._e{width:19.080000px;}
._1e{width:20.088000px;}
._7{width:21.096000px;}
._8{width:22.232160px;}
._16{width:23.260080px;}
._19{width:25.128000px;}
._1a{width:26.352000px;}
._1d{width:27.360000px;}
._1c{width:28.368000px;}
._1f{width:29.373840px;}
._14{width:30.744000px;}
._15{width:31.790640px;}
._d{width:33.408000px;}
._1b{width:34.704000px;}
._1{width:532.779360px;}
._3{width:1523.640000px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs7{font-size:40.982709px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y96{bottom:3.765000px;}
.y94{bottom:3.810000px;}
.y9a{bottom:4.140000px;}
.yb1{bottom:4.485000px;}
.y9e{bottom:4.500000px;}
.yaf{bottom:4.545000px;}
.yb9{bottom:14.760000px;}
.ya5{bottom:14.940000px;}
.y92{bottom:18.885000px;}
.yac{bottom:23.805000px;}
.ya6{bottom:25.200000px;}
.yaa{bottom:25.245000px;}
.y9c{bottom:35.640000px;}
.y7{bottom:39.276000px;}
.yab{bottom:44.685000px;}
.ya2{bottom:45.900000px;}
.ya3{bottom:56.340000px;}
.y6{bottom:58.536000px;}
.y2d{bottom:131.076000px;}
.y2c{bottom:136.296000px;}
.y12c{bottom:138.816000px;}
.y58{bottom:139.356000px;}
.y129{bottom:140.436000px;}
.y80{bottom:148.176000px;}
.y2b{bottom:149.256000px;}
.yff{bottom:159.870000px;}
.y57{bottom:160.050000px;}
.y98{bottom:162.930000px;}
.yd6{bottom:166.710000px;}
.y7f{bottom:168.870000px;}
.y2a{bottom:179.130000px;}
.y12b{bottom:179.490000px;}
.y56{bottom:180.750000px;}
.y7e{bottom:189.570000px;}
.yc7{bottom:191.370000px;}
.yfe{bottom:196.245000px;}
.y143{bottom:199.290000px;}
.y29{bottom:199.830000px;}
.y12a{bottom:200.190000px;}
.y55{bottom:201.450000px;}
.y97{bottom:201.810000px;}
.yd5{bottom:205.410000px;}
.y7d{bottom:210.270000px;}
.yfd{bottom:216.945000px;}
.y142{bottom:219.990000px;}
.y28{bottom:220.530000px;}
.y128{bottom:220.890000px;}
.y54{bottom:222.150000px;}
.y7c{bottom:230.970000px;}
.yc6{bottom:231.330000px;}
.y91{bottom:236.025000px;}
.yfc{bottom:237.645000px;}
.y141{bottom:240.690000px;}
.y27{bottom:241.230000px;}
.y127{bottom:241.590000px;}
.y53{bottom:242.850000px;}
.yd4{bottom:244.110000px;}
.y7b{bottom:251.670000px;}
.y95{bottom:253.305000px;}
.yfb{bottom:258.345000px;}
.y26{bottom:261.930000px;}
.y126{bottom:262.290000px;}
.y52{bottom:263.550000px;}
.y93{bottom:270.585000px;}
.yc5{bottom:272.010000px;}
.y7a{bottom:272.415000px;}
.yd3{bottom:278.355000px;}
.yfa{bottom:279.075000px;}
.y140{bottom:279.435000px;}
.y25{bottom:282.675000px;}
.y125{bottom:283.035000px;}
.y51{bottom:284.295000px;}
.y90{bottom:287.895000px;}
.yc4{bottom:292.755000px;}
.y79{bottom:293.115000px;}
.yf9{bottom:299.775000px;}
.y13f{bottom:300.135000px;}
.y24{bottom:303.375000px;}
.y124{bottom:303.735000px;}
.y50{bottom:304.995000px;}
.yc3{bottom:313.455000px;}
.y78{bottom:313.815000px;}
.yf8{bottom:320.475000px;}
.y23{bottom:324.075000px;}
.y123{bottom:324.435000px;}
.y13e{bottom:338.835000px;}
.yf7{bottom:341.175000px;}
.y4f{bottom:343.695000px;}
.y22{bottom:344.775000px;}
.y122{bottom:345.135000px;}
.yc2{bottom:347.655000px;}
.y77{bottom:352.695000px;}
.y13d{bottom:359.535000px;}
.yf6{bottom:361.875000px;}
.y4e{bottom:364.395000px;}
.y21{bottom:365.475000px;}
.y121{bottom:365.835000px;}
.yc1{bottom:368.355000px;}
.y13c{bottom:380.235000px;}
.yf5{bottom:382.575000px;}
.y4d{bottom:385.095000px;}
.y20{bottom:386.175000px;}
.y120{bottom:386.535000px;}
.y76{bottom:392.835000px;}
.yf4{bottom:403.275000px;}
.y4c{bottom:405.795000px;}
.y1f{bottom:406.875000px;}
.y11f{bottom:407.235000px;}
.y75{bottom:413.535000px;}
.y13b{bottom:418.935000px;}
.yf3{bottom:423.975000px;}
.y4b{bottom:426.495000px;}
.y1e{bottom:427.575000px;}
.y11e{bottom:427.935000px;}
.yc0{bottom:432.075000px;}
.y74{bottom:434.235000px;}
.y13a{bottom:439.635000px;}
.yf2{bottom:444.675000px;}
.y4a{bottom:447.195000px;}
.y1d{bottom:448.275000px;}
.y11d{bottom:448.635000px;}
.y73{bottom:454.935000px;}
.y139{bottom:460.335000px;}
.yf1{bottom:465.375000px;}
.ybf{bottom:467.535000px;}
.y49{bottom:467.895000px;}
.y1c{bottom:468.975000px;}
.y11c{bottom:469.335000px;}
.y72{bottom:475.635000px;}
.yf0{bottom:486.075000px;}
.y48{bottom:488.595000px;}
.y1b{bottom:489.675000px;}
.y11b{bottom:490.035000px;}
.y71{bottom:496.335000px;}
.y138{bottom:499.035000px;}
.yef{bottom:506.775000px;}
.y47{bottom:509.295000px;}
.y1a{bottom:510.375000px;}
.y11a{bottom:510.735000px;}
.ybe{bottom:511.995000px;}
.y70{bottom:517.035000px;}
.y137{bottom:519.735000px;}
.yee{bottom:527.475000px;}
.y46{bottom:529.995000px;}
.y19{bottom:531.075000px;}
.y119{bottom:531.435000px;}
.ybd{bottom:532.695000px;}
.y6f{bottom:537.735000px;}
.yed{bottom:548.175000px;}
.y45{bottom:550.695000px;}
.y18{bottom:551.775000px;}
.y118{bottom:552.135000px;}
.y6e{bottom:558.465000px;}
.yec{bottom:568.905000px;}
.y44{bottom:571.425000px;}
.y17{bottom:572.505000px;}
.y117{bottom:572.865000px;}
.y6d{bottom:579.165000px;}
.yeb{bottom:589.605000px;}
.ybc{bottom:592.125000px;}
.y116{bottom:593.565000px;}
.y6c{bottom:599.865000px;}
.y43{bottom:610.125000px;}
.yea{bottom:610.305000px;}
.y16{bottom:611.025000px;}
.ybb{bottom:612.825000px;}
.y115{bottom:614.265000px;}
.y136{bottom:620.565000px;}
.y42{bottom:630.825000px;}
.y114{bottom:634.965000px;}
.y6b{bottom:638.925000px;}
.yb6{bottom:647.745000px;}
.y8f{bottom:649.725000px;}
.y15{bottom:651.345000px;}
.y41{bottom:651.525000px;}
.ye9{bottom:651.705000px;}
.y113{bottom:655.665000px;}
.y135{bottom:659.265000px;}
.yba{bottom:668.445000px;}
.y8e{bottom:669.165000px;}
.y40{bottom:672.225000px;}
.ye8{bottom:673.125000px;}
.y6a{bottom:679.065000px;}
.y134{bottom:679.965000px;}
.yb8{bottom:689.145000px;}
.y8d{bottom:689.865000px;}
.y14f{bottom:690.585000px;}
.y14{bottom:692.385000px;}
.y112{bottom:694.545000px;}
.y69{bottom:699.765000px;}
.y133{bottom:700.665000px;}
.ye7{bottom:708.045000px;}
.y8c{bottom:710.565000px;}
.y3f{bottom:710.925000px;}
.y13{bottom:714.885000px;}
.y68{bottom:720.465000px;}
.y14e{bottom:729.285000px;}
.yb7{bottom:730.545000px;}
.y3e{bottom:731.625000px;}
.y111{bottom:734.685000px;}
.y12{bottom:737.565000px;}
.y132{bottom:739.185000px;}
.y67{bottom:741.165000px;}
.ye6{bottom:746.745000px;}
.y8b{bottom:749.445000px;}
.yb2{bottom:751.965000px;}
.yb5{bottom:751.980000px;}
.y3d{bottom:752.325000px;}
.y110{bottom:755.385000px;}
.y66{bottom:761.865000px;}
.ye5{bottom:767.445000px;}
.y14d{bottom:767.985000px;}
.yb4{bottom:772.665000px;}
.y3c{bottom:773.025000px;}
.y10f{bottom:776.085000px;}
.yd2{bottom:777.885000px;}
.y11{bottom:779.325000px;}
.y131{bottom:779.865000px;}
.y65{bottom:782.565000px;}
.ye4{bottom:788.145000px;}
.y14c{bottom:788.685000px;}
.y8a{bottom:789.585000px;}
.yb3{bottom:793.365000px;}
.y3b{bottom:793.545000px;}
.y10e{bottom:796.785000px;}
.yd1{bottom:798.585000px;}
.y130{bottom:800.565000px;}
.y10{bottom:801.825000px;}
.ye3{bottom:808.845000px;}
.y89{bottom:810.285000px;}
.y3a{bottom:814.245000px;}
.ya9{bottom:814.785000px;}
.yb0{bottom:814.800000px;}
.y10d{bottom:817.485000px;}
.yd0{bottom:819.285000px;}
.y12f{bottom:821.265000px;}
.y64{bottom:821.445000px;}
.ye{bottom:824.505000px;}
.y14b{bottom:827.385000px;}
.ye2{bottom:829.545000px;}
.y88{bottom:830.985000px;}
.yf{bottom:832.065000px;}
.y39{bottom:834.945000px;}
.yae{bottom:835.485000px;}
.y10c{bottom:838.185000px;}
.ycf{bottom:840.030000px;}
.y14a{bottom:848.130000px;}
.ye1{bottom:850.290000px;}
.y87{bottom:851.730000px;}
.y38{bottom:855.690000px;}
.yad{bottom:856.230000px;}
.y10b{bottom:858.930000px;}
.y12e{bottom:859.650000px;}
.yce{bottom:860.730000px;}
.y63{bottom:861.630000px;}
.yd{bottom:868.290000px;}
.y86{bottom:872.430000px;}
.y37{bottom:876.390000px;}
.ya1{bottom:877.650000px;}
.y10a{bottom:879.630000px;}
.ycd{bottom:881.430000px;}
.y62{bottom:882.330000px;}
.y149{bottom:886.830000px;}
.ye0{bottom:890.610000px;}
.y85{bottom:893.130000px;}
.y36{bottom:897.090000px;}
.ya8{bottom:898.350000px;}
.y109{bottom:900.330000px;}
.ycc{bottom:902.130000px;}
.ydf{bottom:905.190000px;}
.y148{bottom:907.530000px;}
.y84{bottom:913.830000px;}
.y35{bottom:917.790000px;}
.ya7{bottom:919.050000px;}
.yc{bottom:920.670000px;}
.y61{bottom:920.850000px;}
.y108{bottom:921.030000px;}
.ycb{bottom:922.830000px;}
.yde{bottom:925.890000px;}
.y83{bottom:934.530000px;}
.y34{bottom:938.490000px;}
.ya4{bottom:939.750000px;}
.y107{bottom:941.730000px;}
.yca{bottom:943.530000px;}
.y147{bottom:946.230000px;}
.ydd{bottom:946.590000px;}
.yb{bottom:955.230000px;}
.y60{bottom:961.530000px;}
.y106{bottom:962.430000px;}
.yc9{bottom:964.230000px;}
.y146{bottom:966.930000px;}
.ydc{bottom:967.290000px;}
.y82{bottom:973.050000px;}
.y33{bottom:977.010000px;}
.y9b{bottom:981.870000px;}
.y5f{bottom:982.230000px;}
.y105{bottom:983.130000px;}
.yc8{bottom:984.930000px;}
.ydb{bottom:987.990000px;}
.ya{bottom:989.790000px;}
.ya0{bottom:1002.570000px;}
.y5e{bottom:1002.930000px;}
.y104{bottom:1003.830000px;}
.y145{bottom:1005.630000px;}
.yda{bottom:1008.690000px;}
.y81{bottom:1009.230000px;}
.y32{bottom:1016.970000px;}
.y9f{bottom:1023.270000px;}
.y5d{bottom:1023.630000px;}
.y9{bottom:1024.170000px;}
.y103{bottom:1024.530000px;}
.y144{bottom:1026.330000px;}
.yd9{bottom:1029.390000px;}
.y31{bottom:1034.250000px;}
.y9d{bottom:1043.970000px;}
.y5c{bottom:1044.330000px;}
.y102{bottom:1045.230000px;}
.yd8{bottom:1050.090000px;}
.y30{bottom:1051.350000px;}
.y5b{bottom:1065.030000px;}
.y99{bottom:1065.390000px;}
.y101{bottom:1065.930000px;}
.y2f{bottom:1068.630000px;}
.yd7{bottom:1071.510000px;}
.y8{bottom:1076.730000px;}
.y5a{bottom:1085.730000px;}
.y12d{bottom:1104.450000px;}
.y2e{bottom:1104.630000px;}
.y100{bottom:1104.990000px;}
.y59{bottom:1106.430000px;}
.y5{bottom:1126.080000px;}
.y4{bottom:1143.720000px;}
.y3{bottom:1160.820000px;}
.y2{bottom:1178.100000px;}
.y1{bottom:1195.380000px;}
.h17{height:17.265000px;}
.h16{height:17.301000px;}
.h18{height:20.685000px;}
.h1f{height:20.700000px;}
.h26{height:20.721000px;}
.h1d{height:20.722500px;}
.h25{height:20.730000px;}
.hf{height:28.455767px;}
.ha{height:37.494141px;}
.h23{height:38.685000px;}
.h1b{height:41.385000px;}
.h21{height:41.400000px;}
.h6{height:41.756133px;}
.h4{height:45.184219px;}
.h15{height:51.861000px;}
.h5{height:53.640000px;}
.h10{height:58.621992px;}
.h2{height:58.651172px;}
.h24{height:59.038594px;}
.h3{height:60.226875px;}
.h1e{height:62.100000px;}
.h1c{height:62.122500px;}
.h14{height:65.010937px;}
.h12{height:65.707031px;}
.he{height:70.664062px;}
.h13{height:72.562500px;}
.h22{height:74.004654px;}
.h11{height:76.279219px;}
.hb{height:76.317188px;}
.hd{height:78.367500px;}
.h8{height:82.676953px;}
.h19{height:82.785000px;}
.hc{height:83.238047px;}
.h1a{height:103.485000px;}
.h20{height:103.500000px;}
.h7{height:121.179375px;}
.h9{height:1262.864960px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:24.645000px;}
.wf{width:28.980000px;}
.w5{width:32.925000px;}
.w12{width:35.460000px;}
.w8{width:41.931000px;}
.wb{width:46.620000px;}
.w1a{width:49.485000px;}
.w1c{width:49.521000px;}
.w4{width:59.211000px;}
.w1b{width:67.485000px;}
.w16{width:74.016000px;}
.w1d{width:81.885000px;}
.w19{width:85.896000px;}
.w17{width:99.525000px;}
.w14{width:99.561000px;}
.w15{width:117.720000px;}
.w2{width:125.460000px;}
.we{width:177.135000px;}
.w9{width:192.075000px;}
.wd{width:192.090000px;}
.w11{width:204.681000px;}
.w7{width:281.580000px;}
.w18{width:315.021000px;}
.wc{width:353.595000px;}
.wa{width:400.935000px;}
.w13{width:405.960000px;}
.w10{width:414.615000px;}
.w3{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:8.091000px;}
.x35{left:9.900000px;}
.x48{left:11.145000px;}
.x22{left:12.240000px;}
.x2a{left:13.320000px;}
.x20{left:16.371000px;}
.x45{left:19.245000px;}
.x3c{left:20.700000px;}
.x3d{left:21.780000px;}
.x49{left:24.465000px;}
.x3b{left:25.770000px;}
.x47{left:27.000000px;}
.x39{left:29.685000px;}
.x4a{left:33.645000px;}
.x28{left:37.245000px;}
.x4b{left:41.040000px;}
.x24{left:43.005000px;}
.x25{left:46.965000px;}
.x2{left:50.399998px;}
.x38{left:51.480000px;}
.x26{left:52.905000px;}
.x21{left:56.505000px;}
.x1e{left:59.025000px;}
.x3a{left:63.900000px;}
.x3e{left:68.400000px;}
.x27{left:70.545000px;}
.x1{left:127.656000px;}
.x5{left:129.456000px;}
.x13{left:132.516000px;}
.x2c{left:135.765000px;}
.x4{left:137.736000px;}
.x14{left:148.896000px;}
.x11{left:159.510000px;}
.xb{left:161.490000px;}
.xe{left:163.650000px;}
.x6{left:166.170000px;}
.x1d{left:171.045000px;}
.x10{left:180.750000px;}
.x18{left:186.885000px;}
.x40{left:189.390000px;}
.x19{left:219.825000px;}
.xf{left:221.070000px;}
.x7{left:225.750000px;}
.x3f{left:235.650000px;}
.x30{left:239.790000px;}
.xc{left:243.390000px;}
.x1a{left:244.485000px;}
.x33{left:250.065000px;}
.x1b{left:273.450000px;}
.x29{left:304.815000px;}
.x32{left:311.835000px;}
.x2b{left:333.795000px;}
.x2d{left:340.455000px;}
.x12{left:343.695000px;}
.x8{left:346.395000px;}
.xd{left:348.015000px;}
.x34{left:350.355000px;}
.x1c{left:356.295000px;}
.x1f{left:363.855000px;}
.x2e{left:375.915000px;}
.x23{left:411.195000px;}
.x41{left:444.315000px;}
.x31{left:446.655000px;}
.x3{left:457.275000px;}
.x36{left:468.795000px;}
.x42{left:531.120000px;}
.x37{left:543.540000px;}
.x9{left:561.142500px;}
.xa{left:568.005000px;}
.x43{left:581.340000px;}
.x44{left:649.560000px;}
.x15{left:686.850000px;}
.x46{left:699.810000px;}
.x16{left:801.510000px;}
.x2f{left:819.510000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.v1{vertical-align:26.880000pt;}
.lse{letter-spacing:-0.832000pt;}
.ls10{letter-spacing:-0.456533pt;}
.ls14{letter-spacing:-0.256000pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls13{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.015360pt;}
.ls8{letter-spacing:-0.007680pt;}
.ls5{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.007680pt;}
.ls2{letter-spacing:0.011520pt;}
.ls3{letter-spacing:0.015360pt;}
.lsb{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.133333pt;}
.ls0{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.456533pt;}
.ls7{letter-spacing:0.592000pt;}
.ls17{letter-spacing:0.640000pt;}
.lsf{letter-spacing:3.200000pt;}
.ls9{letter-spacing:5.120000pt;}
.lsd{letter-spacing:9.600000pt;}
.ls12{letter-spacing:50.688000pt;}
.ls11{letter-spacing:54.528000pt;}
.ws3{word-spacing:-17.295360pt;}
.ws8{word-spacing:-17.272320pt;}
.ws6{word-spacing:-17.264640pt;}
.ws11{word-spacing:-16.640000pt;}
.wsf{word-spacing:-16.256000pt;}
.ws9{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.872000pt;}
.ws10{word-spacing:-15.808000pt;}
.wsd{word-spacing:-15.744000pt;}
.wsa{word-spacing:-15.168000pt;}
.ws1{word-spacing:-13.872000pt;}
.ws0{word-spacing:-13.736533pt;}
.ws7{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.280000pt;}
.wsb{word-spacing:-12.823467pt;}
.wse{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._c{margin-left:-4.008107pt;}
._b{margin-left:-3.083947pt;}
._2{margin-left:-1.925120pt;}
._5{margin-left:-1.012053pt;}
._0{width:0.903040pt;}
._6{width:1.797120pt;}
._9{width:2.997760pt;}
._4{width:4.599253pt;}
._a{width:5.997227pt;}
._18{width:7.382400pt;}
._12{width:8.298667pt;}
._13{width:9.467307pt;}
._17{width:10.626133pt;}
._f{width:12.005120pt;}
._10{width:12.992000pt;}
._11{width:14.208000pt;}
._e{width:16.960000pt;}
._1e{width:17.856000pt;}
._7{width:18.752000pt;}
._8{width:19.761920pt;}
._16{width:20.675627pt;}
._19{width:22.336000pt;}
._1a{width:23.424000pt;}
._1d{width:24.320000pt;}
._1c{width:25.216000pt;}
._1f{width:26.110080pt;}
._14{width:27.328000pt;}
._15{width:28.258347pt;}
._d{width:29.696000pt;}
._1b{width:30.848000pt;}
._1{width:473.581653pt;}
._3{width:1354.346667pt;}
.fs8{font-size:34.560000pt;}
.fs7{font-size:36.429074pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y96{bottom:3.346667pt;}
.y94{bottom:3.386667pt;}
.y9a{bottom:3.680000pt;}
.yb1{bottom:3.986667pt;}
.y9e{bottom:4.000000pt;}
.yaf{bottom:4.040000pt;}
.yb9{bottom:13.120000pt;}
.ya5{bottom:13.280000pt;}
.y92{bottom:16.786667pt;}
.yac{bottom:21.160000pt;}
.ya6{bottom:22.400000pt;}
.yaa{bottom:22.440000pt;}
.y9c{bottom:31.680000pt;}
.y7{bottom:34.912000pt;}
.yab{bottom:39.720000pt;}
.ya2{bottom:40.800000pt;}
.ya3{bottom:50.080000pt;}
.y6{bottom:52.032000pt;}
.y2d{bottom:116.512000pt;}
.y2c{bottom:121.152000pt;}
.y12c{bottom:123.392000pt;}
.y58{bottom:123.872000pt;}
.y129{bottom:124.832000pt;}
.y80{bottom:131.712000pt;}
.y2b{bottom:132.672000pt;}
.yff{bottom:142.106667pt;}
.y57{bottom:142.266667pt;}
.y98{bottom:144.826667pt;}
.yd6{bottom:148.186667pt;}
.y7f{bottom:150.106667pt;}
.y2a{bottom:159.226667pt;}
.y12b{bottom:159.546667pt;}
.y56{bottom:160.666667pt;}
.y7e{bottom:168.506667pt;}
.yc7{bottom:170.106667pt;}
.yfe{bottom:174.440000pt;}
.y143{bottom:177.146667pt;}
.y29{bottom:177.626667pt;}
.y12a{bottom:177.946667pt;}
.y55{bottom:179.066667pt;}
.y97{bottom:179.386667pt;}
.yd5{bottom:182.586667pt;}
.y7d{bottom:186.906667pt;}
.yfd{bottom:192.840000pt;}
.y142{bottom:195.546667pt;}
.y28{bottom:196.026667pt;}
.y128{bottom:196.346667pt;}
.y54{bottom:197.466667pt;}
.y7c{bottom:205.306667pt;}
.yc6{bottom:205.626667pt;}
.y91{bottom:209.800000pt;}
.yfc{bottom:211.240000pt;}
.y141{bottom:213.946667pt;}
.y27{bottom:214.426667pt;}
.y127{bottom:214.746667pt;}
.y53{bottom:215.866667pt;}
.yd4{bottom:216.986667pt;}
.y7b{bottom:223.706667pt;}
.y95{bottom:225.160000pt;}
.yfb{bottom:229.640000pt;}
.y26{bottom:232.826667pt;}
.y126{bottom:233.146667pt;}
.y52{bottom:234.266667pt;}
.y93{bottom:240.520000pt;}
.yc5{bottom:241.786667pt;}
.y7a{bottom:242.146667pt;}
.yd3{bottom:247.426667pt;}
.yfa{bottom:248.066667pt;}
.y140{bottom:248.386667pt;}
.y25{bottom:251.266667pt;}
.y125{bottom:251.586667pt;}
.y51{bottom:252.706667pt;}
.y90{bottom:255.906667pt;}
.yc4{bottom:260.226667pt;}
.y79{bottom:260.546667pt;}
.yf9{bottom:266.466667pt;}
.y13f{bottom:266.786667pt;}
.y24{bottom:269.666667pt;}
.y124{bottom:269.986667pt;}
.y50{bottom:271.106667pt;}
.yc3{bottom:278.626667pt;}
.y78{bottom:278.946667pt;}
.yf8{bottom:284.866667pt;}
.y23{bottom:288.066667pt;}
.y123{bottom:288.386667pt;}
.y13e{bottom:301.186667pt;}
.yf7{bottom:303.266667pt;}
.y4f{bottom:305.506667pt;}
.y22{bottom:306.466667pt;}
.y122{bottom:306.786667pt;}
.yc2{bottom:309.026667pt;}
.y77{bottom:313.506667pt;}
.y13d{bottom:319.586667pt;}
.yf6{bottom:321.666667pt;}
.y4e{bottom:323.906667pt;}
.y21{bottom:324.866667pt;}
.y121{bottom:325.186667pt;}
.yc1{bottom:327.426667pt;}
.y13c{bottom:337.986667pt;}
.yf5{bottom:340.066667pt;}
.y4d{bottom:342.306667pt;}
.y20{bottom:343.266667pt;}
.y120{bottom:343.586667pt;}
.y76{bottom:349.186667pt;}
.yf4{bottom:358.466667pt;}
.y4c{bottom:360.706667pt;}
.y1f{bottom:361.666667pt;}
.y11f{bottom:361.986667pt;}
.y75{bottom:367.586667pt;}
.y13b{bottom:372.386667pt;}
.yf3{bottom:376.866667pt;}
.y4b{bottom:379.106667pt;}
.y1e{bottom:380.066667pt;}
.y11e{bottom:380.386667pt;}
.yc0{bottom:384.066667pt;}
.y74{bottom:385.986667pt;}
.y13a{bottom:390.786667pt;}
.yf2{bottom:395.266667pt;}
.y4a{bottom:397.506667pt;}
.y1d{bottom:398.466667pt;}
.y11d{bottom:398.786667pt;}
.y73{bottom:404.386667pt;}
.y139{bottom:409.186667pt;}
.yf1{bottom:413.666667pt;}
.ybf{bottom:415.586667pt;}
.y49{bottom:415.906667pt;}
.y1c{bottom:416.866667pt;}
.y11c{bottom:417.186667pt;}
.y72{bottom:422.786667pt;}
.yf0{bottom:432.066667pt;}
.y48{bottom:434.306667pt;}
.y1b{bottom:435.266667pt;}
.y11b{bottom:435.586667pt;}
.y71{bottom:441.186667pt;}
.y138{bottom:443.586667pt;}
.yef{bottom:450.466667pt;}
.y47{bottom:452.706667pt;}
.y1a{bottom:453.666667pt;}
.y11a{bottom:453.986667pt;}
.ybe{bottom:455.106667pt;}
.y70{bottom:459.586667pt;}
.y137{bottom:461.986667pt;}
.yee{bottom:468.866667pt;}
.y46{bottom:471.106667pt;}
.y19{bottom:472.066667pt;}
.y119{bottom:472.386667pt;}
.ybd{bottom:473.506667pt;}
.y6f{bottom:477.986667pt;}
.yed{bottom:487.266667pt;}
.y45{bottom:489.506667pt;}
.y18{bottom:490.466667pt;}
.y118{bottom:490.786667pt;}
.y6e{bottom:496.413333pt;}
.yec{bottom:505.693333pt;}
.y44{bottom:507.933333pt;}
.y17{bottom:508.893333pt;}
.y117{bottom:509.213333pt;}
.y6d{bottom:514.813333pt;}
.yeb{bottom:524.093333pt;}
.ybc{bottom:526.333333pt;}
.y116{bottom:527.613333pt;}
.y6c{bottom:533.213333pt;}
.y43{bottom:542.333333pt;}
.yea{bottom:542.493333pt;}
.y16{bottom:543.133333pt;}
.ybb{bottom:544.733333pt;}
.y115{bottom:546.013333pt;}
.y136{bottom:551.613333pt;}
.y42{bottom:560.733333pt;}
.y114{bottom:564.413333pt;}
.y6b{bottom:567.933333pt;}
.yb6{bottom:575.773333pt;}
.y8f{bottom:577.533333pt;}
.y15{bottom:578.973333pt;}
.y41{bottom:579.133333pt;}
.ye9{bottom:579.293333pt;}
.y113{bottom:582.813333pt;}
.y135{bottom:586.013333pt;}
.yba{bottom:594.173333pt;}
.y8e{bottom:594.813333pt;}
.y40{bottom:597.533333pt;}
.ye8{bottom:598.333333pt;}
.y6a{bottom:603.613333pt;}
.y134{bottom:604.413333pt;}
.yb8{bottom:612.573333pt;}
.y8d{bottom:613.213333pt;}
.y14f{bottom:613.853333pt;}
.y14{bottom:615.453333pt;}
.y112{bottom:617.373333pt;}
.y69{bottom:622.013333pt;}
.y133{bottom:622.813333pt;}
.ye7{bottom:629.373333pt;}
.y8c{bottom:631.613333pt;}
.y3f{bottom:631.933333pt;}
.y13{bottom:635.453333pt;}
.y68{bottom:640.413333pt;}
.y14e{bottom:648.253333pt;}
.yb7{bottom:649.373333pt;}
.y3e{bottom:650.333333pt;}
.y111{bottom:653.053333pt;}
.y12{bottom:655.613333pt;}
.y132{bottom:657.053333pt;}
.y67{bottom:658.813333pt;}
.ye6{bottom:663.773333pt;}
.y8b{bottom:666.173333pt;}
.yb2{bottom:668.413333pt;}
.yb5{bottom:668.426667pt;}
.y3d{bottom:668.733333pt;}
.y110{bottom:671.453333pt;}
.y66{bottom:677.213333pt;}
.ye5{bottom:682.173333pt;}
.y14d{bottom:682.653333pt;}
.yb4{bottom:686.813333pt;}
.y3c{bottom:687.133333pt;}
.y10f{bottom:689.853333pt;}
.yd2{bottom:691.453333pt;}
.y11{bottom:692.733333pt;}
.y131{bottom:693.213333pt;}
.y65{bottom:695.613333pt;}
.ye4{bottom:700.573333pt;}
.y14c{bottom:701.053333pt;}
.y8a{bottom:701.853333pt;}
.yb3{bottom:705.213333pt;}
.y3b{bottom:705.373333pt;}
.y10e{bottom:708.253333pt;}
.yd1{bottom:709.853333pt;}
.y130{bottom:711.613333pt;}
.y10{bottom:712.733333pt;}
.ye3{bottom:718.973333pt;}
.y89{bottom:720.253333pt;}
.y3a{bottom:723.773333pt;}
.ya9{bottom:724.253333pt;}
.yb0{bottom:724.266667pt;}
.y10d{bottom:726.653333pt;}
.yd0{bottom:728.253333pt;}
.y12f{bottom:730.013333pt;}
.y64{bottom:730.173333pt;}
.ye{bottom:732.893333pt;}
.y14b{bottom:735.453333pt;}
.ye2{bottom:737.373333pt;}
.y88{bottom:738.653333pt;}
.yf{bottom:739.613333pt;}
.y39{bottom:742.173333pt;}
.yae{bottom:742.653333pt;}
.y10c{bottom:745.053333pt;}
.ycf{bottom:746.693333pt;}
.y14a{bottom:753.893333pt;}
.ye1{bottom:755.813333pt;}
.y87{bottom:757.093333pt;}
.y38{bottom:760.613333pt;}
.yad{bottom:761.093333pt;}
.y10b{bottom:763.493333pt;}
.y12e{bottom:764.133333pt;}
.yce{bottom:765.093333pt;}
.y63{bottom:765.893333pt;}
.yd{bottom:771.813333pt;}
.y86{bottom:775.493333pt;}
.y37{bottom:779.013333pt;}
.ya1{bottom:780.133333pt;}
.y10a{bottom:781.893333pt;}
.ycd{bottom:783.493333pt;}
.y62{bottom:784.293333pt;}
.y149{bottom:788.293333pt;}
.ye0{bottom:791.653333pt;}
.y85{bottom:793.893333pt;}
.y36{bottom:797.413333pt;}
.ya8{bottom:798.533333pt;}
.y109{bottom:800.293333pt;}
.ycc{bottom:801.893333pt;}
.ydf{bottom:804.613333pt;}
.y148{bottom:806.693333pt;}
.y84{bottom:812.293333pt;}
.y35{bottom:815.813333pt;}
.ya7{bottom:816.933333pt;}
.yc{bottom:818.373333pt;}
.y61{bottom:818.533333pt;}
.y108{bottom:818.693333pt;}
.ycb{bottom:820.293333pt;}
.yde{bottom:823.013333pt;}
.y83{bottom:830.693333pt;}
.y34{bottom:834.213333pt;}
.ya4{bottom:835.333333pt;}
.y107{bottom:837.093333pt;}
.yca{bottom:838.693333pt;}
.y147{bottom:841.093333pt;}
.ydd{bottom:841.413333pt;}
.yb{bottom:849.093333pt;}
.y60{bottom:854.693333pt;}
.y106{bottom:855.493333pt;}
.yc9{bottom:857.093333pt;}
.y146{bottom:859.493333pt;}
.ydc{bottom:859.813333pt;}
.y82{bottom:864.933333pt;}
.y33{bottom:868.453333pt;}
.y9b{bottom:872.773333pt;}
.y5f{bottom:873.093333pt;}
.y105{bottom:873.893333pt;}
.yc8{bottom:875.493333pt;}
.ydb{bottom:878.213333pt;}
.ya{bottom:879.813333pt;}
.ya0{bottom:891.173333pt;}
.y5e{bottom:891.493333pt;}
.y104{bottom:892.293333pt;}
.y145{bottom:893.893333pt;}
.yda{bottom:896.613333pt;}
.y81{bottom:897.093333pt;}
.y32{bottom:903.973333pt;}
.y9f{bottom:909.573333pt;}
.y5d{bottom:909.893333pt;}
.y9{bottom:910.373333pt;}
.y103{bottom:910.693333pt;}
.y144{bottom:912.293333pt;}
.yd9{bottom:915.013333pt;}
.y31{bottom:919.333333pt;}
.y9d{bottom:927.973333pt;}
.y5c{bottom:928.293333pt;}
.y102{bottom:929.093333pt;}
.yd8{bottom:933.413333pt;}
.y30{bottom:934.533333pt;}
.y5b{bottom:946.693333pt;}
.y99{bottom:947.013333pt;}
.y101{bottom:947.493333pt;}
.y2f{bottom:949.893333pt;}
.yd7{bottom:952.453333pt;}
.y8{bottom:957.093333pt;}
.y5a{bottom:965.093333pt;}
.y12d{bottom:981.733333pt;}
.y2e{bottom:981.893333pt;}
.y100{bottom:982.213333pt;}
.y59{bottom:983.493333pt;}
.y5{bottom:1000.960000pt;}
.y4{bottom:1016.640000pt;}
.y3{bottom:1031.840000pt;}
.y2{bottom:1047.200000pt;}
.y1{bottom:1062.560000pt;}
.h17{height:15.346667pt;}
.h16{height:15.378667pt;}
.h18{height:18.386667pt;}
.h1f{height:18.400000pt;}
.h26{height:18.418667pt;}
.h1d{height:18.420000pt;}
.h25{height:18.426667pt;}
.hf{height:25.294016pt;}
.ha{height:33.328125pt;}
.h23{height:34.386667pt;}
.h1b{height:36.786667pt;}
.h21{height:36.800000pt;}
.h6{height:37.116563pt;}
.h4{height:40.163750pt;}
.h15{height:46.098667pt;}
.h5{height:47.680000pt;}
.h10{height:52.108438pt;}
.h2{height:52.134375pt;}
.h24{height:52.478750pt;}
.h3{height:53.535000pt;}
.h1e{height:55.200000pt;}
.h1c{height:55.220000pt;}
.h14{height:57.787500pt;}
.h12{height:58.406250pt;}
.he{height:62.812500pt;}
.h13{height:64.500000pt;}
.h22{height:65.781915pt;}
.h11{height:67.803750pt;}
.hb{height:67.837500pt;}
.hd{height:69.660000pt;}
.h8{height:73.490625pt;}
.h19{height:73.586667pt;}
.hc{height:73.989375pt;}
.h1a{height:91.986667pt;}
.h20{height:92.000000pt;}
.h7{height:107.715000pt;}
.h9{height:1122.546631pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:21.906667pt;}
.wf{width:25.760000pt;}
.w5{width:29.266667pt;}
.w12{width:31.520000pt;}
.w8{width:37.272000pt;}
.wb{width:41.440000pt;}
.w1a{width:43.986667pt;}
.w1c{width:44.018667pt;}
.w4{width:52.632000pt;}
.w1b{width:59.986667pt;}
.w16{width:65.792000pt;}
.w1d{width:72.786667pt;}
.w19{width:76.352000pt;}
.w17{width:88.466667pt;}
.w14{width:88.498667pt;}
.w15{width:104.640000pt;}
.w2{width:111.520000pt;}
.we{width:157.453333pt;}
.w9{width:170.733333pt;}
.wd{width:170.746667pt;}
.w11{width:181.938667pt;}
.w7{width:250.293333pt;}
.w18{width:280.018667pt;}
.wc{width:314.306667pt;}
.wa{width:356.386667pt;}
.w13{width:360.853333pt;}
.w10{width:368.546667pt;}
.w3{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:7.192000pt;}
.x35{left:8.800000pt;}
.x48{left:9.906667pt;}
.x22{left:10.880000pt;}
.x2a{left:11.840000pt;}
.x20{left:14.552000pt;}
.x45{left:17.106667pt;}
.x3c{left:18.400000pt;}
.x3d{left:19.360000pt;}
.x49{left:21.746667pt;}
.x3b{left:22.906667pt;}
.x47{left:24.000000pt;}
.x39{left:26.386667pt;}
.x4a{left:29.906667pt;}
.x28{left:33.106667pt;}
.x4b{left:36.480000pt;}
.x24{left:38.226667pt;}
.x25{left:41.746667pt;}
.x2{left:44.799998pt;}
.x38{left:45.760000pt;}
.x26{left:47.026667pt;}
.x21{left:50.226667pt;}
.x1e{left:52.466667pt;}
.x3a{left:56.800000pt;}
.x3e{left:60.800000pt;}
.x27{left:62.706667pt;}
.x1{left:113.472000pt;}
.x5{left:115.072000pt;}
.x13{left:117.792000pt;}
.x2c{left:120.680000pt;}
.x4{left:122.432000pt;}
.x14{left:132.352000pt;}
.x11{left:141.786667pt;}
.xb{left:143.546667pt;}
.xe{left:145.466667pt;}
.x6{left:147.706667pt;}
.x1d{left:152.040000pt;}
.x10{left:160.666667pt;}
.x18{left:166.120000pt;}
.x40{left:168.346667pt;}
.x19{left:195.400000pt;}
.xf{left:196.506667pt;}
.x7{left:200.666667pt;}
.x3f{left:209.466667pt;}
.x30{left:213.146667pt;}
.xc{left:216.346667pt;}
.x1a{left:217.320000pt;}
.x33{left:222.280000pt;}
.x1b{left:243.066667pt;}
.x29{left:270.946667pt;}
.x32{left:277.186667pt;}
.x2b{left:296.706667pt;}
.x2d{left:302.626667pt;}
.x12{left:305.506667pt;}
.x8{left:307.906667pt;}
.xd{left:309.346667pt;}
.x34{left:311.426667pt;}
.x1c{left:316.706667pt;}
.x1f{left:323.426667pt;}
.x2e{left:334.146667pt;}
.x23{left:365.506667pt;}
.x41{left:394.946667pt;}
.x31{left:397.026667pt;}
.x3{left:406.466667pt;}
.x36{left:416.706667pt;}
.x42{left:472.106667pt;}
.x37{left:483.146667pt;}
.x9{left:498.793333pt;}
.xa{left:504.893333pt;}
.x43{left:516.746667pt;}
.x44{left:577.386667pt;}
.x15{left:610.533333pt;}
.x46{left:622.053333pt;}
.x16{left:712.453333pt;}
.x2f{left:728.453333pt;}
}




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