
    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_e8985c81ccdab7789717b072.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d513a2c18823ffb2718c3027.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a4ef4fed3c45edf0c53337ff.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2f70bcda4b014df0c0482a32.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_956b794d44b5f0581533a41c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c8aa4dc43d38aa25f5aaead5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.330566;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_e882e51c9aad52ec7426dccf.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_eab63c10b9dd8d95c100240c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6a9bbd3e83c6444097b85a69.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a235188eedc83a75faf8a550.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.990723;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;}
.m4{transform:matrix(0.000000,-0.249041,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249041,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249041,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.249578,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249578,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249578,0.250000,0.000000,0,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);}
.m3{transform:matrix(0.250423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250423,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250963,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-18.000000px;}
.v8{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:15.120000px;}
.v4{vertical-align:18.000000px;}
.v1{vertical-align:23.760000px;}
.v6{vertical-align:35.479241px;}
.v7{vertical-align:36.748205px;}
.ls5{letter-spacing:-1.656000px;}
.ls8{letter-spacing:-0.504000px;}
.lsb{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.259800px;}
.ls1e{letter-spacing:-0.206400px;}
.ls15{letter-spacing:-0.126000px;}
.ls6{letter-spacing:-0.053400px;}
.ls4{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.018000px;}
.ls1a{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.053400px;}
.ls13{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.106800px;}
.ls12{letter-spacing:0.108000px;}
.ls9{letter-spacing:0.126000px;}
.ls7{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.153360px;}
.ls1{letter-spacing:0.180000px;}
.lse{letter-spacing:0.206400px;}
.lsa{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.ls1c{letter-spacing:0.298800px;}
.ls17{letter-spacing:0.311760px;}
.ls0{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.480000px;}
.ls1d{letter-spacing:0.924000px;}
.ls18{letter-spacing:1.596000px;}
.ls19{letter-spacing:1.620000px;}
.ls16{letter-spacing:2.340000px;}
.ls2{letter-spacing:7.380000px;}
.ls11{letter-spacing:16.506720px;}
.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;}
}
.ws4{word-spacing:-59.760000px;}
.ws1{word-spacing:-16.344000px;}
.ws18{word-spacing:-15.864000px;}
.wsa{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.199800px;}
.wse{word-spacing:-15.146400px;}
.wsd{word-spacing:-15.046800px;}
.wsb{word-spacing:-14.993400px;}
.ws3{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886600px;}
.wsc{word-spacing:-14.680200px;}
.ws12{word-spacing:-14.580000px;}
.ws11{word-spacing:-13.860000px;}
.ws5{word-spacing:-13.626000px;}
.ws15{word-spacing:-13.518000px;}
.ws7{word-spacing:-13.500000px;}
.ws0{word-spacing:-12.060000px;}
.wsf{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws10{word-spacing:-9.000000px;}
.ws9{word-spacing:0.000000px;}
.ws14{word-spacing:7.205112px;}
.ws17{word-spacing:7.446753px;}
.ws16{word-spacing:8.391890px;}
.ws13{word-spacing:14.590733px;}
._6{margin-left:-2.616000px;}
._1{margin-left:-1.512000px;}
._0{width:1.199280px;}
._e{width:2.407440px;}
._8{width:4.026000px;}
._7{width:5.208000px;}
._3{width:6.469200px;}
._2{width:7.570800px;}
._9{width:8.964000px;}
._4{width:9.990000px;}
._5{width:11.988000px;}
._1b{width:13.038000px;}
._d{width:15.282000px;}
._c{width:17.010000px;}
._16{width:18.144000px;}
._15{width:19.170000px;}
._18{width:20.304000px;}
._13{width:21.492000px;}
._14{width:22.842000px;}
._17{width:24.840000px;}
._24{width:26.037840px;}
._21{width:27.131280px;}
._1a{width:28.215600px;}
._b{width:29.304000px;}
._a{width:30.534000px;}
._20{width:31.929120px;}
._10{width:33.048000px;}
._19{width:34.411440px;}
._1d{width:35.449200px;}
._1c{width:36.718560px;}
._1e{width:38.359440px;}
._22{width:39.627360px;}
._23{width:41.078880px;}
._26{width:42.259680px;}
._33{width:43.266240px;}
._32{width:44.341920px;}
._2d{width:45.621360px;}
._12{width:46.854000px;}
._11{width:48.330000px;}
._25{width:49.572720px;}
._2c{width:50.893200px;}
._f{width:51.894000px;}
._2a{width:53.660400px;}
._29{width:54.680400px;}
._30{width:56.234160px;}
._2f{width:57.507120px;}
._34{width:59.299920px;}
._31{width:60.793920px;}
._2e{width:76.540560px;}
._35{width:82.946880px;}
._1f{width:105.591840px;}
._2b{width:107.763840px;}
._27{width:315.354712px;}
._28{width:326.231547px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(46,46,46);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fsb{font-size:38.862357px;}
.fs3{font-size:38.880000px;}
.fsf{font-size:40.252319px;}
.fs8{font-size:41.760000px;}
.fs6{font-size:45.360000px;}
.fsc{font-size:47.110347px;}
.fs7{font-size:48.000000px;}
.fs2{font-size:48.240000px;}
.fs10{font-size:48.690310px;}
.fsd{font-size:51.959941px;}
.fsa{font-size:52.047800px;}
.fs11{font-size:53.702547px;}
.fse{font-size:53.909355px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y65{bottom:2.526000px;}
.yc2{bottom:10.440000px;}
.yc6{bottom:11.880000px;}
.yb9{bottom:13.140000px;}
.ybe{bottom:14.445000px;}
.yc9{bottom:14.760000px;}
.y63{bottom:16.926000px;}
.yd7{bottom:18.131133px;}
.yb6{bottom:18.360000px;}
.ye8{bottom:18.739206px;}
.yc3{bottom:19.080000px;}
.ybb{bottom:20.160000px;}
.yc7{bottom:20.520000px;}
.yba{bottom:21.600000px;}
.yca{bottom:21.780000px;}
.ybf{bottom:23.085000px;}
.yb8{bottom:28.800000px;}
.yc1{bottom:29.160000px;}
.yc8{bottom:30.420000px;}
.yc5{bottom:30.600000px;}
.y62{bottom:31.326000px;}
.ybd{bottom:33.165000px;}
.yd8{bottom:34.951720px;}
.ye9{bottom:36.123913px;}
.y64{bottom:42.000000px;}
.y61{bottom:45.726000px;}
.yd9{bottom:83.967265px;}
.yea{bottom:86.783316px;}
.y168{bottom:126.036000px;}
.yb4{bottom:129.996000px;}
.y33{bottom:132.696000px;}
.yda{bottom:132.982810px;}
.y5f{bottom:133.776000px;}
.yf4{bottom:134.496000px;}
.yd6{bottom:136.657532px;}
.yeb{bottom:137.442719px;}
.y167{bottom:142.956000px;}
.y96{bottom:149.256000px;}
.yf3{bottom:149.796000px;}
.ye7{bottom:149.830107px;}
.y32{bottom:150.690000px;}
.y112{bottom:151.230000px;}
.y5e{bottom:151.770000px;}
.y13c{bottom:156.270000px;}
.yf2{bottom:165.090000px;}
.y31{bottom:168.690000px;}
.y5d{bottom:169.770000px;}
.y111{bottom:170.670000px;}
.y95{bottom:173.190000px;}
.y166{bottom:177.870000px;}
.yf1{bottom:180.390000px;}
.ydb{bottom:182.004127px;}
.y30{bottom:186.690000px;}
.y5c{bottom:187.770000px;}
.yec{bottom:188.108089px;}
.y110{bottom:190.110000px;}
.y94{bottom:191.190000px;}
.y165{bottom:194.790000px;}
.yf0{bottom:195.690000px;}
.y5b{bottom:205.770000px;}
.y13b{bottom:207.030000px;}
.y93{bottom:209.190000px;}
.y10f{bottom:209.550000px;}
.y2f{bottom:210.630000px;}
.yc4{bottom:210.990000px;}
.y164{bottom:211.710000px;}
.yef{bottom:223.050000px;}
.ye6{bottom:223.094994px;}
.y5a{bottom:223.770000px;}
.y92{bottom:227.190000px;}
.y2e{bottom:228.630000px;}
.y10e{bottom:228.990000px;}
.ydc{bottom:231.019672px;}
.yed{bottom:238.767492px;}
.y59{bottom:241.770000px;}
.y13a{bottom:241.950000px;}
.y91{bottom:245.190000px;}
.y2d{bottom:246.630000px;}
.y10d{bottom:257.430000px;}
.y139{bottom:258.870000px;}
.y58{bottom:259.770000px;}
.y90{bottom:263.190000px;}
.y163{bottom:263.550000px;}
.y2c{bottom:264.630000px;}
.yc0{bottom:267.510000px;}
.y138{bottom:275.790000px;}
.y10c{bottom:276.870000px;}
.y57{bottom:277.770000px;}
.ydd{bottom:280.208416px;}
.y162{bottom:280.470000px;}
.y2b{bottom:282.630000px;}
.y8f{bottom:287.130000px;}
.yee{bottom:289.605904px;}
.y137{bottom:292.710000px;}
.y56{bottom:295.770000px;}
.y10b{bottom:296.310000px;}
.y161{bottom:297.390000px;}
.y8e{bottom:311.070000px;}
.y2a{bottom:315.570000px;}
.y10a{bottom:315.750000px;}
.y55{bottom:319.710000px;}
.ybc{bottom:321.330000px;}
.y136{bottom:327.630000px;}
.y160{bottom:332.355000px;}
.y8d{bottom:335.055000px;}
.y54{bottom:337.755000px;}
.y109{bottom:344.235000px;}
.y135{bottom:344.595000px;}
.y8c{bottom:353.055000px;}
.y53{bottom:355.755000px;}
.y29{bottom:358.455000px;}
.y134{bottom:361.515000px;}
.y108{bottom:363.675000px;}
.y15f{bottom:367.275000px;}
.y8b{bottom:371.055000px;}
.y52{bottom:373.755000px;}
.yb7{bottom:383.115000px;}
.y28{bottom:384.015000px;}
.y15e{bottom:384.195000px;}
.y8a{bottom:389.055000px;}
.y51{bottom:391.755000px;}
.y133{bottom:396.435000px;}
.y15d{bottom:401.115000px;}
.y27{bottom:402.015000px;}
.y107{bottom:402.555000px;}
.y89{bottom:407.055000px;}
.y132{bottom:413.355000px;}
.y50{bottom:415.695000px;}
.y15c{bottom:418.035000px;}
.y106{bottom:421.995000px;}
.y26{bottom:422.355000px;}
.y88{bottom:425.055000px;}
.y131{bottom:430.275000px;}
.y4f{bottom:433.695000px;}
.yb5{bottom:439.095000px;}
.y25{bottom:439.995000px;}
.y105{bottom:441.435000px;}
.y87{bottom:443.055000px;}
.y4e{bottom:451.695000px;}
.y15b{bottom:452.955000px;}
.y24{bottom:457.635000px;}
.y104{bottom:460.875000px;}
.y86{bottom:461.055000px;}
.y130{bottom:467.715000px;}
.y4d{bottom:469.695000px;}
.y15a{bottom:469.875000px;}
.y23{bottom:475.275000px;}
.y85{bottom:479.055000px;}
.y103{bottom:480.315000px;}
.y4c{bottom:487.695000px;}
.y22{bottom:492.915000px;}
.y84{bottom:497.055000px;}
.y102{bottom:499.755000px;}
.y159{bottom:504.795000px;}
.y12f{bottom:505.155000px;}
.y4b{bottom:505.695000px;}
.yb3{bottom:506.415000px;}
.y21{bottom:510.555000px;}
.y101{bottom:519.195000px;}
.y158{bottom:521.715000px;}
.yb2{bottom:524.415000px;}
.y12e{bottom:524.595000px;}
.y20{bottom:528.195000px;}
.y4a{bottom:529.635000px;}
.y83{bottom:529.995000px;}
.y157{bottom:538.635000px;}
.yb1{bottom:542.415000px;}
.y12d{bottom:544.035000px;}
.y1f{bottom:545.835000px;}
.y49{bottom:547.635000px;}
.ye5{bottom:554.475000px;}
.y156{bottom:555.555000px;}
.y82{bottom:556.635000px;}
.yb0{bottom:560.775000px;}
.y1e{bottom:563.475000px;}
.y48{bottom:565.635000px;}
.y100{bottom:567.075000px;}
.ye4{bottom:575.715000px;}
.yaf{bottom:578.415000px;}
.y81{bottom:580.575000px;}
.y1d{bottom:581.115000px;}
.y12c{bottom:582.915000px;}
.y47{bottom:583.635000px;}
.yff{bottom:586.515000px;}
.y155{bottom:590.475000px;}
.ye3{bottom:591.015000px;}
.yae{bottom:596.805000px;}
.y80{bottom:598.605000px;}
.y1c{bottom:598.785000px;}
.y46{bottom:601.665000px;}
.yfe{bottom:605.985000px;}
.ye2{bottom:606.345000px;}
.y154{bottom:607.425000px;}
.y12b{bottom:611.385000px;}
.yad{bottom:614.805000px;}
.y1b{bottom:616.425000px;}
.y7f{bottom:616.605000px;}
.y45{bottom:619.665000px;}
.ye1{bottom:621.645000px;}
.y153{bottom:624.345000px;}
.yfd{bottom:625.425000px;}
.yac{bottom:632.805000px;}
.y1a{bottom:634.065000px;}
.y7e{bottom:634.605000px;}
.ye0{bottom:636.945000px;}
.y12a{bottom:637.305000px;}
.y44{bottom:637.665000px;}
.y152{bottom:641.265000px;}
.yfc{bottom:644.865000px;}
.yab{bottom:650.805000px;}
.y19{bottom:651.705000px;}
.ydf{bottom:652.245000px;}
.y7d{bottom:652.605000px;}
.y43{bottom:655.665000px;}
.y151{bottom:658.185000px;}
.yde{bottom:664.305000px;}
.yd5{bottom:664.320007px;}
.y18{bottom:669.345000px;}
.y7c{bottom:670.605000px;}
.y42{bottom:673.665000px;}
.yaa{bottom:677.805000px;}
.yfb{bottom:683.745000px;}
.y129{bottom:684.825000px;}
.y17{bottom:686.985000px;}
.y7b{bottom:688.605000px;}
.y41{bottom:691.665000px;}
.y150{bottom:693.105000px;}
.ya9{bottom:703.725000px;}
.y128{bottom:704.265000px;}
.y16{bottom:704.625000px;}
.y7a{bottom:706.605000px;}
.y40{bottom:709.665000px;}
.y14f{bottom:710.025000px;}
.y15{bottom:722.265000px;}
.y127{bottom:723.705000px;}
.y79{bottom:724.605000px;}
.y14e{bottom:726.945000px;}
.y3f{bottom:733.605000px;}
.ya8{bottom:739.725000px;}
.y14{bottom:739.905000px;}
.y78{bottom:742.605000px;}
.y126{bottom:743.145000px;}
.y14d{bottom:743.865000px;}
.yfa{bottom:745.305000px;}
.y3e{bottom:751.605000px;}
.y13{bottom:757.545000px;}
.ya7{bottom:757.725000px;}
.y77{bottom:760.605000px;}
.y125{bottom:762.585000px;}
.y3d{bottom:769.605000px;}
.y12{bottom:775.185000px;}
.ya6{bottom:775.725000px;}
.yf9{bottom:775.905000px;}
.y76{bottom:778.605000px;}
.y14c{bottom:778.785000px;}
.y124{bottom:782.025000px;}
.y3c{bottom:787.605000px;}
.yf8{bottom:791.205000px;}
.y11{bottom:792.825000px;}
.ya5{bottom:793.725000px;}
.y14b{bottom:795.705000px;}
.y123{bottom:801.465000px;}
.y3b{bottom:805.605000px;}
.yf7{bottom:806.505000px;}
.y10{bottom:810.465000px;}
.y75{bottom:811.545000px;}
.ya4{bottom:811.725000px;}
.y14a{bottom:812.625000px;}
.y122{bottom:820.905000px;}
.y176{bottom:821.625000px;}
.yf6{bottom:821.805000px;}
.y3a{bottom:823.605000px;}
.yf{bottom:828.105000px;}
.y74{bottom:829.545000px;}
.yf5{bottom:833.865000px;}
.ya3{bottom:835.665000px;}
.y39{bottom:841.605000px;}
.ye{bottom:845.745000px;}
.y149{bottom:847.545000px;}
.y121{bottom:849.345000px;}
.y175{bottom:856.545000px;}
.y38{bottom:859.605000px;}
.yd{bottom:863.430000px;}
.y148{bottom:864.510000px;}
.y73{bottom:865.590000px;}
.y120{bottom:868.830000px;}
.y37{bottom:877.650000px;}
.yc{bottom:881.070000px;}
.y147{bottom:881.430000px;}
.ya2{bottom:883.590000px;}
.y11f{bottom:888.270000px;}
.y174{bottom:891.510000px;}
.y36{bottom:895.650000px;}
.yb{bottom:898.710000px;}
.y72{bottom:901.590000px;}
.y11e{bottom:907.710000px;}
.y173{bottom:908.430000px;}
.y35{bottom:913.650000px;}
.ya{bottom:916.350000px;}
.ya1{bottom:919.590000px;}
.y172{bottom:925.350000px;}
.y71{bottom:925.530000px;}
.y11d{bottom:927.150000px;}
.y34{bottom:931.650000px;}
.y146{bottom:933.270000px;}
.y9{bottom:935.790000px;}
.ya0{bottom:937.590000px;}
.y171{bottom:942.270000px;}
.y70{bottom:943.530000px;}
.y11c{bottom:946.590000px;}
.y145{bottom:950.190000px;}
.y8{bottom:955.590000px;}
.y6f{bottom:961.530000px;}
.y11b{bottom:966.030000px;}
.y9f{bottom:973.590000px;}
.y7{bottom:976.650000px;}
.y170{bottom:977.190000px;}
.y6e{bottom:979.530000px;}
.y144{bottom:985.110000px;}
.yd4{bottom:985.470000px;}
.y9e{bottom:991.590000px;}
.y6{bottom:993.570000px;}
.y16f{bottom:994.110000px;}
.y11a{bottom:994.470000px;}
.y6d{bottom:997.530000px;}
.y143{bottom:1002.030000px;}
.yd3{bottom:1003.470000px;}
.y9d{bottom:1009.590000px;}
.y5{bottom:1010.490000px;}
.y16e{bottom:1011.030000px;}
.y119{bottom:1013.910000px;}
.y6c{bottom:1015.530000px;}
.y142{bottom:1018.950000px;}
.yd2{bottom:1020.390000px;}
.y9c{bottom:1027.590000px;}
.y16d{bottom:1027.950000px;}
.y4{bottom:1031.910000px;}
.y118{bottom:1033.350000px;}
.y6b{bottom:1033.530000px;}
.yd1{bottom:1037.310000px;}
.y16c{bottom:1044.870000px;}
.y9b{bottom:1045.590000px;}
.y6a{bottom:1051.530000px;}
.y117{bottom:1052.790000px;}
.y141{bottom:1053.870000px;}
.yd0{bottom:1054.230000px;}
.y16b{bottom:1061.790000px;}
.y9a{bottom:1063.590000px;}
.y3{bottom:1064.130000px;}
.y69{bottom:1069.530000px;}
.y140{bottom:1070.790000px;}
.ycf{bottom:1071.150000px;}
.y116{bottom:1072.230000px;}
.y99{bottom:1081.590000px;}
.y68{bottom:1087.530000px;}
.y13f{bottom:1087.710000px;}
.yce{bottom:1088.070000px;}
.y115{bottom:1091.670000px;}
.y16a{bottom:1096.710000px;}
.y2{bottom:1103.730000px;}
.y13e{bottom:1104.630000px;}
.ycd{bottom:1104.990000px;}
.y98{bottom:1105.530000px;}
.y114{bottom:1111.110000px;}
.y67{bottom:1111.470000px;}
.y169{bottom:1113.630000px;}
.y13d{bottom:1121.550000px;}
.y97{bottom:1123.530000px;}
.y1{bottom:1124.610000px;}
.ycc{bottom:1127.130000px;}
.y66{bottom:1129.470000px;}
.y113{bottom:1130.580000px;}
.y60{bottom:1187.460278px;}
.ycb{bottom:1209.059967px;}
.hb{height:12.000000px;}
.h18{height:35.401769px;}
.h1c{height:36.589056px;}
.h19{height:39.046069px;}
.h1d{height:40.355576px;}
.h5{height:40.651172px;}
.h1e{height:41.522695px;}
.h15{height:47.344922px;}
.ha{height:48.281250px;}
.hf{height:49.500000px;}
.h12{height:52.740000px;}
.he{height:52.998047px;}
.h8{height:54.421875px;}
.h10{height:54.900000px;}
.h9{height:55.200000px;}
.h13{height:55.440000px;}
.h14{height:58.140000px;}
.hc{height:58.621992px;}
.h6{height:58.651172px;}
.hd{height:59.614102px;}
.h11{height:60.696000px;}
.h17{height:64.682936px;}
.h1b{height:66.996407px;}
.h3{height:70.664062px;}
.h4{height:71.104922px;}
.h7{height:74.004654px;}
.h2{height:84.898125px;}
.h16{height:317.475241px;}
.h1a{height:328.122564px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:106.723500px;}
.w4{width:113.400000px;}
.w6{width:115.956000px;}
.w5{width:137.196000px;}
.w2{width:240.756000px;}
.w9{width:319.718066px;}
.wa{width:339.823611px;}
.w7{width:368.608500px;}
.w8{width:439.512000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x1f{left:18.540000px;}
.x1d{left:21.600000px;}
.x19{left:28.440000px;}
.x1a{left:31.500000px;}
.x26{left:35.777079px;}
.x14{left:37.440000px;}
.x22{left:38.880000px;}
.x21{left:40.140000px;}
.x1c{left:42.300000px;}
.x18{left:46.080000px;}
.x1b{left:47.700000px;}
.x1e{left:49.860000px;}
.x20{left:52.920000px;}
.x16{left:56.700000px;}
.x7{left:59.580000px;}
.x4{left:70.380000px;}
.x2a{left:75.690010px;}
.x1{left:80.100000px;}
.x25{left:85.740006px;}
.x27{left:104.095599px;}
.x30{left:107.676000px;}
.x2b{left:116.444207px;}
.x6{left:180.030000px;}
.x8{left:193.710000px;}
.x5{left:198.570000px;}
.x2f{left:207.930000px;}
.xd{left:209.010000px;}
.x24{left:226.464020px;}
.x29{left:245.550000px;}
.x3{left:247.530000px;}
.x23{left:261.915756px;}
.xc{left:392.858276px;}
.x28{left:405.435000px;}
.x2c{left:415.515000px;}
.x2{left:446.295000px;}
.xa{left:461.085000px;}
.x9{left:471.525000px;}
.x11{left:476.925000px;}
.x12{left:488.625000px;}
.x31{left:509.145000px;}
.xb{left:543.684036px;}
.x15{left:586.725000px;}
.x2e{left:600.585000px;}
.xe{left:611.565000px;}
.x13{left:615.885000px;}
.x10{left:629.205000px;}
.xf{left:652.290000px;}
.x17{left:725.010000px;}
.x2d{left:809.970000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-16.000000pt;}
.v8{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:13.440000pt;}
.v4{vertical-align:16.000000pt;}
.v1{vertical-align:21.120000pt;}
.v6{vertical-align:31.537104pt;}
.v7{vertical-align:32.665071pt;}
.ls5{letter-spacing:-1.472000pt;}
.ls8{letter-spacing:-0.448000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.230933pt;}
.ls1e{letter-spacing:-0.183467pt;}
.ls15{letter-spacing:-0.112000pt;}
.ls6{letter-spacing:-0.047467pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.016000pt;}
.ls1a{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.047467pt;}
.ls13{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.094933pt;}
.ls12{letter-spacing:0.096000pt;}
.ls9{letter-spacing:0.112000pt;}
.ls7{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.136320pt;}
.ls1{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.183467pt;}
.lsa{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.ls1c{letter-spacing:0.265600pt;}
.ls17{letter-spacing:0.277120pt;}
.ls0{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.426667pt;}
.ls1d{letter-spacing:0.821333pt;}
.ls18{letter-spacing:1.418667pt;}
.ls19{letter-spacing:1.440000pt;}
.ls16{letter-spacing:2.080000pt;}
.ls2{letter-spacing:6.560000pt;}
.ls11{letter-spacing:14.672640pt;}
.ws4{word-spacing:-53.120000pt;}
.ws1{word-spacing:-14.528000pt;}
.ws18{word-spacing:-14.101333pt;}
.wsa{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.510933pt;}
.wse{word-spacing:-13.463467pt;}
.wsd{word-spacing:-13.374933pt;}
.wsb{word-spacing:-13.327467pt;}
.ws3{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232533pt;}
.wsc{word-spacing:-13.049067pt;}
.ws12{word-spacing:-12.960000pt;}
.ws11{word-spacing:-12.320000pt;}
.ws5{word-spacing:-12.112000pt;}
.ws15{word-spacing:-12.016000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws0{word-spacing:-10.720000pt;}
.wsf{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws10{word-spacing:-8.000000pt;}
.ws9{word-spacing:0.000000pt;}
.ws14{word-spacing:6.404544pt;}
.ws17{word-spacing:6.619336pt;}
.ws16{word-spacing:7.459457pt;}
.ws13{word-spacing:12.969541pt;}
._6{margin-left:-2.325333pt;}
._1{margin-left:-1.344000pt;}
._0{width:1.066027pt;}
._e{width:2.139947pt;}
._8{width:3.578667pt;}
._7{width:4.629333pt;}
._3{width:5.750400pt;}
._2{width:6.729600pt;}
._9{width:7.968000pt;}
._4{width:8.880000pt;}
._5{width:10.656000pt;}
._1b{width:11.589333pt;}
._d{width:13.584000pt;}
._c{width:15.120000pt;}
._16{width:16.128000pt;}
._15{width:17.040000pt;}
._18{width:18.048000pt;}
._13{width:19.104000pt;}
._14{width:20.304000pt;}
._17{width:22.080000pt;}
._24{width:23.144747pt;}
._21{width:24.116693pt;}
._1a{width:25.080533pt;}
._b{width:26.048000pt;}
._a{width:27.141333pt;}
._20{width:28.381440pt;}
._10{width:29.376000pt;}
._19{width:30.587947pt;}
._1d{width:31.510400pt;}
._1c{width:32.638720pt;}
._1e{width:34.097280pt;}
._22{width:35.224320pt;}
._23{width:36.514560pt;}
._26{width:37.564160pt;}
._33{width:38.458880pt;}
._32{width:39.415040pt;}
._2d{width:40.552320pt;}
._12{width:41.648000pt;}
._11{width:42.960000pt;}
._25{width:44.064640pt;}
._2c{width:45.238400pt;}
._f{width:46.128000pt;}
._2a{width:47.698133pt;}
._29{width:48.604800pt;}
._30{width:49.985920pt;}
._2f{width:51.117440pt;}
._34{width:52.711040pt;}
._31{width:54.039040pt;}
._2e{width:68.036053pt;}
._35{width:73.730560pt;}
._1f{width:93.859413pt;}
._2b{width:95.790080pt;}
._27{width:280.315299pt;}
._28{width:289.983598pt;}
.fs9{font-size:32.000000pt;}
.fsb{font-size:34.544317pt;}
.fs3{font-size:34.560000pt;}
.fsf{font-size:35.779839pt;}
.fs8{font-size:37.120000pt;}
.fs6{font-size:40.320000pt;}
.fsc{font-size:41.875864pt;}
.fs7{font-size:42.666667pt;}
.fs2{font-size:42.880000pt;}
.fs10{font-size:43.280275pt;}
.fsd{font-size:46.186614pt;}
.fsa{font-size:46.264711pt;}
.fs11{font-size:47.735598pt;}
.fse{font-size:47.919427pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y65{bottom:2.245333pt;}
.yc2{bottom:9.280000pt;}
.yc6{bottom:10.560000pt;}
.yb9{bottom:11.680000pt;}
.ybe{bottom:12.840000pt;}
.yc9{bottom:13.120000pt;}
.y63{bottom:15.045333pt;}
.yd7{bottom:16.116563pt;}
.yb6{bottom:16.320000pt;}
.ye8{bottom:16.657072pt;}
.yc3{bottom:16.960000pt;}
.ybb{bottom:17.920000pt;}
.yc7{bottom:18.240000pt;}
.yba{bottom:19.200000pt;}
.yca{bottom:19.360000pt;}
.ybf{bottom:20.520000pt;}
.yb8{bottom:25.600000pt;}
.yc1{bottom:25.920000pt;}
.yc8{bottom:27.040000pt;}
.yc5{bottom:27.200000pt;}
.y62{bottom:27.845333pt;}
.ybd{bottom:29.480000pt;}
.yd8{bottom:31.068196pt;}
.ye9{bottom:32.110145pt;}
.y64{bottom:37.333333pt;}
.y61{bottom:40.645333pt;}
.yd9{bottom:74.637569pt;}
.yea{bottom:77.140726pt;}
.y168{bottom:112.032000pt;}
.yb4{bottom:115.552000pt;}
.y33{bottom:117.952000pt;}
.yda{bottom:118.206942pt;}
.y5f{bottom:118.912000pt;}
.yf4{bottom:119.552000pt;}
.yd6{bottom:121.473362pt;}
.yeb{bottom:122.171306pt;}
.y167{bottom:127.072000pt;}
.y96{bottom:132.672000pt;}
.yf3{bottom:133.152000pt;}
.ye7{bottom:133.182317pt;}
.y32{bottom:133.946667pt;}
.y112{bottom:134.426667pt;}
.y5e{bottom:134.906667pt;}
.y13c{bottom:138.906667pt;}
.yf2{bottom:146.746667pt;}
.y31{bottom:149.946667pt;}
.y5d{bottom:150.906667pt;}
.y111{bottom:151.706667pt;}
.y95{bottom:153.946667pt;}
.y166{bottom:158.106667pt;}
.yf1{bottom:160.346667pt;}
.ydb{bottom:161.781447pt;}
.y30{bottom:165.946667pt;}
.y5c{bottom:166.906667pt;}
.yec{bottom:167.207190pt;}
.y110{bottom:168.986667pt;}
.y94{bottom:169.946667pt;}
.y165{bottom:173.146667pt;}
.yf0{bottom:173.946667pt;}
.y5b{bottom:182.906667pt;}
.y13b{bottom:184.026667pt;}
.y93{bottom:185.946667pt;}
.y10f{bottom:186.266667pt;}
.y2f{bottom:187.226667pt;}
.yc4{bottom:187.546667pt;}
.y164{bottom:188.186667pt;}
.yef{bottom:198.266667pt;}
.ye6{bottom:198.306661pt;}
.y5a{bottom:198.906667pt;}
.y92{bottom:201.946667pt;}
.y2e{bottom:203.226667pt;}
.y10e{bottom:203.546667pt;}
.ydc{bottom:205.350820pt;}
.yed{bottom:212.237771pt;}
.y59{bottom:214.906667pt;}
.y13a{bottom:215.066667pt;}
.y91{bottom:217.946667pt;}
.y2d{bottom:219.226667pt;}
.y10d{bottom:228.826667pt;}
.y139{bottom:230.106667pt;}
.y58{bottom:230.906667pt;}
.y90{bottom:233.946667pt;}
.y163{bottom:234.266667pt;}
.y2c{bottom:235.226667pt;}
.yc0{bottom:237.786667pt;}
.y138{bottom:245.146667pt;}
.y10c{bottom:246.106667pt;}
.y57{bottom:246.906667pt;}
.ydd{bottom:249.074148pt;}
.y162{bottom:249.306667pt;}
.y2b{bottom:251.226667pt;}
.y8f{bottom:255.226667pt;}
.yee{bottom:257.427470pt;}
.y137{bottom:260.186667pt;}
.y56{bottom:262.906667pt;}
.y10b{bottom:263.386667pt;}
.y161{bottom:264.346667pt;}
.y8e{bottom:276.506667pt;}
.y2a{bottom:280.506667pt;}
.y10a{bottom:280.666667pt;}
.y55{bottom:284.186667pt;}
.ybc{bottom:285.626667pt;}
.y136{bottom:291.226667pt;}
.y160{bottom:295.426667pt;}
.y8d{bottom:297.826667pt;}
.y54{bottom:300.226667pt;}
.y109{bottom:305.986667pt;}
.y135{bottom:306.306667pt;}
.y8c{bottom:313.826667pt;}
.y53{bottom:316.226667pt;}
.y29{bottom:318.626667pt;}
.y134{bottom:321.346667pt;}
.y108{bottom:323.266667pt;}
.y15f{bottom:326.466667pt;}
.y8b{bottom:329.826667pt;}
.y52{bottom:332.226667pt;}
.yb7{bottom:340.546667pt;}
.y28{bottom:341.346667pt;}
.y15e{bottom:341.506667pt;}
.y8a{bottom:345.826667pt;}
.y51{bottom:348.226667pt;}
.y133{bottom:352.386667pt;}
.y15d{bottom:356.546667pt;}
.y27{bottom:357.346667pt;}
.y107{bottom:357.826667pt;}
.y89{bottom:361.826667pt;}
.y132{bottom:367.426667pt;}
.y50{bottom:369.506667pt;}
.y15c{bottom:371.586667pt;}
.y106{bottom:375.106667pt;}
.y26{bottom:375.426667pt;}
.y88{bottom:377.826667pt;}
.y131{bottom:382.466667pt;}
.y4f{bottom:385.506667pt;}
.yb5{bottom:390.306667pt;}
.y25{bottom:391.106667pt;}
.y105{bottom:392.386667pt;}
.y87{bottom:393.826667pt;}
.y4e{bottom:401.506667pt;}
.y15b{bottom:402.626667pt;}
.y24{bottom:406.786667pt;}
.y104{bottom:409.666667pt;}
.y86{bottom:409.826667pt;}
.y130{bottom:415.746667pt;}
.y4d{bottom:417.506667pt;}
.y15a{bottom:417.666667pt;}
.y23{bottom:422.466667pt;}
.y85{bottom:425.826667pt;}
.y103{bottom:426.946667pt;}
.y4c{bottom:433.506667pt;}
.y22{bottom:438.146667pt;}
.y84{bottom:441.826667pt;}
.y102{bottom:444.226667pt;}
.y159{bottom:448.706667pt;}
.y12f{bottom:449.026667pt;}
.y4b{bottom:449.506667pt;}
.yb3{bottom:450.146667pt;}
.y21{bottom:453.826667pt;}
.y101{bottom:461.506667pt;}
.y158{bottom:463.746667pt;}
.yb2{bottom:466.146667pt;}
.y12e{bottom:466.306667pt;}
.y20{bottom:469.506667pt;}
.y4a{bottom:470.786667pt;}
.y83{bottom:471.106667pt;}
.y157{bottom:478.786667pt;}
.yb1{bottom:482.146667pt;}
.y12d{bottom:483.586667pt;}
.y1f{bottom:485.186667pt;}
.y49{bottom:486.786667pt;}
.ye5{bottom:492.866667pt;}
.y156{bottom:493.826667pt;}
.y82{bottom:494.786667pt;}
.yb0{bottom:498.466667pt;}
.y1e{bottom:500.866667pt;}
.y48{bottom:502.786667pt;}
.y100{bottom:504.066667pt;}
.ye4{bottom:511.746667pt;}
.yaf{bottom:514.146667pt;}
.y81{bottom:516.066667pt;}
.y1d{bottom:516.546667pt;}
.y12c{bottom:518.146667pt;}
.y47{bottom:518.786667pt;}
.yff{bottom:521.346667pt;}
.y155{bottom:524.866667pt;}
.ye3{bottom:525.346667pt;}
.yae{bottom:530.493333pt;}
.y80{bottom:532.093333pt;}
.y1c{bottom:532.253333pt;}
.y46{bottom:534.813333pt;}
.yfe{bottom:538.653333pt;}
.ye2{bottom:538.973333pt;}
.y154{bottom:539.933333pt;}
.y12b{bottom:543.453333pt;}
.yad{bottom:546.493333pt;}
.y1b{bottom:547.933333pt;}
.y7f{bottom:548.093333pt;}
.y45{bottom:550.813333pt;}
.ye1{bottom:552.573333pt;}
.y153{bottom:554.973333pt;}
.yfd{bottom:555.933333pt;}
.yac{bottom:562.493333pt;}
.y1a{bottom:563.613333pt;}
.y7e{bottom:564.093333pt;}
.ye0{bottom:566.173333pt;}
.y12a{bottom:566.493333pt;}
.y44{bottom:566.813333pt;}
.y152{bottom:570.013333pt;}
.yfc{bottom:573.213333pt;}
.yab{bottom:578.493333pt;}
.y19{bottom:579.293333pt;}
.ydf{bottom:579.773333pt;}
.y7d{bottom:580.093333pt;}
.y43{bottom:582.813333pt;}
.y151{bottom:585.053333pt;}
.yde{bottom:590.493333pt;}
.yd5{bottom:590.506673pt;}
.y18{bottom:594.973333pt;}
.y7c{bottom:596.093333pt;}
.y42{bottom:598.813333pt;}
.yaa{bottom:602.493333pt;}
.yfb{bottom:607.773333pt;}
.y129{bottom:608.733333pt;}
.y17{bottom:610.653333pt;}
.y7b{bottom:612.093333pt;}
.y41{bottom:614.813333pt;}
.y150{bottom:616.093333pt;}
.ya9{bottom:625.533333pt;}
.y128{bottom:626.013333pt;}
.y16{bottom:626.333333pt;}
.y7a{bottom:628.093333pt;}
.y40{bottom:630.813333pt;}
.y14f{bottom:631.133333pt;}
.y15{bottom:642.013333pt;}
.y127{bottom:643.293333pt;}
.y79{bottom:644.093333pt;}
.y14e{bottom:646.173333pt;}
.y3f{bottom:652.093333pt;}
.ya8{bottom:657.533333pt;}
.y14{bottom:657.693333pt;}
.y78{bottom:660.093333pt;}
.y126{bottom:660.573333pt;}
.y14d{bottom:661.213333pt;}
.yfa{bottom:662.493333pt;}
.y3e{bottom:668.093333pt;}
.y13{bottom:673.373333pt;}
.ya7{bottom:673.533333pt;}
.y77{bottom:676.093333pt;}
.y125{bottom:677.853333pt;}
.y3d{bottom:684.093333pt;}
.y12{bottom:689.053333pt;}
.ya6{bottom:689.533333pt;}
.yf9{bottom:689.693333pt;}
.y76{bottom:692.093333pt;}
.y14c{bottom:692.253333pt;}
.y124{bottom:695.133333pt;}
.y3c{bottom:700.093333pt;}
.yf8{bottom:703.293333pt;}
.y11{bottom:704.733333pt;}
.ya5{bottom:705.533333pt;}
.y14b{bottom:707.293333pt;}
.y123{bottom:712.413333pt;}
.y3b{bottom:716.093333pt;}
.yf7{bottom:716.893333pt;}
.y10{bottom:720.413333pt;}
.y75{bottom:721.373333pt;}
.ya4{bottom:721.533333pt;}
.y14a{bottom:722.333333pt;}
.y122{bottom:729.693333pt;}
.y176{bottom:730.333333pt;}
.yf6{bottom:730.493333pt;}
.y3a{bottom:732.093333pt;}
.yf{bottom:736.093333pt;}
.y74{bottom:737.373333pt;}
.yf5{bottom:741.213333pt;}
.ya3{bottom:742.813333pt;}
.y39{bottom:748.093333pt;}
.ye{bottom:751.773333pt;}
.y149{bottom:753.373333pt;}
.y121{bottom:754.973333pt;}
.y175{bottom:761.373333pt;}
.y38{bottom:764.093333pt;}
.yd{bottom:767.493333pt;}
.y148{bottom:768.453333pt;}
.y73{bottom:769.413333pt;}
.y120{bottom:772.293333pt;}
.y37{bottom:780.133333pt;}
.yc{bottom:783.173333pt;}
.y147{bottom:783.493333pt;}
.ya2{bottom:785.413333pt;}
.y11f{bottom:789.573333pt;}
.y174{bottom:792.453333pt;}
.y36{bottom:796.133333pt;}
.yb{bottom:798.853333pt;}
.y72{bottom:801.413333pt;}
.y11e{bottom:806.853333pt;}
.y173{bottom:807.493333pt;}
.y35{bottom:812.133333pt;}
.ya{bottom:814.533333pt;}
.ya1{bottom:817.413333pt;}
.y172{bottom:822.533333pt;}
.y71{bottom:822.693333pt;}
.y11d{bottom:824.133333pt;}
.y34{bottom:828.133333pt;}
.y146{bottom:829.573333pt;}
.y9{bottom:831.813333pt;}
.ya0{bottom:833.413333pt;}
.y171{bottom:837.573333pt;}
.y70{bottom:838.693333pt;}
.y11c{bottom:841.413333pt;}
.y145{bottom:844.613333pt;}
.y8{bottom:849.413333pt;}
.y6f{bottom:854.693333pt;}
.y11b{bottom:858.693333pt;}
.y9f{bottom:865.413333pt;}
.y7{bottom:868.133333pt;}
.y170{bottom:868.613333pt;}
.y6e{bottom:870.693333pt;}
.y144{bottom:875.653333pt;}
.yd4{bottom:875.973333pt;}
.y9e{bottom:881.413333pt;}
.y6{bottom:883.173333pt;}
.y16f{bottom:883.653333pt;}
.y11a{bottom:883.973333pt;}
.y6d{bottom:886.693333pt;}
.y143{bottom:890.693333pt;}
.yd3{bottom:891.973333pt;}
.y9d{bottom:897.413333pt;}
.y5{bottom:898.213333pt;}
.y16e{bottom:898.693333pt;}
.y119{bottom:901.253333pt;}
.y6c{bottom:902.693333pt;}
.y142{bottom:905.733333pt;}
.yd2{bottom:907.013333pt;}
.y9c{bottom:913.413333pt;}
.y16d{bottom:913.733333pt;}
.y4{bottom:917.253333pt;}
.y118{bottom:918.533333pt;}
.y6b{bottom:918.693333pt;}
.yd1{bottom:922.053333pt;}
.y16c{bottom:928.773333pt;}
.y9b{bottom:929.413333pt;}
.y6a{bottom:934.693333pt;}
.y117{bottom:935.813333pt;}
.y141{bottom:936.773333pt;}
.yd0{bottom:937.093333pt;}
.y16b{bottom:943.813333pt;}
.y9a{bottom:945.413333pt;}
.y3{bottom:945.893333pt;}
.y69{bottom:950.693333pt;}
.y140{bottom:951.813333pt;}
.ycf{bottom:952.133333pt;}
.y116{bottom:953.093333pt;}
.y99{bottom:961.413333pt;}
.y68{bottom:966.693333pt;}
.y13f{bottom:966.853333pt;}
.yce{bottom:967.173333pt;}
.y115{bottom:970.373333pt;}
.y16a{bottom:974.853333pt;}
.y2{bottom:981.093333pt;}
.y13e{bottom:981.893333pt;}
.ycd{bottom:982.213333pt;}
.y98{bottom:982.693333pt;}
.y114{bottom:987.653333pt;}
.y67{bottom:987.973333pt;}
.y169{bottom:989.893333pt;}
.y13d{bottom:996.933333pt;}
.y97{bottom:998.693333pt;}
.y1{bottom:999.653333pt;}
.ycc{bottom:1001.893333pt;}
.y66{bottom:1003.973333pt;}
.y113{bottom:1004.960000pt;}
.y60{bottom:1055.520247pt;}
.ycb{bottom:1074.719971pt;}
.hb{height:10.666667pt;}
.h18{height:31.468239pt;}
.h1c{height:32.523605pt;}
.h19{height:34.707617pt;}
.h1d{height:35.871623pt;}
.h5{height:36.134375pt;}
.h1e{height:36.909063pt;}
.h15{height:42.084375pt;}
.ha{height:42.916667pt;}
.hf{height:44.000000pt;}
.h12{height:46.880000pt;}
.he{height:47.109375pt;}
.h8{height:48.375000pt;}
.h10{height:48.800000pt;}
.h9{height:49.066667pt;}
.h13{height:49.280000pt;}
.h14{height:51.680000pt;}
.hc{height:52.108438pt;}
.h6{height:52.134375pt;}
.hd{height:52.990313pt;}
.h11{height:53.952000pt;}
.h17{height:57.495944pt;}
.h1b{height:59.552362pt;}
.h3{height:62.812500pt;}
.h4{height:63.204375pt;}
.h7{height:65.781915pt;}
.h2{height:75.465000pt;}
.h16{height:282.200214pt;}
.h1a{height:291.664501pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:94.865333pt;}
.w4{width:100.800000pt;}
.w6{width:103.072000pt;}
.w5{width:121.952000pt;}
.w2{width:214.005333pt;}
.w9{width:284.193837pt;}
.wa{width:302.065432pt;}
.w7{width:327.652000pt;}
.w8{width:390.677333pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1f{left:16.480000pt;}
.x1d{left:19.200000pt;}
.x19{left:25.280000pt;}
.x1a{left:28.000000pt;}
.x26{left:31.801848pt;}
.x14{left:33.280000pt;}
.x22{left:34.560000pt;}
.x21{left:35.680000pt;}
.x1c{left:37.600000pt;}
.x18{left:40.960000pt;}
.x1b{left:42.400000pt;}
.x1e{left:44.320000pt;}
.x20{left:47.040000pt;}
.x16{left:50.400000pt;}
.x7{left:52.960000pt;}
.x4{left:62.560000pt;}
.x2a{left:67.280009pt;}
.x1{left:71.200000pt;}
.x25{left:76.213338pt;}
.x27{left:92.529421pt;}
.x30{left:95.712000pt;}
.x2b{left:103.505962pt;}
.x6{left:160.026667pt;}
.x8{left:172.186667pt;}
.x5{left:176.506667pt;}
.x2f{left:184.826667pt;}
.xd{left:185.786667pt;}
.x24{left:201.301351pt;}
.x29{left:218.266667pt;}
.x3{left:220.026667pt;}
.x23{left:232.814006pt;}
.xc{left:349.207357pt;}
.x28{left:360.386667pt;}
.x2c{left:369.346667pt;}
.x2{left:396.706667pt;}
.xa{left:409.853333pt;}
.x9{left:419.133333pt;}
.x11{left:423.933333pt;}
.x12{left:434.333333pt;}
.x31{left:452.573333pt;}
.xb{left:483.274699pt;}
.x15{left:521.533333pt;}
.x2e{left:533.853333pt;}
.xe{left:543.613333pt;}
.x13{left:547.453333pt;}
.x10{left:559.293333pt;}
.xf{left:579.813333pt;}
.x17{left:644.453333pt;}
.x2d{left:719.973333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  