
    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_650354b88774c75db65bf203.woff')format("woff");}.ff1{font-family:ff1;line-height:0.971191;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_89d5ff7651da76e3c043202a.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_31beaad7b028101a857c6b99.woff')format("woff");}.ff3{font-family:ff3;line-height:0.893066;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_023e33303f71f0e1ca417405.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_03035c8e35b46a3293709afc.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_c438bb53ce47cd31ffd08a8d.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_68e6a46b34d042cbe9a08a24.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_d67e1dc106f7a1fca3a7ea4e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-20.978880px;}
.v3{vertical-align:-7.134360px;}
.v1{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-1.200000px;}
.ls4{letter-spacing:-0.600000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.001140px;}
.ls1{letter-spacing:6.173460px;}
.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:-15.000000px;}
.ws1{word-spacing:-13.500000px;}
.wsba{word-spacing:-12.000000px;}
.ws57{word-spacing:-4.680000px;}
.ws78{word-spacing:-4.560000px;}
.ws18{word-spacing:-3.840000px;}
.wsa3{word-spacing:-3.300000px;}
.ws79{word-spacing:-3.000000px;}
.ws6d{word-spacing:-2.880000px;}
.ws92{word-spacing:-2.820000px;}
.ws93{word-spacing:-2.760000px;}
.wsa4{word-spacing:-2.700000px;}
.ws24{word-spacing:-2.580000px;}
.ws5d{word-spacing:-2.520000px;}
.wsa7{word-spacing:-2.460000px;}
.wsbd{word-spacing:-2.400000px;}
.ws63{word-spacing:-2.340000px;}
.ws19{word-spacing:-2.280000px;}
.ws77{word-spacing:-2.220000px;}
.ws23{word-spacing:-2.160000px;}
.ws8d{word-spacing:-2.040000px;}
.ws28{word-spacing:-1.980000px;}
.ws87{word-spacing:-1.920000px;}
.wsb1{word-spacing:-1.860000px;}
.wsa{word-spacing:-1.800000px;}
.ws80{word-spacing:-1.740000px;}
.ws3a{word-spacing:-1.680000px;}
.ws86{word-spacing:-1.620000px;}
.ws25{word-spacing:-1.560000px;}
.ws2a{word-spacing:-1.500000px;}
.ws89{word-spacing:-1.440000px;}
.ws26{word-spacing:-1.380000px;}
.ws1e{word-spacing:-1.320000px;}
.ws5e{word-spacing:-1.260000px;}
.wsad{word-spacing:-1.200000px;}
.ws4{word-spacing:-1.188000px;}
.ws53{word-spacing:-1.140000px;}
.wsb8{word-spacing:-1.080000px;}
.ws32{word-spacing:-1.020000px;}
.ws52{word-spacing:-0.960000px;}
.ws60{word-spacing:-0.900000px;}
.ws82{word-spacing:-0.840000px;}
.ws7{word-spacing:-0.780000px;}
.ws12{word-spacing:-0.720000px;}
.ws8e{word-spacing:-0.660000px;}
.wsb7{word-spacing:-0.600000px;}
.wse{word-spacing:-0.540000px;}
.ws58{word-spacing:-0.480000px;}
.ws3b{word-spacing:-0.420000px;}
.ws30{word-spacing:-0.360000px;}
.ws6c{word-spacing:-0.300000px;}
.ws65{word-spacing:-0.240000px;}
.ws44{word-spacing:-0.180000px;}
.wsb{word-spacing:-0.120000px;}
.ws7f{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.ws2b{word-spacing:0.060000px;}
.ws1c{word-spacing:0.120000px;}
.ws9e{word-spacing:0.180000px;}
.ws6e{word-spacing:0.240000px;}
.ws9a{word-spacing:0.300000px;}
.ws66{word-spacing:0.360000px;}
.ws4b{word-spacing:0.420000px;}
.ws29{word-spacing:0.480000px;}
.ws9f{word-spacing:0.600000px;}
.ws68{word-spacing:0.660000px;}
.ws8b{word-spacing:0.720000px;}
.ws11{word-spacing:0.780000px;}
.ws10{word-spacing:0.840000px;}
.ws4f{word-spacing:0.900000px;}
.wsc{word-spacing:0.960000px;}
.ws7c{word-spacing:1.020000px;}
.ws83{word-spacing:1.080000px;}
.wsc1{word-spacing:1.140000px;}
.wsb4{word-spacing:1.200000px;}
.ws16{word-spacing:1.260000px;}
.ws1d{word-spacing:1.320000px;}
.ws51{word-spacing:1.380000px;}
.ws59{word-spacing:1.440000px;}
.ws20{word-spacing:1.560000px;}
.ws56{word-spacing:1.680000px;}
.ws1b{word-spacing:1.740000px;}
.ws34{word-spacing:1.800000px;}
.wsbf{word-spacing:1.860000px;}
.ws64{word-spacing:1.980000px;}
.ws7e{word-spacing:2.040000px;}
.ws7d{word-spacing:2.100000px;}
.ws5b{word-spacing:2.160000px;}
.ws3f{word-spacing:2.220000px;}
.wsa1{word-spacing:2.460000px;}
.ws9c{word-spacing:2.580000px;}
.ws72{word-spacing:2.640000px;}
.ws9{word-spacing:2.700000px;}
.ws2d{word-spacing:2.760000px;}
.ws31{word-spacing:2.820000px;}
.ws76{word-spacing:2.880000px;}
.wsd{word-spacing:2.940000px;}
.ws88{word-spacing:3.000000px;}
.wsf{word-spacing:3.060000px;}
.ws41{word-spacing:3.120000px;}
.ws36{word-spacing:3.180000px;}
.ws15{word-spacing:3.240000px;}
.ws95{word-spacing:3.360000px;}
.ws74{word-spacing:3.420000px;}
.ws8f{word-spacing:3.480000px;}
.ws43{word-spacing:3.540000px;}
.ws54{word-spacing:3.600000px;}
.ws67{word-spacing:3.660000px;}
.ws8a{word-spacing:3.720000px;}
.ws6f{word-spacing:3.840000px;}
.ws5a{word-spacing:3.900000px;}
.ws2f{word-spacing:3.960000px;}
.ws55{word-spacing:4.020000px;}
.ws8c{word-spacing:4.080000px;}
.ws1f{word-spacing:4.140000px;}
.ws14{word-spacing:4.200000px;}
.wsb3{word-spacing:4.260000px;}
.wsbb{word-spacing:4.272000px;}
.ws91{word-spacing:4.320000px;}
.ws17{word-spacing:4.440000px;}
.ws39{word-spacing:4.500000px;}
.ws96{word-spacing:4.560000px;}
.ws97{word-spacing:4.620000px;}
.ws6{word-spacing:4.644000px;}
.ws21{word-spacing:4.740000px;}
.ws5f{word-spacing:4.800000px;}
.ws22{word-spacing:4.860000px;}
.ws61{word-spacing:4.980000px;}
.ws8{word-spacing:5.100000px;}
.ws4e{word-spacing:5.280000px;}
.ws9b{word-spacing:5.340000px;}
.ws49{word-spacing:5.400000px;}
.ws5{word-spacing:5.418000px;}
.wsa2{word-spacing:5.460000px;}
.ws7b{word-spacing:5.520000px;}
.ws1a{word-spacing:5.580000px;}
.ws3d{word-spacing:5.760000px;}
.wsbc{word-spacing:5.820000px;}
.ws2e{word-spacing:5.940000px;}
.ws85{word-spacing:6.060000px;}
.wsab{word-spacing:6.180000px;}
.ws62{word-spacing:6.240000px;}
.ws50{word-spacing:6.360000px;}
.wsb9{word-spacing:6.420000px;}
.ws9d{word-spacing:6.480000px;}
.ws37{word-spacing:6.540000px;}
.ws6b{word-spacing:6.600000px;}
.ws99{word-spacing:6.720000px;}
.ws4a{word-spacing:6.780000px;}
.ws90{word-spacing:6.840000px;}
.ws38{word-spacing:6.960000px;}
.wsa6{word-spacing:7.080000px;}
.ws3e{word-spacing:7.140000px;}
.ws5c{word-spacing:7.200000px;}
.ws84{word-spacing:7.380000px;}
.ws71{word-spacing:7.500000px;}
.ws7a{word-spacing:7.560000px;}
.ws3c{word-spacing:7.680000px;}
.ws45{word-spacing:7.740000px;}
.ws69{word-spacing:7.800000px;}
.ws2c{word-spacing:7.860000px;}
.wsae{word-spacing:7.920000px;}
.ws81{word-spacing:8.220000px;}
.ws13{word-spacing:8.280000px;}
.ws48{word-spacing:8.400000px;}
.ws70{word-spacing:8.460000px;}
.ws98{word-spacing:8.520000px;}
.wsc0{word-spacing:8.580000px;}
.ws4c{word-spacing:8.880000px;}
.ws27{word-spacing:8.940000px;}
.wsbe{word-spacing:9.000000px;}
.ws46{word-spacing:9.600000px;}
.ws94{word-spacing:9.960000px;}
.ws40{word-spacing:10.140000px;}
.wsb0{word-spacing:10.320000px;}
.ws75{word-spacing:10.440000px;}
.wsa0{word-spacing:10.680000px;}
.ws35{word-spacing:11.400000px;}
.ws73{word-spacing:11.580000px;}
.wsa5{word-spacing:11.700000px;}
.wsb5{word-spacing:11.880000px;}
.ws42{word-spacing:12.240000px;}
.ws4d{word-spacing:12.840000px;}
.ws47{word-spacing:13.860000px;}
.ws6a{word-spacing:15.420000px;}
.wsa9{word-spacing:15.900000px;}
.wsb2{word-spacing:17.820000px;}
.wsa8{word-spacing:17.940000px;}
.wsaf{word-spacing:18.120000px;}
.wsb6{word-spacing:19.320000px;}
.wsaa{word-spacing:20.160000px;}
.wsac{word-spacing:20.460000px;}
.ws0{word-spacing:402.728588px;}
.ws33{word-spacing:411.602588px;}
._10{margin-left:-1659.852000px;}
._e{margin-left:-10.877814px;}
._c{margin-left:-9.341250px;}
._f{margin-left:-7.813122px;}
._3{margin-left:-6.661020px;}
._2{margin-left:-4.760818px;}
._0{margin-left:-2.954588px;}
._1{margin-left:-1.000193px;}
._6{width:1.379556px;}
._4{width:2.603880px;}
._5{width:3.826878px;}
._9{width:4.871700px;}
._b{width:6.066114px;}
._d{width:7.780740px;}
._8{width:8.964840px;}
._a{width:10.367820px;}
._13{width:11.988300px;}
._12{width:13.050000px;}
._17{width:15.053880px;}
._19{width:16.546860px;}
._15{width:18.000000px;}
._18{width:19.800000px;}
._16{width:20.954588px;}
._11{width:48.000000px;}
._14{width:49.200000px;}
._7{width:739.506000px;}
.fc5{color:transparent;}
.fc3{color:rgb(40,146,63);}
.fc2{color:rgb(42,62,146);}
.fc4{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:36.729000px;}
.fs8{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:63.000000px;}
.fs0{font-size:66.000000px;}
.fs7{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.y32{bottom:-13.401000px;}
.y0{bottom:0.000000px;}
.y2{bottom:67.557450px;}
.yb{bottom:70.182000px;}
.y33{bottom:73.966950px;}
.yaf{bottom:104.119500px;}
.ycd{bottom:107.638500px;}
.ycb{bottom:112.906410px;}
.y6e{bottom:112.906500px;}
.yae{bottom:122.119500px;}
.y30{bottom:124.848000px;}
.ycc{bottom:125.638500px;}
.yca{bottom:130.906410px;}
.y6d{bottom:130.906500px;}
.yad{bottom:140.119500px;}
.y2f{bottom:142.848000px;}
.yc9{bottom:148.906410px;}
.y6c{bottom:148.906500px;}
.yac{bottom:158.119500px;}
.y2e{bottom:160.848000px;}
.yc8{bottom:166.906410px;}
.y6b{bottom:166.906500px;}
.yab{bottom:176.119500px;}
.y2d{bottom:178.848000px;}
.yc7{bottom:184.906410px;}
.y6a{bottom:184.906500px;}
.yaa{bottom:194.119500px;}
.y2c{bottom:196.848000px;}
.yc6{bottom:202.906410px;}
.y69{bottom:202.906500px;}
.ya9{bottom:212.119500px;}
.y2b{bottom:214.848000px;}
.yc5{bottom:220.906410px;}
.y68{bottom:220.906500px;}
.ya8{bottom:230.119500px;}
.y2a{bottom:232.848000px;}
.yc4{bottom:238.906410px;}
.y67{bottom:238.906500px;}
.ya7{bottom:248.119500px;}
.y29{bottom:250.848000px;}
.yc3{bottom:256.906410px;}
.y66{bottom:256.906500px;}
.yb0{bottom:266.119500px;}
.y28{bottom:268.848000px;}
.yc2{bottom:274.906410px;}
.y91{bottom:274.906500px;}
.ya6{bottom:284.119500px;}
.y27{bottom:286.848000px;}
.yc1{bottom:292.906410px;}
.y65{bottom:292.906500px;}
.ya5{bottom:302.119500px;}
.y26{bottom:304.848000px;}
.yc0{bottom:310.906410px;}
.y64{bottom:310.906500px;}
.ya4{bottom:320.119500px;}
.y25{bottom:322.848000px;}
.ybf{bottom:328.906410px;}
.y63{bottom:328.906500px;}
.ya3{bottom:338.119500px;}
.y24{bottom:340.848000px;}
.ybe{bottom:346.906410px;}
.y62{bottom:346.906500px;}
.ya2{bottom:356.119500px;}
.y23{bottom:358.848000px;}
.ybd{bottom:364.906410px;}
.y61{bottom:364.906500px;}
.ya1{bottom:374.119500px;}
.y22{bottom:376.848000px;}
.ybc{bottom:382.906410px;}
.y60{bottom:382.906500px;}
.ya0{bottom:392.119500px;}
.y21{bottom:394.848000px;}
.ybb{bottom:400.906410px;}
.y5f{bottom:400.906500px;}
.y9f{bottom:410.119500px;}
.y20{bottom:412.848000px;}
.yba{bottom:418.906410px;}
.y5e{bottom:418.906500px;}
.y9e{bottom:428.119500px;}
.y1f{bottom:430.848000px;}
.yb9{bottom:436.906410px;}
.y5d{bottom:436.906500px;}
.y9d{bottom:446.119500px;}
.y1e{bottom:448.848000px;}
.yb8{bottom:454.906410px;}
.y5c{bottom:454.906500px;}
.y9c{bottom:464.119500px;}
.y1d{bottom:466.848000px;}
.yb7{bottom:472.906410px;}
.y5b{bottom:472.906500px;}
.y9b{bottom:482.119500px;}
.y1c{bottom:484.848000px;}
.yb6{bottom:490.906410px;}
.y5a{bottom:490.906500px;}
.y9a{bottom:500.119500px;}
.y1b{bottom:502.848000px;}
.yb5{bottom:508.906410px;}
.y59{bottom:508.906500px;}
.y99{bottom:518.119500px;}
.y1a{bottom:520.848000px;}
.yb4{bottom:526.906410px;}
.y58{bottom:526.906500px;}
.y98{bottom:536.119500px;}
.y19{bottom:538.848000px;}
.yb3{bottom:544.906410px;}
.y57{bottom:544.906500px;}
.y97{bottom:554.119500px;}
.y18{bottom:556.848000px;}
.yb2{bottom:562.906410px;}
.y56{bottom:562.906500px;}
.y96{bottom:572.119500px;}
.y17{bottom:574.848000px;}
.yb1{bottom:580.906410px;}
.y90{bottom:580.906500px;}
.y55{bottom:598.906410px;}
.y8f{bottom:598.906500px;}
.y54{bottom:616.906410px;}
.y8e{bottom:616.906500px;}
.y95{bottom:621.016500px;}
.y16{bottom:621.253500px;}
.y53{bottom:634.906410px;}
.y8d{bottom:634.906500px;}
.y52{bottom:652.906410px;}
.y8c{bottom:652.906500px;}
.y51{bottom:670.906410px;}
.y8b{bottom:670.906500px;}
.y15{bottom:675.264000px;}
.y50{bottom:688.906410px;}
.y8a{bottom:688.906500px;}
.y14{bottom:693.264000px;}
.y4f{bottom:706.906410px;}
.y89{bottom:706.906500px;}
.y13{bottom:711.264000px;}
.y4e{bottom:724.906410px;}
.y88{bottom:724.906500px;}
.y12{bottom:729.264000px;}
.y4d{bottom:742.906410px;}
.y87{bottom:742.906500px;}
.y11{bottom:747.264000px;}
.y4c{bottom:760.906410px;}
.y86{bottom:760.906500px;}
.y10{bottom:765.264000px;}
.y4b{bottom:778.906410px;}
.y85{bottom:778.906500px;}
.yf{bottom:783.264000px;}
.y4a{bottom:796.906410px;}
.y84{bottom:796.906500px;}
.ye{bottom:801.264000px;}
.y49{bottom:814.906410px;}
.y83{bottom:814.906500px;}
.yd{bottom:819.264000px;}
.y48{bottom:832.906410px;}
.y82{bottom:832.906500px;}
.yc{bottom:837.264000px;}
.y47{bottom:850.906410px;}
.y92{bottom:850.906500px;}
.y46{bottom:868.906410px;}
.y81{bottom:868.906500px;}
.y93{bottom:877.834500px;}
.y45{bottom:886.906410px;}
.y80{bottom:886.906500px;}
.ya{bottom:888.570000px;}
.y44{bottom:904.906410px;}
.y7f{bottom:904.906500px;}
.ydd{bottom:921.489000px;}
.y43{bottom:922.906410px;}
.y7e{bottom:922.906500px;}
.y9{bottom:924.681000px;}
.ydc{bottom:939.489000px;}
.y42{bottom:940.906410px;}
.y7d{bottom:940.906500px;}
.y8{bottom:956.553000px;}
.ydb{bottom:957.489000px;}
.y41{bottom:958.906410px;}
.y7c{bottom:958.906500px;}
.yda{bottom:975.489000px;}
.y40{bottom:976.906410px;}
.y7b{bottom:976.906500px;}
.y7{bottom:979.797000px;}
.yd9{bottom:993.489000px;}
.y3f{bottom:994.906410px;}
.y7a{bottom:994.906500px;}
.yd8{bottom:1011.489000px;}
.y3e{bottom:1012.906410px;}
.y79{bottom:1012.906500px;}
.y6{bottom:1013.857500px;}
.yd7{bottom:1029.489000px;}
.y3d{bottom:1030.906410px;}
.y78{bottom:1030.906500px;}
.y5{bottom:1045.254000px;}
.yd6{bottom:1047.489000px;}
.y3c{bottom:1048.906410px;}
.y77{bottom:1048.906500px;}
.yd5{bottom:1065.489000px;}
.y3b{bottom:1066.906410px;}
.y76{bottom:1066.906500px;}
.y4{bottom:1078.330500px;}
.yd4{bottom:1083.489000px;}
.y3a{bottom:1084.906410px;}
.y75{bottom:1084.906500px;}
.yd3{bottom:1101.489000px;}
.y39{bottom:1102.906410px;}
.y74{bottom:1102.906500px;}
.yd2{bottom:1119.489000px;}
.y38{bottom:1120.906410px;}
.y73{bottom:1120.906500px;}
.y1{bottom:1126.089000px;}
.yd1{bottom:1137.489000px;}
.y37{bottom:1138.906410px;}
.y72{bottom:1138.906500px;}
.yd0{bottom:1155.489000px;}
.y36{bottom:1156.906410px;}
.y71{bottom:1156.906500px;}
.y3{bottom:1159.648950px;}
.ycf{bottom:1173.489000px;}
.y35{bottom:1174.906410px;}
.y70{bottom:1174.906500px;}
.y94{bottom:1175.472000px;}
.yce{bottom:1191.489000px;}
.y34{bottom:1192.906410px;}
.y6f{bottom:1192.906500px;}
.y31{bottom:1213.804500px;}
.hf{height:2.257620px;}
.h8{height:29.051344px;}
.h11{height:33.328125px;}
.h3{height:36.597656px;}
.h7{height:37.494141px;}
.h9{height:37.520508px;}
.ha{height:40.634766px;}
.he{height:40.664063px;}
.hc{height:41.660156px;}
.hd{height:41.689453px;}
.h10{height:44.149219px;}
.h6{height:44.730469px;}
.h4{height:48.761719px;}
.hb{height:48.796875px;}
.h2{height:50.466797px;}
.h5{height:65.062500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:787.140000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:54.000000px;}
.x6{left:55.139700px;}
.x5{left:56.729250px;}
.x7{left:63.794550px;}
.xd{left:81.000000px;}
.x9{left:82.204650px;}
.x8{left:90.541950px;}
.xb{left:94.960500px;}
.xc{left:182.583450px;}
.x1{left:329.232000px;}
.x2{left:373.110000px;}
.xa{left:455.457000px;}
.xe{left:482.457000px;}
.x3{left:746.911800px;}
@media print{
.v2{vertical-align:-18.647893pt;}
.v3{vertical-align:-6.341653pt;}
.v1{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-1.066667pt;}
.ls4{letter-spacing:-0.533333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.001013pt;}
.ls1{letter-spacing:5.487520pt;}
.ws2{word-spacing:-13.333333pt;}
.ws1{word-spacing:-12.000000pt;}
.wsba{word-spacing:-10.666667pt;}
.ws57{word-spacing:-4.160000pt;}
.ws78{word-spacing:-4.053333pt;}
.ws18{word-spacing:-3.413333pt;}
.wsa3{word-spacing:-2.933333pt;}
.ws79{word-spacing:-2.666667pt;}
.ws6d{word-spacing:-2.560000pt;}
.ws92{word-spacing:-2.506667pt;}
.ws93{word-spacing:-2.453333pt;}
.wsa4{word-spacing:-2.400000pt;}
.ws24{word-spacing:-2.293333pt;}
.ws5d{word-spacing:-2.240000pt;}
.wsa7{word-spacing:-2.186667pt;}
.wsbd{word-spacing:-2.133333pt;}
.ws63{word-spacing:-2.080000pt;}
.ws19{word-spacing:-2.026667pt;}
.ws77{word-spacing:-1.973333pt;}
.ws23{word-spacing:-1.920000pt;}
.ws8d{word-spacing:-1.813333pt;}
.ws28{word-spacing:-1.760000pt;}
.ws87{word-spacing:-1.706667pt;}
.wsb1{word-spacing:-1.653333pt;}
.wsa{word-spacing:-1.600000pt;}
.ws80{word-spacing:-1.546667pt;}
.ws3a{word-spacing:-1.493333pt;}
.ws86{word-spacing:-1.440000pt;}
.ws25{word-spacing:-1.386667pt;}
.ws2a{word-spacing:-1.333333pt;}
.ws89{word-spacing:-1.280000pt;}
.ws26{word-spacing:-1.226667pt;}
.ws1e{word-spacing:-1.173333pt;}
.ws5e{word-spacing:-1.120000pt;}
.wsad{word-spacing:-1.066667pt;}
.ws4{word-spacing:-1.056000pt;}
.ws53{word-spacing:-1.013333pt;}
.wsb8{word-spacing:-0.960000pt;}
.ws32{word-spacing:-0.906667pt;}
.ws52{word-spacing:-0.853333pt;}
.ws60{word-spacing:-0.800000pt;}
.ws82{word-spacing:-0.746667pt;}
.ws7{word-spacing:-0.693333pt;}
.ws12{word-spacing:-0.640000pt;}
.ws8e{word-spacing:-0.586667pt;}
.wsb7{word-spacing:-0.533333pt;}
.wse{word-spacing:-0.480000pt;}
.ws58{word-spacing:-0.426667pt;}
.ws3b{word-spacing:-0.373333pt;}
.ws30{word-spacing:-0.320000pt;}
.ws6c{word-spacing:-0.266667pt;}
.ws65{word-spacing:-0.213333pt;}
.ws44{word-spacing:-0.160000pt;}
.wsb{word-spacing:-0.106667pt;}
.ws7f{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.ws2b{word-spacing:0.053333pt;}
.ws1c{word-spacing:0.106667pt;}
.ws9e{word-spacing:0.160000pt;}
.ws6e{word-spacing:0.213333pt;}
.ws9a{word-spacing:0.266667pt;}
.ws66{word-spacing:0.320000pt;}
.ws4b{word-spacing:0.373333pt;}
.ws29{word-spacing:0.426667pt;}
.ws9f{word-spacing:0.533333pt;}
.ws68{word-spacing:0.586667pt;}
.ws8b{word-spacing:0.640000pt;}
.ws11{word-spacing:0.693333pt;}
.ws10{word-spacing:0.746667pt;}
.ws4f{word-spacing:0.800000pt;}
.wsc{word-spacing:0.853333pt;}
.ws7c{word-spacing:0.906667pt;}
.ws83{word-spacing:0.960000pt;}
.wsc1{word-spacing:1.013333pt;}
.wsb4{word-spacing:1.066667pt;}
.ws16{word-spacing:1.120000pt;}
.ws1d{word-spacing:1.173333pt;}
.ws51{word-spacing:1.226667pt;}
.ws59{word-spacing:1.280000pt;}
.ws20{word-spacing:1.386667pt;}
.ws56{word-spacing:1.493333pt;}
.ws1b{word-spacing:1.546667pt;}
.ws34{word-spacing:1.600000pt;}
.wsbf{word-spacing:1.653333pt;}
.ws64{word-spacing:1.760000pt;}
.ws7e{word-spacing:1.813333pt;}
.ws7d{word-spacing:1.866667pt;}
.ws5b{word-spacing:1.920000pt;}
.ws3f{word-spacing:1.973333pt;}
.wsa1{word-spacing:2.186667pt;}
.ws9c{word-spacing:2.293333pt;}
.ws72{word-spacing:2.346667pt;}
.ws9{word-spacing:2.400000pt;}
.ws2d{word-spacing:2.453333pt;}
.ws31{word-spacing:2.506667pt;}
.ws76{word-spacing:2.560000pt;}
.wsd{word-spacing:2.613333pt;}
.ws88{word-spacing:2.666667pt;}
.wsf{word-spacing:2.720000pt;}
.ws41{word-spacing:2.773333pt;}
.ws36{word-spacing:2.826667pt;}
.ws15{word-spacing:2.880000pt;}
.ws95{word-spacing:2.986667pt;}
.ws74{word-spacing:3.040000pt;}
.ws8f{word-spacing:3.093333pt;}
.ws43{word-spacing:3.146667pt;}
.ws54{word-spacing:3.200000pt;}
.ws67{word-spacing:3.253333pt;}
.ws8a{word-spacing:3.306667pt;}
.ws6f{word-spacing:3.413333pt;}
.ws5a{word-spacing:3.466667pt;}
.ws2f{word-spacing:3.520000pt;}
.ws55{word-spacing:3.573333pt;}
.ws8c{word-spacing:3.626667pt;}
.ws1f{word-spacing:3.680000pt;}
.ws14{word-spacing:3.733333pt;}
.wsb3{word-spacing:3.786667pt;}
.wsbb{word-spacing:3.797333pt;}
.ws91{word-spacing:3.840000pt;}
.ws17{word-spacing:3.946667pt;}
.ws39{word-spacing:4.000000pt;}
.ws96{word-spacing:4.053333pt;}
.ws97{word-spacing:4.106667pt;}
.ws6{word-spacing:4.128000pt;}
.ws21{word-spacing:4.213333pt;}
.ws5f{word-spacing:4.266667pt;}
.ws22{word-spacing:4.320000pt;}
.ws61{word-spacing:4.426667pt;}
.ws8{word-spacing:4.533333pt;}
.ws4e{word-spacing:4.693333pt;}
.ws9b{word-spacing:4.746667pt;}
.ws49{word-spacing:4.800000pt;}
.ws5{word-spacing:4.816000pt;}
.wsa2{word-spacing:4.853333pt;}
.ws7b{word-spacing:4.906667pt;}
.ws1a{word-spacing:4.960000pt;}
.ws3d{word-spacing:5.120000pt;}
.wsbc{word-spacing:5.173333pt;}
.ws2e{word-spacing:5.280000pt;}
.ws85{word-spacing:5.386667pt;}
.wsab{word-spacing:5.493333pt;}
.ws62{word-spacing:5.546667pt;}
.ws50{word-spacing:5.653333pt;}
.wsb9{word-spacing:5.706667pt;}
.ws9d{word-spacing:5.760000pt;}
.ws37{word-spacing:5.813333pt;}
.ws6b{word-spacing:5.866667pt;}
.ws99{word-spacing:5.973333pt;}
.ws4a{word-spacing:6.026667pt;}
.ws90{word-spacing:6.080000pt;}
.ws38{word-spacing:6.186667pt;}
.wsa6{word-spacing:6.293333pt;}
.ws3e{word-spacing:6.346667pt;}
.ws5c{word-spacing:6.400000pt;}
.ws84{word-spacing:6.560000pt;}
.ws71{word-spacing:6.666667pt;}
.ws7a{word-spacing:6.720000pt;}
.ws3c{word-spacing:6.826667pt;}
.ws45{word-spacing:6.880000pt;}
.ws69{word-spacing:6.933333pt;}
.ws2c{word-spacing:6.986667pt;}
.wsae{word-spacing:7.040000pt;}
.ws81{word-spacing:7.306667pt;}
.ws13{word-spacing:7.360000pt;}
.ws48{word-spacing:7.466667pt;}
.ws70{word-spacing:7.520000pt;}
.ws98{word-spacing:7.573333pt;}
.wsc0{word-spacing:7.626667pt;}
.ws4c{word-spacing:7.893333pt;}
.ws27{word-spacing:7.946667pt;}
.wsbe{word-spacing:8.000000pt;}
.ws46{word-spacing:8.533333pt;}
.ws94{word-spacing:8.853333pt;}
.ws40{word-spacing:9.013333pt;}
.wsb0{word-spacing:9.173333pt;}
.ws75{word-spacing:9.280000pt;}
.wsa0{word-spacing:9.493333pt;}
.ws35{word-spacing:10.133333pt;}
.ws73{word-spacing:10.293333pt;}
.wsa5{word-spacing:10.400000pt;}
.wsb5{word-spacing:10.560000pt;}
.ws42{word-spacing:10.880000pt;}
.ws4d{word-spacing:11.413333pt;}
.ws47{word-spacing:12.320000pt;}
.ws6a{word-spacing:13.706667pt;}
.wsa9{word-spacing:14.133333pt;}
.wsb2{word-spacing:15.840000pt;}
.wsa8{word-spacing:15.946667pt;}
.wsaf{word-spacing:16.106667pt;}
.wsb6{word-spacing:17.173333pt;}
.wsaa{word-spacing:17.920000pt;}
.wsac{word-spacing:18.186667pt;}
.ws0{word-spacing:357.980967pt;}
.ws33{word-spacing:365.868967pt;}
._10{margin-left:-1475.424000pt;}
._e{margin-left:-9.669168pt;}
._c{margin-left:-8.303333pt;}
._f{margin-left:-6.944997pt;}
._3{margin-left:-5.920907pt;}
._2{margin-left:-4.231838pt;}
._0{margin-left:-2.626301pt;}
._1{margin-left:-0.889061pt;}
._6{width:1.226272pt;}
._4{width:2.314560pt;}
._5{width:3.401669pt;}
._9{width:4.330400pt;}
._b{width:5.392101pt;}
._d{width:6.916213pt;}
._8{width:7.968747pt;}
._a{width:9.215840pt;}
._13{width:10.656267pt;}
._12{width:11.600000pt;}
._17{width:13.381227pt;}
._19{width:14.708320pt;}
._15{width:16.000000pt;}
._18{width:17.600000pt;}
._16{width:18.626301pt;}
._11{width:42.666667pt;}
._14{width:43.733333pt;}
._7{width:657.338667pt;}
.fs4{font-size:32.648000pt;}
.fs8{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:56.000000pt;}
.fs0{font-size:58.666667pt;}
.fs7{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.y32{bottom:-11.912000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:60.051067pt;}
.yb{bottom:62.384000pt;}
.y33{bottom:65.748400pt;}
.yaf{bottom:92.550667pt;}
.ycd{bottom:95.678667pt;}
.ycb{bottom:100.361253pt;}
.y6e{bottom:100.361333pt;}
.yae{bottom:108.550667pt;}
.y30{bottom:110.976000pt;}
.ycc{bottom:111.678667pt;}
.yca{bottom:116.361253pt;}
.y6d{bottom:116.361333pt;}
.yad{bottom:124.550667pt;}
.y2f{bottom:126.976000pt;}
.yc9{bottom:132.361253pt;}
.y6c{bottom:132.361333pt;}
.yac{bottom:140.550667pt;}
.y2e{bottom:142.976000pt;}
.yc8{bottom:148.361253pt;}
.y6b{bottom:148.361333pt;}
.yab{bottom:156.550667pt;}
.y2d{bottom:158.976000pt;}
.yc7{bottom:164.361253pt;}
.y6a{bottom:164.361333pt;}
.yaa{bottom:172.550667pt;}
.y2c{bottom:174.976000pt;}
.yc6{bottom:180.361253pt;}
.y69{bottom:180.361333pt;}
.ya9{bottom:188.550667pt;}
.y2b{bottom:190.976000pt;}
.yc5{bottom:196.361253pt;}
.y68{bottom:196.361333pt;}
.ya8{bottom:204.550667pt;}
.y2a{bottom:206.976000pt;}
.yc4{bottom:212.361253pt;}
.y67{bottom:212.361333pt;}
.ya7{bottom:220.550667pt;}
.y29{bottom:222.976000pt;}
.yc3{bottom:228.361253pt;}
.y66{bottom:228.361333pt;}
.yb0{bottom:236.550667pt;}
.y28{bottom:238.976000pt;}
.yc2{bottom:244.361253pt;}
.y91{bottom:244.361333pt;}
.ya6{bottom:252.550667pt;}
.y27{bottom:254.976000pt;}
.yc1{bottom:260.361253pt;}
.y65{bottom:260.361333pt;}
.ya5{bottom:268.550667pt;}
.y26{bottom:270.976000pt;}
.yc0{bottom:276.361253pt;}
.y64{bottom:276.361333pt;}
.ya4{bottom:284.550667pt;}
.y25{bottom:286.976000pt;}
.ybf{bottom:292.361253pt;}
.y63{bottom:292.361333pt;}
.ya3{bottom:300.550667pt;}
.y24{bottom:302.976000pt;}
.ybe{bottom:308.361253pt;}
.y62{bottom:308.361333pt;}
.ya2{bottom:316.550667pt;}
.y23{bottom:318.976000pt;}
.ybd{bottom:324.361253pt;}
.y61{bottom:324.361333pt;}
.ya1{bottom:332.550667pt;}
.y22{bottom:334.976000pt;}
.ybc{bottom:340.361253pt;}
.y60{bottom:340.361333pt;}
.ya0{bottom:348.550667pt;}
.y21{bottom:350.976000pt;}
.ybb{bottom:356.361253pt;}
.y5f{bottom:356.361333pt;}
.y9f{bottom:364.550667pt;}
.y20{bottom:366.976000pt;}
.yba{bottom:372.361253pt;}
.y5e{bottom:372.361333pt;}
.y9e{bottom:380.550667pt;}
.y1f{bottom:382.976000pt;}
.yb9{bottom:388.361253pt;}
.y5d{bottom:388.361333pt;}
.y9d{bottom:396.550667pt;}
.y1e{bottom:398.976000pt;}
.yb8{bottom:404.361253pt;}
.y5c{bottom:404.361333pt;}
.y9c{bottom:412.550667pt;}
.y1d{bottom:414.976000pt;}
.yb7{bottom:420.361253pt;}
.y5b{bottom:420.361333pt;}
.y9b{bottom:428.550667pt;}
.y1c{bottom:430.976000pt;}
.yb6{bottom:436.361253pt;}
.y5a{bottom:436.361333pt;}
.y9a{bottom:444.550667pt;}
.y1b{bottom:446.976000pt;}
.yb5{bottom:452.361253pt;}
.y59{bottom:452.361333pt;}
.y99{bottom:460.550667pt;}
.y1a{bottom:462.976000pt;}
.yb4{bottom:468.361253pt;}
.y58{bottom:468.361333pt;}
.y98{bottom:476.550667pt;}
.y19{bottom:478.976000pt;}
.yb3{bottom:484.361253pt;}
.y57{bottom:484.361333pt;}
.y97{bottom:492.550667pt;}
.y18{bottom:494.976000pt;}
.yb2{bottom:500.361253pt;}
.y56{bottom:500.361333pt;}
.y96{bottom:508.550667pt;}
.y17{bottom:510.976000pt;}
.yb1{bottom:516.361253pt;}
.y90{bottom:516.361333pt;}
.y55{bottom:532.361253pt;}
.y8f{bottom:532.361333pt;}
.y54{bottom:548.361253pt;}
.y8e{bottom:548.361333pt;}
.y95{bottom:552.014667pt;}
.y16{bottom:552.225333pt;}
.y53{bottom:564.361253pt;}
.y8d{bottom:564.361333pt;}
.y52{bottom:580.361253pt;}
.y8c{bottom:580.361333pt;}
.y51{bottom:596.361253pt;}
.y8b{bottom:596.361333pt;}
.y15{bottom:600.234667pt;}
.y50{bottom:612.361253pt;}
.y8a{bottom:612.361333pt;}
.y14{bottom:616.234667pt;}
.y4f{bottom:628.361253pt;}
.y89{bottom:628.361333pt;}
.y13{bottom:632.234667pt;}
.y4e{bottom:644.361253pt;}
.y88{bottom:644.361333pt;}
.y12{bottom:648.234667pt;}
.y4d{bottom:660.361253pt;}
.y87{bottom:660.361333pt;}
.y11{bottom:664.234667pt;}
.y4c{bottom:676.361253pt;}
.y86{bottom:676.361333pt;}
.y10{bottom:680.234667pt;}
.y4b{bottom:692.361253pt;}
.y85{bottom:692.361333pt;}
.yf{bottom:696.234667pt;}
.y4a{bottom:708.361253pt;}
.y84{bottom:708.361333pt;}
.ye{bottom:712.234667pt;}
.y49{bottom:724.361253pt;}
.y83{bottom:724.361333pt;}
.yd{bottom:728.234667pt;}
.y48{bottom:740.361253pt;}
.y82{bottom:740.361333pt;}
.yc{bottom:744.234667pt;}
.y47{bottom:756.361253pt;}
.y92{bottom:756.361333pt;}
.y46{bottom:772.361253pt;}
.y81{bottom:772.361333pt;}
.y93{bottom:780.297333pt;}
.y45{bottom:788.361253pt;}
.y80{bottom:788.361333pt;}
.ya{bottom:789.840000pt;}
.y44{bottom:804.361253pt;}
.y7f{bottom:804.361333pt;}
.ydd{bottom:819.101333pt;}
.y43{bottom:820.361253pt;}
.y7e{bottom:820.361333pt;}
.y9{bottom:821.938667pt;}
.ydc{bottom:835.101333pt;}
.y42{bottom:836.361253pt;}
.y7d{bottom:836.361333pt;}
.y8{bottom:850.269333pt;}
.ydb{bottom:851.101333pt;}
.y41{bottom:852.361253pt;}
.y7c{bottom:852.361333pt;}
.yda{bottom:867.101333pt;}
.y40{bottom:868.361253pt;}
.y7b{bottom:868.361333pt;}
.y7{bottom:870.930667pt;}
.yd9{bottom:883.101333pt;}
.y3f{bottom:884.361253pt;}
.y7a{bottom:884.361333pt;}
.yd8{bottom:899.101333pt;}
.y3e{bottom:900.361253pt;}
.y79{bottom:900.361333pt;}
.y6{bottom:901.206667pt;}
.yd7{bottom:915.101333pt;}
.y3d{bottom:916.361253pt;}
.y78{bottom:916.361333pt;}
.y5{bottom:929.114667pt;}
.yd6{bottom:931.101333pt;}
.y3c{bottom:932.361253pt;}
.y77{bottom:932.361333pt;}
.yd5{bottom:947.101333pt;}
.y3b{bottom:948.361253pt;}
.y76{bottom:948.361333pt;}
.y4{bottom:958.516000pt;}
.yd4{bottom:963.101333pt;}
.y3a{bottom:964.361253pt;}
.y75{bottom:964.361333pt;}
.yd3{bottom:979.101333pt;}
.y39{bottom:980.361253pt;}
.y74{bottom:980.361333pt;}
.yd2{bottom:995.101333pt;}
.y38{bottom:996.361253pt;}
.y73{bottom:996.361333pt;}
.y1{bottom:1000.968000pt;}
.yd1{bottom:1011.101333pt;}
.y37{bottom:1012.361253pt;}
.y72{bottom:1012.361333pt;}
.yd0{bottom:1027.101333pt;}
.y36{bottom:1028.361253pt;}
.y71{bottom:1028.361333pt;}
.y3{bottom:1030.799067pt;}
.ycf{bottom:1043.101333pt;}
.y35{bottom:1044.361253pt;}
.y70{bottom:1044.361333pt;}
.y94{bottom:1044.864000pt;}
.yce{bottom:1059.101333pt;}
.y34{bottom:1060.361253pt;}
.y6f{bottom:1060.361333pt;}
.y31{bottom:1078.937333pt;}
.hf{height:2.006773pt;}
.h8{height:25.823417pt;}
.h11{height:29.625000pt;}
.h3{height:32.531250pt;}
.h7{height:33.328125pt;}
.h9{height:33.351563pt;}
.ha{height:36.119792pt;}
.he{height:36.145833pt;}
.hc{height:37.031250pt;}
.hd{height:37.057292pt;}
.h10{height:39.243750pt;}
.h6{height:39.760417pt;}
.h4{height:43.343750pt;}
.hb{height:43.375000pt;}
.h2{height:44.859375pt;}
.h5{height:57.833333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:699.680000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:48.000000pt;}
.x6{left:49.013067pt;}
.x5{left:50.426000pt;}
.x7{left:56.706267pt;}
.xd{left:72.000000pt;}
.x9{left:73.070800pt;}
.x8{left:80.481733pt;}
.xb{left:84.409333pt;}
.xc{left:162.296400pt;}
.x1{left:292.650667pt;}
.x2{left:331.653333pt;}
.xa{left:404.850667pt;}
.xe{left:428.850667pt;}
.x3{left:663.921600pt;}
}




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