
    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_cb665e5df1950c342e4972c5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_b12074d7d54e25f61ad01ac3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005371;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_81f7d3e97ba7ebe2435532fd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.927734;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_dc3609bba95d76d9897fe038.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_e6b30cc0dc69635ca8655c36.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005371;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_8021e4dc4c959631213c98e1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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_150b753499f3a580627e1ba8.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.003906;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_fe3570fd8cb3f41025f353cc.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_e7c96784de30141c56739003.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.084473;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_6000022cbe11186baaa68535.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.084473;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ada5f86c4e5454e1a134ec5f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.758789;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:ffd;src:url('chunks/assets/font_e5ddfa73bbc85e29d1765667.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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);}
.m2{transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250025,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls2a{letter-spacing:-0.918000px;}
.ls20{letter-spacing:-0.828000px;}
.ls29{letter-spacing:-0.449400px;}
.ls33{letter-spacing:-0.443400px;}
.ls1f{letter-spacing:-0.388800px;}
.lsd{letter-spacing:-0.342600px;}
.ls28{letter-spacing:-0.339600px;}
.ls23{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.276600px;}
.ls1b{letter-spacing:-0.256200px;}
.ls1d{letter-spacing:-0.198600px;}
.ls2b{letter-spacing:-0.197400px;}
.ls32{letter-spacing:-0.166800px;}
.ls16{letter-spacing:-0.135600px;}
.ls21{letter-spacing:-0.109200px;}
.ls31{letter-spacing:-0.098400px;}
.lsf{letter-spacing:-0.056160px;}
.ls25{letter-spacing:-0.036000px;}
.ls3{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.000720px;}
.ls2d{letter-spacing:0.057600px;}
.ls1{letter-spacing:0.072000px;}
.ls30{letter-spacing:0.075600px;}
.ls1e{letter-spacing:0.083400px;}
.ls26{letter-spacing:0.089400px;}
.ls2e{letter-spacing:0.131040px;}
.ls18{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.150000px;}
.ls24{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.192000px;}
.ls6{letter-spacing:0.192240px;}
.ls1c{letter-spacing:0.221760px;}
.ls0{letter-spacing:0.234000px;}
.ls11{letter-spacing:0.270600px;}
.ls27{letter-spacing:0.279600px;}
.ls15{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.302400px;}
.lsa{letter-spacing:0.314400px;}
.ls1a{letter-spacing:0.331200px;}
.ls5{letter-spacing:0.342000px;}
.ls22{letter-spacing:0.368400px;}
.lse{letter-spacing:0.377400px;}
.ls12{letter-spacing:0.380400px;}
.ls7{letter-spacing:0.917280px;}
.ls9{letter-spacing:1.108080px;}
.lsc{letter-spacing:4.356000px;}
.ls2f{letter-spacing:9.420000px;}
.ls10{letter-spacing:31.985280px;}
.ls19{letter-spacing:51.461280px;}
.ls13{letter-spacing:60.192000px;}
.ls14{letter-spacing:94.608000px;}
.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;}
}
.ws23{word-spacing:-66.240000px;}
.wsd{word-spacing:-36.498240px;}
.wsf{word-spacing:-28.368000px;}
.ws14{word-spacing:-28.224000px;}
.ws5{word-spacing:-23.886720px;}
.ws15{word-spacing:-21.902400px;}
.ws0{word-spacing:-18.720000px;}
.ws9{word-spacing:-18.396000px;}
.ws10{word-spacing:-17.602800px;}
.ws1f{word-spacing:-17.599800px;}
.ws18{word-spacing:-17.590800px;}
.wse{word-spacing:-17.493000px;}
.ws13{word-spacing:-17.372400px;}
.ws1e{word-spacing:-17.311800px;}
.ws11{word-spacing:-17.222400px;}
.ws12{word-spacing:-17.086800px;}
.ws17{word-spacing:-16.966200px;}
.ws2{word-spacing:-16.945800px;}
.ws16{word-spacing:-16.879800px;}
.ws25{word-spacing:-16.779000px;}
.ws20{word-spacing:-16.773000px;}
.ws21{word-spacing:-16.304400px;}
.wsc{word-spacing:-15.915000px;}
.ws7{word-spacing:-15.852000px;}
.ws8{word-spacing:-15.729600px;}
.wsa{word-spacing:-15.537600px;}
.ws24{word-spacing:-15.439200px;}
.ws22{word-spacing:-15.340200px;}
.wsb{word-spacing:-15.195000px;}
.ws19{word-spacing:-14.616000px;}
.ws4{word-spacing:-14.382000px;}
.ws3{word-spacing:-14.274000px;}
.ws1a{word-spacing:-14.220000px;}
.ws1c{word-spacing:-14.112000px;}
.ws1d{word-spacing:-14.040000px;}
.ws1b{word-spacing:-14.004000px;}
.ws1{word-spacing:-12.542400px;}
.ws6{word-spacing:0.000000px;}
._f{margin-left:-16.617600px;}
._10{margin-left:-14.860320px;}
._13{margin-left:-13.825920px;}
._12{margin-left:-12.361440px;}
._11{margin-left:-10.735200px;}
._a{margin-left:-8.576640px;}
._b{margin-left:-6.574560px;}
._9{margin-left:-5.398560px;}
._18{margin-left:-4.371840px;}
._8{margin-left:-3.368160px;}
._7{margin-left:-2.103840px;}
._6{margin-left:-1.061280px;}
._0{width:1.543680px;}
._2{width:2.653200px;}
._5{width:4.052160px;}
._3{width:5.232720px;}
._1a{width:6.362160px;}
._1{width:7.911360px;}
._4{width:9.078480px;}
._17{width:11.092320px;}
._15{width:13.083840px;}
._14{width:14.705280px;}
._16{width:15.773280px;}
._19{width:18.862560px;}
._1d{width:19.863360px;}
._1b{width:21.792960px;}
._1c{width:23.096160px;}
._d{width:31.780800px;}
._c{width:33.033600px;}
._e{width:847.077600px;}
._1e{width:979.979435px;}
.fc9{color:rgb(156,101,0);}
.fc6{color:rgb(108,174,63);}
.fc4{color:rgb(39,99,64);}
.fc3{color:transparent;}
.fc8{color:rgb(72,117,42);}
.fc1{color:rgb(151,204,114);}
.fc7{color:rgb(127,127,127);}
.fc5{color:rgb(90,90,90);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:5.760000px;}
.fs6{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fsc{font-size:80.839714px;}
.fsb{font-size:84.240000px;}
.fs4{font-size:102.240000px;}
.fsa{font-size:108.000000px;}
.fs3{font-size:144.000000px;}
.y31{bottom:-3.780000px;}
.y0{bottom:0.000000px;}
.y15b{bottom:0.205306px;}
.y3{bottom:3.420000px;}
.y2e{bottom:3.780000px;}
.yea{bottom:3.960000px;}
.yed{bottom:4.140000px;}
.ya8{bottom:4.860000px;}
.y34{bottom:8.820000px;}
.y36{bottom:9.000000px;}
.y9c{bottom:9.180000px;}
.y98{bottom:9.360000px;}
.y9e{bottom:9.390000px;}
.y17{bottom:9.720000px;}
.y24{bottom:9.900000px;}
.y45{bottom:10.440000px;}
.y96{bottom:10.620000px;}
.y18{bottom:11.340000px;}
.y20{bottom:11.520000px;}
.y25{bottom:11.700000px;}
.y15{bottom:12.060000px;}
.y1c{bottom:13.320000px;}
.y4c{bottom:13.500000px;}
.ya9{bottom:16.065000px;}
.y48{bottom:19.080000px;}
.y2f{bottom:19.260000px;}
.y6{bottom:19.620000px;}
.y38{bottom:20.160000px;}
.y4d{bottom:23.760000px;}
.yb2{bottom:27.360000px;}
.ya7{bottom:27.405000px;}
.y30{bottom:28.080000px;}
.y47{bottom:29.340000px;}
.y39{bottom:29.700000px;}
.y4e{bottom:33.840000px;}
.y1a{bottom:34.200000px;}
.y1b{bottom:35.820000px;}
.y5{bottom:36.000000px;}
.y4b{bottom:38.340000px;}
.yad{bottom:38.520000px;}
.y2c{bottom:48.420000px;}
.y7{bottom:48.960000px;}
.yaf{bottom:49.860000px;}
.y4{bottom:52.380000px;}
.yac{bottom:61.020000px;}
.y2{bottom:70.056000px;}
.yae{bottom:72.360000px;}
.yab{bottom:83.520000px;}
.yb1{bottom:94.680000px;}
.yc3{bottom:112.536000px;}
.yb0{bottom:117.180000px;}
.yd7{bottom:121.896000px;}
.y142{bottom:128.196000px;}
.yc2{bottom:133.056000px;}
.y2b{bottom:141.876000px;}
.yd6{bottom:142.416000px;}
.y129{bottom:142.956000px;}
.y141{bottom:150.690000px;}
.yc1{bottom:153.570000px;}
.y2a{bottom:156.090000px;}
.yd5{bottom:167.430000px;}
.yc0{bottom:169.590000px;}
.y14a{bottom:169.770000px;}
.y29{bottom:171.750000px;}
.y140{bottom:173.190000px;}
.y8e{bottom:174.450000px;}
.y28{bottom:176.970000px;}
.y27{bottom:192.630000px;}
.y106{bottom:193.890000px;}
.y116{bottom:194.970000px;}
.y13f{bottom:195.690000px;}
.y128{bottom:196.950000px;}
.y8d{bottom:205.950000px;}
.y115{bottom:215.490000px;}
.y105{bottom:218.910000px;}
.y127{bottom:219.450000px;}
.y54{bottom:227.910000px;}
.y13e{bottom:230.070000px;}
.y8c{bottom:234.750000px;}
.y114{bottom:240.510000px;}
.y126{bottom:256.170000px;}
.y8b{bottom:259.050000px;}
.y53{bottom:259.410000px;}
.y26{bottom:260.850000px;}
.ye6{bottom:269.850000px;}
.y125{bottom:276.870000px;}
.y23{bottom:279.210000px;}
.y8a{bottom:283.170000px;}
.y52{bottom:284.790000px;}
.y13d{bottom:288.930000px;}
.yff{bottom:292.350000px;}
.ye5{bottom:301.350000px;}
.y124{bottom:301.890000px;}
.y89{bottom:307.470000px;}
.y22{bottom:313.590000px;}
.yfe{bottom:316.650000px;}
.y51{bottom:317.730000px;}
.ye4{bottom:323.850000px;}
.y88{bottom:331.770000px;}
.ye3{bottom:346.395000px;}
.y21{bottom:347.835000px;}
.y50{bottom:350.535000px;}
.yfd{bottom:353.595000px;}
.y87{bottom:356.115000px;}
.ye2{bottom:368.895000px;}
.y159{bottom:371.955000px;}
.yfc{bottom:378.615000px;}
.y86{bottom:380.235000px;}
.y1f{bottom:382.215000px;}
.y4f{bottom:383.295000px;}
.y158{bottom:403.455000px;}
.y85{bottom:404.535000px;}
.ye1{bottom:405.615000px;}
.yd4{bottom:408.675000px;}
.y4a{bottom:416.055000px;}
.y1e{bottom:416.415000px;}
.y157{bottom:425.955000px;}
.y84{bottom:428.835000px;}
.y149{bottom:430.635000px;}
.ye0{bottom:430.815000px;}
.yd3{bottom:431.175000px;}
.ya3{bottom:436.755000px;}
.y156{bottom:448.275000px;}
.y1d{bottom:450.615000px;}
.y83{bottom:452.955000px;}
.yd2{bottom:453.495000px;}
.ya2{bottom:468.255000px;}
.y155{bottom:470.775000px;}
.yd1{bottom:475.995000px;}
.y82{bottom:477.255000px;}
.y49{bottom:478.335000px;}
.y104{bottom:482.655000px;}
.y19{bottom:484.995000px;}
.y13c{bottom:489.135000px;}
.y113{bottom:490.755000px;}
.ya1{bottom:493.635000px;}
.yd0{bottom:498.495000px;}
.y81{bottom:501.555000px;}
.y154{bottom:507.675000px;}
.ybf{bottom:508.935000px;}
.y13b{bottom:509.835000px;}
.y112{bottom:513.255000px;}
.y103{bottom:519.555000px;}
.ycf{bottom:520.995000px;}
.y80{bottom:525.855000px;}
.y153{bottom:528.195000px;}
.ya0{bottom:528.555000px;}
.ybe{bottom:531.435000px;}
.y46{bottom:531.615000px;}
.y111{bottom:535.755000px;}
.y13a{bottom:539.535000px;}
.yce{bottom:543.495000px;}
.y16{bottom:543.675000px;}
.y152{bottom:548.715000px;}
.y102{bottom:549.435000px;}
.y7f{bottom:549.975000px;}
.ybd{bottom:558.075000px;}
.yfb{bottom:558.255000px;}
.y139{bottom:562.035000px;}
.y9f{bottom:563.295000px;}
.ycd{bottom:565.995000px;}
.y151{bottom:569.055000px;}
.y7e{bottom:574.275000px;}
.y14{bottom:577.875000px;}
.y110{bottom:580.575000px;}
.yfa{bottom:580.755000px;}
.y138{bottom:584.535000px;}
.y44{bottom:584.895000px;}
.y123{bottom:585.795000px;}
.y160{bottom:586.515000px;}
.ycc{bottom:588.315000px;}
.y150{bottom:589.575000px;}
.y9d{bottom:598.215000px;}
.y7d{bottom:598.575000px;}
.y10f{bottom:603.075000px;}
.yf9{bottom:603.255000px;}
.y122{bottom:608.325000px;}
.ycb{bottom:610.845000px;}
.y14f{bottom:614.445000px;}
.y15a{bottom:616.995000px;}
.y137{bottom:621.465000px;}
.y7c{bottom:622.725000px;}
.yf8{bottom:625.785000px;}
.y121{bottom:630.645000px;}
.y9b{bottom:633.165000px;}
.yca{bottom:633.345000px;}
.y15f{bottom:635.145000px;}
.y13{bottom:636.225000px;}
.y10e{bottom:640.005000px;}
.y136{bottom:641.985000px;}
.y43{bottom:642.705000px;}
.y7b{bottom:647.025000px;}
.y120{bottom:653.145000px;}
.yc9{bottom:655.845000px;}
.y15e{bottom:659.265000px;}
.yf7{bottom:663.225000px;}
.yb4{bottom:664.485000px;}
.ydf{bottom:665.205000px;}
.y135{bottom:667.005000px;}
.y9a{bottom:667.905000px;}
.y7a{bottom:671.325000px;}
.y12{bottom:673.485000px;}
.y15d{bottom:683.565000px;}
.y42{bottom:685.365000px;}
.yf6{bottom:685.725000px;}
.yde{bottom:687.705000px;}
.y11f{bottom:691.125000px;}
.yc8{bottom:693.825000px;}
.y79{bottom:695.625000px;}
.yb3{bottom:700.665000px;}
.y99{bottom:702.825000px;}
.y15c{bottom:707.865000px;}
.y41{bottom:708.225000px;}
.ydd{bottom:710.205000px;}
.y6a{bottom:710.385000px;}
.y148{bottom:713.265000px;}
.yf5{bottom:718.485000px;}
.y78{bottom:719.745000px;}
.yaa{bottom:721.725000px;}
.y11{bottom:726.945000px;}
.y11e{bottom:727.485000px;}
.ydc{bottom:732.705000px;}
.y147{bottom:733.965000px;}
.yc7{bottom:736.125000px;}
.y97{bottom:737.565000px;}
.y40{bottom:738.465000px;}
.y69{bottom:741.885000px;}
.y77{bottom:744.045000px;}
.y11d{bottom:749.985000px;}
.yf4{bottom:754.665000px;}
.yc6{bottom:758.625000px;}
.ydb{bottom:765.465000px;}
.y5f{bottom:766.545000px;}
.y76{bottom:768.345000px;}
.y3f{bottom:768.705000px;}
.y146{bottom:769.065000px;}
.y95{bottom:772.485000px;}
.y68{bottom:773.565000px;}
.y10{bottom:779.325000px;}
.yc5{bottom:781.125000px;}
.yf3{bottom:786.165000px;}
.y75{bottom:792.645000px;}
.y145{bottom:794.265000px;}
.y11c{bottom:794.985000px;}
.y134{bottom:795.705000px;}
.y5e{bottom:798.045000px;}
.y3e{bottom:798.765000px;}
.y67{bottom:805.245000px;}
.yda{bottom:807.045000px;}
.yc4{bottom:807.765000px;}
.yf2{bottom:809.025000px;}
.y74{bottom:816.765000px;}
.y11b{bottom:817.485000px;}
.y133{bottom:818.205000px;}
.yf{bottom:823.425000px;}
.yd9{bottom:827.745000px;}
.y3d{bottom:829.005000px;}
.y5d{bottom:829.545000px;}
.y94{bottom:830.445000px;}
.y101{bottom:832.065000px;}
.yf1{bottom:832.425000px;}
.y66{bottom:837.105000px;}
.y11a{bottom:839.805000px;}
.y132{bottom:840.705000px;}
.y73{bottom:841.065000px;}
.yd8{bottom:852.765000px;}
.yf0{bottom:855.645000px;}
.y100{bottom:857.265000px;}
.y3c{bottom:859.245000px;}
.ya6{bottom:859.965000px;}
.y131{bottom:863.025000px;}
.y72{bottom:865.365000px;}
.y5c{bottom:865.725000px;}
.y65{bottom:868.785000px;}
.y93{bottom:873.150000px;}
.ye{bottom:876.210000px;}
.y119{bottom:877.830000px;}
.y14e{bottom:878.190000px;}
.yef{bottom:878.910000px;}
.y3b{bottom:889.350000px;}
.y71{bottom:889.530000px;}
.ybc{bottom:891.510000px;}
.y130{bottom:899.430000px;}
.y64{bottom:900.510000px;}
.y14d{bottom:900.690000px;}
.y92{bottom:901.770000px;}
.y5b{bottom:902.130000px;}
.y70{bottom:913.830000px;}
.ybb{bottom:914.010000px;}
.y3a{bottom:919.590000px;}
.y12f{bottom:923.550000px;}
.yee{bottom:925.350000px;}
.y91{bottom:926.070000px;}
.ya5{bottom:927.510000px;}
.yd{bottom:928.590000px;}
.y63{bottom:932.370000px;}
.y10d{bottom:935.610000px;}
.yba{bottom:936.330000px;}
.y14c{bottom:937.590000px;}
.y6f{bottom:938.130000px;}
.y5a{bottom:938.310000px;}
.y118{bottom:940.290000px;}
.yec{bottom:948.570000px;}
.y37{bottom:949.830000px;}
.y90{bottom:950.370000px;}
.y10c{bottom:958.110000px;}
.yb9{bottom:958.830000px;}
.y12e{bottom:959.910000px;}
.yc{bottom:960.090000px;}
.y6e{bottom:962.430000px;}
.y62{bottom:964.050000px;}
.y117{bottom:965.310000px;}
.y14b{bottom:967.470000px;}
.yeb{bottom:971.970000px;}
.y59{bottom:974.670000px;}
.yb8{bottom:981.330000px;}
.y12d{bottom:984.030000px;}
.y6d{bottom:986.550000px;}
.y10b{bottom:990.690000px;}
.ye9{bottom:995.190000px;}
.y61{bottom:995.910000px;}
.yb{bottom:996.450000px;}
.y58{bottom:998.790000px;}
.y35{bottom:1002.390000px;}
.yb7{bottom:1003.830000px;}
.y6c{bottom:1010.850000px;}
.y12c{bottom:1020.390000px;}
.y57{bottom:1023.090000px;}
.yb6{bottom:1026.330000px;}
.y10a{bottom:1027.050000px;}
.y60{bottom:1027.590000px;}
.ya{bottom:1032.630000px;}
.y6b{bottom:1035.150000px;}
.ye8{bottom:1037.670000px;}
.y109{bottom:1049.550000px;}
.yb5{bottom:1054.590000px;}
.y12b{bottom:1056.570000px;}
.y8f{bottom:1057.650000px;}
.y56{bottom:1059.270000px;}
.y144{bottom:1060.170000px;}
.y9{bottom:1068.810000px;}
.y108{bottom:1072.050000px;}
.ye7{bottom:1074.390000px;}
.y33{bottom:1079.790000px;}
.y12a{bottom:1080.870000px;}
.y143{bottom:1082.670000px;}
.ya4{bottom:1093.830000px;}
.y55{bottom:1094.010000px;}
.y107{bottom:1100.310000px;}
.y8{bottom:1105.170000px;}
.y32{bottom:1121.190000px;}
.y1{bottom:1192.140000px;}
.y2d{bottom:1194.480000px;}
.h14{height:4.407188px;}
.h12{height:19.800000px;}
.h2a{height:22.500000px;}
.h2b{height:22.536000px;}
.h16{height:29.340000px;}
.h19{height:29.376000px;}
.h17{height:29.520000px;}
.hf{height:29.748516px;}
.h22{height:31.320000px;}
.h21{height:31.500000px;}
.h23{height:31.536000px;}
.h11{height:31.952109px;}
.h9{height:33.480000px;}
.hd{height:33.516000px;}
.he{height:33.660000px;}
.h5{height:36.910195px;}
.h1a{height:37.476000px;}
.h20{height:37.620000px;}
.h4{height:41.317383px;}
.h13{height:42.480000px;}
.h7{height:43.776000px;}
.h25{height:45.036000px;}
.h10{height:45.724570px;}
.h1c{height:49.860000px;}
.h2{height:50.682656px;}
.h18{height:51.840000px;}
.ha{height:55.089844px;}
.hb{height:57.960000px;}
.h1d{height:58.860000px;}
.h29{height:62.402344px;}
.hc{height:64.270195px;}
.h1b{height:64.455117px;}
.h3{height:65.340000px;}
.h1e{height:68.084282px;}
.h1f{height:71.613281px;}
.h28{height:74.004654px;}
.h8{height:78.227578px;}
.h15{height:82.634766px;}
.h2d{height:84.155406px;}
.h27{height:86.585445px;}
.h6{height:110.179688px;}
.h24{height:111.006981px;}
.h26{height:134.820000px;}
.h2c{height:222.675000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w19{width:61.740000px;}
.w20{width:74.520000px;}
.w1a{width:74.880000px;}
.w21{width:75.276000px;}
.w1b{width:75.636000px;}
.w22{width:84.420000px;}
.w1c{width:84.780000px;}
.w3{width:95.796000px;}
.w1e{width:100.080000px;}
.w23{width:101.736000px;}
.w1d{width:102.096000px;}
.wd{width:138.456000px;}
.w16{width:148.716000px;}
.w13{width:148.896000px;}
.w14{width:149.076000px;}
.w17{width:149.220000px;}
.w11{width:149.436000px;}
.w15{width:149.616000px;}
.wb{width:179.670000px;}
.wf{width:186.150000px;}
.w10{width:189.750000px;}
.we{width:227.370000px;}
.w1f{width:243.795000px;}
.w18{width:244.155000px;}
.w6{width:244.695000px;}
.w7{width:520.635000px;}
.wa{width:567.645000px;}
.wc{width:576.465000px;}
.w12{width:598.965000px;}
.w4{width:669.885000px;}
.w9{width:681.270000px;}
.w24{width:764.180562px;}
.w5{width:765.690000px;}
.w8{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x38{left:6.480000px;}
.xd{left:8.100000px;}
.x50{left:9.540000px;}
.x4e{left:10.980000px;}
.x2b{left:12.420000px;}
.x29{left:14.220000px;}
.x66{left:15.300000px;}
.x4f{left:16.380000px;}
.x4d{left:19.620000px;}
.x3{left:21.600000px;}
.x63{left:22.860000px;}
.x64{left:25.950000px;}
.x22{left:29.556000px;}
.x46{left:31.896000px;}
.x2c{left:33.705000px;}
.x65{left:35.100000px;}
.x2a{left:36.756000px;}
.x2d{left:37.845000px;}
.xe{left:40.536000px;}
.x28{left:42.696000px;}
.x4b{left:44.820000px;}
.x49{left:46.080000px;}
.x10{left:48.096000px;}
.xb{left:50.076000px;}
.x19{left:53.280000px;}
.x42{left:54.576000px;}
.x4c{left:55.836000px;}
.x3b{left:58.536000px;}
.x3e{left:59.796000px;}
.x26{left:62.130000px;}
.x1{left:63.899987px;}
.x73{left:66.075000px;}
.x21{left:67.140000px;}
.x16{left:69.479987px;}
.x17{left:74.519987px;}
.x53{left:76.679987px;}
.x54{left:77.939987px;}
.x34{left:80.459987px;}
.x13{left:83.556000px;}
.x5b{left:85.859987px;}
.x1a{left:87.516000px;}
.x24{left:88.965000px;}
.x32{left:90.935987px;}
.x2f{left:93.090000px;}
.x30{left:94.905000px;}
.x5{left:103.175987px;}
.x52{left:107.315987px;}
.x2e{left:113.805000px;}
.x8{left:121.715987px;}
.x40{left:123.525000px;}
.x6f{left:134.855987px;}
.x3c{left:142.245000px;}
.x5c{left:147.635987px;}
.x12{left:150.330000px;}
.x6a{left:154.109987px;}
.x2{left:159.510000px;}
.x14{left:163.650000px;}
.x43{left:165.825000px;}
.x72{left:176.789987px;}
.x44{left:179.685000px;}
.x6{left:183.809987px;}
.x41{left:184.905000px;}
.x11{left:188.850000px;}
.xf{left:191.730000px;}
.x1b{left:192.990000px;}
.x23{left:208.830000px;}
.x3f{left:211.365000px;}
.x39{left:219.810000px;}
.x5d{left:222.689987px;}
.xa{left:229.575000px;}
.x45{left:231.509987px;}
.x1c{left:233.145000px;}
.x1f{left:245.010000px;}
.x3a{left:246.855000px;}
.x68{left:255.809987px;}
.x58{left:258.329987px;}
.x3d{left:262.695000px;}
.x71{left:273.629987px;}
.x15{left:279.974987px;}
.x67{left:301.394987px;}
.x55{left:304.634987px;}
.xc{left:308.415000px;}
.x7{left:311.654987px;}
.x37{left:319.214987px;}
.x31{left:322.994987px;}
.x20{left:332.354987px;}
.x33{left:335.954987px;}
.x1e{left:358.454987px;}
.x47{left:371.775000px;}
.x35{left:373.214987px;}
.x36{left:378.074987px;}
.x5e{left:380.955000px;}
.x6d{left:420.194987px;}
.x25{left:439.635000px;}
.x9{left:446.654987px;}
.x5f{left:455.835000px;}
.x74{left:505.214810px;}
.x48{left:524.625000px;}
.x60{left:531.645000px;}
.x1d{left:556.860000px;}
.x61{left:616.425000px;}
.x27{left:629.025000px;}
.x51{left:658.229987px;}
.x4a{left:676.770000px;}
.x57{left:695.309987px;}
.x62{left:718.530000px;}
.x70{left:752.729987px;}
.x56{left:758.669987px;}
.x6c{left:762.809987px;}
.x59{left:775.589987px;}
.x18{left:783.869987px;}
.x6b{left:804.569987px;}
.x4{left:829.589987px;}
.x69{left:831.389987px;}
.x5a{left:833.549987px;}
.x6e{left:856.259987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls2a{letter-spacing:-0.816000pt;}
.ls20{letter-spacing:-0.736000pt;}
.ls29{letter-spacing:-0.399467pt;}
.ls33{letter-spacing:-0.394133pt;}
.ls1f{letter-spacing:-0.345600pt;}
.lsd{letter-spacing:-0.304533pt;}
.ls28{letter-spacing:-0.301867pt;}
.ls23{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.245867pt;}
.ls1b{letter-spacing:-0.227733pt;}
.ls1d{letter-spacing:-0.176533pt;}
.ls2b{letter-spacing:-0.175467pt;}
.ls32{letter-spacing:-0.148267pt;}
.ls16{letter-spacing:-0.120533pt;}
.ls21{letter-spacing:-0.097067pt;}
.ls31{letter-spacing:-0.087467pt;}
.lsf{letter-spacing:-0.049920pt;}
.ls25{letter-spacing:-0.032000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.000640pt;}
.ls2d{letter-spacing:0.051200pt;}
.ls1{letter-spacing:0.064000pt;}
.ls30{letter-spacing:0.067200pt;}
.ls1e{letter-spacing:0.074133pt;}
.ls26{letter-spacing:0.079467pt;}
.ls2e{letter-spacing:0.116480pt;}
.ls18{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.133333pt;}
.ls24{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.170667pt;}
.ls6{letter-spacing:0.170880pt;}
.ls1c{letter-spacing:0.197120pt;}
.ls0{letter-spacing:0.208000pt;}
.ls11{letter-spacing:0.240533pt;}
.ls27{letter-spacing:0.248533pt;}
.ls15{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.268800pt;}
.lsa{letter-spacing:0.279467pt;}
.ls1a{letter-spacing:0.294400pt;}
.ls5{letter-spacing:0.304000pt;}
.ls22{letter-spacing:0.327467pt;}
.lse{letter-spacing:0.335467pt;}
.ls12{letter-spacing:0.338133pt;}
.ls7{letter-spacing:0.815360pt;}
.ls9{letter-spacing:0.984960pt;}
.lsc{letter-spacing:3.872000pt;}
.ls2f{letter-spacing:8.373333pt;}
.ls10{letter-spacing:28.431360pt;}
.ls19{letter-spacing:45.743360pt;}
.ls13{letter-spacing:53.504000pt;}
.ls14{letter-spacing:84.096000pt;}
.ws23{word-spacing:-58.880000pt;}
.wsd{word-spacing:-32.442880pt;}
.wsf{word-spacing:-25.216000pt;}
.ws14{word-spacing:-25.088000pt;}
.ws5{word-spacing:-21.232640pt;}
.ws15{word-spacing:-19.468800pt;}
.ws0{word-spacing:-16.640000pt;}
.ws9{word-spacing:-16.352000pt;}
.ws10{word-spacing:-15.646933pt;}
.ws1f{word-spacing:-15.644267pt;}
.ws18{word-spacing:-15.636267pt;}
.wse{word-spacing:-15.549333pt;}
.ws13{word-spacing:-15.442133pt;}
.ws1e{word-spacing:-15.388267pt;}
.ws11{word-spacing:-15.308800pt;}
.ws12{word-spacing:-15.188267pt;}
.ws17{word-spacing:-15.081067pt;}
.ws2{word-spacing:-15.062933pt;}
.ws16{word-spacing:-15.004267pt;}
.ws25{word-spacing:-14.914667pt;}
.ws20{word-spacing:-14.909333pt;}
.ws21{word-spacing:-14.492800pt;}
.wsc{word-spacing:-14.146667pt;}
.ws7{word-spacing:-14.090667pt;}
.ws8{word-spacing:-13.981867pt;}
.wsa{word-spacing:-13.811200pt;}
.ws24{word-spacing:-13.723733pt;}
.ws22{word-spacing:-13.635733pt;}
.wsb{word-spacing:-13.506667pt;}
.ws19{word-spacing:-12.992000pt;}
.ws4{word-spacing:-12.784000pt;}
.ws3{word-spacing:-12.688000pt;}
.ws1a{word-spacing:-12.640000pt;}
.ws1c{word-spacing:-12.544000pt;}
.ws1d{word-spacing:-12.480000pt;}
.ws1b{word-spacing:-12.448000pt;}
.ws1{word-spacing:-11.148800pt;}
.ws6{word-spacing:0.000000pt;}
._f{margin-left:-14.771200pt;}
._10{margin-left:-13.209173pt;}
._13{margin-left:-12.289707pt;}
._12{margin-left:-10.987947pt;}
._11{margin-left:-9.542400pt;}
._a{margin-left:-7.623680pt;}
._b{margin-left:-5.844053pt;}
._9{margin-left:-4.798720pt;}
._18{margin-left:-3.886080pt;}
._8{margin-left:-2.993920pt;}
._7{margin-left:-1.870080pt;}
._6{margin-left:-0.943360pt;}
._0{width:1.372160pt;}
._2{width:2.358400pt;}
._5{width:3.601920pt;}
._3{width:4.651307pt;}
._1a{width:5.655253pt;}
._1{width:7.032320pt;}
._4{width:8.069760pt;}
._17{width:9.859840pt;}
._15{width:11.630080pt;}
._14{width:13.071360pt;}
._16{width:14.020693pt;}
._19{width:16.766720pt;}
._1d{width:17.656320pt;}
._1b{width:19.371520pt;}
._1c{width:20.529920pt;}
._d{width:28.249600pt;}
._c{width:29.363200pt;}
._e{width:752.957867pt;}
._1e{width:871.092831pt;}
.fs9{font-size:5.120000pt;}
.fs6{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fsc{font-size:71.857524pt;}
.fsb{font-size:74.880000pt;}
.fs4{font-size:90.880000pt;}
.fsa{font-size:96.000000pt;}
.fs3{font-size:128.000000pt;}
.y31{bottom:-3.360000pt;}
.y0{bottom:0.000000pt;}
.y15b{bottom:0.182494pt;}
.y3{bottom:3.040000pt;}
.y2e{bottom:3.360000pt;}
.yea{bottom:3.520000pt;}
.yed{bottom:3.680000pt;}
.ya8{bottom:4.320000pt;}
.y34{bottom:7.840000pt;}
.y36{bottom:8.000000pt;}
.y9c{bottom:8.160000pt;}
.y98{bottom:8.320000pt;}
.y9e{bottom:8.346667pt;}
.y17{bottom:8.640000pt;}
.y24{bottom:8.800000pt;}
.y45{bottom:9.280000pt;}
.y96{bottom:9.440000pt;}
.y18{bottom:10.080000pt;}
.y20{bottom:10.240000pt;}
.y25{bottom:10.400000pt;}
.y15{bottom:10.720000pt;}
.y1c{bottom:11.840000pt;}
.y4c{bottom:12.000000pt;}
.ya9{bottom:14.280000pt;}
.y48{bottom:16.960000pt;}
.y2f{bottom:17.120000pt;}
.y6{bottom:17.440000pt;}
.y38{bottom:17.920000pt;}
.y4d{bottom:21.120000pt;}
.yb2{bottom:24.320000pt;}
.ya7{bottom:24.360000pt;}
.y30{bottom:24.960000pt;}
.y47{bottom:26.080000pt;}
.y39{bottom:26.400000pt;}
.y4e{bottom:30.080000pt;}
.y1a{bottom:30.400000pt;}
.y1b{bottom:31.840000pt;}
.y5{bottom:32.000000pt;}
.y4b{bottom:34.080000pt;}
.yad{bottom:34.240000pt;}
.y2c{bottom:43.040000pt;}
.y7{bottom:43.520000pt;}
.yaf{bottom:44.320000pt;}
.y4{bottom:46.560000pt;}
.yac{bottom:54.240000pt;}
.y2{bottom:62.272000pt;}
.yae{bottom:64.320000pt;}
.yab{bottom:74.240000pt;}
.yb1{bottom:84.160000pt;}
.yc3{bottom:100.032000pt;}
.yb0{bottom:104.160000pt;}
.yd7{bottom:108.352000pt;}
.y142{bottom:113.952000pt;}
.yc2{bottom:118.272000pt;}
.y2b{bottom:126.112000pt;}
.yd6{bottom:126.592000pt;}
.y129{bottom:127.072000pt;}
.y141{bottom:133.946667pt;}
.yc1{bottom:136.506667pt;}
.y2a{bottom:138.746667pt;}
.yd5{bottom:148.826667pt;}
.yc0{bottom:150.746667pt;}
.y14a{bottom:150.906667pt;}
.y29{bottom:152.666667pt;}
.y140{bottom:153.946667pt;}
.y8e{bottom:155.066667pt;}
.y28{bottom:157.306667pt;}
.y27{bottom:171.226667pt;}
.y106{bottom:172.346667pt;}
.y116{bottom:173.306667pt;}
.y13f{bottom:173.946667pt;}
.y128{bottom:175.066667pt;}
.y8d{bottom:183.066667pt;}
.y115{bottom:191.546667pt;}
.y105{bottom:194.586667pt;}
.y127{bottom:195.066667pt;}
.y54{bottom:202.586667pt;}
.y13e{bottom:204.506667pt;}
.y8c{bottom:208.666667pt;}
.y114{bottom:213.786667pt;}
.y126{bottom:227.706667pt;}
.y8b{bottom:230.266667pt;}
.y53{bottom:230.586667pt;}
.y26{bottom:231.866667pt;}
.ye6{bottom:239.866667pt;}
.y125{bottom:246.106667pt;}
.y23{bottom:248.186667pt;}
.y8a{bottom:251.706667pt;}
.y52{bottom:253.146667pt;}
.y13d{bottom:256.826667pt;}
.yff{bottom:259.866667pt;}
.ye5{bottom:267.866667pt;}
.y124{bottom:268.346667pt;}
.y89{bottom:273.306667pt;}
.y22{bottom:278.746667pt;}
.yfe{bottom:281.466667pt;}
.y51{bottom:282.426667pt;}
.ye4{bottom:287.866667pt;}
.y88{bottom:294.906667pt;}
.ye3{bottom:307.906667pt;}
.y21{bottom:309.186667pt;}
.y50{bottom:311.586667pt;}
.yfd{bottom:314.306667pt;}
.y87{bottom:316.546667pt;}
.ye2{bottom:327.906667pt;}
.y159{bottom:330.626667pt;}
.yfc{bottom:336.546667pt;}
.y86{bottom:337.986667pt;}
.y1f{bottom:339.746667pt;}
.y4f{bottom:340.706667pt;}
.y158{bottom:358.626667pt;}
.y85{bottom:359.586667pt;}
.ye1{bottom:360.546667pt;}
.yd4{bottom:363.266667pt;}
.y4a{bottom:369.826667pt;}
.y1e{bottom:370.146667pt;}
.y157{bottom:378.626667pt;}
.y84{bottom:381.186667pt;}
.y149{bottom:382.786667pt;}
.ye0{bottom:382.946667pt;}
.yd3{bottom:383.266667pt;}
.ya3{bottom:388.226667pt;}
.y156{bottom:398.466667pt;}
.y1d{bottom:400.546667pt;}
.y83{bottom:402.626667pt;}
.yd2{bottom:403.106667pt;}
.ya2{bottom:416.226667pt;}
.y155{bottom:418.466667pt;}
.yd1{bottom:423.106667pt;}
.y82{bottom:424.226667pt;}
.y49{bottom:425.186667pt;}
.y104{bottom:429.026667pt;}
.y19{bottom:431.106667pt;}
.y13c{bottom:434.786667pt;}
.y113{bottom:436.226667pt;}
.ya1{bottom:438.786667pt;}
.yd0{bottom:443.106667pt;}
.y81{bottom:445.826667pt;}
.y154{bottom:451.266667pt;}
.ybf{bottom:452.386667pt;}
.y13b{bottom:453.186667pt;}
.y112{bottom:456.226667pt;}
.y103{bottom:461.826667pt;}
.ycf{bottom:463.106667pt;}
.y80{bottom:467.426667pt;}
.y153{bottom:469.506667pt;}
.ya0{bottom:469.826667pt;}
.ybe{bottom:472.386667pt;}
.y46{bottom:472.546667pt;}
.y111{bottom:476.226667pt;}
.y13a{bottom:479.586667pt;}
.yce{bottom:483.106667pt;}
.y16{bottom:483.266667pt;}
.y152{bottom:487.746667pt;}
.y102{bottom:488.386667pt;}
.y7f{bottom:488.866667pt;}
.ybd{bottom:496.066667pt;}
.yfb{bottom:496.226667pt;}
.y139{bottom:499.586667pt;}
.y9f{bottom:500.706667pt;}
.ycd{bottom:503.106667pt;}
.y151{bottom:505.826667pt;}
.y7e{bottom:510.466667pt;}
.y14{bottom:513.666667pt;}
.y110{bottom:516.066667pt;}
.yfa{bottom:516.226667pt;}
.y138{bottom:519.586667pt;}
.y44{bottom:519.906667pt;}
.y123{bottom:520.706667pt;}
.y160{bottom:521.346667pt;}
.ycc{bottom:522.946667pt;}
.y150{bottom:524.066667pt;}
.y9d{bottom:531.746667pt;}
.y7d{bottom:532.066667pt;}
.y10f{bottom:536.066667pt;}
.yf9{bottom:536.226667pt;}
.y122{bottom:540.733333pt;}
.ycb{bottom:542.973333pt;}
.y14f{bottom:546.173333pt;}
.y15a{bottom:548.440000pt;}
.y137{bottom:552.413333pt;}
.y7c{bottom:553.533333pt;}
.yf8{bottom:556.253333pt;}
.y121{bottom:560.573333pt;}
.y9b{bottom:562.813333pt;}
.yca{bottom:562.973333pt;}
.y15f{bottom:564.573333pt;}
.y13{bottom:565.533333pt;}
.y10e{bottom:568.893333pt;}
.y136{bottom:570.653333pt;}
.y43{bottom:571.293333pt;}
.y7b{bottom:575.133333pt;}
.y120{bottom:580.573333pt;}
.yc9{bottom:582.973333pt;}
.y15e{bottom:586.013333pt;}
.yf7{bottom:589.533333pt;}
.yb4{bottom:590.653333pt;}
.ydf{bottom:591.293333pt;}
.y135{bottom:592.893333pt;}
.y9a{bottom:593.693333pt;}
.y7a{bottom:596.733333pt;}
.y12{bottom:598.653333pt;}
.y15d{bottom:607.613333pt;}
.y42{bottom:609.213333pt;}
.yf6{bottom:609.533333pt;}
.yde{bottom:611.293333pt;}
.y11f{bottom:614.333333pt;}
.yc8{bottom:616.733333pt;}
.y79{bottom:618.333333pt;}
.yb3{bottom:622.813333pt;}
.y99{bottom:624.733333pt;}
.y15c{bottom:629.213333pt;}
.y41{bottom:629.533333pt;}
.ydd{bottom:631.293333pt;}
.y6a{bottom:631.453333pt;}
.y148{bottom:634.013333pt;}
.yf5{bottom:638.653333pt;}
.y78{bottom:639.773333pt;}
.yaa{bottom:641.533333pt;}
.y11{bottom:646.173333pt;}
.y11e{bottom:646.653333pt;}
.ydc{bottom:651.293333pt;}
.y147{bottom:652.413333pt;}
.yc7{bottom:654.333333pt;}
.y97{bottom:655.613333pt;}
.y40{bottom:656.413333pt;}
.y69{bottom:659.453333pt;}
.y77{bottom:661.373333pt;}
.y11d{bottom:666.653333pt;}
.yf4{bottom:670.813333pt;}
.yc6{bottom:674.333333pt;}
.ydb{bottom:680.413333pt;}
.y5f{bottom:681.373333pt;}
.y76{bottom:682.973333pt;}
.y3f{bottom:683.293333pt;}
.y146{bottom:683.613333pt;}
.y95{bottom:686.653333pt;}
.y68{bottom:687.613333pt;}
.y10{bottom:692.733333pt;}
.yc5{bottom:694.333333pt;}
.yf3{bottom:698.813333pt;}
.y75{bottom:704.573333pt;}
.y145{bottom:706.013333pt;}
.y11c{bottom:706.653333pt;}
.y134{bottom:707.293333pt;}
.y5e{bottom:709.373333pt;}
.y3e{bottom:710.013333pt;}
.y67{bottom:715.773333pt;}
.yda{bottom:717.373333pt;}
.yc4{bottom:718.013333pt;}
.yf2{bottom:719.133333pt;}
.y74{bottom:726.013333pt;}
.y11b{bottom:726.653333pt;}
.y133{bottom:727.293333pt;}
.yf{bottom:731.933333pt;}
.yd9{bottom:735.773333pt;}
.y3d{bottom:736.893333pt;}
.y5d{bottom:737.373333pt;}
.y94{bottom:738.173333pt;}
.y101{bottom:739.613333pt;}
.yf1{bottom:739.933333pt;}
.y66{bottom:744.093333pt;}
.y11a{bottom:746.493333pt;}
.y132{bottom:747.293333pt;}
.y73{bottom:747.613333pt;}
.yd8{bottom:758.013333pt;}
.yf0{bottom:760.573333pt;}
.y100{bottom:762.013333pt;}
.y3c{bottom:763.773333pt;}
.ya6{bottom:764.413333pt;}
.y131{bottom:767.133333pt;}
.y72{bottom:769.213333pt;}
.y5c{bottom:769.533333pt;}
.y65{bottom:772.253333pt;}
.y93{bottom:776.133333pt;}
.ye{bottom:778.853333pt;}
.y119{bottom:780.293333pt;}
.y14e{bottom:780.613333pt;}
.yef{bottom:781.253333pt;}
.y3b{bottom:790.533333pt;}
.y71{bottom:790.693333pt;}
.ybc{bottom:792.453333pt;}
.y130{bottom:799.493333pt;}
.y64{bottom:800.453333pt;}
.y14d{bottom:800.613333pt;}
.y92{bottom:801.573333pt;}
.y5b{bottom:801.893333pt;}
.y70{bottom:812.293333pt;}
.ybb{bottom:812.453333pt;}
.y3a{bottom:817.413333pt;}
.y12f{bottom:820.933333pt;}
.yee{bottom:822.533333pt;}
.y91{bottom:823.173333pt;}
.ya5{bottom:824.453333pt;}
.yd{bottom:825.413333pt;}
.y63{bottom:828.773333pt;}
.y10d{bottom:831.653333pt;}
.yba{bottom:832.293333pt;}
.y14c{bottom:833.413333pt;}
.y6f{bottom:833.893333pt;}
.y5a{bottom:834.053333pt;}
.y118{bottom:835.813333pt;}
.yec{bottom:843.173333pt;}
.y37{bottom:844.293333pt;}
.y90{bottom:844.773333pt;}
.y10c{bottom:851.653333pt;}
.yb9{bottom:852.293333pt;}
.y12e{bottom:853.253333pt;}
.yc{bottom:853.413333pt;}
.y6e{bottom:855.493333pt;}
.y62{bottom:856.933333pt;}
.y117{bottom:858.053333pt;}
.y14b{bottom:859.973333pt;}
.yeb{bottom:863.973333pt;}
.y59{bottom:866.373333pt;}
.yb8{bottom:872.293333pt;}
.y12d{bottom:874.693333pt;}
.y6d{bottom:876.933333pt;}
.y10b{bottom:880.613333pt;}
.ye9{bottom:884.613333pt;}
.y61{bottom:885.253333pt;}
.yb{bottom:885.733333pt;}
.y58{bottom:887.813333pt;}
.y35{bottom:891.013333pt;}
.yb7{bottom:892.293333pt;}
.y6c{bottom:898.533333pt;}
.y12c{bottom:907.013333pt;}
.y57{bottom:909.413333pt;}
.yb6{bottom:912.293333pt;}
.y10a{bottom:912.933333pt;}
.y60{bottom:913.413333pt;}
.ya{bottom:917.893333pt;}
.y6b{bottom:920.133333pt;}
.ye8{bottom:922.373333pt;}
.y109{bottom:932.933333pt;}
.yb5{bottom:937.413333pt;}
.y12b{bottom:939.173333pt;}
.y8f{bottom:940.133333pt;}
.y56{bottom:941.573333pt;}
.y144{bottom:942.373333pt;}
.y9{bottom:950.053333pt;}
.y108{bottom:952.933333pt;}
.ye7{bottom:955.013333pt;}
.y33{bottom:959.813333pt;}
.y12a{bottom:960.773333pt;}
.y143{bottom:962.373333pt;}
.ya4{bottom:972.293333pt;}
.y55{bottom:972.453333pt;}
.y107{bottom:978.053333pt;}
.y8{bottom:982.373333pt;}
.y32{bottom:996.613333pt;}
.y1{bottom:1059.680000pt;}
.y2d{bottom:1061.760000pt;}
.h14{height:3.917500pt;}
.h12{height:17.600000pt;}
.h2a{height:20.000000pt;}
.h2b{height:20.032000pt;}
.h16{height:26.080000pt;}
.h19{height:26.112000pt;}
.h17{height:26.240000pt;}
.hf{height:26.443125pt;}
.h22{height:27.840000pt;}
.h21{height:28.000000pt;}
.h23{height:28.032000pt;}
.h11{height:28.401875pt;}
.h9{height:29.760000pt;}
.hd{height:29.792000pt;}
.he{height:29.920000pt;}
.h5{height:32.809062pt;}
.h1a{height:33.312000pt;}
.h20{height:33.440000pt;}
.h4{height:36.726562pt;}
.h13{height:37.760000pt;}
.h7{height:38.912000pt;}
.h25{height:40.032000pt;}
.h10{height:40.644063pt;}
.h1c{height:44.320000pt;}
.h2{height:45.051250pt;}
.h18{height:46.080000pt;}
.ha{height:48.968750pt;}
.hb{height:51.520000pt;}
.h1d{height:52.320000pt;}
.h29{height:55.468750pt;}
.hc{height:57.129063pt;}
.h1b{height:57.293437pt;}
.h3{height:58.080000pt;}
.h1e{height:60.519362pt;}
.h1f{height:63.656250pt;}
.h28{height:65.781915pt;}
.h8{height:69.535625pt;}
.h15{height:73.453125pt;}
.h2d{height:74.804805pt;}
.h27{height:76.964840pt;}
.h6{height:97.937500pt;}
.h24{height:98.672872pt;}
.h26{height:119.840000pt;}
.h2c{height:197.933333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w19{width:54.880000pt;}
.w20{width:66.240000pt;}
.w1a{width:66.560000pt;}
.w21{width:66.912000pt;}
.w1b{width:67.232000pt;}
.w22{width:75.040000pt;}
.w1c{width:75.360000pt;}
.w3{width:85.152000pt;}
.w1e{width:88.960000pt;}
.w23{width:90.432000pt;}
.w1d{width:90.752000pt;}
.wd{width:123.072000pt;}
.w16{width:132.192000pt;}
.w13{width:132.352000pt;}
.w14{width:132.512000pt;}
.w17{width:132.640000pt;}
.w11{width:132.832000pt;}
.w15{width:132.992000pt;}
.wb{width:159.706667pt;}
.wf{width:165.466667pt;}
.w10{width:168.666667pt;}
.we{width:202.106667pt;}
.w1f{width:216.706667pt;}
.w18{width:217.026667pt;}
.w6{width:217.506667pt;}
.w7{width:462.786667pt;}
.wa{width:504.573333pt;}
.wc{width:512.413333pt;}
.w12{width:532.413333pt;}
.w4{width:595.453333pt;}
.w9{width:605.573333pt;}
.w24{width:679.271610pt;}
.w5{width:680.613333pt;}
.w8{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x38{left:5.760000pt;}
.xd{left:7.200000pt;}
.x50{left:8.480000pt;}
.x4e{left:9.760000pt;}
.x2b{left:11.040000pt;}
.x29{left:12.640000pt;}
.x66{left:13.600000pt;}
.x4f{left:14.560000pt;}
.x4d{left:17.440000pt;}
.x3{left:19.200000pt;}
.x63{left:20.320000pt;}
.x64{left:23.066667pt;}
.x22{left:26.272000pt;}
.x46{left:28.352000pt;}
.x2c{left:29.960000pt;}
.x65{left:31.200000pt;}
.x2a{left:32.672000pt;}
.x2d{left:33.640000pt;}
.xe{left:36.032000pt;}
.x28{left:37.952000pt;}
.x4b{left:39.840000pt;}
.x49{left:40.960000pt;}
.x10{left:42.752000pt;}
.xb{left:44.512000pt;}
.x19{left:47.360000pt;}
.x42{left:48.512000pt;}
.x4c{left:49.632000pt;}
.x3b{left:52.032000pt;}
.x3e{left:53.152000pt;}
.x26{left:55.226667pt;}
.x1{left:56.799988pt;}
.x73{left:58.733333pt;}
.x21{left:59.680000pt;}
.x16{left:61.759988pt;}
.x17{left:66.239988pt;}
.x53{left:68.159988pt;}
.x54{left:69.279988pt;}
.x34{left:71.519988pt;}
.x13{left:74.272000pt;}
.x5b{left:76.319988pt;}
.x1a{left:77.792000pt;}
.x24{left:79.080000pt;}
.x32{left:80.831988pt;}
.x2f{left:82.746667pt;}
.x30{left:84.360000pt;}
.x5{left:91.711988pt;}
.x52{left:95.391988pt;}
.x2e{left:101.160000pt;}
.x8{left:108.191988pt;}
.x40{left:109.800000pt;}
.x6f{left:119.871988pt;}
.x3c{left:126.440000pt;}
.x5c{left:131.231988pt;}
.x12{left:133.626667pt;}
.x6a{left:136.986655pt;}
.x2{left:141.786667pt;}
.x14{left:145.466667pt;}
.x43{left:147.400000pt;}
.x72{left:157.146655pt;}
.x44{left:159.720000pt;}
.x6{left:163.386655pt;}
.x41{left:164.360000pt;}
.x11{left:167.866667pt;}
.xf{left:170.426667pt;}
.x1b{left:171.546667pt;}
.x23{left:185.626667pt;}
.x3f{left:187.880000pt;}
.x39{left:195.386667pt;}
.x5d{left:197.946655pt;}
.xa{left:204.066667pt;}
.x45{left:205.786655pt;}
.x1c{left:207.240000pt;}
.x1f{left:217.786667pt;}
.x3a{left:219.426667pt;}
.x68{left:227.386655pt;}
.x58{left:229.626655pt;}
.x3d{left:233.506667pt;}
.x71{left:243.226655pt;}
.x15{left:248.866655pt;}
.x67{left:267.906655pt;}
.x55{left:270.786655pt;}
.xc{left:274.146667pt;}
.x7{left:277.026655pt;}
.x37{left:283.746655pt;}
.x31{left:287.106655pt;}
.x20{left:295.426655pt;}
.x33{left:298.626655pt;}
.x1e{left:318.626655pt;}
.x47{left:330.466667pt;}
.x35{left:331.746655pt;}
.x36{left:336.066655pt;}
.x5e{left:338.626667pt;}
.x6d{left:373.506655pt;}
.x25{left:390.786667pt;}
.x9{left:397.026655pt;}
.x5f{left:405.186667pt;}
.x74{left:449.079831pt;}
.x48{left:466.333333pt;}
.x60{left:472.573333pt;}
.x1d{left:494.986667pt;}
.x61{left:547.933333pt;}
.x27{left:559.133333pt;}
.x51{left:585.093322pt;}
.x4a{left:601.573333pt;}
.x57{left:618.053322pt;}
.x62{left:638.693333pt;}
.x70{left:669.093322pt;}
.x56{left:674.373322pt;}
.x6c{left:678.053322pt;}
.x59{left:689.413322pt;}
.x18{left:696.773322pt;}
.x6b{left:715.173322pt;}
.x4{left:737.413322pt;}
.x69{left:739.013322pt;}
.x5a{left:740.933322pt;}
.x6e{left:761.119988pt;}
}




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