
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_16a63482092c5b4a9bc7a4b1.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_989fdd3354e962f89bc0f088.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_671ba2572702f82caabe1aaa.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_ab6c4e6c1bc9d9df307d2a19.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f4cd6758fb93950dca343c5f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_2804460ffa99668882451521.woff')format("woff");}.ff7{font-family:ff7;line-height:0.915000;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_bfadc4dbaa7b0c516ae843b7.woff')format("woff");}.ff8{font-family:ff8;line-height:0.960449;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_b9da876f063aaa9b0f2dc94a.woff')format("woff");}.ff9{font-family:ff9;line-height:0.708008;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_3849693b8d90cb638a16bdaa.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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_1575c4e2881e1c98c7acfdf5.woff')format("woff");}.ffb{font-family:ffb;line-height:1.649414;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:ffc;src:url('chunks/assets/font_8eb8a7511fad437878f3e572.woff')format("woff");}.ffc{font-family:ffc;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v4{vertical-align:-12.240000px;}
.v9{vertical-align:-8.640000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.520000px;}
.v5{vertical-align:12.240000px;}
.v2{vertical-align:15.120000px;}
.va{vertical-align:20.880000px;}
.vb{vertical-align:30.240000px;}
.v7{vertical-align:52.560000px;}
.v8{vertical-align:77.400000px;}
.lsa{letter-spacing:-0.199200px;}
.ls9{letter-spacing:-0.186600px;}
.ls12{letter-spacing:-0.180000px;}
.ls11{letter-spacing:-0.125400px;}
.lsc{letter-spacing:-0.121200px;}
.ls5{letter-spacing:-0.090000px;}
.ls10{letter-spacing:-0.084600px;}
.lsb{letter-spacing:-0.013320px;}
.ls4{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.001800px;}
.ls7{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.ls14{letter-spacing:0.060480px;}
.ls6{letter-spacing:0.074160px;}
.ls1{letter-spacing:0.093600px;}
.ls22{letter-spacing:0.116400px;}
.ls8{letter-spacing:0.173400px;}
.lsd{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.199200px;}
.ls1b{letter-spacing:0.241200px;}
.ls17{letter-spacing:0.250200px;}
.ls0{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.374760px;}
.ls1a{letter-spacing:0.875520px;}
.ls1c{letter-spacing:1.620000px;}
.ls19{letter-spacing:2.252520px;}
.lsf{letter-spacing:5.492880px;}
.ls3{letter-spacing:8.373600px;}
.ls16{letter-spacing:13.210200px;}
.ls1e{letter-spacing:16.530120px;}
.ls18{letter-spacing:18.812520px;}
.ls15{letter-spacing:19.172520px;}
.ls21{letter-spacing:47.726640px;}
.ls20{letter-spacing:80.846640px;}
.ls1d{letter-spacing:101.972520px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{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);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws15{word-spacing:-76.650120px;}
.wsd{word-spacing:-60.120000px;}
.wsf{word-spacing:-59.933400px;}
.wse{word-spacing:-43.829640px;}
.ws10{word-spacing:-43.469640px;}
.ws11{word-spacing:-43.349640px;}
.ws14{word-spacing:-43.051680px;}
.ws12{word-spacing:-42.120000px;}
.ws13{word-spacing:-36.000000px;}
.ws8{word-spacing:-30.060000px;}
.wsa{word-spacing:-29.880000px;}
.ws7{word-spacing:-14.372400px;}
.wsc{word-spacing:-13.425600px;}
.ws3{word-spacing:-13.399800px;}
.wsb{word-spacing:-13.275360px;}
.ws1{word-spacing:-13.226400px;}
.ws6{word-spacing:-13.213080px;}
.ws9{word-spacing:-13.101000px;}
.ws4{word-spacing:-13.039800px;}
.ws5{word-spacing:-13.027200px;}
.ws0{word-spacing:-9.810000px;}
.ws2{word-spacing:0.000000px;}
._d{margin-left:-3.754080px;}
._e{margin-left:-2.044440px;}
._0{margin-left:-1.020000px;}
._3{width:1.174572px;}
._4{width:2.516400px;}
._8{width:3.667200px;}
._9{width:5.119201px;}
._b{width:6.377878px;}
._a{width:7.395000px;}
._6{width:9.098520px;}
._f{width:10.521000px;}
._c{width:12.204600px;}
._12{width:13.401000px;}
._5{width:14.718000px;}
._2{width:16.020828px;}
._1{width:17.279364px;}
._7{width:18.456600px;}
._10{width:19.479842px;}
._11{width:20.920798px;}
._15{width:22.035724px;}
._14{width:79.659000px;}
._13{width:110.730960px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y15b{bottom:3.420000px;}
.y159{bottom:4.410000px;}
.y13d{bottom:4.500000px;}
.yb4{bottom:7.830000px;}
.ye2{bottom:7.860000px;}
.yb2{bottom:7.920000px;}
.yd6{bottom:7.950000px;}
.y158{bottom:8.010000px;}
.y13c{bottom:9.720000px;}
.y13f{bottom:21.330000px;}
.y106{bottom:25.380000px;}
.yca{bottom:25.470000px;}
.y12c{bottom:35.190000px;}
.y2{bottom:73.350000px;}
.y28{bottom:74.250000px;}
.y1{bottom:101.610000px;}
.yc9{bottom:117.180000px;}
.y12b{bottom:118.890000px;}
.y8b{bottom:121.860000px;}
.y59{bottom:128.700000px;}
.y141{bottom:134.370000px;}
.y8a{bottom:139.500000px;}
.yea{bottom:140.310000px;}
.y11a{bottom:140.400000px;}
.y26{bottom:141.120000px;}
.y18c{bottom:143.640000px;}
.y58{bottom:146.250000px;}
.y140{bottom:152.010000px;}
.yc8{bottom:152.730000px;}
.y12a{bottom:154.530000px;}
.y103{bottom:154.890000px;}
.y89{bottom:157.050000px;}
.ye9{bottom:157.950000px;}
.y25{bottom:158.670000px;}
.y18b{bottom:161.190000px;}
.y15d{bottom:161.640000px;}
.y57{bottom:163.890000px;}
.yaf{bottom:164.070000px;}
.y13e{bottom:166.230000px;}
.y119{bottom:175.950000px;}
.yd8{bottom:176.670000px;}
.y15c{bottom:179.190000px;}
.y56{bottom:181.440000px;}
.yae{bottom:181.620000px;}
.y88{bottom:183.960000px;}
.yc7{bottom:184.950000px;}
.y129{bottom:186.750000px;}
.y18a{bottom:187.830000px;}
.y102{bottom:190.530000px;}
.yd7{bottom:191.610000px;}
.ye8{bottom:193.500000px;}
.y24{bottom:194.310000px;}
.yad{bottom:199.260000px;}
.y189{bottom:205.380000px;}
.y13b{bottom:210.780000px;}
.y15a{bottom:211.410000px;}
.y118{bottom:211.590000px;}
.y23{bottom:211.860000px;}
.yac{bottom:216.810000px;}
.y55{bottom:217.080000px;}
.yd5{bottom:218.970000px;}
.y101{bottom:222.750000px;}
.ye7{bottom:225.750000px;}
.y22{bottom:229.440000px;}
.y188{bottom:231.960000px;}
.y87{bottom:232.230000px;}
.yab{bottom:234.390000px;}
.y54{bottom:234.660000px;}
.y157{bottom:238.080000px;}
.yd4{bottom:246.360000px;}
.y21{bottom:247.080000px;}
.y117{bottom:247.170000px;}
.y187{bottom:249.600000px;}
.y86{bottom:249.870000px;}
.yaa{bottom:261.030000px;}
.y116{bottom:262.110000px;}
.y85{bottom:267.420000px;}
.y53{bottom:270.210000px;}
.yd3{bottom:273.720000px;}
.y186{bottom:276.150000px;}
.y20{bottom:282.630000px;}
.y84{bottom:284.970000px;}
.y52{bottom:287.850000px;}
.y115{bottom:289.470000px;}
.y185{bottom:293.790000px;}
.ya9{bottom:296.940000px;}
.y1f{bottom:300.270000px;}
.yd2{bottom:300.990000px;}
.y83{bottom:302.610000px;}
.y114{bottom:316.830000px;}
.y1e{bottom:317.820000px;}
.y184{bottom:320.340000px;}
.y51{bottom:323.400000px;}
.yd1{bottom:328.350000px;}
.y82{bottom:329.160000px;}
.y1d{bottom:335.370000px;}
.y183{bottom:337.890000px;}
.y50{bottom:341.040000px;}
.y113{bottom:344.100000px;}
.ya8{bottom:345.180000px;}
.y4f{bottom:358.590000px;}
.ya7{bottom:362.730000px;}
.y182{bottom:364.530000px;}
.y81{bottom:364.800000px;}
.y1c{bottom:371.010000px;}
.y112{bottom:371.460000px;}
.y4e{bottom:376.140000px;}
.yd0{bottom:377.040000px;}
.y181{bottom:382.080000px;}
.y80{bottom:382.350000px;}
.y1b{bottom:388.560000px;}
.y4d{bottom:393.780000px;}
.ya6{bottom:394.950000px;}
.y111{bottom:398.820000px;}
.y7f{bottom:399.900000px;}
.ya4{bottom:402.510000px;}
.y1a{bottom:406.200000px;}
.y180{bottom:408.720000px;}
.ya5{bottom:410.340000px;}
.y4c{bottom:411.330000px;}
.ycf{bottom:412.680000px;}
.y7e{bottom:417.540000px;}
.y17f{bottom:426.270000px;}
.yce{bottom:430.230000px;}
.y7d{bottom:435.090000px;}
.y19{bottom:441.750000px;}
.y4b{bottom:446.970000px;}
.y110{bottom:447.510000px;}
.ycd{bottom:447.780000px;}
.ya3{bottom:451.470000px;}
.y7c{bottom:452.730000px;}
.y17e{bottom:452.820000px;}
.y18{bottom:459.300000px;}
.y4a{bottom:464.520000px;}
.ya2{bottom:469.020000px;}
.y7b{bottom:470.280000px;}
.y17d{bottom:470.460000px;}
.y128{bottom:471.000000px;}
.y17{bottom:476.940000px;}
.y13a{bottom:479.280000px;}
.y49{bottom:482.070000px;}
.y10f{bottom:483.060000px;}
.ycc{bottom:483.420000px;}
.yc6{bottom:484.140000px;}
.ya1{bottom:486.660000px;}
.y7a{bottom:487.830000px;}
.y139{bottom:494.310000px;}
.y16{bottom:494.490000px;}
.y17c{bottom:497.010000px;}
.y127{bottom:498.360000px;}
.y48{bottom:499.710000px;}
.y100{bottom:500.250000px;}
.y10e{bottom:500.700000px;}
.y79{bottom:505.470000px;}
.yc5{bottom:511.500000px;}
.y15{bottom:512.130000px;}
.y17b{bottom:514.560000px;}
.ycb{bottom:515.640000px;}
.y10d{bottom:518.250000px;}
.y138{bottom:521.580000px;}
.ya0{bottom:522.210000px;}
.y78{bottom:523.020000px;}
.y126{bottom:525.630000px;}
.yff{bottom:527.610000px;}
.ye6{bottom:532.110000px;}
.y47{bottom:535.260000px;}
.yc4{bottom:538.860000px;}
.y156{bottom:539.580000px;}
.y77{bottom:540.660000px;}
.y17a{bottom:541.200000px;}
.y14{bottom:547.680000px;}
.y46{bottom:552.810000px;}
.y125{bottom:552.990000px;}
.y10c{bottom:553.890000px;}
.y155{bottom:554.520000px;}
.yfe{bottom:554.970000px;}
.y9f{bottom:557.760000px;}
.y179{bottom:558.750000px;}
.ye5{bottom:559.470000px;}
.y13{bottom:565.230000px;}
.yc3{bottom:566.220000px;}
.y137{bottom:566.490000px;}
.y45{bottom:570.450000px;}
.y9e{bottom:575.400000px;}
.y76{bottom:576.210000px;}
.y124{bottom:580.350000px;}
.y154{bottom:581.880000px;}
.yfd{bottom:582.240000px;}
.y12{bottom:582.870000px;}
.y178{bottom:585.390000px;}
.y10b{bottom:586.020000px;}
.ye4{bottom:586.830000px;}
.y44{bottom:588.000000px;}
.y9d{bottom:592.950000px;}
.yc2{bottom:593.490000px;}
.y75{bottom:593.760000px;}
.y136{bottom:593.850000px;}
.y11{bottom:600.420000px;}
.y177{bottom:602.940000px;}
.y43{bottom:605.640000px;}
.y123{bottom:607.710000px;}
.y153{bottom:609.240000px;}
.yfc{bottom:609.600000px;}
.y9c{bottom:610.590000px;}
.y74{bottom:611.400000px;}
.ye3{bottom:614.100000px;}
.yc1{bottom:620.850000px;}
.y135{bottom:621.210000px;}
.y42{bottom:623.190000px;}
.y73{bottom:628.950000px;}
.y176{bottom:629.490000px;}
.y122{bottom:634.980000px;}
.y10{bottom:635.970000px;}
.y152{bottom:636.510000px;}
.yfb{bottom:636.960000px;}
.y41{bottom:640.740000px;}
.ye1{bottom:641.460000px;}
.y9b{bottom:646.170000px;}
.y72{bottom:646.620000px;}
.y175{bottom:647.160000px;}
.yc0{bottom:648.240000px;}
.y134{bottom:648.600000px;}
.yf{bottom:653.640000px;}
.y40{bottom:658.410000px;}
.y121{bottom:662.370000px;}
.y9a{bottom:663.720000px;}
.y151{bottom:663.900000px;}
.yfa{bottom:664.350000px;}
.ye0{bottom:668.850000px;}
.ye{bottom:671.190000px;}
.y174{bottom:673.710000px;}
.ybf{bottom:675.600000px;}
.y133{bottom:675.870000px;}
.y3f{bottom:675.960000px;}
.y71{bottom:682.170000px;}
.yd{bottom:688.830000px;}
.y120{bottom:689.730000px;}
.y150{bottom:691.260000px;}
.y173{bottom:691.350000px;}
.yf9{bottom:691.620000px;}
.ydf{bottom:696.120000px;}
.y99{bottom:699.360000px;}
.y70{bottom:699.720000px;}
.ybe{bottom:702.870000px;}
.y132{bottom:703.230000px;}
.yc{bottom:706.380000px;}
.y172{bottom:708.900000px;}
.y3e{bottom:711.600000px;}
.y98{bottom:716.910000px;}
.y6f{bottom:717.360000px;}
.y14f{bottom:718.530000px;}
.yf8{bottom:718.980000px;}
.yde{bottom:723.480000px;}
.y3d{bottom:729.150000px;}
.ybd{bottom:730.230000px;}
.yb{bottom:733.290000px;}
.y97{bottom:734.550000px;}
.y6e{bottom:734.910000px;}
.y171{bottom:735.450000px;}
.y14e{bottom:745.890000px;}
.yf7{bottom:746.340000px;}
.y3c{bottom:746.700000px;}
.y131{bottom:748.140000px;}
.y96{bottom:752.100000px;}
.y6d{bottom:752.550000px;}
.y170{bottom:753.090000px;}
.y11f{bottom:755.970000px;}
.ybc{bottom:757.590000px;}
.y3b{bottom:764.340000px;}
.y95{bottom:769.650000px;}
.y6c{bottom:770.100000px;}
.ydd{bottom:772.170000px;}
.y14d{bottom:773.250000px;}
.yf6{bottom:773.610000px;}
.y16f{bottom:779.640000px;}
.ya{bottom:781.530000px;}
.y3a{bottom:781.890000px;}
.ybb{bottom:784.860000px;}
.y6b{bottom:787.650000px;}
.y11e{bottom:791.610000px;}
.y130{bottom:796.830000px;}
.y16e{bottom:797.280000px;}
.y39{bottom:799.530000px;}
.yf5{bottom:800.970000px;}
.y6a{bottom:805.290000px;}
.ydc{bottom:807.810000px;}
.y11d{bottom:809.160000px;}
.yba{bottom:812.220000px;}
.y38{bottom:817.080000px;}
.y9{bottom:817.170000px;}
.y14c{bottom:821.940000px;}
.y94{bottom:822.840000px;}
.y16d{bottom:824.190000px;}
.ydb{bottom:825.360000px;}
.yf4{bottom:828.330000px;}
.y12f{bottom:829.860000px;}
.y37{bottom:834.630000px;}
.yb9{bottom:839.580000px;}
.y93{bottom:840.390000px;}
.y69{bottom:840.840000px;}
.y11c{bottom:844.710000px;}
.y14b{bottom:845.880000px;}
.y36{bottom:852.270000px;}
.y8{bottom:852.990000px;}
.yf3{bottom:855.690000px;}
.y12e{bottom:857.130000px;}
.y92{bottom:858.030000px;}
.y68{bottom:858.390000px;}
.yda{bottom:861.000000px;}
.yb8{bottom:866.940000px;}
.y35{bottom:869.820000px;}
.y16c{bottom:872.430000px;}
.y14a{bottom:873.240000px;}
.y91{bottom:875.580000px;}
.y67{bottom:876.030000px;}
.y11b{bottom:876.930000px;}
.yf2{bottom:882.960000px;}
.y12d{bottom:884.490000px;}
.y34{bottom:887.460000px;}
.y7{bottom:888.990000px;}
.y16b{bottom:889.980000px;}
.yd9{bottom:893.220000px;}
.yb7{bottom:894.210000px;}
.y149{bottom:900.600000px;}
.y33{bottom:905.010000px;}
.y16a{bottom:907.620000px;}
.yf1{bottom:910.320000px;}
.y90{bottom:911.220000px;}
.y66{bottom:911.580000px;}
.y10a{bottom:911.850000px;}
.yb6{bottom:921.570000px;}
.y32{bottom:922.560000px;}
.y6{bottom:925.080000px;}
.y169{bottom:925.170000px;}
.y148{bottom:927.960000px;}
.y8f{bottom:928.770000px;}
.y65{bottom:929.220000px;}
.yf0{bottom:937.680000px;}
.y109{bottom:939.210000px;}
.y31{bottom:940.200000px;}
.y168{bottom:942.810000px;}
.y8e{bottom:946.320000px;}
.y64{bottom:946.770000px;}
.yb5{bottom:948.930000px;}
.y147{bottom:955.230000px;}
.y30{bottom:957.750000px;}
.y167{bottom:960.360000px;}
.y5{bottom:963.330000px;}
.y8d{bottom:963.960000px;}
.y63{bottom:964.320000px;}
.yef{bottom:965.040000px;}
.y108{bottom:966.480000px;}
.y190{bottom:972.960000px;}
.y2f{bottom:975.390000px;}
.yb3{bottom:976.290000px;}
.y166{bottom:977.910000px;}
.y8c{bottom:981.510000px;}
.y62{bottom:981.960000px;}
.y146{bottom:982.590000px;}
.y4{bottom:987.990000px;}
.y18f{bottom:990.510000px;}
.yee{bottom:992.310000px;}
.y107{bottom:993.840000px;}
.y165{bottom:995.550000px;}
.y61{bottom:999.510000px;}
.yb1{bottom:1003.560000px;}
.y145{bottom:1009.950000px;}
.y2e{bottom:1010.940000px;}
.y3{bottom:1012.650000px;}
.y164{bottom:1013.100000px;}
.y60{bottom:1017.150000px;}
.yed{bottom:1019.670000px;}
.y105{bottom:1021.200000px;}
.y2d{bottom:1028.490000px;}
.y163{bottom:1030.650000px;}
.y5f{bottom:1034.700000px;}
.y144{bottom:1037.220000px;}
.y2c{bottom:1046.130000px;}
.yec{bottom:1047.030000px;}
.y162{bottom:1048.290000px;}
.y5e{bottom:1052.250000px;}
.y18e{bottom:1061.250000px;}
.y2b{bottom:1063.680000px;}
.y143{bottom:1064.580000px;}
.y161{bottom:1065.870000px;}
.y5d{bottom:1069.920000px;}
.yeb{bottom:1074.330000px;}
.y18d{bottom:1078.920000px;}
.y160{bottom:1083.510000px;}
.y104{bottom:1087.470000px;}
.yb0{bottom:1087.920000px;}
.y2a{bottom:1090.620000px;}
.y142{bottom:1091.970000px;}
.y15f{bottom:1101.060000px;}
.y5c{bottom:1105.470000px;}
.y5b{bottom:1123.110000px;}
.y15e{bottom:1127.970000px;}
.y29{bottom:1139.220000px;}
.y5a{bottom:1140.660000px;}
.y27{bottom:1194.660000px;}
.h11{height:26.550000px;}
.h14{height:26.580000px;}
.h10{height:26.640000px;}
.h12{height:26.670000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h15{height:44.100000px;}
.h13{height:44.190000px;}
.h18{height:44.550000px;}
.h6{height:50.902383px;}
.h16{height:53.910000px;}
.h5{height:55.779258px;}
.ha{height:57.243164px;}
.h7{height:60.960938px;}
.h1a{height:61.793886px;}
.h9{height:62.585859px;}
.hc{height:66.783691px;}
.he{height:67.668574px;}
.h8{height:68.582109px;}
.hb{height:69.303691px;}
.h4{height:71.019492px;}
.hf{height:81.142383px;}
.hd{height:117.390234px;}
.h17{height:247.170000px;}
.h19{height:280.080000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w15{width:70.020000px;}
.wa{width:70.050000px;}
.w4{width:70.110000px;}
.w6{width:70.140000px;}
.w8{width:70.200000px;}
.w1b{width:112.500000px;}
.wf{width:112.530000px;}
.w11{width:112.620000px;}
.w12{width:118.350000px;}
.wc{width:118.440000px;}
.wb{width:118.470000px;}
.w9{width:118.530000px;}
.w10{width:118.620000px;}
.w7{width:118.650000px;}
.w13{width:118.710000px;}
.w16{width:124.320000px;}
.w3{width:126.930000px;}
.we{width:130.140000px;}
.w1c{width:130.170000px;}
.wd{width:130.260000px;}
.w5{width:130.500000px;}
.w17{width:130.530000px;}
.w14{width:150.780000px;}
.w18{width:297.390000px;}
.w19{width:302.070000px;}
.w1d{width:338.010000px;}
.w1e{width:342.480000px;}
.w1a{width:599.460000px;}
.w1f{width:680.490000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.740000px;}
.x2d{left:9.450000px;}
.xd{left:10.800000px;}
.xe{left:11.880000px;}
.xf{left:13.680000px;}
.x10{left:14.940000px;}
.xc{left:16.650000px;}
.x11{left:18.360000px;}
.x39{left:19.710000px;}
.x3a{left:22.680000px;}
.x34{left:24.690000px;}
.x19{left:34.950000px;}
.x44{left:36.270000px;}
.x2c{left:42.120000px;}
.x18{left:59.310000px;}
.x41{left:61.110000px;}
.x40{left:62.130000px;}
.x2e{left:65.070000px;}
.x52{left:66.720000px;}
.x1{left:68.040000px;}
.x37{left:75.360000px;}
.x4f{left:106.290000px;}
.x53{left:111.239987px;}
.x31{left:145.470000px;}
.x42{left:146.820000px;}
.x3b{left:152.760000px;}
.x4b{left:155.910000px;}
.x45{left:161.850000px;}
.x2{left:210.989987px;}
.x29{left:212.159987px;}
.x1b{left:214.679987px;}
.x20{left:245.100000px;}
.x7{left:246.540000px;}
.x1f{left:252.119987px;}
.x14{left:256.710000px;}
.x24{left:259.680000px;}
.x32{left:264.990000px;}
.x30{left:272.279987px;}
.x46{left:275.070000px;}
.x2b{left:280.109987px;}
.x1d{left:282.629987px;}
.x43{left:284.250000px;}
.x23{left:290.999987px;}
.x13{left:293.429987px;}
.x50{left:325.410000px;}
.x51{left:330.690000px;}
.x4{left:334.289987px;}
.x33{left:335.820000px;}
.x3c{left:342.930000px;}
.x47{left:345.990000px;}
.x25{left:373.020000px;}
.x9{left:374.190000px;}
.x15{left:376.080000px;}
.x6{left:390.209987px;}
.x5{left:405.419987px;}
.x26{left:443.940000px;}
.xa{left:445.110000px;}
.x16{left:447.000000px;}
.x35{left:455.010000px;}
.x48{left:459.240000px;}
.x4c{left:465.270000px;}
.x3d{left:468.060000px;}
.x36{left:525.930000px;}
.x49{left:530.160000px;}
.x4d{left:536.190000px;}
.x3e{left:538.890000px;}
.x27{left:563.280000px;}
.x17{left:566.340000px;}
.xb{left:576.420000px;}
.x21{left:577.860000px;}
.x1c{left:596.129987px;}
.x22{left:598.379987px;}
.x2a{left:605.699987px;}
.x1e{left:609.659987px;}
.x12{left:622.079987px;}
.x2f{left:625.049987px;}
.x28{left:636.929987px;}
.x1a{left:645.569987px;}
.x4a{left:661.140000px;}
.x4e{left:667.080000px;}
.x3f{left:670.140000px;}
.x38{left:677.430000px;}
.x3{left:800.099987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v4{vertical-align:-10.880000pt;}
.v9{vertical-align:-7.680000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.240000pt;}
.v5{vertical-align:10.880000pt;}
.v2{vertical-align:13.440000pt;}
.va{vertical-align:18.560000pt;}
.vb{vertical-align:26.880000pt;}
.v7{vertical-align:46.720000pt;}
.v8{vertical-align:68.800000pt;}
.lsa{letter-spacing:-0.177067pt;}
.ls9{letter-spacing:-0.165867pt;}
.ls12{letter-spacing:-0.160000pt;}
.ls11{letter-spacing:-0.111467pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls5{letter-spacing:-0.080000pt;}
.ls10{letter-spacing:-0.075200pt;}
.lsb{letter-spacing:-0.011840pt;}
.ls4{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.001600pt;}
.ls7{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.ls14{letter-spacing:0.053760pt;}
.ls6{letter-spacing:0.065920pt;}
.ls1{letter-spacing:0.083200pt;}
.ls22{letter-spacing:0.103467pt;}
.ls8{letter-spacing:0.154133pt;}
.lsd{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.177067pt;}
.ls1b{letter-spacing:0.214400pt;}
.ls17{letter-spacing:0.222400pt;}
.ls0{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.333120pt;}
.ls1a{letter-spacing:0.778240pt;}
.ls1c{letter-spacing:1.440000pt;}
.ls19{letter-spacing:2.002240pt;}
.lsf{letter-spacing:4.882560pt;}
.ls3{letter-spacing:7.443200pt;}
.ls16{letter-spacing:11.742400pt;}
.ls1e{letter-spacing:14.693440pt;}
.ls18{letter-spacing:16.722240pt;}
.ls15{letter-spacing:17.042240pt;}
.ls21{letter-spacing:42.423680pt;}
.ls20{letter-spacing:71.863680pt;}
.ls1d{letter-spacing:90.642240pt;}
.ws15{word-spacing:-68.133440pt;}
.wsd{word-spacing:-53.440000pt;}
.wsf{word-spacing:-53.274133pt;}
.wse{word-spacing:-38.959680pt;}
.ws10{word-spacing:-38.639680pt;}
.ws11{word-spacing:-38.533013pt;}
.ws14{word-spacing:-38.268160pt;}
.ws12{word-spacing:-37.440000pt;}
.ws13{word-spacing:-32.000000pt;}
.ws8{word-spacing:-26.720000pt;}
.wsa{word-spacing:-26.560000pt;}
.ws7{word-spacing:-12.775467pt;}
.wsc{word-spacing:-11.933867pt;}
.ws3{word-spacing:-11.910933pt;}
.wsb{word-spacing:-11.800320pt;}
.ws1{word-spacing:-11.756800pt;}
.ws6{word-spacing:-11.744960pt;}
.ws9{word-spacing:-11.645333pt;}
.ws4{word-spacing:-11.590933pt;}
.ws5{word-spacing:-11.579733pt;}
.ws0{word-spacing:-8.720000pt;}
.ws2{word-spacing:0.000000pt;}
._d{margin-left:-3.336960pt;}
._e{margin-left:-1.817280pt;}
._0{margin-left:-0.906667pt;}
._3{width:1.044064pt;}
._4{width:2.236800pt;}
._8{width:3.259733pt;}
._9{width:4.550401pt;}
._b{width:5.669225pt;}
._a{width:6.573334pt;}
._6{width:8.087574pt;}
._f{width:9.352000pt;}
._c{width:10.848534pt;}
._12{width:11.912000pt;}
._5{width:13.082667pt;}
._2{width:14.240736pt;}
._1{width:15.359435pt;}
._7{width:16.405866pt;}
._10{width:17.315415pt;}
._11{width:18.596265pt;}
._15{width:19.587310pt;}
._14{width:70.808000pt;}
._13{width:98.427520pt;}
.fs8{font-size:32.000000pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y15b{bottom:3.040000pt;}
.y159{bottom:3.920000pt;}
.y13d{bottom:4.000000pt;}
.yb4{bottom:6.960000pt;}
.ye2{bottom:6.986667pt;}
.yb2{bottom:7.040000pt;}
.yd6{bottom:7.066667pt;}
.y158{bottom:7.120000pt;}
.y13c{bottom:8.640000pt;}
.y13f{bottom:18.960000pt;}
.y106{bottom:22.560000pt;}
.yca{bottom:22.640000pt;}
.y12c{bottom:31.280000pt;}
.y2{bottom:65.200000pt;}
.y28{bottom:66.000000pt;}
.y1{bottom:90.320000pt;}
.yc9{bottom:104.160000pt;}
.y12b{bottom:105.680000pt;}
.y8b{bottom:108.320000pt;}
.y59{bottom:114.400000pt;}
.y141{bottom:119.440000pt;}
.y8a{bottom:124.000000pt;}
.yea{bottom:124.720000pt;}
.y11a{bottom:124.800000pt;}
.y26{bottom:125.440000pt;}
.y18c{bottom:127.680000pt;}
.y58{bottom:130.000000pt;}
.y140{bottom:135.120000pt;}
.yc8{bottom:135.760000pt;}
.y12a{bottom:137.360000pt;}
.y103{bottom:137.680000pt;}
.y89{bottom:139.600000pt;}
.ye9{bottom:140.400000pt;}
.y25{bottom:141.040000pt;}
.y18b{bottom:143.280000pt;}
.y15d{bottom:143.680000pt;}
.y57{bottom:145.680000pt;}
.yaf{bottom:145.840000pt;}
.y13e{bottom:147.760000pt;}
.y119{bottom:156.400000pt;}
.yd8{bottom:157.040000pt;}
.y15c{bottom:159.280000pt;}
.y56{bottom:161.280000pt;}
.yae{bottom:161.440000pt;}
.y88{bottom:163.520000pt;}
.yc7{bottom:164.400000pt;}
.y129{bottom:166.000000pt;}
.y18a{bottom:166.960000pt;}
.y102{bottom:169.360000pt;}
.yd7{bottom:170.320000pt;}
.ye8{bottom:172.000000pt;}
.y24{bottom:172.720000pt;}
.yad{bottom:177.120000pt;}
.y189{bottom:182.560000pt;}
.y13b{bottom:187.360000pt;}
.y15a{bottom:187.920000pt;}
.y118{bottom:188.080000pt;}
.y23{bottom:188.320000pt;}
.yac{bottom:192.720000pt;}
.y55{bottom:192.960000pt;}
.yd5{bottom:194.640000pt;}
.y101{bottom:198.000000pt;}
.ye7{bottom:200.666667pt;}
.y22{bottom:203.946667pt;}
.y188{bottom:206.186667pt;}
.y87{bottom:206.426667pt;}
.yab{bottom:208.346667pt;}
.y54{bottom:208.586667pt;}
.y157{bottom:211.626667pt;}
.yd4{bottom:218.986667pt;}
.y21{bottom:219.626667pt;}
.y117{bottom:219.706667pt;}
.y187{bottom:221.866667pt;}
.y86{bottom:222.106667pt;}
.yaa{bottom:232.026667pt;}
.y116{bottom:232.986667pt;}
.y85{bottom:237.706667pt;}
.y53{bottom:240.186667pt;}
.yd3{bottom:243.306667pt;}
.y186{bottom:245.466667pt;}
.y20{bottom:251.226667pt;}
.y84{bottom:253.306667pt;}
.y52{bottom:255.866667pt;}
.y115{bottom:257.306667pt;}
.y185{bottom:261.146667pt;}
.ya9{bottom:263.946667pt;}
.y1f{bottom:266.906667pt;}
.yd2{bottom:267.546667pt;}
.y83{bottom:268.986667pt;}
.y114{bottom:281.626667pt;}
.y1e{bottom:282.506667pt;}
.y184{bottom:284.746667pt;}
.y51{bottom:287.466667pt;}
.yd1{bottom:291.866667pt;}
.y82{bottom:292.586667pt;}
.y1d{bottom:298.106667pt;}
.y183{bottom:300.346667pt;}
.y50{bottom:303.146667pt;}
.y113{bottom:305.866667pt;}
.ya8{bottom:306.826667pt;}
.y4f{bottom:318.746667pt;}
.ya7{bottom:322.426667pt;}
.y182{bottom:324.026667pt;}
.y81{bottom:324.266667pt;}
.y1c{bottom:329.786667pt;}
.y112{bottom:330.186667pt;}
.y4e{bottom:334.346667pt;}
.yd0{bottom:335.146667pt;}
.y181{bottom:339.626667pt;}
.y80{bottom:339.866667pt;}
.y1b{bottom:345.386667pt;}
.y4d{bottom:350.026667pt;}
.ya6{bottom:351.066667pt;}
.y111{bottom:354.506667pt;}
.y7f{bottom:355.466667pt;}
.ya4{bottom:357.786667pt;}
.y1a{bottom:361.066667pt;}
.y180{bottom:363.306667pt;}
.ya5{bottom:364.746667pt;}
.y4c{bottom:365.626667pt;}
.ycf{bottom:366.826667pt;}
.y7e{bottom:371.146667pt;}
.y17f{bottom:378.906667pt;}
.yce{bottom:382.426667pt;}
.y7d{bottom:386.746667pt;}
.y19{bottom:392.666667pt;}
.y4b{bottom:397.306667pt;}
.y110{bottom:397.786667pt;}
.ycd{bottom:398.026667pt;}
.ya3{bottom:401.306667pt;}
.y7c{bottom:402.426667pt;}
.y17e{bottom:402.506667pt;}
.y18{bottom:408.266667pt;}
.y4a{bottom:412.906667pt;}
.ya2{bottom:416.906667pt;}
.y7b{bottom:418.026667pt;}
.y17d{bottom:418.186667pt;}
.y128{bottom:418.666667pt;}
.y17{bottom:423.946667pt;}
.y13a{bottom:426.026667pt;}
.y49{bottom:428.506667pt;}
.y10f{bottom:429.386667pt;}
.ycc{bottom:429.706667pt;}
.yc6{bottom:430.346667pt;}
.ya1{bottom:432.586667pt;}
.y7a{bottom:433.626667pt;}
.y139{bottom:439.386667pt;}
.y16{bottom:439.546667pt;}
.y17c{bottom:441.786667pt;}
.y127{bottom:442.986667pt;}
.y48{bottom:444.186667pt;}
.y100{bottom:444.666667pt;}
.y10e{bottom:445.066667pt;}
.y79{bottom:449.306667pt;}
.yc5{bottom:454.666667pt;}
.y15{bottom:455.226667pt;}
.y17b{bottom:457.386667pt;}
.ycb{bottom:458.346667pt;}
.y10d{bottom:460.666667pt;}
.y138{bottom:463.626667pt;}
.ya0{bottom:464.186667pt;}
.y78{bottom:464.906667pt;}
.y126{bottom:467.226667pt;}
.yff{bottom:468.986667pt;}
.ye6{bottom:472.986667pt;}
.y47{bottom:475.786667pt;}
.yc4{bottom:478.986667pt;}
.y156{bottom:479.626667pt;}
.y77{bottom:480.586667pt;}
.y17a{bottom:481.066667pt;}
.y14{bottom:486.826667pt;}
.y46{bottom:491.386667pt;}
.y125{bottom:491.546667pt;}
.y10c{bottom:492.346667pt;}
.y155{bottom:492.906667pt;}
.yfe{bottom:493.306667pt;}
.y9f{bottom:495.786667pt;}
.y179{bottom:496.666667pt;}
.ye5{bottom:497.306667pt;}
.y13{bottom:502.426667pt;}
.yc3{bottom:503.306667pt;}
.y137{bottom:503.546667pt;}
.y45{bottom:507.066667pt;}
.y9e{bottom:511.466667pt;}
.y76{bottom:512.186667pt;}
.y124{bottom:515.866667pt;}
.y154{bottom:517.226667pt;}
.yfd{bottom:517.546667pt;}
.y12{bottom:518.106667pt;}
.y178{bottom:520.346667pt;}
.y10b{bottom:520.906667pt;}
.ye4{bottom:521.626667pt;}
.y44{bottom:522.666667pt;}
.y9d{bottom:527.066667pt;}
.yc2{bottom:527.546667pt;}
.y75{bottom:527.786667pt;}
.y136{bottom:527.866667pt;}
.y11{bottom:533.706667pt;}
.y177{bottom:535.946667pt;}
.y43{bottom:538.346667pt;}
.y123{bottom:540.186667pt;}
.y153{bottom:541.546667pt;}
.yfc{bottom:541.866667pt;}
.y9c{bottom:542.746667pt;}
.y74{bottom:543.466667pt;}
.ye3{bottom:545.866667pt;}
.yc1{bottom:551.866667pt;}
.y135{bottom:552.186667pt;}
.y42{bottom:553.946667pt;}
.y73{bottom:559.066667pt;}
.y176{bottom:559.546667pt;}
.y122{bottom:564.426667pt;}
.y10{bottom:565.306667pt;}
.y152{bottom:565.786667pt;}
.yfb{bottom:566.186667pt;}
.y41{bottom:569.546667pt;}
.ye1{bottom:570.186667pt;}
.y9b{bottom:574.373333pt;}
.y72{bottom:574.773333pt;}
.y175{bottom:575.253333pt;}
.yc0{bottom:576.213333pt;}
.y134{bottom:576.533333pt;}
.yf{bottom:581.013333pt;}
.y40{bottom:585.253333pt;}
.y121{bottom:588.773333pt;}
.y9a{bottom:589.973333pt;}
.y151{bottom:590.133333pt;}
.yfa{bottom:590.533333pt;}
.ye0{bottom:594.533333pt;}
.ye{bottom:596.613333pt;}
.y174{bottom:598.853333pt;}
.ybf{bottom:600.533333pt;}
.y133{bottom:600.773333pt;}
.y3f{bottom:600.853333pt;}
.y71{bottom:606.373333pt;}
.yd{bottom:612.293333pt;}
.y120{bottom:613.093333pt;}
.y150{bottom:614.453333pt;}
.y173{bottom:614.533333pt;}
.yf9{bottom:614.773333pt;}
.ydf{bottom:618.773333pt;}
.y99{bottom:621.653333pt;}
.y70{bottom:621.973333pt;}
.ybe{bottom:624.773333pt;}
.y132{bottom:625.093333pt;}
.yc{bottom:627.893333pt;}
.y172{bottom:630.133333pt;}
.y3e{bottom:632.533333pt;}
.y98{bottom:637.253333pt;}
.y6f{bottom:637.653333pt;}
.y14f{bottom:638.693333pt;}
.yf8{bottom:639.093333pt;}
.yde{bottom:643.093333pt;}
.y3d{bottom:648.133333pt;}
.ybd{bottom:649.093333pt;}
.yb{bottom:651.813333pt;}
.y97{bottom:652.933333pt;}
.y6e{bottom:653.253333pt;}
.y171{bottom:653.733333pt;}
.y14e{bottom:663.013333pt;}
.yf7{bottom:663.413333pt;}
.y3c{bottom:663.733333pt;}
.y131{bottom:665.013333pt;}
.y96{bottom:668.533333pt;}
.y6d{bottom:668.933333pt;}
.y170{bottom:669.413333pt;}
.y11f{bottom:671.973333pt;}
.ybc{bottom:673.413333pt;}
.y3b{bottom:679.413333pt;}
.y95{bottom:684.133333pt;}
.y6c{bottom:684.533333pt;}
.ydd{bottom:686.373333pt;}
.y14d{bottom:687.333333pt;}
.yf6{bottom:687.653333pt;}
.y16f{bottom:693.013333pt;}
.ya{bottom:694.693333pt;}
.y3a{bottom:695.013333pt;}
.ybb{bottom:697.653333pt;}
.y6b{bottom:700.133333pt;}
.y11e{bottom:703.653333pt;}
.y130{bottom:708.293333pt;}
.y16e{bottom:708.693333pt;}
.y39{bottom:710.693333pt;}
.yf5{bottom:711.973333pt;}
.y6a{bottom:715.813333pt;}
.ydc{bottom:718.053333pt;}
.y11d{bottom:719.253333pt;}
.yba{bottom:721.973333pt;}
.y38{bottom:726.293333pt;}
.y9{bottom:726.373333pt;}
.y14c{bottom:730.613333pt;}
.y94{bottom:731.413333pt;}
.y16d{bottom:732.613333pt;}
.ydb{bottom:733.653333pt;}
.yf4{bottom:736.293333pt;}
.y12f{bottom:737.653333pt;}
.y37{bottom:741.893333pt;}
.yb9{bottom:746.293333pt;}
.y93{bottom:747.013333pt;}
.y69{bottom:747.413333pt;}
.y11c{bottom:750.853333pt;}
.y14b{bottom:751.893333pt;}
.y36{bottom:757.573333pt;}
.y8{bottom:758.213333pt;}
.yf3{bottom:760.613333pt;}
.y12e{bottom:761.893333pt;}
.y92{bottom:762.693333pt;}
.y68{bottom:763.013333pt;}
.yda{bottom:765.333333pt;}
.yb8{bottom:770.613333pt;}
.y35{bottom:773.173333pt;}
.y16c{bottom:775.493333pt;}
.y14a{bottom:776.213333pt;}
.y91{bottom:778.293333pt;}
.y67{bottom:778.693333pt;}
.y11b{bottom:779.493333pt;}
.yf2{bottom:784.853333pt;}
.y12d{bottom:786.213333pt;}
.y34{bottom:788.853333pt;}
.y7{bottom:790.213333pt;}
.y16b{bottom:791.093333pt;}
.yd9{bottom:793.973333pt;}
.yb7{bottom:794.853333pt;}
.y149{bottom:800.533333pt;}
.y33{bottom:804.453333pt;}
.y16a{bottom:806.773333pt;}
.yf1{bottom:809.173333pt;}
.y90{bottom:809.973333pt;}
.y66{bottom:810.293333pt;}
.y10a{bottom:810.533333pt;}
.yb6{bottom:819.173333pt;}
.y32{bottom:820.053333pt;}
.y6{bottom:822.293333pt;}
.y169{bottom:822.373333pt;}
.y148{bottom:824.853333pt;}
.y8f{bottom:825.573333pt;}
.y65{bottom:825.973333pt;}
.yf0{bottom:833.493333pt;}
.y109{bottom:834.853333pt;}
.y31{bottom:835.733333pt;}
.y168{bottom:838.053333pt;}
.y8e{bottom:841.173333pt;}
.y64{bottom:841.573333pt;}
.yb5{bottom:843.493333pt;}
.y147{bottom:849.093333pt;}
.y30{bottom:851.333333pt;}
.y167{bottom:853.653333pt;}
.y5{bottom:856.293333pt;}
.y8d{bottom:856.853333pt;}
.y63{bottom:857.173333pt;}
.yef{bottom:857.813333pt;}
.y108{bottom:859.093333pt;}
.y190{bottom:864.853333pt;}
.y2f{bottom:867.013333pt;}
.yb3{bottom:867.813333pt;}
.y166{bottom:869.253333pt;}
.y8c{bottom:872.453333pt;}
.y62{bottom:872.853333pt;}
.y146{bottom:873.413333pt;}
.y4{bottom:878.213333pt;}
.y18f{bottom:880.453333pt;}
.yee{bottom:882.053333pt;}
.y107{bottom:883.413333pt;}
.y165{bottom:884.933333pt;}
.y61{bottom:888.453333pt;}
.yb1{bottom:892.053333pt;}
.y145{bottom:897.733333pt;}
.y2e{bottom:898.613333pt;}
.y3{bottom:900.133333pt;}
.y164{bottom:900.533333pt;}
.y60{bottom:904.133333pt;}
.yed{bottom:906.373333pt;}
.y105{bottom:907.733333pt;}
.y2d{bottom:914.213333pt;}
.y163{bottom:916.133333pt;}
.y5f{bottom:919.733333pt;}
.y144{bottom:921.973333pt;}
.y2c{bottom:929.893333pt;}
.yec{bottom:930.693333pt;}
.y162{bottom:931.813333pt;}
.y5e{bottom:935.333333pt;}
.y18e{bottom:943.333333pt;}
.y2b{bottom:945.493333pt;}
.y143{bottom:946.293333pt;}
.y161{bottom:947.440000pt;}
.y5d{bottom:951.040000pt;}
.yeb{bottom:954.960000pt;}
.y18d{bottom:959.040000pt;}
.y160{bottom:963.120000pt;}
.y104{bottom:966.640000pt;}
.yb0{bottom:967.040000pt;}
.y2a{bottom:969.440000pt;}
.y142{bottom:970.640000pt;}
.y15f{bottom:978.720000pt;}
.y5c{bottom:982.640000pt;}
.y5b{bottom:998.320000pt;}
.y15e{bottom:1002.640000pt;}
.y29{bottom:1012.640000pt;}
.y5a{bottom:1013.920000pt;}
.y27{bottom:1061.920000pt;}
.h11{height:23.600000pt;}
.h14{height:23.626667pt;}
.h10{height:23.680000pt;}
.h12{height:23.706667pt;}
.h2{height:26.686563pt;}
.h3{height:33.867188pt;}
.h15{height:39.200000pt;}
.h13{height:39.280000pt;}
.h18{height:39.600000pt;}
.h6{height:45.246562pt;}
.h16{height:47.920000pt;}
.h5{height:49.581562pt;}
.ha{height:50.882812pt;}
.h7{height:54.187500pt;}
.h1a{height:54.927899pt;}
.h9{height:55.631875pt;}
.hc{height:59.363281pt;}
.he{height:60.149844pt;}
.h8{height:60.961875pt;}
.hb{height:61.603281pt;}
.h4{height:63.128437pt;}
.hf{height:72.126562pt;}
.hd{height:104.346875pt;}
.h17{height:219.706667pt;}
.h19{height:248.960000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w15{width:62.240000pt;}
.wa{width:62.266667pt;}
.w4{width:62.320000pt;}
.w6{width:62.346667pt;}
.w8{width:62.400000pt;}
.w1b{width:100.000000pt;}
.wf{width:100.026667pt;}
.w11{width:100.106667pt;}
.w12{width:105.200000pt;}
.wc{width:105.280000pt;}
.wb{width:105.306667pt;}
.w9{width:105.360000pt;}
.w10{width:105.440000pt;}
.w7{width:105.466667pt;}
.w13{width:105.520000pt;}
.w16{width:110.506667pt;}
.w3{width:112.826667pt;}
.we{width:115.680000pt;}
.w1c{width:115.706667pt;}
.wd{width:115.786667pt;}
.w5{width:116.000000pt;}
.w17{width:116.026667pt;}
.w14{width:134.026667pt;}
.w18{width:264.346667pt;}
.w19{width:268.506667pt;}
.w1d{width:300.453333pt;}
.w1e{width:304.426667pt;}
.w1a{width:532.853333pt;}
.w1f{width:604.880000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.880000pt;}
.x2d{left:8.400000pt;}
.xd{left:9.600000pt;}
.xe{left:10.560000pt;}
.xf{left:12.160000pt;}
.x10{left:13.280000pt;}
.xc{left:14.800000pt;}
.x11{left:16.320000pt;}
.x39{left:17.520000pt;}
.x3a{left:20.160000pt;}
.x34{left:21.946667pt;}
.x19{left:31.066667pt;}
.x44{left:32.240000pt;}
.x2c{left:37.440000pt;}
.x18{left:52.720000pt;}
.x41{left:54.320000pt;}
.x40{left:55.226667pt;}
.x2e{left:57.840000pt;}
.x52{left:59.306667pt;}
.x1{left:60.480000pt;}
.x37{left:66.986667pt;}
.x4f{left:94.480000pt;}
.x53{left:98.879988pt;}
.x31{left:129.306667pt;}
.x42{left:130.506667pt;}
.x3b{left:135.786667pt;}
.x4b{left:138.586667pt;}
.x45{left:143.866667pt;}
.x2{left:187.546655pt;}
.x29{left:188.586655pt;}
.x1b{left:190.826655pt;}
.x20{left:217.866667pt;}
.x7{left:219.146667pt;}
.x1f{left:224.106655pt;}
.x14{left:228.186667pt;}
.x24{left:230.826667pt;}
.x32{left:235.546667pt;}
.x30{left:242.026655pt;}
.x46{left:244.506667pt;}
.x2b{left:248.986655pt;}
.x1d{left:251.226655pt;}
.x43{left:252.666667pt;}
.x23{left:258.666655pt;}
.x13{left:260.826655pt;}
.x50{left:289.253333pt;}
.x51{left:293.946667pt;}
.x4{left:297.146655pt;}
.x33{left:298.506667pt;}
.x3c{left:304.826667pt;}
.x47{left:307.546667pt;}
.x25{left:331.573333pt;}
.x9{left:332.613333pt;}
.x15{left:334.293333pt;}
.x6{left:346.853322pt;}
.x5{left:360.373322pt;}
.x26{left:394.613333pt;}
.xa{left:395.653333pt;}
.x16{left:397.333333pt;}
.x35{left:404.453333pt;}
.x48{left:408.213333pt;}
.x4c{left:413.573333pt;}
.x3d{left:416.053333pt;}
.x36{left:467.493333pt;}
.x49{left:471.253333pt;}
.x4d{left:476.613333pt;}
.x3e{left:479.013333pt;}
.x27{left:500.693333pt;}
.x17{left:503.413333pt;}
.xb{left:512.373333pt;}
.x21{left:513.653333pt;}
.x1c{left:529.893322pt;}
.x22{left:531.893322pt;}
.x2a{left:538.399988pt;}
.x1e{left:541.919988pt;}
.x12{left:552.959988pt;}
.x2f{left:555.599988pt;}
.x28{left:566.159988pt;}
.x1a{left:573.839988pt;}
.x4a{left:587.680000pt;}
.x4e{left:592.960000pt;}
.x3f{left:595.680000pt;}
.x38{left:602.160000pt;}
.x3{left:711.199988pt;}
}




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