
    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_35ef9b6ceb6661fe1014bb80.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b01ea983f1ef27006856ca7c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_2708fd9fd160649447b04223.woff')format("woff");}.ff3{font-family:ff3;line-height:1.035156;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_2f93ce796ec598dac10f6add.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_60ae37a1f10450c4c40d0224.woff')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_ab7e29b023549e97bb7b63b9.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c21c1dfb548c69b6e79ceb29.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0dc635a933c5f633a062393c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_16ef5450a40d39b6f06b3e8c.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ab773f3b6afc57b389f3e07c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.937500;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_d793a24ea87e86ba97c39529.woff')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls14{letter-spacing:-0.540000px;}
.ls17{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.109200px;}
.ls12{letter-spacing:-0.106800px;}
.lse{letter-spacing:-0.072000px;}
.ls9{letter-spacing:-0.058320px;}
.ls16{letter-spacing:-0.053280px;}
.ls8{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.018000px;}
.ls7{letter-spacing:0.036000px;}
.ls15{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.108000px;}
.lsb{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.305280px;}
.lsa{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.432000px;}
.ls2{letter-spacing:0.661680px;}
.ls19{letter-spacing:0.720000px;}
.ls5{letter-spacing:1.098000px;}
.ls0{letter-spacing:57.029760px;}
.ls11{letter-spacing:64.206720px;}
.ls1{letter-spacing:201.209760px;}
.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;}
}
.ws10{word-spacing:-59.760000px;}
.ws6{word-spacing:-21.420000px;}
.ws13{word-spacing:-18.720000px;}
.wsa{word-spacing:-18.414720px;}
.wsb{word-spacing:-18.305520px;}
.ws14{word-spacing:-18.216000px;}
.ws9{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.000000px;}
.ws12{word-spacing:-17.712000px;}
.wsd{word-spacing:-16.613280px;}
.wse{word-spacing:-16.506480px;}
.wsf{word-spacing:-15.300000px;}
.ws2{word-spacing:-15.228000px;}
.ws1{word-spacing:-15.012000px;}
.wsc{word-spacing:-14.940000px;}
.ws11{word-spacing:-14.886720px;}
.ws0{word-spacing:-13.447440px;}
.ws5{word-spacing:-12.240000px;}
.ws4{word-spacing:-12.204000px;}
.ws3{word-spacing:-9.437760px;}
.ws8{word-spacing:0.000000px;}
._1d{margin-left:-2.099280px;}
._1{margin-left:-1.014000px;}
._0{width:1.340640px;}
._4{width:2.376000px;}
._7{width:3.394080px;}
._e{width:4.608000px;}
._9{width:5.616000px;}
._a{width:7.056000px;}
._c{width:8.430000px;}
._b{width:9.792000px;}
._12{width:11.580000px;}
._10{width:12.690000px;}
._f{width:13.752000px;}
._13{width:15.192000px;}
._d{width:16.848000px;}
._22{width:17.992080px;}
._1a{width:19.086000px;}
._16{width:20.160000px;}
._17{width:21.423360px;}
._19{width:22.433280px;}
._1b{width:23.602320px;}
._18{width:24.624000px;}
._8{width:26.463360px;}
._1c{width:27.668640px;}
._3{width:29.448000px;}
._5{width:30.462000px;}
._3d{width:31.471200px;}
._6{width:32.472000px;}
._1f{width:33.480000px;}
._21{width:35.168640px;}
._20{width:36.582000px;}
._14{width:38.016000px;}
._15{width:39.423360px;}
._45{width:40.494240px;}
._28{width:41.533200px;}
._29{width:43.326000px;}
._11{width:45.786000px;}
._2b{width:48.525120px;}
._2e{width:49.915440px;}
._2d{width:51.531120px;}
._3f{width:54.142560px;}
._2f{width:55.797600px;}
._26{width:60.118560px;}
._25{width:61.166400px;}
._3e{width:62.688240px;}
._3b{width:63.763920px;}
._2{width:65.412000px;}
._33{width:66.692160px;}
._3c{width:67.921200px;}
._46{width:69.799680px;}
._2a{width:72.190080px;}
._40{width:74.162160px;}
._2c{width:84.201840px;}
._23{width:85.217760px;}
._24{width:86.592240px;}
._48{width:88.239600px;}
._43{width:90.058320px;}
._38{width:91.791360px;}
._3a{width:96.153840px;}
._39{width:104.699520px;}
._47{width:106.966800px;}
._42{width:110.316960px;}
._41{width:111.512160px;}
._44{width:119.161440px;}
._4a{width:120.998640px;}
._35{width:123.165360px;}
._27{width:127.380960px;}
._37{width:135.987840px;}
._1e{width:143.976000px;}
._36{width:156.684240px;}
._49{width:209.817360px;}
._30{width:211.289520px;}
._34{width:267.788880px;}
._32{width:281.091600px;}
._31{width:766.933680px;}
.fc5{color:rgb(4,111,248);}
.fc2{color:rgb(5,99,193);}
.fc4{color:rgb(51,51,51);}
.fc3{color:rgb(68,84,106);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y13b{bottom:3.600000px;}
.y132{bottom:3.765000px;}
.y2{bottom:3.780000px;}
.y8{bottom:11.340000px;}
.y139{bottom:14.040000px;}
.y184{bottom:20.865000px;}
.y13a{bottom:20.880000px;}
.y131{bottom:21.045000px;}
.y11b{bottom:21.060000px;}
.y165{bottom:24.660000px;}
.y7{bottom:30.990000px;}
.y138{bottom:32.940000px;}
.y130{bottom:38.145000px;}
.y125{bottom:38.160000px;}
.y4{bottom:38.190000px;}
.y197{bottom:38.325000px;}
.y11a{bottom:38.340000px;}
.y164{bottom:41.940000px;}
.y17c{bottom:41.970000px;}
.y6{bottom:50.790000px;}
.y137{bottom:51.870000px;}
.y12f{bottom:55.425000px;}
.y124{bottom:55.440000px;}
.y135{bottom:55.470000px;}
.y119{bottom:55.620000px;}
.y120{bottom:55.650000px;}
.yf{bottom:57.600000px;}
.y163{bottom:59.250000px;}
.y3{bottom:62.130000px;}
.y5{bottom:70.590000px;}
.y136{bottom:70.950000px;}
.y12e{bottom:72.705000px;}
.y118{bottom:72.720000px;}
.y134{bottom:72.750000px;}
.y11f{bottom:72.930000px;}
.y162{bottom:76.530000px;}
.ye{bottom:76.860000px;}
.y12d{bottom:89.985000px;}
.y117{bottom:90.000000px;}
.y11e{bottom:90.030000px;}
.yd{bottom:93.600000px;}
.y17b{bottom:93.630000px;}
.y161{bottom:93.810000px;}
.y17e{bottom:106.920000px;}
.y13e{bottom:107.100000px;}
.y12c{bottom:107.265000px;}
.y116{bottom:107.280000px;}
.y11d{bottom:107.310000px;}
.yc{bottom:109.080000px;}
.y17a{bottom:110.910000px;}
.y17d{bottom:124.200000px;}
.y183{bottom:124.365000px;}
.y13d{bottom:124.380000px;}
.y12b{bottom:124.545000px;}
.yb{bottom:124.560000px;}
.y187{bottom:124.590000px;}
.y190{bottom:124.605000px;}
.y179{bottom:128.190000px;}
.y160{bottom:131.610000px;}
.ya{bottom:140.220000px;}
.y12a{bottom:141.645000px;}
.y123{bottom:141.660000px;}
.y182{bottom:141.690000px;}
.y196{bottom:141.825000px;}
.y186{bottom:141.870000px;}
.y18f{bottom:141.885000px;}
.y178{bottom:146.550000px;}
.y15f{bottom:148.890000px;}
.y133{bottom:154.080000px;}
.y153{bottom:156.600000px;}
.y185{bottom:158.760000px;}
.y129{bottom:158.925000px;}
.y122{bottom:158.940000px;}
.y181{bottom:158.970000px;}
.y18e{bottom:158.985000px;}
.y1d5{bottom:160.920000px;}
.y177{bottom:163.830000px;}
.y15e{bottom:167.250000px;}
.y61{bottom:170.640000px;}
.y10c{bottom:171.180000px;}
.ya4{bottom:174.960000px;}
.y128{bottom:176.205000px;}
.y152{bottom:176.250000px;}
.y18d{bottom:176.265000px;}
.ye2{bottom:178.380000px;}
.y176{bottom:181.110000px;}
.yb6{bottom:183.240000px;}
.y89{bottom:184.140000px;}
.y15d{bottom:184.350000px;}
.y36{bottom:187.740000px;}
.y60{bottom:191.340000px;}
.y10b{bottom:191.880000px;}
.y180{bottom:193.170000px;}
.y127{bottom:193.485000px;}
.y151{bottom:193.530000px;}
.y18b{bottom:193.545000px;}
.ya3{bottom:195.660000px;}
.y19a{bottom:198.180000px;}
.y175{bottom:198.210000px;}
.ycf{bottom:201.960000px;}
.y15c{bottom:202.710000px;}
.y1d4{bottom:205.560000px;}
.y88{bottom:206.310000px;}
.y18c{bottom:210.465000px;}
.y1b6{bottom:210.630000px;}
.y150{bottom:210.810000px;}
.y18a{bottom:210.825000px;}
.y5f{bottom:212.070000px;}
.y10a{bottom:212.610000px;}
.ye1{bottom:212.790000px;}
.ya2{bottom:216.390000px;}
.y174{bottom:216.570000px;}
.yb5{bottom:217.110000px;}
.y199{bottom:218.910000px;}
.y35{bottom:222.150000px;}
.yce{bottom:224.130000px;}
.y1d3{bottom:227.910000px;}
.y14f{bottom:228.090000px;}
.y189{bottom:228.105000px;}
.y5e{bottom:232.770000px;}
.y109{bottom:233.310000px;}
.yb4{bottom:233.670000px;}
.y173{bottom:233.850000px;}
.y198{bottom:239.610000px;}
.y87{bottom:240.510000px;}
.y126{bottom:241.065000px;}
.y15b{bottom:242.490000px;}
.y34{bottom:243.210000px;}
.y14e{bottom:245.190000px;}
.y195{bottom:245.370000px;}
.ycd{bottom:246.450000px;}
.ye0{bottom:247.170000px;}
.ya1{bottom:250.770000px;}
.y172{bottom:251.175000px;}
.y5d{bottom:253.470000px;}
.y108{bottom:254.010000px;}
.y192{bottom:256.545000px;}
.y15a{bottom:259.770000px;}
.y14d{bottom:262.470000px;}
.y33{bottom:263.910000px;}
.y1b5{bottom:267.330000px;}
.y171{bottom:268.455000px;}
.ycc{bottom:268.770000px;}
.ya0{bottom:271.470000px;}
.y5c{bottom:274.170000px;}
.y86{bottom:274.890000px;}
.y159{bottom:276.870000px;}
.y194{bottom:279.390000px;}
.y14c{bottom:279.750000px;}
.ydf{bottom:281.010000px;}
.y32{bottom:284.610000px;}
.y170{bottom:285.555000px;}
.y107{bottom:288.390000px;}
.ycb{bottom:291.090000px;}
.y9f{bottom:292.170000px;}
.y158{bottom:294.195000px;}
.y5b{bottom:294.870000px;}
.y85{bottom:295.950000px;}
.y193{bottom:296.670000px;}
.y14b{bottom:297.030000px;}
.y1b4{bottom:301.710000px;}
.y31{bottom:305.310000px;}
.y1d2{bottom:306.930000px;}
.y106{bottom:309.090000px;}
.y156{bottom:311.115000px;}
.y157{bottom:311.475000px;}
.y9e{bottom:312.870000px;}
.yca{bottom:313.410000px;}
.y14a{bottom:314.310000px;}
.y17f{bottom:314.865000px;}
.y5a{bottom:315.570000px;}
.yde{bottom:315.750000px;}
.y84{bottom:316.650000px;}
.y1b3{bottom:323.850000px;}
.y16f{bottom:324.975000px;}
.y30{bottom:326.010000px;}
.y155{bottom:328.395000px;}
.y154{bottom:328.755000px;}
.y105{bottom:329.790000px;}
.y149{bottom:331.590000px;}
.y9d{bottom:333.570000px;}
.y59{bottom:336.270000px;}
.ydd{bottom:336.450000px;}
.y83{bottom:337.350000px;}
.y1d1{bottom:341.490000px;}
.y16e{bottom:342.255000px;}
.yc9{bottom:347.970000px;}
.y145{bottom:348.690000px;}
.y104{bottom:350.490000px;}
.y9c{bottom:354.270000px;}
.y58{bottom:356.970000px;}
.ydc{bottom:357.150000px;}
.y82{bottom:358.050000px;}
.y1b2{bottom:358.410000px;}
.y16d{bottom:359.535000px;}
.y2f{bottom:360.390000px;}
.y1d0{bottom:363.630000px;}
.y144{bottom:365.970000px;}
.yc8{bottom:370.110000px;}
.y103{bottom:371.190000px;}
.y9b{bottom:374.970000px;}
.y16a{bottom:376.635000px;}
.y57{bottom:377.670000px;}
.ydb{bottom:377.850000px;}
.y81{bottom:378.750000px;}
.y2e{bottom:382.530000px;}
.y143{bottom:383.250000px;}
.y1cf{bottom:385.950000px;}
.y16c{bottom:390.495000px;}
.y102{bottom:391.890000px;}
.yc7{bottom:392.430000px;}
.y1b1{bottom:392.790000px;}
.y169{bottom:393.915000px;}
.y9a{bottom:395.670000px;}
.y56{bottom:398.370000px;}
.yda{bottom:398.550000px;}
.y80{bottom:399.450000px;}
.y148{bottom:400.350000px;}
.y142{bottom:400.530000px;}
.y2d{bottom:404.850000px;}
.y1ce{bottom:408.270000px;}
.y16b{bottom:409.395000px;}
.y168{bottom:411.195000px;}
.y101{bottom:412.590000px;}
.yc6{bottom:414.750000px;}
.y1b0{bottom:414.930000px;}
.y99{bottom:416.370000px;}
.y147{bottom:417.675000px;}
.y141{bottom:417.855000px;}
.y55{bottom:419.070000px;}
.yd9{bottom:419.250000px;}
.y7f{bottom:420.150000px;}
.y2c{bottom:427.170000px;}
.y100{bottom:433.290000px;}
.y146{bottom:434.775000px;}
.y140{bottom:435.135000px;}
.y98{bottom:437.070000px;}
.y54{bottom:439.770000px;}
.yd8{bottom:439.950000px;}
.y7e{bottom:440.895000px;}
.yb0{bottom:441.075000px;}
.y1cd{bottom:442.875000px;}
.y121{bottom:448.815000px;}
.y1af{bottom:449.355000px;}
.y2b{bottom:449.535000px;}
.yff{bottom:454.035000px;}
.y97{bottom:457.815000px;}
.y53{bottom:460.515000px;}
.yd7{bottom:460.695000px;}
.y7d{bottom:461.595000px;}
.y1cc{bottom:465.015000px;}
.yc5{bottom:471.675000px;}
.y2a{bottom:471.855000px;}
.yfe{bottom:474.735000px;}
.yaf{bottom:475.635000px;}
.y96{bottom:478.515000px;}
.y52{bottom:481.215000px;}
.yd6{bottom:481.395000px;}
.y7c{bottom:482.295000px;}
.y1cb{bottom:487.335000px;}
.yc4{bottom:493.815000px;}
.yfd{bottom:495.435000px;}
.y95{bottom:499.215000px;}
.y13f{bottom:499.575000px;}
.y51{bottom:501.915000px;}
.yd5{bottom:502.095000px;}
.y7b{bottom:502.995000px;}
.y1ae{bottom:506.055000px;}
.y29{bottom:506.415000px;}
.yae{bottom:511.275000px;}
.yc3{bottom:516.135000px;}
.y94{bottom:519.735000px;}
.y1ca{bottom:521.895000px;}
.y50{bottom:522.615000px;}
.yd4{bottom:522.795000px;}
.y7a{bottom:523.695000px;}
.y1ad{bottom:528.195000px;}
.yad{bottom:532.155000px;}
.yfc{bottom:536.835000px;}
.yc2{bottom:538.455000px;}
.y93{bottom:540.435000px;}
.y28{bottom:540.795000px;}
.y4f{bottom:543.315000px;}
.yd3{bottom:543.495000px;}
.y1c9{bottom:544.035000px;}
.y79{bottom:544.395000px;}
.yac{bottom:552.855000px;}
.yfb{bottom:557.535000px;}
.yc1{bottom:560.955000px;}
.y92{bottom:561.135000px;}
.y1ac{bottom:562.755000px;}
.y27{bottom:562.935000px;}
.y4e{bottom:564.015000px;}
.y78{bottom:565.095000px;}
.y191{bottom:567.795000px;}
.yab{bottom:573.555000px;}
.yfa{bottom:578.235000px;}
.y1c8{bottom:578.595000px;}
.yd2{bottom:578.955000px;}
.y91{bottom:581.835000px;}
.yc0{bottom:583.275000px;}
.y4d{bottom:584.715000px;}
.y1ab{bottom:584.895000px;}
.y26{bottom:585.255000px;}
.y77{bottom:585.795000px;}
.yaa{bottom:594.255000px;}
.yf9{bottom:598.935000px;}
.y1c7{bottom:600.735000px;}
.y90{bottom:602.535000px;}
.ybf{bottom:604.155000px;}
.y4c{bottom:605.415000px;}
.y76{bottom:606.495000px;}
.y1aa{bottom:607.215000px;}
.y25{bottom:607.575000px;}
.yd1{bottom:609.195000px;}
.ya9{bottom:614.955000px;}
.yf8{bottom:619.635000px;}
.y11c{bottom:621.975000px;}
.y1c6{bottom:623.055000px;}
.y8f{bottom:623.235000px;}
.ybe{bottom:624.855000px;}
.y4b{bottom:626.115000px;}
.y75{bottom:627.195000px;}
.y1a9{bottom:629.535000px;}
.y24{bottom:629.895000px;}
.ya8{bottom:635.655000px;}
.yf7{bottom:640.335000px;}
.y8e{bottom:643.935000px;}
.ybd{bottom:645.555000px;}
.y4a{bottom:646.815000px;}
.y74{bottom:647.895000px;}
.y1a8{bottom:652.035000px;}
.y23{bottom:652.215000px;}
.y1c5{bottom:657.615000px;}
.yf6{bottom:661.035000px;}
.y167{bottom:661.395000px;}
.y8d{bottom:664.635000px;}
.ybc{bottom:666.255000px;}
.y49{bottom:667.515000px;}
.y73{bottom:668.595000px;}
.ya7{bottom:671.115000px;}
.y1a7{bottom:674.355000px;}
.y22{bottom:674.535000px;}
.y1c4{bottom:679.785000px;}
.yf5{bottom:681.765000px;}
.ybb{bottom:686.985000px;}
.y48{bottom:688.245000px;}
.y72{bottom:689.325000px;}
.ya6{bottom:692.025000px;}
.y21{bottom:696.885000px;}
.y8c{bottom:700.305000px;}
.yb3{bottom:701.925000px;}
.yf4{bottom:702.465000px;}
.yba{bottom:707.685000px;}
.ya5{bottom:708.225000px;}
.y1a6{bottom:708.405000px;}
.y47{bottom:708.945000px;}
.y71{bottom:710.025000px;}
.y1c3{bottom:714.165000px;}
.y20{bottom:719.205000px;}
.y8b{bottom:721.185000px;}
.yf3{bottom:723.165000px;}
.yb9{bottom:728.385000px;}
.y46{bottom:729.645000px;}
.y70{bottom:730.725000px;}
.y1c2{bottom:736.305000px;}
.yb2{bottom:737.385000px;}
.y1f{bottom:741.525000px;}
.y1a5{bottom:743.145000px;}
.y115{bottom:743.505000px;}
.yf2{bottom:743.865000px;}
.y8a{bottom:751.245000px;}
.y6f{bottom:751.425000px;}
.yb8{bottom:762.765000px;}
.y45{bottom:763.845000px;}
.yf1{bottom:764.565000px;}
.yb1{bottom:767.265000px;}
.y1c1{bottom:770.865000px;}
.y6e{bottom:772.125000px;}
.y1e{bottom:775.725000px;}
.y1a4{bottom:777.525000px;}
.yf0{bottom:785.265000px;}
.y44{bottom:785.985000px;}
.y6d{bottom:792.825000px;}
.y1c0{bottom:793.005000px;}
.yb7{bottom:793.185000px;}
.y1d{bottom:796.785000px;}
.y1a3{bottom:799.665000px;}
.yef{bottom:805.965000px;}
.y43{bottom:808.305000px;}
.y6c{bottom:813.525000px;}
.y1c{bottom:817.485000px;}
.y1a2{bottom:821.985000px;}
.yee{bottom:826.665000px;}
.y1bf{bottom:827.565000px;}
.y42{bottom:830.805000px;}
.y6b{bottom:834.225000px;}
.y1b{bottom:837.825000px;}
.y1a1{bottom:844.305000px;}
.yed{bottom:847.365000px;}
.y1be{bottom:849.705000px;}
.y41{bottom:853.125000px;}
.y1a{bottom:858.885000px;}
.y114{bottom:865.005000px;}
.y1a0{bottom:866.625000px;}
.yec{bottom:868.065000px;}
.y6a{bottom:868.425000px;}
.y40{bottom:875.445000px;}
.y19{bottom:879.585000px;}
.y1bd{bottom:884.265000px;}
.yeb{bottom:888.765000px;}
.y19f{bottom:888.945000px;}
.y1db{bottom:896.325000px;}
.y3f{bottom:897.765000px;}
.y18{bottom:900.285000px;}
.y113{bottom:900.825000px;}
.y69{bottom:902.805000px;}
.y1bc{bottom:906.405000px;}
.yea{bottom:909.465000px;}
.y19e{bottom:911.310000px;}
.y3e{bottom:920.130000px;}
.y17{bottom:920.670000px;}
.ye9{bottom:930.210000px;}
.y1da{bottom:930.570000px;}
.y19d{bottom:933.810000px;}
.y112{bottom:935.610000px;}
.y68{bottom:937.230000px;}
.y1bb{bottom:941.010000px;}
.y16{bottom:941.730000px;}
.y3d{bottom:942.450000px;}
.y13c{bottom:948.930000px;}
.ye8{bottom:950.910000px;}
.y1d9{bottom:952.710000px;}
.y19c{bottom:956.130000px;}
.y111{bottom:957.750000px;}
.y15{bottom:962.430000px;}
.y1ba{bottom:963.150000px;}
.yd0{bottom:971.250000px;}
.y67{bottom:971.610000px;}
.y3c{bottom:977.010000px;}
.y19b{bottom:978.450000px;}
.y110{bottom:980.070000px;}
.y14{bottom:983.130000px;}
.y1d8{bottom:987.270000px;}
.ye7{bottom:992.310000px;}
.y1b9{bottom:997.710000px;}
.y3b{bottom:999.150000px;}
.y10f{bottom:1002.390000px;}
.y13{bottom:1003.470000px;}
.y66{bottom:1005.810000px;}
.y1d7{bottom:1009.410000px;}
.ye6{bottom:1012.650000px;}
.y3a{bottom:1021.470000px;}
.y12{bottom:1024.170000px;}
.y10e{bottom:1024.710000px;}
.y65{bottom:1026.510000px;}
.y1d6{bottom:1031.730000px;}
.y1b8{bottom:1031.910000px;}
.ye5{bottom:1033.350000px;}
.y188{bottom:1035.150000px;}
.y39{bottom:1043.790000px;}
.y10d{bottom:1047.030000px;}
.y64{bottom:1047.210000px;}
.ye4{bottom:1054.050000px;}
.y11{bottom:1059.450000px;}
.y38{bottom:1066.110000px;}
.y1b7{bottom:1066.290000px;}
.y63{bottom:1067.910000px;}
.y10{bottom:1085.550000px;}
.y166{bottom:1086.810000px;}
.ye3{bottom:1088.250000px;}
.y37{bottom:1088.430000px;}
.y62{bottom:1088.610000px;}
.y9{bottom:1109.490000px;}
.y1{bottom:1124.970000px;}
.h1b{height:17.265000px;}
.he{height:17.280000px;}
.h23{height:41.726953px;}
.hd{height:50.273438px;}
.h7{height:56.320312px;}
.hf{height:58.651172px;}
.h1a{height:60.226875px;}
.h18{height:62.327813px;}
.h6{height:65.010937px;}
.h3{height:65.884219px;}
.h5{height:67.824844px;}
.h1f{height:68.925000px;}
.h15{height:69.086250px;}
.hc{height:70.628906px;}
.h8{height:70.664062px;}
.ha{height:72.562500px;}
.hb{height:81.736875px;}
.h2{height:84.810000px;}
.h9{height:84.898125px;}
.h14{height:86.256000px;}
.h4{height:95.245664px;}
.h10{height:120.780000px;}
.h11{height:120.810000px;}
.h1d{height:138.045000px;}
.h16{height:155.145000px;}
.h1e{height:155.370000px;}
.h12{height:172.425000px;}
.h13{height:207.015000px;}
.h21{height:224.310000px;}
.h20{height:241.590000px;}
.h22{height:310.515000px;}
.h19{height:342.255000px;}
.h1c{height:424.680000px;}
.h17{height:448.620000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:97.909500px;}
.w2{width:124.189500px;}
.w4{width:159.675000px;}
.w7{width:225.240000px;}
.w6{width:367.800000px;}
.w3{width:385.980000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.085000px;}
.x1b{left:34.545000px;}
.x6{left:39.450000px;}
.x8{left:50.430000px;}
.x7{left:56.550000px;}
.x1c{left:61.590000px;}
.x2{left:98.083500px;}
.x1{left:99.946500px;}
.x9{left:108.036000px;}
.x11{left:125.676000px;}
.xe{left:127.656000px;}
.x13{left:129.276000px;}
.x18{left:144.036000px;}
.x1d{left:150.510000px;}
.xa{left:152.850000px;}
.x14{left:162.030000px;}
.x19{left:198.945000px;}
.x3{left:224.145000px;}
.x10{left:334.515000px;}
.xb{left:364.575000px;}
.xd{left:372.315000px;}
.x12{left:378.255000px;}
.xf{left:415.335000px;}
.xc{left:446.505000px;}
.x1a{left:567.660000px;}
.x5{left:610.140000px;}
.x15{left:741.390000px;}
.x16{left:784.950000px;}
.x17{left:814.680000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls14{letter-spacing:-0.480000pt;}
.ls17{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.097067pt;}
.ls12{letter-spacing:-0.094933pt;}
.lse{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:-0.051840pt;}
.ls16{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.016000pt;}
.ls7{letter-spacing:0.032000pt;}
.ls15{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.096000pt;}
.lsb{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.271360pt;}
.lsa{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.384000pt;}
.ls2{letter-spacing:0.588160pt;}
.ls19{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.976000pt;}
.ls0{letter-spacing:50.693120pt;}
.ls11{letter-spacing:57.072640pt;}
.ls1{letter-spacing:178.853120pt;}
.ws10{word-spacing:-53.120000pt;}
.ws6{word-spacing:-19.040000pt;}
.ws13{word-spacing:-16.640000pt;}
.wsa{word-spacing:-16.368640pt;}
.wsb{word-spacing:-16.271573pt;}
.ws14{word-spacing:-16.192000pt;}
.ws9{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws12{word-spacing:-15.744000pt;}
.wsd{word-spacing:-14.767360pt;}
.wse{word-spacing:-14.672427pt;}
.wsf{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.536000pt;}
.ws1{word-spacing:-13.344000pt;}
.wsc{word-spacing:-13.280000pt;}
.ws11{word-spacing:-13.232640pt;}
.ws0{word-spacing:-11.953280pt;}
.ws5{word-spacing:-10.880000pt;}
.ws4{word-spacing:-10.848000pt;}
.ws3{word-spacing:-8.389120pt;}
.ws8{word-spacing:0.000000pt;}
._1d{margin-left:-1.866027pt;}
._1{margin-left:-0.901333pt;}
._0{width:1.191680pt;}
._4{width:2.112000pt;}
._7{width:3.016960pt;}
._e{width:4.096000pt;}
._9{width:4.992000pt;}
._a{width:6.272000pt;}
._c{width:7.493333pt;}
._b{width:8.704000pt;}
._12{width:10.293333pt;}
._10{width:11.280000pt;}
._f{width:12.224000pt;}
._13{width:13.504000pt;}
._d{width:14.976000pt;}
._22{width:15.992960pt;}
._1a{width:16.965333pt;}
._16{width:17.920000pt;}
._17{width:19.042987pt;}
._19{width:19.940693pt;}
._1b{width:20.979840pt;}
._18{width:21.888000pt;}
._8{width:23.522987pt;}
._1c{width:24.594347pt;}
._3{width:26.176000pt;}
._5{width:27.077333pt;}
._3d{width:27.974400pt;}
._6{width:28.864000pt;}
._1f{width:29.760000pt;}
._21{width:31.261013pt;}
._20{width:32.517333pt;}
._14{width:33.792000pt;}
._15{width:35.042987pt;}
._45{width:35.994880pt;}
._28{width:36.918400pt;}
._29{width:38.512000pt;}
._11{width:40.698667pt;}
._2b{width:43.133440pt;}
._2e{width:44.369280pt;}
._2d{width:45.805440pt;}
._3f{width:48.126720pt;}
._2f{width:49.597867pt;}
._26{width:53.438720pt;}
._25{width:54.370133pt;}
._3e{width:55.722880pt;}
._3b{width:56.679040pt;}
._2{width:58.144000pt;}
._33{width:59.281920pt;}
._3c{width:60.374400pt;}
._46{width:62.044160pt;}
._2a{width:64.168960pt;}
._40{width:65.921920pt;}
._2c{width:74.846080pt;}
._23{width:75.749120pt;}
._24{width:76.970880pt;}
._48{width:78.435200pt;}
._43{width:80.051840pt;}
._38{width:81.592320pt;}
._3a{width:85.470080pt;}
._39{width:93.066240pt;}
._47{width:95.081600pt;}
._42{width:98.059520pt;}
._41{width:99.121920pt;}
._44{width:105.921280pt;}
._4a{width:107.554347pt;}
._35{width:109.480320pt;}
._27{width:113.227520pt;}
._37{width:120.878080pt;}
._1e{width:127.978667pt;}
._36{width:139.274880pt;}
._49{width:186.504320pt;}
._30{width:187.812907pt;}
._34{width:238.034560pt;}
._32{width:249.859200pt;}
._31{width:681.718827pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y13b{bottom:3.200000pt;}
.y132{bottom:3.346667pt;}
.y2{bottom:3.360000pt;}
.y8{bottom:10.080000pt;}
.y139{bottom:12.480000pt;}
.y184{bottom:18.546667pt;}
.y13a{bottom:18.560000pt;}
.y131{bottom:18.706667pt;}
.y11b{bottom:18.720000pt;}
.y165{bottom:21.920000pt;}
.y7{bottom:27.546667pt;}
.y138{bottom:29.280000pt;}
.y130{bottom:33.906667pt;}
.y125{bottom:33.920000pt;}
.y4{bottom:33.946667pt;}
.y197{bottom:34.066667pt;}
.y11a{bottom:34.080000pt;}
.y164{bottom:37.280000pt;}
.y17c{bottom:37.306667pt;}
.y6{bottom:45.146667pt;}
.y137{bottom:46.106667pt;}
.y12f{bottom:49.266667pt;}
.y124{bottom:49.280000pt;}
.y135{bottom:49.306667pt;}
.y119{bottom:49.440000pt;}
.y120{bottom:49.466667pt;}
.yf{bottom:51.200000pt;}
.y163{bottom:52.666667pt;}
.y3{bottom:55.226667pt;}
.y5{bottom:62.746667pt;}
.y136{bottom:63.066667pt;}
.y12e{bottom:64.626667pt;}
.y118{bottom:64.640000pt;}
.y134{bottom:64.666667pt;}
.y11f{bottom:64.826667pt;}
.y162{bottom:68.026667pt;}
.ye{bottom:68.320000pt;}
.y12d{bottom:79.986667pt;}
.y117{bottom:80.000000pt;}
.y11e{bottom:80.026667pt;}
.yd{bottom:83.200000pt;}
.y17b{bottom:83.226667pt;}
.y161{bottom:83.386667pt;}
.y17e{bottom:95.040000pt;}
.y13e{bottom:95.200000pt;}
.y12c{bottom:95.346667pt;}
.y116{bottom:95.360000pt;}
.y11d{bottom:95.386667pt;}
.yc{bottom:96.960000pt;}
.y17a{bottom:98.586667pt;}
.y17d{bottom:110.400000pt;}
.y183{bottom:110.546667pt;}
.y13d{bottom:110.560000pt;}
.y12b{bottom:110.706667pt;}
.yb{bottom:110.720000pt;}
.y187{bottom:110.746667pt;}
.y190{bottom:110.760000pt;}
.y179{bottom:113.946667pt;}
.y160{bottom:116.986667pt;}
.ya{bottom:124.640000pt;}
.y12a{bottom:125.906667pt;}
.y123{bottom:125.920000pt;}
.y182{bottom:125.946667pt;}
.y196{bottom:126.066667pt;}
.y186{bottom:126.106667pt;}
.y18f{bottom:126.120000pt;}
.y178{bottom:130.266667pt;}
.y15f{bottom:132.346667pt;}
.y133{bottom:136.960000pt;}
.y153{bottom:139.200000pt;}
.y185{bottom:141.120000pt;}
.y129{bottom:141.266667pt;}
.y122{bottom:141.280000pt;}
.y181{bottom:141.306667pt;}
.y18e{bottom:141.320000pt;}
.y1d5{bottom:143.040000pt;}
.y177{bottom:145.626667pt;}
.y15e{bottom:148.666667pt;}
.y61{bottom:151.680000pt;}
.y10c{bottom:152.160000pt;}
.ya4{bottom:155.520000pt;}
.y128{bottom:156.626667pt;}
.y152{bottom:156.666667pt;}
.y18d{bottom:156.680000pt;}
.ye2{bottom:158.560000pt;}
.y176{bottom:160.986667pt;}
.yb6{bottom:162.880000pt;}
.y89{bottom:163.680000pt;}
.y15d{bottom:163.866667pt;}
.y36{bottom:166.880000pt;}
.y60{bottom:170.080000pt;}
.y10b{bottom:170.560000pt;}
.y180{bottom:171.706667pt;}
.y127{bottom:171.986667pt;}
.y151{bottom:172.026667pt;}
.y18b{bottom:172.040000pt;}
.ya3{bottom:173.920000pt;}
.y19a{bottom:176.160000pt;}
.y175{bottom:176.186667pt;}
.ycf{bottom:179.520000pt;}
.y15c{bottom:180.186667pt;}
.y1d4{bottom:182.720000pt;}
.y88{bottom:183.386667pt;}
.y18c{bottom:187.080000pt;}
.y1b6{bottom:187.226667pt;}
.y150{bottom:187.386667pt;}
.y18a{bottom:187.400000pt;}
.y5f{bottom:188.506667pt;}
.y10a{bottom:188.986667pt;}
.ye1{bottom:189.146667pt;}
.ya2{bottom:192.346667pt;}
.y174{bottom:192.506667pt;}
.yb5{bottom:192.986667pt;}
.y199{bottom:194.586667pt;}
.y35{bottom:197.466667pt;}
.yce{bottom:199.226667pt;}
.y1d3{bottom:202.586667pt;}
.y14f{bottom:202.746667pt;}
.y189{bottom:202.760000pt;}
.y5e{bottom:206.906667pt;}
.y109{bottom:207.386667pt;}
.yb4{bottom:207.706667pt;}
.y173{bottom:207.866667pt;}
.y198{bottom:212.986667pt;}
.y87{bottom:213.786667pt;}
.y126{bottom:214.280000pt;}
.y15b{bottom:215.546667pt;}
.y34{bottom:216.186667pt;}
.y14e{bottom:217.946667pt;}
.y195{bottom:218.106667pt;}
.ycd{bottom:219.066667pt;}
.ye0{bottom:219.706667pt;}
.ya1{bottom:222.906667pt;}
.y172{bottom:223.266667pt;}
.y5d{bottom:225.306667pt;}
.y108{bottom:225.786667pt;}
.y192{bottom:228.040000pt;}
.y15a{bottom:230.906667pt;}
.y14d{bottom:233.306667pt;}
.y33{bottom:234.586667pt;}
.y1b5{bottom:237.626667pt;}
.y171{bottom:238.626667pt;}
.ycc{bottom:238.906667pt;}
.ya0{bottom:241.306667pt;}
.y5c{bottom:243.706667pt;}
.y86{bottom:244.346667pt;}
.y159{bottom:246.106667pt;}
.y194{bottom:248.346667pt;}
.y14c{bottom:248.666667pt;}
.ydf{bottom:249.786667pt;}
.y32{bottom:252.986667pt;}
.y170{bottom:253.826667pt;}
.y107{bottom:256.346667pt;}
.ycb{bottom:258.746667pt;}
.y9f{bottom:259.706667pt;}
.y158{bottom:261.506667pt;}
.y5b{bottom:262.106667pt;}
.y85{bottom:263.066667pt;}
.y193{bottom:263.706667pt;}
.y14b{bottom:264.026667pt;}
.y1b4{bottom:268.186667pt;}
.y31{bottom:271.386667pt;}
.y1d2{bottom:272.826667pt;}
.y106{bottom:274.746667pt;}
.y156{bottom:276.546667pt;}
.y157{bottom:276.866667pt;}
.y9e{bottom:278.106667pt;}
.yca{bottom:278.586667pt;}
.y14a{bottom:279.386667pt;}
.y17f{bottom:279.880000pt;}
.y5a{bottom:280.506667pt;}
.yde{bottom:280.666667pt;}
.y84{bottom:281.466667pt;}
.y1b3{bottom:287.866667pt;}
.y16f{bottom:288.866667pt;}
.y30{bottom:289.786667pt;}
.y155{bottom:291.906667pt;}
.y154{bottom:292.226667pt;}
.y105{bottom:293.146667pt;}
.y149{bottom:294.746667pt;}
.y9d{bottom:296.506667pt;}
.y59{bottom:298.906667pt;}
.ydd{bottom:299.066667pt;}
.y83{bottom:299.866667pt;}
.y1d1{bottom:303.546667pt;}
.y16e{bottom:304.226667pt;}
.yc9{bottom:309.306667pt;}
.y145{bottom:309.946667pt;}
.y104{bottom:311.546667pt;}
.y9c{bottom:314.906667pt;}
.y58{bottom:317.306667pt;}
.ydc{bottom:317.466667pt;}
.y82{bottom:318.266667pt;}
.y1b2{bottom:318.586667pt;}
.y16d{bottom:319.586667pt;}
.y2f{bottom:320.346667pt;}
.y1d0{bottom:323.226667pt;}
.y144{bottom:325.306667pt;}
.yc8{bottom:328.986667pt;}
.y103{bottom:329.946667pt;}
.y9b{bottom:333.306667pt;}
.y16a{bottom:334.786667pt;}
.y57{bottom:335.706667pt;}
.ydb{bottom:335.866667pt;}
.y81{bottom:336.666667pt;}
.y2e{bottom:340.026667pt;}
.y143{bottom:340.666667pt;}
.y1cf{bottom:343.066667pt;}
.y16c{bottom:347.106667pt;}
.y102{bottom:348.346667pt;}
.yc7{bottom:348.826667pt;}
.y1b1{bottom:349.146667pt;}
.y169{bottom:350.146667pt;}
.y9a{bottom:351.706667pt;}
.y56{bottom:354.106667pt;}
.yda{bottom:354.266667pt;}
.y80{bottom:355.066667pt;}
.y148{bottom:355.866667pt;}
.y142{bottom:356.026667pt;}
.y2d{bottom:359.866667pt;}
.y1ce{bottom:362.906667pt;}
.y16b{bottom:363.906667pt;}
.y168{bottom:365.506667pt;}
.y101{bottom:366.746667pt;}
.yc6{bottom:368.666667pt;}
.y1b0{bottom:368.826667pt;}
.y99{bottom:370.106667pt;}
.y147{bottom:371.266667pt;}
.y141{bottom:371.426667pt;}
.y55{bottom:372.506667pt;}
.yd9{bottom:372.666667pt;}
.y7f{bottom:373.466667pt;}
.y2c{bottom:379.706667pt;}
.y100{bottom:385.146667pt;}
.y146{bottom:386.466667pt;}
.y140{bottom:386.786667pt;}
.y98{bottom:388.506667pt;}
.y54{bottom:390.906667pt;}
.yd8{bottom:391.066667pt;}
.y7e{bottom:391.906667pt;}
.yb0{bottom:392.066667pt;}
.y1cd{bottom:393.666667pt;}
.y121{bottom:398.946667pt;}
.y1af{bottom:399.426667pt;}
.y2b{bottom:399.586667pt;}
.yff{bottom:403.586667pt;}
.y97{bottom:406.946667pt;}
.y53{bottom:409.346667pt;}
.yd7{bottom:409.506667pt;}
.y7d{bottom:410.306667pt;}
.y1cc{bottom:413.346667pt;}
.yc5{bottom:419.266667pt;}
.y2a{bottom:419.426667pt;}
.yfe{bottom:421.986667pt;}
.yaf{bottom:422.786667pt;}
.y96{bottom:425.346667pt;}
.y52{bottom:427.746667pt;}
.yd6{bottom:427.906667pt;}
.y7c{bottom:428.706667pt;}
.y1cb{bottom:433.186667pt;}
.yc4{bottom:438.946667pt;}
.yfd{bottom:440.386667pt;}
.y95{bottom:443.746667pt;}
.y13f{bottom:444.066667pt;}
.y51{bottom:446.146667pt;}
.yd5{bottom:446.306667pt;}
.y7b{bottom:447.106667pt;}
.y1ae{bottom:449.826667pt;}
.y29{bottom:450.146667pt;}
.yae{bottom:454.466667pt;}
.yc3{bottom:458.786667pt;}
.y94{bottom:461.986667pt;}
.y1ca{bottom:463.906667pt;}
.y50{bottom:464.546667pt;}
.yd4{bottom:464.706667pt;}
.y7a{bottom:465.506667pt;}
.y1ad{bottom:469.506667pt;}
.yad{bottom:473.026667pt;}
.yfc{bottom:477.186667pt;}
.yc2{bottom:478.626667pt;}
.y93{bottom:480.386667pt;}
.y28{bottom:480.706667pt;}
.y4f{bottom:482.946667pt;}
.yd3{bottom:483.106667pt;}
.y1c9{bottom:483.586667pt;}
.y79{bottom:483.906667pt;}
.yac{bottom:491.426667pt;}
.yfb{bottom:495.586667pt;}
.yc1{bottom:498.626667pt;}
.y92{bottom:498.786667pt;}
.y1ac{bottom:500.226667pt;}
.y27{bottom:500.386667pt;}
.y4e{bottom:501.346667pt;}
.y78{bottom:502.306667pt;}
.y191{bottom:504.706667pt;}
.yab{bottom:509.826667pt;}
.yfa{bottom:513.986667pt;}
.y1c8{bottom:514.306667pt;}
.yd2{bottom:514.626667pt;}
.y91{bottom:517.186667pt;}
.yc0{bottom:518.466667pt;}
.y4d{bottom:519.746667pt;}
.y1ab{bottom:519.906667pt;}
.y26{bottom:520.226667pt;}
.y77{bottom:520.706667pt;}
.yaa{bottom:528.226667pt;}
.yf9{bottom:532.386667pt;}
.y1c7{bottom:533.986667pt;}
.y90{bottom:535.586667pt;}
.ybf{bottom:537.026667pt;}
.y4c{bottom:538.146667pt;}
.y76{bottom:539.106667pt;}
.y1aa{bottom:539.746667pt;}
.y25{bottom:540.066667pt;}
.yd1{bottom:541.506667pt;}
.ya9{bottom:546.626667pt;}
.yf8{bottom:550.786667pt;}
.y11c{bottom:552.866667pt;}
.y1c6{bottom:553.826667pt;}
.y8f{bottom:553.986667pt;}
.ybe{bottom:555.426667pt;}
.y4b{bottom:556.546667pt;}
.y75{bottom:557.506667pt;}
.y1a9{bottom:559.586667pt;}
.y24{bottom:559.906667pt;}
.ya8{bottom:565.026667pt;}
.yf7{bottom:569.186667pt;}
.y8e{bottom:572.386667pt;}
.ybd{bottom:573.826667pt;}
.y4a{bottom:574.946667pt;}
.y74{bottom:575.906667pt;}
.y1a8{bottom:579.586667pt;}
.y23{bottom:579.746667pt;}
.y1c5{bottom:584.546667pt;}
.yf6{bottom:587.586667pt;}
.y167{bottom:587.906667pt;}
.y8d{bottom:590.786667pt;}
.ybc{bottom:592.226667pt;}
.y49{bottom:593.346667pt;}
.y73{bottom:594.306667pt;}
.ya7{bottom:596.546667pt;}
.y1a7{bottom:599.426667pt;}
.y22{bottom:599.586667pt;}
.y1c4{bottom:604.253333pt;}
.yf5{bottom:606.013333pt;}
.ybb{bottom:610.653333pt;}
.y48{bottom:611.773333pt;}
.y72{bottom:612.733333pt;}
.ya6{bottom:615.133333pt;}
.y21{bottom:619.453333pt;}
.y8c{bottom:622.493333pt;}
.yb3{bottom:623.933333pt;}
.yf4{bottom:624.413333pt;}
.yba{bottom:629.053333pt;}
.ya5{bottom:629.533333pt;}
.y1a6{bottom:629.693333pt;}
.y47{bottom:630.173333pt;}
.y71{bottom:631.133333pt;}
.y1c3{bottom:634.813333pt;}
.y20{bottom:639.293333pt;}
.y8b{bottom:641.053333pt;}
.yf3{bottom:642.813333pt;}
.yb9{bottom:647.453333pt;}
.y46{bottom:648.573333pt;}
.y70{bottom:649.533333pt;}
.y1c2{bottom:654.493333pt;}
.yb2{bottom:655.453333pt;}
.y1f{bottom:659.133333pt;}
.y1a5{bottom:660.573333pt;}
.y115{bottom:660.893333pt;}
.yf2{bottom:661.213333pt;}
.y8a{bottom:667.773333pt;}
.y6f{bottom:667.933333pt;}
.yb8{bottom:678.013333pt;}
.y45{bottom:678.973333pt;}
.yf1{bottom:679.613333pt;}
.yb1{bottom:682.013333pt;}
.y1c1{bottom:685.213333pt;}
.y6e{bottom:686.333333pt;}
.y1e{bottom:689.533333pt;}
.y1a4{bottom:691.133333pt;}
.yf0{bottom:698.013333pt;}
.y44{bottom:698.653333pt;}
.y6d{bottom:704.733333pt;}
.y1c0{bottom:704.893333pt;}
.yb7{bottom:705.053333pt;}
.y1d{bottom:708.253333pt;}
.y1a3{bottom:710.813333pt;}
.yef{bottom:716.413333pt;}
.y43{bottom:718.493333pt;}
.y6c{bottom:723.133333pt;}
.y1c{bottom:726.653333pt;}
.y1a2{bottom:730.653333pt;}
.yee{bottom:734.813333pt;}
.y1bf{bottom:735.613333pt;}
.y42{bottom:738.493333pt;}
.y6b{bottom:741.533333pt;}
.y1b{bottom:744.733333pt;}
.y1a1{bottom:750.493333pt;}
.yed{bottom:753.213333pt;}
.y1be{bottom:755.293333pt;}
.y41{bottom:758.333333pt;}
.y1a{bottom:763.453333pt;}
.y114{bottom:768.893333pt;}
.y1a0{bottom:770.333333pt;}
.yec{bottom:771.613333pt;}
.y6a{bottom:771.933333pt;}
.y40{bottom:778.173333pt;}
.y19{bottom:781.853333pt;}
.y1bd{bottom:786.013333pt;}
.yeb{bottom:790.013333pt;}
.y19f{bottom:790.173333pt;}
.y1db{bottom:796.733333pt;}
.y3f{bottom:798.013333pt;}
.y18{bottom:800.253333pt;}
.y113{bottom:800.733333pt;}
.y69{bottom:802.493333pt;}
.y1bc{bottom:805.693333pt;}
.yea{bottom:808.413333pt;}
.y19e{bottom:810.053333pt;}
.y3e{bottom:817.893333pt;}
.y17{bottom:818.373333pt;}
.ye9{bottom:826.853333pt;}
.y1da{bottom:827.173333pt;}
.y19d{bottom:830.053333pt;}
.y112{bottom:831.653333pt;}
.y68{bottom:833.093333pt;}
.y1bb{bottom:836.453333pt;}
.y16{bottom:837.093333pt;}
.y3d{bottom:837.733333pt;}
.y13c{bottom:843.493333pt;}
.ye8{bottom:845.253333pt;}
.y1d9{bottom:846.853333pt;}
.y19c{bottom:849.893333pt;}
.y111{bottom:851.333333pt;}
.y15{bottom:855.493333pt;}
.y1ba{bottom:856.133333pt;}
.yd0{bottom:863.333333pt;}
.y67{bottom:863.653333pt;}
.y3c{bottom:868.453333pt;}
.y19b{bottom:869.733333pt;}
.y110{bottom:871.173333pt;}
.y14{bottom:873.893333pt;}
.y1d8{bottom:877.573333pt;}
.ye7{bottom:882.053333pt;}
.y1b9{bottom:886.853333pt;}
.y3b{bottom:888.133333pt;}
.y10f{bottom:891.013333pt;}
.y13{bottom:891.973333pt;}
.y66{bottom:894.053333pt;}
.y1d7{bottom:897.253333pt;}
.ye6{bottom:900.133333pt;}
.y3a{bottom:907.973333pt;}
.y12{bottom:910.373333pt;}
.y10e{bottom:910.853333pt;}
.y65{bottom:912.453333pt;}
.y1d6{bottom:917.093333pt;}
.y1b8{bottom:917.253333pt;}
.ye5{bottom:918.533333pt;}
.y188{bottom:920.133333pt;}
.y39{bottom:927.813333pt;}
.y10d{bottom:930.693333pt;}
.y64{bottom:930.853333pt;}
.ye4{bottom:936.933333pt;}
.y11{bottom:941.733333pt;}
.y38{bottom:947.653333pt;}
.y1b7{bottom:947.813333pt;}
.y63{bottom:949.253333pt;}
.y10{bottom:964.933333pt;}
.y166{bottom:966.053333pt;}
.ye3{bottom:967.333333pt;}
.y37{bottom:967.493333pt;}
.y62{bottom:967.653333pt;}
.y9{bottom:986.213333pt;}
.y1{bottom:999.973333pt;}
.h1b{height:15.346667pt;}
.he{height:15.360000pt;}
.h23{height:37.090625pt;}
.hd{height:44.687500pt;}
.h7{height:50.062500pt;}
.hf{height:52.134375pt;}
.h1a{height:53.535000pt;}
.h18{height:55.402500pt;}
.h6{height:57.787500pt;}
.h3{height:58.563750pt;}
.h5{height:60.288750pt;}
.h1f{height:61.266667pt;}
.h15{height:61.410000pt;}
.hc{height:62.781250pt;}
.h8{height:62.812500pt;}
.ha{height:64.500000pt;}
.hb{height:72.655000pt;}
.h2{height:75.386667pt;}
.h9{height:75.465000pt;}
.h14{height:76.672000pt;}
.h4{height:84.662813pt;}
.h10{height:107.360000pt;}
.h11{height:107.386667pt;}
.h1d{height:122.706667pt;}
.h16{height:137.906667pt;}
.h1e{height:138.106667pt;}
.h12{height:153.266667pt;}
.h13{height:184.013333pt;}
.h21{height:199.386667pt;}
.h20{height:214.746667pt;}
.h22{height:276.013333pt;}
.h19{height:304.226667pt;}
.h1c{height:377.493333pt;}
.h17{height:398.773333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:87.030667pt;}
.w2{width:110.390667pt;}
.w4{width:141.933333pt;}
.w7{width:200.213333pt;}
.w6{width:326.933333pt;}
.w3{width:343.093333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.186667pt;}
.x1b{left:30.706667pt;}
.x6{left:35.066667pt;}
.x8{left:44.826667pt;}
.x7{left:50.266667pt;}
.x1c{left:54.746667pt;}
.x2{left:87.185333pt;}
.x1{left:88.841333pt;}
.x9{left:96.032000pt;}
.x11{left:111.712000pt;}
.xe{left:113.472000pt;}
.x13{left:114.912000pt;}
.x18{left:128.032000pt;}
.x1d{left:133.786667pt;}
.xa{left:135.866667pt;}
.x14{left:144.026667pt;}
.x19{left:176.840000pt;}
.x3{left:199.240000pt;}
.x10{left:297.346667pt;}
.xb{left:324.066667pt;}
.xd{left:330.946667pt;}
.x12{left:336.226667pt;}
.xf{left:369.186667pt;}
.xc{left:396.893333pt;}
.x1a{left:504.586667pt;}
.x5{left:542.346667pt;}
.x15{left:659.013333pt;}
.x16{left:697.733333pt;}
.x17{left:724.160000pt;}
}




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