
    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_3ebc9553974abbdd877d087c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_3554a6777258dbf647c29d90.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_ac005dd13f362c6b818a9779.woff')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_845e25be66b5a4de7548a671.woff')format("woff");}.ff4{font-family:ff4;line-height:0.727539;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_4b89e194adc28f2e0ed5a405.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_3254676ce070cc537b05fda3.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6ebea7f4727c4f90104a014b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.891113;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_faf3aadcf1811b464a6b4190.woff')format("woff");}.ff8{font-family:ff8;line-height:0.691406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_4ff05c360cadad4e3c76bff6.woff')format("woff");}.ff9{font-family:ff9;line-height:0.727539;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:-27.360000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:27.360000px;}
.ls1f{letter-spacing:-0.936000px;}
.ls16{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.341400px;}
.ls1a{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.106800px;}
.ls13{letter-spacing:-0.100200px;}
.lsb{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.017280px;}
.lse{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.153600px;}
.ls2{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.576000px;}
.ls5{letter-spacing:0.720000px;}
.ls19{letter-spacing:0.737280px;}
.ls18{letter-spacing:1.080000px;}
.ls1d{letter-spacing:1.440000px;}
.ls1c{letter-spacing:10.080000px;}
.ls7{letter-spacing:12.840000px;}
.ls1{letter-spacing:13.140000px;}
.ls0{letter-spacing:14.580000px;}
.ls1e{letter-spacing:15.840000px;}
.ls10{letter-spacing:21.221280px;}
.ls1b{letter-spacing:33.264000px;}
.lsf{letter-spacing:222.456000px;}
.ls3{letter-spacing:393.840000px;}
.ls14{letter-spacing:849.185760px;}
.ls11{letter-spacing:1412.220000px;}
.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;}
}
.ws2{word-spacing:-30.840000px;}
.wsd{word-spacing:-21.420000px;}
.ws5{word-spacing:-20.718600px;}
.ws7{word-spacing:-18.576000px;}
.ws3{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.856000px;}
.ws13{word-spacing:-17.712000px;}
.ws14{word-spacing:-17.064000px;}
.ws9{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.120000px;}
.wsf{word-spacing:-15.093600px;}
.ws8{word-spacing:-14.940000px;}
.wse{word-spacing:-14.839800px;}
.wsb{word-spacing:-14.833200px;}
.ws10{word-spacing:-14.580000px;}
.ws6{word-spacing:-12.060000px;}
.ws12{word-spacing:-9.737280px;}
.wsa{word-spacing:-9.720000px;}
.ws1{word-spacing:-5.256000px;}
.ws0{word-spacing:-4.824000px;}
.wsc{word-spacing:0.000000px;}
._19{margin-left:-4.608000px;}
._b{margin-left:-2.952000px;}
._4{margin-left:-1.656000px;}
._3{width:1.080000px;}
._7{width:2.156400px;}
._8{width:3.406560px;}
._d{width:4.944000px;}
._e{width:6.264000px;}
._f{width:7.776000px;}
._14{width:8.856000px;}
._16{width:10.080000px;}
._0{width:11.232000px;}
._2{width:12.828000px;}
._1{width:14.052000px;}
._c{width:15.312000px;}
._15{width:16.920000px;}
._10{width:19.728000px;}
._11{width:20.892000px;}
._18{width:22.164000px;}
._1a{width:24.192000px;}
._9{width:25.392000px;}
._a{width:26.400000px;}
._1b{width:27.576000px;}
._12{width:28.800000px;}
._13{width:30.384000px;}
._17{width:33.408000px;}
._1c{width:36.216000px;}
._1d{width:37.296000px;}
._1e{width:57.072000px;}
._5{width:370.826400px;}
._6{width:695.820000px;}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:56.880000px;}
.fs5{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y89{bottom:3.240000px;}
.y7c{bottom:3.420000px;}
.y8b{bottom:3.600000px;}
.y80{bottom:3.780000px;}
.yd5{bottom:20.880000px;}
.ycc{bottom:21.060000px;}
.y7e{bottom:21.780000px;}
.y8e{bottom:22.140000px;}
.y8d{bottom:39.240000px;}
.y9d{bottom:39.780000px;}
.y5{bottom:55.980000px;}
.yb1{bottom:57.600000px;}
.y10b{bottom:117.576000px;}
.y74{bottom:119.916000px;}
.y127{bottom:121.176000px;}
.y86{bottom:122.076000px;}
.y2d{bottom:129.996000px;}
.yf7{bottom:131.436000px;}
.y51{bottom:132.336000px;}
.yc7{bottom:137.880000px;}
.y10a{bottom:144.576000px;}
.y73{bottom:146.916000px;}
.y126{bottom:147.096000px;}
.y85{bottom:148.896000px;}
.y2c{bottom:150.690000px;}
.yf6{bottom:158.430000px;}
.y50{bottom:159.330000px;}
.yd8{bottom:162.030000px;}
.y2b{bottom:171.390000px;}
.y125{bottom:173.010000px;}
.y72{bottom:173.730000px;}
.y84{bottom:175.890000px;}
.yf5{bottom:185.250000px;}
.y4f{bottom:186.150000px;}
.yd7{bottom:189.750000px;}
.y2a{bottom:192.090000px;}
.y109{bottom:198.390000px;}
.y124{bottom:198.750000px;}
.y71{bottom:200.730000px;}
.y83{bottom:202.710000px;}
.yd6{bottom:212.070000px;}
.yf4{bottom:212.250000px;}
.y29{bottom:212.790000px;}
.y4e{bottom:213.150000px;}
.yc6{bottom:221.250000px;}
.y123{bottom:224.670000px;}
.y108{bottom:225.210000px;}
.y70{bottom:227.550000px;}
.y82{bottom:232.230000px;}
.y28{bottom:233.490000px;}
.yf3{bottom:239.070000px;}
.y4d{bottom:239.970000px;}
.y122{bottom:250.590000px;}
.y107{bottom:252.210000px;}
.y27{bottom:254.190000px;}
.y6f{bottom:254.550000px;}
.yaf{bottom:255.810000px;}
.yd4{bottom:256.350000px;}
.y81{bottom:259.950000px;}
.yf2{bottom:266.070000px;}
.y4c{bottom:266.970000px;}
.y7d{bottom:274.170000px;}
.yd3{bottom:274.350000px;}
.y26{bottom:274.890000px;}
.y121{bottom:276.510000px;}
.y106{bottom:279.030000px;}
.y6e{bottom:281.370000px;}
.yae{bottom:282.810000px;}
.y7f{bottom:292.170000px;}
.yd2{bottom:292.350000px;}
.yf1{bottom:292.890000px;}
.y4b{bottom:293.790000px;}
.y25{bottom:295.590000px;}
.y120{bottom:302.250000px;}
.y105{bottom:305.850000px;}
.y6d{bottom:308.370000px;}
.yad{bottom:309.810000px;}
.y7b{bottom:310.170000px;}
.yd1{bottom:310.350000px;}
.y24{bottom:316.290000px;}
.yf0{bottom:319.710000px;}
.y4a{bottom:320.790000px;}
.y11f{bottom:328.170000px;}
.yd0{bottom:328.350000px;}
.y104{bottom:332.850000px;}
.y6c{bottom:335.190000px;}
.yac{bottom:336.630000px;}
.y23{bottom:336.990000px;}
.y7a{bottom:341.670000px;}
.ycf{bottom:346.350000px;}
.yef{bottom:346.710000px;}
.y49{bottom:347.610000px;}
.y11e{bottom:354.090000px;}
.y22{bottom:357.690000px;}
.y103{bottom:359.670000px;}
.y6b{bottom:362.190000px;}
.y79{bottom:362.370000px;}
.yab{bottom:363.630000px;}
.yce{bottom:364.395000px;}
.yee{bottom:373.575000px;}
.y48{bottom:374.655000px;}
.y21{bottom:378.435000px;}
.y11d{bottom:379.875000px;}
.ycd{bottom:382.395000px;}
.y102{bottom:386.715000px;}
.y6a{bottom:389.055000px;}
.yaa{bottom:390.495000px;}
.y20{bottom:399.135000px;}
.ycb{bottom:400.395000px;}
.yed{bottom:400.575000px;}
.y47{bottom:401.475000px;}
.y11c{bottom:405.795000px;}
.y101{bottom:413.535000px;}
.y69{bottom:416.055000px;}
.ya9{bottom:417.495000px;}
.y1f{bottom:419.835000px;}
.yec{bottom:427.395000px;}
.y46{bottom:428.475000px;}
.y11b{bottom:431.715000px;}
.yca{bottom:435.675000px;}
.y1e{bottom:440.535000px;}
.y68{bottom:442.875000px;}
.ya8{bottom:444.315000px;}
.yc9{bottom:453.675000px;}
.yeb{bottom:454.395000px;}
.y45{bottom:455.295000px;}
.y11a{bottom:457.635000px;}
.y1d{bottom:461.235000px;}
.y100{bottom:467.355000px;}
.y67{bottom:469.875000px;}
.ya7{bottom:471.315000px;}
.yc8{bottom:471.675000px;}
.yea{bottom:481.215000px;}
.y1c{bottom:481.935000px;}
.y44{bottom:482.295000px;}
.y119{bottom:483.375000px;}
.yc5{bottom:489.675000px;}
.yff{bottom:494.355000px;}
.y66{bottom:496.695000px;}
.ya6{bottom:498.135000px;}
.y1b{bottom:502.635000px;}
.yc4{bottom:507.675000px;}
.ye9{bottom:508.215000px;}
.y43{bottom:509.115000px;}
.y118{bottom:509.295000px;}
.yfe{bottom:521.175000px;}
.y1a{bottom:523.335000px;}
.y65{bottom:523.695000px;}
.ya5{bottom:525.135000px;}
.ye8{bottom:535.035000px;}
.y117{bottom:535.215000px;}
.y42{bottom:536.115000px;}
.yc3{bottom:539.175000px;}
.yfd{bottom:548.175000px;}
.y64{bottom:550.515000px;}
.ya4{bottom:551.955000px;}
.yc2{bottom:559.515000px;}
.y116{bottom:561.135000px;}
.ye7{bottom:562.035000px;}
.y41{bottom:562.935000px;}
.yfc{bottom:574.995000px;}
.y63{bottom:577.515000px;}
.ya3{bottom:578.775000px;}
.y115{bottom:586.875000px;}
.y19{bottom:588.315000px;}
.ye6{bottom:588.855000px;}
.y40{bottom:589.935000px;}
.yfb{bottom:601.995000px;}
.y62{bottom:604.335000px;}
.yc1{bottom:604.695000px;}
.y18{bottom:605.595000px;}
.ya2{bottom:608.295000px;}
.y114{bottom:612.795000px;}
.ye5{bottom:615.855000px;}
.y78{bottom:616.575000px;}
.y3f{bottom:616.755000px;}
.y17{bottom:627.945000px;}
.yfa{bottom:628.845000px;}
.y61{bottom:631.365000px;}
.yc0{bottom:631.545000px;}
.ya1{bottom:636.045000px;}
.y113{bottom:638.745000px;}
.y16{bottom:640.005000px;}
.ye4{bottom:642.705000px;}
.y3e{bottom:643.785000px;}
.y9c{bottom:650.265000px;}
.yf9{bottom:655.845000px;}
.ybf{bottom:658.545000px;}
.y15{bottom:662.505000px;}
.y112{bottom:664.665000px;}
.ya0{bottom:668.265000px;}
.ye3{bottom:669.705000px;}
.y3d{bottom:670.605000px;}
.y14{bottom:679.785000px;}
.yf8{bottom:682.665000px;}
.ybe{bottom:685.365000px;}
.y9f{bottom:686.265000px;}
.y111{bottom:690.405000px;}
.ye2{bottom:696.525000px;}
.y13{bottom:697.065000px;}
.y60{bottom:697.425000px;}
.y3c{bottom:697.605000px;}
.y9e{bottom:704.265000px;}
.y77{bottom:709.665000px;}
.ybd{bottom:712.365000px;}
.y12{bottom:714.165000px;}
.y110{bottom:716.325000px;}
.y9b{bottom:722.265000px;}
.ye1{bottom:723.525000px;}
.y3b{bottom:724.425000px;}
.y11{bottom:726.225000px;}
.y76{bottom:736.485000px;}
.ybc{bottom:739.185000px;}
.y9a{bottom:740.265000px;}
.y10f{bottom:742.245000px;}
.y10{bottom:748.725000px;}
.ye0{bottom:750.345000px;}
.y3a{bottom:751.425000px;}
.yf{bottom:760.785000px;}
.y75{bottom:763.485000px;}
.ybb{bottom:766.005000px;}
.y10e{bottom:768.165000px;}
.y99{bottom:771.765000px;}
.y39{bottom:778.245000px;}
.ye{bottom:783.285000px;}
.y5f{bottom:790.305000px;}
.y98{bottom:792.105000px;}
.yba{bottom:793.005000px;}
.y10d{bottom:793.905000px;}
.yd{bottom:800.565000px;}
.y38{bottom:805.245000px;}
.yc{bottom:812.445000px;}
.ydf{bottom:816.405000px;}
.y5e{bottom:817.305000px;}
.yb9{bottom:819.825000px;}
.y37{bottom:832.065000px;}
.yb{bottom:834.945000px;}
.y97{bottom:837.105000px;}
.y5d{bottom:844.125000px;}
.yb8{bottom:846.825000px;}
.ya{bottom:856.725000px;}
.y36{bottom:858.885000px;}
.y96{bottom:864.105000px;}
.y5c{bottom:871.125000px;}
.yb7{bottom:873.645000px;}
.y9{bottom:877.425000px;}
.y10c{bottom:885.750000px;}
.y35{bottom:885.930000px;}
.y95{bottom:890.970000px;}
.y5b{bottom:897.990000px;}
.y8{bottom:898.170000px;}
.yb6{bottom:900.690000px;}
.yde{bottom:903.030000px;}
.y34{bottom:912.750000px;}
.y94{bottom:917.970000px;}
.y5a{bottom:924.990000px;}
.yb5{bottom:927.510000px;}
.ydd{bottom:930.750000px;}
.y33{bottom:939.750000px;}
.y93{bottom:944.790000px;}
.y59{bottom:951.810000px;}
.ydc{bottom:953.250000px;}
.yb4{bottom:957.030000px;}
.yd9{bottom:962.250000px;}
.y32{bottom:966.570000px;}
.y92{bottom:974.310000px;}
.y58{bottom:978.810000px;}
.ydb{bottom:980.250000px;}
.yb3{bottom:984.750000px;}
.yda{bottom:998.250000px;}
.y7{bottom:1000.050000px;}
.y91{bottom:1001.850000px;}
.y57{bottom:1005.630000px;}
.yb2{bottom:1007.070000px;}
.y8c{bottom:1016.250000px;}
.y6{bottom:1024.350000px;}
.y56{bottom:1032.630000px;}
.y31{bottom:1032.810000px;}
.y90{bottom:1034.250000px;}
.y8f{bottom:1052.250000px;}
.y55{bottom:1059.450000px;}
.y8a{bottom:1070.250000px;}
.y54{bottom:1086.450000px;}
.y88{bottom:1088.250000px;}
.y53{bottom:1113.270000px;}
.y30{bottom:1119.750000px;}
.y4{bottom:1129.290000px;}
.yb0{bottom:1139.910000px;}
.y87{bottom:1140.090000px;}
.y52{bottom:1140.270000px;}
.y2f{bottom:1140.450000px;}
.y3{bottom:1152.000000px;}
.y2{bottom:1172.880000px;}
.y2e{bottom:1193.400000px;}
.y1{bottom:1193.580000px;}
.h12{height:17.100000px;}
.hc{height:17.280000px;}
.h7{height:34.114922px;}
.h19{height:34.380000px;}
.h18{height:34.560000px;}
.he{height:35.280000px;}
.h9{height:37.241719px;}
.h13{height:40.472227px;}
.hd{height:40.501406px;}
.hf{height:41.493516px;}
.h3{height:42.327773px;}
.h11{height:48.796875px;}
.hb{height:49.992188px;}
.h8{height:52.435898px;}
.h16{height:54.994922px;}
.h4{height:57.092344px;}
.h10{height:58.121719px;}
.ha{height:60.300703px;}
.h2{height:63.175781px;}
.h5{height:69.687773px;}
.h6{height:69.867773px;}
.h14{height:71.100000px;}
.h15{height:89.280000px;}
.h1a{height:125.100000px;}
.h17{height:285.690000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:41.580000px;}
.w6{width:41.616000px;}
.w7{width:41.760000px;}
.w8{width:41.796000px;}
.w1b{width:45.900000px;}
.w1a{width:46.080000px;}
.w19{width:46.116000px;}
.w12{width:52.380000px;}
.w10{width:52.416000px;}
.w17{width:52.596000px;}
.w13{width:52.956000px;}
.w14{width:62.460000px;}
.wc{width:72.540000px;}
.wb{width:72.576000px;}
.w11{width:73.620000px;}
.wf{width:73.980000px;}
.w1c{width:83.700000px;}
.w15{width:84.060000px;}
.w5{width:92.880000px;}
.wd{width:120.780000px;}
.w4{width:126.576000px;}
.we{width:222.150000px;}
.w16{width:286.050000px;}
.w18{width:307.470000px;}
.w3{width:330.330000px;}
.wa{width:337.170000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:7.740000px;}
.x53{left:8.820000px;}
.x51{left:10.080000px;}
.x13{left:11.370000px;}
.x38{left:12.960000px;}
.x19{left:14.610000px;}
.x31{left:16.200000px;}
.x39{left:17.820000px;}
.x3d{left:19.440000px;}
.x15{left:21.780000px;}
.x26{left:23.250000px;}
.x1f{left:25.920000px;}
.x2b{left:27.900000px;}
.x21{left:29.730000px;}
.x44{left:32.940000px;}
.x27{left:36.000000px;}
.x37{left:38.340000px;}
.x4a{left:39.420000px;}
.x1e{left:42.660000px;}
.x4b{left:45.714000px;}
.x2e{left:47.334000px;}
.x18{left:50.214000px;}
.x25{left:56.520000px;}
.x28{left:60.300000px;}
.x3b{left:65.514000px;}
.x57{left:69.474000px;}
.x4d{left:75.594000px;}
.x4c{left:80.454000px;}
.x46{left:81.534000px;}
.x3a{left:85.134000px;}
.x29{left:87.294000px;}
.x48{left:91.074000px;}
.x56{left:92.874000px;}
.x2d{left:95.394000px;}
.x45{left:97.014000px;}
.x47{left:101.874000px;}
.x2a{left:103.314000px;}
.x2{left:106.235987px;}
.x1{left:107.855987px;}
.x2c{left:111.054000px;}
.x49{left:115.374000px;}
.xd{left:124.415987px;}
.xb{left:129.635987px;}
.xc{left:130.715987px;}
.x10{left:133.055987px;}
.x5{left:139.175987px;}
.x11{left:141.114000px;}
.x8{left:145.295987px;}
.xa{left:154.469987px;}
.xe{left:174.629987px;}
.x6{left:187.409987px;}
.x3{left:200.729987px;}
.x7{left:238.349987px;}
.x4{left:299.414987px;}
.x2f{left:329.835000px;}
.x9{left:351.614987px;}
.xf{left:371.054987px;}
.x3c{left:393.735000px;}
.x30{left:404.535000px;}
.x4e{left:415.335000px;}
.x12{left:438.375000px;}
.x20{left:445.035000px;}
.x3e{left:446.865000px;}
.x32{left:457.665000px;}
.x4f{left:462.165000px;}
.x1a{left:480.705000px;}
.x3f{left:499.965000px;}
.x50{left:508.965000px;}
.x22{left:518.505000px;}
.x1b{left:523.185000px;}
.x33{left:532.005000px;}
.x40{left:553.065000px;}
.x52{left:555.765000px;}
.x14{left:565.665000px;}
.x34{left:585.105000px;}
.x23{left:591.945000px;}
.x54{left:602.385000px;}
.x41{left:606.165000px;}
.x1c{left:608.145000px;}
.x35{left:638.970000px;}
.x55{left:649.230000px;}
.x1d{left:650.670000px;}
.x42{left:659.490000px;}
.x24{left:665.250000px;}
.x16{left:693.150000px;}
.x36{left:702.150000px;}
.x43{left:712.590000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:24.320000pt;}
.ls1f{letter-spacing:-0.832000pt;}
.ls16{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.303467pt;}
.ls1a{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.094933pt;}
.ls13{letter-spacing:-0.089067pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.015360pt;}
.lse{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.136533pt;}
.ls2{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.512000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls19{letter-spacing:0.655360pt;}
.ls18{letter-spacing:0.960000pt;}
.ls1d{letter-spacing:1.280000pt;}
.ls1c{letter-spacing:8.960000pt;}
.ls7{letter-spacing:11.413333pt;}
.ls1{letter-spacing:11.680000pt;}
.ls0{letter-spacing:12.960000pt;}
.ls1e{letter-spacing:14.080000pt;}
.ls10{letter-spacing:18.863360pt;}
.ls1b{letter-spacing:29.568000pt;}
.lsf{letter-spacing:197.738667pt;}
.ls3{letter-spacing:350.080000pt;}
.ls14{letter-spacing:754.831787pt;}
.ls11{letter-spacing:1255.306667pt;}
.ws2{word-spacing:-27.413333pt;}
.wsd{word-spacing:-19.040000pt;}
.ws5{word-spacing:-18.416533pt;}
.ws7{word-spacing:-16.512000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws13{word-spacing:-15.744000pt;}
.ws14{word-spacing:-15.168000pt;}
.ws9{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.440000pt;}
.wsf{word-spacing:-13.416533pt;}
.ws8{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.190933pt;}
.wsb{word-spacing:-13.185067pt;}
.ws10{word-spacing:-12.960000pt;}
.ws6{word-spacing:-10.720000pt;}
.ws12{word-spacing:-8.655360pt;}
.wsa{word-spacing:-8.640000pt;}
.ws1{word-spacing:-4.672000pt;}
.ws0{word-spacing:-4.288000pt;}
.wsc{word-spacing:0.000000pt;}
._19{margin-left:-4.096000pt;}
._b{margin-left:-2.624000pt;}
._4{margin-left:-1.472000pt;}
._3{width:0.960000pt;}
._7{width:1.916800pt;}
._8{width:3.028053pt;}
._d{width:4.394667pt;}
._e{width:5.568000pt;}
._f{width:6.912000pt;}
._14{width:7.872000pt;}
._16{width:8.960000pt;}
._0{width:9.984000pt;}
._2{width:11.402667pt;}
._1{width:12.490667pt;}
._c{width:13.610667pt;}
._15{width:15.040000pt;}
._10{width:17.536000pt;}
._11{width:18.570667pt;}
._18{width:19.701333pt;}
._1a{width:21.504000pt;}
._9{width:22.570667pt;}
._a{width:23.466667pt;}
._1b{width:24.512000pt;}
._12{width:25.600000pt;}
._13{width:27.008000pt;}
._17{width:29.696000pt;}
._1c{width:32.192000pt;}
._1d{width:33.152000pt;}
._1e{width:50.730667pt;}
._5{width:329.623467pt;}
._6{width:618.506667pt;}
.fs4{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:50.560000pt;}
.fs5{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y89{bottom:2.880000pt;}
.y7c{bottom:3.040000pt;}
.y8b{bottom:3.200000pt;}
.y80{bottom:3.360000pt;}
.yd5{bottom:18.560000pt;}
.ycc{bottom:18.720000pt;}
.y7e{bottom:19.360000pt;}
.y8e{bottom:19.680000pt;}
.y8d{bottom:34.880000pt;}
.y9d{bottom:35.360000pt;}
.y5{bottom:49.760000pt;}
.yb1{bottom:51.200000pt;}
.y10b{bottom:104.512000pt;}
.y74{bottom:106.592000pt;}
.y127{bottom:107.712000pt;}
.y86{bottom:108.512000pt;}
.y2d{bottom:115.552000pt;}
.yf7{bottom:116.832000pt;}
.y51{bottom:117.632000pt;}
.yc7{bottom:122.560000pt;}
.y10a{bottom:128.512000pt;}
.y73{bottom:130.592000pt;}
.y126{bottom:130.752000pt;}
.y85{bottom:132.352000pt;}
.y2c{bottom:133.946667pt;}
.yf6{bottom:140.826667pt;}
.y50{bottom:141.626667pt;}
.yd8{bottom:144.026667pt;}
.y2b{bottom:152.346667pt;}
.y125{bottom:153.786667pt;}
.y72{bottom:154.426667pt;}
.y84{bottom:156.346667pt;}
.yf5{bottom:164.666667pt;}
.y4f{bottom:165.466667pt;}
.yd7{bottom:168.666667pt;}
.y2a{bottom:170.746667pt;}
.y109{bottom:176.346667pt;}
.y124{bottom:176.666667pt;}
.y71{bottom:178.426667pt;}
.y83{bottom:180.186667pt;}
.yd6{bottom:188.506667pt;}
.yf4{bottom:188.666667pt;}
.y29{bottom:189.146667pt;}
.y4e{bottom:189.466667pt;}
.yc6{bottom:196.666667pt;}
.y123{bottom:199.706667pt;}
.y108{bottom:200.186667pt;}
.y70{bottom:202.266667pt;}
.y82{bottom:206.426667pt;}
.y28{bottom:207.546667pt;}
.yf3{bottom:212.506667pt;}
.y4d{bottom:213.306667pt;}
.y122{bottom:222.746667pt;}
.y107{bottom:224.186667pt;}
.y27{bottom:225.946667pt;}
.y6f{bottom:226.266667pt;}
.yaf{bottom:227.386667pt;}
.yd4{bottom:227.866667pt;}
.y81{bottom:231.066667pt;}
.yf2{bottom:236.506667pt;}
.y4c{bottom:237.306667pt;}
.y7d{bottom:243.706667pt;}
.yd3{bottom:243.866667pt;}
.y26{bottom:244.346667pt;}
.y121{bottom:245.786667pt;}
.y106{bottom:248.026667pt;}
.y6e{bottom:250.106667pt;}
.yae{bottom:251.386667pt;}
.y7f{bottom:259.706667pt;}
.yd2{bottom:259.866667pt;}
.yf1{bottom:260.346667pt;}
.y4b{bottom:261.146667pt;}
.y25{bottom:262.746667pt;}
.y120{bottom:268.666667pt;}
.y105{bottom:271.866667pt;}
.y6d{bottom:274.106667pt;}
.yad{bottom:275.386667pt;}
.y7b{bottom:275.706667pt;}
.yd1{bottom:275.866667pt;}
.y24{bottom:281.146667pt;}
.yf0{bottom:284.186667pt;}
.y4a{bottom:285.146667pt;}
.y11f{bottom:291.706667pt;}
.yd0{bottom:291.866667pt;}
.y104{bottom:295.866667pt;}
.y6c{bottom:297.946667pt;}
.yac{bottom:299.226667pt;}
.y23{bottom:299.546667pt;}
.y7a{bottom:303.706667pt;}
.ycf{bottom:307.866667pt;}
.yef{bottom:308.186667pt;}
.y49{bottom:308.986667pt;}
.y11e{bottom:314.746667pt;}
.y22{bottom:317.946667pt;}
.y103{bottom:319.706667pt;}
.y6b{bottom:321.946667pt;}
.y79{bottom:322.106667pt;}
.yab{bottom:323.226667pt;}
.yce{bottom:323.906667pt;}
.yee{bottom:332.066667pt;}
.y48{bottom:333.026667pt;}
.y21{bottom:336.386667pt;}
.y11d{bottom:337.666667pt;}
.ycd{bottom:339.906667pt;}
.y102{bottom:343.746667pt;}
.y6a{bottom:345.826667pt;}
.yaa{bottom:347.106667pt;}
.y20{bottom:354.786667pt;}
.ycb{bottom:355.906667pt;}
.yed{bottom:356.066667pt;}
.y47{bottom:356.866667pt;}
.y11c{bottom:360.706667pt;}
.y101{bottom:367.586667pt;}
.y69{bottom:369.826667pt;}
.ya9{bottom:371.106667pt;}
.y1f{bottom:373.186667pt;}
.yec{bottom:379.906667pt;}
.y46{bottom:380.866667pt;}
.y11b{bottom:383.746667pt;}
.yca{bottom:387.266667pt;}
.y1e{bottom:391.586667pt;}
.y68{bottom:393.666667pt;}
.ya8{bottom:394.946667pt;}
.yc9{bottom:403.266667pt;}
.yeb{bottom:403.906667pt;}
.y45{bottom:404.706667pt;}
.y11a{bottom:406.786667pt;}
.y1d{bottom:409.986667pt;}
.y100{bottom:415.426667pt;}
.y67{bottom:417.666667pt;}
.ya7{bottom:418.946667pt;}
.yc8{bottom:419.266667pt;}
.yea{bottom:427.746667pt;}
.y1c{bottom:428.386667pt;}
.y44{bottom:428.706667pt;}
.y119{bottom:429.666667pt;}
.yc5{bottom:435.266667pt;}
.yff{bottom:439.426667pt;}
.y66{bottom:441.506667pt;}
.ya6{bottom:442.786667pt;}
.y1b{bottom:446.786667pt;}
.yc4{bottom:451.266667pt;}
.ye9{bottom:451.746667pt;}
.y43{bottom:452.546667pt;}
.y118{bottom:452.706667pt;}
.yfe{bottom:463.266667pt;}
.y1a{bottom:465.186667pt;}
.y65{bottom:465.506667pt;}
.ya5{bottom:466.786667pt;}
.ye8{bottom:475.586667pt;}
.y117{bottom:475.746667pt;}
.y42{bottom:476.546667pt;}
.yc3{bottom:479.266667pt;}
.yfd{bottom:487.266667pt;}
.y64{bottom:489.346667pt;}
.ya4{bottom:490.626667pt;}
.yc2{bottom:497.346667pt;}
.y116{bottom:498.786667pt;}
.ye7{bottom:499.586667pt;}
.y41{bottom:500.386667pt;}
.yfc{bottom:511.106667pt;}
.y63{bottom:513.346667pt;}
.ya3{bottom:514.466667pt;}
.y115{bottom:521.666667pt;}
.y19{bottom:522.946667pt;}
.ye6{bottom:523.426667pt;}
.y40{bottom:524.386667pt;}
.yfb{bottom:535.106667pt;}
.y62{bottom:537.186667pt;}
.yc1{bottom:537.506667pt;}
.y18{bottom:538.306667pt;}
.ya2{bottom:540.706667pt;}
.y114{bottom:544.706667pt;}
.ye5{bottom:547.426667pt;}
.y78{bottom:548.066667pt;}
.y3f{bottom:548.226667pt;}
.y17{bottom:558.173333pt;}
.yfa{bottom:558.973333pt;}
.y61{bottom:561.213333pt;}
.yc0{bottom:561.373333pt;}
.ya1{bottom:565.373333pt;}
.y113{bottom:567.773333pt;}
.y16{bottom:568.893333pt;}
.ye4{bottom:571.293333pt;}
.y3e{bottom:572.253333pt;}
.y9c{bottom:578.013333pt;}
.yf9{bottom:582.973333pt;}
.ybf{bottom:585.373333pt;}
.y15{bottom:588.893333pt;}
.y112{bottom:590.813333pt;}
.ya0{bottom:594.013333pt;}
.ye3{bottom:595.293333pt;}
.y3d{bottom:596.093333pt;}
.y14{bottom:604.253333pt;}
.yf8{bottom:606.813333pt;}
.ybe{bottom:609.213333pt;}
.y9f{bottom:610.013333pt;}
.y111{bottom:613.693333pt;}
.ye2{bottom:619.133333pt;}
.y13{bottom:619.613333pt;}
.y60{bottom:619.933333pt;}
.y3c{bottom:620.093333pt;}
.y9e{bottom:626.013333pt;}
.y77{bottom:630.813333pt;}
.ybd{bottom:633.213333pt;}
.y12{bottom:634.813333pt;}
.y110{bottom:636.733333pt;}
.y9b{bottom:642.013333pt;}
.ye1{bottom:643.133333pt;}
.y3b{bottom:643.933333pt;}
.y11{bottom:645.533333pt;}
.y76{bottom:654.653333pt;}
.ybc{bottom:657.053333pt;}
.y9a{bottom:658.013333pt;}
.y10f{bottom:659.773333pt;}
.y10{bottom:665.533333pt;}
.ye0{bottom:666.973333pt;}
.y3a{bottom:667.933333pt;}
.yf{bottom:676.253333pt;}
.y75{bottom:678.653333pt;}
.ybb{bottom:680.893333pt;}
.y10e{bottom:682.813333pt;}
.y99{bottom:686.013333pt;}
.y39{bottom:691.773333pt;}
.ye{bottom:696.253333pt;}
.y5f{bottom:702.493333pt;}
.y98{bottom:704.093333pt;}
.yba{bottom:704.893333pt;}
.y10d{bottom:705.693333pt;}
.yd{bottom:711.613333pt;}
.y38{bottom:715.773333pt;}
.yc{bottom:722.173333pt;}
.ydf{bottom:725.693333pt;}
.y5e{bottom:726.493333pt;}
.yb9{bottom:728.733333pt;}
.y37{bottom:739.613333pt;}
.yb{bottom:742.173333pt;}
.y97{bottom:744.093333pt;}
.y5d{bottom:750.333333pt;}
.yb8{bottom:752.733333pt;}
.ya{bottom:761.533333pt;}
.y36{bottom:763.453333pt;}
.y96{bottom:768.093333pt;}
.y5c{bottom:774.333333pt;}
.yb7{bottom:776.573333pt;}
.y9{bottom:779.933333pt;}
.y10c{bottom:787.333333pt;}
.y35{bottom:787.493333pt;}
.y95{bottom:791.973333pt;}
.y5b{bottom:798.213333pt;}
.y8{bottom:798.373333pt;}
.yb6{bottom:800.613333pt;}
.yde{bottom:802.693333pt;}
.y34{bottom:811.333333pt;}
.y94{bottom:815.973333pt;}
.y5a{bottom:822.213333pt;}
.yb5{bottom:824.453333pt;}
.ydd{bottom:827.333333pt;}
.y33{bottom:835.333333pt;}
.y93{bottom:839.813333pt;}
.y59{bottom:846.053333pt;}
.ydc{bottom:847.333333pt;}
.yb4{bottom:850.693333pt;}
.yd9{bottom:855.333333pt;}
.y32{bottom:859.173333pt;}
.y92{bottom:866.053333pt;}
.y58{bottom:870.053333pt;}
.ydb{bottom:871.333333pt;}
.yb3{bottom:875.333333pt;}
.yda{bottom:887.333333pt;}
.y7{bottom:888.933333pt;}
.y91{bottom:890.533333pt;}
.y57{bottom:893.893333pt;}
.yb2{bottom:895.173333pt;}
.y8c{bottom:903.333333pt;}
.y6{bottom:910.533333pt;}
.y56{bottom:917.893333pt;}
.y31{bottom:918.053333pt;}
.y90{bottom:919.333333pt;}
.y8f{bottom:935.333333pt;}
.y55{bottom:941.733333pt;}
.y8a{bottom:951.333333pt;}
.y54{bottom:965.733333pt;}
.y88{bottom:967.333333pt;}
.y53{bottom:989.573333pt;}
.y30{bottom:995.333333pt;}
.y4{bottom:1003.813333pt;}
.yb0{bottom:1013.253333pt;}
.y87{bottom:1013.413333pt;}
.y52{bottom:1013.573333pt;}
.y2f{bottom:1013.733333pt;}
.y3{bottom:1024.000000pt;}
.y2{bottom:1042.560000pt;}
.y2e{bottom:1060.800000pt;}
.y1{bottom:1060.960000pt;}
.h12{height:15.200000pt;}
.hc{height:15.360000pt;}
.h7{height:30.324375pt;}
.h19{height:30.560000pt;}
.h18{height:30.720000pt;}
.he{height:31.360000pt;}
.h9{height:33.103750pt;}
.h13{height:35.975313pt;}
.hd{height:36.001250pt;}
.hf{height:36.883125pt;}
.h3{height:37.624687pt;}
.h11{height:43.375000pt;}
.hb{height:44.437500pt;}
.h8{height:46.609688pt;}
.h16{height:48.884375pt;}
.h4{height:50.748750pt;}
.h10{height:51.663750pt;}
.ha{height:53.600625pt;}
.h2{height:56.156250pt;}
.h5{height:61.944687pt;}
.h6{height:62.104687pt;}
.h14{height:63.200000pt;}
.h15{height:79.360000pt;}
.h1a{height:111.200000pt;}
.h17{height:253.946667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:36.960000pt;}
.w6{width:36.992000pt;}
.w7{width:37.120000pt;}
.w8{width:37.152000pt;}
.w1b{width:40.800000pt;}
.w1a{width:40.960000pt;}
.w19{width:40.992000pt;}
.w12{width:46.560000pt;}
.w10{width:46.592000pt;}
.w17{width:46.752000pt;}
.w13{width:47.072000pt;}
.w14{width:55.520000pt;}
.wc{width:64.480000pt;}
.wb{width:64.512000pt;}
.w11{width:65.440000pt;}
.wf{width:65.760000pt;}
.w1c{width:74.400000pt;}
.w15{width:74.720000pt;}
.w5{width:82.560000pt;}
.wd{width:107.360000pt;}
.w4{width:112.512000pt;}
.we{width:197.466667pt;}
.w16{width:254.266667pt;}
.w18{width:273.306667pt;}
.w3{width:293.626667pt;}
.wa{width:299.706667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:6.880000pt;}
.x53{left:7.840000pt;}
.x51{left:8.960000pt;}
.x13{left:10.106667pt;}
.x38{left:11.520000pt;}
.x19{left:12.986667pt;}
.x31{left:14.400000pt;}
.x39{left:15.840000pt;}
.x3d{left:17.280000pt;}
.x15{left:19.360000pt;}
.x26{left:20.666667pt;}
.x1f{left:23.040000pt;}
.x2b{left:24.800000pt;}
.x21{left:26.426667pt;}
.x44{left:29.280000pt;}
.x27{left:32.000000pt;}
.x37{left:34.080000pt;}
.x4a{left:35.040000pt;}
.x1e{left:37.920000pt;}
.x4b{left:40.634667pt;}
.x2e{left:42.074667pt;}
.x18{left:44.634667pt;}
.x25{left:50.240000pt;}
.x28{left:53.600000pt;}
.x3b{left:58.234667pt;}
.x57{left:61.754667pt;}
.x4d{left:67.194667pt;}
.x4c{left:71.514667pt;}
.x46{left:72.474667pt;}
.x3a{left:75.674667pt;}
.x29{left:77.594667pt;}
.x48{left:80.954667pt;}
.x56{left:82.554667pt;}
.x2d{left:84.794667pt;}
.x45{left:86.234667pt;}
.x47{left:90.554667pt;}
.x2a{left:91.834667pt;}
.x2{left:94.431988pt;}
.x1{left:95.871988pt;}
.x2c{left:98.714667pt;}
.x49{left:102.554667pt;}
.xd{left:110.591988pt;}
.xb{left:115.231988pt;}
.xc{left:116.191988pt;}
.x10{left:118.271988pt;}
.x5{left:123.711988pt;}
.x11{left:125.434667pt;}
.x8{left:129.151988pt;}
.xa{left:137.306655pt;}
.xe{left:155.226655pt;}
.x6{left:166.586655pt;}
.x3{left:178.426655pt;}
.x7{left:211.866655pt;}
.x4{left:266.146655pt;}
.x2f{left:293.186667pt;}
.x9{left:312.546655pt;}
.xf{left:329.826655pt;}
.x3c{left:349.986667pt;}
.x30{left:359.586667pt;}
.x4e{left:369.186667pt;}
.x12{left:389.666667pt;}
.x20{left:395.586667pt;}
.x3e{left:397.213333pt;}
.x32{left:406.813333pt;}
.x4f{left:410.813333pt;}
.x1a{left:427.293333pt;}
.x3f{left:444.413333pt;}
.x50{left:452.413333pt;}
.x22{left:460.893333pt;}
.x1b{left:465.053333pt;}
.x33{left:472.893333pt;}
.x40{left:491.613333pt;}
.x52{left:494.013333pt;}
.x14{left:502.813333pt;}
.x34{left:520.093333pt;}
.x23{left:526.173333pt;}
.x54{left:535.453333pt;}
.x41{left:538.813333pt;}
.x1c{left:540.573333pt;}
.x35{left:567.973333pt;}
.x55{left:577.093333pt;}
.x1d{left:578.373333pt;}
.x42{left:586.213333pt;}
.x24{left:591.333333pt;}
.x16{left:616.133333pt;}
.x36{left:624.133333pt;}
.x43{left:633.413333pt;}
}




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