
    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_db13cd0d71a98e4b585ebc1b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_1a0ddb9efb298be66841ddc8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c7a2e84038a7a7b945326915.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f8d4dc179532689330ab2bce.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.046387;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_b0f4a005f73af44b76fd20f5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_c3375e7c477df631881dc6f8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.940918;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_2e07c136ef251a230d675eeb.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_92a6e5a5e648d22eaf17fa38.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5826506d201391f96ca6a8f9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-33.120000px;}
.v5{vertical-align:-15.120000px;}
.v3{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:9.360000px;}
.v1{vertical-align:33.120000px;}
.lsb{letter-spacing:-2.160000px;}
.ls33{letter-spacing:-1.656000px;}
.ls25{letter-spacing:-1.440000px;}
.ls2a{letter-spacing:-0.942000px;}
.ls2d{letter-spacing:-0.936000px;}
.ls26{letter-spacing:-0.792000px;}
.ls11{letter-spacing:-0.720000px;}
.ls17{letter-spacing:-0.648000px;}
.ls22{letter-spacing:-0.576000px;}
.ls6{letter-spacing:-0.540000px;}
.ls1f{letter-spacing:-0.504000px;}
.ls1e{letter-spacing:-0.432000px;}
.ls40{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.223800px;}
.lsd{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.144000px;}
.ls23{letter-spacing:-0.072000px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.003000px;}
.ls1{letter-spacing:0.010560px;}
.ls3a{letter-spacing:0.018720px;}
.ls8{letter-spacing:0.072000px;}
.ls39{letter-spacing:0.090000px;}
.ls10{letter-spacing:0.135360px;}
.ls35{letter-spacing:0.135600px;}
.lsa{letter-spacing:0.144000px;}
.ls1c{letter-spacing:0.152640px;}
.ls3b{letter-spacing:0.180000px;}
.ls43{letter-spacing:0.181200px;}
.ls4{letter-spacing:0.181440px;}
.ls2e{letter-spacing:0.216000px;}
.ls29{letter-spacing:0.264000px;}
.ls3c{letter-spacing:0.270000px;}
.ls18{letter-spacing:0.288000px;}
.ls38{letter-spacing:0.305280px;}
.ls34{letter-spacing:0.324000px;}
.ls41{letter-spacing:0.359040px;}
.ls2{letter-spacing:0.360000px;}
.ls3d{letter-spacing:0.378720px;}
.ls20{letter-spacing:0.432000px;}
.ls28{letter-spacing:0.480000px;}
.ls2b{letter-spacing:0.504000px;}
.ls3{letter-spacing:0.538560px;}
.lsf{letter-spacing:0.576000px;}
.ls9{letter-spacing:0.720000px;}
.ls16{letter-spacing:0.792000px;}
.ls13{letter-spacing:0.864000px;}
.ls3e{letter-spacing:0.990000px;}
.ls19{letter-spacing:1.074000px;}
.ls1d{letter-spacing:1.440000px;}
.ls2f{letter-spacing:1.512000px;}
.ls36{letter-spacing:1.584000px;}
.ls24{letter-spacing:1.770240px;}
.lse{letter-spacing:1.794000px;}
.ls21{letter-spacing:1.794240px;}
.ls15{letter-spacing:2.514240px;}
.ls27{letter-spacing:2.520000px;}
.ls3f{letter-spacing:2.880000px;}
.ls2c{letter-spacing:4.320000px;}
.ls37{letter-spacing:4.860000px;}
.ls31{letter-spacing:5.040000px;}
.ls1b{letter-spacing:7.380000px;}
.ls1a{letter-spacing:7.920000px;}
.ls30{letter-spacing:13.680000px;}
.ls32{letter-spacing:26.640000px;}
.ls42{letter-spacing:48.960000px;}
.ls14{letter-spacing:73.560000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws33{word-spacing:-90.990000px;}
.ws31{word-spacing:-90.270000px;}
.ws32{word-spacing:-90.000000px;}
.ws2a{word-spacing:-73.512000px;}
.ws1e{word-spacing:-72.000000px;}
.ws11{word-spacing:-68.034000px;}
.ws18{word-spacing:-67.314000px;}
.ws2c{word-spacing:-66.375600px;}
.ws10{word-spacing:-66.240000px;}
.ws27{word-spacing:-59.760000px;}
.ws2e{word-spacing:-41.760000px;}
.ws2f{word-spacing:-23.940000px;}
.ws2d{word-spacing:-19.584000px;}
.ws1a{word-spacing:-19.440000px;}
.ws15{word-spacing:-18.864000px;}
.ws16{word-spacing:-18.792000px;}
.ws19{word-spacing:-18.720000px;}
.ws1f{word-spacing:-18.576000px;}
.ws24{word-spacing:-18.432000px;}
.ws17{word-spacing:-18.288000px;}
.ws29{word-spacing:-18.216000px;}
.ws6{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws21{word-spacing:-17.928000px;}
.ws14{word-spacing:-17.856000px;}
.ws20{word-spacing:-17.784000px;}
.ws12{word-spacing:-17.712000px;}
.ws1b{word-spacing:-17.568000px;}
.ws1d{word-spacing:-17.496000px;}
.ws26{word-spacing:-17.424000px;}
.ws23{word-spacing:-17.208000px;}
.ws28{word-spacing:-17.064000px;}
.ws22{word-spacing:-16.560000px;}
.ws2b{word-spacing:-16.344000px;}
.wsf{word-spacing:-15.840000px;}
.ws30{word-spacing:-15.300000px;}
.ws7{word-spacing:-13.344000px;}
.ws1c{word-spacing:-12.420000px;}
.ws0{word-spacing:-12.060000px;}
.ws4{word-spacing:-11.836200px;}
.ws34{word-spacing:-11.700000px;}
.ws2{word-spacing:-11.520000px;}
.ws25{word-spacing:-11.118000px;}
.wsc{word-spacing:-0.648000px;}
.ws9{word-spacing:-0.576000px;}
.wsd{word-spacing:-0.504000px;}
.wsa{word-spacing:-0.288000px;}
.ws8{word-spacing:0.000000px;}
.ws3{word-spacing:0.012024px;}
.wsb{word-spacing:0.216000px;}
.wse{word-spacing:0.900000px;}
.ws13{word-spacing:10.080000px;}
._1d{margin-left:-3.600120px;}
._2{margin-left:-2.172000px;}
._0{margin-left:-1.080000px;}
._1{width:1.440000px;}
._7{width:2.448000px;}
._8{width:3.468000px;}
._12{width:5.292024px;}
._9{width:6.552000px;}
._a{width:7.775976px;}
._f{width:9.012024px;}
._10{width:10.344024px;}
._13{width:11.376000px;}
._14{width:12.672000px;}
._16{width:13.728000px;}
._17{width:14.756160px;}
._1e{width:15.816000px;}
._e{width:16.848000px;}
._3{width:19.236000px;}
._6{width:21.096000px;}
._5{width:22.248000px;}
._11{width:23.616048px;}
._1a{width:24.665184px;}
._c{width:25.704000px;}
._d{width:26.724024px;}
._1f{width:27.899976px;}
._18{width:29.352024px;}
._19{width:30.600000px;}
._23{width:32.328000px;}
._4{width:34.056000px;}
._15{width:35.784000px;}
._27{width:36.792000px;}
._24{width:37.848024px;}
._25{width:39.035952px;}
._21{width:41.664000px;}
._22{width:43.188000px;}
._2b{width:46.368000px;}
._29{width:48.168000px;}
._28{width:50.472000px;}
._2a{width:55.584000px;}
._26{width:80.256000px;}
._1c{width:83.543928px;}
._1b{width:84.720024px;}
._b{width:87.408000px;}
._20{width:222.660000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fs2{font-size:48.000000px;}
.fs1{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fsa{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:81.360000px;}
.fs9{font-size:90.000000px;}
.fs8{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yb4{bottom:4.140000px;}
.y2{bottom:4.500000px;}
.yc3{bottom:4.530000px;}
.ybe{bottom:5.400000px;}
.yc4{bottom:5.430000px;}
.yb6{bottom:5.580000px;}
.yd8{bottom:5.760000px;}
.yb2{bottom:5.940000px;}
.ycd{bottom:7.740000px;}
.yda{bottom:36.936000px;}
.y1{bottom:53.856000px;}
.yd7{bottom:104.796000px;}
.ydb{bottom:108.216000px;}
.yd9{bottom:122.796000px;}
.y63{bottom:128.016000px;}
.y50{bottom:129.996000px;}
.y3c{bottom:131.976000px;}
.yb0{bottom:132.156000px;}
.yae{bottom:152.850000px;}
.ydc{bottom:155.370000px;}
.y7b{bottom:156.990000px;}
.y62{bottom:158.970000px;}
.y69{bottom:160.770000px;}
.y4f{bottom:161.130000px;}
.y3b{bottom:163.110000px;}
.yad{bottom:173.550000px;}
.y7a{bottom:188.130000px;}
.y61{bottom:190.110000px;}
.y68{bottom:191.730000px;}
.y4e{bottom:192.090000px;}
.y80{bottom:192.810000px;}
.y3a{bottom:194.070000px;}
.yac{bottom:194.250000px;}
.yab{bottom:214.950000px;}
.y79{bottom:219.090000px;}
.y60{bottom:221.070000px;}
.y4d{bottom:223.230000px;}
.y40{bottom:224.850000px;}
.y39{bottom:225.210000px;}
.yaa{bottom:235.650000px;}
.y78{bottom:250.230000px;}
.y5f{bottom:252.210000px;}
.y4c{bottom:254.190000px;}
.y7e{bottom:255.810000px;}
.y38{bottom:256.170000px;}
.ya9{bottom:256.350000px;}
.ya8{bottom:277.095000px;}
.y77{bottom:281.235000px;}
.y5e{bottom:283.215000px;}
.y4b{bottom:285.375000px;}
.y37{bottom:287.355000px;}
.ya7{bottom:297.795000px;}
.y76{bottom:312.375000px;}
.y5d{bottom:314.355000px;}
.y67{bottom:315.975000px;}
.y4a{bottom:316.335000px;}
.y36{bottom:318.315000px;}
.ya6{bottom:318.495000px;}
.ya5{bottom:339.195000px;}
.y75{bottom:343.335000px;}
.y5c{bottom:345.315000px;}
.ycb{bottom:346.575000px;}
.y49{bottom:347.475000px;}
.y35{bottom:349.455000px;}
.ya4{bottom:359.895000px;}
.yca{bottom:367.275000px;}
.y74{bottom:373.935000px;}
.y5b{bottom:376.455000px;}
.y48{bottom:378.435000px;}
.y7f{bottom:380.055000px;}
.y34{bottom:380.415000px;}
.ya3{bottom:380.595000px;}
.yc9{bottom:387.975000px;}
.ya2{bottom:401.295000px;}
.y73{bottom:405.795000px;}
.y5a{bottom:407.415000px;}
.yc8{bottom:408.675000px;}
.y47{bottom:409.575000px;}
.y82{bottom:411.195000px;}
.y33{bottom:411.555000px;}
.y19{bottom:415.155000px;}
.ya1{bottom:421.995000px;}
.yc7{bottom:429.375000px;}
.y18{bottom:435.855000px;}
.y59{bottom:438.555000px;}
.y46{bottom:440.175000px;}
.y66{bottom:440.535000px;}
.yd6{bottom:442.335000px;}
.y32{bottom:442.515000px;}
.y30{bottom:442.695000px;}
.yc6{bottom:450.795000px;}
.y17{bottom:456.555000px;}
.ya0{bottom:463.395000px;}
.y58{bottom:469.515000px;}
.y72{bottom:470.235000px;}
.y45{bottom:471.495000px;}
.yc5{bottom:472.215000px;}
.y31{bottom:473.655000px;}
.y16{bottom:477.255000px;}
.y9f{bottom:484.095000px;}
.y15{bottom:497.955000px;}
.y57{bottom:500.655000px;}
.y44{bottom:502.635000px;}
.y65{bottom:503.355000px;}
.y3f{bottom:504.255000px;}
.y2f{bottom:504.615000px;}
.y9e{bottom:504.795000px;}
.y14{bottom:518.655000px;}
.yc2{bottom:522.255000px;}
.y9d{bottom:525.495000px;}
.y56{bottom:531.645000px;}
.y71{bottom:533.625000px;}
.y6a{bottom:534.165000px;}
.y43{bottom:534.525000px;}
.y3e{bottom:535.425000px;}
.y2e{bottom:535.785000px;}
.y13{bottom:539.385000px;}
.yc1{bottom:542.985000px;}
.y9c{bottom:546.225000px;}
.y55{bottom:562.785000px;}
.yc0{bottom:563.685000px;}
.y70{bottom:564.765000px;}
.ye4{bottom:566.565000px;}
.y2d{bottom:566.745000px;}
.y9b{bottom:566.925000px;}
.ybf{bottom:584.385000px;}
.y9a{bottom:587.625000px;}
.y54{bottom:593.745000px;}
.y6f{bottom:595.725000px;}
.y2c{bottom:597.885000px;}
.ybd{bottom:605.085000px;}
.y99{bottom:608.325000px;}
.y53{bottom:625.605000px;}
.ybc{bottom:626.505000px;}
.y6e{bottom:626.865000px;}
.y7d{bottom:628.485000px;}
.yd5{bottom:628.665000px;}
.y2b{bottom:628.845000px;}
.y98{bottom:629.025000px;}
.y12{bottom:630.825000px;}
.y42{bottom:637.125000px;}
.ye5{bottom:641.265000px;}
.ybb{bottom:647.925000px;}
.y97{bottom:649.725000px;}
.y11{bottom:651.525000px;}
.y6d{bottom:657.825000px;}
.y52{bottom:658.725000px;}
.y2a{bottom:659.985000px;}
.y96{bottom:670.425000px;}
.y10{bottom:672.225000px;}
.y6c{bottom:688.965000px;}
.y29{bottom:690.945000px;}
.y95{bottom:691.125000px;}
.yba{bottom:697.965000px;}
.y94{bottom:711.825000px;}
.yb9{bottom:718.665000px;}
.ye3{bottom:720.105000px;}
.y6b{bottom:720.465000px;}
.yf{bottom:721.905000px;}
.y28{bottom:722.085000px;}
.y93{bottom:732.525000px;}
.yb8{bottom:739.365000px;}
.yd4{bottom:752.865000px;}
.y27{bottom:753.045000px;}
.y92{bottom:753.225000px;}
.yb7{bottom:760.065000px;}
.y91{bottom:773.925000px;}
.yb5{bottom:780.765000px;}
.yd1{bottom:781.485000px;}
.y81{bottom:783.825000px;}
.y26{bottom:784.185000px;}
.y90{bottom:794.670000px;}
.ye{bottom:796.470000px;}
.yb3{bottom:802.230000px;}
.yec{bottom:810.150000px;}
.y41{bottom:814.830000px;}
.y25{bottom:815.190000px;}
.y8f{bottom:815.370000px;}
.yd0{bottom:822.930000px;}
.yb1{bottom:823.650000px;}
.yd{bottom:825.450000px;}
.yeb{bottom:832.290000px;}
.y8e{bottom:836.070000px;}
.yc{bottom:837.870000px;}
.ycf{bottom:843.630000px;}
.y24{bottom:846.330000px;}
.yea{bottom:852.810000px;}
.y8d{bottom:856.770000px;}
.yce{bottom:864.330000px;}
.ye2{bottom:865.050000px;}
.yb{bottom:866.850000px;}
.ye9{bottom:874.950000px;}
.yd3{bottom:877.110000px;}
.y23{bottom:877.290000px;}
.y8c{bottom:877.470000px;}
.ycc{bottom:885.750000px;}
.ya{bottom:887.550000px;}
.ye8{bottom:895.470000px;}
.y8b{bottom:898.170000px;}
.y9{bottom:899.970000px;}
.y22{bottom:908.430000px;}
.ye7{bottom:917.430000px;}
.y8a{bottom:918.870000px;}
.ye1{bottom:927.150000px;}
.y8{bottom:928.950000px;}
.y51{bottom:939.030000px;}
.ye6{bottom:939.210000px;}
.y21{bottom:939.390000px;}
.y89{bottom:939.570000px;}
.y7{bottom:955.187100px;}
.ye0{bottom:959.910000px;}
.y88{bottom:960.270000px;}
.y7c{bottom:970.170000px;}
.y20{bottom:970.530000px;}
.y6{bottom:975.887100px;}
.ydf{bottom:980.610000px;}
.y87{bottom:980.970000px;}
.y5{bottom:996.586500px;}
.y64{bottom:1001.130000px;}
.yde{bottom:1001.310000px;}
.y1f{bottom:1001.490000px;}
.y86{bottom:1001.670000px;}
.yd2{bottom:1022.010000px;}
.y85{bottom:1022.370000px;}
.y1e{bottom:1032.630000px;}
.y4{bottom:1038.876000px;}
.ydd{bottom:1042.710000px;}
.y84{bottom:1043.070000px;}
.y3{bottom:1059.606000px;}
.y1d{bottom:1063.260000px;}
.y83{bottom:1063.440000px;}
.y3d{bottom:1063.620000px;}
.yaf{bottom:1063.800000px;}
.y1c{bottom:1132.461000px;}
.y1b{bottom:1146.861000px;}
.y1a{bottom:1161.261000px;}
.h1{height:20.700000px;}
.hf{height:20.736000px;}
.hd{height:27.900000px;}
.h13{height:28.080000px;}
.h8{height:34.945312px;}
.h7{height:35.062500px;}
.h6{height:47.344922px;}
.h5{height:48.616875px;}
.h10{height:58.651172px;}
.h11{height:60.226875px;}
.h2{height:70.664062px;}
.h3{height:72.562500px;}
.h9{height:74.953125px;}
.hc{height:79.850391px;}
.ha{height:80.464922px;}
.hb{height:80.644922px;}
.h4{height:81.736875px;}
.he{height:93.983203px;}
.h12{height:96.508125px;}
.h0{height:1188.000000px;}
.w1{width:9.000000px;}
.w2{width:18.036000px;}
.w13{width:94.356000px;}
.w4{width:99.180000px;}
.w9{width:99.720000px;}
.wf{width:99.900000px;}
.w1a{width:107.820000px;}
.w19{width:108.000000px;}
.w1b{width:108.036000px;}
.w15{width:123.516000px;}
.w16{width:123.696000px;}
.w17{width:124.596000px;}
.w14{width:133.560000px;}
.w11{width:140.940000px;}
.w18{width:141.156000px;}
.wa{width:144.036000px;}
.wc{width:144.540000px;}
.wb{width:144.576000px;}
.w5{width:145.296000px;}
.w7{width:145.440000px;}
.w6{width:145.476000px;}
.wd{width:148.356000px;}
.w10{width:148.896000px;}
.w12{width:154.110000px;}
.w3{width:581.325000px;}
.w8{width:581.505000px;}
.we{width:588.525000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x38{left:9.180000px;}
.x2f{left:10.620000px;}
.x2e{left:12.465000px;}
.x21{left:14.760000px;}
.x25{left:16.020000px;}
.x29{left:18.540000px;}
.x28{left:19.800000px;}
.x26{left:21.600000px;}
.x17{left:23.040000px;}
.x27{left:24.120000px;}
.x22{left:25.380000px;}
.x30{left:27.180000px;}
.x20{left:29.700000px;}
.x24{left:31.680000px;}
.x1f{left:33.474000px;}
.x3f{left:35.460000px;}
.x23{left:37.974000px;}
.x3c{left:41.610000px;}
.x18{left:42.660000px;}
.x36{left:55.440000px;}
.x1c{left:57.600000px;}
.x1e{left:58.680000px;}
.x1a{left:60.660000px;}
.x35{left:62.460000px;}
.xd{left:108.036000px;}
.x10{left:113.076000px;}
.x33{left:114.876000px;}
.x47{left:117.396000px;}
.x16{left:118.836000px;}
.xe{left:124.329000px;}
.x48{left:126.576000px;}
.xb{left:127.656000px;}
.x11{left:129.276000px;}
.x45{left:131.976000px;}
.xf{left:133.596000px;}
.x4c{left:135.576000px;}
.x5{left:136.938750px;}
.xc{left:138.276000px;}
.x2{left:139.516500px;}
.x4{left:143.598000px;}
.x9{left:151.410000px;}
.x13{left:161.130000px;}
.x8{left:187.410000px;}
.x39{left:212.250000px;}
.x31{left:214.770000px;}
.x14{left:218.010000px;}
.x7{left:245.370000px;}
.x32{left:260.355000px;}
.x15{left:267.555000px;}
.x2a{left:271.335000px;}
.x3{left:279.382500px;}
.x3a{left:306.615000px;}
.x4b{left:323.355000px;}
.x34{left:359.355000px;}
.xa{left:360.795000px;}
.x2b{left:362.235000px;}
.x19{left:363.315000px;}
.x49{left:385.455000px;}
.x6{left:417.954750px;}
.x46{left:421.635000px;}
.x3b{left:440.175000px;}
.x12{left:450.075000px;}
.x1{left:454.575000px;}
.x2c{left:506.805000px;}
.x1b{left:508.605000px;}
.x3d{left:563.685000px;}
.x3e{left:564.765000px;}
.x44{left:627.045000px;}
.x37{left:649.185000px;}
.x2d{left:651.345000px;}
.x1d{left:653.910000px;}
.x4a{left:678.750000px;}
.x43{left:680.910000px;}
.x41{left:699.630000px;}
.x42{left:702.510000px;}
.x40{left:717.630000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v5{vertical-align:-13.440000pt;}
.v3{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:8.320000pt;}
.v1{vertical-align:29.440000pt;}
.lsb{letter-spacing:-1.920000pt;}
.ls33{letter-spacing:-1.472000pt;}
.ls25{letter-spacing:-1.280000pt;}
.ls2a{letter-spacing:-0.837333pt;}
.ls2d{letter-spacing:-0.832000pt;}
.ls26{letter-spacing:-0.704000pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls17{letter-spacing:-0.576000pt;}
.ls22{letter-spacing:-0.512000pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls1f{letter-spacing:-0.448000pt;}
.ls1e{letter-spacing:-0.384000pt;}
.ls40{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.198933pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls23{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.002667pt;}
.ls1{letter-spacing:0.009387pt;}
.ls3a{letter-spacing:0.016640pt;}
.ls8{letter-spacing:0.064000pt;}
.ls39{letter-spacing:0.080000pt;}
.ls10{letter-spacing:0.120320pt;}
.ls35{letter-spacing:0.120533pt;}
.lsa{letter-spacing:0.128000pt;}
.ls1c{letter-spacing:0.135680pt;}
.ls3b{letter-spacing:0.160000pt;}
.ls43{letter-spacing:0.161067pt;}
.ls4{letter-spacing:0.161280pt;}
.ls2e{letter-spacing:0.192000pt;}
.ls29{letter-spacing:0.234667pt;}
.ls3c{letter-spacing:0.240000pt;}
.ls18{letter-spacing:0.256000pt;}
.ls38{letter-spacing:0.271360pt;}
.ls34{letter-spacing:0.288000pt;}
.ls41{letter-spacing:0.319147pt;}
.ls2{letter-spacing:0.320000pt;}
.ls3d{letter-spacing:0.336640pt;}
.ls20{letter-spacing:0.384000pt;}
.ls28{letter-spacing:0.426667pt;}
.ls2b{letter-spacing:0.448000pt;}
.ls3{letter-spacing:0.478720pt;}
.lsf{letter-spacing:0.512000pt;}
.ls9{letter-spacing:0.640000pt;}
.ls16{letter-spacing:0.704000pt;}
.ls13{letter-spacing:0.768000pt;}
.ls3e{letter-spacing:0.880000pt;}
.ls19{letter-spacing:0.954667pt;}
.ls1d{letter-spacing:1.280000pt;}
.ls2f{letter-spacing:1.344000pt;}
.ls36{letter-spacing:1.408000pt;}
.ls24{letter-spacing:1.573547pt;}
.lse{letter-spacing:1.594667pt;}
.ls21{letter-spacing:1.594880pt;}
.ls15{letter-spacing:2.234880pt;}
.ls27{letter-spacing:2.240000pt;}
.ls3f{letter-spacing:2.560000pt;}
.ls2c{letter-spacing:3.840000pt;}
.ls37{letter-spacing:4.320000pt;}
.ls31{letter-spacing:4.480000pt;}
.ls1b{letter-spacing:6.560000pt;}
.ls1a{letter-spacing:7.040000pt;}
.ls30{letter-spacing:12.160000pt;}
.ls32{letter-spacing:23.680000pt;}
.ls42{letter-spacing:43.520000pt;}
.ls14{letter-spacing:65.386667pt;}
.ws33{word-spacing:-80.880000pt;}
.ws31{word-spacing:-80.240000pt;}
.ws32{word-spacing:-80.000000pt;}
.ws2a{word-spacing:-65.344000pt;}
.ws1e{word-spacing:-64.000000pt;}
.ws11{word-spacing:-60.474667pt;}
.ws18{word-spacing:-59.834667pt;}
.ws2c{word-spacing:-59.000533pt;}
.ws10{word-spacing:-58.880000pt;}
.ws27{word-spacing:-53.120000pt;}
.ws2e{word-spacing:-37.120000pt;}
.ws2f{word-spacing:-21.280000pt;}
.ws2d{word-spacing:-17.408000pt;}
.ws1a{word-spacing:-17.280000pt;}
.ws15{word-spacing:-16.768000pt;}
.ws16{word-spacing:-16.704000pt;}
.ws19{word-spacing:-16.640000pt;}
.ws1f{word-spacing:-16.512000pt;}
.ws24{word-spacing:-16.384000pt;}
.ws17{word-spacing:-16.256000pt;}
.ws29{word-spacing:-16.192000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws21{word-spacing:-15.936000pt;}
.ws14{word-spacing:-15.872000pt;}
.ws20{word-spacing:-15.808000pt;}
.ws12{word-spacing:-15.744000pt;}
.ws1b{word-spacing:-15.616000pt;}
.ws1d{word-spacing:-15.552000pt;}
.ws26{word-spacing:-15.488000pt;}
.ws23{word-spacing:-15.296000pt;}
.ws28{word-spacing:-15.168000pt;}
.ws22{word-spacing:-14.720000pt;}
.ws2b{word-spacing:-14.528000pt;}
.wsf{word-spacing:-14.080000pt;}
.ws30{word-spacing:-13.600000pt;}
.ws7{word-spacing:-11.861333pt;}
.ws1c{word-spacing:-11.040000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws4{word-spacing:-10.521067pt;}
.ws34{word-spacing:-10.400000pt;}
.ws2{word-spacing:-10.240000pt;}
.ws25{word-spacing:-9.882667pt;}
.wsc{word-spacing:-0.576000pt;}
.ws9{word-spacing:-0.512000pt;}
.wsd{word-spacing:-0.448000pt;}
.wsa{word-spacing:-0.256000pt;}
.ws8{word-spacing:0.000000pt;}
.ws3{word-spacing:0.010688pt;}
.wsb{word-spacing:0.192000pt;}
.wse{word-spacing:0.800000pt;}
.ws13{word-spacing:8.960000pt;}
._1d{margin-left:-3.200107pt;}
._2{margin-left:-1.930667pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.280000pt;}
._7{width:2.176000pt;}
._8{width:3.082667pt;}
._12{width:4.704021pt;}
._9{width:5.824000pt;}
._a{width:6.911979pt;}
._f{width:8.010688pt;}
._10{width:9.194688pt;}
._13{width:10.112000pt;}
._14{width:11.264000pt;}
._16{width:12.202667pt;}
._17{width:13.116587pt;}
._1e{width:14.058667pt;}
._e{width:14.976000pt;}
._3{width:17.098667pt;}
._6{width:18.752000pt;}
._5{width:19.776000pt;}
._11{width:20.992043pt;}
._1a{width:21.924608pt;}
._c{width:22.848000pt;}
._d{width:23.754688pt;}
._1f{width:24.799979pt;}
._18{width:26.090688pt;}
._19{width:27.200000pt;}
._23{width:28.736000pt;}
._4{width:30.272000pt;}
._15{width:31.808000pt;}
._27{width:32.704000pt;}
._24{width:33.642688pt;}
._25{width:34.698624pt;}
._21{width:37.034667pt;}
._22{width:38.389333pt;}
._2b{width:41.216000pt;}
._29{width:42.816000pt;}
._28{width:44.864000pt;}
._2a{width:49.408000pt;}
._26{width:71.338667pt;}
._1c{width:74.261269pt;}
._1b{width:75.306688pt;}
._b{width:77.696000pt;}
._20{width:197.920000pt;}
.fs4{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fs2{font-size:42.666667pt;}
.fs1{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fsa{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:72.320000pt;}
.fs9{font-size:80.000000pt;}
.fs8{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yb4{bottom:3.680000pt;}
.y2{bottom:4.000000pt;}
.yc3{bottom:4.026667pt;}
.ybe{bottom:4.800000pt;}
.yc4{bottom:4.826667pt;}
.yb6{bottom:4.960000pt;}
.yd8{bottom:5.120000pt;}
.yb2{bottom:5.280000pt;}
.ycd{bottom:6.880000pt;}
.yda{bottom:32.832000pt;}
.y1{bottom:47.872000pt;}
.yd7{bottom:93.152000pt;}
.ydb{bottom:96.192000pt;}
.yd9{bottom:109.152000pt;}
.y63{bottom:113.792000pt;}
.y50{bottom:115.552000pt;}
.y3c{bottom:117.312000pt;}
.yb0{bottom:117.472000pt;}
.yae{bottom:135.866667pt;}
.ydc{bottom:138.106667pt;}
.y7b{bottom:139.546667pt;}
.y62{bottom:141.306667pt;}
.y69{bottom:142.906667pt;}
.y4f{bottom:143.226667pt;}
.y3b{bottom:144.986667pt;}
.yad{bottom:154.266667pt;}
.y7a{bottom:167.226667pt;}
.y61{bottom:168.986667pt;}
.y68{bottom:170.426667pt;}
.y4e{bottom:170.746667pt;}
.y80{bottom:171.386667pt;}
.y3a{bottom:172.506667pt;}
.yac{bottom:172.666667pt;}
.yab{bottom:191.066667pt;}
.y79{bottom:194.746667pt;}
.y60{bottom:196.506667pt;}
.y4d{bottom:198.426667pt;}
.y40{bottom:199.866667pt;}
.y39{bottom:200.186667pt;}
.yaa{bottom:209.466667pt;}
.y78{bottom:222.426667pt;}
.y5f{bottom:224.186667pt;}
.y4c{bottom:225.946667pt;}
.y7e{bottom:227.386667pt;}
.y38{bottom:227.706667pt;}
.ya9{bottom:227.866667pt;}
.ya8{bottom:246.306667pt;}
.y77{bottom:249.986667pt;}
.y5e{bottom:251.746667pt;}
.y4b{bottom:253.666667pt;}
.y37{bottom:255.426667pt;}
.ya7{bottom:264.706667pt;}
.y76{bottom:277.666667pt;}
.y5d{bottom:279.426667pt;}
.y67{bottom:280.866667pt;}
.y4a{bottom:281.186667pt;}
.y36{bottom:282.946667pt;}
.ya6{bottom:283.106667pt;}
.ya5{bottom:301.506667pt;}
.y75{bottom:305.186667pt;}
.y5c{bottom:306.946667pt;}
.ycb{bottom:308.066667pt;}
.y49{bottom:308.866667pt;}
.y35{bottom:310.626667pt;}
.ya4{bottom:319.906667pt;}
.yca{bottom:326.466667pt;}
.y74{bottom:332.386667pt;}
.y5b{bottom:334.626667pt;}
.y48{bottom:336.386667pt;}
.y7f{bottom:337.826667pt;}
.y34{bottom:338.146667pt;}
.ya3{bottom:338.306667pt;}
.yc9{bottom:344.866667pt;}
.ya2{bottom:356.706667pt;}
.y73{bottom:360.706667pt;}
.y5a{bottom:362.146667pt;}
.yc8{bottom:363.266667pt;}
.y47{bottom:364.066667pt;}
.y82{bottom:365.506667pt;}
.y33{bottom:365.826667pt;}
.y19{bottom:369.026667pt;}
.ya1{bottom:375.106667pt;}
.yc7{bottom:381.666667pt;}
.y18{bottom:387.426667pt;}
.y59{bottom:389.826667pt;}
.y46{bottom:391.266667pt;}
.y66{bottom:391.586667pt;}
.yd6{bottom:393.186667pt;}
.y32{bottom:393.346667pt;}
.y30{bottom:393.506667pt;}
.yc6{bottom:400.706667pt;}
.y17{bottom:405.826667pt;}
.ya0{bottom:411.906667pt;}
.y58{bottom:417.346667pt;}
.y72{bottom:417.986667pt;}
.y45{bottom:419.106667pt;}
.yc5{bottom:419.746667pt;}
.y31{bottom:421.026667pt;}
.y16{bottom:424.226667pt;}
.y9f{bottom:430.306667pt;}
.y15{bottom:442.626667pt;}
.y57{bottom:445.026667pt;}
.y44{bottom:446.786667pt;}
.y65{bottom:447.426667pt;}
.y3f{bottom:448.226667pt;}
.y2f{bottom:448.546667pt;}
.y9e{bottom:448.706667pt;}
.y14{bottom:461.026667pt;}
.yc2{bottom:464.226667pt;}
.y9d{bottom:467.106667pt;}
.y56{bottom:472.573333pt;}
.y71{bottom:474.333333pt;}
.y6a{bottom:474.813333pt;}
.y43{bottom:475.133333pt;}
.y3e{bottom:475.933333pt;}
.y2e{bottom:476.253333pt;}
.y13{bottom:479.453333pt;}
.yc1{bottom:482.653333pt;}
.y9c{bottom:485.533333pt;}
.y55{bottom:500.253333pt;}
.yc0{bottom:501.053333pt;}
.y70{bottom:502.013333pt;}
.ye4{bottom:503.613333pt;}
.y2d{bottom:503.773333pt;}
.y9b{bottom:503.933333pt;}
.ybf{bottom:519.453333pt;}
.y9a{bottom:522.333333pt;}
.y54{bottom:527.773333pt;}
.y6f{bottom:529.533333pt;}
.y2c{bottom:531.453333pt;}
.ybd{bottom:537.853333pt;}
.y99{bottom:540.733333pt;}
.y53{bottom:556.093333pt;}
.ybc{bottom:556.893333pt;}
.y6e{bottom:557.213333pt;}
.y7d{bottom:558.653333pt;}
.yd5{bottom:558.813333pt;}
.y2b{bottom:558.973333pt;}
.y98{bottom:559.133333pt;}
.y12{bottom:560.733333pt;}
.y42{bottom:566.333333pt;}
.ye5{bottom:570.013333pt;}
.ybb{bottom:575.933333pt;}
.y97{bottom:577.533333pt;}
.y11{bottom:579.133333pt;}
.y6d{bottom:584.733333pt;}
.y52{bottom:585.533333pt;}
.y2a{bottom:586.653333pt;}
.y96{bottom:595.933333pt;}
.y10{bottom:597.533333pt;}
.y6c{bottom:612.413333pt;}
.y29{bottom:614.173333pt;}
.y95{bottom:614.333333pt;}
.yba{bottom:620.413333pt;}
.y94{bottom:632.733333pt;}
.yb9{bottom:638.813333pt;}
.ye3{bottom:640.093333pt;}
.y6b{bottom:640.413333pt;}
.yf{bottom:641.693333pt;}
.y28{bottom:641.853333pt;}
.y93{bottom:651.133333pt;}
.yb8{bottom:657.213333pt;}
.yd4{bottom:669.213333pt;}
.y27{bottom:669.373333pt;}
.y92{bottom:669.533333pt;}
.yb7{bottom:675.613333pt;}
.y91{bottom:687.933333pt;}
.yb5{bottom:694.013333pt;}
.yd1{bottom:694.653333pt;}
.y81{bottom:696.733333pt;}
.y26{bottom:697.053333pt;}
.y90{bottom:706.373333pt;}
.ye{bottom:707.973333pt;}
.yb3{bottom:713.093333pt;}
.yec{bottom:720.133333pt;}
.y41{bottom:724.293333pt;}
.y25{bottom:724.613333pt;}
.y8f{bottom:724.773333pt;}
.yd0{bottom:731.493333pt;}
.yb1{bottom:732.133333pt;}
.yd{bottom:733.733333pt;}
.yeb{bottom:739.813333pt;}
.y8e{bottom:743.173333pt;}
.yc{bottom:744.773333pt;}
.ycf{bottom:749.893333pt;}
.y24{bottom:752.293333pt;}
.yea{bottom:758.053333pt;}
.y8d{bottom:761.573333pt;}
.yce{bottom:768.293333pt;}
.ye2{bottom:768.933333pt;}
.yb{bottom:770.533333pt;}
.ye9{bottom:777.733333pt;}
.yd3{bottom:779.653333pt;}
.y23{bottom:779.813333pt;}
.y8c{bottom:779.973333pt;}
.ycc{bottom:787.333333pt;}
.ya{bottom:788.933333pt;}
.ye8{bottom:795.973333pt;}
.y8b{bottom:798.373333pt;}
.y9{bottom:799.973333pt;}
.y22{bottom:807.493333pt;}
.ye7{bottom:815.493333pt;}
.y8a{bottom:816.773333pt;}
.ye1{bottom:824.133333pt;}
.y8{bottom:825.733333pt;}
.y51{bottom:834.693333pt;}
.ye6{bottom:834.853333pt;}
.y21{bottom:835.013333pt;}
.y89{bottom:835.173333pt;}
.y7{bottom:849.055200pt;}
.ye0{bottom:853.253333pt;}
.y88{bottom:853.573333pt;}
.y7c{bottom:862.373333pt;}
.y20{bottom:862.693333pt;}
.y6{bottom:867.455200pt;}
.ydf{bottom:871.653333pt;}
.y87{bottom:871.973333pt;}
.y5{bottom:885.854667pt;}
.y64{bottom:889.893333pt;}
.yde{bottom:890.053333pt;}
.y1f{bottom:890.213333pt;}
.y86{bottom:890.373333pt;}
.yd2{bottom:908.453333pt;}
.y85{bottom:908.773333pt;}
.y1e{bottom:917.893333pt;}
.y4{bottom:923.445333pt;}
.ydd{bottom:926.853333pt;}
.y84{bottom:927.173333pt;}
.y3{bottom:941.872000pt;}
.y1d{bottom:945.120000pt;}
.y83{bottom:945.280000pt;}
.y3d{bottom:945.440000pt;}
.yaf{bottom:945.600000pt;}
.y1c{bottom:1006.632000pt;}
.y1b{bottom:1019.432000pt;}
.y1a{bottom:1032.232000pt;}
.h1{height:18.400000pt;}
.hf{height:18.432000pt;}
.hd{height:24.800000pt;}
.h13{height:24.960000pt;}
.h8{height:31.062500pt;}
.h7{height:31.166667pt;}
.h6{height:42.084375pt;}
.h5{height:43.215000pt;}
.h10{height:52.134375pt;}
.h11{height:53.535000pt;}
.h2{height:62.812500pt;}
.h3{height:64.500000pt;}
.h9{height:66.625000pt;}
.hc{height:70.978125pt;}
.ha{height:71.524375pt;}
.hb{height:71.684375pt;}
.h4{height:72.655000pt;}
.he{height:83.540625pt;}
.h12{height:85.785000pt;}
.h0{height:1056.000000pt;}
.w1{width:8.000000pt;}
.w2{width:16.032000pt;}
.w13{width:83.872000pt;}
.w4{width:88.160000pt;}
.w9{width:88.640000pt;}
.wf{width:88.800000pt;}
.w1a{width:95.840000pt;}
.w19{width:96.000000pt;}
.w1b{width:96.032000pt;}
.w15{width:109.792000pt;}
.w16{width:109.952000pt;}
.w17{width:110.752000pt;}
.w14{width:118.720000pt;}
.w11{width:125.280000pt;}
.w18{width:125.472000pt;}
.wa{width:128.032000pt;}
.wc{width:128.480000pt;}
.wb{width:128.512000pt;}
.w5{width:129.152000pt;}
.w7{width:129.280000pt;}
.w6{width:129.312000pt;}
.wd{width:131.872000pt;}
.w10{width:132.352000pt;}
.w12{width:136.986667pt;}
.w3{width:516.733333pt;}
.w8{width:516.893333pt;}
.we{width:523.133333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x38{left:8.160000pt;}
.x2f{left:9.440000pt;}
.x2e{left:11.080000pt;}
.x21{left:13.120000pt;}
.x25{left:14.240000pt;}
.x29{left:16.480000pt;}
.x28{left:17.600000pt;}
.x26{left:19.200000pt;}
.x17{left:20.480000pt;}
.x27{left:21.440000pt;}
.x22{left:22.560000pt;}
.x30{left:24.160000pt;}
.x20{left:26.400000pt;}
.x24{left:28.160000pt;}
.x1f{left:29.754667pt;}
.x3f{left:31.520000pt;}
.x23{left:33.754667pt;}
.x3c{left:36.986667pt;}
.x18{left:37.920000pt;}
.x36{left:49.280000pt;}
.x1c{left:51.200000pt;}
.x1e{left:52.160000pt;}
.x1a{left:53.920000pt;}
.x35{left:55.520000pt;}
.xd{left:96.032000pt;}
.x10{left:100.512000pt;}
.x33{left:102.112000pt;}
.x47{left:104.352000pt;}
.x16{left:105.632000pt;}
.xe{left:110.514667pt;}
.x48{left:112.512000pt;}
.xb{left:113.472000pt;}
.x11{left:114.912000pt;}
.x45{left:117.312000pt;}
.xf{left:118.752000pt;}
.x4c{left:120.512000pt;}
.x5{left:121.723333pt;}
.xc{left:122.912000pt;}
.x2{left:124.014667pt;}
.x4{left:127.642667pt;}
.x9{left:134.586667pt;}
.x13{left:143.226667pt;}
.x8{left:166.586667pt;}
.x39{left:188.666667pt;}
.x31{left:190.906667pt;}
.x14{left:193.786667pt;}
.x7{left:218.106667pt;}
.x32{left:231.426667pt;}
.x15{left:237.826667pt;}
.x2a{left:241.186667pt;}
.x3{left:248.340000pt;}
.x3a{left:272.546667pt;}
.x4b{left:287.426667pt;}
.x34{left:319.426667pt;}
.xa{left:320.706667pt;}
.x2b{left:321.986667pt;}
.x19{left:322.946667pt;}
.x49{left:342.626667pt;}
.x6{left:371.515333pt;}
.x46{left:374.786667pt;}
.x3b{left:391.266667pt;}
.x12{left:400.066667pt;}
.x1{left:404.066667pt;}
.x2c{left:450.493333pt;}
.x1b{left:452.093333pt;}
.x3d{left:501.053333pt;}
.x3e{left:502.013333pt;}
.x44{left:557.373333pt;}
.x37{left:577.053333pt;}
.x2d{left:578.973333pt;}
.x1d{left:581.253333pt;}
.x4a{left:603.333333pt;}
.x43{left:605.253333pt;}
.x41{left:621.893333pt;}
.x42{left:624.453333pt;}
.x40{left:637.893333pt;}
}




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