
    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_2376a098db102d97ab375b5f.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_fb1b5bbcce39c2750afea919.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_eabe88362994a993c6a575a8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.783691;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_eac7028027c107fd4ed83417.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a9ee62aa3691b65c4aa22acd.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2ca24dd6e03d4443dac651a7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_f1c7e4870a218343537ed1aa.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_06ba0fc70af501f3bd936dd3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_16ac0df6e4ce548356a50426.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f2c8ae2f53f41cbe6ff1cf0c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.773926;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);}
.v5{vertical-align:-69.120000px;}
.v6{vertical-align:-66.240000px;}
.v4{vertical-align:-63.360000px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.000000px;}
.v1{vertical-align:20.880000px;}
.ls1d{letter-spacing:-1.170000px;}
.ls22{letter-spacing:-1.080000px;}
.ls20{letter-spacing:-0.942000px;}
.ls8{letter-spacing:-0.774000px;}
.ls10{letter-spacing:-0.584400px;}
.ls1e{letter-spacing:-0.540000px;}
.ls21{letter-spacing:-0.538800px;}
.ls1f{letter-spacing:-0.450600px;}
.ls5{letter-spacing:-0.360000px;}
.ls27{letter-spacing:-0.269400px;}
.ls29{letter-spacing:-0.216000px;}
.ls14{letter-spacing:-0.181200px;}
.ls1a{letter-spacing:-0.106800px;}
.ls7{letter-spacing:-0.053280px;}
.lsc{letter-spacing:-0.045360px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.033840px;}
.ls15{letter-spacing:0.053280px;}
.ls2a{letter-spacing:0.108000px;}
.ls9{letter-spacing:0.153360px;}
.ls1{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.181200px;}
.ls1b{letter-spacing:0.206400px;}
.ls19{letter-spacing:0.206640px;}
.ls6{letter-spacing:0.259800px;}
.ls12{letter-spacing:0.259920px;}
.ls28{letter-spacing:0.269400px;}
.ls17{letter-spacing:0.306720px;}
.ls0{letter-spacing:0.360000px;}
.ls23{letter-spacing:5.126400px;}
.ls25{letter-spacing:5.846400px;}
.ls16{letter-spacing:6.660000px;}
.ls26{letter-spacing:7.286400px;}
.ls18{letter-spacing:10.260000px;}
.ls1c{letter-spacing:38.316000px;}
.ls13{letter-spacing:48.186720px;}
.ls24{letter-spacing:58.500000px;}
.ls3{letter-spacing:66.162720px;}
.lsb{letter-spacing:197.436000px;}
.lsf{letter-spacing:201.036000px;}
.ls11{letter-spacing:203.916000px;}
.lse{letter-spacing:665.616000px;}
.lsa{letter-spacing:883.056000px;}
.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;}
}
.ws12{word-spacing:-59.760000px;}
.ws1{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.199800px;}
.ws11{word-spacing:-15.146400px;}
.ws10{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.wsf{word-spacing:-14.833200px;}
.ws0{word-spacing:-14.580000px;}
.ws9{word-spacing:-14.166000px;}
.ws6{word-spacing:-13.860000px;}
.ws5{word-spacing:-13.500000px;}
.ws1a{word-spacing:-13.284000px;}
.wsa{word-spacing:-12.420000px;}
.ws19{word-spacing:-12.241200px;}
.wsc{word-spacing:-12.060000px;}
.wsb{word-spacing:-12.014640px;}
.wse{word-spacing:-11.878800px;}
.ws18{word-spacing:-11.790600px;}
.ws13{word-spacing:-11.700000px;}
.ws16{word-spacing:-11.521200px;}
.ws14{word-spacing:-11.520000px;}
.ws15{word-spacing:-11.118000px;}
.ws17{word-spacing:-10.980000px;}
.ws2{word-spacing:-9.720000px;}
.ws4{word-spacing:-7.560000px;}
.ws7{word-spacing:0.000000px;}
._11{margin-left:-7.020000px;}
._16{margin-left:-4.950000px;}
._e{margin-left:-3.829680px;}
._d{margin-left:-2.704320px;}
._1{margin-left:-1.075680px;}
._0{width:1.314720px;}
._2{width:2.594400px;}
._5{width:3.608400px;}
._b{width:4.663680px;}
._14{width:5.679840px;}
._4{width:6.840000px;}
._7{width:7.992000px;}
._6{width:9.126000px;}
._a{width:10.692000px;}
._9{width:12.258000px;}
._17{width:13.644240px;}
._c{width:15.552000px;}
._15{width:16.654320px;}
._8{width:18.090000px;}
._10{width:19.435680px;}
._f{width:20.898000px;}
._1c{width:22.266720px;}
._1b{width:26.174880px;}
._1a{width:27.250560px;}
._1d{width:30.136080px;}
._27{width:32.184000px;}
._1f{width:33.506640px;}
._23{width:35.708160px;}
._20{width:36.793440px;}
._24{width:37.859520px;}
._1e{width:50.119920px;}
._26{width:57.694080px;}
._25{width:58.705920px;}
._21{width:59.828160px;}
._22{width:61.979520px;}
._18{width:509.086560px;}
._12{width:736.380000px;}
._19{width:865.686720px;}
._13{width:1073.100000px;}
._3{width:1101.912000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:5.760000px;}
.fs4{font-size:30.240000px;}
.fs3{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs8{font-size:63.360000px;}
.fs6{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y196{bottom:0.720000px;}
.ya8{bottom:2.520000px;}
.y2f{bottom:2.880000px;}
.y195{bottom:3.060000px;}
.y10{bottom:3.240000px;}
.y129{bottom:3.780000px;}
.y37{bottom:9.000000px;}
.y3d{bottom:12.240000px;}
.y18f{bottom:17.640000px;}
.y2e{bottom:18.540000px;}
.y15{bottom:20.520000px;}
.y3c{bottom:29.520000px;}
.y18e{bottom:33.120000px;}
.y2d{bottom:34.020000px;}
.y14{bottom:37.800000px;}
.y3b{bottom:46.845000px;}
.y193{bottom:48.600000px;}
.y18d{bottom:48.780000px;}
.y2c{bottom:49.500000px;}
.y13{bottom:55.080000px;}
.y3a{bottom:64.125000px;}
.y18c{bottom:64.260000px;}
.y2b{bottom:64.980000px;}
.y36{bottom:65.880000px;}
.y12f{bottom:72.180000px;}
.y18b{bottom:79.740000px;}
.y2a{bottom:80.460000px;}
.y19c{bottom:80.640000px;}
.y12{bottom:81.360000px;}
.y5{bottom:88.200000px;}
.y39{bottom:90.225000px;}
.y18a{bottom:95.220000px;}
.y1a1{bottom:95.430000px;}
.y29{bottom:96.150000px;}
.y19b{bottom:96.165000px;}
.y192{bottom:110.700000px;}
.ydf{bottom:110.880000px;}
.y1a0{bottom:110.910000px;}
.y28{bottom:111.630000px;}
.y19a{bottom:111.645000px;}
.y1a2{bottom:117.360000px;}
.y19d{bottom:118.800000px;}
.yc1{bottom:121.500000px;}
.y11b{bottom:124.200000px;}
.y189{bottom:126.360000px;}
.y19f{bottom:126.390000px;}
.y132{bottom:126.720000px;}
.y27{bottom:127.110000px;}
.y199{bottom:127.125000px;}
.y85{bottom:128.160000px;}
.ydc{bottom:131.040000px;}
.y49{bottom:136.296000px;}
.yc0{bottom:138.816000px;}
.y11a{bottom:141.516000px;}
.y188{bottom:141.840000px;}
.y19e{bottom:141.870000px;}
.y26{bottom:142.590000px;}
.y198{bottom:142.785000px;}
.y131{bottom:143.856000px;}
.y84{bottom:145.476000px;}
.y175{bottom:148.176000px;}
.ydb{bottom:148.356000px;}
.y48{bottom:153.570000px;}
.ybf{bottom:156.090000px;}
.y187{bottom:157.320000px;}
.y191{bottom:157.350000px;}
.y25{bottom:158.250000px;}
.y197{bottom:158.265000px;}
.y119{bottom:158.790000px;}
.y130{bottom:161.130000px;}
.y174{bottom:162.030000px;}
.y83{bottom:162.750000px;}
.yda{bottom:165.630000px;}
.y47{bottom:170.850000px;}
.ybe{bottom:173.190000px;}
.y24{bottom:173.730000px;}
.y12e{bottom:175.170000px;}
.y173{bottom:175.710000px;}
.y118{bottom:175.890000px;}
.y82{bottom:179.850000px;}
.yd9{bottom:182.910000px;}
.y46{bottom:187.950000px;}
.y23{bottom:189.210000px;}
.y172{bottom:189.570000px;}
.ybd{bottom:190.470000px;}
.y117{bottom:193.170000px;}
.y81{bottom:197.130000px;}
.yd8{bottom:200.190000px;}
.y171{bottom:203.430000px;}
.y22{bottom:204.690000px;}
.y45{bottom:205.230000px;}
.ybc{bottom:207.750000px;}
.y116{bottom:209.730000px;}
.y80{bottom:214.410000px;}
.y170{bottom:217.110000px;}
.yd7{bottom:217.290000px;}
.y21{bottom:220.350000px;}
.y44{bottom:222.510000px;}
.y115{bottom:223.590000px;}
.ybb{bottom:225.030000px;}
.y35{bottom:230.970000px;}
.y7f{bottom:231.690000px;}
.yd6{bottom:234.570000px;}
.y20{bottom:235.830000px;}
.y114{bottom:237.990000px;}
.y43{bottom:239.790000px;}
.y16f{bottom:244.830000px;}
.y34{bottom:248.250000px;}
.y7e{bottom:248.970000px;}
.y1f{bottom:251.310000px;}
.yd5{bottom:251.850000px;}
.y113{bottom:255.270000px;}
.y42{bottom:257.070000px;}
.y16e{bottom:258.510000px;}
.yba{bottom:259.590000px;}
.y12d{bottom:264.630000px;}
.y33{bottom:265.530000px;}
.yde{bottom:266.070000px;}
.y7d{bottom:266.250000px;}
.y1e{bottom:266.790000px;}
.yd4{bottom:269.130000px;}
.y16d{bottom:272.370000px;}
.y112{bottom:272.550000px;}
.y41{bottom:274.350000px;}
.yb9{bottom:276.690000px;}
.y12c{bottom:279.390000px;}
.y1d{bottom:282.450000px;}
.y32{bottom:282.810000px;}
.y7c{bottom:283.350000px;}
.y16c{bottom:286.230000px;}
.yd3{bottom:286.410000px;}
.y111{bottom:289.830000px;}
.y40{bottom:291.450000px;}
.y12b{bottom:296.670000px;}
.y1c{bottom:297.930000px;}
.y16b{bottom:299.910000px;}
.y31{bottom:300.090000px;}
.y7b{bottom:300.630000px;}
.yd2{bottom:303.510000px;}
.yb8{bottom:305.310000px;}
.y110{bottom:307.110000px;}
.y3f{bottom:308.730000px;}
.y1b{bottom:313.410000px;}
.y16a{bottom:313.770000px;}
.y12a{bottom:313.950000px;}
.y7a{bottom:317.910000px;}
.yb7{bottom:319.170000px;}
.yd1{bottom:320.790000px;}
.y10f{bottom:324.210000px;}
.y3e{bottom:326.010000px;}
.y30{bottom:326.190000px;}
.y169{bottom:327.630000px;}
.y1a{bottom:328.890000px;}
.y128{bottom:331.230000px;}
.yb6{bottom:332.850000px;}
.y79{bottom:335.190000px;}
.yd0{bottom:338.070000px;}
.y168{bottom:341.310000px;}
.y10e{bottom:341.490000px;}
.y38{bottom:342.210000px;}
.y19{bottom:344.550000px;}
.yb5{bottom:346.710000px;}
.y127{bottom:349.230000px;}
.y78{bottom:352.470000px;}
.y167{bottom:355.170000px;}
.ycf{bottom:355.350000px;}
.y10d{bottom:358.770000px;}
.yb4{bottom:360.570000px;}
.ydd{bottom:366.330000px;}
.y166{bottom:369.030000px;}
.y77{bottom:369.750000px;}
.y126{bottom:370.470000px;}
.yce{bottom:372.630000px;}
.yb3{bottom:374.250000px;}
.y10c{bottom:376.050000px;}
.y165{bottom:382.710000px;}
.y76{bottom:386.850000px;}
.y125{bottom:387.795000px;}
.yb2{bottom:388.155000px;}
.ycd{bottom:389.955000px;}
.y10b{bottom:393.375000px;}
.y164{bottom:396.615000px;}
.yb1{bottom:402.015000px;}
.y75{bottom:404.175000px;}
.y124{bottom:404.895000px;}
.ycc{bottom:407.055000px;}
.y163{bottom:410.475000px;}
.y10a{bottom:410.655000px;}
.yb0{bottom:415.695000px;}
.y74{bottom:421.455000px;}
.y123{bottom:422.175000px;}
.y162{bottom:424.155000px;}
.ycb{bottom:424.335000px;}
.y109{bottom:427.755000px;}
.yaf{bottom:429.555000px;}
.y17{bottom:431.310000px;}
.y161{bottom:438.015000px;}
.y73{bottom:438.735000px;}
.y122{bottom:439.455000px;}
.yca{bottom:441.615000px;}
.yae{bottom:443.415000px;}
.y108{bottom:445.035000px;}
.y160{bottom:451.875000px;}
.y72{bottom:456.015000px;}
.y16{bottom:456.375000px;}
.y121{bottom:456.735000px;}
.yad{bottom:457.095000px;}
.y107{bottom:462.315000px;}
.y15f{bottom:465.555000px;}
.yac{bottom:470.955000px;}
.y71{bottom:473.115000px;}
.y120{bottom:474.015000px;}
.yc9{bottom:476.175000px;}
.y194{bottom:477.075000px;}
.y15e{bottom:479.415000px;}
.y106{bottom:479.595000px;}
.yab{bottom:484.815000px;}
.y70{bottom:490.395000px;}
.y11f{bottom:491.115000px;}
.y190{bottom:492.735000px;}
.y15d{bottom:493.095000px;}
.yc8{bottom:493.455000px;}
.y105{bottom:496.875000px;}
.yaa{bottom:498.495000px;}
.y15c{bottom:506.955000px;}
.y6f{bottom:507.675000px;}
.yc7{bottom:508.215000px;}
.y11e{bottom:508.395000px;}
.ya9{bottom:512.355000px;}
.y104{bottom:514.155000px;}
.y15b{bottom:520.815000px;}
.yc6{bottom:521.895000px;}
.y6e{bottom:524.955000px;}
.y11d{bottom:525.675000px;}
.ya7{bottom:526.935000px;}
.y103{bottom:531.255000px;}
.y15a{bottom:534.495000px;}
.yc5{bottom:535.755000px;}
.y6d{bottom:542.235000px;}
.y11c{bottom:542.955000px;}
.y18{bottom:544.575000px;}
.y159{bottom:548.355000px;}
.y102{bottom:548.535000px;}
.yc4{bottom:549.615000px;}
.y6c{bottom:559.515000px;}
.ya6{bottom:560.235000px;}
.y158{bottom:562.215000px;}
.yc3{bottom:563.295000px;}
.y101{bottom:565.815000px;}
.y157{bottom:575.895000px;}
.y6b{bottom:576.615000px;}
.ya5{bottom:577.515000px;}
.yc2{bottom:577.875000px;}
.y100{bottom:583.095000px;}
.y156{bottom:589.755000px;}
.y6a{bottom:593.895000px;}
.ya4{bottom:594.615000px;}
.yff{bottom:600.375000px;}
.y155{bottom:603.615000px;}
.y69{bottom:611.175000px;}
.ya3{bottom:611.895000px;}
.y154{bottom:617.295000px;}
.yfe{bottom:617.655000px;}
.y68{bottom:628.455000px;}
.ya2{bottom:629.175000px;}
.y153{bottom:631.155000px;}
.yfd{bottom:634.755000px;}
.y152{bottom:645.045000px;}
.y67{bottom:645.765000px;}
.ya1{bottom:646.485000px;}
.yfc{bottom:652.065000px;}
.y151{bottom:658.725000px;}
.y66{bottom:663.045000px;}
.ya0{bottom:663.765000px;}
.yfb{bottom:669.345000px;}
.y150{bottom:672.585000px;}
.y186{bottom:679.245000px;}
.y65{bottom:680.145000px;}
.y9f{bottom:681.045000px;}
.y14f{bottom:686.445000px;}
.yfa{bottom:686.625000px;}
.y64{bottom:697.425000px;}
.y9e{bottom:698.145000px;}
.y14e{bottom:700.125000px;}
.yf9{bottom:703.905000px;}
.y14d{bottom:713.985000px;}
.y63{bottom:714.705000px;}
.y9d{bottom:715.425000px;}
.yf8{bottom:721.005000px;}
.y14c{bottom:727.845000px;}
.y62{bottom:731.985000px;}
.y9c{bottom:732.705000px;}
.yf7{bottom:738.285000px;}
.y14b{bottom:741.525000px;}
.y61{bottom:749.265000px;}
.y9b{bottom:749.985000px;}
.y14a{bottom:755.385000px;}
.yf6{bottom:755.565000px;}
.y60{bottom:766.545000px;}
.y9a{bottom:767.265000px;}
.y149{bottom:769.245000px;}
.yf5{bottom:772.845000px;}
.y148{bottom:782.925000px;}
.y5f{bottom:783.645000px;}
.y99{bottom:784.545000px;}
.yf4{bottom:790.125000px;}
.y147{bottom:796.785000px;}
.y5e{bottom:800.925000px;}
.y98{bottom:801.645000px;}
.y11{bottom:806.325000px;}
.yf3{bottom:807.405000px;}
.y146{bottom:810.645000px;}
.y5d{bottom:818.205000px;}
.y97{bottom:818.925000px;}
.y145{bottom:824.325000px;}
.yf2{bottom:824.505000px;}
.y5c{bottom:835.485000px;}
.y96{bottom:836.205000px;}
.y144{bottom:838.185000px;}
.yf1{bottom:841.785000px;}
.y143{bottom:852.045000px;}
.y5b{bottom:852.765000px;}
.y95{bottom:853.485000px;}
.yf0{bottom:859.065000px;}
.y142{bottom:865.725000px;}
.y185{bottom:867.165000px;}
.y5a{bottom:869.865000px;}
.y94{bottom:870.765000px;}
.yef{bottom:876.345000px;}
.y141{bottom:879.585000px;}
.y184{bottom:883.725000px;}
.y59{bottom:887.145000px;}
.y93{bottom:887.865000px;}
.y140{bottom:893.490000px;}
.yee{bottom:893.670000px;}
.y183{bottom:897.630000px;}
.y58{bottom:904.470000px;}
.y92{bottom:905.190000px;}
.y13f{bottom:907.890000px;}
.yed{bottom:910.950000px;}
.yf{bottom:911.490000px;}
.y57{bottom:921.750000px;}
.y91{bottom:922.470000px;}
.y13e{bottom:924.450000px;}
.y182{bottom:925.170000px;}
.yec{bottom:928.050000px;}
.y13d{bottom:938.310000px;}
.y56{bottom:939.030000px;}
.y90{bottom:939.750000px;}
.ye{bottom:943.170000px;}
.yeb{bottom:945.330000px;}
.y13c{bottom:952.710000px;}
.y181{bottom:952.890000px;}
.y55{bottom:956.310000px;}
.y8f{bottom:957.030000px;}
.yd{bottom:960.450000px;}
.yea{bottom:962.610000px;}
.y180{bottom:966.570000px;}
.y13b{bottom:969.990000px;}
.y54{bottom:973.410000px;}
.y8e{bottom:974.310000px;}
.ye9{bottom:979.890000px;}
.y17f{bottom:980.430000px;}
.yc{bottom:981.510000px;}
.y13a{bottom:987.270000px;}
.y53{bottom:990.690000px;}
.y8d{bottom:991.410000px;}
.y17e{bottom:994.290000px;}
.yb{bottom:995.190000px;}
.ye8{bottom:997.170000px;}
.y139{bottom:1003.830000px;}
.ya{bottom:1005.270000px;}
.y52{bottom:1007.970000px;}
.y8c{bottom:1008.690000px;}
.y138{bottom:1017.690000px;}
.y17d{bottom:1021.830000px;}
.y9{bottom:1022.550000px;}
.y51{bottom:1025.250000px;}
.y8b{bottom:1025.970000px;}
.ye7{bottom:1030.830000px;}
.y137{bottom:1032.090000px;}
.y17c{bottom:1035.690000px;}
.y8{bottom:1039.830000px;}
.y50{bottom:1042.530000px;}
.y8a{bottom:1043.250000px;}
.ye6{bottom:1044.690000px;}
.y136{bottom:1049.370000px;}
.ye5{bottom:1056.750000px;}
.y7{bottom:1059.090000px;}
.y4f{bottom:1059.810000px;}
.y89{bottom:1060.530000px;}
.y17b{bottom:1063.230000px;}
.y135{bottom:1066.650000px;}
.ye4{bottom:1070.430000px;}
.y4e{bottom:1076.910000px;}
.y17a{bottom:1077.090000px;}
.y88{bottom:1077.810000px;}
.y134{bottom:1083.210000px;}
.ye3{bottom:1084.290000px;}
.y6{bottom:1086.630000px;}
.y179{bottom:1090.770000px;}
.y4d{bottom:1094.190000px;}
.y87{bottom:1094.910000px;}
.y133{bottom:1096.890000px;}
.ye2{bottom:1098.150000px;}
.y178{bottom:1104.630000px;}
.y4c{bottom:1111.470000px;}
.y4{bottom:1112.190000px;}
.ye1{bottom:1112.730000px;}
.y177{bottom:1118.490000px;}
.y4b{bottom:1128.750000px;}
.y3{bottom:1129.470000px;}
.ye0{bottom:1130.190000px;}
.y176{bottom:1132.170000px;}
.y2{bottom:1146.780000px;}
.y86{bottom:1160.640000px;}
.y4a{bottom:1161.000000px;}
.y1{bottom:1164.060000px;}
.h23{height:5.653125px;}
.h15{height:13.680000px;}
.h17{height:13.860000px;}
.h18{height:13.860150px;}
.h19{height:13.896000px;}
.h1f{height:15.480000px;}
.h21{height:15.660000px;}
.h12{height:17.100000px;}
.h14{height:17.280000px;}
.h7{height:26.280000px;}
.h6{height:29.678906px;}
.h13{height:43.215117px;}
.h16{height:47.344922px;}
.h1c{height:48.616875px;}
.hf{height:52.971680px;}
.hc{height:52.998047px;}
.h1e{height:54.421875px;}
.h4{height:58.621992px;}
.h3{height:58.651172px;}
.h2{height:60.226875px;}
.h1a{height:61.423863px;}
.h11{height:62.211094px;}
.h8{height:70.664062px;}
.h1b{height:86.220000px;}
.he{height:87.480000px;}
.h5{height:96.508125px;}
.h9{height:104.436000px;}
.h10{height:113.256000px;}
.h1d{height:171.000000px;}
.h20{height:171.030000px;}
.h22{height:171.750000px;}
.hd{height:349.230000px;}
.hb{height:366.195000px;}
.ha{height:454.395000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:21.060000px;}
.w8{width:29.880000px;}
.w7{width:30.060000px;}
.w13{width:30.240000px;}
.w18{width:30.420000px;}
.w14{width:32.940000px;}
.w19{width:33.696000px;}
.w15{width:34.560000px;}
.w1a{width:35.640000px;}
.w17{width:35.676000px;}
.w1b{width:36.360000px;}
.w16{width:37.440000px;}
.wf{width:43.200000px;}
.we{width:47.340000px;}
.w11{width:52.236000px;}
.w10{width:79.236000px;}
.wb{width:89.820000px;}
.wa{width:108.756000px;}
.wd{width:108.936000px;}
.w9{width:126.360000px;}
.wc{width:137.520000px;}
.w1f{width:144.540000px;}
.w1e{width:198.570000px;}
.w12{width:200.550000px;}
.w3{width:209.190000px;}
.w1c{width:214.770000px;}
.w1d{width:244.290000px;}
.w5{width:433.155000px;}
.w20{width:525.885000px;}
.w6{width:663.405000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:8.100000px;}
.xb{left:10.620000px;}
.x2f{left:11.880000px;}
.x2a{left:14.580000px;}
.x28{left:19.620000px;}
.x18{left:21.240000px;}
.x2e{left:26.130000px;}
.x15{left:27.540000px;}
.x22{left:31.320000px;}
.x1a{left:34.380000px;}
.x1e{left:37.440000px;}
.x1d{left:44.820000px;}
.x19{left:48.270000px;}
.x1b{left:51.330000px;}
.x1c{left:54.390000px;}
.x41{left:72.174000px;}
.xd{left:106.560000px;}
.x3e{left:116.496000px;}
.x8{left:125.496000px;}
.x1{left:127.655987px;}
.x3f{left:136.254000px;}
.x12{left:150.869987px;}
.x11{left:154.649987px;}
.x10{left:157.349987px;}
.x2{left:159.329987px;}
.x5{left:173.009987px;}
.xf{left:181.649987px;}
.x7{left:190.109987px;}
.x6{left:198.209987px;}
.x3{left:216.929987px;}
.x26{left:238.529987px;}
.x27{left:246.810000px;}
.x25{left:259.769987px;}
.x40{left:261.030000px;}
.x1f{left:289.155000px;}
.x14{left:294.735000px;}
.x30{left:328.215000px;}
.xa{left:334.695000px;}
.x3c{left:343.155000px;}
.xc{left:355.755000px;}
.x31{left:358.455000px;}
.x32{left:391.395000px;}
.x29{left:403.095000px;}
.x16{left:421.095000px;}
.xe{left:425.055000px;}
.x20{left:426.675000px;}
.x2b{left:446.295000px;}
.x4{left:457.274987px;}
.x33{left:463.395000px;}
.x24{left:484.304987px;}
.x34{left:499.065000px;}
.x2c{left:525.525000px;}
.x17{left:529.845000px;}
.x21{left:535.425000px;}
.x35{left:559.725000px;}
.x3d{left:587.445000px;}
.x36{left:589.965000px;}
.x2d{left:615.345000px;}
.x37{left:620.205000px;}
.x38{left:650.625000px;}
.x39{left:684.330000px;}
.x3a{left:719.970000px;}
.x3b{left:750.390000px;}
.x13{left:756.870000px;}
.x23{left:785.849987px;}
@media print{
.v5{vertical-align:-61.440000pt;}
.v6{vertical-align:-58.880000pt;}
.v4{vertical-align:-56.320000pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls1d{letter-spacing:-1.040000pt;}
.ls22{letter-spacing:-0.960000pt;}
.ls20{letter-spacing:-0.837333pt;}
.ls8{letter-spacing:-0.688000pt;}
.ls10{letter-spacing:-0.519467pt;}
.ls1e{letter-spacing:-0.480000pt;}
.ls21{letter-spacing:-0.478933pt;}
.ls1f{letter-spacing:-0.400533pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls27{letter-spacing:-0.239467pt;}
.ls29{letter-spacing:-0.192000pt;}
.ls14{letter-spacing:-0.161067pt;}
.ls1a{letter-spacing:-0.094933pt;}
.ls7{letter-spacing:-0.047360pt;}
.lsc{letter-spacing:-0.040320pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.030080pt;}
.ls15{letter-spacing:0.047360pt;}
.ls2a{letter-spacing:0.096000pt;}
.ls9{letter-spacing:0.136320pt;}
.ls1{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.161067pt;}
.ls1b{letter-spacing:0.183467pt;}
.ls19{letter-spacing:0.183680pt;}
.ls6{letter-spacing:0.230933pt;}
.ls12{letter-spacing:0.231040pt;}
.ls28{letter-spacing:0.239467pt;}
.ls17{letter-spacing:0.272640pt;}
.ls0{letter-spacing:0.320000pt;}
.ls23{letter-spacing:4.556800pt;}
.ls25{letter-spacing:5.196800pt;}
.ls16{letter-spacing:5.920000pt;}
.ls26{letter-spacing:6.476800pt;}
.ls18{letter-spacing:9.120000pt;}
.ls1c{letter-spacing:34.058667pt;}
.ls13{letter-spacing:42.832640pt;}
.ls24{letter-spacing:52.000000pt;}
.ls3{letter-spacing:58.811307pt;}
.lsb{letter-spacing:175.498667pt;}
.lsf{letter-spacing:178.698667pt;}
.ls11{letter-spacing:181.258667pt;}
.lse{letter-spacing:591.658667pt;}
.lsa{letter-spacing:784.938667pt;}
.ws12{word-spacing:-53.120000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.510933pt;}
.ws11{word-spacing:-13.463467pt;}
.ws10{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.wsf{word-spacing:-13.185067pt;}
.ws0{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.592000pt;}
.ws6{word-spacing:-12.320000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws1a{word-spacing:-11.808000pt;}
.wsa{word-spacing:-11.040000pt;}
.ws19{word-spacing:-10.881067pt;}
.wsc{word-spacing:-10.720000pt;}
.wsb{word-spacing:-10.679680pt;}
.wse{word-spacing:-10.558933pt;}
.ws18{word-spacing:-10.480533pt;}
.ws13{word-spacing:-10.400000pt;}
.ws16{word-spacing:-10.241067pt;}
.ws14{word-spacing:-10.240000pt;}
.ws15{word-spacing:-9.882667pt;}
.ws17{word-spacing:-9.760000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws4{word-spacing:-6.720000pt;}
.ws7{word-spacing:0.000000pt;}
._11{margin-left:-6.240000pt;}
._16{margin-left:-4.400000pt;}
._e{margin-left:-3.404160pt;}
._d{margin-left:-2.403840pt;}
._1{margin-left:-0.956160pt;}
._0{width:1.168640pt;}
._2{width:2.306133pt;}
._5{width:3.207467pt;}
._b{width:4.145493pt;}
._14{width:5.048747pt;}
._4{width:6.080000pt;}
._7{width:7.104000pt;}
._6{width:8.112000pt;}
._a{width:9.504000pt;}
._9{width:10.896000pt;}
._17{width:12.128213pt;}
._c{width:13.824000pt;}
._15{width:14.803840pt;}
._8{width:16.080000pt;}
._10{width:17.276160pt;}
._f{width:18.576000pt;}
._1c{width:19.792640pt;}
._1b{width:23.266560pt;}
._1a{width:24.222720pt;}
._1d{width:26.787627pt;}
._27{width:28.608000pt;}
._1f{width:29.783680pt;}
._23{width:31.740587pt;}
._20{width:32.705280pt;}
._24{width:33.652907pt;}
._1e{width:44.551040pt;}
._26{width:51.283627pt;}
._25{width:52.183040pt;}
._21{width:53.180587pt;}
._22{width:55.092907pt;}
._18{width:452.521387pt;}
._12{width:654.560000pt;}
._19{width:769.499307pt;}
._13{width:953.866667pt;}
._3{width:979.477333pt;}
.fs9{font-size:5.120000pt;}
.fs4{font-size:26.880000pt;}
.fs3{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs8{font-size:56.320000pt;}
.fs6{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y196{bottom:0.640000pt;}
.ya8{bottom:2.240000pt;}
.y2f{bottom:2.560000pt;}
.y195{bottom:2.720000pt;}
.y10{bottom:2.880000pt;}
.y129{bottom:3.360000pt;}
.y37{bottom:8.000000pt;}
.y3d{bottom:10.880000pt;}
.y18f{bottom:15.680000pt;}
.y2e{bottom:16.480000pt;}
.y15{bottom:18.240000pt;}
.y3c{bottom:26.240000pt;}
.y18e{bottom:29.440000pt;}
.y2d{bottom:30.240000pt;}
.y14{bottom:33.600000pt;}
.y3b{bottom:41.640000pt;}
.y193{bottom:43.200000pt;}
.y18d{bottom:43.360000pt;}
.y2c{bottom:44.000000pt;}
.y13{bottom:48.960000pt;}
.y3a{bottom:57.000000pt;}
.y18c{bottom:57.120000pt;}
.y2b{bottom:57.760000pt;}
.y36{bottom:58.560000pt;}
.y12f{bottom:64.160000pt;}
.y18b{bottom:70.880000pt;}
.y2a{bottom:71.520000pt;}
.y19c{bottom:71.680000pt;}
.y12{bottom:72.320000pt;}
.y5{bottom:78.400000pt;}
.y39{bottom:80.200000pt;}
.y18a{bottom:84.640000pt;}
.y1a1{bottom:84.826667pt;}
.y29{bottom:85.466667pt;}
.y19b{bottom:85.480000pt;}
.y192{bottom:98.400000pt;}
.ydf{bottom:98.560000pt;}
.y1a0{bottom:98.586667pt;}
.y28{bottom:99.226667pt;}
.y19a{bottom:99.240000pt;}
.y1a2{bottom:104.320000pt;}
.y19d{bottom:105.600000pt;}
.yc1{bottom:108.000000pt;}
.y11b{bottom:110.400000pt;}
.y189{bottom:112.320000pt;}
.y19f{bottom:112.346667pt;}
.y132{bottom:112.640000pt;}
.y27{bottom:112.986667pt;}
.y199{bottom:113.000000pt;}
.y85{bottom:113.920000pt;}
.ydc{bottom:116.480000pt;}
.y49{bottom:121.152000pt;}
.yc0{bottom:123.392000pt;}
.y11a{bottom:125.792000pt;}
.y188{bottom:126.080000pt;}
.y19e{bottom:126.106667pt;}
.y26{bottom:126.746667pt;}
.y198{bottom:126.920000pt;}
.y131{bottom:127.872000pt;}
.y84{bottom:129.312000pt;}
.y175{bottom:131.712000pt;}
.ydb{bottom:131.872000pt;}
.y48{bottom:136.506667pt;}
.ybf{bottom:138.746667pt;}
.y187{bottom:139.840000pt;}
.y191{bottom:139.866667pt;}
.y25{bottom:140.666667pt;}
.y197{bottom:140.680000pt;}
.y119{bottom:141.146667pt;}
.y130{bottom:143.226667pt;}
.y174{bottom:144.026667pt;}
.y83{bottom:144.666667pt;}
.yda{bottom:147.226667pt;}
.y47{bottom:151.866667pt;}
.ybe{bottom:153.946667pt;}
.y24{bottom:154.426667pt;}
.y12e{bottom:155.706667pt;}
.y173{bottom:156.186667pt;}
.y118{bottom:156.346667pt;}
.y82{bottom:159.866667pt;}
.yd9{bottom:162.586667pt;}
.y46{bottom:167.066667pt;}
.y23{bottom:168.186667pt;}
.y172{bottom:168.506667pt;}
.ybd{bottom:169.306667pt;}
.y117{bottom:171.706667pt;}
.y81{bottom:175.226667pt;}
.yd8{bottom:177.946667pt;}
.y171{bottom:180.826667pt;}
.y22{bottom:181.946667pt;}
.y45{bottom:182.426667pt;}
.ybc{bottom:184.666667pt;}
.y116{bottom:186.426667pt;}
.y80{bottom:190.586667pt;}
.y170{bottom:192.986667pt;}
.yd7{bottom:193.146667pt;}
.y21{bottom:195.866667pt;}
.y44{bottom:197.786667pt;}
.y115{bottom:198.746667pt;}
.ybb{bottom:200.026667pt;}
.y35{bottom:205.306667pt;}
.y7f{bottom:205.946667pt;}
.yd6{bottom:208.506667pt;}
.y20{bottom:209.626667pt;}
.y114{bottom:211.546667pt;}
.y43{bottom:213.146667pt;}
.y16f{bottom:217.626667pt;}
.y34{bottom:220.666667pt;}
.y7e{bottom:221.306667pt;}
.y1f{bottom:223.386667pt;}
.yd5{bottom:223.866667pt;}
.y113{bottom:226.906667pt;}
.y42{bottom:228.506667pt;}
.y16e{bottom:229.786667pt;}
.yba{bottom:230.746667pt;}
.y12d{bottom:235.226667pt;}
.y33{bottom:236.026667pt;}
.yde{bottom:236.506667pt;}
.y7d{bottom:236.666667pt;}
.y1e{bottom:237.146667pt;}
.yd4{bottom:239.226667pt;}
.y16d{bottom:242.106667pt;}
.y112{bottom:242.266667pt;}
.y41{bottom:243.866667pt;}
.yb9{bottom:245.946667pt;}
.y12c{bottom:248.346667pt;}
.y1d{bottom:251.066667pt;}
.y32{bottom:251.386667pt;}
.y7c{bottom:251.866667pt;}
.y16c{bottom:254.426667pt;}
.yd3{bottom:254.586667pt;}
.y111{bottom:257.626667pt;}
.y40{bottom:259.066667pt;}
.y12b{bottom:263.706667pt;}
.y1c{bottom:264.826667pt;}
.y16b{bottom:266.586667pt;}
.y31{bottom:266.746667pt;}
.y7b{bottom:267.226667pt;}
.yd2{bottom:269.786667pt;}
.yb8{bottom:271.386667pt;}
.y110{bottom:272.986667pt;}
.y3f{bottom:274.426667pt;}
.y1b{bottom:278.586667pt;}
.y16a{bottom:278.906667pt;}
.y12a{bottom:279.066667pt;}
.y7a{bottom:282.586667pt;}
.yb7{bottom:283.706667pt;}
.yd1{bottom:285.146667pt;}
.y10f{bottom:288.186667pt;}
.y3e{bottom:289.786667pt;}
.y30{bottom:289.946667pt;}
.y169{bottom:291.226667pt;}
.y1a{bottom:292.346667pt;}
.y128{bottom:294.426667pt;}
.yb6{bottom:295.866667pt;}
.y79{bottom:297.946667pt;}
.yd0{bottom:300.506667pt;}
.y168{bottom:303.386667pt;}
.y10e{bottom:303.546667pt;}
.y38{bottom:304.186667pt;}
.y19{bottom:306.266667pt;}
.yb5{bottom:308.186667pt;}
.y127{bottom:310.426667pt;}
.y78{bottom:313.306667pt;}
.y167{bottom:315.706667pt;}
.ycf{bottom:315.866667pt;}
.y10d{bottom:318.906667pt;}
.yb4{bottom:320.506667pt;}
.ydd{bottom:325.626667pt;}
.y166{bottom:328.026667pt;}
.y77{bottom:328.666667pt;}
.y126{bottom:329.306667pt;}
.yce{bottom:331.226667pt;}
.yb3{bottom:332.666667pt;}
.y10c{bottom:334.266667pt;}
.y165{bottom:340.186667pt;}
.y76{bottom:343.866667pt;}
.y125{bottom:344.706667pt;}
.yb2{bottom:345.026667pt;}
.ycd{bottom:346.626667pt;}
.y10b{bottom:349.666667pt;}
.y164{bottom:352.546667pt;}
.yb1{bottom:357.346667pt;}
.y75{bottom:359.266667pt;}
.y124{bottom:359.906667pt;}
.ycc{bottom:361.826667pt;}
.y163{bottom:364.866667pt;}
.y10a{bottom:365.026667pt;}
.yb0{bottom:369.506667pt;}
.y74{bottom:374.626667pt;}
.y123{bottom:375.266667pt;}
.y162{bottom:377.026667pt;}
.ycb{bottom:377.186667pt;}
.y109{bottom:380.226667pt;}
.yaf{bottom:381.826667pt;}
.y17{bottom:383.386667pt;}
.y161{bottom:389.346667pt;}
.y73{bottom:389.986667pt;}
.y122{bottom:390.626667pt;}
.yca{bottom:392.546667pt;}
.yae{bottom:394.146667pt;}
.y108{bottom:395.586667pt;}
.y160{bottom:401.666667pt;}
.y72{bottom:405.346667pt;}
.y16{bottom:405.666667pt;}
.y121{bottom:405.986667pt;}
.yad{bottom:406.306667pt;}
.y107{bottom:410.946667pt;}
.y15f{bottom:413.826667pt;}
.yac{bottom:418.626667pt;}
.y71{bottom:420.546667pt;}
.y120{bottom:421.346667pt;}
.yc9{bottom:423.266667pt;}
.y194{bottom:424.066667pt;}
.y15e{bottom:426.146667pt;}
.y106{bottom:426.306667pt;}
.yab{bottom:430.946667pt;}
.y70{bottom:435.906667pt;}
.y11f{bottom:436.546667pt;}
.y190{bottom:437.986667pt;}
.y15d{bottom:438.306667pt;}
.yc8{bottom:438.626667pt;}
.y105{bottom:441.666667pt;}
.yaa{bottom:443.106667pt;}
.y15c{bottom:450.626667pt;}
.y6f{bottom:451.266667pt;}
.yc7{bottom:451.746667pt;}
.y11e{bottom:451.906667pt;}
.ya9{bottom:455.426667pt;}
.y104{bottom:457.026667pt;}
.y15b{bottom:462.946667pt;}
.yc6{bottom:463.906667pt;}
.y6e{bottom:466.626667pt;}
.y11d{bottom:467.266667pt;}
.ya7{bottom:468.386667pt;}
.y103{bottom:472.226667pt;}
.y15a{bottom:475.106667pt;}
.yc5{bottom:476.226667pt;}
.y6d{bottom:481.986667pt;}
.y11c{bottom:482.626667pt;}
.y18{bottom:484.066667pt;}
.y159{bottom:487.426667pt;}
.y102{bottom:487.586667pt;}
.yc4{bottom:488.546667pt;}
.y6c{bottom:497.346667pt;}
.ya6{bottom:497.986667pt;}
.y158{bottom:499.746667pt;}
.yc3{bottom:500.706667pt;}
.y101{bottom:502.946667pt;}
.y157{bottom:511.906667pt;}
.y6b{bottom:512.546667pt;}
.ya5{bottom:513.346667pt;}
.yc2{bottom:513.666667pt;}
.y100{bottom:518.306667pt;}
.y156{bottom:524.226667pt;}
.y6a{bottom:527.906667pt;}
.ya4{bottom:528.546667pt;}
.yff{bottom:533.666667pt;}
.y155{bottom:536.546667pt;}
.y69{bottom:543.266667pt;}
.ya3{bottom:543.906667pt;}
.y154{bottom:548.706667pt;}
.yfe{bottom:549.026667pt;}
.y68{bottom:558.626667pt;}
.ya2{bottom:559.266667pt;}
.y153{bottom:561.026667pt;}
.yfd{bottom:564.226667pt;}
.y152{bottom:573.373333pt;}
.y67{bottom:574.013333pt;}
.ya1{bottom:574.653333pt;}
.yfc{bottom:579.613333pt;}
.y151{bottom:585.533333pt;}
.y66{bottom:589.373333pt;}
.ya0{bottom:590.013333pt;}
.yfb{bottom:594.973333pt;}
.y150{bottom:597.853333pt;}
.y186{bottom:603.773333pt;}
.y65{bottom:604.573333pt;}
.y9f{bottom:605.373333pt;}
.y14f{bottom:610.173333pt;}
.yfa{bottom:610.333333pt;}
.y64{bottom:619.933333pt;}
.y9e{bottom:620.573333pt;}
.y14e{bottom:622.333333pt;}
.yf9{bottom:625.693333pt;}
.y14d{bottom:634.653333pt;}
.y63{bottom:635.293333pt;}
.y9d{bottom:635.933333pt;}
.yf8{bottom:640.893333pt;}
.y14c{bottom:646.973333pt;}
.y62{bottom:650.653333pt;}
.y9c{bottom:651.293333pt;}
.yf7{bottom:656.253333pt;}
.y14b{bottom:659.133333pt;}
.y61{bottom:666.013333pt;}
.y9b{bottom:666.653333pt;}
.y14a{bottom:671.453333pt;}
.yf6{bottom:671.613333pt;}
.y60{bottom:681.373333pt;}
.y9a{bottom:682.013333pt;}
.y149{bottom:683.773333pt;}
.yf5{bottom:686.973333pt;}
.y148{bottom:695.933333pt;}
.y5f{bottom:696.573333pt;}
.y99{bottom:697.373333pt;}
.yf4{bottom:702.333333pt;}
.y147{bottom:708.253333pt;}
.y5e{bottom:711.933333pt;}
.y98{bottom:712.573333pt;}
.y11{bottom:716.733333pt;}
.yf3{bottom:717.693333pt;}
.y146{bottom:720.573333pt;}
.y5d{bottom:727.293333pt;}
.y97{bottom:727.933333pt;}
.y145{bottom:732.733333pt;}
.yf2{bottom:732.893333pt;}
.y5c{bottom:742.653333pt;}
.y96{bottom:743.293333pt;}
.y144{bottom:745.053333pt;}
.yf1{bottom:748.253333pt;}
.y143{bottom:757.373333pt;}
.y5b{bottom:758.013333pt;}
.y95{bottom:758.653333pt;}
.yf0{bottom:763.613333pt;}
.y142{bottom:769.533333pt;}
.y185{bottom:770.813333pt;}
.y5a{bottom:773.213333pt;}
.y94{bottom:774.013333pt;}
.yef{bottom:778.973333pt;}
.y141{bottom:781.853333pt;}
.y184{bottom:785.533333pt;}
.y59{bottom:788.573333pt;}
.y93{bottom:789.213333pt;}
.y140{bottom:794.213333pt;}
.yee{bottom:794.373333pt;}
.y183{bottom:797.893333pt;}
.y58{bottom:803.973333pt;}
.y92{bottom:804.613333pt;}
.y13f{bottom:807.013333pt;}
.yed{bottom:809.733333pt;}
.yf{bottom:810.213333pt;}
.y57{bottom:819.333333pt;}
.y91{bottom:819.973333pt;}
.y13e{bottom:821.733333pt;}
.y182{bottom:822.373333pt;}
.yec{bottom:824.933333pt;}
.y13d{bottom:834.053333pt;}
.y56{bottom:834.693333pt;}
.y90{bottom:835.333333pt;}
.ye{bottom:838.373333pt;}
.yeb{bottom:840.293333pt;}
.y13c{bottom:846.853333pt;}
.y181{bottom:847.013333pt;}
.y55{bottom:850.053333pt;}
.y8f{bottom:850.693333pt;}
.yd{bottom:853.733333pt;}
.yea{bottom:855.653333pt;}
.y180{bottom:859.173333pt;}
.y13b{bottom:862.213333pt;}
.y54{bottom:865.253333pt;}
.y8e{bottom:866.053333pt;}
.ye9{bottom:871.013333pt;}
.y17f{bottom:871.493333pt;}
.yc{bottom:872.453333pt;}
.y13a{bottom:877.573333pt;}
.y53{bottom:880.613333pt;}
.y8d{bottom:881.253333pt;}
.y17e{bottom:883.813333pt;}
.yb{bottom:884.613333pt;}
.ye8{bottom:886.373333pt;}
.y139{bottom:892.293333pt;}
.ya{bottom:893.573333pt;}
.y52{bottom:895.973333pt;}
.y8c{bottom:896.613333pt;}
.y138{bottom:904.613333pt;}
.y17d{bottom:908.293333pt;}
.y9{bottom:908.933333pt;}
.y51{bottom:911.333333pt;}
.y8b{bottom:911.973333pt;}
.ye7{bottom:916.293333pt;}
.y137{bottom:917.413333pt;}
.y17c{bottom:920.613333pt;}
.y8{bottom:924.293333pt;}
.y50{bottom:926.693333pt;}
.y8a{bottom:927.333333pt;}
.ye6{bottom:928.613333pt;}
.y136{bottom:932.773333pt;}
.ye5{bottom:939.333333pt;}
.y7{bottom:941.413333pt;}
.y4f{bottom:942.053333pt;}
.y89{bottom:942.693333pt;}
.y17b{bottom:945.093333pt;}
.y135{bottom:948.133333pt;}
.ye4{bottom:951.493333pt;}
.y4e{bottom:957.253333pt;}
.y17a{bottom:957.413333pt;}
.y88{bottom:958.053333pt;}
.y134{bottom:962.853333pt;}
.ye3{bottom:963.813333pt;}
.y6{bottom:965.893333pt;}
.y179{bottom:969.573333pt;}
.y4d{bottom:972.613333pt;}
.y87{bottom:973.253333pt;}
.y133{bottom:975.013333pt;}
.ye2{bottom:976.133333pt;}
.y178{bottom:981.893333pt;}
.y4c{bottom:987.973333pt;}
.y4{bottom:988.613333pt;}
.ye1{bottom:989.093333pt;}
.y177{bottom:994.213333pt;}
.y4b{bottom:1003.333333pt;}
.y3{bottom:1003.973333pt;}
.ye0{bottom:1004.613333pt;}
.y176{bottom:1006.373333pt;}
.y2{bottom:1019.360000pt;}
.y86{bottom:1031.680000pt;}
.y4a{bottom:1032.000000pt;}
.y1{bottom:1034.720000pt;}
.h23{height:5.025000pt;}
.h15{height:12.160000pt;}
.h17{height:12.320000pt;}
.h18{height:12.320133pt;}
.h19{height:12.352000pt;}
.h1f{height:13.760000pt;}
.h21{height:13.920000pt;}
.h12{height:15.200000pt;}
.h14{height:15.360000pt;}
.h7{height:23.360000pt;}
.h6{height:26.381250pt;}
.h13{height:38.413438pt;}
.h16{height:42.084375pt;}
.h1c{height:43.215000pt;}
.hf{height:47.085938pt;}
.hc{height:47.109375pt;}
.h1e{height:48.375000pt;}
.h4{height:52.108438pt;}
.h3{height:52.134375pt;}
.h2{height:53.535000pt;}
.h1a{height:54.598989pt;}
.h11{height:55.298750pt;}
.h8{height:62.812500pt;}
.h1b{height:76.640000pt;}
.he{height:77.760000pt;}
.h5{height:85.785000pt;}
.h9{height:92.832000pt;}
.h10{height:100.672000pt;}
.h1d{height:152.000000pt;}
.h20{height:152.026667pt;}
.h22{height:152.666667pt;}
.hd{height:310.426667pt;}
.hb{height:325.506667pt;}
.ha{height:403.906667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:18.720000pt;}
.w8{width:26.560000pt;}
.w7{width:26.720000pt;}
.w13{width:26.880000pt;}
.w18{width:27.040000pt;}
.w14{width:29.280000pt;}
.w19{width:29.952000pt;}
.w15{width:30.720000pt;}
.w1a{width:31.680000pt;}
.w17{width:31.712000pt;}
.w1b{width:32.320000pt;}
.w16{width:33.280000pt;}
.wf{width:38.400000pt;}
.we{width:42.080000pt;}
.w11{width:46.432000pt;}
.w10{width:70.432000pt;}
.wb{width:79.840000pt;}
.wa{width:96.672000pt;}
.wd{width:96.832000pt;}
.w9{width:112.320000pt;}
.wc{width:122.240000pt;}
.w1f{width:128.480000pt;}
.w1e{width:176.506667pt;}
.w12{width:178.266667pt;}
.w3{width:185.946667pt;}
.w1c{width:190.906667pt;}
.w1d{width:217.146667pt;}
.w5{width:385.026667pt;}
.w20{width:467.453333pt;}
.w6{width:589.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.200000pt;}
.xb{left:9.440000pt;}
.x2f{left:10.560000pt;}
.x2a{left:12.960000pt;}
.x28{left:17.440000pt;}
.x18{left:18.880000pt;}
.x2e{left:23.226667pt;}
.x15{left:24.480000pt;}
.x22{left:27.840000pt;}
.x1a{left:30.560000pt;}
.x1e{left:33.280000pt;}
.x1d{left:39.840000pt;}
.x19{left:42.906667pt;}
.x1b{left:45.626667pt;}
.x1c{left:48.346667pt;}
.x41{left:64.154667pt;}
.xd{left:94.720000pt;}
.x3e{left:103.552000pt;}
.x8{left:111.552000pt;}
.x1{left:113.471988pt;}
.x3f{left:121.114667pt;}
.x12{left:134.106655pt;}
.x11{left:137.466655pt;}
.x10{left:139.866655pt;}
.x2{left:141.626655pt;}
.x5{left:153.786655pt;}
.xf{left:161.466655pt;}
.x7{left:168.986655pt;}
.x6{left:176.186655pt;}
.x3{left:192.826655pt;}
.x26{left:212.026655pt;}
.x27{left:219.386667pt;}
.x25{left:230.906655pt;}
.x40{left:232.026667pt;}
.x1f{left:257.026667pt;}
.x14{left:261.986667pt;}
.x30{left:291.746667pt;}
.xa{left:297.506667pt;}
.x3c{left:305.026667pt;}
.xc{left:316.226667pt;}
.x31{left:318.626667pt;}
.x32{left:347.906667pt;}
.x29{left:358.306667pt;}
.x16{left:374.306667pt;}
.xe{left:377.826667pt;}
.x20{left:379.266667pt;}
.x2b{left:396.706667pt;}
.x4{left:406.466655pt;}
.x33{left:411.906667pt;}
.x24{left:430.493322pt;}
.x34{left:443.613333pt;}
.x2c{left:467.133333pt;}
.x17{left:470.973333pt;}
.x21{left:475.933333pt;}
.x35{left:497.533333pt;}
.x3d{left:522.173333pt;}
.x36{left:524.413333pt;}
.x2d{left:546.973333pt;}
.x37{left:551.293333pt;}
.x38{left:578.333333pt;}
.x39{left:608.293333pt;}
.x3a{left:639.973333pt;}
.x3b{left:667.013333pt;}
.x13{left:672.773333pt;}
.x23{left:698.533322pt;}
}




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