
    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_cca6abdb00c84f3dc315fa09.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_832b01a15fa41db8653c5042.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_3d8cd493721999ef77f4d45b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.120605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5fd7d901fc98c5aa9511a62d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_f911e061a3759d87dc08bbe7.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_699d257864dc80e22cae0214.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ddf49fa1b8693d6988311b16.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_7784ed6c88e0b788af0bcf07.woff')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_71fbdb350a3df43ed3ed8fcd.woff')format("woff");}.ff9{font-family:ff9;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;}
.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:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls5{letter-spacing:-1.008000px;}
.ls6{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.702000px;}
.ls13{letter-spacing:-0.594000px;}
.ls9{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.108000px;}
.ls8{letter-spacing:-0.008640px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.017280px;}
.ls11{letter-spacing:0.018000px;}
.lsc{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.149760px;}
.ls3{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.720000px;}
.lsa{letter-spacing:25.308000px;}
.ls7{letter-spacing:28.062720px;}
.lse{letter-spacing:52.668000px;}
.ls10{letter-spacing:77.940000px;}
.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;}
}
.ws5{word-spacing:-19.457280px;}
.ws7{word-spacing:-19.440000px;}
.ws8{word-spacing:-19.431360px;}
.ws1{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.840000px;}
.ws2{word-spacing:-14.940000px;}
.wsb{word-spacing:-13.860000px;}
.wsa{word-spacing:-13.608000px;}
.ws0{word-spacing:-13.500000px;}
.wsd{word-spacing:-13.392000px;}
.wsc{word-spacing:-13.284000px;}
.ws9{word-spacing:-13.140000px;}
.wse{word-spacing:-12.906000px;}
.ws3{word-spacing:-10.440000px;}
.ws6{word-spacing:0.000000px;}
._26{margin-left:-2.076000px;}
._0{margin-left:-1.026000px;}
._1{width:1.866000px;}
._2{width:3.690288px;}
._3{width:4.840560px;}
._4{width:6.812640px;}
._5{width:7.934640px;}
._6{width:9.395760px;}
._8{width:10.971360px;}
._7{width:12.788640px;}
._9{width:14.766000px;}
._f{width:16.176000px;}
._b{width:17.898000px;}
._a{width:19.278000px;}
._d{width:21.006000px;}
._c{width:22.140000px;}
._15{width:23.382000px;}
._1d{width:24.510000px;}
._17{width:25.590000px;}
._16{width:26.784000px;}
._10{width:27.972000px;}
._12{width:29.670000px;}
._11{width:31.320000px;}
._e{width:33.210000px;}
._1e{width:34.830000px;}
._14{width:36.234000px;}
._13{width:37.314000px;}
._1f{width:38.556000px;}
._19{width:40.122000px;}
._21{width:41.922000px;}
._1b{width:42.984000px;}
._1c{width:44.172000px;}
._24{width:45.954000px;}
._25{width:47.082000px;}
._1a{width:51.300000px;}
._20{width:52.704000px;}
._23{width:54.378000px;}
._22{width:55.404000px;}
._2c{width:58.914000px;}
._2d{width:60.048000px;}
._18{width:64.908000px;}
._27{width:69.840000px;}
._2e{width:72.036000px;}
._29{width:74.520000px;}
._32{width:78.894000px;}
._2f{width:96.336000px;}
._30{width:141.858000px;}
._33{width:149.016000px;}
._28{width:177.012000px;}
._2a{width:209.772000px;}
._31{width:327.942000px;}
._2b{width:875.556000px;}
.fc8{color:rgb(17,85,204);}
.fc6{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc7{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc5{color:rgb(32,33,36);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fsa{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs9{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs5{font-size:90.000000px;}
.fs3{font-size:102.240000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.060000px;}
.y4{bottom:15.660000px;}
.y2{bottom:18.900000px;}
.y5{bottom:39.780000px;}
.y1{bottom:60.660000px;}
.y3d{bottom:75.990000px;}
.y3c{bottom:95.790000px;}
.y32{bottom:106.740000px;}
.yeb{bottom:107.100000px;}
.y79{bottom:108.180000px;}
.y3b{bottom:115.770000px;}
.yb2{bottom:117.000000px;}
.y110{bottom:124.920000px;}
.y2b{bottom:125.100000px;}
.y78{bottom:126.000000px;}
.yb1{bottom:135.000000px;}
.y3a{bottom:135.570000px;}
.y10f{bottom:142.740000px;}
.yea{bottom:142.920000px;}
.y77{bottom:144.000000px;}
.y31{bottom:151.560000px;}
.yb0{bottom:152.820000px;}
.y39{bottom:155.370000px;}
.y10e{bottom:160.200000px;}
.ye9{bottom:160.740000px;}
.y76{bottom:161.820000px;}
.y2a{bottom:169.920000px;}
.yaf{bottom:170.640000px;}
.y38{bottom:175.170000px;}
.y75{bottom:179.640000px;}
.y10d{bottom:187.380000px;}
.ye8{bottom:187.560000px;}
.yae{bottom:188.460000px;}
.y37{bottom:194.970000px;}
.y30{bottom:196.380000px;}
.y74{bottom:197.460000px;}
.y10c{bottom:205.200000px;}
.ye7{bottom:205.410000px;}
.yad{bottom:206.310000px;}
.y36{bottom:214.950000px;}
.y73{bottom:215.310000px;}
.y33{bottom:216.720000px;}
.ye6{bottom:223.230000px;}
.y29{bottom:223.950000px;}
.yac{bottom:224.310000px;}
.y125{bottom:233.310000px;}
.y35{bottom:234.795000px;}
.y10b{bottom:241.050000px;}
.y2f{bottom:241.230000px;}
.yc0{bottom:242.130000px;}
.y72{bottom:242.310000px;}
.y3f{bottom:243.750000px;}
.y28{bottom:250.770000px;}
.yab{bottom:251.130000px;}
.y10a{bottom:258.870000px;}
.ye5{bottom:259.050000px;}
.ybf{bottom:259.950000px;}
.y71{bottom:260.130000px;}
.y34{bottom:265.035000px;}
.yaa{bottom:268.950000px;}
.y3e{bottom:272.910000px;}
.y109{bottom:276.690000px;}
.ye4{bottom:276.870000px;}
.y27{bottom:277.590000px;}
.ybe{bottom:277.770000px;}
.y70{bottom:277.950000px;}
.y2e{bottom:286.230000px;}
.ya9{bottom:286.770000px;}
.y108{bottom:294.510000px;}
.ye3{bottom:294.690000px;}
.ybd{bottom:295.590000px;}
.y6f{bottom:295.770000px;}
.y26{bottom:304.410000px;}
.ya8{bottom:304.590000px;}
.ye2{bottom:312.510000px;}
.y119{bottom:313.410000px;}
.y6e{bottom:313.590000px;}
.ya7{bottom:322.410000px;}
.y107{bottom:330.330000px;}
.ye1{bottom:330.510000px;}
.y2d{bottom:331.050000px;}
.y25{bottom:331.230000px;}
.y6d{bottom:331.410000px;}
.ya6{bottom:340.410000px;}
.y106{bottom:348.150000px;}
.ye0{bottom:348.330000px;}
.y118{bottom:349.230000px;}
.y6c{bottom:349.410000px;}
.y24{bottom:358.230000px;}
.y124{bottom:360.210000px;}
.y105{bottom:365.970000px;}
.ydf{bottom:366.150000px;}
.y117{bottom:367.050000px;}
.y6b{bottom:367.230000px;}
.y2c{bottom:375.870000px;}
.ya5{bottom:376.050000px;}
.y104{bottom:383.790000px;}
.yde{bottom:383.970000px;}
.y116{bottom:384.870000px;}
.y6a{bottom:385.050000px;}
.y23{bottom:385.410000px;}
.y123{bottom:392.970000px;}
.ya4{bottom:393.870000px;}
.y103{bottom:401.610000px;}
.ydd{bottom:401.790000px;}
.y141{bottom:402.690000px;}
.y69{bottom:402.870000px;}
.y22{bottom:403.230000px;}
.y122{bottom:410.790000px;}
.ya3{bottom:411.690000px;}
.ydc{bottom:419.610000px;}
.y21{bottom:420.690000px;}
.y102{bottom:428.610000px;}
.ya2{bottom:429.690000px;}
.ydb{bottom:437.250000px;}
.y140{bottom:438.510000px;}
.y68{bottom:438.690000px;}
.y101{bottom:446.475000px;}
.y121{bottom:446.655000px;}
.ya1{bottom:447.555000px;}
.y20{bottom:456.375000px;}
.y67{bottom:456.555000px;}
.y100{bottom:464.295000px;}
.yda{bottom:464.475000px;}
.ya0{bottom:465.375000px;}
.y13f{bottom:474.195000px;}
.y1f{bottom:474.375000px;}
.yff{bottom:482.115000px;}
.yd9{bottom:482.295000px;}
.y9f{bottom:483.195000px;}
.y13e{bottom:492.015000px;}
.y66{bottom:492.195000px;}
.y1e{bottom:493.995000px;}
.yfe{bottom:499.935000px;}
.yd8{bottom:500.115000px;}
.y9e{bottom:501.015000px;}
.y13d{bottom:509.835000px;}
.y65{bottom:510.015000px;}
.y1d{bottom:517.755000px;}
.yd7{bottom:517.935000px;}
.y9d{bottom:518.835000px;}
.y64{bottom:527.835000px;}
.yfd{bottom:535.755000px;}
.yd6{bottom:535.935000px;}
.ybc{bottom:536.835000px;}
.y1c{bottom:541.335000px;}
.y13c{bottom:545.655000px;}
.y63{bottom:545.835000px;}
.yfc{bottom:553.575000px;}
.yd5{bottom:553.755000px;}
.ybb{bottom:554.655000px;}
.y13b{bottom:563.475000px;}
.y9c{bottom:563.655000px;}
.y1b{bottom:567.795000px;}
.yfb{bottom:571.395000px;}
.yd4{bottom:571.575000px;}
.yba{bottom:572.475000px;}
.y62{bottom:572.655000px;}
.y13a{bottom:581.295000px;}
.y9b{bottom:581.475000px;}
.yfa{bottom:589.215000px;}
.yd3{bottom:589.395000px;}
.yb9{bottom:590.295000px;}
.y61{bottom:590.475000px;}
.y1a{bottom:598.575000px;}
.y139{bottom:599.115000px;}
.y9a{bottom:599.295000px;}
.yd2{bottom:607.215000px;}
.yb8{bottom:608.115000px;}
.y60{bottom:608.295000px;}
.yf9{bottom:616.035000px;}
.y99{bottom:617.115000px;}
.yd1{bottom:625.035000px;}
.y5f{bottom:626.115000px;}
.y115{bottom:628.095000px;}
.yf8{bottom:634.035000px;}
.y138{bottom:634.935000px;}
.y98{bottom:635.115000px;}
.yd0{bottom:643.035000px;}
.y5e{bottom:644.115000px;}
.yf7{bottom:651.855000px;}
.y137{bottom:652.755000px;}
.y97{bottom:652.935000px;}
.y19{bottom:654.915000px;}
.ycf{bottom:660.855000px;}
.y5d{bottom:661.935000px;}
.yf6{bottom:669.675000px;}
.y136{bottom:670.575000px;}
.y96{bottom:670.755000px;}
.yce{bottom:678.705000px;}
.y5c{bottom:679.785000px;}
.yf5{bottom:687.525000px;}
.y135{bottom:688.425000px;}
.y95{bottom:688.605000px;}
.y18{bottom:695.805000px;}
.ycd{bottom:696.525000px;}
.y5b{bottom:697.605000px;}
.yf4{bottom:705.345000px;}
.y134{bottom:706.245000px;}
.y94{bottom:706.425000px;}
.ycc{bottom:714.345000px;}
.y5a{bottom:715.425000px;}
.yf3{bottom:723.165000px;}
.y93{bottom:724.245000px;}
.ycb{bottom:732.165000px;}
.y59{bottom:733.245000px;}
.y150{bottom:740.805000px;}
.yf2{bottom:741.165000px;}
.y17{bottom:742.065000px;}
.y92{bottom:742.245000px;}
.yca{bottom:750.165000px;}
.y58{bottom:751.245000px;}
.y14f{bottom:758.625000px;}
.yf1{bottom:758.985000px;}
.y133{bottom:759.885000px;}
.y91{bottom:760.065000px;}
.yc9{bottom:767.985000px;}
.y57{bottom:769.065000px;}
.y16{bottom:769.785000px;}
.y14e{bottom:776.445000px;}
.yf0{bottom:776.805000px;}
.y132{bottom:777.705000px;}
.y90{bottom:777.885000px;}
.yc8{bottom:785.805000px;}
.y56{bottom:786.885000px;}
.y14d{bottom:794.265000px;}
.yef{bottom:794.625000px;}
.y120{bottom:794.805000px;}
.y131{bottom:795.525000px;}
.y8f{bottom:795.705000px;}
.y114{bottom:803.625000px;}
.y55{bottom:804.705000px;}
.y14c{bottom:812.085000px;}
.yee{bottom:812.445000px;}
.yc7{bottom:812.625000px;}
.y130{bottom:813.345000px;}
.y8e{bottom:813.525000px;}
.y113{bottom:821.445000px;}
.y54{bottom:822.525000px;}
.y15{bottom:824.865000px;}
.y14b{bottom:830.085000px;}
.yc6{bottom:830.445000px;}
.y8d{bottom:831.345000px;}
.y112{bottom:839.445000px;}
.y53{bottom:840.345000px;}
.y14{bottom:847.725000px;}
.yed{bottom:847.905000px;}
.yc5{bottom:848.445000px;}
.y12f{bottom:849.165000px;}
.y8c{bottom:849.345000px;}
.y111{bottom:857.265000px;}
.y52{bottom:858.345000px;}
.y14a{bottom:865.725000px;}
.yc4{bottom:866.265000px;}
.y12e{bottom:866.985000px;}
.yb7{bottom:867.165000px;}
.y8b{bottom:869.145000px;}
.y13{bottom:869.505000px;}
.yec{bottom:874.725000px;}
.y51{bottom:876.165000px;}
.y149{bottom:883.545000px;}
.yc3{bottom:884.085000px;}
.y12d{bottom:884.805000px;}
.yb6{bottom:884.985000px;}
.y12{bottom:891.465000px;}
.y50{bottom:893.985000px;}
.y148{bottom:901.365000px;}
.y8a{bottom:901.905000px;}
.yb5{bottom:902.445000px;}
.y12c{bottom:902.625000px;}
.y4f{bottom:911.850000px;}
.y11{bottom:914.370000px;}
.y147{bottom:919.230000px;}
.y89{bottom:919.770000px;}
.yb4{bottom:920.310000px;}
.y4e{bottom:929.670000px;}
.y12b{bottom:931.650000px;}
.y10{bottom:936.510000px;}
.y146{bottom:937.230000px;}
.y88{bottom:937.590000px;}
.yb3{bottom:940.650000px;}
.y4d{bottom:947.670000px;}
.y145{bottom:955.050000px;}
.y87{bottom:955.590000px;}
.yf{bottom:959.190000px;}
.y12a{bottom:964.050000px;}
.y4c{bottom:965.490000px;}
.y86{bottom:973.410000px;}
.y129{bottom:981.870000px;}
.ye{bottom:985.650000px;}
.y85{bottom:991.230000px;}
.y4b{bottom:992.310000px;}
.yd{bottom:997.710000px;}
.y144{bottom:999.870000px;}
.y128{bottom:1008.690000px;}
.y84{bottom:1009.050000px;}
.yc{bottom:1009.770000px;}
.y4a{bottom:1010.130000px;}
.y143{bottom:1018.050000px;}
.yb{bottom:1021.830000px;}
.y127{bottom:1026.510000px;}
.y83{bottom:1026.870000px;}
.y49{bottom:1027.950000px;}
.y142{bottom:1035.870000px;}
.ya{bottom:1036.410000px;}
.y126{bottom:1044.510000px;}
.yc2{bottom:1044.870000px;}
.y48{bottom:1045.770000px;}
.y82{bottom:1053.870000px;}
.y9{bottom:1061.970000px;}
.yc1{bottom:1062.330000px;}
.y11f{bottom:1062.690000px;}
.y47{bottom:1063.770000px;}
.y81{bottom:1071.690000px;}
.y11e{bottom:1080.510000px;}
.y46{bottom:1081.590000px;}
.y8{bottom:1087.170000px;}
.y80{bottom:1089.510000px;}
.y11d{bottom:1098.330000px;}
.y45{bottom:1099.410000px;}
.y7f{bottom:1107.330000px;}
.y11c{bottom:1116.150000px;}
.y7{bottom:1116.870000px;}
.y44{bottom:1117.230000px;}
.y7e{bottom:1125.150000px;}
.y11b{bottom:1133.970000px;}
.y43{bottom:1135.050000px;}
.y7d{bottom:1142.970000px;}
.y11a{bottom:1152.000000px;}
.y42{bottom:1153.080000px;}
.y7c{bottom:1161.000000px;}
.y6{bottom:1165.860000px;}
.y41{bottom:1170.900000px;}
.y7b{bottom:1178.820000px;}
.y40{bottom:1190.700000px;}
.y7a{bottom:1196.640000px;}
.h2{height:31.135500px;}
.h17{height:39.049805px;}
.h9{height:40.985156px;}
.h1b{height:48.120117px;}
.h19{height:52.971680px;}
.h3{height:52.998047px;}
.h11{height:54.421875px;}
.h1a{height:55.503491px;}
.h18{height:56.214844px;}
.h15{height:58.621992px;}
.ha{height:58.651172px;}
.h14{height:58.763250px;}
.hb{height:60.226875px;}
.hc{height:65.010937px;}
.h4{height:65.884219px;}
.hf{height:66.757500px;}
.he{height:72.326250px;}
.h10{height:72.562500px;}
.h13{height:78.367500px;}
.h16{height:80.949375px;}
.hd{height:82.676953px;}
.h7{height:84.898125px;}
.h8{height:90.703125px;}
.h6{height:103.038750px;}
.h5{height:108.843750px;}
.h12{height:292.320000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:80.310000px;}
.w2{width:722.115000px;}
.w4{width:813.600000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.640000px;}
.x15{left:10.800000px;}
.x14{left:39.240000px;}
.x1{left:45.364500px;}
.x16{left:50.040000px;}
.x7{left:54.000000px;}
.x17{left:81.000000px;}
.xe{left:84.240000px;}
.x1a{left:108.036000px;}
.x10{left:213.150000px;}
.x2{left:222.370500px;}
.x11{left:229.170000px;}
.xb{left:268.815000px;}
.x3{left:271.330500px;}
.xc{left:295.995000px;}
.x9{left:305.175000px;}
.x12{left:314.355000px;}
.xf{left:323.715000px;}
.x8{left:351.615000px;}
.xa{left:364.395000px;}
.xd{left:378.795000px;}
.x6{left:446.505000px;}
.x13{left:473.505000px;}
.x18{left:500.505000px;}
.x19{left:527.505000px;}
.x4{left:767.490000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls5{letter-spacing:-0.896000pt;}
.ls6{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.624000pt;}
.ls13{letter-spacing:-0.528000pt;}
.ls9{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.096000pt;}
.ls8{letter-spacing:-0.007680pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.015360pt;}
.ls11{letter-spacing:0.016000pt;}
.lsc{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls3{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.640000pt;}
.lsa{letter-spacing:22.496000pt;}
.ls7{letter-spacing:24.944640pt;}
.lse{letter-spacing:46.816000pt;}
.ls10{letter-spacing:69.280000pt;}
.ws5{word-spacing:-17.295360pt;}
.ws7{word-spacing:-17.280000pt;}
.ws8{word-spacing:-17.272320pt;}
.ws1{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.080000pt;}
.ws2{word-spacing:-13.280000pt;}
.wsb{word-spacing:-12.320000pt;}
.wsa{word-spacing:-12.096000pt;}
.ws0{word-spacing:-12.000000pt;}
.wsd{word-spacing:-11.904000pt;}
.wsc{word-spacing:-11.808000pt;}
.ws9{word-spacing:-11.680000pt;}
.wse{word-spacing:-11.472000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws6{word-spacing:0.000000pt;}
._26{margin-left:-1.845333pt;}
._0{margin-left:-0.912000pt;}
._1{width:1.658667pt;}
._2{width:3.280256pt;}
._3{width:4.302720pt;}
._4{width:6.055680pt;}
._5{width:7.053013pt;}
._6{width:8.351787pt;}
._8{width:9.752320pt;}
._7{width:11.367680pt;}
._9{width:13.125333pt;}
._f{width:14.378667pt;}
._b{width:15.909333pt;}
._a{width:17.136000pt;}
._d{width:18.672000pt;}
._c{width:19.680000pt;}
._15{width:20.784000pt;}
._1d{width:21.786667pt;}
._17{width:22.746667pt;}
._16{width:23.808000pt;}
._10{width:24.864000pt;}
._12{width:26.373333pt;}
._11{width:27.840000pt;}
._e{width:29.520000pt;}
._1e{width:30.960000pt;}
._14{width:32.208000pt;}
._13{width:33.168000pt;}
._1f{width:34.272000pt;}
._19{width:35.664000pt;}
._21{width:37.264000pt;}
._1b{width:38.208000pt;}
._1c{width:39.264000pt;}
._24{width:40.848000pt;}
._25{width:41.850667pt;}
._1a{width:45.600000pt;}
._20{width:46.848000pt;}
._23{width:48.336000pt;}
._22{width:49.248000pt;}
._2c{width:52.368000pt;}
._2d{width:53.376000pt;}
._18{width:57.696000pt;}
._27{width:62.080000pt;}
._2e{width:64.032000pt;}
._29{width:66.240000pt;}
._32{width:70.128000pt;}
._2f{width:85.632000pt;}
._30{width:126.096000pt;}
._33{width:132.458667pt;}
._28{width:157.344000pt;}
._2a{width:186.464000pt;}
._31{width:291.504000pt;}
._2b{width:778.272000pt;}
.fs6{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fsa{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs9{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs5{font-size:80.000000pt;}
.fs3{font-size:90.880000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.720000pt;}
.y4{bottom:13.920000pt;}
.y2{bottom:16.800000pt;}
.y5{bottom:35.360000pt;}
.y1{bottom:53.920000pt;}
.y3d{bottom:67.546667pt;}
.y3c{bottom:85.146667pt;}
.y32{bottom:94.880000pt;}
.yeb{bottom:95.200000pt;}
.y79{bottom:96.160000pt;}
.y3b{bottom:102.906667pt;}
.yb2{bottom:104.000000pt;}
.y110{bottom:111.040000pt;}
.y2b{bottom:111.200000pt;}
.y78{bottom:112.000000pt;}
.yb1{bottom:120.000000pt;}
.y3a{bottom:120.506667pt;}
.y10f{bottom:126.880000pt;}
.yea{bottom:127.040000pt;}
.y77{bottom:128.000000pt;}
.y31{bottom:134.720000pt;}
.yb0{bottom:135.840000pt;}
.y39{bottom:138.106667pt;}
.y10e{bottom:142.400000pt;}
.ye9{bottom:142.880000pt;}
.y76{bottom:143.840000pt;}
.y2a{bottom:151.040000pt;}
.yaf{bottom:151.680000pt;}
.y38{bottom:155.706667pt;}
.y75{bottom:159.680000pt;}
.y10d{bottom:166.560000pt;}
.ye8{bottom:166.720000pt;}
.yae{bottom:167.520000pt;}
.y37{bottom:173.306667pt;}
.y30{bottom:174.560000pt;}
.y74{bottom:175.520000pt;}
.y10c{bottom:182.400000pt;}
.ye7{bottom:182.586667pt;}
.yad{bottom:183.386667pt;}
.y36{bottom:191.066667pt;}
.y73{bottom:191.386667pt;}
.y33{bottom:192.640000pt;}
.ye6{bottom:198.426667pt;}
.y29{bottom:199.066667pt;}
.yac{bottom:199.386667pt;}
.y125{bottom:207.386667pt;}
.y35{bottom:208.706667pt;}
.y10b{bottom:214.266667pt;}
.y2f{bottom:214.426667pt;}
.yc0{bottom:215.226667pt;}
.y72{bottom:215.386667pt;}
.y3f{bottom:216.666667pt;}
.y28{bottom:222.906667pt;}
.yab{bottom:223.226667pt;}
.y10a{bottom:230.106667pt;}
.ye5{bottom:230.266667pt;}
.ybf{bottom:231.066667pt;}
.y71{bottom:231.226667pt;}
.y34{bottom:235.586667pt;}
.yaa{bottom:239.066667pt;}
.y3e{bottom:242.586667pt;}
.y109{bottom:245.946667pt;}
.ye4{bottom:246.106667pt;}
.y27{bottom:246.746667pt;}
.ybe{bottom:246.906667pt;}
.y70{bottom:247.066667pt;}
.y2e{bottom:254.426667pt;}
.ya9{bottom:254.906667pt;}
.y108{bottom:261.786667pt;}
.ye3{bottom:261.946667pt;}
.ybd{bottom:262.746667pt;}
.y6f{bottom:262.906667pt;}
.y26{bottom:270.586667pt;}
.ya8{bottom:270.746667pt;}
.ye2{bottom:277.786667pt;}
.y119{bottom:278.586667pt;}
.y6e{bottom:278.746667pt;}
.ya7{bottom:286.586667pt;}
.y107{bottom:293.626667pt;}
.ye1{bottom:293.786667pt;}
.y2d{bottom:294.266667pt;}
.y25{bottom:294.426667pt;}
.y6d{bottom:294.586667pt;}
.ya6{bottom:302.586667pt;}
.y106{bottom:309.466667pt;}
.ye0{bottom:309.626667pt;}
.y118{bottom:310.426667pt;}
.y6c{bottom:310.586667pt;}
.y24{bottom:318.426667pt;}
.y124{bottom:320.186667pt;}
.y105{bottom:325.306667pt;}
.ydf{bottom:325.466667pt;}
.y117{bottom:326.266667pt;}
.y6b{bottom:326.426667pt;}
.y2c{bottom:334.106667pt;}
.ya5{bottom:334.266667pt;}
.y104{bottom:341.146667pt;}
.yde{bottom:341.306667pt;}
.y116{bottom:342.106667pt;}
.y6a{bottom:342.266667pt;}
.y23{bottom:342.586667pt;}
.y123{bottom:349.306667pt;}
.ya4{bottom:350.106667pt;}
.y103{bottom:356.986667pt;}
.ydd{bottom:357.146667pt;}
.y141{bottom:357.946667pt;}
.y69{bottom:358.106667pt;}
.y22{bottom:358.426667pt;}
.y122{bottom:365.146667pt;}
.ya3{bottom:365.946667pt;}
.ydc{bottom:372.986667pt;}
.y21{bottom:373.946667pt;}
.y102{bottom:380.986667pt;}
.ya2{bottom:381.946667pt;}
.ydb{bottom:388.666667pt;}
.y140{bottom:389.786667pt;}
.y68{bottom:389.946667pt;}
.y101{bottom:396.866667pt;}
.y121{bottom:397.026667pt;}
.ya1{bottom:397.826667pt;}
.y20{bottom:405.666667pt;}
.y67{bottom:405.826667pt;}
.y100{bottom:412.706667pt;}
.yda{bottom:412.866667pt;}
.ya0{bottom:413.666667pt;}
.y13f{bottom:421.506667pt;}
.y1f{bottom:421.666667pt;}
.yff{bottom:428.546667pt;}
.yd9{bottom:428.706667pt;}
.y9f{bottom:429.506667pt;}
.y13e{bottom:437.346667pt;}
.y66{bottom:437.506667pt;}
.y1e{bottom:439.106667pt;}
.yfe{bottom:444.386667pt;}
.yd8{bottom:444.546667pt;}
.y9e{bottom:445.346667pt;}
.y13d{bottom:453.186667pt;}
.y65{bottom:453.346667pt;}
.y1d{bottom:460.226667pt;}
.yd7{bottom:460.386667pt;}
.y9d{bottom:461.186667pt;}
.y64{bottom:469.186667pt;}
.yfd{bottom:476.226667pt;}
.yd6{bottom:476.386667pt;}
.ybc{bottom:477.186667pt;}
.y1c{bottom:481.186667pt;}
.y13c{bottom:485.026667pt;}
.y63{bottom:485.186667pt;}
.yfc{bottom:492.066667pt;}
.yd5{bottom:492.226667pt;}
.ybb{bottom:493.026667pt;}
.y13b{bottom:500.866667pt;}
.y9c{bottom:501.026667pt;}
.y1b{bottom:504.706667pt;}
.yfb{bottom:507.906667pt;}
.yd4{bottom:508.066667pt;}
.yba{bottom:508.866667pt;}
.y62{bottom:509.026667pt;}
.y13a{bottom:516.706667pt;}
.y9b{bottom:516.866667pt;}
.yfa{bottom:523.746667pt;}
.yd3{bottom:523.906667pt;}
.yb9{bottom:524.706667pt;}
.y61{bottom:524.866667pt;}
.y1a{bottom:532.066667pt;}
.y139{bottom:532.546667pt;}
.y9a{bottom:532.706667pt;}
.yd2{bottom:539.746667pt;}
.yb8{bottom:540.546667pt;}
.y60{bottom:540.706667pt;}
.yf9{bottom:547.586667pt;}
.y99{bottom:548.546667pt;}
.yd1{bottom:555.586667pt;}
.y5f{bottom:556.546667pt;}
.y115{bottom:558.306667pt;}
.yf8{bottom:563.586667pt;}
.y138{bottom:564.386667pt;}
.y98{bottom:564.546667pt;}
.yd0{bottom:571.586667pt;}
.y5e{bottom:572.546667pt;}
.yf7{bottom:579.426667pt;}
.y137{bottom:580.226667pt;}
.y97{bottom:580.386667pt;}
.y19{bottom:582.146667pt;}
.ycf{bottom:587.426667pt;}
.y5d{bottom:588.386667pt;}
.yf6{bottom:595.266667pt;}
.y136{bottom:596.066667pt;}
.y96{bottom:596.226667pt;}
.yce{bottom:603.293333pt;}
.y5c{bottom:604.253333pt;}
.yf5{bottom:611.133333pt;}
.y135{bottom:611.933333pt;}
.y95{bottom:612.093333pt;}
.y18{bottom:618.493333pt;}
.ycd{bottom:619.133333pt;}
.y5b{bottom:620.093333pt;}
.yf4{bottom:626.973333pt;}
.y134{bottom:627.773333pt;}
.y94{bottom:627.933333pt;}
.ycc{bottom:634.973333pt;}
.y5a{bottom:635.933333pt;}
.yf3{bottom:642.813333pt;}
.y93{bottom:643.773333pt;}
.ycb{bottom:650.813333pt;}
.y59{bottom:651.773333pt;}
.y150{bottom:658.493333pt;}
.yf2{bottom:658.813333pt;}
.y17{bottom:659.613333pt;}
.y92{bottom:659.773333pt;}
.yca{bottom:666.813333pt;}
.y58{bottom:667.773333pt;}
.y14f{bottom:674.333333pt;}
.yf1{bottom:674.653333pt;}
.y133{bottom:675.453333pt;}
.y91{bottom:675.613333pt;}
.yc9{bottom:682.653333pt;}
.y57{bottom:683.613333pt;}
.y16{bottom:684.253333pt;}
.y14e{bottom:690.173333pt;}
.yf0{bottom:690.493333pt;}
.y132{bottom:691.293333pt;}
.y90{bottom:691.453333pt;}
.yc8{bottom:698.493333pt;}
.y56{bottom:699.453333pt;}
.y14d{bottom:706.013333pt;}
.yef{bottom:706.333333pt;}
.y120{bottom:706.493333pt;}
.y131{bottom:707.133333pt;}
.y8f{bottom:707.293333pt;}
.y114{bottom:714.333333pt;}
.y55{bottom:715.293333pt;}
.y14c{bottom:721.853333pt;}
.yee{bottom:722.173333pt;}
.yc7{bottom:722.333333pt;}
.y130{bottom:722.973333pt;}
.y8e{bottom:723.133333pt;}
.y113{bottom:730.173333pt;}
.y54{bottom:731.133333pt;}
.y15{bottom:733.213333pt;}
.y14b{bottom:737.853333pt;}
.yc6{bottom:738.173333pt;}
.y8d{bottom:738.973333pt;}
.y112{bottom:746.173333pt;}
.y53{bottom:746.973333pt;}
.y14{bottom:753.533333pt;}
.yed{bottom:753.693333pt;}
.yc5{bottom:754.173333pt;}
.y12f{bottom:754.813333pt;}
.y8c{bottom:754.973333pt;}
.y111{bottom:762.013333pt;}
.y52{bottom:762.973333pt;}
.y14a{bottom:769.533333pt;}
.yc4{bottom:770.013333pt;}
.y12e{bottom:770.653333pt;}
.yb7{bottom:770.813333pt;}
.y8b{bottom:772.573333pt;}
.y13{bottom:772.893333pt;}
.yec{bottom:777.533333pt;}
.y51{bottom:778.813333pt;}
.y149{bottom:785.373333pt;}
.yc3{bottom:785.853333pt;}
.y12d{bottom:786.493333pt;}
.yb6{bottom:786.653333pt;}
.y12{bottom:792.413333pt;}
.y50{bottom:794.653333pt;}
.y148{bottom:801.213333pt;}
.y8a{bottom:801.693333pt;}
.yb5{bottom:802.173333pt;}
.y12c{bottom:802.333333pt;}
.y4f{bottom:810.533333pt;}
.y11{bottom:812.773333pt;}
.y147{bottom:817.093333pt;}
.y89{bottom:817.573333pt;}
.yb4{bottom:818.053333pt;}
.y4e{bottom:826.373333pt;}
.y12b{bottom:828.133333pt;}
.y10{bottom:832.453333pt;}
.y146{bottom:833.093333pt;}
.y88{bottom:833.413333pt;}
.yb3{bottom:836.133333pt;}
.y4d{bottom:842.373333pt;}
.y145{bottom:848.933333pt;}
.y87{bottom:849.413333pt;}
.yf{bottom:852.613333pt;}
.y12a{bottom:856.933333pt;}
.y4c{bottom:858.213333pt;}
.y86{bottom:865.253333pt;}
.y129{bottom:872.773333pt;}
.ye{bottom:876.133333pt;}
.y85{bottom:881.093333pt;}
.y4b{bottom:882.053333pt;}
.yd{bottom:886.853333pt;}
.y144{bottom:888.773333pt;}
.y128{bottom:896.613333pt;}
.y84{bottom:896.933333pt;}
.yc{bottom:897.573333pt;}
.y4a{bottom:897.893333pt;}
.y143{bottom:904.933333pt;}
.yb{bottom:908.293333pt;}
.y127{bottom:912.453333pt;}
.y83{bottom:912.773333pt;}
.y49{bottom:913.733333pt;}
.y142{bottom:920.773333pt;}
.ya{bottom:921.253333pt;}
.y126{bottom:928.453333pt;}
.yc2{bottom:928.773333pt;}
.y48{bottom:929.573333pt;}
.y82{bottom:936.773333pt;}
.y9{bottom:943.973333pt;}
.yc1{bottom:944.293333pt;}
.y11f{bottom:944.613333pt;}
.y47{bottom:945.573333pt;}
.y81{bottom:952.613333pt;}
.y11e{bottom:960.453333pt;}
.y46{bottom:961.413333pt;}
.y8{bottom:966.373333pt;}
.y80{bottom:968.453333pt;}
.y11d{bottom:976.293333pt;}
.y45{bottom:977.253333pt;}
.y7f{bottom:984.293333pt;}
.y11c{bottom:992.133333pt;}
.y7{bottom:992.773333pt;}
.y44{bottom:993.093333pt;}
.y7e{bottom:1000.133333pt;}
.y11b{bottom:1007.973333pt;}
.y43{bottom:1008.933333pt;}
.y7d{bottom:1015.973333pt;}
.y11a{bottom:1024.000000pt;}
.y42{bottom:1024.960000pt;}
.y7c{bottom:1032.000000pt;}
.y6{bottom:1036.320000pt;}
.y41{bottom:1040.800000pt;}
.y7b{bottom:1047.840000pt;}
.y40{bottom:1058.400000pt;}
.y7a{bottom:1063.680000pt;}
.h2{height:27.676000pt;}
.h17{height:34.710938pt;}
.h9{height:36.431250pt;}
.h1b{height:42.773438pt;}
.h19{height:47.085938pt;}
.h3{height:47.109375pt;}
.h11{height:48.375000pt;}
.h1a{height:49.336436pt;}
.h18{height:49.968750pt;}
.h15{height:52.108438pt;}
.ha{height:52.134375pt;}
.h14{height:52.234000pt;}
.hb{height:53.535000pt;}
.hc{height:57.787500pt;}
.h4{height:58.563750pt;}
.hf{height:59.340000pt;}
.he{height:64.290000pt;}
.h10{height:64.500000pt;}
.h13{height:69.660000pt;}
.h16{height:71.955000pt;}
.hd{height:73.490625pt;}
.h7{height:75.465000pt;}
.h8{height:80.625000pt;}
.h6{height:91.590000pt;}
.h5{height:96.750000pt;}
.h12{height:259.840000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:71.386667pt;}
.w2{width:641.880000pt;}
.w4{width:723.200000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.680000pt;}
.x15{left:9.600000pt;}
.x14{left:34.880000pt;}
.x1{left:40.324000pt;}
.x16{left:44.480000pt;}
.x7{left:48.000000pt;}
.x17{left:72.000000pt;}
.xe{left:74.880000pt;}
.x1a{left:96.032000pt;}
.x10{left:189.466667pt;}
.x2{left:197.662667pt;}
.x11{left:203.706667pt;}
.xb{left:238.946667pt;}
.x3{left:241.182667pt;}
.xc{left:263.106667pt;}
.x9{left:271.266667pt;}
.x12{left:279.426667pt;}
.xf{left:287.746667pt;}
.x8{left:312.546667pt;}
.xa{left:323.906667pt;}
.xd{left:336.706667pt;}
.x6{left:396.893333pt;}
.x13{left:420.893333pt;}
.x18{left:444.893333pt;}
.x19{left:468.893333pt;}
.x4{left:682.213333pt;}
}




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