
    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_7892381c3f94f602c3c47322.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c2e114dc3dbadb6d3f978b0e.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_fa638444b17d8ce4380645ce.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5ec226f9ff66c975f0700282.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_f5f1f5f47f96367ef9b7a9fa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_dadd8ae990b7114cbdd2b30e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_72c01ccec7e5a9744e76de73.woff2')format("woff");}.ff7{font-family:ff7;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-69.120000px;}
.v5{vertical-align:-64.800000px;}
.v1{vertical-align:-62.640000px;}
.v6{vertical-align:-60.480000px;}
.v4{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:18.000000px;}
.v3{vertical-align:23.760000px;}
.ls20{letter-spacing:-0.720000px;}
.ls21{letter-spacing:-0.612000px;}
.ls12{letter-spacing:-0.504000px;}
.lsb{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.220800px;}
.ls16{letter-spacing:-0.108000px;}
.lsc{letter-spacing:-0.027360px;}
.ls1b{letter-spacing:-0.018000px;}
.lsa{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.018000px;}
.ls4{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.216000px;}
.ls10{letter-spacing:0.324000px;}
.ls2{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.864000px;}
.ls5{letter-spacing:0.900000px;}
.ls1f{letter-spacing:2.988000px;}
.ls1e{letter-spacing:30.348000px;}
.ls6{letter-spacing:52.560000px;}
.ls9{letter-spacing:55.620000px;}
.ls3{letter-spacing:66.420000px;}
.ls0{letter-spacing:154.980000px;}
.ls1d{letter-spacing:163.620000px;}
.ls1a{letter-spacing:737.580000px;}
.ls11{letter-spacing:832.800000px;}
.ls18{letter-spacing:840.000000px;}
.ls13{letter-spacing:843.600000px;}
.ls14{letter-spacing:850.080000px;}
.ls19{letter-spacing:1019.280000px;}
.lse{letter-spacing:1220.160000px;}
.lsf{letter-spacing:1355.520000px;}
.ls8{letter-spacing:1367.040000px;}
.ls1c{letter-spacing:1520.520000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-14.580000px;}
.wse{word-spacing:-14.364000px;}
.ws6{word-spacing:-14.220000px;}
.ws2{word-spacing:-14.192640px;}
.ws4{word-spacing:-13.999200px;}
.ws5{word-spacing:-13.860000px;}
.ws10{word-spacing:-13.716000px;}
.wsb{word-spacing:-13.518000px;}
.ws9{word-spacing:-13.500000px;}
.ws11{word-spacing:-13.482000px;}
.wsf{word-spacing:-13.392000px;}
.wsa{word-spacing:-13.140000px;}
.wsd{word-spacing:-12.996000px;}
.ws7{word-spacing:-10.440000px;}
.ws8{word-spacing:-9.000000px;}
.ws12{word-spacing:-8.280000px;}
.wsc{word-spacing:0.000000px;}
._1{margin-left:-3.225600px;}
._0{margin-left:-1.368000px;}
._2{width:1.078560px;}
._5{width:2.916000px;}
._6{width:3.946320px;}
._7{width:5.616000px;}
._8{width:7.236000px;}
._9{width:8.262000px;}
._a{width:10.048320px;}
._4{width:1441.200000px;}
._3{width:1574.520000px;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:12.240000px;}
.fs9{font-size:36.000000px;}
.fsc{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsb{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y57{bottom:2.880000px;}
.y59{bottom:3.060000px;}
.y5b{bottom:3.240000px;}
.y68{bottom:3.420000px;}
.ya5{bottom:18.360000px;}
.y90{bottom:18.540000px;}
.y7f{bottom:18.720000px;}
.y95{bottom:18.750000px;}
.y93{bottom:18.900000px;}
.y91{bottom:34.020000px;}
.yb6{bottom:34.200000px;}
.yc9{bottom:49.860000px;}
.y2{bottom:57.960000px;}
.y1{bottom:76.860000px;}
.y3c{bottom:95.940000px;}
.y39{bottom:107.100000px;}
.y77{bottom:115.200000px;}
.ye1{bottom:118.980000px;}
.y38{bottom:122.580000px;}
.yb2{bottom:127.440000px;}
.y76{bottom:130.860000px;}
.y37{bottom:138.276000px;}
.yb1{bottom:142.956000px;}
.ye0{bottom:143.676000px;}
.y75{bottom:146.556000px;}
.y36{bottom:153.750000px;}
.yb0{bottom:158.430000px;}
.y74{bottom:162.030000px;}
.ydf{bottom:168.510000px;}
.y35{bottom:169.230000px;}
.yaf{bottom:174.090000px;}
.y73{bottom:177.690000px;}
.y34{bottom:184.890000px;}
.yae{bottom:189.390000px;}
.y72{bottom:193.170000px;}
.ydd{bottom:200.190000px;}
.y33{bottom:200.370000px;}
.yad{bottom:204.870000px;}
.y71{bottom:208.650000px;}
.y32{bottom:215.850000px;}
.yac{bottom:220.890000px;}
.y70{bottom:224.130000px;}
.yde{bottom:225.030000px;}
.y31{bottom:231.510000px;}
.yab{bottom:233.850000px;}
.y6f{bottom:239.790000px;}
.y30{bottom:246.990000px;}
.y6e{bottom:255.450000px;}
.yaa{bottom:255.810000px;}
.y2f{bottom:262.650000px;}
.y6d{bottom:268.410000px;}
.ydc{bottom:268.770000px;}
.ya9{bottom:276.510000px;}
.y2e{bottom:277.950000px;}
.ydb{bottom:284.250000px;}
.y2d{bottom:293.430000px;}
.ya8{bottom:297.930000px;}
.yda{bottom:299.730000px;}
.y2c{bottom:309.450000px;}
.yd9{bottom:315.210000px;}
.y6c{bottom:318.270000px;}
.ya7{bottom:319.170000px;}
.y2b{bottom:324.930000px;}
.yd8{bottom:330.870000px;}
.y2a{bottom:340.410000px;}
.ya4{bottom:340.950000px;}
.y6b{bottom:343.290000px;}
.yd7{bottom:346.350000px;}
.y29{bottom:356.070000px;}
.ya6{bottom:361.470000px;}
.yd6{bottom:361.830000px;}
.y6a{bottom:368.310000px;}
.y28{bottom:371.550000px;}
.yd5{bottom:377.310000px;}
.y27{bottom:387.210000px;}
.yd4{bottom:393.015000px;}
.y69{bottom:393.375000px;}
.ya3{bottom:399.675000px;}
.y26{bottom:402.735000px;}
.yd3{bottom:408.315000px;}
.ya2{bottom:415.155000px;}
.y25{bottom:418.215000px;}
.yd2{bottom:424.155000px;}
.ya1{bottom:430.635000px;}
.yd1{bottom:439.815000px;}
.y67{bottom:443.235000px;}
.ya0{bottom:446.295000px;}
.y24{bottom:448.995000px;}
.yd0{bottom:455.295000px;}
.y9f{bottom:461.775000px;}
.y65{bottom:468.255000px;}
.ycf{bottom:470.775000px;}
.y9e{bottom:477.435000px;}
.y23{bottom:480.135000px;}
.yce{bottom:486.435000px;}
.y9d{bottom:492.915000px;}
.y66{bottom:493.275000px;}
.y22{bottom:498.315000px;}
.ycd{bottom:501.915000px;}
.y9c{bottom:508.395000px;}
.ycc{bottom:517.395000px;}
.y9b{bottom:524.055000px;}
.y21{bottom:527.295000px;}
.ycb{bottom:533.055000px;}
.y64{bottom:537.195000px;}
.y9a{bottom:539.715000px;}
.y20{bottom:545.475000px;}
.yca{bottom:548.535000px;}
.y63{bottom:552.675000px;}
.y99{bottom:554.835000px;}
.y1f{bottom:561.135000px;}
.yc8{bottom:561.675000px;}
.y62{bottom:568.155000px;}
.y98{bottom:570.495000px;}
.y1e{bottom:576.615000px;}
.y61{bottom:583.635000px;}
.y97{bottom:583.815000px;}
.y1d{bottom:592.095000px;}
.y60{bottom:599.295000px;}
.y96{bottom:607.035000px;}
.y1c{bottom:607.575000px;}
.y5f{bottom:614.775000px;}
.y1b{bottom:623.055000px;}
.yc7{bottom:624.495000px;}
.y5e{bottom:630.435000px;}
.y1a{bottom:638.715000px;}
.y5d{bottom:643.425000px;}
.y19{bottom:654.405000px;}
.yc6{bottom:656.205000px;}
.y94{bottom:662.145000px;}
.y5c{bottom:665.745000px;}
.y18{bottom:676.545000px;}
.y92{bottom:685.365000px;}
.y5a{bottom:686.805000px;}
.yc5{bottom:688.065000px;}
.y17{bottom:703.185000px;}
.y56{bottom:708.405000px;}
.y8f{bottom:717.225000px;}
.y16{bottom:718.665000px;}
.yc4{bottom:719.925000px;}
.y58{bottom:728.745000px;}
.yfa{bottom:729.285000px;}
.y15{bottom:734.325000px;}
.yf9{bottom:744.765000px;}
.yf8{bottom:760.245000px;}
.yc3{bottom:767.265000px;}
.y14{bottom:768.885000px;}
.y55{bottom:769.965000px;}
.yf7{bottom:775.725000px;}
.y8e{bottom:783.465000px;}
.y54{bottom:785.445000px;}
.y13{bottom:789.045000px;}
.yf6{bottom:791.385000px;}
.y8d{bottom:799.125000px;}
.y53{bottom:800.925000px;}
.yf5{bottom:806.865000px;}
.yc2{bottom:809.385000px;}
.y8c{bottom:814.605000px;}
.y52{bottom:816.405000px;}
.y12{bottom:821.445000px;}
.yf4{bottom:822.345000px;}
.yc1{bottom:824.865000px;}
.y8b{bottom:830.085000px;}
.y51{bottom:832.065000px;}
.yf3{bottom:837.825000px;}
.yc0{bottom:840.525000px;}
.y11{bottom:843.765000px;}
.y8a{bottom:845.565000px;}
.y50{bottom:847.365000px;}
.y10{bottom:852.225000px;}
.yf2{bottom:853.485000px;}
.ybf{bottom:855.825000px;}
.y89{bottom:861.045000px;}
.y4f{bottom:862.845000px;}
.yf1{bottom:868.965000px;}
.ybe{bottom:871.305000px;}
.y88{bottom:876.705000px;}
.yf{bottom:877.785000px;}
.y4e{bottom:878.505000px;}
.yf0{bottom:884.445000px;}
.ybd{bottom:886.965000px;}
.y87{bottom:892.410000px;}
.y4d{bottom:894.390000px;}
.yef{bottom:899.970000px;}
.ybb{bottom:900.330000px;}
.y86{bottom:907.530000px;}
.y4c{bottom:909.870000px;}
.yee{bottom:915.630000px;}
.ybc{bottom:916.710000px;}
.ye{bottom:916.890000px;}
.y85{bottom:923.190000px;}
.y4b{bottom:925.530000px;}
.yba{bottom:932.910000px;}
.y84{bottom:938.850000px;}
.y4a{bottom:940.830000px;}
.yd{bottom:941.190000px;}
.yed{bottom:946.590000px;}
.yb9{bottom:949.110000px;}
.y83{bottom:954.690000px;}
.y81{bottom:967.830000px;}
.y49{bottom:971.970000px;}
.yec{bottom:977.730000px;}
.yb8{bottom:980.970000px;}
.y82{bottom:987.270000px;}
.y48{bottom:987.810000px;}
.yeb{bottom:993.390000px;}
.yc{bottom:1000.590000px;}
.y47{bottom:1003.470000px;}
.y80{bottom:1006.710000px;}
.yea{bottom:1008.870000px;}
.yb7{bottom:1012.830000px;}
.y46{bottom:1018.950000px;}
.ye9{bottom:1024.350000px;}
.y7e{bottom:1026.330000px;}
.y9{bottom:1034.070000px;}
.y45{bottom:1034.430000px;}
.yb{bottom:1039.290000px;}
.ye8{bottom:1039.830000px;}
.y44{bottom:1050.090000px;}
.ye7{bottom:1055.490000px;}
.y8{bottom:1057.290000px;}
.y7d{bottom:1058.010000px;}
.yb5{bottom:1060.170000px;}
.y43{bottom:1065.570000px;}
.ye6{bottom:1070.790000px;}
.ya{bottom:1071.330000px;}
.y7c{bottom:1077.630000px;}
.y42{bottom:1081.230000px;}
.ye5{bottom:1086.270000px;}
.y7{bottom:1086.630000px;}
.y41{bottom:1096.710000px;}
.y7b{bottom:1097.070000px;}
.ye4{bottom:1102.290000px;}
.y6{bottom:1105.710000px;}
.yb3{bottom:1107.330000px;}
.y40{bottom:1112.190000px;}
.ye3{bottom:1115.250000px;}
.y79{bottom:1116.510000px;}
.y5{bottom:1122.990000px;}
.yb4{bottom:1123.710000px;}
.y3f{bottom:1127.670000px;}
.y7a{bottom:1136.130000px;}
.y4{bottom:1140.270000px;}
.y3e{bottom:1143.330000px;}
.ye2{bottom:1147.140000px;}
.y3{bottom:1158.300000px;}
.y3d{bottom:1158.840000px;}
.y78{bottom:1159.020000px;}
.y3b{bottom:1175.220000px;}
.y3a{bottom:1193.760000px;}
.hb{height:12.335625px;}
.h2f{height:15.480000px;}
.h30{height:15.660000px;}
.h27{height:18.360000px;}
.h1f{height:18.720000px;}
.h1e{height:18.756000px;}
.h15{height:19.620000px;}
.h28{height:19.800000px;}
.h2c{height:19.980000px;}
.h17{height:20.160000px;}
.h2a{height:20.340000px;}
.h2b{height:20.700000px;}
.h16{height:20.880000px;}
.h29{height:21.060000px;}
.h2d{height:21.240000px;}
.h14{height:21.420000px;}
.h18{height:21.600000px;}
.h24{height:22.500000px;}
.h34{height:23.940000px;}
.h35{height:23.976000px;}
.h1a{height:24.120000px;}
.h1c{height:24.156000px;}
.h1b{height:24.300000px;}
.h20{height:30.960000px;}
.h25{height:30.996000px;}
.h23{height:31.140000px;}
.h36{height:31.176000px;}
.h2e{height:31.860000px;}
.hc{height:35.314453px;}
.h10{height:38.158594px;}
.h21{height:38.160000px;}
.h1d{height:38.376000px;}
.h26{height:38.880000px;}
.h13{height:41.760000px;}
.h31{height:46.440000px;}
.h22{height:46.620000px;}
.h11{height:47.344922px;}
.h7{height:48.616875px;}
.h33{height:48.780000px;}
.h19{height:49.140000px;}
.hd{height:52.971680px;}
.h12{height:52.998047px;}
.he{height:54.421875px;}
.h37{height:55.503491px;}
.h8{height:55.796836px;}
.h9{height:58.621992px;}
.h4{height:60.226875px;}
.h32{height:62.100000px;}
.hf{height:62.153438px;}
.h2{height:65.010937px;}
.h5{height:66.757500px;}
.h3{height:72.562500px;}
.h6{height:81.995625px;}
.ha{height:84.898125px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w24{width:25.596000px;}
.w2c{width:27.036000px;}
.w3d{width:29.340000px;}
.w2f{width:36.000000px;}
.w47{width:37.296000px;}
.w4a{width:40.500000px;}
.w3f{width:41.796000px;}
.w45{width:42.156000px;}
.w26{width:42.840000px;}
.w1b{width:43.056000px;}
.w3c{width:44.136000px;}
.w30{width:45.576000px;}
.w3e{width:47.880000px;}
.w2e{width:48.960000px;}
.w39{width:51.876000px;}
.w23{width:53.280000px;}
.w31{width:54.360000px;}
.w2b{width:54.540000px;}
.w2d{width:54.720000px;}
.wb{width:57.420000px;}
.wd{width:57.816000px;}
.w48{width:58.860000px;}
.wc{width:59.760000px;}
.wa{width:61.020000px;}
.w33{width:61.200000px;}
.w9{width:63.396000px;}
.w14{width:64.476000px;}
.we{width:64.836000px;}
.w25{width:71.640000px;}
.w44{width:73.980000px;}
.w3b{width:74.016000px;}
.w8{width:74.160000px;}
.w46{width:81.900000px;}
.w1c{width:82.260000px;}
.w1e{width:83.700000px;}
.w22{width:84.600000px;}
.w21{width:84.636000px;}
.w1f{width:84.816000px;}
.w20{width:86.940000px;}
.w49{width:91.116000px;}
.w15{width:99.540000px;}
.w19{width:99.900000px;}
.w1d{width:106.956000px;}
.w2a{width:109.440000px;}
.w18{width:115.416000px;}
.w7{width:115.596000px;}
.w27{width:117.756000px;}
.w32{width:118.116000px;}
.w5{width:118.980000px;}
.w6{width:123.516000px;}
.wf{width:124.020000px;}
.w12{width:124.380000px;}
.w3a{width:127.260000px;}
.w29{width:131.256000px;}
.w43{width:131.976000px;}
.w28{width:137.016000px;}
.w4{width:137.916000px;}
.w36{width:141.660000px;}
.w35{width:141.696000px;}
.w10{width:152.490000px;}
.w1a{width:164.730000px;}
.w11{width:165.810000px;}
.w42{width:178.770000px;}
.w3{width:182.190000px;}
.w17{width:184.710000px;}
.w13{width:189.570000px;}
.w41{width:190.830000px;}
.w40{width:211.890000px;}
.w4b{width:212.250000px;}
.w34{width:240.375000px;}
.w37{width:240.735000px;}
.w16{width:300.495000px;}
.w38{width:302.295000px;}
.w1{width:894.000000px;}
.w2{width:894.059987px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x28{left:7.920000px;}
.x27{left:9.900000px;}
.x26{left:11.160000px;}
.x4d{left:12.420000px;}
.x2a{left:13.500000px;}
.x36{left:14.940000px;}
.x25{left:16.380000px;}
.x4c{left:17.640000px;}
.x23{left:18.720000px;}
.x21{left:20.520000px;}
.x22{left:21.960000px;}
.x41{left:23.040000px;}
.x1c{left:24.120000px;}
.x1e{left:25.380000px;}
.x1a{left:27.360000px;}
.x31{left:28.980000px;}
.x2{left:30.059987px;}
.x38{left:31.680000px;}
.x18{left:33.300000px;}
.x20{left:34.920000px;}
.x15{left:36.360000px;}
.x2c{left:38.340000px;}
.x5e{left:39.420000px;}
.x24{left:41.034000px;}
.x13{left:43.560000px;}
.x32{left:44.850000px;}
.xc{left:46.799987px;}
.x37{left:48.060000px;}
.x5d{left:49.140000px;}
.xe{left:50.399987px;}
.x34{left:51.690000px;}
.x71{left:52.920000px;}
.x33{left:54.900000px;}
.x35{left:58.365000px;}
.x6c{left:60.120000px;}
.x30{left:61.245000px;}
.x11{left:64.434000px;}
.x3f{left:67.350000px;}
.x5f{left:70.245000px;}
.x39{left:71.325000px;}
.x6f{left:73.080000px;}
.x76{left:74.339987px;}
.x8{left:75.599987px;}
.x3a{left:79.605000px;}
.x2f{left:83.025000px;}
.x60{left:88.785000px;}
.x43{left:90.756000px;}
.x5a{left:96.525000px;}
.x77{left:101.375987px;}
.x6d{left:102.636000px;}
.x62{left:104.436000px;}
.x3e{left:107.670000px;}
.x10{left:113.256000px;}
.x61{left:120.465000px;}
.x58{left:159.870000px;}
.x44{left:173.370000px;}
.x4e{left:182.910000px;}
.x29{left:198.750000px;}
.x3c{left:220.350000px;}
.x59{left:221.790000px;}
.x4f{left:226.470000px;}
.x63{left:232.050000px;}
.x5{left:244.109987px;}
.x2b{left:264.315000px;}
.x3{left:270.254987px;}
.x45{left:280.695000px;}
.x3b{left:285.734987px;}
.x4{left:290.594987px;}
.x12{left:295.815000px;}
.xa{left:300.674987px;}
.x6e{left:315.075000px;}
.x64{left:317.235000px;}
.x50{left:344.595000px;}
.x42{left:359.174987px;}
.x46{left:364.755000px;}
.x19{left:370.335000px;}
.x9{left:371.774987px;}
.x3d{left:385.455000px;}
.x2d{left:388.695000px;}
.x53{left:399.495000px;}
.x65{left:402.195000px;}
.x75{left:403.454987px;}
.xd{left:412.454987px;}
.x54{left:426.885000px;}
.x72{left:431.925000px;}
.x14{left:434.085000px;}
.x1{left:440.744987px;}
.xb{left:449.204987px;}
.xf{left:453.164987px;}
.x5b{left:462.525000px;}
.x6{left:478.904987px;}
.x51{left:481.965000px;}
.x66{left:487.365000px;}
.x1b{left:495.645000px;}
.x7{left:506.444987px;}
.x55{left:531.285000px;}
.x47{left:537.405000px;}
.x2e{left:541.545000px;}
.x16{left:553.425000px;}
.x56{left:567.645000px;}
.x40{left:570.525000px;}
.x67{left:572.325000px;}
.x73{left:588.705000px;}
.x5c{left:604.590000px;}
.x52{left:613.770000px;}
.x1d{left:617.190000px;}
.x48{left:622.410000px;}
.x74{left:626.370000px;}
.x68{left:646.890000px;}
.x57{left:668.490000px;}
.x17{left:677.310000px;}
.x70{left:685.590000px;}
.x49{left:707.550000px;}
.x69{left:731.850000px;}
.x1f{left:735.090000px;}
.x4a{left:761.190000px;}
.x6a{left:776.520000px;}
.x4b{left:787.140000px;}
.x6b{left:806.220000px;}
@media print{
.v2{vertical-align:-61.440000pt;}
.v5{vertical-align:-57.600000pt;}
.v1{vertical-align:-55.680000pt;}
.v6{vertical-align:-53.760000pt;}
.v4{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:16.000000pt;}
.v3{vertical-align:21.120000pt;}
.ls20{letter-spacing:-0.640000pt;}
.ls21{letter-spacing:-0.544000pt;}
.ls12{letter-spacing:-0.448000pt;}
.lsb{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.196267pt;}
.ls16{letter-spacing:-0.096000pt;}
.lsc{letter-spacing:-0.024320pt;}
.ls1b{letter-spacing:-0.016000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.016000pt;}
.ls4{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.192000pt;}
.ls10{letter-spacing:0.288000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.768000pt;}
.ls5{letter-spacing:0.800000pt;}
.ls1f{letter-spacing:2.656000pt;}
.ls1e{letter-spacing:26.976000pt;}
.ls6{letter-spacing:46.720000pt;}
.ls9{letter-spacing:49.440000pt;}
.ls3{letter-spacing:59.040000pt;}
.ls0{letter-spacing:137.760000pt;}
.ls1d{letter-spacing:145.440000pt;}
.ls1a{letter-spacing:655.626667pt;}
.ls11{letter-spacing:740.266667pt;}
.ls18{letter-spacing:746.666667pt;}
.ls13{letter-spacing:749.866667pt;}
.ls14{letter-spacing:755.626667pt;}
.ls19{letter-spacing:906.026667pt;}
.lse{letter-spacing:1084.586667pt;}
.lsf{letter-spacing:1204.906667pt;}
.ls8{letter-spacing:1215.146667pt;}
.ls1c{letter-spacing:1351.573333pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-12.960000pt;}
.wse{word-spacing:-12.768000pt;}
.ws6{word-spacing:-12.640000pt;}
.ws2{word-spacing:-12.615680pt;}
.ws4{word-spacing:-12.443733pt;}
.ws5{word-spacing:-12.320000pt;}
.ws10{word-spacing:-12.192000pt;}
.wsb{word-spacing:-12.016000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws11{word-spacing:-11.984000pt;}
.wsf{word-spacing:-11.904000pt;}
.wsa{word-spacing:-11.680000pt;}
.wsd{word-spacing:-11.552000pt;}
.ws7{word-spacing:-9.280000pt;}
.ws8{word-spacing:-8.000000pt;}
.ws12{word-spacing:-7.360000pt;}
.wsc{word-spacing:0.000000pt;}
._1{margin-left:-2.867200pt;}
._0{margin-left:-1.216000pt;}
._2{width:0.958720pt;}
._5{width:2.592000pt;}
._6{width:3.507840pt;}
._7{width:4.992000pt;}
._8{width:6.432000pt;}
._9{width:7.344000pt;}
._a{width:8.931840pt;}
._4{width:1281.066667pt;}
._3{width:1399.573333pt;}
.fs8{font-size:10.880000pt;}
.fs9{font-size:32.000000pt;}
.fsc{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsb{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y57{bottom:2.560000pt;}
.y59{bottom:2.720000pt;}
.y5b{bottom:2.880000pt;}
.y68{bottom:3.040000pt;}
.ya5{bottom:16.320000pt;}
.y90{bottom:16.480000pt;}
.y7f{bottom:16.640000pt;}
.y95{bottom:16.666667pt;}
.y93{bottom:16.800000pt;}
.y91{bottom:30.240000pt;}
.yb6{bottom:30.400000pt;}
.yc9{bottom:44.320000pt;}
.y2{bottom:51.520000pt;}
.y1{bottom:68.320000pt;}
.y3c{bottom:85.280000pt;}
.y39{bottom:95.200000pt;}
.y77{bottom:102.400000pt;}
.ye1{bottom:105.760000pt;}
.y38{bottom:108.960000pt;}
.yb2{bottom:113.280000pt;}
.y76{bottom:116.320000pt;}
.y37{bottom:122.912000pt;}
.yb1{bottom:127.072000pt;}
.ye0{bottom:127.712000pt;}
.y75{bottom:130.272000pt;}
.y36{bottom:136.666667pt;}
.yb0{bottom:140.826667pt;}
.y74{bottom:144.026667pt;}
.ydf{bottom:149.786667pt;}
.y35{bottom:150.426667pt;}
.yaf{bottom:154.746667pt;}
.y73{bottom:157.946667pt;}
.y34{bottom:164.346667pt;}
.yae{bottom:168.346667pt;}
.y72{bottom:171.706667pt;}
.ydd{bottom:177.946667pt;}
.y33{bottom:178.106667pt;}
.yad{bottom:182.106667pt;}
.y71{bottom:185.466667pt;}
.y32{bottom:191.866667pt;}
.yac{bottom:196.346667pt;}
.y70{bottom:199.226667pt;}
.yde{bottom:200.026667pt;}
.y31{bottom:205.786667pt;}
.yab{bottom:207.866667pt;}
.y6f{bottom:213.146667pt;}
.y30{bottom:219.546667pt;}
.y6e{bottom:227.066667pt;}
.yaa{bottom:227.386667pt;}
.y2f{bottom:233.466667pt;}
.y6d{bottom:238.586667pt;}
.ydc{bottom:238.906667pt;}
.ya9{bottom:245.786667pt;}
.y2e{bottom:247.066667pt;}
.ydb{bottom:252.666667pt;}
.y2d{bottom:260.826667pt;}
.ya8{bottom:264.826667pt;}
.yda{bottom:266.426667pt;}
.y2c{bottom:275.066667pt;}
.yd9{bottom:280.186667pt;}
.y6c{bottom:282.906667pt;}
.ya7{bottom:283.706667pt;}
.y2b{bottom:288.826667pt;}
.yd8{bottom:294.106667pt;}
.y2a{bottom:302.586667pt;}
.ya4{bottom:303.066667pt;}
.y6b{bottom:305.146667pt;}
.yd7{bottom:307.866667pt;}
.y29{bottom:316.506667pt;}
.ya6{bottom:321.306667pt;}
.yd6{bottom:321.626667pt;}
.y6a{bottom:327.386667pt;}
.y28{bottom:330.266667pt;}
.yd5{bottom:335.386667pt;}
.y27{bottom:344.186667pt;}
.yd4{bottom:349.346667pt;}
.y69{bottom:349.666667pt;}
.ya3{bottom:355.266667pt;}
.y26{bottom:357.986667pt;}
.yd3{bottom:362.946667pt;}
.ya2{bottom:369.026667pt;}
.y25{bottom:371.746667pt;}
.yd2{bottom:377.026667pt;}
.ya1{bottom:382.786667pt;}
.yd1{bottom:390.946667pt;}
.y67{bottom:393.986667pt;}
.ya0{bottom:396.706667pt;}
.y24{bottom:399.106667pt;}
.yd0{bottom:404.706667pt;}
.y9f{bottom:410.466667pt;}
.y65{bottom:416.226667pt;}
.ycf{bottom:418.466667pt;}
.y9e{bottom:424.386667pt;}
.y23{bottom:426.786667pt;}
.yce{bottom:432.386667pt;}
.y9d{bottom:438.146667pt;}
.y66{bottom:438.466667pt;}
.y22{bottom:442.946667pt;}
.ycd{bottom:446.146667pt;}
.y9c{bottom:451.906667pt;}
.ycc{bottom:459.906667pt;}
.y9b{bottom:465.826667pt;}
.y21{bottom:468.706667pt;}
.ycb{bottom:473.826667pt;}
.y64{bottom:477.506667pt;}
.y9a{bottom:479.746667pt;}
.y20{bottom:484.866667pt;}
.yca{bottom:487.586667pt;}
.y63{bottom:491.266667pt;}
.y99{bottom:493.186667pt;}
.y1f{bottom:498.786667pt;}
.yc8{bottom:499.266667pt;}
.y62{bottom:505.026667pt;}
.y98{bottom:507.106667pt;}
.y1e{bottom:512.546667pt;}
.y61{bottom:518.786667pt;}
.y97{bottom:518.946667pt;}
.y1d{bottom:526.306667pt;}
.y60{bottom:532.706667pt;}
.y96{bottom:539.586667pt;}
.y1c{bottom:540.066667pt;}
.y5f{bottom:546.466667pt;}
.y1b{bottom:553.826667pt;}
.yc7{bottom:555.106667pt;}
.y5e{bottom:560.386667pt;}
.y1a{bottom:567.746667pt;}
.y5d{bottom:571.933333pt;}
.y19{bottom:581.693333pt;}
.yc6{bottom:583.293333pt;}
.y94{bottom:588.573333pt;}
.y5c{bottom:591.773333pt;}
.y18{bottom:601.373333pt;}
.y92{bottom:609.213333pt;}
.y5a{bottom:610.493333pt;}
.yc5{bottom:611.613333pt;}
.y17{bottom:625.053333pt;}
.y56{bottom:629.693333pt;}
.y8f{bottom:637.533333pt;}
.y16{bottom:638.813333pt;}
.yc4{bottom:639.933333pt;}
.y58{bottom:647.773333pt;}
.yfa{bottom:648.253333pt;}
.y15{bottom:652.733333pt;}
.yf9{bottom:662.013333pt;}
.yf8{bottom:675.773333pt;}
.yc3{bottom:682.013333pt;}
.y14{bottom:683.453333pt;}
.y55{bottom:684.413333pt;}
.yf7{bottom:689.533333pt;}
.y8e{bottom:696.413333pt;}
.y54{bottom:698.173333pt;}
.y13{bottom:701.373333pt;}
.yf6{bottom:703.453333pt;}
.y8d{bottom:710.333333pt;}
.y53{bottom:711.933333pt;}
.yf5{bottom:717.213333pt;}
.yc2{bottom:719.453333pt;}
.y8c{bottom:724.093333pt;}
.y52{bottom:725.693333pt;}
.y12{bottom:730.173333pt;}
.yf4{bottom:730.973333pt;}
.yc1{bottom:733.213333pt;}
.y8b{bottom:737.853333pt;}
.y51{bottom:739.613333pt;}
.yf3{bottom:744.733333pt;}
.yc0{bottom:747.133333pt;}
.y11{bottom:750.013333pt;}
.y8a{bottom:751.613333pt;}
.y50{bottom:753.213333pt;}
.y10{bottom:757.533333pt;}
.yf2{bottom:758.653333pt;}
.ybf{bottom:760.733333pt;}
.y89{bottom:765.373333pt;}
.y4f{bottom:766.973333pt;}
.yf1{bottom:772.413333pt;}
.ybe{bottom:774.493333pt;}
.y88{bottom:779.293333pt;}
.yf{bottom:780.253333pt;}
.y4e{bottom:780.893333pt;}
.yf0{bottom:786.173333pt;}
.ybd{bottom:788.413333pt;}
.y87{bottom:793.253333pt;}
.y4d{bottom:795.013333pt;}
.yef{bottom:799.973333pt;}
.ybb{bottom:800.293333pt;}
.y86{bottom:806.693333pt;}
.y4c{bottom:808.773333pt;}
.yee{bottom:813.893333pt;}
.ybc{bottom:814.853333pt;}
.ye{bottom:815.013333pt;}
.y85{bottom:820.613333pt;}
.y4b{bottom:822.693333pt;}
.yba{bottom:829.253333pt;}
.y84{bottom:834.533333pt;}
.y4a{bottom:836.293333pt;}
.yd{bottom:836.613333pt;}
.yed{bottom:841.413333pt;}
.yb9{bottom:843.653333pt;}
.y83{bottom:848.613333pt;}
.y81{bottom:860.293333pt;}
.y49{bottom:863.973333pt;}
.yec{bottom:869.093333pt;}
.yb8{bottom:871.973333pt;}
.y82{bottom:877.573333pt;}
.y48{bottom:878.053333pt;}
.yeb{bottom:883.013333pt;}
.yc{bottom:889.413333pt;}
.y47{bottom:891.973333pt;}
.y80{bottom:894.853333pt;}
.yea{bottom:896.773333pt;}
.yb7{bottom:900.293333pt;}
.y46{bottom:905.733333pt;}
.ye9{bottom:910.533333pt;}
.y7e{bottom:912.293333pt;}
.y9{bottom:919.173333pt;}
.y45{bottom:919.493333pt;}
.yb{bottom:923.813333pt;}
.ye8{bottom:924.293333pt;}
.y44{bottom:933.413333pt;}
.ye7{bottom:938.213333pt;}
.y8{bottom:939.813333pt;}
.y7d{bottom:940.453333pt;}
.yb5{bottom:942.373333pt;}
.y43{bottom:947.173333pt;}
.ye6{bottom:951.813333pt;}
.ya{bottom:952.293333pt;}
.y7c{bottom:957.893333pt;}
.y42{bottom:961.093333pt;}
.ye5{bottom:965.573333pt;}
.y7{bottom:965.893333pt;}
.y41{bottom:974.853333pt;}
.y7b{bottom:975.173333pt;}
.ye4{bottom:979.813333pt;}
.y6{bottom:982.853333pt;}
.yb3{bottom:984.293333pt;}
.y40{bottom:988.613333pt;}
.ye3{bottom:991.333333pt;}
.y79{bottom:992.453333pt;}
.y5{bottom:998.213333pt;}
.yb4{bottom:998.853333pt;}
.y3f{bottom:1002.373333pt;}
.y7a{bottom:1009.893333pt;}
.y4{bottom:1013.573333pt;}
.y3e{bottom:1016.293333pt;}
.ye2{bottom:1019.680000pt;}
.y3{bottom:1029.600000pt;}
.y3d{bottom:1030.080000pt;}
.y78{bottom:1030.240000pt;}
.y3b{bottom:1044.640000pt;}
.y3a{bottom:1061.120000pt;}
.hb{height:10.965000pt;}
.h2f{height:13.760000pt;}
.h30{height:13.920000pt;}
.h27{height:16.320000pt;}
.h1f{height:16.640000pt;}
.h1e{height:16.672000pt;}
.h15{height:17.440000pt;}
.h28{height:17.600000pt;}
.h2c{height:17.760000pt;}
.h17{height:17.920000pt;}
.h2a{height:18.080000pt;}
.h2b{height:18.400000pt;}
.h16{height:18.560000pt;}
.h29{height:18.720000pt;}
.h2d{height:18.880000pt;}
.h14{height:19.040000pt;}
.h18{height:19.200000pt;}
.h24{height:20.000000pt;}
.h34{height:21.280000pt;}
.h35{height:21.312000pt;}
.h1a{height:21.440000pt;}
.h1c{height:21.472000pt;}
.h1b{height:21.600000pt;}
.h20{height:27.520000pt;}
.h25{height:27.552000pt;}
.h23{height:27.680000pt;}
.h36{height:27.712000pt;}
.h2e{height:28.320000pt;}
.hc{height:31.390625pt;}
.h10{height:33.918750pt;}
.h21{height:33.920000pt;}
.h1d{height:34.112000pt;}
.h26{height:34.560000pt;}
.h13{height:37.120000pt;}
.h31{height:41.280000pt;}
.h22{height:41.440000pt;}
.h11{height:42.084375pt;}
.h7{height:43.215000pt;}
.h33{height:43.360000pt;}
.h19{height:43.680000pt;}
.hd{height:47.085938pt;}
.h12{height:47.109375pt;}
.he{height:48.375000pt;}
.h37{height:49.336436pt;}
.h8{height:49.597187pt;}
.h9{height:52.108438pt;}
.h4{height:53.535000pt;}
.h32{height:55.200000pt;}
.hf{height:55.247500pt;}
.h2{height:57.787500pt;}
.h5{height:59.340000pt;}
.h3{height:64.500000pt;}
.h6{height:72.885000pt;}
.ha{height:75.465000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w24{width:22.752000pt;}
.w2c{width:24.032000pt;}
.w3d{width:26.080000pt;}
.w2f{width:32.000000pt;}
.w47{width:33.152000pt;}
.w4a{width:36.000000pt;}
.w3f{width:37.152000pt;}
.w45{width:37.472000pt;}
.w26{width:38.080000pt;}
.w1b{width:38.272000pt;}
.w3c{width:39.232000pt;}
.w30{width:40.512000pt;}
.w3e{width:42.560000pt;}
.w2e{width:43.520000pt;}
.w39{width:46.112000pt;}
.w23{width:47.360000pt;}
.w31{width:48.320000pt;}
.w2b{width:48.480000pt;}
.w2d{width:48.640000pt;}
.wb{width:51.040000pt;}
.wd{width:51.392000pt;}
.w48{width:52.320000pt;}
.wc{width:53.120000pt;}
.wa{width:54.240000pt;}
.w33{width:54.400000pt;}
.w9{width:56.352000pt;}
.w14{width:57.312000pt;}
.we{width:57.632000pt;}
.w25{width:63.680000pt;}
.w44{width:65.760000pt;}
.w3b{width:65.792000pt;}
.w8{width:65.920000pt;}
.w46{width:72.800000pt;}
.w1c{width:73.120000pt;}
.w1e{width:74.400000pt;}
.w22{width:75.200000pt;}
.w21{width:75.232000pt;}
.w1f{width:75.392000pt;}
.w20{width:77.280000pt;}
.w49{width:80.992000pt;}
.w15{width:88.480000pt;}
.w19{width:88.800000pt;}
.w1d{width:95.072000pt;}
.w2a{width:97.280000pt;}
.w18{width:102.592000pt;}
.w7{width:102.752000pt;}
.w27{width:104.672000pt;}
.w32{width:104.992000pt;}
.w5{width:105.760000pt;}
.w6{width:109.792000pt;}
.wf{width:110.240000pt;}
.w12{width:110.560000pt;}
.w3a{width:113.120000pt;}
.w29{width:116.672000pt;}
.w43{width:117.312000pt;}
.w28{width:121.792000pt;}
.w4{width:122.592000pt;}
.w36{width:125.920000pt;}
.w35{width:125.952000pt;}
.w10{width:135.546667pt;}
.w1a{width:146.426667pt;}
.w11{width:147.386667pt;}
.w42{width:158.906667pt;}
.w3{width:161.946667pt;}
.w17{width:164.186667pt;}
.w13{width:168.506667pt;}
.w41{width:169.626667pt;}
.w40{width:188.346667pt;}
.w4b{width:188.666667pt;}
.w34{width:213.666667pt;}
.w37{width:213.986667pt;}
.w16{width:267.106667pt;}
.w38{width:268.706667pt;}
.w1{width:794.666667pt;}
.w2{width:794.719988pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x28{left:7.040000pt;}
.x27{left:8.800000pt;}
.x26{left:9.920000pt;}
.x4d{left:11.040000pt;}
.x2a{left:12.000000pt;}
.x36{left:13.280000pt;}
.x25{left:14.560000pt;}
.x4c{left:15.680000pt;}
.x23{left:16.640000pt;}
.x21{left:18.240000pt;}
.x22{left:19.520000pt;}
.x41{left:20.480000pt;}
.x1c{left:21.440000pt;}
.x1e{left:22.560000pt;}
.x1a{left:24.320000pt;}
.x31{left:25.760000pt;}
.x2{left:26.719988pt;}
.x38{left:28.160000pt;}
.x18{left:29.600000pt;}
.x20{left:31.040000pt;}
.x15{left:32.320000pt;}
.x2c{left:34.080000pt;}
.x5e{left:35.040000pt;}
.x24{left:36.474667pt;}
.x13{left:38.720000pt;}
.x32{left:39.866667pt;}
.xc{left:41.599988pt;}
.x37{left:42.720000pt;}
.x5d{left:43.680000pt;}
.xe{left:44.799988pt;}
.x34{left:45.946667pt;}
.x71{left:47.040000pt;}
.x33{left:48.800000pt;}
.x35{left:51.880000pt;}
.x6c{left:53.440000pt;}
.x30{left:54.440000pt;}
.x11{left:57.274667pt;}
.x3f{left:59.866667pt;}
.x5f{left:62.440000pt;}
.x39{left:63.400000pt;}
.x6f{left:64.960000pt;}
.x76{left:66.079988pt;}
.x8{left:67.199988pt;}
.x3a{left:70.760000pt;}
.x2f{left:73.800000pt;}
.x60{left:78.920000pt;}
.x43{left:80.672000pt;}
.x5a{left:85.800000pt;}
.x77{left:90.111988pt;}
.x6d{left:91.232000pt;}
.x62{left:92.832000pt;}
.x3e{left:95.706667pt;}
.x10{left:100.672000pt;}
.x61{left:107.080000pt;}
.x58{left:142.106667pt;}
.x44{left:154.106667pt;}
.x4e{left:162.586667pt;}
.x29{left:176.666667pt;}
.x3c{left:195.866667pt;}
.x59{left:197.146667pt;}
.x4f{left:201.306667pt;}
.x63{left:206.266667pt;}
.x5{left:216.986655pt;}
.x2b{left:234.946667pt;}
.x3{left:240.226655pt;}
.x45{left:249.506667pt;}
.x3b{left:253.986655pt;}
.x4{left:258.306655pt;}
.x12{left:262.946667pt;}
.xa{left:267.266655pt;}
.x6e{left:280.066667pt;}
.x64{left:281.986667pt;}
.x50{left:306.306667pt;}
.x42{left:319.266655pt;}
.x46{left:324.226667pt;}
.x19{left:329.186667pt;}
.x9{left:330.466655pt;}
.x3d{left:342.626667pt;}
.x2d{left:345.506667pt;}
.x53{left:355.106667pt;}
.x65{left:357.506667pt;}
.x75{left:358.626655pt;}
.xd{left:366.626655pt;}
.x54{left:379.453333pt;}
.x72{left:383.933333pt;}
.x14{left:385.853333pt;}
.x1{left:391.773321pt;}
.xb{left:399.293321pt;}
.xf{left:402.813321pt;}
.x5b{left:411.133333pt;}
.x6{left:425.693321pt;}
.x51{left:428.413333pt;}
.x66{left:433.213333pt;}
.x1b{left:440.573333pt;}
.x7{left:450.173321pt;}
.x55{left:472.253333pt;}
.x47{left:477.693333pt;}
.x2e{left:481.373333pt;}
.x16{left:491.933333pt;}
.x56{left:504.573333pt;}
.x40{left:507.133333pt;}
.x67{left:508.733333pt;}
.x73{left:523.293333pt;}
.x5c{left:537.413333pt;}
.x52{left:545.573333pt;}
.x1d{left:548.613333pt;}
.x48{left:553.253333pt;}
.x74{left:556.773333pt;}
.x68{left:575.013333pt;}
.x57{left:594.213333pt;}
.x17{left:602.053333pt;}
.x70{left:609.413333pt;}
.x49{left:628.933333pt;}
.x69{left:650.533333pt;}
.x1f{left:653.413333pt;}
.x4a{left:676.613333pt;}
.x6a{left:690.240000pt;}
.x4b{left:699.680000pt;}
.x6b{left:716.640000pt;}
}




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