
    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_84b7390a365600acbffbeb48.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_b9581d202dfefc8cf1022a28.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172363;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_febc2d9d69852543592cef06.woff')format("woff");}.ff3{font-family:ff3;line-height:0.939941;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_32412816e8075a493ca18c3a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.903809;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_137f88710b3e87987626171b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.106934;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_26b3288e0c078f1f3259e6d9.woff')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_77049839dae3a7ab67df672c.woff')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_2502e36a3006866d0abbd21f.woff')format("woff");}.ff9{font-family:ff9;line-height:0.939941;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);}
.v2{vertical-align:-27.360000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.lsb{letter-spacing:-4.932000px;}
.lsa{letter-spacing:-1.896000px;}
.ls7{letter-spacing:-1.134000px;}
.ls8{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.612000px;}
.ls3{letter-spacing:-0.504000px;}
.ls5{letter-spacing:-0.463800px;}
.lsc{letter-spacing:-0.457800px;}
.ls4{letter-spacing:-0.443400px;}
.ls2{letter-spacing:-0.432000px;}
.ls12{letter-spacing:-0.305400px;}
.ls10{letter-spacing:-0.152400px;}
.ls1{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.305280px;}
.ls9{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.720000px;}
.lse{letter-spacing:5.040000px;}
.lsd{letter-spacing:7.920000px;}
.ls6{letter-spacing:17.585280px;}
.ls13{letter-spacing:40.769280px;}
.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:-20.880000px;}
.wsf{word-spacing:-17.280000px;}
.ws6{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.407600px;}
.ws0{word-spacing:-16.272000px;}
.wse{word-spacing:-16.254600px;}
.wsc{word-spacing:-16.102200px;}
.ws10{word-spacing:-15.948000px;}
.ws1{word-spacing:-15.768000px;}
.ws7{word-spacing:-14.970240px;}
.wsa{word-spacing:-14.664000px;}
.ws8{word-spacing:-14.506440px;}
.ws2{word-spacing:-13.875960px;}
.wsb{word-spacing:-11.628000px;}
.ws5{word-spacing:-11.160000px;}
.ws4{word-spacing:-10.440000px;}
.ws9{word-spacing:0.000000px;}
._10{margin-left:-9.630720px;}
._d{margin-left:-5.872320px;}
._c{margin-left:-4.567680px;}
._9{margin-left:-3.470400px;}
._6{margin-left:-2.105280px;}
._0{margin-left:-1.008000px;}
._1{width:1.440000px;}
._8{width:2.580000px;}
._2{width:3.691680px;}
._4{width:5.117760px;}
._3{width:6.422880px;}
._b{width:7.616160px;}
._a{width:8.677440px;}
._5{width:9.936000px;}
._7{width:11.580480px;}
._e{width:13.181760px;}
._f{width:14.296320px;}
._17{width:15.379200px;}
._11{width:18.613440px;}
._12{width:20.007360px;}
._18{width:21.660480px;}
._19{width:22.985280px;}
._1b{width:32.296320px;}
._1a{width:33.768000px;}
._14{width:49.290240px;}
._13{width:51.387840px;}
._16{width:53.192640px;}
._15{width:54.236160px;}
.fc5{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc6{color:rgb(13,13,13);}
.fc4{color:rgb(76,76,76);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs6{font-size:5.760000px;}
.fs4{font-size:41.760000px;}
.fs5{font-size:47.520000px;}
.fs7{font-size:60.480000px;}
.fs0{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:83.520000px;}
.y9b{bottom:-17.640000px;}
.y0{bottom:0.000000px;}
.yb2{bottom:6.120000px;}
.yd9{bottom:6.150000px;}
.yad{bottom:6.480000px;}
.yb9{bottom:6.525000px;}
.y9a{bottom:16.560000px;}
.ycf{bottom:21.240000px;}
.yac{bottom:28.080000px;}
.y99{bottom:38.514000px;}
.ybb{bottom:39.960000px;}
.yaf{bottom:40.320000px;}
.yd5{bottom:40.350000px;}
.yb5{bottom:40.365000px;}
.y7{bottom:57.240000px;}
.y98{bottom:60.114000px;}
.y97{bottom:82.119000px;}
.yef{bottom:100.116000px;}
.y90{bottom:100.476000px;}
.y68{bottom:100.836000px;}
.y96{bottom:103.719000px;}
.y145{bottom:114.876000px;}
.y91{bottom:116.316000px;}
.yee{bottom:121.716000px;}
.yc6{bottom:122.436000px;}
.y67{bottom:122.796000px;}
.y95{bottom:125.679000px;}
.y116{bottom:127.116000px;}
.y126{bottom:129.996000px;}
.y29{bottom:131.076000px;}
.y8f{bottom:133.956000px;}
.y52{bottom:141.156000px;}
.y144{bottom:143.316000px;}
.yed{bottom:143.676000px;}
.y66{bottom:144.756000px;}
.y94{bottom:147.639000px;}
.y28{bottom:150.150000px;}
.yc5{bottom:156.270000px;}
.y125{bottom:158.430000px;}
.y115{bottom:160.590000px;}
.yec{bottom:165.270000px;}
.y8e{bottom:167.790000px;}
.y143{bottom:168.870000px;}
.y93{bottom:169.239000px;}
.y51{bottom:174.990000px;}
.y65{bottom:178.590000px;}
.y27{bottom:181.110000px;}
.y114{bottom:182.550000px;}
.y124{bottom:183.990000px;}
.yc4{bottom:190.110000px;}
.y142{bottom:192.270000px;}
.yeb{bottom:199.155000px;}
.y26{bottom:200.235000px;}
.y8d{bottom:201.675000px;}
.y92{bottom:203.079000px;}
.y113{bottom:204.555000px;}
.y123{bottom:207.435000px;}
.y50{bottom:208.875000px;}
.y64{bottom:212.475000px;}
.y141{bottom:220.755000px;}
.yea{bottom:221.115000px;}
.yc3{bottom:223.995000px;}
.y112{bottom:226.155000px;}
.y6a{bottom:229.740000px;}
.y4f{bottom:230.835000px;}
.y25{bottom:231.195000px;}
.y63{bottom:234.075000px;}
.y8c{bottom:235.515000px;}
.y122{bottom:235.875000px;}
.ye9{bottom:243.075000px;}
.y140{bottom:249.195000px;}
.y24{bottom:250.275000px;}
.y4e{bottom:252.435000px;}
.y62{bottom:256.035000px;}
.yc2{bottom:257.835000px;}
.y111{bottom:259.995000px;}
.y121{bottom:261.795000px;}
.y23{bottom:268.995000px;}
.y8b{bottom:269.355000px;}
.ye8{bottom:276.915000px;}
.y61{bottom:277.635000px;}
.y110{bottom:281.955000px;}
.y120{bottom:285.195000px;}
.y4d{bottom:286.275000px;}
.y13f{bottom:286.635000px;}
.yc1{bottom:298.515000px;}
.y22{bottom:299.955000px;}
.y8a{bottom:303.195000px;}
.y10f{bottom:303.555000px;}
.yc0{bottom:307.875000px;}
.y4c{bottom:308.235000px;}
.y60{bottom:311.475000px;}
.y11f{bottom:313.635000px;}
.y13e{bottom:315.075000px;}
.ye7{bottom:320.475000px;}
.y10e{bottom:325.545000px;}
.y4b{bottom:329.865000px;}
.ybf{bottom:330.585000px;}
.y21{bottom:330.945000px;}
.y5f{bottom:333.465000px;}
.y89{bottom:337.065000px;}
.y11e{bottom:339.225000px;}
.ye6{bottom:342.105000px;}
.y10d{bottom:347.505000px;}
.y4a{bottom:351.825000px;}
.y13d{bottom:352.545000px;}
.yba{bottom:353.265000px;}
.y5e{bottom:355.425000px;}
.y20{bottom:361.905000px;}
.y11d{bottom:362.625000px;}
.ye5{bottom:364.065000px;}
.y88{bottom:370.905000px;}
.y49{bottom:373.785000px;}
.ybe{bottom:375.585000px;}
.y1f{bottom:380.985000px;}
.y10c{bottom:381.345000px;}
.ye4{bottom:386.025000px;}
.y5d{bottom:389.265000px;}
.y11c{bottom:391.065000px;}
.y48{bottom:395.385000px;}
.ybd{bottom:398.265000px;}
.y1e{bottom:400.065000px;}
.y10b{bottom:402.945000px;}
.y87{bottom:404.745000px;}
.y13c{bottom:406.905000px;}
.ye3{bottom:407.625000px;}
.y47{bottom:417.345000px;}
.ybc{bottom:420.945000px;}
.y5c{bottom:422.745000px;}
.y10a{bottom:424.905000px;}
.ye2{bottom:429.585000px;}
.y13b{bottom:430.305000px;}
.y1d{bottom:431.025000px;}
.y86{bottom:438.585000px;}
.yb4{bottom:443.265000px;}
.y5b{bottom:444.705000px;}
.y1c{bottom:450.150000px;}
.y46{bottom:451.230000px;}
.y109{bottom:458.790000px;}
.yb8{bottom:465.990000px;}
.y1b{bottom:468.870000px;}
.y85{bottom:472.470000px;}
.y45{bottom:472.830000px;}
.y5a{bottom:478.590000px;}
.y108{bottom:480.390000px;}
.ye1{bottom:485.070000px;}
.y1a{bottom:487.950000px;}
.yb7{bottom:488.670000px;}
.y44{bottom:494.790000px;}
.y13a{bottom:496.230000px;}
.y59{bottom:500.550000px;}
.y107{bottom:502.350000px;}
.y84{bottom:506.310000px;}
.y19{bottom:507.030000px;}
.yb6{bottom:510.990000px;}
.y43{bottom:516.750000px;}
.y106{bottom:524.310000px;}
.y139{bottom:524.670000px;}
.y18{bottom:525.750000px;}
.ye0{bottom:526.470000px;}
.y69{bottom:526.830000px;}
.yae{bottom:533.670000px;}
.ydf{bottom:537.270000px;}
.y42{bottom:538.350000px;}
.y83{bottom:540.150000px;}
.y138{bottom:553.110000px;}
.yb3{bottom:556.350000px;}
.y17{bottom:556.710000px;}
.y105{bottom:558.150000px;}
.yde{bottom:559.950000px;}
.y82{bottom:571.110000px;}
.y41{bottom:572.190000px;}
.y16{bottom:575.820000px;}
.yb1{bottom:579.060000px;}
.y104{bottom:579.780000px;}
.yda{bottom:582.300000px;}
.y81{bottom:590.220000px;}
.y137{bottom:590.580000px;}
.y40{bottom:594.180000px;}
.y15{bottom:594.900000px;}
.yb0{bottom:601.380000px;}
.y103{bottom:601.740000px;}
.ydd{bottom:604.980000px;}
.y80{bottom:609.300000px;}
.y3f{bottom:615.780000px;}
.y136{bottom:619.020000px;}
.y102{bottom:623.340000px;}
.yab{bottom:624.060000px;}
.y14{bottom:625.860000px;}
.ydc{bottom:627.660000px;}
.y3e{bottom:637.740000px;}
.y7f{bottom:639.900000px;}
.y13{bottom:644.940000px;}
.y101{bottom:645.300000px;}
.y135{bottom:647.460000px;}
.ydb{bottom:649.980000px;}
.y7e{bottom:658.980000px;}
.y11b{bottom:667.260000px;}
.y3d{bottom:671.580000px;}
.yd4{bottom:672.660000px;}
.y12{bottom:675.540000px;}
.y134{bottom:675.900000px;}
.y7d{bottom:678.060000px;}
.y100{bottom:679.140000px;}
.yaa{bottom:686.700000px;}
.y11a{bottom:688.860000px;}
.y3c{bottom:693.540000px;}
.yd8{bottom:695.340000px;}
.yff{bottom:701.130000px;}
.ya9{bottom:708.690000px;}
.y7c{bottom:709.050000px;}
.y119{bottom:710.850000px;}
.y133{bottom:713.370000px;}
.y3b{bottom:715.170000px;}
.y11{bottom:717.690000px;}
.yd7{bottom:718.050000px;}
.yfe{bottom:722.730000px;}
.y7b{bottom:728.130000px;}
.y3a{bottom:737.130000px;}
.yd6{bottom:740.370000px;}
.y132{bottom:741.810000px;}
.ya8{bottom:742.530000px;}
.yfd{bottom:744.690000px;}
.y7a{bottom:746.850000px;}
.y39{bottom:758.730000px;}
.y10{bottom:759.810000px;}
.yd0{bottom:763.050000px;}
.ya7{bottom:764.130000px;}
.y79{bottom:765.930000px;}
.yfc{bottom:766.290000px;}
.y131{bottom:770.250000px;}
.yf{bottom:781.770000px;}
.y78{bottom:785.010000px;}
.yd3{bottom:785.730000px;}
.ya6{bottom:786.090000px;}
.yfb{bottom:788.250000px;}
.y38{bottom:792.570000px;}
.y130{bottom:795.810000px;}
.ye{bottom:803.730000px;}
.yd2{bottom:808.050000px;}
.y118{bottom:810.210000px;}
.y37{bottom:814.530000px;}
.y77{bottom:818.490000px;}
.y12f{bottom:819.210000px;}
.ya5{bottom:819.930000px;}
.yfa{bottom:822.090000px;}
.yd{bottom:825.690000px;}
.yd1{bottom:830.775000px;}
.y117{bottom:831.855000px;}
.y36{bottom:836.535000px;}
.ya4{bottom:841.935000px;}
.yf9{bottom:844.095000px;}
.y12e{bottom:847.695000px;}
.y76{bottom:852.375000px;}
.yce{bottom:853.455000px;}
.y35{bottom:858.135000px;}
.yc{bottom:859.575000px;}
.ya3{bottom:863.535000px;}
.yf8{bottom:865.695000px;}
.y75{bottom:874.335000px;}
.y34{bottom:880.095000px;}
.yb{bottom:881.175000px;}
.ya2{bottom:885.495000px;}
.yf7{bottom:887.655000px;}
.y74{bottom:896.295000px;}
.ycd{bottom:909.255000px;}
.y33{bottom:913.935000px;}
.ya{bottom:917.175000px;}
.ya1{bottom:919.335000px;}
.y73{bottom:930.135000px;}
.ycc{bottom:931.215000px;}
.ya0{bottom:940.935000px;}
.y12d{bottom:942.375000px;}
.yf6{bottom:943.095000px;}
.y9{bottom:944.895000px;}
.ycb{bottom:953.205000px;}
.y72{bottom:961.125000px;}
.y9f{bottom:962.925000px;}
.yf5{bottom:965.085000px;}
.y12c{bottom:967.965000px;}
.y8{bottom:972.645000px;}
.yca{bottom:974.805000px;}
.y32{bottom:975.885000px;}
.y71{bottom:980.205000px;}
.y9e{bottom:984.885000px;}
.yf4{bottom:987.045000px;}
.y12b{bottom:991.365000px;}
.y31{bottom:994.965000px;}
.y6{bottom:996.405000px;}
.y58{bottom:996.765000px;}
.y70{bottom:998.925000px;}
.yc9{bottom:1008.645000px;}
.y30{bottom:1014.045000px;}
.y5{bottom:1015.845000px;}
.y6f{bottom:1018.005000px;}
.y57{bottom:1018.365000px;}
.y12a{bottom:1019.805000px;}
.yc8{bottom:1030.605000px;}
.y4{bottom:1038.165000px;}
.y56{bottom:1040.325000px;}
.y2f{bottom:1044.645000px;}
.y6e{bottom:1048.965000px;}
.yc7{bottom:1052.205000px;}
.y129{bottom:1057.245000px;}
.y3{bottom:1060.125000px;}
.y9d{bottom:1062.285000px;}
.y2e{bottom:1063.725000px;}
.yf3{bottom:1064.445000px;}
.y55{bottom:1074.165000px;}
.y6d{bottom:1079.970000px;}
.y2{bottom:1082.130000px;}
.y2d{bottom:1082.850000px;}
.y9c{bottom:1083.930000px;}
.y128{bottom:1085.730000px;}
.yf2{bottom:1086.090000px;}
.y54{bottom:1096.170000px;}
.y6c{bottom:1099.050000px;}
.y1{bottom:1099.770000px;}
.yf1{bottom:1108.050000px;}
.y2c{bottom:1113.810000px;}
.y53{bottom:1117.770000px;}
.y6b{bottom:1118.130000px;}
.y127{bottom:1123.170000px;}
.yf0{bottom:1130.010000px;}
.y2b{bottom:1132.890000px;}
.y2a{bottom:1151.610000px;}
.h19{height:5.132813px;}
.h11{height:21.600000px;}
.h12{height:21.636000px;}
.h10{height:21.960000px;}
.h13{height:21.996000px;}
.h16{height:36.720000px;}
.h15{height:37.212891px;}
.h18{height:42.345703px;}
.he{height:43.560000px;}
.h9{height:47.965781px;}
.ha{height:48.224531px;}
.h7{height:59.027344px;}
.h5{height:60.478594px;}
.h4{height:63.019687px;}
.h6{height:64.572891px;}
.h2{height:64.875938px;}
.hc{height:65.884219px;}
.h8{height:67.824844px;}
.h3{height:73.722656px;}
.h14{height:89.280000px;}
.h17{height:89.640000px;}
.hf{height:89.676000px;}
.hd{height:218.595000px;}
.hb{height:457.350000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:105.156000px;}
.w5{width:105.516000px;}
.w6{width:105.912000px;}
.w8{width:109.836000px;}
.w7{width:115.236000px;}
.w9{width:123.552000px;}
.wd{width:147.996000px;}
.wc{width:169.275000px;}
.wa{width:212.145000px;}
.w4{width:230.505000px;}
.we{width:275.505000px;}
.w3{width:645.375000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x11{left:7.920000px;}
.x10{left:10.845000px;}
.x24{left:16.200000px;}
.x1b{left:25.920000px;}
.x18{left:27.720000px;}
.x1d{left:32.040000px;}
.x19{left:34.200000px;}
.x1a{left:35.280000px;}
.x1e{left:38.160000px;}
.x17{left:39.240000px;}
.x1f{left:40.320000px;}
.x1c{left:42.840000px;}
.x20{left:47.565000px;}
.x26{left:51.480000px;}
.x25{left:55.440000px;}
.x27{left:59.400000px;}
.x6{left:106.235987px;}
.x8{left:110.915987px;}
.x9{left:114.155987px;}
.xc{left:145.512000px;}
.x28{left:170.714987px;}
.xb{left:180.794987px;}
.x12{left:213.195000px;}
.x21{left:234.465000px;}
.x2{left:260.384987px;}
.x13{left:319.830000px;}
.xd{left:322.668000px;}
.xa{left:333.149987px;}
.x22{left:340.710000px;}
.x5{left:350.789987px;}
.x4{left:383.909987px;}
.x3{left:403.019987px;}
.x7{left:430.379987px;}
.x14{left:435.780000px;}
.xe{left:446.579987px;}
.x23{left:510.690000px;}
.x15{left:546.330000px;}
.xf{left:567.570000px;}
.x16{left:670.965000px;}
.x1{left:786.929987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsb{letter-spacing:-4.384000pt;}
.lsa{letter-spacing:-1.685333pt;}
.ls7{letter-spacing:-1.008000pt;}
.ls8{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.544000pt;}
.ls3{letter-spacing:-0.448000pt;}
.ls5{letter-spacing:-0.412267pt;}
.lsc{letter-spacing:-0.406933pt;}
.ls4{letter-spacing:-0.394133pt;}
.ls2{letter-spacing:-0.384000pt;}
.ls12{letter-spacing:-0.271467pt;}
.ls10{letter-spacing:-0.135467pt;}
.ls1{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.271360pt;}
.ls9{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.640000pt;}
.lse{letter-spacing:4.480000pt;}
.lsd{letter-spacing:7.040000pt;}
.ls6{letter-spacing:15.631360pt;}
.ls13{letter-spacing:36.239360pt;}
.ws3{word-spacing:-18.560000pt;}
.wsf{word-spacing:-15.360000pt;}
.ws6{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.584533pt;}
.ws0{word-spacing:-14.464000pt;}
.wse{word-spacing:-14.448533pt;}
.wsc{word-spacing:-14.313067pt;}
.ws10{word-spacing:-14.176000pt;}
.ws1{word-spacing:-14.016000pt;}
.ws7{word-spacing:-13.306880pt;}
.wsa{word-spacing:-13.034667pt;}
.ws8{word-spacing:-12.894613pt;}
.ws2{word-spacing:-12.334187pt;}
.wsb{word-spacing:-10.336000pt;}
.ws5{word-spacing:-9.920000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws9{word-spacing:0.000000pt;}
._10{margin-left:-8.560640pt;}
._d{margin-left:-5.219840pt;}
._c{margin-left:-4.060160pt;}
._9{margin-left:-3.084800pt;}
._6{margin-left:-1.871360pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.280000pt;}
._8{width:2.293333pt;}
._2{width:3.281493pt;}
._4{width:4.549120pt;}
._3{width:5.709227pt;}
._b{width:6.769920pt;}
._a{width:7.713280pt;}
._5{width:8.832000pt;}
._7{width:10.293760pt;}
._e{width:11.717120pt;}
._f{width:12.707840pt;}
._17{width:13.670400pt;}
._11{width:16.545280pt;}
._12{width:17.784320pt;}
._18{width:19.253760pt;}
._19{width:20.431360pt;}
._1b{width:28.707840pt;}
._1a{width:30.016000pt;}
._14{width:43.813547pt;}
._13{width:45.678080pt;}
._16{width:47.282347pt;}
._15{width:48.209920pt;}
.fs6{font-size:5.120000pt;}
.fs4{font-size:37.120000pt;}
.fs5{font-size:42.240000pt;}
.fs7{font-size:53.760000pt;}
.fs0{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.240000pt;}
.y9b{bottom:-15.680000pt;}
.y0{bottom:0.000000pt;}
.yb2{bottom:5.440000pt;}
.yd9{bottom:5.466667pt;}
.yad{bottom:5.760000pt;}
.yb9{bottom:5.800000pt;}
.y9a{bottom:14.720000pt;}
.ycf{bottom:18.880000pt;}
.yac{bottom:24.960000pt;}
.y99{bottom:34.234667pt;}
.ybb{bottom:35.520000pt;}
.yaf{bottom:35.840000pt;}
.yd5{bottom:35.866667pt;}
.yb5{bottom:35.880000pt;}
.y7{bottom:50.880000pt;}
.y98{bottom:53.434667pt;}
.y97{bottom:72.994667pt;}
.yef{bottom:88.992000pt;}
.y90{bottom:89.312000pt;}
.y68{bottom:89.632000pt;}
.y96{bottom:92.194667pt;}
.y145{bottom:102.112000pt;}
.y91{bottom:103.392000pt;}
.yee{bottom:108.192000pt;}
.yc6{bottom:108.832000pt;}
.y67{bottom:109.152000pt;}
.y95{bottom:111.714667pt;}
.y116{bottom:112.992000pt;}
.y126{bottom:115.552000pt;}
.y29{bottom:116.512000pt;}
.y8f{bottom:119.072000pt;}
.y52{bottom:125.472000pt;}
.y144{bottom:127.392000pt;}
.yed{bottom:127.712000pt;}
.y66{bottom:128.672000pt;}
.y94{bottom:131.234667pt;}
.y28{bottom:133.466667pt;}
.yc5{bottom:138.906667pt;}
.y125{bottom:140.826667pt;}
.y115{bottom:142.746667pt;}
.yec{bottom:146.906667pt;}
.y8e{bottom:149.146667pt;}
.y143{bottom:150.106667pt;}
.y93{bottom:150.434667pt;}
.y51{bottom:155.546667pt;}
.y65{bottom:158.746667pt;}
.y27{bottom:160.986667pt;}
.y114{bottom:162.266667pt;}
.y124{bottom:163.546667pt;}
.yc4{bottom:168.986667pt;}
.y142{bottom:170.906667pt;}
.yeb{bottom:177.026667pt;}
.y26{bottom:177.986667pt;}
.y8d{bottom:179.266667pt;}
.y92{bottom:180.514667pt;}
.y113{bottom:181.826667pt;}
.y123{bottom:184.386667pt;}
.y50{bottom:185.666667pt;}
.y64{bottom:188.866667pt;}
.y141{bottom:196.226667pt;}
.yea{bottom:196.546667pt;}
.yc3{bottom:199.106667pt;}
.y112{bottom:201.026667pt;}
.y6a{bottom:204.213333pt;}
.y4f{bottom:205.186667pt;}
.y25{bottom:205.506667pt;}
.y63{bottom:208.066667pt;}
.y8c{bottom:209.346667pt;}
.y122{bottom:209.666667pt;}
.ye9{bottom:216.066667pt;}
.y140{bottom:221.506667pt;}
.y24{bottom:222.466667pt;}
.y4e{bottom:224.386667pt;}
.y62{bottom:227.586667pt;}
.yc2{bottom:229.186667pt;}
.y111{bottom:231.106667pt;}
.y121{bottom:232.706667pt;}
.y23{bottom:239.106667pt;}
.y8b{bottom:239.426667pt;}
.ye8{bottom:246.146667pt;}
.y61{bottom:246.786667pt;}
.y110{bottom:250.626667pt;}
.y120{bottom:253.506667pt;}
.y4d{bottom:254.466667pt;}
.y13f{bottom:254.786667pt;}
.yc1{bottom:265.346667pt;}
.y22{bottom:266.626667pt;}
.y8a{bottom:269.506667pt;}
.y10f{bottom:269.826667pt;}
.yc0{bottom:273.666667pt;}
.y4c{bottom:273.986667pt;}
.y60{bottom:276.866667pt;}
.y11f{bottom:278.786667pt;}
.y13e{bottom:280.066667pt;}
.ye7{bottom:284.866667pt;}
.y10e{bottom:289.373333pt;}
.y4b{bottom:293.213333pt;}
.ybf{bottom:293.853333pt;}
.y21{bottom:294.173333pt;}
.y5f{bottom:296.413333pt;}
.y89{bottom:299.613333pt;}
.y11e{bottom:301.533333pt;}
.ye6{bottom:304.093333pt;}
.y10d{bottom:308.893333pt;}
.y4a{bottom:312.733333pt;}
.y13d{bottom:313.373333pt;}
.yba{bottom:314.013333pt;}
.y5e{bottom:315.933333pt;}
.y20{bottom:321.693333pt;}
.y11d{bottom:322.333333pt;}
.ye5{bottom:323.613333pt;}
.y88{bottom:329.693333pt;}
.y49{bottom:332.253333pt;}
.ybe{bottom:333.853333pt;}
.y1f{bottom:338.653333pt;}
.y10c{bottom:338.973333pt;}
.ye4{bottom:343.133333pt;}
.y5d{bottom:346.013333pt;}
.y11c{bottom:347.613333pt;}
.y48{bottom:351.453333pt;}
.ybd{bottom:354.013333pt;}
.y1e{bottom:355.613333pt;}
.y10b{bottom:358.173333pt;}
.y87{bottom:359.773333pt;}
.y13c{bottom:361.693333pt;}
.ye3{bottom:362.333333pt;}
.y47{bottom:370.973333pt;}
.ybc{bottom:374.173333pt;}
.y5c{bottom:375.773333pt;}
.y10a{bottom:377.693333pt;}
.ye2{bottom:381.853333pt;}
.y13b{bottom:382.493333pt;}
.y1d{bottom:383.133333pt;}
.y86{bottom:389.853333pt;}
.yb4{bottom:394.013333pt;}
.y5b{bottom:395.293333pt;}
.y1c{bottom:400.133333pt;}
.y46{bottom:401.093333pt;}
.y109{bottom:407.813333pt;}
.yb8{bottom:414.213333pt;}
.y1b{bottom:416.773333pt;}
.y85{bottom:419.973333pt;}
.y45{bottom:420.293333pt;}
.y5a{bottom:425.413333pt;}
.y108{bottom:427.013333pt;}
.ye1{bottom:431.173333pt;}
.y1a{bottom:433.733333pt;}
.yb7{bottom:434.373333pt;}
.y44{bottom:439.813333pt;}
.y13a{bottom:441.093333pt;}
.y59{bottom:444.933333pt;}
.y107{bottom:446.533333pt;}
.y84{bottom:450.053333pt;}
.y19{bottom:450.693333pt;}
.yb6{bottom:454.213333pt;}
.y43{bottom:459.333333pt;}
.y106{bottom:466.053333pt;}
.y139{bottom:466.373333pt;}
.y18{bottom:467.333333pt;}
.ye0{bottom:467.973333pt;}
.y69{bottom:468.293333pt;}
.yae{bottom:474.373333pt;}
.ydf{bottom:477.573333pt;}
.y42{bottom:478.533333pt;}
.y83{bottom:480.133333pt;}
.y138{bottom:491.653333pt;}
.yb3{bottom:494.533333pt;}
.y17{bottom:494.853333pt;}
.y105{bottom:496.133333pt;}
.yde{bottom:497.733333pt;}
.y82{bottom:507.653333pt;}
.y41{bottom:508.613333pt;}
.y16{bottom:511.840000pt;}
.yb1{bottom:514.720000pt;}
.y104{bottom:515.360000pt;}
.yda{bottom:517.600000pt;}
.y81{bottom:524.640000pt;}
.y137{bottom:524.960000pt;}
.y40{bottom:528.160000pt;}
.y15{bottom:528.800000pt;}
.yb0{bottom:534.560000pt;}
.y103{bottom:534.880000pt;}
.ydd{bottom:537.760000pt;}
.y80{bottom:541.600000pt;}
.y3f{bottom:547.360000pt;}
.y136{bottom:550.240000pt;}
.y102{bottom:554.080000pt;}
.yab{bottom:554.720000pt;}
.y14{bottom:556.320000pt;}
.ydc{bottom:557.920000pt;}
.y3e{bottom:566.880000pt;}
.y7f{bottom:568.800000pt;}
.y13{bottom:573.280000pt;}
.y101{bottom:573.600000pt;}
.y135{bottom:575.520000pt;}
.ydb{bottom:577.760000pt;}
.y7e{bottom:585.760000pt;}
.y11b{bottom:593.120000pt;}
.y3d{bottom:596.960000pt;}
.yd4{bottom:597.920000pt;}
.y12{bottom:600.480000pt;}
.y134{bottom:600.800000pt;}
.y7d{bottom:602.720000pt;}
.y100{bottom:603.680000pt;}
.yaa{bottom:610.400000pt;}
.y11a{bottom:612.320000pt;}
.y3c{bottom:616.480000pt;}
.yd8{bottom:618.080000pt;}
.yff{bottom:623.226667pt;}
.ya9{bottom:629.946667pt;}
.y7c{bottom:630.266667pt;}
.y119{bottom:631.866667pt;}
.y133{bottom:634.106667pt;}
.y3b{bottom:635.706667pt;}
.y11{bottom:637.946667pt;}
.yd7{bottom:638.266667pt;}
.yfe{bottom:642.426667pt;}
.y7b{bottom:647.226667pt;}
.y3a{bottom:655.226667pt;}
.yd6{bottom:658.106667pt;}
.y132{bottom:659.386667pt;}
.ya8{bottom:660.026667pt;}
.yfd{bottom:661.946667pt;}
.y7a{bottom:663.866667pt;}
.y39{bottom:674.426667pt;}
.y10{bottom:675.386667pt;}
.yd0{bottom:678.266667pt;}
.ya7{bottom:679.226667pt;}
.y79{bottom:680.826667pt;}
.yfc{bottom:681.146667pt;}
.y131{bottom:684.666667pt;}
.yf{bottom:694.906667pt;}
.y78{bottom:697.786667pt;}
.yd3{bottom:698.426667pt;}
.ya6{bottom:698.746667pt;}
.yfb{bottom:700.666667pt;}
.y38{bottom:704.506667pt;}
.y130{bottom:707.386667pt;}
.ye{bottom:714.426667pt;}
.yd2{bottom:718.266667pt;}
.y118{bottom:720.186667pt;}
.y37{bottom:724.026667pt;}
.y77{bottom:727.546667pt;}
.y12f{bottom:728.186667pt;}
.ya5{bottom:728.826667pt;}
.yfa{bottom:730.746667pt;}
.yd{bottom:733.946667pt;}
.yd1{bottom:738.466667pt;}
.y117{bottom:739.426667pt;}
.y36{bottom:743.586667pt;}
.ya4{bottom:748.386667pt;}
.yf9{bottom:750.306667pt;}
.y12e{bottom:753.506667pt;}
.y76{bottom:757.666667pt;}
.yce{bottom:758.626667pt;}
.y35{bottom:762.786667pt;}
.yc{bottom:764.066667pt;}
.ya3{bottom:767.586667pt;}
.yf8{bottom:769.506667pt;}
.y75{bottom:777.186667pt;}
.y34{bottom:782.306667pt;}
.yb{bottom:783.266667pt;}
.ya2{bottom:787.106667pt;}
.yf7{bottom:789.026667pt;}
.y74{bottom:796.706667pt;}
.ycd{bottom:808.226667pt;}
.y33{bottom:812.386667pt;}
.ya{bottom:815.266667pt;}
.ya1{bottom:817.186667pt;}
.y73{bottom:826.786667pt;}
.ycc{bottom:827.746667pt;}
.ya0{bottom:836.386667pt;}
.y12d{bottom:837.666667pt;}
.yf6{bottom:838.306667pt;}
.y9{bottom:839.906667pt;}
.ycb{bottom:847.293333pt;}
.y72{bottom:854.333333pt;}
.y9f{bottom:855.933333pt;}
.yf5{bottom:857.853333pt;}
.y12c{bottom:860.413333pt;}
.y8{bottom:864.573333pt;}
.yca{bottom:866.493333pt;}
.y32{bottom:867.453333pt;}
.y71{bottom:871.293333pt;}
.y9e{bottom:875.453333pt;}
.yf4{bottom:877.373333pt;}
.y12b{bottom:881.213333pt;}
.y31{bottom:884.413333pt;}
.y6{bottom:885.693333pt;}
.y58{bottom:886.013333pt;}
.y70{bottom:887.933333pt;}
.yc9{bottom:896.573333pt;}
.y30{bottom:901.373333pt;}
.y5{bottom:902.973333pt;}
.y6f{bottom:904.893333pt;}
.y57{bottom:905.213333pt;}
.y12a{bottom:906.493333pt;}
.yc8{bottom:916.093333pt;}
.y4{bottom:922.813333pt;}
.y56{bottom:924.733333pt;}
.y2f{bottom:928.573333pt;}
.y6e{bottom:932.413333pt;}
.yc7{bottom:935.293333pt;}
.y129{bottom:939.773333pt;}
.y3{bottom:942.333333pt;}
.y9d{bottom:944.253333pt;}
.y2e{bottom:945.533333pt;}
.yf3{bottom:946.173333pt;}
.y55{bottom:954.813333pt;}
.y6d{bottom:959.973333pt;}
.y2{bottom:961.893333pt;}
.y2d{bottom:962.533333pt;}
.y9c{bottom:963.493333pt;}
.y128{bottom:965.093333pt;}
.yf2{bottom:965.413333pt;}
.y54{bottom:974.373333pt;}
.y6c{bottom:976.933333pt;}
.y1{bottom:977.573333pt;}
.yf1{bottom:984.933333pt;}
.y2c{bottom:990.053333pt;}
.y53{bottom:993.573333pt;}
.y6b{bottom:993.893333pt;}
.y127{bottom:998.373333pt;}
.yf0{bottom:1004.453333pt;}
.y2b{bottom:1007.013333pt;}
.y2a{bottom:1023.653333pt;}
.h19{height:4.562500pt;}
.h11{height:19.200000pt;}
.h12{height:19.232000pt;}
.h10{height:19.520000pt;}
.h13{height:19.552000pt;}
.h16{height:32.640000pt;}
.h15{height:33.078125pt;}
.h18{height:37.640625pt;}
.he{height:38.720000pt;}
.h9{height:42.636250pt;}
.ha{height:42.866250pt;}
.h7{height:52.468750pt;}
.h5{height:53.758750pt;}
.h4{height:56.017500pt;}
.h6{height:57.398125pt;}
.h2{height:57.667500pt;}
.hc{height:58.563750pt;}
.h8{height:60.288750pt;}
.h3{height:65.531250pt;}
.h14{height:79.360000pt;}
.h17{height:79.680000pt;}
.hf{height:79.712000pt;}
.hd{height:194.306667pt;}
.hb{height:406.533333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:93.472000pt;}
.w5{width:93.792000pt;}
.w6{width:94.144000pt;}
.w8{width:97.632000pt;}
.w7{width:102.432000pt;}
.w9{width:109.824000pt;}
.wd{width:131.552000pt;}
.wc{width:150.466667pt;}
.wa{width:188.573333pt;}
.w4{width:204.893333pt;}
.we{width:244.893333pt;}
.w3{width:573.666667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x11{left:7.040000pt;}
.x10{left:9.640000pt;}
.x24{left:14.400000pt;}
.x1b{left:23.040000pt;}
.x18{left:24.640000pt;}
.x1d{left:28.480000pt;}
.x19{left:30.400000pt;}
.x1a{left:31.360000pt;}
.x1e{left:33.920000pt;}
.x17{left:34.880000pt;}
.x1f{left:35.840000pt;}
.x1c{left:38.080000pt;}
.x20{left:42.280000pt;}
.x26{left:45.760000pt;}
.x25{left:49.280000pt;}
.x27{left:52.800000pt;}
.x6{left:94.431988pt;}
.x8{left:98.591988pt;}
.x9{left:101.471988pt;}
.xc{left:129.344000pt;}
.x28{left:151.746655pt;}
.xb{left:160.706655pt;}
.x12{left:189.506667pt;}
.x21{left:208.413333pt;}
.x2{left:231.453322pt;}
.x13{left:284.293333pt;}
.xd{left:286.816000pt;}
.xa{left:296.133322pt;}
.x22{left:302.853333pt;}
.x5{left:311.813322pt;}
.x4{left:341.253322pt;}
.x3{left:358.239988pt;}
.x7{left:382.559988pt;}
.x14{left:387.360000pt;}
.xe{left:396.959988pt;}
.x23{left:453.946667pt;}
.x15{left:485.626667pt;}
.xf{left:504.506667pt;}
.x16{left:596.413333pt;}
.x1{left:699.493322pt;}
}




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