
    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_136a6de6df15651b1228b4a8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.951660;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_f6fd7cc5c8f1d1eaa2831756.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6a67cb9a1ffa1424b289f90d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.689941;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_c1999c02b851df7079e8b45b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_90ea0c29ac2a2e5b5603226a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_c38e3d0cfb578786fb25abfb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.078125;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_359d01edf130577d36b3965b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.035156;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_d76bfd717754420ebc3a8c97.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.935059;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_849d76e52e18bd1b3e445a81.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.050293;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);}
.m2{transform:matrix(0.257800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257800,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.258325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258325,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:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls20{letter-spacing:-1.656000px;}
.ls1e{letter-spacing:-1.362000px;}
.ls13{letter-spacing:-1.218000px;}
.ls15{letter-spacing:-1.194000px;}
.ls19{letter-spacing:-1.182000px;}
.ls14{letter-spacing:-1.080000px;}
.ls1b{letter-spacing:-0.984000px;}
.ls12{letter-spacing:-0.846000px;}
.ls17{letter-spacing:-0.522600px;}
.ls1c{letter-spacing:-0.411000px;}
.ls16{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.270000px;}
.ls1f{letter-spacing:-0.179400px;}
.ls11{letter-spacing:-0.108000px;}
.lsd{letter-spacing:-0.072000px;}
.lse{letter-spacing:-0.018000px;}
.lsa{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.036000px;}
.ls1{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.080640px;}
.ls18{letter-spacing:0.108000px;}
.ls1d{letter-spacing:0.174000px;}
.lsb{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.198000px;}
.ls1a{letter-spacing:0.202200px;}
.ls6{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.504000px;}
.ls4{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.828000px;}
.ls7{letter-spacing:0.900000px;}
.ls10{letter-spacing:1.008000px;}
.ls5{letter-spacing:1.080000px;}
.ls21{letter-spacing:8.820000px;}
.ls0{letter-spacing:207.900000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(31,56,100),0 0.015em rgb(31,56,100),0.015em 0 rgb(31,56,100),0 -0.015em  rgb(31,56,100);}
.sc1{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(31,56,100);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-72.000000px;}
.ws13{word-spacing:-54.000000px;}
.ws6{word-spacing:-19.008000px;}
.ws5{word-spacing:-18.000000px;}
.wsa{word-spacing:-16.560000px;}
.wsd{word-spacing:-13.860000px;}
.wsf{word-spacing:-13.702200px;}
.ws11{word-spacing:-13.674000px;}
.ws4{word-spacing:-13.505760px;}
.ws9{word-spacing:-13.500000px;}
.ws8{word-spacing:-13.392000px;}
.ws12{word-spacing:-13.320600px;}
.wse{word-spacing:-13.140000px;}
.ws10{word-spacing:-13.089000px;}
.wsc{word-spacing:-12.420000px;}
.ws3{word-spacing:-12.402000px;}
.ws1{word-spacing:-12.204000px;}
.ws2{word-spacing:-12.186000px;}
.ws0{word-spacing:-11.934000px;}
.wsb{word-spacing:0.000000px;}
._f{margin-left:-5.217840px;}
._5{margin-left:-3.790800px;}
._8{margin-left:-2.532000px;}
._0{margin-left:-1.179360px;}
._3{width:1.011360px;}
._4{width:2.204640px;}
._6{width:3.594000px;}
._7{width:4.766640px;}
._10{width:6.376800px;}
._9{width:7.390560px;}
._c{width:8.544960px;}
._b{width:9.724320px;}
._11{width:10.904160px;}
._12{width:11.919360px;}
._e{width:13.463040px;}
._d{width:14.508000px;}
._14{width:15.840000px;}
._a{width:17.907360px;}
._13{width:18.928320px;}
._15{width:29.520000px;}
._16{width:30.582000px;}
._1{width:578.892000px;}
._2{width:1158.540000px;}
.fc5{color:transparent;}
.fc4{color:rgb(31,56,100);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(62,62,62);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,32,96);}
.fs7{font-size:36.000000px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs5{font-size:63.360000px;}
.fs8{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs1{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y5b{bottom:2.880000px;}
.y8e{bottom:3.060000px;}
.y5f{bottom:3.240000px;}
.y6b{bottom:3.285000px;}
.y5d{bottom:3.420000px;}
.y84{bottom:3.780000px;}
.y8f{bottom:3.960000px;}
.yb{bottom:8.640000px;}
.y9{bottom:56.700000px;}
.y3e{bottom:71.316000px;}
.y8{bottom:95.256000px;}
.y3d{bottom:104.976000px;}
.y7{bottom:111.636000px;}
.y3c{bottom:124.236000px;}
.y6{bottom:128.196000px;}
.y3b{bottom:140.616000px;}
.y5{bottom:144.576000px;}
.ycf{bottom:168.870000px;}
.y74{bottom:170.310000px;}
.yaa{bottom:172.470000px;}
.yf3{bottom:176.970000px;}
.y39{bottom:182.730000px;}
.yce{bottom:187.950000px;}
.y73{bottom:189.390000px;}
.ya9{bottom:191.370000px;}
.yf2{bottom:192.630000px;}
.ycd{bottom:206.850000px;}
.y72{bottom:208.290000px;}
.ya8{bottom:210.450000px;}
.y38{bottom:213.690000px;}
.yf1{bottom:220.170000px;}
.ycc{bottom:225.750000px;}
.y71{bottom:227.190000px;}
.ya7{bottom:229.350000px;}
.yf0{bottom:235.650000px;}
.y37{bottom:244.830000px;}
.y70{bottom:246.270000px;}
.ya6{bottom:248.250000px;}
.y11c{bottom:252.390000px;}
.yef{bottom:263.370000px;}
.y36{bottom:263.730000px;}
.y6f{bottom:265.170000px;}
.ya5{bottom:267.330000px;}
.y11b{bottom:267.870000px;}
.yee{bottom:278.670000px;}
.y35{bottom:282.630000px;}
.ycb{bottom:282.810000px;}
.y6e{bottom:284.250000px;}
.ya4{bottom:286.230000px;}
.y11a{bottom:295.590000px;}
.y6d{bottom:300.270000px;}
.y34{bottom:301.710000px;}
.ya3{bottom:305.310000px;}
.yed{bottom:306.390000px;}
.y119{bottom:310.890000px;}
.y6c{bottom:316.830000px;}
.y33{bottom:320.610000px;}
.yca{bottom:320.790000px;}
.yec{bottom:321.690000px;}
.y6a{bottom:333.210000px;}
.ya2{bottom:336.270000px;}
.yeb{bottom:337.215000px;}
.y118{bottom:338.655000px;}
.yc9{bottom:339.735000px;}
.y69{bottom:349.455000px;}
.y32{bottom:351.615000px;}
.yea{bottom:352.695000px;}
.y117{bottom:353.955000px;}
.ya1{bottom:355.215000px;}
.yc8{bottom:358.635000px;}
.y68{bottom:365.835000px;}
.y31{bottom:370.695000px;}
.ya0{bottom:374.295000px;}
.yc7{bottom:377.715000px;}
.ye9{bottom:380.415000px;}
.y116{bottom:381.675000px;}
.y67{bottom:382.575000px;}
.y30{bottom:389.595000px;}
.y9f{bottom:393.195000px;}
.yc6{bottom:396.615000px;}
.y115{bottom:396.975000px;}
.y66{bottom:398.775000px;}
.ye8{bottom:407.955000px;}
.y2f{bottom:408.495000px;}
.y9e{bottom:412.095000px;}
.y65{bottom:415.155000px;}
.y114{bottom:424.695000px;}
.yc5{bottom:427.215000px;}
.y2e{bottom:427.575000px;}
.y9d{bottom:427.935000px;}
.y64{bottom:431.355000px;}
.ye7{bottom:436.035000px;}
.y113{bottom:439.995000px;}
.y9c{bottom:444.675000px;}
.y2d{bottom:446.475000px;}
.y63{bottom:448.635000px;}
.yc4{bottom:458.535000px;}
.y9b{bottom:461.415000px;}
.y62{bottom:465.015000px;}
.y2c{bottom:465.555000px;}
.ye6{bottom:467.355000px;}
.y112{bottom:467.715000px;}
.yc3{bottom:477.615000px;}
.y9a{bottom:478.335000px;}
.y61{bottom:481.215000px;}
.y111{bottom:483.015000px;}
.y2b{bottom:484.455000px;}
.ye5{bottom:486.435000px;}
.y99{bottom:495.075000px;}
.yc2{bottom:496.515000px;}
.y60{bottom:497.595000px;}
.ye4{bottom:505.335000px;}
.y110{bottom:510.735000px;}
.y5e{bottom:514.335000px;}
.y2a{bottom:515.415000px;}
.y98{bottom:515.595000px;}
.ye3{bottom:524.415000px;}
.y10f{bottom:526.215000px;}
.y5c{bottom:530.535000px;}
.y29{bottom:534.495000px;}
.ye2{bottom:543.315000px;}
.y97{bottom:543.855000px;}
.y5a{bottom:546.915000px;}
.y28{bottom:553.395000px;}
.y10e{bottom:553.935000px;}
.ye1{bottom:562.215000px;}
.y96{bottom:562.935000px;}
.y59{bottom:566.895000px;}
.y27{bottom:572.295000px;}
.yc1{bottom:572.475000px;}
.ye0{bottom:581.295000px;}
.y95{bottom:581.835000px;}
.yc0{bottom:591.375000px;}
.y58{bottom:594.795000px;}
.y10d{bottom:596.775000px;}
.ydf{bottom:600.195000px;}
.y94{bottom:600.915000px;}
.y26{bottom:602.895000px;}
.ybf{bottom:610.485000px;}
.yde{bottom:619.305000px;}
.y93{bottom:619.845000px;}
.y10c{bottom:624.525000px;}
.y57{bottom:626.145000px;}
.ybe{bottom:629.385000px;}
.y25{bottom:633.705000px;}
.y92{bottom:638.745000px;}
.y10b{bottom:639.825000px;}
.ybd{bottom:645.045000px;}
.y56{bottom:645.225000px;}
.ydd{bottom:649.905000px;}
.y91{bottom:657.825000px;}
.y24{bottom:661.245000px;}
.ybc{bottom:661.785000px;}
.y55{bottom:664.125000px;}
.y10a{bottom:667.545000px;}
.y90{bottom:676.725000px;}
.ybb{bottom:678.165000px;}
.ydc{bottom:681.225000px;}
.y109{bottom:682.845000px;}
.y54{bottom:683.205000px;}
.y23{bottom:688.785000px;}
.y8d{bottom:692.385000px;}
.yba{bottom:694.365000px;}
.ydb{bottom:700.125000px;}
.y53{bottom:702.105000px;}
.y22{bottom:704.085000px;}
.y8c{bottom:709.845000px;}
.y108{bottom:710.565000px;}
.yb9{bottom:711.285000px;}
.yda{bottom:719.205000px;}
.y21{bottom:719.745000px;}
.y52{bottom:721.185000px;}
.y107{bottom:725.865000px;}
.y8b{bottom:726.585000px;}
.yb8{bottom:728.565000px;}
.y20{bottom:735.225000px;}
.y51{bottom:740.085000px;}
.y8a{bottom:742.965000px;}
.yb7{bottom:744.765000px;}
.yd9{bottom:750.165000px;}
.y1f{bottom:750.705000px;}
.y106{bottom:753.585000px;}
.y89{bottom:759.165000px;}
.yb6{bottom:761.145000px;}
.y1e{bottom:766.185000px;}
.y105{bottom:768.885000px;}
.yd8{bottom:769.065000px;}
.y50{bottom:770.685000px;}
.y88{bottom:776.085000px;}
.yb5{bottom:777.885000px;}
.y1d{bottom:781.845000px;}
.yd7{bottom:788.145000px;}
.y87{bottom:792.825000px;}
.yb4{bottom:795.165000px;}
.y104{bottom:796.605000px;}
.y1c{bottom:797.325000px;}
.y4f{bottom:802.005000px;}
.yd6{bottom:807.045000px;}
.y86{bottom:809.025000px;}
.yb3{bottom:811.545000px;}
.y103{bottom:811.905000px;}
.y1b{bottom:812.805000px;}
.y4e{bottom:820.905000px;}
.y85{bottom:825.405000px;}
.yd5{bottom:825.945000px;}
.yb2{bottom:827.745000px;}
.y1a{bottom:828.285000px;}
.y102{bottom:839.625000px;}
.y4d{bottom:839.985000px;}
.y83{bottom:842.145000px;}
.y19{bottom:843.945000px;}
.yb1{bottom:844.485000px;}
.yd4{bottom:845.025000px;}
.y101{bottom:855.105000px;}
.y4c{bottom:858.885000px;}
.y18{bottom:859.425000px;}
.yb0{bottom:861.405000px;}
.yd3{bottom:863.925000px;}
.y17{bottom:874.950000px;}
.y82{bottom:875.310000px;}
.y4b{bottom:878.010000px;}
.yaf{bottom:878.190000px;}
.y100{bottom:882.870000px;}
.yd2{bottom:883.050000px;}
.y16{bottom:890.430000px;}
.y81{bottom:891.510000px;}
.yae{bottom:894.930000px;}
.y4a{bottom:896.910000px;}
.yff{bottom:898.170000px;}
.yd1{bottom:901.950000px;}
.y15{bottom:906.090000px;}
.y80{bottom:911.670000px;}
.yad{bottom:915.090000px;}
.y49{bottom:915.990000px;}
.yd0{bottom:920.850000px;}
.y14{bottom:921.570000px;}
.yfe{bottom:925.890000px;}
.yac{bottom:930.570000px;}
.y48{bottom:934.890000px;}
.y7f{bottom:939.930000px;}
.yfd{bottom:941.190000px;}
.y13{bottom:948.930000px;}
.y7e{bottom:958.830000px;}
.y12{bottom:964.590000px;}
.y47{bottom:965.850000px;}
.yfc{bottom:968.910000px;}
.y7d{bottom:977.910000px;}
.y11{bottom:980.070000px;}
.yfb{bottom:984.210000px;}
.y46{bottom:984.750000px;}
.y7c{bottom:996.810000px;}
.y10{bottom:1000.050000px;}
.y45{bottom:1003.830000px;}
.yfa{bottom:1011.930000px;}
.yf{bottom:1015.710000px;}
.y44{bottom:1022.730000px;}
.yf9{bottom:1027.230000px;}
.y7b{bottom:1027.770000px;}
.yab{bottom:1034.790000px;}
.ye{bottom:1039.470000px;}
.y7a{bottom:1046.850000px;}
.y43{bottom:1053.690000px;}
.yf8{bottom:1054.950000px;}
.y79{bottom:1065.750000px;}
.yf7{bottom:1070.250000px;}
.y42{bottom:1072.770000px;}
.yd{bottom:1072.950000px;}
.y78{bottom:1084.650000px;}
.y41{bottom:1091.670000px;}
.yc{bottom:1096.890000px;}
.yf6{bottom:1098.150000px;}
.y77{bottom:1103.730000px;}
.y40{bottom:1110.750000px;}
.y4{bottom:1119.750000px;}
.y76{bottom:1122.630000px;}
.yf5{bottom:1128.570000px;}
.y3{bottom:1135.230000px;}
.y3f{bottom:1141.380000px;}
.y75{bottom:1141.740000px;}
.yf4{bottom:1144.080000px;}
.y2{bottom:1151.640000px;}
.ya{bottom:1174.860000px;}
.y1{bottom:1186.740000px;}
.y3a{bottom:1197.540000px;}
.h12{height:15.480000px;}
.h14{height:15.516000px;}
.h11{height:15.660000px;}
.h17{height:15.696000px;}
.h10{height:16.020000px;}
.h1a{height:16.056000px;}
.h19{height:16.200000px;}
.h13{height:16.560000px;}
.h18{height:16.740000px;}
.h8{height:22.860000px;}
.hb{height:35.332031px;}
.h15{height:45.061523px;}
.h5{height:52.998047px;}
.h6{height:53.709961px;}
.hc{height:54.421875px;}
.h16{height:55.275469px;}
.h4{height:58.651172px;}
.h9{height:61.189805px;}
.h7{height:63.019687px;}
.he{height:65.010937px;}
.hf{height:65.884219px;}
.hd{height:66.757500px;}
.h3{height:72.562500px;}
.ha{height:84.898125px;}
.h2{height:85.271484px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:168.870000px;}
.wa{width:169.380000px;}
.wc{width:169.410000px;}
.w3{width:176.250000px;}
.w5{width:222.690000px;}
.w9{width:225.390000px;}
.wd{width:225.750000px;}
.w8{width:226.110000px;}
.w4{width:226.290000px;}
.w7{width:226.470000px;}
.w6{width:449.715000px;}
.we{width:452.775000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:7.740000px;}
.x26{left:14.040000px;}
.x18{left:21.060000px;}
.x13{left:22.500000px;}
.x22{left:23.580000px;}
.x12{left:28.440000px;}
.x32{left:30.960000px;}
.x4{left:33.345000px;}
.x19{left:36.900000px;}
.x1c{left:39.060000px;}
.xe{left:40.854000px;}
.x27{left:42.660000px;}
.x8{left:44.814000px;}
.x28{left:46.254000px;}
.x34{left:47.694000px;}
.x39{left:49.134000px;}
.x2f{left:53.145000px;}
.x33{left:56.745000px;}
.x2c{left:57.810000px;}
.x3a{left:59.034000px;}
.x30{left:62.505000px;}
.x29{left:68.934000px;}
.x2e{left:72.765000px;}
.x37{left:81.540000px;}
.x10{left:93.825000px;}
.x1e{left:95.625000px;}
.x16{left:97.245000px;}
.x1a{left:99.045000px;}
.x1d{left:102.285000px;}
.x35{left:103.314000px;}
.xd{left:104.445000px;}
.x1{left:106.235987px;}
.xa{left:108.180000px;}
.x7{left:109.656000px;}
.x25{left:112.860000px;}
.x31{left:114.705000px;}
.x15{left:116.280000px;}
.xb{left:118.080000px;}
.xf{left:119.880000px;}
.x1b{left:123.885000px;}
.x17{left:125.505000px;}
.x24{left:126.765000px;}
.x11{left:128.925000px;}
.x23{left:130.185000px;}
.x38{left:144.750000px;}
.x2{left:207.389987px;}
.x14{left:224.850000px;}
.x36{left:226.290000px;}
.x2a{left:277.230000px;}
.x20{left:334.515000px;}
.x9{left:336.675000px;}
.x6{left:337.934987px;}
.x5{left:439.634987px;}
.x2b{left:447.015000px;}
.x21{left:561.345000px;}
.xc{left:563.685000px;}
.x2d{left:617.145000px;}
.x3{left:642.345000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls20{letter-spacing:-1.472000pt;}
.ls1e{letter-spacing:-1.210667pt;}
.ls13{letter-spacing:-1.082667pt;}
.ls15{letter-spacing:-1.061333pt;}
.ls19{letter-spacing:-1.050667pt;}
.ls14{letter-spacing:-0.960000pt;}
.ls1b{letter-spacing:-0.874667pt;}
.ls12{letter-spacing:-0.752000pt;}
.ls17{letter-spacing:-0.464533pt;}
.ls1c{letter-spacing:-0.365333pt;}
.ls16{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.240000pt;}
.ls1f{letter-spacing:-0.159467pt;}
.ls11{letter-spacing:-0.096000pt;}
.lsd{letter-spacing:-0.064000pt;}
.lse{letter-spacing:-0.016000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.032000pt;}
.ls1{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.071680pt;}
.ls18{letter-spacing:0.096000pt;}
.ls1d{letter-spacing:0.154667pt;}
.lsb{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.176000pt;}
.ls1a{letter-spacing:0.179733pt;}
.ls6{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.448000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.736000pt;}
.ls7{letter-spacing:0.800000pt;}
.ls10{letter-spacing:0.896000pt;}
.ls5{letter-spacing:0.960000pt;}
.ls21{letter-spacing:7.840000pt;}
.ls0{letter-spacing:184.800000pt;}
.ws7{word-spacing:-64.000000pt;}
.ws13{word-spacing:-48.000000pt;}
.ws6{word-spacing:-16.896000pt;}
.ws5{word-spacing:-16.000000pt;}
.wsa{word-spacing:-14.720000pt;}
.wsd{word-spacing:-12.320000pt;}
.wsf{word-spacing:-12.179733pt;}
.ws11{word-spacing:-12.154667pt;}
.ws4{word-spacing:-12.005120pt;}
.ws9{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.904000pt;}
.ws12{word-spacing:-11.840533pt;}
.wse{word-spacing:-11.680000pt;}
.ws10{word-spacing:-11.634667pt;}
.wsc{word-spacing:-11.040000pt;}
.ws3{word-spacing:-11.024000pt;}
.ws1{word-spacing:-10.848000pt;}
.ws2{word-spacing:-10.832000pt;}
.ws0{word-spacing:-10.608000pt;}
.wsb{word-spacing:0.000000pt;}
._f{margin-left:-4.638080pt;}
._5{margin-left:-3.369600pt;}
._8{margin-left:-2.250667pt;}
._0{margin-left:-1.048320pt;}
._3{width:0.898987pt;}
._4{width:1.959680pt;}
._6{width:3.194667pt;}
._7{width:4.237013pt;}
._10{width:5.668267pt;}
._9{width:6.569387pt;}
._c{width:7.595520pt;}
._b{width:8.643840pt;}
._11{width:9.692587pt;}
._12{width:10.594987pt;}
._e{width:11.967147pt;}
._d{width:12.896000pt;}
._14{width:14.080000pt;}
._a{width:15.917653pt;}
._13{width:16.825173pt;}
._15{width:26.240000pt;}
._16{width:27.184000pt;}
._1{width:514.570667pt;}
._2{width:1029.813333pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs5{font-size:56.320000pt;}
.fs8{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y5b{bottom:2.560000pt;}
.y8e{bottom:2.720000pt;}
.y5f{bottom:2.880000pt;}
.y6b{bottom:2.920000pt;}
.y5d{bottom:3.040000pt;}
.y84{bottom:3.360000pt;}
.y8f{bottom:3.520000pt;}
.yb{bottom:7.680000pt;}
.y9{bottom:50.400000pt;}
.y3e{bottom:63.392000pt;}
.y8{bottom:84.672000pt;}
.y3d{bottom:93.312000pt;}
.y7{bottom:99.232000pt;}
.y3c{bottom:110.432000pt;}
.y6{bottom:113.952000pt;}
.y3b{bottom:124.992000pt;}
.y5{bottom:128.512000pt;}
.ycf{bottom:150.106667pt;}
.y74{bottom:151.386667pt;}
.yaa{bottom:153.306667pt;}
.yf3{bottom:157.306667pt;}
.y39{bottom:162.426667pt;}
.yce{bottom:167.066667pt;}
.y73{bottom:168.346667pt;}
.ya9{bottom:170.106667pt;}
.yf2{bottom:171.226667pt;}
.ycd{bottom:183.866667pt;}
.y72{bottom:185.146667pt;}
.ya8{bottom:187.066667pt;}
.y38{bottom:189.946667pt;}
.yf1{bottom:195.706667pt;}
.ycc{bottom:200.666667pt;}
.y71{bottom:201.946667pt;}
.ya7{bottom:203.866667pt;}
.yf0{bottom:209.466667pt;}
.y37{bottom:217.626667pt;}
.y70{bottom:218.906667pt;}
.ya6{bottom:220.666667pt;}
.y11c{bottom:224.346667pt;}
.yef{bottom:234.106667pt;}
.y36{bottom:234.426667pt;}
.y6f{bottom:235.706667pt;}
.ya5{bottom:237.626667pt;}
.y11b{bottom:238.106667pt;}
.yee{bottom:247.706667pt;}
.y35{bottom:251.226667pt;}
.ycb{bottom:251.386667pt;}
.y6e{bottom:252.666667pt;}
.ya4{bottom:254.426667pt;}
.y11a{bottom:262.746667pt;}
.y6d{bottom:266.906667pt;}
.y34{bottom:268.186667pt;}
.ya3{bottom:271.386667pt;}
.yed{bottom:272.346667pt;}
.y119{bottom:276.346667pt;}
.y6c{bottom:281.626667pt;}
.y33{bottom:284.986667pt;}
.yca{bottom:285.146667pt;}
.yec{bottom:285.946667pt;}
.y6a{bottom:296.186667pt;}
.ya2{bottom:298.906667pt;}
.yeb{bottom:299.746667pt;}
.y118{bottom:301.026667pt;}
.yc9{bottom:301.986667pt;}
.y69{bottom:310.626667pt;}
.y32{bottom:312.546667pt;}
.yea{bottom:313.506667pt;}
.y117{bottom:314.626667pt;}
.ya1{bottom:315.746667pt;}
.yc8{bottom:318.786667pt;}
.y68{bottom:325.186667pt;}
.y31{bottom:329.506667pt;}
.ya0{bottom:332.706667pt;}
.yc7{bottom:335.746667pt;}
.ye9{bottom:338.146667pt;}
.y116{bottom:339.266667pt;}
.y67{bottom:340.066667pt;}
.y30{bottom:346.306667pt;}
.y9f{bottom:349.506667pt;}
.yc6{bottom:352.546667pt;}
.y115{bottom:352.866667pt;}
.y66{bottom:354.466667pt;}
.ye8{bottom:362.626667pt;}
.y2f{bottom:363.106667pt;}
.y9e{bottom:366.306667pt;}
.y65{bottom:369.026667pt;}
.y114{bottom:377.506667pt;}
.yc5{bottom:379.746667pt;}
.y2e{bottom:380.066667pt;}
.y9d{bottom:380.386667pt;}
.y64{bottom:383.426667pt;}
.ye7{bottom:387.586667pt;}
.y113{bottom:391.106667pt;}
.y9c{bottom:395.266667pt;}
.y2d{bottom:396.866667pt;}
.y63{bottom:398.786667pt;}
.yc4{bottom:407.586667pt;}
.y9b{bottom:410.146667pt;}
.y62{bottom:413.346667pt;}
.y2c{bottom:413.826667pt;}
.ye6{bottom:415.426667pt;}
.y112{bottom:415.746667pt;}
.yc3{bottom:424.546667pt;}
.y9a{bottom:425.186667pt;}
.y61{bottom:427.746667pt;}
.y111{bottom:429.346667pt;}
.y2b{bottom:430.626667pt;}
.ye5{bottom:432.386667pt;}
.y99{bottom:440.066667pt;}
.yc2{bottom:441.346667pt;}
.y60{bottom:442.306667pt;}
.ye4{bottom:449.186667pt;}
.y110{bottom:453.986667pt;}
.y5e{bottom:457.186667pt;}
.y2a{bottom:458.146667pt;}
.y98{bottom:458.306667pt;}
.ye3{bottom:466.146667pt;}
.y10f{bottom:467.746667pt;}
.y5c{bottom:471.586667pt;}
.y29{bottom:475.106667pt;}
.ye2{bottom:482.946667pt;}
.y97{bottom:483.426667pt;}
.y5a{bottom:486.146667pt;}
.y28{bottom:491.906667pt;}
.y10e{bottom:492.386667pt;}
.ye1{bottom:499.746667pt;}
.y96{bottom:500.386667pt;}
.y59{bottom:503.906667pt;}
.y27{bottom:508.706667pt;}
.yc1{bottom:508.866667pt;}
.ye0{bottom:516.706667pt;}
.y95{bottom:517.186667pt;}
.yc0{bottom:525.666667pt;}
.y58{bottom:528.706667pt;}
.y10d{bottom:530.466667pt;}
.ydf{bottom:533.506667pt;}
.y94{bottom:534.146667pt;}
.y26{bottom:535.906667pt;}
.ybf{bottom:542.653333pt;}
.yde{bottom:550.493333pt;}
.y93{bottom:550.973333pt;}
.y10c{bottom:555.133333pt;}
.y57{bottom:556.573333pt;}
.ybe{bottom:559.453333pt;}
.y25{bottom:563.293333pt;}
.y92{bottom:567.773333pt;}
.y10b{bottom:568.733333pt;}
.ybd{bottom:573.373333pt;}
.y56{bottom:573.533333pt;}
.ydd{bottom:577.693333pt;}
.y91{bottom:584.733333pt;}
.y24{bottom:587.773333pt;}
.ybc{bottom:588.253333pt;}
.y55{bottom:590.333333pt;}
.y10a{bottom:593.373333pt;}
.y90{bottom:601.533333pt;}
.ybb{bottom:602.813333pt;}
.ydc{bottom:605.533333pt;}
.y109{bottom:606.973333pt;}
.y54{bottom:607.293333pt;}
.y23{bottom:612.253333pt;}
.y8d{bottom:615.453333pt;}
.yba{bottom:617.213333pt;}
.ydb{bottom:622.333333pt;}
.y53{bottom:624.093333pt;}
.y22{bottom:625.853333pt;}
.y8c{bottom:630.973333pt;}
.y108{bottom:631.613333pt;}
.yb9{bottom:632.253333pt;}
.yda{bottom:639.293333pt;}
.y21{bottom:639.773333pt;}
.y52{bottom:641.053333pt;}
.y107{bottom:645.213333pt;}
.y8b{bottom:645.853333pt;}
.yb8{bottom:647.613333pt;}
.y20{bottom:653.533333pt;}
.y51{bottom:657.853333pt;}
.y8a{bottom:660.413333pt;}
.yb7{bottom:662.013333pt;}
.yd9{bottom:666.813333pt;}
.y1f{bottom:667.293333pt;}
.y106{bottom:669.853333pt;}
.y89{bottom:674.813333pt;}
.yb6{bottom:676.573333pt;}
.y1e{bottom:681.053333pt;}
.y105{bottom:683.453333pt;}
.yd8{bottom:683.613333pt;}
.y50{bottom:685.053333pt;}
.y88{bottom:689.853333pt;}
.yb5{bottom:691.453333pt;}
.y1d{bottom:694.973333pt;}
.yd7{bottom:700.573333pt;}
.y87{bottom:704.733333pt;}
.yb4{bottom:706.813333pt;}
.y104{bottom:708.093333pt;}
.y1c{bottom:708.733333pt;}
.y4f{bottom:712.893333pt;}
.yd6{bottom:717.373333pt;}
.y86{bottom:719.133333pt;}
.yb3{bottom:721.373333pt;}
.y103{bottom:721.693333pt;}
.y1b{bottom:722.493333pt;}
.y4e{bottom:729.693333pt;}
.y85{bottom:733.693333pt;}
.yd5{bottom:734.173333pt;}
.yb2{bottom:735.773333pt;}
.y1a{bottom:736.253333pt;}
.y102{bottom:746.333333pt;}
.y4d{bottom:746.653333pt;}
.y83{bottom:748.573333pt;}
.y19{bottom:750.173333pt;}
.yb1{bottom:750.653333pt;}
.yd4{bottom:751.133333pt;}
.y101{bottom:760.093333pt;}
.y4c{bottom:763.453333pt;}
.y18{bottom:763.933333pt;}
.yb0{bottom:765.693333pt;}
.yd3{bottom:767.933333pt;}
.y17{bottom:777.733333pt;}
.y82{bottom:778.053333pt;}
.y4b{bottom:780.453333pt;}
.yaf{bottom:780.613333pt;}
.y100{bottom:784.773333pt;}
.yd2{bottom:784.933333pt;}
.y16{bottom:791.493333pt;}
.y81{bottom:792.453333pt;}
.yae{bottom:795.493333pt;}
.y4a{bottom:797.253333pt;}
.yff{bottom:798.373333pt;}
.yd1{bottom:801.733333pt;}
.y15{bottom:805.413333pt;}
.y80{bottom:810.373333pt;}
.yad{bottom:813.413333pt;}
.y49{bottom:814.213333pt;}
.yd0{bottom:818.533333pt;}
.y14{bottom:819.173333pt;}
.yfe{bottom:823.013333pt;}
.yac{bottom:827.173333pt;}
.y48{bottom:831.013333pt;}
.y7f{bottom:835.493333pt;}
.yfd{bottom:836.613333pt;}
.y13{bottom:843.493333pt;}
.y7e{bottom:852.293333pt;}
.y12{bottom:857.413333pt;}
.y47{bottom:858.533333pt;}
.yfc{bottom:861.253333pt;}
.y7d{bottom:869.253333pt;}
.y11{bottom:871.173333pt;}
.yfb{bottom:874.853333pt;}
.y46{bottom:875.333333pt;}
.y7c{bottom:886.053333pt;}
.y10{bottom:888.933333pt;}
.y45{bottom:892.293333pt;}
.yfa{bottom:899.493333pt;}
.yf{bottom:902.853333pt;}
.y44{bottom:909.093333pt;}
.yf9{bottom:913.093333pt;}
.y7b{bottom:913.573333pt;}
.yab{bottom:919.813333pt;}
.ye{bottom:923.973333pt;}
.y7a{bottom:930.533333pt;}
.y43{bottom:936.613333pt;}
.yf8{bottom:937.733333pt;}
.y79{bottom:947.333333pt;}
.yf7{bottom:951.333333pt;}
.y42{bottom:953.573333pt;}
.yd{bottom:953.733333pt;}
.y78{bottom:964.133333pt;}
.y41{bottom:970.373333pt;}
.yc{bottom:975.013333pt;}
.yf6{bottom:976.133333pt;}
.y77{bottom:981.093333pt;}
.y40{bottom:987.333333pt;}
.y4{bottom:995.333333pt;}
.y76{bottom:997.893333pt;}
.yf5{bottom:1003.173333pt;}
.y3{bottom:1009.093333pt;}
.y3f{bottom:1014.560000pt;}
.y75{bottom:1014.880000pt;}
.yf4{bottom:1016.960000pt;}
.y2{bottom:1023.680000pt;}
.ya{bottom:1044.320000pt;}
.y1{bottom:1054.880000pt;}
.y3a{bottom:1064.480000pt;}
.h12{height:13.760000pt;}
.h14{height:13.792000pt;}
.h11{height:13.920000pt;}
.h17{height:13.952000pt;}
.h10{height:14.240000pt;}
.h1a{height:14.272000pt;}
.h19{height:14.400000pt;}
.h13{height:14.720000pt;}
.h18{height:14.880000pt;}
.h8{height:20.320000pt;}
.hb{height:31.406250pt;}
.h15{height:40.054688pt;}
.h5{height:47.109375pt;}
.h6{height:47.742188pt;}
.hc{height:48.375000pt;}
.h16{height:49.133750pt;}
.h4{height:52.134375pt;}
.h9{height:54.390938pt;}
.h7{height:56.017500pt;}
.he{height:57.787500pt;}
.hf{height:58.563750pt;}
.hd{height:59.340000pt;}
.h3{height:64.500000pt;}
.ha{height:75.465000pt;}
.h2{height:75.796875pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:150.106667pt;}
.wa{width:150.560000pt;}
.wc{width:150.586667pt;}
.w3{width:156.666667pt;}
.w5{width:197.946667pt;}
.w9{width:200.346667pt;}
.wd{width:200.666667pt;}
.w8{width:200.986667pt;}
.w4{width:201.146667pt;}
.w7{width:201.306667pt;}
.w6{width:399.746667pt;}
.we{width:402.466667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:6.880000pt;}
.x26{left:12.480000pt;}
.x18{left:18.720000pt;}
.x13{left:20.000000pt;}
.x22{left:20.960000pt;}
.x12{left:25.280000pt;}
.x32{left:27.520000pt;}
.x4{left:29.640000pt;}
.x19{left:32.800000pt;}
.x1c{left:34.720000pt;}
.xe{left:36.314667pt;}
.x27{left:37.920000pt;}
.x8{left:39.834667pt;}
.x28{left:41.114667pt;}
.x34{left:42.394667pt;}
.x39{left:43.674667pt;}
.x2f{left:47.240000pt;}
.x33{left:50.440000pt;}
.x2c{left:51.386667pt;}
.x3a{left:52.474667pt;}
.x30{left:55.560000pt;}
.x29{left:61.274667pt;}
.x2e{left:64.680000pt;}
.x37{left:72.480000pt;}
.x10{left:83.400000pt;}
.x1e{left:85.000000pt;}
.x16{left:86.440000pt;}
.x1a{left:88.040000pt;}
.x1d{left:90.920000pt;}
.x35{left:91.834667pt;}
.xd{left:92.840000pt;}
.x1{left:94.431988pt;}
.xa{left:96.160000pt;}
.x7{left:97.472000pt;}
.x25{left:100.320000pt;}
.x31{left:101.960000pt;}
.x15{left:103.360000pt;}
.xb{left:104.960000pt;}
.xf{left:106.560000pt;}
.x1b{left:110.120000pt;}
.x17{left:111.560000pt;}
.x24{left:112.680000pt;}
.x11{left:114.600000pt;}
.x23{left:115.720000pt;}
.x38{left:128.666667pt;}
.x2{left:184.346655pt;}
.x14{left:199.866667pt;}
.x36{left:201.146667pt;}
.x2a{left:246.426667pt;}
.x20{left:297.346667pt;}
.x9{left:299.266667pt;}
.x6{left:300.386655pt;}
.x5{left:390.786655pt;}
.x2b{left:397.346667pt;}
.x21{left:498.973333pt;}
.xc{left:501.053333pt;}
.x2d{left:548.573333pt;}
.x3{left:570.973333pt;}
}




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