
    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_c8610ac92466062493fc242c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.886737;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_8d3000c2acd50a213c2bd98d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.917969;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_0db8fdff1fe0bc6dcb3eca8e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.800781;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_76779237c1c55d3cf23687cd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f6732d2b1e5041a239d791c1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8d7d6688aa23f0f31e781ac7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.863770;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_db1c698612fb1eeed85559b3.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_13849aaa602c63438e48bb2a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.050293;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_892b63841803d1cef2114cb8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921387;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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:-93.600000px;}
.v2{vertical-align:-33.120000px;}
.v3{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:30.240000px;}
.v1{vertical-align:33.120000px;}
.ls5{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.070800px;}
.ls2{letter-spacing:0.075000px;}
.ls9{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.432000px;}
.lsd{letter-spacing:0.504000px;}
.lse{letter-spacing:0.792000px;}
.lsa{letter-spacing:0.864000px;}
.ls1{letter-spacing:1.080000px;}
.ls7{letter-spacing:787.080000px;}
.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;}
}
.wsa{word-spacing:-18.864000px;}
.wse{word-spacing:-18.288000px;}
.wsc{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.928000px;}
.wsd{word-spacing:-17.784000px;}
.wsf{word-spacing:-17.712000px;}
.ws5{word-spacing:-16.635000px;}
.ws2{word-spacing:-16.560000px;}
.ws6{word-spacing:-15.840000px;}
.ws9{word-spacing:-15.073584px;}
.ws4{word-spacing:-14.970240px;}
.wsb{word-spacing:-12.060000px;}
.ws3{word-spacing:-9.437760px;}
.ws0{word-spacing:-0.072000px;}
.ws7{word-spacing:0.000000px;}
._2{margin-left:-62.640000px;}
._2f{margin-left:-2.256960px;}
._5{margin-left:-1.192320px;}
._0{width:1.020000px;}
._7{width:2.072640px;}
._15{width:3.208320px;}
._13{width:4.464000px;}
._14{width:5.484000px;}
._2e{width:6.624000px;}
._26{width:7.732320px;}
._28{width:9.328320px;}
._c{width:10.656000px;}
._d{width:12.240000px;}
._12{width:13.752000px;}
._11{width:15.534720px;}
._10{width:16.600320px;}
._31{width:19.008000px;}
._2d{width:20.016000px;}
._e{width:21.384000px;}
._f{width:22.464000px;}
._1{width:23.688000px;}
._25{width:25.056000px;}
._8{width:26.928000px;}
._9{width:27.952320px;}
._22{width:29.304000px;}
._23{width:30.424320px;}
._29{width:31.927680px;}
._33{width:32.997600px;}
._32{width:34.056000px;}
._20{width:35.136000px;}
._21{width:36.276000px;}
._2b{width:37.363680px;}
._16{width:38.392320px;}
._a{width:39.744000px;}
._b{width:40.824000px;}
._2c{width:42.048000px;}
._36{width:43.960320px;}
._30{width:45.000000px;}
._24{width:46.840320px;}
._1e{width:48.240000px;}
._79{width:49.248000px;}
._2a{width:50.256000px;}
._49{width:51.768000px;}
._19{width:53.064000px;}
._1b{width:54.072000px;}
._1c{width:55.716000px;}
._27{width:57.036000px;}
._39{width:58.152960px;}
._18{width:60.007680px;}
._17{width:61.096320px;}
._1d{width:62.640000px;}
._50{width:63.648000px;}
._1a{width:64.800000px;}
._3a{width:66.888000px;}
._42{width:68.184000px;}
._40{width:69.840000px;}
._41{width:71.556000px;}
._4a{width:72.756000px;}
._3b{width:74.016000px;}
._3c{width:75.312000px;}
._34{width:76.320000px;}
._35{width:77.544000px;}
._44{width:79.056000px;}
._4c{width:80.424000px;}
._4d{width:81.432000px;}
._48{width:82.872000px;}
._4b{width:84.208320px;}
._52{width:85.423680px;}
._3f{width:86.904000px;}
._37{width:88.488000px;}
._38{width:89.640000px;}
._43{width:90.648000px;}
._45{width:92.304000px;}
._1f{width:93.856320px;}
._5d{width:94.947360px;}
._56{width:97.272000px;}
._72{width:98.608320px;}
._46{width:101.448000px;}
._47{width:102.744000px;}
._55{width:104.904000px;}
._4f{width:106.416000px;}
._4e{width:107.856000px;}
._67{width:109.008000px;}
._3e{width:110.704320px;}
._3d{width:111.888000px;}
._73{width:113.040000px;}
._76{width:115.704000px;}
._77{width:117.360000px;}
._6c{width:118.768320px;}
._5a{width:119.983680px;}
._59{width:121.216320px;}
._58{width:122.863680px;}
._57{width:124.096320px;}
._60{width:127.584000px;}
._75{width:129.384000px;}
._87{width:130.956000px;}
._86{width:132.808320px;}
._7b{width:140.224320px;}
._61{width:141.264000px;}
._62{width:142.632000px;}
._53{width:146.952000px;}
._54{width:148.104000px;}
._7d{width:153.072000px;}
._7e{width:154.584000px;}
._81{width:155.952000px;}
._6a{width:157.032000px;}
._6f{width:161.856000px;}
._70{width:163.512000px;}
._71{width:164.880000px;}
._89{width:166.536000px;}
._5b{width:176.256000px;}
._68{width:181.944000px;}
._69{width:183.672000px;}
._51{width:186.096000px;}
._5c{width:200.664000px;}
._5f{width:219.312000px;}
._5e{width:220.608000px;}
._80{width:225.648000px;}
._82{width:226.840320px;}
._63{width:238.392000px;}
._8d{width:244.080000px;}
._8e{width:245.592000px;}
._83{width:253.584000px;}
._7f{width:262.080000px;}
._78{width:263.952000px;}
._6d{width:266.400960px;}
._6e{width:267.840000px;}
._64{width:297.648000px;}
._7c{width:312.120000px;}
._84{width:348.480000px;}
._3{width:365.916000px;}
._8c{width:432.072000px;}
._8f{width:520.672320px;}
._8a{width:536.184000px;}
._74{width:540.504000px;}
._8b{width:579.064320px;}
._6{width:648.396960px;}
._65{width:656.424000px;}
._7a{width:670.536000px;}
._85{width:706.392000px;}
._88{width:718.488000px;}
._66{width:806.688000px;}
._6b{width:878.688000px;}
._4{width:1386.300000px;}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(0,176,240);}
.fc7{color:transparent;}
.fc3{color:rgb(118,113,113);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,63,119);}
.fc6{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs4{font-size:66.240000px;}
.fs9{font-size:66.384000px;}
.fs8{font-size:69.822393px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y31{bottom:3.240000px;}
.ye7{bottom:4.125000px;}
.y7{bottom:4.140000px;}
.y9b{bottom:4.395000px;}
.yad{bottom:4.485000px;}
.y1a{bottom:4.500000px;}
.y33{bottom:5.940000px;}
.y11e{bottom:6.120000px;}
.yc3{bottom:7.920000px;}
.yd6{bottom:14.760000px;}
.ye9{bottom:14.925000px;}
.yb9{bottom:14.940000px;}
.yc4{bottom:18.360000px;}
.ybd{bottom:19.260000px;}
.yed{bottom:20.695500px;}
.yf3{bottom:21.240000px;}
.y30{bottom:23.040000px;}
.yb5{bottom:24.840000px;}
.ye6{bottom:24.870000px;}
.yac{bottom:25.185000px;}
.y19{bottom:25.200000px;}
.ya7{bottom:25.230000px;}
.y9a{bottom:27.615000px;}
.yc2{bottom:28.620000px;}
.ybe{bottom:29.520000px;}
.yef{bottom:31.135500px;}
.y122{bottom:31.185000px;}
.y128{bottom:31.500000px;}
.yf5{bottom:31.680000px;}
.yd4{bottom:35.460000px;}
.ye1{bottom:35.625000px;}
.yb7{bottom:35.640000px;}
.yd9{bottom:35.670000px;}
.ybc{bottom:39.960000px;}
.yec{bottom:41.389500px;}
.y123{bottom:41.445000px;}
.yf2{bottom:41.940000px;}
.y2f{bottom:42.870000px;}
.yc1{bottom:44.100000px;}
.yaf{bottom:45.885000px;}
.y18{bottom:45.900000px;}
.yab{bottom:45.930000px;}
.yee{bottom:51.829500px;}
.y6{bottom:51.840000px;}
.y121{bottom:51.885000px;}
.y127{bottom:52.200000px;}
.yf4{bottom:52.380000px;}
.yd5{bottom:56.160000px;}
.ye0{bottom:56.325000px;}
.yb8{bottom:56.370000px;}
.y5{bottom:58.176000px;}
.y9d{bottom:61.275000px;}
.yeb{bottom:62.089500px;}
.yf1{bottom:62.640000px;}
.y2b{bottom:62.820000px;}
.y2e{bottom:63.750000px;}
.yc0{bottom:64.800000px;}
.y17{bottom:66.420000px;}
.ydf{bottom:66.585000px;}
.y39{bottom:66.600000px;}
.yba{bottom:66.630000px;}
.ya0{bottom:68.115000px;}
.ydd{bottom:77.385000px;}
.y126{bottom:79.560000px;}
.y2d{bottom:83.550000px;}
.y16{bottom:86.220000px;}
.yde{bottom:87.285000px;}
.y38{bottom:87.300000px;}
.yd8{bottom:87.330000px;}
.ydc{bottom:98.085000px;}
.y125{bottom:100.260000px;}
.y2a{bottom:101.700000px;}
.y37{bottom:107.640000px;}
.yea{bottom:111.640500px;}
.y11c{bottom:115.776000px;}
.y144{bottom:117.036000px;}
.ydb{bottom:118.785000px;}
.y29{bottom:122.400000px;}
.yb3{bottom:124.956000px;}
.ye4{bottom:126.396000px;}
.y36{bottom:128.340000px;}
.yd1{bottom:129.096000px;}
.y98{bottom:129.276000px;}
.y6b{bottom:130.176000px;}
.y11b{bottom:136.476000px;}
.y143{bottom:137.736000px;}
.y28{bottom:143.100000px;}
.yb2{bottom:145.656000px;}
.ye3{bottom:147.096000px;}
.y35{bottom:149.220000px;}
.yd0{bottom:149.796000px;}
.y97{bottom:149.976000px;}
.y64{bottom:150.870000px;}
.y11a{bottom:157.170000px;}
.y142{bottom:158.430000px;}
.y27{bottom:163.800000px;}
.yb1{bottom:165.810000px;}
.ye2{bottom:167.790000px;}
.y34{bottom:169.200000px;}
.ycf{bottom:170.490000px;}
.y96{bottom:170.670000px;}
.y6e{bottom:171.210000px;}
.y63{bottom:171.570000px;}
.y119{bottom:177.870000px;}
.y141{bottom:179.130000px;}
.y26{bottom:184.500000px;}
.yda{bottom:185.445000px;}
.yb0{bottom:186.870000px;}
.yce{bottom:191.190000px;}
.y95{bottom:191.370000px;}
.y6d{bottom:191.910000px;}
.y62{bottom:192.270000px;}
.y118{bottom:198.570000px;}
.y140{bottom:199.470000px;}
.yae{bottom:203.985000px;}
.y25{bottom:205.200000px;}
.ye8{bottom:207.585000px;}
.ycd{bottom:211.890000px;}
.y94{bottom:212.070000px;}
.y6c{bottom:212.610000px;}
.y61{bottom:212.970000px;}
.y117{bottom:219.270000px;}
.y13f{bottom:220.170000px;}
.y24{bottom:225.900000px;}
.y93{bottom:232.410000px;}
.ycc{bottom:232.590000px;}
.ya4{bottom:233.310000px;}
.y60{bottom:233.670000px;}
.y116{bottom:239.970000px;}
.y13e{bottom:241.230000px;}
.y23{bottom:246.630000px;}
.y92{bottom:253.110000px;}
.ycb{bottom:253.290000px;}
.y85{bottom:254.010000px;}
.y5f{bottom:254.370000px;}
.y115{bottom:260.670000px;}
.y13d{bottom:261.930000px;}
.yaa{bottom:266.805000px;}
.y22{bottom:267.330000px;}
.y91{bottom:273.810000px;}
.yca{bottom:273.990000px;}
.y84{bottom:274.710000px;}
.y5e{bottom:275.070000px;}
.y9f{bottom:278.280000px;}
.y114{bottom:281.370000px;}
.y13c{bottom:282.630000px;}
.y21{bottom:288.030000px;}
.yd7{bottom:289.665000px;}
.ye5{bottom:291.285000px;}
.y90{bottom:294.510000px;}
.yc9{bottom:294.690000px;}
.y145{bottom:295.410000px;}
.y5d{bottom:295.770000px;}
.y113{bottom:302.070000px;}
.y13b{bottom:303.330000px;}
.y20{bottom:308.730000px;}
.y8f{bottom:315.255000px;}
.yc8{bottom:315.435000px;}
.y80{bottom:316.155000px;}
.y5c{bottom:316.515000px;}
.y1b{bottom:317.055000px;}
.ya1{bottom:322.815000px;}
.y13a{bottom:324.075000px;}
.y1f{bottom:329.430000px;}
.ya9{bottom:329.655000px;}
.y8e{bottom:335.955000px;}
.yc7{bottom:336.135000px;}
.y9c{bottom:336.780000px;}
.y76{bottom:336.855000px;}
.y5b{bottom:337.215000px;}
.y112{bottom:343.155000px;}
.y139{bottom:344.775000px;}
.y1e{bottom:350.130000px;}
.y8d{bottom:356.655000px;}
.yc6{bottom:356.835000px;}
.y7b{bottom:357.555000px;}
.y5a{bottom:357.915000px;}
.y111{bottom:363.855000px;}
.y138{bottom:365.475000px;}
.y1d{bottom:370.830000px;}
.y9e{bottom:374.835000px;}
.yc5{bottom:377.535000px;}
.y6a{bottom:378.255000px;}
.y59{bottom:378.615000px;}
.y110{bottom:384.915000px;}
.y137{bottom:386.175000px;}
.y8c{bottom:387.615000px;}
.y1c{bottom:391.350000px;}
.yd3{bottom:394.815000px;}
.ybf{bottom:395.175000px;}
.y69{bottom:398.955000px;}
.y58{bottom:399.315000px;}
.y99{bottom:399.780000px;}
.y10f{bottom:405.615000px;}
.y136{bottom:406.875000px;}
.y8b{bottom:408.315000px;}
.ya8{bottom:413.175000px;}
.y7f{bottom:419.655000px;}
.y57{bottom:420.015000px;}
.y10e{bottom:426.315000px;}
.y135{bottom:427.575000px;}
.y7e{bottom:440.355000px;}
.y56{bottom:440.715000px;}
.ybb{bottom:445.035000px;}
.y10d{bottom:447.015000px;}
.y134{bottom:448.275000px;}
.y8a{bottom:461.055000px;}
.y55{bottom:461.415000px;}
.y10c{bottom:467.715000px;}
.y133{bottom:468.975000px;}
.yd2{bottom:477.615000px;}
.y81{bottom:481.755000px;}
.y54{bottom:482.115000px;}
.y10b{bottom:488.415000px;}
.y132{bottom:489.495000px;}
.ya5{bottom:496.695000px;}
.y32{bottom:501.735000px;}
.y89{bottom:502.455000px;}
.y53{bottom:502.815000px;}
.y10a{bottom:509.115000px;}
.y131{bottom:510.195000px;}
.yb6{bottom:517.395000px;}
.ya3{bottom:522.975000px;}
.y2c{bottom:523.155000px;}
.y52{bottom:523.335000px;}
.y109{bottom:529.815000px;}
.y130{bottom:530.895000px;}
.ya6{bottom:538.815000px;}
.ya2{bottom:543.675000px;}
.y51{bottom:544.035000px;}
.y108{bottom:550.515000px;}
.y12f{bottom:551.595000px;}
.y88{bottom:564.405000px;}
.y50{bottom:564.765000px;}
.y107{bottom:571.245000px;}
.y12e{bottom:572.325000px;}
.y87{bottom:585.105000px;}
.y4f{bottom:585.465000px;}
.y106{bottom:591.945000px;}
.y12d{bottom:593.025000px;}
.yb4{bottom:601.665000px;}
.y75{bottom:605.805000px;}
.y4e{bottom:606.165000px;}
.y105{bottom:612.645000px;}
.y12c{bottom:613.725000px;}
.y15{bottom:622.185000px;}
.y74{bottom:626.505000px;}
.y4d{bottom:626.865000px;}
.y104{bottom:633.345000px;}
.y12b{bottom:634.425000px;}
.y86{bottom:647.205000px;}
.y4c{bottom:647.565000px;}
.y103{bottom:654.045000px;}
.y12a{bottom:655.125000px;}
.y4b{bottom:667.905000px;}
.y68{bottom:668.265000px;}
.y102{bottom:674.745000px;}
.y129{bottom:675.825000px;}
.y7a{bottom:688.605000px;}
.y4a{bottom:688.965000px;}
.y124{bottom:693.645000px;}
.y101{bottom:695.445000px;}
.y78{bottom:709.305000px;}
.y49{bottom:709.665000px;}
.y100{bottom:716.145000px;}
.y14{bottom:728.205000px;}
.y77{bottom:730.005000px;}
.y48{bottom:730.365000px;}
.yff{bottom:736.845000px;}
.y13{bottom:748.365000px;}
.y73{bottom:750.705000px;}
.y47{bottom:751.065000px;}
.yfe{bottom:757.545000px;}
.y12{bottom:768.885000px;}
.y46{bottom:771.405000px;}
.y67{bottom:771.765000px;}
.yfd{bottom:778.245000px;}
.y120{bottom:790.665000px;}
.y45{bottom:792.105000px;}
.y66{bottom:792.465000px;}
.yfc{bottom:798.945000px;}
.y11{bottom:799.125000px;}
.y10{bottom:811.770000px;}
.y7d{bottom:812.850000px;}
.y44{bottom:813.210000px;}
.yfb{bottom:819.690000px;}
.y7c{bottom:833.550000px;}
.y43{bottom:833.910000px;}
.yf{bottom:834.270000px;}
.yfa{bottom:840.390000px;}
.y70{bottom:854.250000px;}
.y42{bottom:854.610000px;}
.yf9{bottom:861.090000px;}
.ye{bottom:863.250000px;}
.y6f{bottom:874.950000px;}
.y41{bottom:875.310000px;}
.yf8{bottom:881.790000px;}
.yd{bottom:883.950000px;}
.y11f{bottom:886.830000px;}
.y79{bottom:895.650000px;}
.y40{bottom:896.010000px;}
.yc{bottom:900.690000px;}
.yf7{bottom:902.490000px;}
.y72{bottom:916.350000px;}
.y3f{bottom:916.710000px;}
.yf6{bottom:923.190000px;}
.yb{bottom:931.830000px;}
.y71{bottom:937.050000px;}
.y3e{bottom:937.410000px;}
.yf0{bottom:940.830000px;}
.ya{bottom:953.610000px;}
.y83{bottom:957.750000px;}
.y3d{bottom:958.110000px;}
.y11d{bottom:970.350000px;}
.y82{bottom:978.450000px;}
.y3c{bottom:978.810000px;}
.y9{bottom:995.910000px;}
.y3b{bottom:999.510000px;}
.y8{bottom:1019.670000px;}
.y3a{bottom:1019.850000px;}
.y65{bottom:1020.210000px;}
.y4{bottom:1058.910000px;}
.y3{bottom:1077.660000px;}
.y2{bottom:1094.400000px;}
.y1{bottom:1116.720000px;}
.h17{height:21.405000px;}
.h6{height:21.600000px;}
.h2f{height:24.660000px;}
.ha{height:24.960938px;}
.h3{height:34.414263px;}
.h20{height:41.385000px;}
.h24{height:41.400000px;}
.h2c{height:41.421000px;}
.h1f{height:41.430000px;}
.h1a{height:43.200000px;}
.h14{height:45.928125px;}
.h10{height:47.255406px;}
.hb{height:47.344922px;}
.h5{height:48.030469px;}
.h28{height:48.405000px;}
.h16{height:49.811073px;}
.hd{height:49.921875px;}
.he{height:50.224922px;}
.hf{height:52.207031px;}
.h2{height:57.656250px;}
.h19{height:60.082031px;}
.h8{height:60.096549px;}
.h23{height:62.085000px;}
.h22{height:62.121000px;}
.h4{height:65.884219px;}
.h1d{height:66.027445px;}
.h1{height:68.314880px;}
.h12{height:70.664062px;}
.h26{height:70.905000px;}
.h7{height:72.562500px;}
.h1b{height:76.860000px;}
.hc{height:80.464922px;}
.h9{height:81.736875px;}
.h21{height:82.785000px;}
.h30{height:82.800000px;}
.h25{height:82.830000px;}
.h1e{height:83.550000px;}
.h1c{height:83.700000px;}
.h2d{height:94.495500px;}
.h31{height:94.536000px;}
.h2e{height:95.580000px;}
.h15{height:99.030000px;}
.h11{height:101.700000px;}
.h2b{height:103.485000px;}
.h29{height:103.521000px;}
.h27{height:120.765000px;}
.h18{height:184.665000px;}
.h32{height:191.550000px;}
.h2a{height:207.735000px;}
.h13{height:406.830000px;}
.h0{height:1188.000000px;}
.wa{width:29.685000px;}
.wd{width:29.865000px;}
.w1f{width:30.765000px;}
.w11{width:30.780000px;}
.w19{width:32.925000px;}
.we{width:45.525000px;}
.wb{width:45.561000px;}
.w14{width:48.960000px;}
.w1e{width:49.485000px;}
.w12{width:49.500000px;}
.w15{width:53.460000px;}
.w1b{width:53.985000px;}
.w18{width:54.525000px;}
.wc{width:57.945000px;}
.w9{width:58.125000px;}
.w1c{width:59.385000px;}
.w17{width:67.716000px;}
.w20{width:73.641000px;}
.w13{width:73.656000px;}
.w1a{width:82.641000px;}
.w6{width:85.356000px;}
.w10{width:94.851000px;}
.w1d{width:94.896000px;}
.w8{width:133.365000px;}
.w7{width:133.401000px;}
.w5{width:162.000000px;}
.w4{width:172.080000px;}
.w2{width:232.950000px;}
.wf{width:351.210000px;}
.w16{width:351.435000px;}
.w3{width:532.155000px;}
.w1{width:777.780000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xc{left:8.100000px;}
.x19{left:14.505000px;}
.x14{left:19.185000px;}
.x17{left:41.010000px;}
.x15{left:47.985000px;}
.xb{left:99.936000px;}
.x1{left:108.036000px;}
.x3{left:116.136000px;}
.x9{left:128.376000px;}
.x11{left:162.030000px;}
.xe{left:171.174000px;}
.x23{left:194.790000px;}
.x8{left:208.110000px;}
.x7{left:209.190000px;}
.xf{left:218.199000px;}
.x6{left:225.210000px;}
.x2c{left:244.290000px;}
.x4{left:251.490000px;}
.x24{left:275.070000px;}
.xd{left:332.895000px;}
.x25{left:348.735000px;}
.x26{left:397.695000px;}
.xa{left:456.915000px;}
.x5{left:459.075000px;}
.x1c{left:466.455000px;}
.x10{left:474.915000px;}
.x13{left:487.620000px;}
.x1b{left:528.945000px;}
.x27{left:534.540000px;}
.x1a{left:535.605000px;}
.x1d{left:551.820000px;}
.x2d{left:561.720000px;}
.x28{left:589.260000px;}
.x1f{left:609.960000px;}
.x2e{left:611.220000px;}
.x29{left:622.200000px;}
.x20{left:639.660000px;}
.x2f{left:642.000000px;}
.x12{left:676.185000px;}
.x1e{left:685.230000px;}
.x2a{left:704.850000px;}
.x16{left:723.960000px;}
.x21{left:743.190000px;}
.x18{left:751.830000px;}
.x2b{left:758.850000px;}
.x22{left:773.070000px;}
.x2{left:785.130000px;}
@media print{
.v5{vertical-align:-83.200000pt;}
.v2{vertical-align:-29.440000pt;}
.v3{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:26.880000pt;}
.v1{vertical-align:29.440000pt;}
.ls5{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.062933pt;}
.ls2{letter-spacing:0.066667pt;}
.ls9{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.384000pt;}
.lsd{letter-spacing:0.448000pt;}
.lse{letter-spacing:0.704000pt;}
.lsa{letter-spacing:0.768000pt;}
.ls1{letter-spacing:0.960000pt;}
.ls7{letter-spacing:699.626667pt;}
.wsa{word-spacing:-16.768000pt;}
.wse{word-spacing:-16.256000pt;}
.wsc{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.936000pt;}
.wsd{word-spacing:-15.808000pt;}
.wsf{word-spacing:-15.744000pt;}
.ws5{word-spacing:-14.786667pt;}
.ws2{word-spacing:-14.720000pt;}
.ws6{word-spacing:-14.080000pt;}
.ws9{word-spacing:-13.398741pt;}
.ws4{word-spacing:-13.306880pt;}
.wsb{word-spacing:-10.720000pt;}
.ws3{word-spacing:-8.389120pt;}
.ws0{word-spacing:-0.064000pt;}
.ws7{word-spacing:0.000000pt;}
._2{margin-left:-55.680000pt;}
._2f{margin-left:-2.006187pt;}
._5{margin-left:-1.059840pt;}
._0{width:0.906667pt;}
._7{width:1.842347pt;}
._15{width:2.851840pt;}
._13{width:3.968000pt;}
._14{width:4.874667pt;}
._2e{width:5.888000pt;}
._26{width:6.873173pt;}
._28{width:8.291840pt;}
._c{width:9.472000pt;}
._d{width:10.880000pt;}
._12{width:12.224000pt;}
._11{width:13.808640pt;}
._10{width:14.755840pt;}
._31{width:16.896000pt;}
._2d{width:17.792000pt;}
._e{width:19.008000pt;}
._f{width:19.968000pt;}
._1{width:21.056000pt;}
._25{width:22.272000pt;}
._8{width:23.936000pt;}
._9{width:24.846507pt;}
._22{width:26.048000pt;}
._23{width:27.043840pt;}
._29{width:28.380160pt;}
._33{width:29.331200pt;}
._32{width:30.272000pt;}
._20{width:31.232000pt;}
._21{width:32.245333pt;}
._2b{width:33.212160pt;}
._16{width:34.126507pt;}
._a{width:35.328000pt;}
._b{width:36.288000pt;}
._2c{width:37.376000pt;}
._36{width:39.075840pt;}
._30{width:40.000000pt;}
._24{width:41.635840pt;}
._1e{width:42.880000pt;}
._79{width:43.776000pt;}
._2a{width:44.672000pt;}
._49{width:46.016000pt;}
._19{width:47.168000pt;}
._1b{width:48.064000pt;}
._1c{width:49.525333pt;}
._27{width:50.698667pt;}
._39{width:51.691520pt;}
._18{width:53.340160pt;}
._17{width:54.307840pt;}
._1d{width:55.680000pt;}
._50{width:56.576000pt;}
._1a{width:57.600000pt;}
._3a{width:59.456000pt;}
._42{width:60.608000pt;}
._40{width:62.080000pt;}
._41{width:63.605333pt;}
._4a{width:64.672000pt;}
._3b{width:65.792000pt;}
._3c{width:66.944000pt;}
._34{width:67.840000pt;}
._35{width:68.928000pt;}
._44{width:70.272000pt;}
._4c{width:71.488000pt;}
._4d{width:72.384000pt;}
._48{width:73.664000pt;}
._4b{width:74.851840pt;}
._52{width:75.932160pt;}
._3f{width:77.248000pt;}
._37{width:78.656000pt;}
._38{width:79.680000pt;}
._43{width:80.576000pt;}
._45{width:82.048000pt;}
._1f{width:83.427840pt;}
._5d{width:84.397653pt;}
._56{width:86.464000pt;}
._72{width:87.651840pt;}
._46{width:90.176000pt;}
._47{width:91.328000pt;}
._55{width:93.248000pt;}
._4f{width:94.592000pt;}
._4e{width:95.872000pt;}
._67{width:96.896000pt;}
._3e{width:98.403840pt;}
._3d{width:99.456000pt;}
._73{width:100.480000pt;}
._76{width:102.848000pt;}
._77{width:104.320000pt;}
._6c{width:105.571840pt;}
._5a{width:106.652160pt;}
._59{width:107.747840pt;}
._58{width:109.212160pt;}
._57{width:110.307840pt;}
._60{width:113.408000pt;}
._75{width:115.008000pt;}
._87{width:116.405333pt;}
._86{width:118.051840pt;}
._7b{width:124.643840pt;}
._61{width:125.568000pt;}
._62{width:126.784000pt;}
._53{width:130.624000pt;}
._54{width:131.648000pt;}
._7d{width:136.064000pt;}
._7e{width:137.408000pt;}
._81{width:138.624000pt;}
._6a{width:139.584000pt;}
._6f{width:143.872000pt;}
._70{width:145.344000pt;}
._71{width:146.560000pt;}
._89{width:148.032000pt;}
._5b{width:156.672000pt;}
._68{width:161.728000pt;}
._69{width:163.264000pt;}
._51{width:165.418667pt;}
._5c{width:178.368000pt;}
._5f{width:194.944000pt;}
._5e{width:196.096000pt;}
._80{width:200.576000pt;}
._82{width:201.635840pt;}
._63{width:211.904000pt;}
._8d{width:216.960000pt;}
._8e{width:218.304000pt;}
._83{width:225.408000pt;}
._7f{width:232.960000pt;}
._78{width:234.624000pt;}
._6d{width:236.800853pt;}
._6e{width:238.080000pt;}
._64{width:264.576000pt;}
._7c{width:277.440000pt;}
._84{width:309.760000pt;}
._3{width:325.258667pt;}
._8c{width:384.064000pt;}
._8f{width:462.819840pt;}
._8a{width:476.608000pt;}
._74{width:480.448000pt;}
._8b{width:514.723840pt;}
._6{width:576.352853pt;}
._65{width:583.488000pt;}
._7a{width:596.032000pt;}
._85{width:627.904000pt;}
._88{width:638.656000pt;}
._66{width:717.056000pt;}
._6b{width:781.056000pt;}
._4{width:1232.266667pt;}
.fs6{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs4{font-size:58.880000pt;}
.fs9{font-size:59.008000pt;}
.fs8{font-size:62.064349pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:2.880000pt;}
.ye7{bottom:3.666667pt;}
.y7{bottom:3.680000pt;}
.y9b{bottom:3.906667pt;}
.yad{bottom:3.986667pt;}
.y1a{bottom:4.000000pt;}
.y33{bottom:5.280000pt;}
.y11e{bottom:5.440000pt;}
.yc3{bottom:7.040000pt;}
.yd6{bottom:13.120000pt;}
.ye9{bottom:13.266667pt;}
.yb9{bottom:13.280000pt;}
.yc4{bottom:16.320000pt;}
.ybd{bottom:17.120000pt;}
.yed{bottom:18.396000pt;}
.yf3{bottom:18.880000pt;}
.y30{bottom:20.480000pt;}
.yb5{bottom:22.080000pt;}
.ye6{bottom:22.106667pt;}
.yac{bottom:22.386667pt;}
.y19{bottom:22.400000pt;}
.ya7{bottom:22.426667pt;}
.y9a{bottom:24.546667pt;}
.yc2{bottom:25.440000pt;}
.ybe{bottom:26.240000pt;}
.yef{bottom:27.676000pt;}
.y122{bottom:27.720000pt;}
.y128{bottom:28.000000pt;}
.yf5{bottom:28.160000pt;}
.yd4{bottom:31.520000pt;}
.ye1{bottom:31.666667pt;}
.yb7{bottom:31.680000pt;}
.yd9{bottom:31.706667pt;}
.ybc{bottom:35.520000pt;}
.yec{bottom:36.790667pt;}
.y123{bottom:36.840000pt;}
.yf2{bottom:37.280000pt;}
.y2f{bottom:38.106667pt;}
.yc1{bottom:39.200000pt;}
.yaf{bottom:40.786667pt;}
.y18{bottom:40.800000pt;}
.yab{bottom:40.826667pt;}
.yee{bottom:46.070667pt;}
.y6{bottom:46.080000pt;}
.y121{bottom:46.120000pt;}
.y127{bottom:46.400000pt;}
.yf4{bottom:46.560000pt;}
.yd5{bottom:49.920000pt;}
.ye0{bottom:50.066667pt;}
.yb8{bottom:50.106667pt;}
.y5{bottom:51.712000pt;}
.y9d{bottom:54.466667pt;}
.yeb{bottom:55.190667pt;}
.yf1{bottom:55.680000pt;}
.y2b{bottom:55.840000pt;}
.y2e{bottom:56.666667pt;}
.yc0{bottom:57.600000pt;}
.y17{bottom:59.040000pt;}
.ydf{bottom:59.186667pt;}
.y39{bottom:59.200000pt;}
.yba{bottom:59.226667pt;}
.ya0{bottom:60.546667pt;}
.ydd{bottom:68.786667pt;}
.y126{bottom:70.720000pt;}
.y2d{bottom:74.266667pt;}
.y16{bottom:76.640000pt;}
.yde{bottom:77.586667pt;}
.y38{bottom:77.600000pt;}
.yd8{bottom:77.626667pt;}
.ydc{bottom:87.186667pt;}
.y125{bottom:89.120000pt;}
.y2a{bottom:90.400000pt;}
.y37{bottom:95.680000pt;}
.yea{bottom:99.236000pt;}
.y11c{bottom:102.912000pt;}
.y144{bottom:104.032000pt;}
.ydb{bottom:105.586667pt;}
.y29{bottom:108.800000pt;}
.yb3{bottom:111.072000pt;}
.ye4{bottom:112.352000pt;}
.y36{bottom:114.080000pt;}
.yd1{bottom:114.752000pt;}
.y98{bottom:114.912000pt;}
.y6b{bottom:115.712000pt;}
.y11b{bottom:121.312000pt;}
.y143{bottom:122.432000pt;}
.y28{bottom:127.200000pt;}
.yb2{bottom:129.472000pt;}
.ye3{bottom:130.752000pt;}
.y35{bottom:132.640000pt;}
.yd0{bottom:133.152000pt;}
.y97{bottom:133.312000pt;}
.y64{bottom:134.106667pt;}
.y11a{bottom:139.706667pt;}
.y142{bottom:140.826667pt;}
.y27{bottom:145.600000pt;}
.yb1{bottom:147.386667pt;}
.ye2{bottom:149.146667pt;}
.y34{bottom:150.400000pt;}
.ycf{bottom:151.546667pt;}
.y96{bottom:151.706667pt;}
.y6e{bottom:152.186667pt;}
.y63{bottom:152.506667pt;}
.y119{bottom:158.106667pt;}
.y141{bottom:159.226667pt;}
.y26{bottom:164.000000pt;}
.yda{bottom:164.840000pt;}
.yb0{bottom:166.106667pt;}
.yce{bottom:169.946667pt;}
.y95{bottom:170.106667pt;}
.y6d{bottom:170.586667pt;}
.y62{bottom:170.906667pt;}
.y118{bottom:176.506667pt;}
.y140{bottom:177.306667pt;}
.yae{bottom:181.320000pt;}
.y25{bottom:182.400000pt;}
.ye8{bottom:184.520000pt;}
.ycd{bottom:188.346667pt;}
.y94{bottom:188.506667pt;}
.y6c{bottom:188.986667pt;}
.y61{bottom:189.306667pt;}
.y117{bottom:194.906667pt;}
.y13f{bottom:195.706667pt;}
.y24{bottom:200.800000pt;}
.y93{bottom:206.586667pt;}
.ycc{bottom:206.746667pt;}
.ya4{bottom:207.386667pt;}
.y60{bottom:207.706667pt;}
.y116{bottom:213.306667pt;}
.y13e{bottom:214.426667pt;}
.y23{bottom:219.226667pt;}
.y92{bottom:224.986667pt;}
.ycb{bottom:225.146667pt;}
.y85{bottom:225.786667pt;}
.y5f{bottom:226.106667pt;}
.y115{bottom:231.706667pt;}
.y13d{bottom:232.826667pt;}
.yaa{bottom:237.160000pt;}
.y22{bottom:237.626667pt;}
.y91{bottom:243.386667pt;}
.yca{bottom:243.546667pt;}
.y84{bottom:244.186667pt;}
.y5e{bottom:244.506667pt;}
.y9f{bottom:247.360000pt;}
.y114{bottom:250.106667pt;}
.y13c{bottom:251.226667pt;}
.y21{bottom:256.026667pt;}
.yd7{bottom:257.480000pt;}
.ye5{bottom:258.920000pt;}
.y90{bottom:261.786667pt;}
.yc9{bottom:261.946667pt;}
.y145{bottom:262.586667pt;}
.y5d{bottom:262.906667pt;}
.y113{bottom:268.506667pt;}
.y13b{bottom:269.626667pt;}
.y20{bottom:274.426667pt;}
.y8f{bottom:280.226667pt;}
.yc8{bottom:280.386667pt;}
.y80{bottom:281.026667pt;}
.y5c{bottom:281.346667pt;}
.y1b{bottom:281.826667pt;}
.ya1{bottom:286.946667pt;}
.y13a{bottom:288.066667pt;}
.y1f{bottom:292.826667pt;}
.ya9{bottom:293.026667pt;}
.y8e{bottom:298.626667pt;}
.yc7{bottom:298.786667pt;}
.y9c{bottom:299.360000pt;}
.y76{bottom:299.426667pt;}
.y5b{bottom:299.746667pt;}
.y112{bottom:305.026667pt;}
.y139{bottom:306.466667pt;}
.y1e{bottom:311.226667pt;}
.y8d{bottom:317.026667pt;}
.yc6{bottom:317.186667pt;}
.y7b{bottom:317.826667pt;}
.y5a{bottom:318.146667pt;}
.y111{bottom:323.426667pt;}
.y138{bottom:324.866667pt;}
.y1d{bottom:329.626667pt;}
.y9e{bottom:333.186667pt;}
.yc5{bottom:335.586667pt;}
.y6a{bottom:336.226667pt;}
.y59{bottom:336.546667pt;}
.y110{bottom:342.146667pt;}
.y137{bottom:343.266667pt;}
.y8c{bottom:344.546667pt;}
.y1c{bottom:347.866667pt;}
.yd3{bottom:350.946667pt;}
.ybf{bottom:351.266667pt;}
.y69{bottom:354.626667pt;}
.y58{bottom:354.946667pt;}
.y99{bottom:355.360000pt;}
.y10f{bottom:360.546667pt;}
.y136{bottom:361.666667pt;}
.y8b{bottom:362.946667pt;}
.ya8{bottom:367.266667pt;}
.y7f{bottom:373.026667pt;}
.y57{bottom:373.346667pt;}
.y10e{bottom:378.946667pt;}
.y135{bottom:380.066667pt;}
.y7e{bottom:391.426667pt;}
.y56{bottom:391.746667pt;}
.ybb{bottom:395.586667pt;}
.y10d{bottom:397.346667pt;}
.y134{bottom:398.466667pt;}
.y8a{bottom:409.826667pt;}
.y55{bottom:410.146667pt;}
.y10c{bottom:415.746667pt;}
.y133{bottom:416.866667pt;}
.yd2{bottom:424.546667pt;}
.y81{bottom:428.226667pt;}
.y54{bottom:428.546667pt;}
.y10b{bottom:434.146667pt;}
.y132{bottom:435.106667pt;}
.ya5{bottom:441.506667pt;}
.y32{bottom:445.986667pt;}
.y89{bottom:446.626667pt;}
.y53{bottom:446.946667pt;}
.y10a{bottom:452.546667pt;}
.y131{bottom:453.506667pt;}
.yb6{bottom:459.906667pt;}
.ya3{bottom:464.866667pt;}
.y2c{bottom:465.026667pt;}
.y52{bottom:465.186667pt;}
.y109{bottom:470.946667pt;}
.y130{bottom:471.906667pt;}
.ya6{bottom:478.946667pt;}
.ya2{bottom:483.266667pt;}
.y51{bottom:483.586667pt;}
.y108{bottom:489.346667pt;}
.y12f{bottom:490.306667pt;}
.y88{bottom:501.693333pt;}
.y50{bottom:502.013333pt;}
.y107{bottom:507.773333pt;}
.y12e{bottom:508.733333pt;}
.y87{bottom:520.093333pt;}
.y4f{bottom:520.413333pt;}
.y106{bottom:526.173333pt;}
.y12d{bottom:527.133333pt;}
.yb4{bottom:534.813333pt;}
.y75{bottom:538.493333pt;}
.y4e{bottom:538.813333pt;}
.y105{bottom:544.573333pt;}
.y12c{bottom:545.533333pt;}
.y15{bottom:553.053333pt;}
.y74{bottom:556.893333pt;}
.y4d{bottom:557.213333pt;}
.y104{bottom:562.973333pt;}
.y12b{bottom:563.933333pt;}
.y86{bottom:575.293333pt;}
.y4c{bottom:575.613333pt;}
.y103{bottom:581.373333pt;}
.y12a{bottom:582.333333pt;}
.y4b{bottom:593.693333pt;}
.y68{bottom:594.013333pt;}
.y102{bottom:599.773333pt;}
.y129{bottom:600.733333pt;}
.y7a{bottom:612.093333pt;}
.y4a{bottom:612.413333pt;}
.y124{bottom:616.573333pt;}
.y101{bottom:618.173333pt;}
.y78{bottom:630.493333pt;}
.y49{bottom:630.813333pt;}
.y100{bottom:636.573333pt;}
.y14{bottom:647.293333pt;}
.y77{bottom:648.893333pt;}
.y48{bottom:649.213333pt;}
.yff{bottom:654.973333pt;}
.y13{bottom:665.213333pt;}
.y73{bottom:667.293333pt;}
.y47{bottom:667.613333pt;}
.yfe{bottom:673.373333pt;}
.y12{bottom:683.453333pt;}
.y46{bottom:685.693333pt;}
.y67{bottom:686.013333pt;}
.yfd{bottom:691.773333pt;}
.y120{bottom:702.813333pt;}
.y45{bottom:704.093333pt;}
.y66{bottom:704.413333pt;}
.yfc{bottom:710.173333pt;}
.y11{bottom:710.333333pt;}
.y10{bottom:721.573333pt;}
.y7d{bottom:722.533333pt;}
.y44{bottom:722.853333pt;}
.yfb{bottom:728.613333pt;}
.y7c{bottom:740.933333pt;}
.y43{bottom:741.253333pt;}
.yf{bottom:741.573333pt;}
.yfa{bottom:747.013333pt;}
.y70{bottom:759.333333pt;}
.y42{bottom:759.653333pt;}
.yf9{bottom:765.413333pt;}
.ye{bottom:767.333333pt;}
.y6f{bottom:777.733333pt;}
.y41{bottom:778.053333pt;}
.yf8{bottom:783.813333pt;}
.yd{bottom:785.733333pt;}
.y11f{bottom:788.293333pt;}
.y79{bottom:796.133333pt;}
.y40{bottom:796.453333pt;}
.yc{bottom:800.613333pt;}
.yf7{bottom:802.213333pt;}
.y72{bottom:814.533333pt;}
.y3f{bottom:814.853333pt;}
.yf6{bottom:820.613333pt;}
.yb{bottom:828.293333pt;}
.y71{bottom:832.933333pt;}
.y3e{bottom:833.253333pt;}
.yf0{bottom:836.293333pt;}
.ya{bottom:847.653333pt;}
.y83{bottom:851.333333pt;}
.y3d{bottom:851.653333pt;}
.y11d{bottom:862.533333pt;}
.y82{bottom:869.733333pt;}
.y3c{bottom:870.053333pt;}
.y9{bottom:885.253333pt;}
.y3b{bottom:888.453333pt;}
.y8{bottom:906.373333pt;}
.y3a{bottom:906.533333pt;}
.y65{bottom:906.853333pt;}
.y4{bottom:941.253333pt;}
.y3{bottom:957.920000pt;}
.y2{bottom:972.800000pt;}
.y1{bottom:992.640000pt;}
.h17{height:19.026667pt;}
.h6{height:19.200000pt;}
.h2f{height:21.920000pt;}
.ha{height:22.187500pt;}
.h3{height:30.590456pt;}
.h20{height:36.786667pt;}
.h24{height:36.800000pt;}
.h2c{height:36.818667pt;}
.h1f{height:36.826667pt;}
.h1a{height:38.400000pt;}
.h14{height:40.825000pt;}
.h10{height:42.004805pt;}
.hb{height:42.084375pt;}
.h5{height:42.693750pt;}
.h28{height:43.026667pt;}
.h16{height:44.276509pt;}
.hd{height:44.375000pt;}
.he{height:44.644375pt;}
.hf{height:46.406250pt;}
.h2{height:51.250000pt;}
.h19{height:53.406250pt;}
.h8{height:53.419154pt;}
.h23{height:55.186667pt;}
.h22{height:55.218667pt;}
.h4{height:58.563750pt;}
.h1d{height:58.691063pt;}
.h1{height:60.724338pt;}
.h12{height:62.812500pt;}
.h26{height:63.026667pt;}
.h7{height:64.500000pt;}
.h1b{height:68.320000pt;}
.hc{height:71.524375pt;}
.h9{height:72.655000pt;}
.h21{height:73.586667pt;}
.h30{height:73.600000pt;}
.h25{height:73.626667pt;}
.h1e{height:74.266667pt;}
.h1c{height:74.400000pt;}
.h2d{height:83.996000pt;}
.h31{height:84.032000pt;}
.h2e{height:84.960000pt;}
.h15{height:88.026667pt;}
.h11{height:90.400000pt;}
.h2b{height:91.986667pt;}
.h29{height:92.018667pt;}
.h27{height:107.346667pt;}
.h18{height:164.146667pt;}
.h32{height:170.266667pt;}
.h2a{height:184.653333pt;}
.h13{height:361.626667pt;}
.h0{height:1056.000000pt;}
.wa{width:26.386667pt;}
.wd{width:26.546667pt;}
.w1f{width:27.346667pt;}
.w11{width:27.360000pt;}
.w19{width:29.266667pt;}
.we{width:40.466667pt;}
.wb{width:40.498667pt;}
.w14{width:43.520000pt;}
.w1e{width:43.986667pt;}
.w12{width:44.000000pt;}
.w15{width:47.520000pt;}
.w1b{width:47.986667pt;}
.w18{width:48.466667pt;}
.wc{width:51.506667pt;}
.w9{width:51.666667pt;}
.w1c{width:52.786667pt;}
.w17{width:60.192000pt;}
.w20{width:65.458667pt;}
.w13{width:65.472000pt;}
.w1a{width:73.458667pt;}
.w6{width:75.872000pt;}
.w10{width:84.312000pt;}
.w1d{width:84.352000pt;}
.w8{width:118.546667pt;}
.w7{width:118.578667pt;}
.w5{width:144.000000pt;}
.w4{width:152.960000pt;}
.w2{width:207.066667pt;}
.wf{width:312.186667pt;}
.w16{width:312.386667pt;}
.w3{width:473.026667pt;}
.w1{width:691.360000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xc{left:7.200000pt;}
.x19{left:12.893333pt;}
.x14{left:17.053333pt;}
.x17{left:36.453333pt;}
.x15{left:42.653333pt;}
.xb{left:88.832000pt;}
.x1{left:96.032000pt;}
.x3{left:103.232000pt;}
.x9{left:114.112000pt;}
.x11{left:144.026667pt;}
.xe{left:152.154667pt;}
.x23{left:173.146667pt;}
.x8{left:184.986667pt;}
.x7{left:185.946667pt;}
.xf{left:193.954667pt;}
.x6{left:200.186667pt;}
.x2c{left:217.146667pt;}
.x4{left:223.546667pt;}
.x24{left:244.506667pt;}
.xd{left:295.906667pt;}
.x25{left:309.986667pt;}
.x26{left:353.506667pt;}
.xa{left:406.146667pt;}
.x5{left:408.066667pt;}
.x1c{left:414.626667pt;}
.x10{left:422.146667pt;}
.x13{left:433.440000pt;}
.x1b{left:470.173333pt;}
.x27{left:475.146667pt;}
.x1a{left:476.093333pt;}
.x1d{left:490.506667pt;}
.x2d{left:499.306667pt;}
.x28{left:523.786667pt;}
.x1f{left:542.186667pt;}
.x2e{left:543.306667pt;}
.x29{left:553.066667pt;}
.x20{left:568.586667pt;}
.x2f{left:570.666667pt;}
.x12{left:601.053333pt;}
.x1e{left:609.093333pt;}
.x2a{left:626.533333pt;}
.x16{left:643.520000pt;}
.x21{left:660.613333pt;}
.x18{left:668.293333pt;}
.x2b{left:674.533333pt;}
.x22{left:687.173333pt;}
.x2{left:697.893333pt;}
}




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