
    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_de2813187749e601f7a4726f.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a88e46dd52abe1388627993e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.097168;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_03feabf084603b5c40116673.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f8535a6836932a04305e516b.woff')format("woff");}.ff4{font-family:ff4;line-height:1.080566;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_ce5b8749eacf1be4f4a6a221.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8964788ff72beb5c5c7c7570.woff')format("woff");}.ff6{font-family:ff6;line-height:1.372070;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_dab05ccd60aa5846b2771e6d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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_f4e8213daf3ffce93ba6d108.woff')format("woff");}.ff8{font-family:ff8;line-height:1.909180;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_75db79f9d529bade16d4a816.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_bdbb7106c9b8b81b16897eea.woff')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-14.400000px;}
.v5{vertical-align:-3.000000px;}
.v9{vertical-align:-1.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.000000px;}
.v3{vertical-align:14.400000px;}
.v4{vertical-align:17.400000px;}
.va{vertical-align:19.200000px;}
.vb{vertical-align:21.600000px;}
.v6{vertical-align:26.400000px;}
.v7{vertical-align:54.600000px;}
.v8{vertical-align:62.400000px;}
.lsb{letter-spacing:-3.000000px;}
.lsd{letter-spacing:-2.994000px;}
.lsa{letter-spacing:-2.988000px;}
.lsc{letter-spacing:-2.700000px;}
.lse{letter-spacing:-0.168000px;}
.ls3d{letter-spacing:-0.120000px;}
.ls43{letter-spacing:-0.048000px;}
.ls9{letter-spacing:-0.012000px;}
.ls7{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.024000px;}
.ls11{letter-spacing:0.048000px;}
.ls2d{letter-spacing:0.060000px;}
.ls3e{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.090000px;}
.ls0{letter-spacing:0.120000px;}
.ls22{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.150000px;}
.ls42{letter-spacing:0.168000px;}
.lsf{letter-spacing:0.222000px;}
.ls2{letter-spacing:0.300000px;}
.ls13{letter-spacing:0.336000px;}
.ls4{letter-spacing:0.540000px;}
.ls5{letter-spacing:0.600000px;}
.ls1d{letter-spacing:1.284000px;}
.ls17{letter-spacing:1.560000px;}
.ls34{letter-spacing:1.620000px;}
.ls2c{letter-spacing:1.836000px;}
.ls38{letter-spacing:2.100000px;}
.ls31{letter-spacing:2.184000px;}
.ls2a{letter-spacing:2.496000px;}
.ls30{letter-spacing:2.724000px;}
.ls14{letter-spacing:2.811000px;}
.ls15{letter-spacing:2.871000px;}
.ls16{letter-spacing:4.101000px;}
.ls23{letter-spacing:4.269000px;}
.ls2f{letter-spacing:4.320000px;}
.ls1b{letter-spacing:4.359000px;}
.ls1a{letter-spacing:4.611000px;}
.ls29{letter-spacing:4.686000px;}
.ls25{letter-spacing:4.899000px;}
.ls35{letter-spacing:4.959000px;}
.ls3a{letter-spacing:5.400000px;}
.ls3b{letter-spacing:5.460000px;}
.ls3c{letter-spacing:10.200000px;}
.ls12{letter-spacing:10.800000px;}
.ls36{letter-spacing:11.520000px;}
.ls33{letter-spacing:12.648000px;}
.ls37{letter-spacing:14.871000px;}
.ls32{letter-spacing:19.920000px;}
.ls28{letter-spacing:19.956000px;}
.ls1f{letter-spacing:20.016000px;}
.ls20{letter-spacing:20.499000px;}
.ls18{letter-spacing:23.244000px;}
.ls27{letter-spacing:24.750000px;}
.ls1e{letter-spacing:24.759000px;}
.ls2e{letter-spacing:29.400000px;}
.ls44{letter-spacing:30.984000px;}
.ls3f{letter-spacing:48.534000px;}
.ls26{letter-spacing:49.740000px;}
.ls24{letter-spacing:49.800000px;}
.ls40{letter-spacing:58.320000px;}
.ls41{letter-spacing:59.400000px;}
.ls39{letter-spacing:60.600000px;}
.ls6{letter-spacing:61.860000px;}
.ls2b{letter-spacing:64.800000px;}
.ls1c{letter-spacing:78.540000px;}
.ls21{letter-spacing:78.699000px;}
.ls19{letter-spacing:81.000000px;}
.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;}
}
.ws14{word-spacing:-18.168000px;}
.wse{word-spacing:-18.024000px;}
.ws9{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.832000px;}
.wsd{word-spacing:-16.722000px;}
.wsc{word-spacing:-16.500000px;}
.ws13{word-spacing:-15.888000px;}
.ws10{word-spacing:-15.840000px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.524000px;}
.ws2{word-spacing:-13.512000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.488000px;}
.ws12{word-spacing:-11.220000px;}
.ws6{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.506000px;}
.ws7{word-spacing:-10.500000px;}
.wsb{word-spacing:0.000000px;}
.wsf{word-spacing:5.490000px;}
.ws11{word-spacing:6.864000px;}
._3d{margin-left:-26.844000px;}
._44{margin-left:-23.832000px;}
._14{margin-left:-4.404000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._37{width:2.052000px;}
._5{width:3.228000px;}
._17{width:4.476000px;}
._20{width:6.048000px;}
._1f{width:7.560000px;}
._12{width:9.072000px;}
._13{width:10.584000px;}
._24{width:12.240000px;}
._45{width:14.244000px;}
._40{width:15.636000px;}
._4{width:16.854000px;}
._15{width:19.584000px;}
._25{width:21.012000px;}
._6{width:22.176000px;}
._1e{width:23.184000px;}
._f{width:25.128000px;}
._10{width:26.742000px;}
._2a{width:28.308000px;}
._38{width:29.424000px;}
._52{width:30.456000px;}
._31{width:31.464000px;}
._2e{width:32.904000px;}
._b{width:34.128000px;}
._c{width:35.136000px;}
._1c{width:36.750000px;}
._7{width:38.376000px;}
._1d{width:39.960000px;}
._50{width:41.904000px;}
._60{width:43.056000px;}
._32{width:44.286000px;}
._28{width:45.432000px;}
._29{width:46.800000px;}
._21{width:48.312000px;}
._22{width:49.320000px;}
._26{width:50.832000px;}
._3a{width:52.398000px;}
._3b{width:53.496000px;}
._1b{width:55.224000px;}
._1a{width:56.376000px;}
._27{width:57.816000px;}
._16{width:58.824000px;}
._47{width:59.934000px;}
._8{width:61.152000px;}
._2f{width:62.856000px;}
._9{width:63.936000px;}
._a{width:65.016000px;}
._e{width:66.096000px;}
._35{width:67.752000px;}
._36{width:69.120000px;}
._23{width:70.488000px;}
._46{width:71.640000px;}
._18{width:73.248000px;}
._19{width:74.352000px;}
._43{width:76.392000px;}
._33{width:78.048000px;}
._34{width:79.200000px;}
._3c{width:81.006000px;}
._11{width:82.512000px;}
._30{width:84.384000px;}
._4f{width:85.392000px;}
._4e{width:86.400000px;}
._3e{width:88.056000px;}
._3f{width:89.568000px;}
._63{width:92.664000px;}
._39{width:94.824000px;}
._2c{width:96.768000px;}
._2d{width:97.776000px;}
._56{width:101.880000px;}
._57{width:103.104000px;}
._2b{width:105.264000px;}
._41{width:115.992000px;}
._58{width:118.800000px;}
._4a{width:120.456000px;}
._55{width:121.536000px;}
._42{width:123.336000px;}
._4b{width:130.752000px;}
._5b{width:132.840000px;}
._53{width:134.136000px;}
._59{width:138.960000px;}
._5a{width:140.112000px;}
._4c{width:149.040000px;}
._51{width:153.576000px;}
._5c{width:155.232000px;}
._5d{width:156.312000px;}
._48{width:160.848000px;}
._49{width:162.000000px;}
._d{width:166.464000px;}
._4d{width:179.568000px;}
._54{width:196.128000px;}
._5f{width:218.448000px;}
._61{width:269.280000px;}
._62{width:277.488000px;}
._5e{width:422.136000px;}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:51.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.100000px;}
.y53{bottom:3.615000px;}
.y4b{bottom:3.750000px;}
.y1c{bottom:3.900000px;}
.y5a{bottom:4.800000px;}
.y7{bottom:5.400000px;}
.yb{bottom:6.000000px;}
.yc{bottom:6.750000px;}
.y61{bottom:7.800000px;}
.ye2{bottom:8.700000px;}
.ye0{bottom:8.850000px;}
.y6a{bottom:12.450000px;}
.ya{bottom:19.950000px;}
.y6{bottom:20.550000px;}
.y4a{bottom:22.650000px;}
.y52{bottom:22.665000px;}
.y59{bottom:23.850000px;}
.y1b{bottom:24.600000px;}
.y60{bottom:26.700000px;}
.y69{bottom:31.350000px;}
.y9{bottom:33.900000px;}
.y5{bottom:36.000000px;}
.y51{bottom:41.565000px;}
.y49{bottom:41.700000px;}
.y58{bottom:42.735000px;}
.y63{bottom:42.750000px;}
.y1a{bottom:45.300000px;}
.y5f{bottom:45.750000px;}
.y68{bottom:50.400000px;}
.y3{bottom:57.637500px;}
.y48{bottom:60.600000px;}
.y50{bottom:60.615000px;}
.y57{bottom:61.800000px;}
.y5e{bottom:64.680000px;}
.y19{bottom:66.000000px;}
.y67{bottom:69.300000px;}
.y4f{bottom:79.515000px;}
.y56{bottom:80.700000px;}
.y2{bottom:81.637500px;}
.y5d{bottom:83.730000px;}
.y18{bottom:86.700000px;}
.y66{bottom:88.350000px;}
.y4e{bottom:98.595000px;}
.y55{bottom:99.750000px;}
.y5c{bottom:102.630000px;}
.y65{bottom:107.250000px;}
.y17{bottom:107.400000px;}
.y79{bottom:107.887500px;}
.y3a{bottom:109.537500px;}
.y4d{bottom:117.495000px;}
.ya0{bottom:121.837500px;}
.y114{bottom:126.637500px;}
.yf4{bottom:128.887500px;}
.y78{bottom:131.737500px;}
.y39{bottom:134.437500px;}
.y113{bottom:150.495000px;}
.y9f{bottom:151.095000px;}
.y77{bottom:151.680000px;}
.yf3{bottom:152.580000px;}
.ycb{bottom:157.995000px;}
.y38{bottom:159.330000px;}
.y112{bottom:174.345000px;}
.y9e{bottom:174.795000px;}
.yf2{bottom:176.445000px;}
.yca{bottom:181.845000px;}
.y54{bottom:183.345000px;}
.y37{bottom:184.095000px;}
.y111{bottom:198.195000px;}
.y9d{bottom:198.630000px;}
.yf1{bottom:200.295000px;}
.yc9{bottom:205.695000px;}
.y36{bottom:208.995000px;}
.y110{bottom:221.895000px;}
.y9c{bottom:222.495000px;}
.yf0{bottom:223.995000px;}
.yc8{bottom:229.380000px;}
.y35{bottom:233.745000px;}
.y10f{bottom:245.745000px;}
.y9b{bottom:246.330000px;}
.yef{bottom:247.845000px;}
.yc7{bottom:253.245000px;}
.y34{bottom:258.645000px;}
.y10e{bottom:269.595000px;}
.y9a{bottom:270.045000px;}
.yee{bottom:271.695000px;}
.yc6{bottom:277.080000px;}
.y33{bottom:283.545000px;}
.y10d{bottom:293.295000px;}
.y99{bottom:293.880000px;}
.yed{bottom:295.395000px;}
.y4c{bottom:299.130000px;}
.yc5{bottom:300.795000px;}
.y32{bottom:308.295000px;}
.y10c{bottom:317.130000px;}
.y98{bottom:317.745000px;}
.yec{bottom:319.245000px;}
.yc4{bottom:324.645000px;}
.y31{bottom:333.195000px;}
.y10b{bottom:340.995000px;}
.y97{bottom:341.445000px;}
.yeb{bottom:343.095000px;}
.yc3{bottom:348.495000px;}
.y30{bottom:357.945000px;}
.y10a{bottom:364.695000px;}
.y96{bottom:365.295000px;}
.yea{bottom:366.795000px;}
.yc2{bottom:372.195000px;}
.y2f{bottom:382.875000px;}
.y109{bottom:388.575000px;}
.y95{bottom:389.325000px;}
.ye9{bottom:390.675000px;}
.yc1{bottom:396.075000px;}
.y2e{bottom:407.775000px;}
.y108{bottom:412.425000px;}
.y94{bottom:413.475000px;}
.ye8{bottom:414.525000px;}
.yc0{bottom:419.925000px;}
.y93{bottom:425.475000px;}
.y2d{bottom:432.525000px;}
.y47{bottom:432.675000px;}
.y107{bottom:436.125000px;}
.ye7{bottom:438.375000px;}
.ybf{bottom:443.625000px;}
.ye6{bottom:455.925000px;}
.y2c{bottom:457.425000px;}
.y106{bottom:459.975000px;}
.ybe{bottom:467.475000px;}
.ye5{bottom:480.225000px;}
.y92{bottom:481.425000px;}
.y2b{bottom:482.175000px;}
.y105{bottom:483.825000px;}
.ybd{bottom:491.325000px;}
.y91{bottom:505.275000px;}
.ye4{bottom:506.625000px;}
.y2a{bottom:507.075000px;}
.y104{bottom:507.525000px;}
.ybc{bottom:515.175000px;}
.y46{bottom:516.375000px;}
.y90{bottom:529.125000px;}
.y76{bottom:529.875000px;}
.y103{bottom:531.375000px;}
.y29{bottom:531.825000px;}
.ye3{bottom:532.875000px;}
.ybb{bottom:538.875000px;}
.y45{bottom:540.075000px;}
.y8f{bottom:552.825000px;}
.y75{bottom:553.725000px;}
.y102{bottom:555.225000px;}
.y28{bottom:556.725000px;}
.ye1{bottom:559.275000px;}
.yba{bottom:562.725000px;}
.y44{bottom:563.925000px;}
.y8e{bottom:576.825000px;}
.y74{bottom:577.575000px;}
.y101{bottom:579.075000px;}
.y27{bottom:581.625000px;}
.ydf{bottom:585.525000px;}
.yb9{bottom:586.575000px;}
.y43{bottom:587.775000px;}
.y8d{bottom:601.125000px;}
.y73{bottom:601.425000px;}
.y100{bottom:602.775000px;}
.y26{bottom:606.375000px;}
.yb8{bottom:610.275000px;}
.y42{bottom:611.475000px;}
.yde{bottom:618.825000px;}
.y72{bottom:625.125000px;}
.y8c{bottom:625.275000px;}
.yff{bottom:626.625000px;}
.y25{bottom:631.275000px;}
.yb7{bottom:634.125000px;}
.y41{bottom:635.325000px;}
.ydd{bottom:642.675000px;}
.y71{bottom:648.975000px;}
.yfe{bottom:650.475000px;}
.y24{bottom:656.025000px;}
.yb6{bottom:657.975000px;}
.y40{bottom:659.175000px;}
.ydc{bottom:666.525000px;}
.y70{bottom:672.825000px;}
.yfd{bottom:674.175000px;}
.y23{bottom:680.925000px;}
.yb5{bottom:681.675000px;}
.y3f{bottom:683.025000px;}
.ydb{bottom:690.225000px;}
.y6f{bottom:696.525000px;}
.y8b{bottom:696.675000px;}
.yfc{bottom:698.025000px;}
.yb4{bottom:705.525000px;}
.y22{bottom:705.825000px;}
.y3e{bottom:706.725000px;}
.yda{bottom:714.075000px;}
.y6e{bottom:720.375000px;}
.yfb{bottom:721.875000px;}
.yb3{bottom:729.375000px;}
.y21{bottom:730.575000px;}
.yd9{bottom:737.970000px;}
.y6d{bottom:744.270000px;}
.y8a{bottom:744.420000px;}
.yfa{bottom:745.620000px;}
.yb2{bottom:753.120000px;}
.y3d{bottom:754.470000px;}
.y20{bottom:755.520000px;}
.yd8{bottom:761.670000px;}
.y6c{bottom:767.970000px;}
.y89{bottom:768.570000px;}
.yf9{bottom:769.470000px;}
.yb1{bottom:776.970000px;}
.y3c{bottom:778.170000px;}
.yd7{bottom:785.520000px;}
.y1f{bottom:788.220000px;}
.y6b{bottom:791.820000px;}
.y88{bottom:792.420000px;}
.yf8{bottom:793.320000px;}
.y3b{bottom:798.120000px;}
.yb0{bottom:800.820000px;}
.y1e{bottom:805.020000px;}
.y64{bottom:809.370000px;}
.y87{bottom:816.270000px;}
.yf7{bottom:817.020000px;}
.yaf{bottom:824.520000px;}
.yd6{bottom:833.070000px;}
.y86{bottom:840.420000px;}
.yf6{bottom:840.870000px;}
.y1d{bottom:846.420000px;}
.yae{bottom:848.370000px;}
.yd5{bottom:856.920000px;}
.y85{bottom:864.420000px;}
.yf5{bottom:864.720000px;}
.y16{bottom:867.120000px;}
.yad{bottom:872.220000px;}
.yd4{bottom:880.770000px;}
.y84{bottom:888.420000px;}
.yac{bottom:892.020000px;}
.yd3{bottom:904.470000px;}
.y83{bottom:912.270000px;}
.yaa{bottom:915.120000px;}
.yd2{bottom:929.520000px;}
.y62{bottom:932.670000px;}
.y82{bottom:936.120000px;}
.yab{bottom:941.820000px;}
.yd1{bottom:954.720000px;}
.ya9{bottom:958.020000px;}
.y81{bottom:959.970000px;}
.yd0{bottom:978.420000px;}
.ya8{bottom:981.870000px;}
.y80{bottom:983.670000px;}
.y15{bottom:994.920000px;}
.ycf{bottom:1003.620000px;}
.ya7{bottom:1005.570000px;}
.y7f{bottom:1007.520000px;}
.y14{bottom:1014.120000px;}
.yce{bottom:1028.670000px;}
.ya6{bottom:1029.420000px;}
.y7e{bottom:1031.370000px;}
.y13{bottom:1034.820000px;}
.y5b{bottom:1048.470000px;}
.ycd{bottom:1052.520000px;}
.ya5{bottom:1053.270000px;}
.y7d{bottom:1055.070000px;}
.y12{bottom:1055.520000px;}
.y11{bottom:1076.220000px;}
.ya4{bottom:1077.270000px;}
.ycc{bottom:1077.570000px;}
.y7c{bottom:1078.920000px;}
.y10{bottom:1096.950000px;}
.ya3{bottom:1101.450000px;}
.y7b{bottom:1102.800000px;}
.ya2{bottom:1125.750000px;}
.y7a{bottom:1126.500000px;}
.yf{bottom:1129.650000px;}
.ya1{bottom:1150.050000px;}
.ye{bottom:1150.350000px;}
.y1{bottom:1176.900000px;}
.y4{bottom:1202.550000px;}
.y8{bottom:1207.800000px;}
.h8{height:17.887500px;}
.h10{height:20.700000px;}
.h27{height:23.550000px;}
.h26{height:25.500000px;}
.h25{height:25.650000px;}
.h11{height:41.400000px;}
.h6{height:45.300000px;}
.h3{height:48.600000px;}
.h13{height:52.628906px;}
.h7{height:52.998047px;}
.h5{height:55.942383px;}
.h16{height:57.073242px;}
.h18{height:58.168945px;}
.h4{height:58.886719px;}
.ha{height:62.261719px;}
.h23{height:63.251953px;}
.hf{height:63.457031px;}
.hd{height:64.775391px;}
.h9{height:65.645508px;}
.h15{height:66.515625px;}
.hc{height:70.664062px;}
.h12{height:71.824219px;}
.hb{height:72.562500px;}
.h24{height:74.004654px;}
.h14{height:75.900000px;}
.h2{height:82.441406px;}
.h1d{height:89.296875px;}
.h1e{height:89.651953px;}
.h1f{height:91.696875px;}
.h1c{height:92.296875px;}
.h22{height:92.896875px;}
.h19{height:115.050000px;}
.h1a{height:117.937500px;}
.h21{height:118.664062px;}
.h1b{height:122.550000px;}
.he{height:124.185000px;}
.h17{height:132.787500px;}
.h20{height:143.896875px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w10{width:115.687500px;}
.wc{width:126.450000px;}
.w9{width:126.487500px;}
.wa{width:126.735000px;}
.wd{width:126.787500px;}
.we{width:137.550000px;}
.wb{width:137.587500px;}
.w6{width:178.350000px;}
.w5{width:262.995000px;}
.wf{width:264.630000px;}
.w3{width:282.495000px;}
.w4{width:297.780000px;}
.w7{width:745.770000px;}
.w8{width:750.270000px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:6.900000px;}
.x9{left:12.435000px;}
.x7{left:16.200000px;}
.xe{left:17.295000px;}
.x1a{left:20.887500px;}
.x5{left:22.200000px;}
.xb{left:32.100000px;}
.x3{left:42.599987px;}
.x2a{left:69.599987px;}
.x1b{left:95.699987px;}
.x19{left:100.200000px;}
.x18{left:104.700000px;}
.xd{left:106.980000px;}
.x6{left:121.687500px;}
.x29{left:123.637487px;}
.xa{left:128.130000px;}
.x10{left:131.587487px;}
.x25{left:134.287487px;}
.x1f{left:170.595000px;}
.x23{left:194.594987px;}
.x24{left:250.529987px;}
.x11{left:282.029987px;}
.x20{left:298.095000px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x2b{left:308.745000px;}
.x1e{left:443.924987px;}
.x1c{left:457.274987px;}
.x2c{left:484.124987px;}
.x1d{left:510.374987px;}
.x12{left:514.724987px;}
.x26{left:539.624987px;}
.x16{left:571.574987px;}
.x21{left:585.225000px;}
.x14{left:617.324987px;}
.x27{left:619.274987px;}
.xc{left:625.425000px;}
.x15{left:638.219987px;}
.x13{left:699.569987px;}
.xf{left:713.655000px;}
.x28{left:768.119987px;}
.x2{left:819.119987px;}
.x17{left:850.619987px;}
.x22{left:855.569987px;}
@media print{
.v2{vertical-align:-12.800000pt;}
.v5{vertical-align:-2.666667pt;}
.v9{vertical-align:-1.066667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.666667pt;}
.v3{vertical-align:12.800000pt;}
.v4{vertical-align:15.466667pt;}
.va{vertical-align:17.066667pt;}
.vb{vertical-align:19.200000pt;}
.v6{vertical-align:23.466667pt;}
.v7{vertical-align:48.533333pt;}
.v8{vertical-align:55.466667pt;}
.lsb{letter-spacing:-2.666667pt;}
.lsd{letter-spacing:-2.661333pt;}
.lsa{letter-spacing:-2.656000pt;}
.lsc{letter-spacing:-2.400000pt;}
.lse{letter-spacing:-0.149333pt;}
.ls3d{letter-spacing:-0.106667pt;}
.ls43{letter-spacing:-0.042667pt;}
.ls9{letter-spacing:-0.010667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.021333pt;}
.ls11{letter-spacing:0.042667pt;}
.ls2d{letter-spacing:0.053333pt;}
.ls3e{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.080000pt;}
.ls0{letter-spacing:0.106667pt;}
.ls22{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.133333pt;}
.ls42{letter-spacing:0.149333pt;}
.lsf{letter-spacing:0.197333pt;}
.ls2{letter-spacing:0.266667pt;}
.ls13{letter-spacing:0.298667pt;}
.ls4{letter-spacing:0.480000pt;}
.ls5{letter-spacing:0.533333pt;}
.ls1d{letter-spacing:1.141333pt;}
.ls17{letter-spacing:1.386667pt;}
.ls34{letter-spacing:1.440000pt;}
.ls2c{letter-spacing:1.632000pt;}
.ls38{letter-spacing:1.866667pt;}
.ls31{letter-spacing:1.941333pt;}
.ls2a{letter-spacing:2.218667pt;}
.ls30{letter-spacing:2.421333pt;}
.ls14{letter-spacing:2.498667pt;}
.ls15{letter-spacing:2.552000pt;}
.ls16{letter-spacing:3.645333pt;}
.ls23{letter-spacing:3.794667pt;}
.ls2f{letter-spacing:3.840000pt;}
.ls1b{letter-spacing:3.874667pt;}
.ls1a{letter-spacing:4.098667pt;}
.ls29{letter-spacing:4.165333pt;}
.ls25{letter-spacing:4.354667pt;}
.ls35{letter-spacing:4.408000pt;}
.ls3a{letter-spacing:4.800000pt;}
.ls3b{letter-spacing:4.853333pt;}
.ls3c{letter-spacing:9.066667pt;}
.ls12{letter-spacing:9.600000pt;}
.ls36{letter-spacing:10.240000pt;}
.ls33{letter-spacing:11.242667pt;}
.ls37{letter-spacing:13.218667pt;}
.ls32{letter-spacing:17.706667pt;}
.ls28{letter-spacing:17.738667pt;}
.ls1f{letter-spacing:17.792000pt;}
.ls20{letter-spacing:18.221333pt;}
.ls18{letter-spacing:20.661333pt;}
.ls27{letter-spacing:22.000000pt;}
.ls1e{letter-spacing:22.008000pt;}
.ls2e{letter-spacing:26.133333pt;}
.ls44{letter-spacing:27.541333pt;}
.ls3f{letter-spacing:43.141333pt;}
.ls26{letter-spacing:44.213333pt;}
.ls24{letter-spacing:44.266667pt;}
.ls40{letter-spacing:51.840000pt;}
.ls41{letter-spacing:52.800000pt;}
.ls39{letter-spacing:53.866667pt;}
.ls6{letter-spacing:54.986667pt;}
.ls2b{letter-spacing:57.600000pt;}
.ls1c{letter-spacing:69.813333pt;}
.ls21{letter-spacing:69.954667pt;}
.ls19{letter-spacing:72.000000pt;}
.ws14{word-spacing:-16.149333pt;}
.wse{word-spacing:-16.021333pt;}
.ws9{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.850667pt;}
.wsd{word-spacing:-14.864000pt;}
.wsc{word-spacing:-14.666667pt;}
.ws13{word-spacing:-14.122667pt;}
.ws10{word-spacing:-14.080000pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.021333pt;}
.ws2{word-spacing:-12.010667pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.989333pt;}
.ws12{word-spacing:-9.973333pt;}
.ws6{word-spacing:-9.344000pt;}
.ws8{word-spacing:-9.338667pt;}
.ws7{word-spacing:-9.333333pt;}
.wsb{word-spacing:0.000000pt;}
.wsf{word-spacing:4.880000pt;}
.ws11{word-spacing:6.101333pt;}
._3d{margin-left:-23.861333pt;}
._44{margin-left:-21.184000pt;}
._14{margin-left:-3.914667pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._37{width:1.824000pt;}
._5{width:2.869333pt;}
._17{width:3.978667pt;}
._20{width:5.376000pt;}
._1f{width:6.720000pt;}
._12{width:8.064000pt;}
._13{width:9.408000pt;}
._24{width:10.880000pt;}
._45{width:12.661333pt;}
._40{width:13.898667pt;}
._4{width:14.981333pt;}
._15{width:17.408000pt;}
._25{width:18.677333pt;}
._6{width:19.712000pt;}
._1e{width:20.608000pt;}
._f{width:22.336000pt;}
._10{width:23.770667pt;}
._2a{width:25.162667pt;}
._38{width:26.154667pt;}
._52{width:27.072000pt;}
._31{width:27.968000pt;}
._2e{width:29.248000pt;}
._b{width:30.336000pt;}
._c{width:31.232000pt;}
._1c{width:32.666667pt;}
._7{width:34.112000pt;}
._1d{width:35.520000pt;}
._50{width:37.248000pt;}
._60{width:38.272000pt;}
._32{width:39.365333pt;}
._28{width:40.384000pt;}
._29{width:41.600000pt;}
._21{width:42.944000pt;}
._22{width:43.840000pt;}
._26{width:45.184000pt;}
._3a{width:46.576000pt;}
._3b{width:47.552000pt;}
._1b{width:49.088000pt;}
._1a{width:50.112000pt;}
._27{width:51.392000pt;}
._16{width:52.288000pt;}
._47{width:53.274667pt;}
._8{width:54.357333pt;}
._2f{width:55.872000pt;}
._9{width:56.832000pt;}
._a{width:57.792000pt;}
._e{width:58.752000pt;}
._35{width:60.224000pt;}
._36{width:61.440000pt;}
._23{width:62.656000pt;}
._46{width:63.680000pt;}
._18{width:65.109333pt;}
._19{width:66.090667pt;}
._43{width:67.904000pt;}
._33{width:69.376000pt;}
._34{width:70.400000pt;}
._3c{width:72.005333pt;}
._11{width:73.344000pt;}
._30{width:75.008000pt;}
._4f{width:75.904000pt;}
._4e{width:76.800000pt;}
._3e{width:78.272000pt;}
._3f{width:79.616000pt;}
._63{width:82.368000pt;}
._39{width:84.288000pt;}
._2c{width:86.016000pt;}
._2d{width:86.912000pt;}
._56{width:90.560000pt;}
._57{width:91.648000pt;}
._2b{width:93.568000pt;}
._41{width:103.104000pt;}
._58{width:105.600000pt;}
._4a{width:107.072000pt;}
._55{width:108.032000pt;}
._42{width:109.632000pt;}
._4b{width:116.224000pt;}
._5b{width:118.080000pt;}
._53{width:119.232000pt;}
._59{width:123.520000pt;}
._5a{width:124.544000pt;}
._4c{width:132.480000pt;}
._51{width:136.512000pt;}
._5c{width:137.984000pt;}
._5d{width:138.944000pt;}
._48{width:142.976000pt;}
._49{width:144.000000pt;}
._d{width:147.968000pt;}
._4d{width:159.616000pt;}
._54{width:174.336000pt;}
._5f{width:194.176000pt;}
._61{width:239.360000pt;}
._62{width:246.656000pt;}
._5e{width:375.232000pt;}
.fs6{font-size:45.333333pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:1.866667pt;}
.y53{bottom:3.213333pt;}
.y4b{bottom:3.333333pt;}
.y1c{bottom:3.466667pt;}
.y5a{bottom:4.266667pt;}
.y7{bottom:4.800000pt;}
.yb{bottom:5.333333pt;}
.yc{bottom:6.000000pt;}
.y61{bottom:6.933333pt;}
.ye2{bottom:7.733333pt;}
.ye0{bottom:7.866667pt;}
.y6a{bottom:11.066667pt;}
.ya{bottom:17.733333pt;}
.y6{bottom:18.266667pt;}
.y4a{bottom:20.133333pt;}
.y52{bottom:20.146667pt;}
.y59{bottom:21.200000pt;}
.y1b{bottom:21.866667pt;}
.y60{bottom:23.733333pt;}
.y69{bottom:27.866667pt;}
.y9{bottom:30.133333pt;}
.y5{bottom:32.000000pt;}
.y51{bottom:36.946667pt;}
.y49{bottom:37.066667pt;}
.y58{bottom:37.986667pt;}
.y63{bottom:38.000000pt;}
.y1a{bottom:40.266667pt;}
.y5f{bottom:40.666667pt;}
.y68{bottom:44.800000pt;}
.y3{bottom:51.233333pt;}
.y48{bottom:53.866667pt;}
.y50{bottom:53.880000pt;}
.y57{bottom:54.933333pt;}
.y5e{bottom:57.493333pt;}
.y19{bottom:58.666667pt;}
.y67{bottom:61.600000pt;}
.y4f{bottom:70.680000pt;}
.y56{bottom:71.733333pt;}
.y2{bottom:72.566667pt;}
.y5d{bottom:74.426667pt;}
.y18{bottom:77.066667pt;}
.y66{bottom:78.533333pt;}
.y4e{bottom:87.640000pt;}
.y55{bottom:88.666667pt;}
.y5c{bottom:91.226667pt;}
.y65{bottom:95.333333pt;}
.y17{bottom:95.466667pt;}
.y79{bottom:95.900000pt;}
.y3a{bottom:97.366667pt;}
.y4d{bottom:104.440000pt;}
.ya0{bottom:108.300000pt;}
.y114{bottom:112.566667pt;}
.yf4{bottom:114.566667pt;}
.y78{bottom:117.100000pt;}
.y39{bottom:119.500000pt;}
.y113{bottom:133.773333pt;}
.y9f{bottom:134.306667pt;}
.y77{bottom:134.826667pt;}
.yf3{bottom:135.626667pt;}
.ycb{bottom:140.440000pt;}
.y38{bottom:141.626667pt;}
.y112{bottom:154.973333pt;}
.y9e{bottom:155.373333pt;}
.yf2{bottom:156.840000pt;}
.yca{bottom:161.640000pt;}
.y54{bottom:162.973333pt;}
.y37{bottom:163.640000pt;}
.y111{bottom:176.173333pt;}
.y9d{bottom:176.560000pt;}
.yf1{bottom:178.040000pt;}
.yc9{bottom:182.840000pt;}
.y36{bottom:185.773333pt;}
.y110{bottom:197.240000pt;}
.y9c{bottom:197.773333pt;}
.yf0{bottom:199.106667pt;}
.yc8{bottom:203.893333pt;}
.y35{bottom:207.773333pt;}
.y10f{bottom:218.440000pt;}
.y9b{bottom:218.960000pt;}
.yef{bottom:220.306667pt;}
.yc7{bottom:225.106667pt;}
.y34{bottom:229.906667pt;}
.y10e{bottom:239.640000pt;}
.y9a{bottom:240.040000pt;}
.yee{bottom:241.506667pt;}
.yc6{bottom:246.293333pt;}
.y33{bottom:252.040000pt;}
.y10d{bottom:260.706667pt;}
.y99{bottom:261.226667pt;}
.yed{bottom:262.573333pt;}
.y4c{bottom:265.893333pt;}
.yc5{bottom:267.373333pt;}
.y32{bottom:274.040000pt;}
.y10c{bottom:281.893333pt;}
.y98{bottom:282.440000pt;}
.yec{bottom:283.773333pt;}
.yc4{bottom:288.573333pt;}
.y31{bottom:296.173333pt;}
.y10b{bottom:303.106667pt;}
.y97{bottom:303.506667pt;}
.yeb{bottom:304.973333pt;}
.yc3{bottom:309.773333pt;}
.y30{bottom:318.173333pt;}
.y10a{bottom:324.173333pt;}
.y96{bottom:324.706667pt;}
.yea{bottom:326.040000pt;}
.yc2{bottom:330.840000pt;}
.y2f{bottom:340.333333pt;}
.y109{bottom:345.400000pt;}
.y95{bottom:346.066667pt;}
.ye9{bottom:347.266667pt;}
.yc1{bottom:352.066667pt;}
.y2e{bottom:362.466667pt;}
.y108{bottom:366.600000pt;}
.y94{bottom:367.533333pt;}
.ye8{bottom:368.466667pt;}
.yc0{bottom:373.266667pt;}
.y93{bottom:378.200000pt;}
.y2d{bottom:384.466667pt;}
.y47{bottom:384.600000pt;}
.y107{bottom:387.666667pt;}
.ye7{bottom:389.666667pt;}
.ybf{bottom:394.333333pt;}
.ye6{bottom:405.266667pt;}
.y2c{bottom:406.600000pt;}
.y106{bottom:408.866667pt;}
.ybe{bottom:415.533333pt;}
.ye5{bottom:426.866667pt;}
.y92{bottom:427.933333pt;}
.y2b{bottom:428.600000pt;}
.y105{bottom:430.066667pt;}
.ybd{bottom:436.733333pt;}
.y91{bottom:449.133333pt;}
.ye4{bottom:450.333333pt;}
.y2a{bottom:450.733333pt;}
.y104{bottom:451.133333pt;}
.ybc{bottom:457.933333pt;}
.y46{bottom:459.000000pt;}
.y90{bottom:470.333333pt;}
.y76{bottom:471.000000pt;}
.y103{bottom:472.333333pt;}
.y29{bottom:472.733333pt;}
.ye3{bottom:473.666667pt;}
.ybb{bottom:479.000000pt;}
.y45{bottom:480.066667pt;}
.y8f{bottom:491.400000pt;}
.y75{bottom:492.200000pt;}
.y102{bottom:493.533333pt;}
.y28{bottom:494.866667pt;}
.ye1{bottom:497.133333pt;}
.yba{bottom:500.200000pt;}
.y44{bottom:501.266667pt;}
.y8e{bottom:512.733333pt;}
.y74{bottom:513.400000pt;}
.y101{bottom:514.733333pt;}
.y27{bottom:517.000000pt;}
.ydf{bottom:520.466667pt;}
.yb9{bottom:521.400000pt;}
.y43{bottom:522.466667pt;}
.y8d{bottom:534.333333pt;}
.y73{bottom:534.600000pt;}
.y100{bottom:535.800000pt;}
.y26{bottom:539.000000pt;}
.yb8{bottom:542.466667pt;}
.y42{bottom:543.533333pt;}
.yde{bottom:550.066667pt;}
.y72{bottom:555.666667pt;}
.y8c{bottom:555.800000pt;}
.yff{bottom:557.000000pt;}
.y25{bottom:561.133333pt;}
.yb7{bottom:563.666667pt;}
.y41{bottom:564.733333pt;}
.ydd{bottom:571.266667pt;}
.y71{bottom:576.866667pt;}
.yfe{bottom:578.200000pt;}
.y24{bottom:583.133333pt;}
.yb6{bottom:584.866667pt;}
.y40{bottom:585.933333pt;}
.ydc{bottom:592.466667pt;}
.y70{bottom:598.066667pt;}
.yfd{bottom:599.266667pt;}
.y23{bottom:605.266667pt;}
.yb5{bottom:605.933333pt;}
.y3f{bottom:607.133333pt;}
.ydb{bottom:613.533333pt;}
.y6f{bottom:619.133333pt;}
.y8b{bottom:619.266667pt;}
.yfc{bottom:620.466667pt;}
.yb4{bottom:627.133333pt;}
.y22{bottom:627.400000pt;}
.y3e{bottom:628.200000pt;}
.yda{bottom:634.733333pt;}
.y6e{bottom:640.333333pt;}
.yfb{bottom:641.666667pt;}
.yb3{bottom:648.333333pt;}
.y21{bottom:649.400000pt;}
.yd9{bottom:655.973333pt;}
.y6d{bottom:661.573333pt;}
.y8a{bottom:661.706667pt;}
.yfa{bottom:662.773333pt;}
.yb2{bottom:669.440000pt;}
.y3d{bottom:670.640000pt;}
.y20{bottom:671.573333pt;}
.yd8{bottom:677.040000pt;}
.y6c{bottom:682.640000pt;}
.y89{bottom:683.173333pt;}
.yf9{bottom:683.973333pt;}
.yb1{bottom:690.640000pt;}
.y3c{bottom:691.706667pt;}
.yd7{bottom:698.240000pt;}
.y1f{bottom:700.640000pt;}
.y6b{bottom:703.840000pt;}
.y88{bottom:704.373333pt;}
.yf8{bottom:705.173333pt;}
.y3b{bottom:709.440000pt;}
.yb0{bottom:711.840000pt;}
.y1e{bottom:715.573333pt;}
.y64{bottom:719.440000pt;}
.y87{bottom:725.573333pt;}
.yf7{bottom:726.240000pt;}
.yaf{bottom:732.906667pt;}
.yd6{bottom:740.506667pt;}
.y86{bottom:747.040000pt;}
.yf6{bottom:747.440000pt;}
.y1d{bottom:752.373333pt;}
.yae{bottom:754.106667pt;}
.yd5{bottom:761.706667pt;}
.y85{bottom:768.373333pt;}
.yf5{bottom:768.640000pt;}
.y16{bottom:770.773333pt;}
.yad{bottom:775.306667pt;}
.yd4{bottom:782.906667pt;}
.y84{bottom:789.706667pt;}
.yac{bottom:792.906667pt;}
.yd3{bottom:803.973333pt;}
.y83{bottom:810.906667pt;}
.yaa{bottom:813.440000pt;}
.yd2{bottom:826.240000pt;}
.y62{bottom:829.040000pt;}
.y82{bottom:832.106667pt;}
.yab{bottom:837.173333pt;}
.yd1{bottom:848.640000pt;}
.ya9{bottom:851.573333pt;}
.y81{bottom:853.306667pt;}
.yd0{bottom:869.706667pt;}
.ya8{bottom:872.773333pt;}
.y80{bottom:874.373333pt;}
.y15{bottom:884.373333pt;}
.ycf{bottom:892.106667pt;}
.ya7{bottom:893.840000pt;}
.y7f{bottom:895.573333pt;}
.y14{bottom:901.440000pt;}
.yce{bottom:914.373333pt;}
.ya6{bottom:915.040000pt;}
.y7e{bottom:916.773333pt;}
.y13{bottom:919.840000pt;}
.y5b{bottom:931.973333pt;}
.ycd{bottom:935.573333pt;}
.ya5{bottom:936.240000pt;}
.y7d{bottom:937.840000pt;}
.y12{bottom:938.240000pt;}
.y11{bottom:956.640000pt;}
.ya4{bottom:957.573333pt;}
.ycc{bottom:957.840000pt;}
.y7c{bottom:959.040000pt;}
.y10{bottom:975.066667pt;}
.ya3{bottom:979.066667pt;}
.y7b{bottom:980.266667pt;}
.ya2{bottom:1000.666667pt;}
.y7a{bottom:1001.333333pt;}
.yf{bottom:1004.133333pt;}
.ya1{bottom:1022.266667pt;}
.ye{bottom:1022.533333pt;}
.y1{bottom:1046.133333pt;}
.y4{bottom:1068.933333pt;}
.y8{bottom:1073.600000pt;}
.h8{height:15.900000pt;}
.h10{height:18.400000pt;}
.h27{height:20.933333pt;}
.h26{height:22.666667pt;}
.h25{height:22.800000pt;}
.h11{height:36.800000pt;}
.h6{height:40.266667pt;}
.h3{height:43.200000pt;}
.h13{height:46.781250pt;}
.h7{height:47.109375pt;}
.h5{height:49.726562pt;}
.h16{height:50.731771pt;}
.h18{height:51.705729pt;}
.h4{height:52.343750pt;}
.ha{height:55.343750pt;}
.h23{height:56.223958pt;}
.hf{height:56.406250pt;}
.hd{height:57.578125pt;}
.h9{height:58.351562pt;}
.h15{height:59.125000pt;}
.hc{height:62.812500pt;}
.h12{height:63.843750pt;}
.hb{height:64.500000pt;}
.h24{height:65.781915pt;}
.h14{height:67.466667pt;}
.h2{height:73.281250pt;}
.h1d{height:79.375000pt;}
.h1e{height:79.690625pt;}
.h1f{height:81.508333pt;}
.h1c{height:82.041667pt;}
.h22{height:82.575000pt;}
.h19{height:102.266667pt;}
.h1a{height:104.833333pt;}
.h21{height:105.479167pt;}
.h1b{height:108.933333pt;}
.he{height:110.386667pt;}
.h17{height:118.033333pt;}
.h20{height:127.908333pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w10{width:102.833333pt;}
.wc{width:112.400000pt;}
.w9{width:112.433333pt;}
.wa{width:112.653333pt;}
.wd{width:112.700000pt;}
.we{width:122.266667pt;}
.wb{width:122.300000pt;}
.w6{width:158.533333pt;}
.w5{width:233.773333pt;}
.wf{width:235.226667pt;}
.w3{width:251.106667pt;}
.w4{width:264.693333pt;}
.w7{width:662.906667pt;}
.w8{width:666.906667pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.133333pt;}
.x9{left:11.053333pt;}
.x7{left:14.400000pt;}
.xe{left:15.373333pt;}
.x1a{left:18.566667pt;}
.x5{left:19.733333pt;}
.xb{left:28.533333pt;}
.x3{left:37.866655pt;}
.x2a{left:61.866655pt;}
.x1b{left:85.066655pt;}
.x19{left:89.066667pt;}
.x18{left:93.066667pt;}
.xd{left:95.093333pt;}
.x6{left:108.166667pt;}
.x29{left:109.899988pt;}
.xa{left:113.893333pt;}
.x10{left:116.966655pt;}
.x25{left:119.366655pt;}
.x1f{left:151.640000pt;}
.x23{left:172.973322pt;}
.x24{left:222.693322pt;}
.x11{left:250.693322pt;}
.x20{left:264.973333pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x2b{left:274.440000pt;}
.x1e{left:394.599988pt;}
.x1c{left:406.466655pt;}
.x2c{left:430.333322pt;}
.x1d{left:453.666655pt;}
.x12{left:457.533322pt;}
.x26{left:479.666655pt;}
.x16{left:508.066655pt;}
.x21{left:520.200000pt;}
.x14{left:548.733322pt;}
.x27{left:550.466655pt;}
.xc{left:555.933333pt;}
.x15{left:567.306655pt;}
.x13{left:621.839988pt;}
.xf{left:634.360000pt;}
.x28{left:682.773322pt;}
.x2{left:728.106655pt;}
.x17{left:756.106655pt;}
.x22{left:760.506655pt;}
}




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