
    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_36fb37ce866b74af25438ab7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959961;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_a07a497b9352198faee4f963.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958008;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_3bf8cba87717caee77f5d2d0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959961;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_f710d641cdc475a7aa623dea.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.014160;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_611b953112916e3422276184.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958008;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_61e5aab748f0ab4161399242.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a3e8770317b5f1936df19d0c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6c68822130e910de42b7f726.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a8a656abb09ec447693d7ec8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.958008;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_d4cf3b216d788fce50f2cb72.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.925781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_3cc20ac4d3945285e9877462.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.958008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_25a3ba4014c1acceb1053ef2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.958008;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;}
.m2{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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:14.400000px;}
.lsc{letter-spacing:-1.872000px;}
.ls15{letter-spacing:-1.866000px;}
.ls1c{letter-spacing:-1.662000px;}
.ls24{letter-spacing:-1.440000px;}
.ls6{letter-spacing:-1.068000px;}
.lsb{letter-spacing:-0.912000px;}
.ls21{letter-spacing:-0.732000px;}
.ls1f{letter-spacing:-0.518400px;}
.lse{letter-spacing:-0.432000px;}
.lsd{letter-spacing:-0.426000px;}
.ls5{letter-spacing:-0.403200px;}
.ls23{letter-spacing:-0.385800px;}
.ls17{letter-spacing:-0.342600px;}
.ls2{letter-spacing:-0.296400px;}
.ls2e{letter-spacing:-0.250800px;}
.ls1b{letter-spacing:-0.220200px;}
.ls14{letter-spacing:-0.210000px;}
.ls22{letter-spacing:-0.155400px;}
.ls27{letter-spacing:-0.121200px;}
.ls1a{letter-spacing:-0.094800px;}
.ls2c{letter-spacing:-0.051840px;}
.ls19{letter-spacing:-0.047520px;}
.ls1{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.060600px;}
.ls25{letter-spacing:0.080640px;}
.ls0{letter-spacing:0.171360px;}
.lsf{letter-spacing:0.172800px;}
.ls29{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.230400px;}
.ls3{letter-spacing:0.331200px;}
.ls1d{letter-spacing:0.345600px;}
.ls2b{letter-spacing:0.371400px;}
.ls9{letter-spacing:0.371520px;}
.ls26{letter-spacing:0.452400px;}
.ls16{letter-spacing:0.526800px;}
.ls10{letter-spacing:0.527040px;}
.ls12{letter-spacing:0.636480px;}
.ls2d{letter-spacing:0.684000px;}
.ls7{letter-spacing:0.744000px;}
.ls11{letter-spacing:0.750240px;}
.ls1e{letter-spacing:0.864000px;}
.ls28{letter-spacing:1.056000px;}
.ls13{letter-spacing:1.392480px;}
.ls20{letter-spacing:40.798560px;}
.ls8{letter-spacing:63.838560px;}
.ls4{letter-spacing:846.041280px;}
.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;}
}
.ws5{word-spacing:-60.480000px;}
.ws14{word-spacing:-41.760000px;}
.ws1b{word-spacing:-18.892800px;}
.ws1f{word-spacing:-18.720000px;}
.ws10{word-spacing:-18.547200px;}
.ws4{word-spacing:-18.348480px;}
.ws1a{word-spacing:-17.808960px;}
.ws15{word-spacing:-17.616960px;}
.ws3{word-spacing:-17.280480px;}
.ws1c{word-spacing:-17.279760px;}
.ws1d{word-spacing:-17.124360px;}
.ws1{word-spacing:-17.084160px;}
.ws9{word-spacing:-16.934400px;}
.ws7{word-spacing:-16.752960px;}
.ws19{word-spacing:-16.631760px;}
.ws17{word-spacing:-16.597560px;}
.wsa{word-spacing:-16.542960px;}
.ws1e{word-spacing:-16.502160px;}
.wsd{word-spacing:-16.410360px;}
.ws18{word-spacing:-16.367160px;}
.ws12{word-spacing:-16.326960px;}
.ws8{word-spacing:-16.320960px;}
.ws16{word-spacing:-16.020960px;}
.wsc{word-spacing:-15.840960px;}
.wsb{word-spacing:-14.886960px;}
.ws6{word-spacing:-14.880960px;}
.ws0{word-spacing:-12.068880px;}
.wse{word-spacing:-11.567520px;}
.wsf{word-spacing:-11.472720px;}
.ws11{word-spacing:-10.549560px;}
.ws13{word-spacing:-9.107760px;}
.ws2{word-spacing:0.000000px;}
._b{margin-left:-15.620160px;}
._8{margin-left:-14.509920px;}
._7{margin-left:-10.652640px;}
._a{margin-left:-8.319360px;}
._9{margin-left:-4.637280px;}
._c{margin-left:-3.211200px;}
._6{margin-left:-2.131200px;}
._3{margin-left:-1.031040px;}
._0{width:1.553760px;}
._1{width:3.346560px;}
._4{width:4.657440px;}
._5{width:5.700000px;}
._2{width:7.038240px;}
.fc8{color:transparent;}
.fc5{color:rgb(91,111,121);}
.fc3{color:rgb(255,189,16);}
.fc7{color:rgb(0,32,96);}
.fc6{color:rgb(10,38,51);}
.fc1{color:rgb(14,52,69);}
.fc4{color:rgb(42,158,207);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:27.360000px;}
.fs9{font-size:38.880000px;}
.fsb{font-size:41.760000px;}
.fsc{font-size:44.018465px;}
.fs2{font-size:44.640000px;}
.fs5{font-size:54.720000px;}
.fs4{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fsd{font-size:66.384000px;}
.fs7{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.fs8{font-size:108.000000px;}
.fs1{font-size:119.520000px;}
.fs6{font-size:132.480000px;}
.y0{bottom:0.000000px;}
.y24{bottom:2.520000px;}
.y28{bottom:3.960000px;}
.y2b{bottom:7.560000px;}
.y26{bottom:7.920000px;}
.y23{bottom:16.200000px;}
.y22{bottom:30.276000px;}
.y2a{bottom:43.560000px;}
.y21{bottom:43.956000px;}
.ycf{bottom:49.320000px;}
.y9b{bottom:50.040000px;}
.y167{bottom:50.070000px;}
.y19e{bottom:50.085000px;}
.y14f{bottom:50.400000px;}
.y1f{bottom:51.510000px;}
.y2e{bottom:55.800000px;}
.y20{bottom:70.560000px;}
.yd4{bottom:70.965000px;}
.y2d{bottom:72.360000px;}
.yfd{bottom:73.080000px;}
.y9a{bottom:73.110000px;}
.y19d{bottom:73.125000px;}
.y1e{bottom:88.230000px;}
.yce{bottom:91.830000px;}
.yd3{bottom:92.205000px;}
.y13e{bottom:96.120000px;}
.y166{bottom:96.150000px;}
.yfc{bottom:96.480000px;}
.y99{bottom:96.510000px;}
.y19c{bottom:96.525000px;}
.y96{bottom:108.036000px;}
.y14c{bottom:110.196000px;}
.ycd{bottom:113.070000px;}
.yd2{bottom:113.085000px;}
.y19b{bottom:118.836000px;}
.y165{bottom:119.550000px;}
.y13d{bottom:119.565000px;}
.y98{bottom:119.910000px;}
.y95{bottom:120.996000px;}
.y163{bottom:121.716000px;}
.y138{bottom:123.156000px;}
.y1c{bottom:123.516000px;}
.y94{bottom:123.876000px;}
.yc7{bottom:126.036000px;}
.y14b{bottom:131.076000px;}
.y11f{bottom:133.956000px;}
.ycc{bottom:134.310000px;}
.yd1{bottom:134.325000px;}
.y93{bottom:134.676000px;}
.y18b{bottom:135.396000px;}
.y162{bottom:137.556000px;}
.yc6{bottom:138.996000px;}
.y14e{bottom:142.950000px;}
.y13c{bottom:142.965000px;}
.y137{bottom:144.396000px;}
.y92{bottom:147.636000px;}
.yfa{bottom:148.356000px;}
.y91{bottom:150.510000px;}
.yf9{bottom:151.230000px;}
.yc5{bottom:151.950000px;}
.y14a{bottom:152.310000px;}
.ycb{bottom:155.190000px;}
.y19a{bottom:156.990000px;}
.y90{bottom:160.590000px;}
.y1b{bottom:161.670000px;}
.yf8{bottom:162.750000px;}
.yc4{bottom:165.630000px;}
.y18a{bottom:165.990000px;}
.y13b{bottom:166.005000px;}
.y29{bottom:166.350000px;}
.yc3{bottom:168.510000px;}
.y8f{bottom:173.190000px;}
.y149{bottom:173.550000px;}
.y161{bottom:173.910000px;}
.yca{bottom:176.430000px;}
.y66{bottom:176.790000px;}
.yc2{bottom:180.030000px;}
.y8e{bottom:186.150000px;}
.y136{bottom:186.510000px;}
.y11e{bottom:186.870000px;}
.y189{bottom:187.230000px;}
.y160{bottom:188.310000px;}
.y8d{bottom:189.030000px;}
.y13a{bottom:189.405000px;}
.y11d{bottom:189.750000px;}
.y148{bottom:194.790000px;}
.y199{bottom:195.150000px;}
.yc9{bottom:197.715000px;}
.y65{bottom:198.030000px;}
.yf7{bottom:199.470000px;}
.y11c{bottom:199.830000px;}
.y1a{bottom:200.190000px;}
.y8c{bottom:200.550000px;}
.y135{bottom:207.750000px;}
.y188{bottom:208.470000px;}
.y11b{bottom:212.790000px;}
.y64{bottom:219.315000px;}
.y15f{bottom:220.035000px;}
.yf6{bottom:220.755000px;}
.y11a{bottom:226.155000px;}
.y119{bottom:229.035000px;}
.y147{bottom:231.555000px;}
.y198{bottom:233.715000px;}
.y19{bottom:238.395000px;}
.y63{bottom:240.555000px;}
.y15e{bottom:241.275000px;}
.yf5{bottom:241.635000px;}
.y134{bottom:244.155000px;}
.y187{bottom:244.515000px;}
.y25{bottom:254.235000px;}
.y146{bottom:258.195000px;}
.y62{bottom:261.435000px;}
.y15d{bottom:262.515000px;}
.yf4{bottom:262.875000px;}
.y133{bottom:265.035000px;}
.y186{bottom:265.755000px;}
.yc1{bottom:268.635000px;}
.y118{bottom:269.355000px;}
.y197{bottom:271.875000px;}
.y8b{bottom:274.395000px;}
.y18{bottom:276.555000px;}
.y61{bottom:282.675000px;}
.y15c{bottom:283.395000px;}
.y132{bottom:286.275000px;}
.y185{bottom:286.995000px;}
.yf3{bottom:289.515000px;}
.y117{bottom:290.235000px;}
.y1b9{bottom:292.395000px;}
.y8a{bottom:295.635000px;}
.y60{bottom:303.915000px;}
.yc0{bottom:304.635000px;}
.y131{bottom:307.515000px;}
.y184{bottom:308.235000px;}
.y1d{bottom:309.315000px;}
.y196{bottom:310.035000px;}
.y17{bottom:315.075000px;}
.y89{bottom:316.875000px;}
.y5f{bottom:325.155000px;}
.ybf{bottom:325.875000px;}
.y116{bottom:326.595000px;}
.y130{bottom:328.755000px;}
.y183{bottom:329.115000px;}
.y1b8{bottom:330.555000px;}
.y88{bottom:337.785000px;}
.y15b{bottom:340.665000px;}
.y5e{bottom:346.065000px;}
.y145{bottom:347.145000px;}
.y115{bottom:347.865000px;}
.y195{bottom:348.585000px;}
.y12f{bottom:349.665000px;}
.y182{bottom:350.385000px;}
.y16{bottom:353.265000px;}
.y87{bottom:359.025000px;}
.yf2{bottom:359.745000px;}
.ybe{bottom:361.905000px;}
.y5d{bottom:367.305000px;}
.y144{bottom:368.025000px;}
.y114{bottom:368.745000px;}
.y1b7{bottom:369.105000px;}
.y12e{bottom:370.905000px;}
.y181{bottom:371.625000px;}
.y86{bottom:380.265000px;}
.yf1{bottom:380.985000px;}
.ybd{bottom:383.145000px;}
.y194{bottom:386.745000px;}
.y5c{bottom:388.545000px;}
.y143{bottom:389.265000px;}
.y113{bottom:389.985000px;}
.y15{bottom:391.425000px;}
.y12d{bottom:392.145000px;}
.y180{bottom:392.865000px;}
.yd0{bottom:393.585000px;}
.y85{bottom:401.505000px;}
.yf0{bottom:401.865000px;}
.ybc{bottom:404.385000px;}
.y1b6{bottom:407.265000px;}
.y5b{bottom:409.785000px;}
.y142{bottom:410.505000px;}
.y111{bottom:411.225000px;}
.y12c{bottom:413.385000px;}
.y17f{bottom:413.745000px;}
.y112{bottom:414.825000px;}
.y84{bottom:422.385000px;}
.yef{bottom:423.105000px;}
.y193{bottom:424.905000px;}
.ybb{bottom:425.265000px;}
.y14{bottom:429.585000px;}
.y5a{bottom:430.665000px;}
.y141{bottom:431.745000px;}
.y110{bottom:432.465000px;}
.y12b{bottom:434.265000px;}
.y17e{bottom:434.985000px;}
.y27{bottom:438.945000px;}
.y83{bottom:443.625000px;}
.yee{bottom:444.345000px;}
.y1b5{bottom:445.425000px;}
.yba{bottom:446.505000px;}
.y59{bottom:451.905000px;}
.y140{bottom:452.625000px;}
.y10f{bottom:453.345000px;}
.y12a{bottom:455.505000px;}
.y17d{bottom:456.225000px;}
.y192{bottom:463.110000px;}
.y82{bottom:464.910000px;}
.yed{bottom:465.630000px;}
.yb9{bottom:467.790000px;}
.y13{bottom:468.150000px;}
.y58{bottom:473.190000px;}
.y129{bottom:476.790000px;}
.y17c{bottom:477.510000px;}
.y15a{bottom:482.910000px;}
.y1b4{bottom:483.990000px;}
.y80{bottom:486.150000px;}
.yec{bottom:486.510000px;}
.yb8{bottom:489.030000px;}
.y81{bottom:489.750000px;}
.y57{bottom:494.430000px;}
.y17b{bottom:498.390000px;}
.y191{bottom:501.630000px;}
.y159{bottom:503.790000px;}
.y12{bottom:506.310000px;}
.yeb{bottom:507.750000px;}
.yb7{bottom:509.910000px;}
.y7f{bottom:512.430000px;}
.y128{bottom:512.790000px;}
.y56{bottom:515.310000px;}
.y1b3{bottom:522.150000px;}
.y158{bottom:525.030000px;}
.y10e{bottom:525.750000px;}
.yb6{bottom:531.150000px;}
.y17a{bottom:534.750000px;}
.y55{bottom:536.550000px;}
.y127{bottom:539.430000px;}
.y190{bottom:539.790000px;}
.yea{bottom:544.110000px;}
.y11{bottom:544.470000px;}
.y157{bottom:546.270000px;}
.yb5{bottom:552.390000px;}
.y54{bottom:557.790000px;}
.y1b2{bottom:560.310000px;}
.y179{bottom:561.030000px;}
.y10d{bottom:562.110000px;}
.ye9{bottom:564.990000px;}
.y156{bottom:567.510000px;}
.yb4{bottom:573.630000px;}
.y18f{bottom:577.950000px;}
.y53{bottom:579.030000px;}
.y10{bottom:582.990000px;}
.ye8{bottom:586.260000px;}
.y154{bottom:588.420000px;}
.y155{bottom:592.020000px;}
.yb3{bottom:594.540000px;}
.y10c{bottom:598.140000px;}
.y1b1{bottom:598.500000px;}
.y52{bottom:599.940000px;}
.y7e{bottom:603.900000px;}
.y3c{bottom:609.300000px;}
.y126{bottom:609.660000px;}
.yb2{bottom:615.780000px;}
.y18e{bottom:616.500000px;}
.yf{bottom:621.180000px;}
.ye7{bottom:622.620000px;}
.y7d{bottom:625.140000px;}
.y125{bottom:630.900000px;}
.y178{bottom:631.620000px;}
.y10b{bottom:634.140000px;}
.yb1{bottom:637.020000px;}
.y14d{bottom:639.900000px;}
.y51{bottom:642.420000px;}
.ye6{bottom:643.500000px;}
.y7c{bottom:646.380000px;}
.y97{bottom:648.540000px;}
.y3b{bottom:648.900000px;}
.y124{bottom:652.140000px;}
.y177{bottom:652.500000px;}
.y18d{bottom:654.660000px;}
.ye{bottom:659.340000px;}
.y50{bottom:663.660000px;}
.ye5{bottom:664.740000px;}
.y153{bottom:666.900000px;}
.y7b{bottom:667.620000px;}
.y10a{bottom:670.500000px;}
.yb0{bottom:673.020000px;}
.y176{bottom:673.740000px;}
.y1b0{bottom:675.180000px;}
.y4f{bottom:684.540000px;}
.ye4{bottom:685.980000px;}
.y164{bottom:686.700000px;}
.y152{bottom:688.140000px;}
.y7a{bottom:688.500000px;}
.y18c{bottom:692.820000px;}
.yae{bottom:694.260000px;}
.y175{bottom:694.980000px;}
.yd{bottom:697.500000px;}
.yaf{bottom:697.860000px;}
.y4e{bottom:705.780000px;}
.y109{bottom:706.500000px;}
.y123{bottom:709.410000px;}
.y79{bottom:709.770000px;}
.y1af{bottom:713.370000px;}
.yad{bottom:715.530000px;}
.y174{bottom:716.250000px;}
.y3a{bottom:719.850000px;}
.ye3{bottom:722.010000px;}
.y4d{bottom:727.050000px;}
.y122{bottom:730.650000px;}
.y78{bottom:731.010000px;}
.y139{bottom:734.610000px;}
.yc{bottom:736.050000px;}
.yac{bottom:736.770000px;}
.y173{bottom:737.130000px;}
.y108{bottom:742.890000px;}
.ye2{bottom:743.250000px;}
.y4c{bottom:748.290000px;}
.y39{bottom:750.450000px;}
.y121{bottom:751.530000px;}
.y1ae{bottom:751.890000px;}
.y77{bottom:752.250000px;}
.yab{bottom:757.650000px;}
.y172{bottom:758.370000px;}
.ye1{bottom:764.490000px;}
.y4b{bottom:769.170000px;}
.y120{bottom:772.770000px;}
.y76{bottom:773.130000px;}
.yb{bottom:774.210000px;}
.y107{bottom:778.890000px;}
.y38{bottom:781.410000px;}
.ye0{bottom:785.370000px;}
.y1ad{bottom:790.050000px;}
.y4a{bottom:790.410000px;}
.yaa{bottom:794.010000px;}
.y75{bottom:794.370000px;}
.y171{bottom:794.730000px;}
.y49{bottom:811.650000px;}
.y37{bottom:812.010000px;}
.ya{bottom:812.370000px;}
.ya9{bottom:815.250000px;}
.y73{bottom:815.610000px;}
.y74{bottom:819.210000px;}
.ydf{bottom:821.730000px;}
.y1ac{bottom:828.210000px;}
.y48{bottom:832.890000px;}
.ya8{bottom:836.175000px;}
.y72{bottom:836.895000px;}
.y36{bottom:843.015000px;}
.yfb{bottom:843.735000px;}
.y9{bottom:850.935000px;}
.y106{bottom:851.295000px;}
.y1a0{bottom:852.735000px;}
.y47{bottom:853.815000px;}
.ya7{bottom:857.415000px;}
.y71{bottom:857.775000px;}
.y170{bottom:858.135000px;}
.yde{bottom:863.895000px;}
.y1ab{bottom:866.415000px;}
.y105{bottom:872.535000px;}
.y35{bottom:873.615000px;}
.y46{bottom:875.055000px;}
.ya6{bottom:878.655000px;}
.y16f{bottom:879.375000px;}
.yc8{bottom:884.775000px;}
.ydd{bottom:885.135000px;}
.y8{bottom:889.095000px;}
.y19f{bottom:890.535000px;}
.y104{bottom:893.415000px;}
.y70{bottom:894.135000px;}
.y45{bottom:896.295000px;}
.ya5{bottom:899.895000px;}
.y16e{bottom:900.255000px;}
.y34{bottom:904.575000px;}
.y1aa{bottom:904.935000px;}
.ydc{bottom:906.375000px;}
.y103{bottom:914.655000px;}
.y6f{bottom:915.015000px;}
.y44{bottom:917.535000px;}
.y16d{bottom:921.495000px;}
.y7{bottom:927.255000px;}
.ydb{bottom:927.615000px;}
.y33{bottom:935.175000px;}
.ya4{bottom:935.895000px;}
.y6e{bottom:936.255000px;}
.y43{bottom:938.415000px;}
.y16c{bottom:942.735000px;}
.y1a9{bottom:943.095000px;}
.yda{bottom:948.495000px;}
.ya3{bottom:957.165000px;}
.y6d{bottom:957.525000px;}
.y42{bottom:959.685000px;}
.y102{bottom:960.765000px;}
.y16a{bottom:964.005000px;}
.y6{bottom:965.445000px;}
.y32{bottom:965.805000px;}
.y16b{bottom:967.605000px;}
.yd9{bottom:969.765000px;}
.ya2{bottom:978.045000px;}
.y6c{bottom:978.765000px;}
.y41{bottom:980.925000px;}
.y1a8{bottom:981.285000px;}
.y151{bottom:993.165000px;}
.y31{bottom:996.765000px;}
.ya1{bottom:999.285000px;}
.y6b{bottom:999.645000px;}
.y169{bottom:1000.725000px;}
.y40{bottom:1002.165000px;}
.y5{bottom:1003.965000px;}
.yd8{bottom:1006.125000px;}
.y101{bottom:1014.405000px;}
.y150{bottom:1018.005000px;}
.y1a7{bottom:1019.805000px;}
.ya0{bottom:1020.525000px;}
.y6a{bottom:1020.885000px;}
.y3f{bottom:1023.045000px;}
.y30{bottom:1025.925000px;}
.yd6{bottom:1027.005000px;}
.y168{bottom:1028.445000px;}
.yd7{bottom:1030.605000px;}
.y100{bottom:1035.645000px;}
.y9f{bottom:1041.765000px;}
.y4{bottom:1042.125000px;}
.y3e{bottom:1044.285000px;}
.yd5{bottom:1048.245000px;}
.yff{bottom:1056.525000px;}
.y1a6{bottom:1057.965000px;}
.y13f{bottom:1062.645000px;}
.y69{bottom:1063.365000px;}
.y9e{bottom:1077.765000px;}
.y3{bottom:1080.285000px;}
.y68{bottom:1084.290000px;}
.y1a5{bottom:1096.170000px;}
.y9d{bottom:1099.050000px;}
.y2f{bottom:1105.170000px;}
.y3d{bottom:1106.970000px;}
.y67{bottom:1109.850000px;}
.y2{bottom:1118.850000px;}
.y9c{bottom:1120.290000px;}
.yfe{bottom:1123.890000px;}
.y1a4{bottom:1134.330000px;}
.y1a3{bottom:1172.850000px;}
.y1{bottom:1193.010000px;}
.y2c{bottom:1195.890000px;}
.y1a2{bottom:1211.040000px;}
.y1a1{bottom:1249.200000px;}
.h9{height:20.520000px;}
.h15{height:20.573438px;}
.h13{height:29.235938px;}
.h16{height:31.401562px;}
.h7{height:33.120000px;}
.h6{height:33.567188px;}
.h1a{height:34.256250px;}
.h17{height:36.108897px;}
.hc{height:41.040000px;}
.h1c{height:45.360000px;}
.hb{height:45.478125px;}
.h19{height:49.680000px;}
.h2{height:49.809375px;}
.h22{height:49.917656px;}
.he{height:54.140625px;}
.h5{height:55.116000px;}
.ha{height:58.716000px;}
.h11{height:62.163910px;}
.h8{height:70.711172px;}
.h14{height:81.210938px;}
.h4{height:89.640000px;}
.h12{height:108.843750px;}
.h3{height:118.476000px;}
.hf{height:120.453750px;}
.h10{height:122.847726px;}
.hd{height:133.515000px;}
.h1e{height:141.876000px;}
.h21{height:164.955000px;}
.h18{height:165.270000px;}
.h1d{height:177.870000px;}
.h20{height:211.755000px;}
.h1f{height:234.795000px;}
.h1b{height:241.275000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:298.185000px;}
.wa{width:299.625000px;}
.w9{width:302.145000px;}
.wd{width:310.785000px;}
.wc{width:314.790000px;}
.wb{width:315.105000px;}
.w6{width:373.470000px;}
.w4{width:620.535000px;}
.w5{width:658.695000px;}
.w3{width:683.565000px;}
.w7{width:697.605000px;}
.wf{width:888.120000px;}
.w1{width:892.500000px;}
.w8{width:892.799973px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x34{left:4.680000px;}
.x35{left:10.440000px;}
.x36{left:15.119987px;}
.x9{left:26.640000px;}
.x2c{left:33.120000px;}
.xa{left:37.440000px;}
.x7{left:41.760000px;}
.x1f{left:48.630000px;}
.xf{left:89.316000px;}
.x8{left:100.110000px;}
.x3{left:103.356000px;}
.x1{left:106.235987px;}
.x1c{left:110.195987px;}
.x31{left:114.155987px;}
.xc{left:115.593000px;}
.x20{left:122.435987px;}
.xb{left:128.232000px;}
.x13{left:133.271987px;}
.x14{left:160.274987px;}
.x6{left:166.755000px;}
.x2{left:170.714987px;}
.xe{left:247.785000px;}
.x1d{left:283.784987px;}
.x4{left:298.944000px;}
.x5{left:305.064000px;}
.x1b{left:322.349987px;}
.x2a{left:328.469987px;}
.x2b{left:347.909987px;}
.x28{left:364.109973px;}
.x29{left:369.509987px;}
.x11{left:389.334000px;}
.x23{left:397.259973px;}
.x24{left:402.659987px;}
.xd{left:413.460000px;}
.x2d{left:429.659987px;}
.x12{left:433.259987px;}
.x30{left:464.939973px;}
.x2e{left:466.379973px;}
.x2f{left:471.809987px;}
.x10{left:472.899000px;}
.x15{left:476.489973px;}
.x16{left:481.889987px;}
.x25{left:559.695000px;}
.x22{left:565.095000px;}
.x26{left:567.614973px;}
.x27{left:573.014987px;}
.x17{left:576.614973px;}
.x18{left:582.014987px;}
.x1e{left:590.655000px;}
.x21{left:593.175000px;}
.x33{left:594.615000px;}
.x19{left:652.964973px;}
.x1a{left:658.364987px;}
.x32{left:669.524987px;}
@media print{
.v2{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.800000pt;}
.lsc{letter-spacing:-1.664000pt;}
.ls15{letter-spacing:-1.658667pt;}
.ls1c{letter-spacing:-1.477333pt;}
.ls24{letter-spacing:-1.280000pt;}
.ls6{letter-spacing:-0.949333pt;}
.lsb{letter-spacing:-0.810667pt;}
.ls21{letter-spacing:-0.650667pt;}
.ls1f{letter-spacing:-0.460800pt;}
.lse{letter-spacing:-0.384000pt;}
.lsd{letter-spacing:-0.378667pt;}
.ls5{letter-spacing:-0.358400pt;}
.ls23{letter-spacing:-0.342933pt;}
.ls17{letter-spacing:-0.304533pt;}
.ls2{letter-spacing:-0.263467pt;}
.ls2e{letter-spacing:-0.222933pt;}
.ls1b{letter-spacing:-0.195733pt;}
.ls14{letter-spacing:-0.186667pt;}
.ls22{letter-spacing:-0.138133pt;}
.ls27{letter-spacing:-0.107733pt;}
.ls1a{letter-spacing:-0.084267pt;}
.ls2c{letter-spacing:-0.046080pt;}
.ls19{letter-spacing:-0.042240pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.053867pt;}
.ls25{letter-spacing:0.071680pt;}
.ls0{letter-spacing:0.152320pt;}
.lsf{letter-spacing:0.153600pt;}
.ls29{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.204800pt;}
.ls3{letter-spacing:0.294400pt;}
.ls1d{letter-spacing:0.307200pt;}
.ls2b{letter-spacing:0.330133pt;}
.ls9{letter-spacing:0.330240pt;}
.ls26{letter-spacing:0.402133pt;}
.ls16{letter-spacing:0.468267pt;}
.ls10{letter-spacing:0.468480pt;}
.ls12{letter-spacing:0.565760pt;}
.ls2d{letter-spacing:0.608000pt;}
.ls7{letter-spacing:0.661333pt;}
.ls11{letter-spacing:0.666880pt;}
.ls1e{letter-spacing:0.768000pt;}
.ls28{letter-spacing:0.938667pt;}
.ls13{letter-spacing:1.237760pt;}
.ls20{letter-spacing:36.265387pt;}
.ls8{letter-spacing:56.745387pt;}
.ls4{letter-spacing:752.036693pt;}
.ws5{word-spacing:-53.760000pt;}
.ws14{word-spacing:-37.120000pt;}
.ws1b{word-spacing:-16.793600pt;}
.ws1f{word-spacing:-16.640000pt;}
.ws10{word-spacing:-16.486400pt;}
.ws4{word-spacing:-16.309760pt;}
.ws1a{word-spacing:-15.830187pt;}
.ws15{word-spacing:-15.659520pt;}
.ws3{word-spacing:-15.360427pt;}
.ws1c{word-spacing:-15.359787pt;}
.ws1d{word-spacing:-15.221653pt;}
.ws1{word-spacing:-15.185920pt;}
.ws9{word-spacing:-15.052800pt;}
.ws7{word-spacing:-14.891520pt;}
.ws19{word-spacing:-14.783787pt;}
.ws17{word-spacing:-14.753387pt;}
.wsa{word-spacing:-14.704853pt;}
.ws1e{word-spacing:-14.668587pt;}
.wsd{word-spacing:-14.586987pt;}
.ws18{word-spacing:-14.548587pt;}
.ws12{word-spacing:-14.512853pt;}
.ws8{word-spacing:-14.507520pt;}
.ws16{word-spacing:-14.240853pt;}
.wsc{word-spacing:-14.080853pt;}
.wsb{word-spacing:-13.232853pt;}
.ws6{word-spacing:-13.227520pt;}
.ws0{word-spacing:-10.727893pt;}
.wse{word-spacing:-10.282240pt;}
.wsf{word-spacing:-10.197973pt;}
.ws11{word-spacing:-9.377387pt;}
.ws13{word-spacing:-8.095787pt;}
.ws2{word-spacing:0.000000pt;}
._b{margin-left:-13.884587pt;}
._8{margin-left:-12.897707pt;}
._7{margin-left:-9.469013pt;}
._a{margin-left:-7.394987pt;}
._9{margin-left:-4.122027pt;}
._c{margin-left:-2.854400pt;}
._6{margin-left:-1.894400pt;}
._3{margin-left:-0.916480pt;}
._0{width:1.381120pt;}
._1{width:2.974720pt;}
._4{width:4.139947pt;}
._5{width:5.066667pt;}
._2{width:6.256213pt;}
.fsa{font-size:24.320000pt;}
.fs9{font-size:34.560000pt;}
.fsb{font-size:37.120000pt;}
.fsc{font-size:39.127524pt;}
.fs2{font-size:39.680000pt;}
.fs5{font-size:48.640000pt;}
.fs4{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fsd{font-size:59.008000pt;}
.fs7{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.fs8{font-size:96.000000pt;}
.fs1{font-size:106.240000pt;}
.fs6{font-size:117.760000pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:2.240000pt;}
.y28{bottom:3.520000pt;}
.y2b{bottom:6.720000pt;}
.y26{bottom:7.040000pt;}
.y23{bottom:14.400000pt;}
.y22{bottom:26.912000pt;}
.y2a{bottom:38.720000pt;}
.y21{bottom:39.072000pt;}
.ycf{bottom:43.840000pt;}
.y9b{bottom:44.480000pt;}
.y167{bottom:44.506667pt;}
.y19e{bottom:44.520000pt;}
.y14f{bottom:44.800000pt;}
.y1f{bottom:45.786667pt;}
.y2e{bottom:49.600000pt;}
.y20{bottom:62.720000pt;}
.yd4{bottom:63.080000pt;}
.y2d{bottom:64.320000pt;}
.yfd{bottom:64.960000pt;}
.y9a{bottom:64.986667pt;}
.y19d{bottom:65.000000pt;}
.y1e{bottom:78.426667pt;}
.yce{bottom:81.626667pt;}
.yd3{bottom:81.960000pt;}
.y13e{bottom:85.440000pt;}
.y166{bottom:85.466667pt;}
.yfc{bottom:85.760000pt;}
.y99{bottom:85.786667pt;}
.y19c{bottom:85.800000pt;}
.y96{bottom:96.032000pt;}
.y14c{bottom:97.952000pt;}
.ycd{bottom:100.506667pt;}
.yd2{bottom:100.520000pt;}
.y19b{bottom:105.632000pt;}
.y165{bottom:106.266667pt;}
.y13d{bottom:106.280000pt;}
.y98{bottom:106.586667pt;}
.y95{bottom:107.552000pt;}
.y163{bottom:108.192000pt;}
.y138{bottom:109.472000pt;}
.y1c{bottom:109.792000pt;}
.y94{bottom:110.112000pt;}
.yc7{bottom:112.032000pt;}
.y14b{bottom:116.512000pt;}
.y11f{bottom:119.072000pt;}
.ycc{bottom:119.386667pt;}
.yd1{bottom:119.400000pt;}
.y93{bottom:119.712000pt;}
.y18b{bottom:120.352000pt;}
.y162{bottom:122.272000pt;}
.yc6{bottom:123.552000pt;}
.y14e{bottom:127.066667pt;}
.y13c{bottom:127.080000pt;}
.y137{bottom:128.352000pt;}
.y92{bottom:131.232000pt;}
.yfa{bottom:131.872000pt;}
.y91{bottom:133.786667pt;}
.yf9{bottom:134.426667pt;}
.yc5{bottom:135.066667pt;}
.y14a{bottom:135.386667pt;}
.ycb{bottom:137.946667pt;}
.y19a{bottom:139.546667pt;}
.y90{bottom:142.746667pt;}
.y1b{bottom:143.706667pt;}
.yf8{bottom:144.666667pt;}
.yc4{bottom:147.226667pt;}
.y18a{bottom:147.546667pt;}
.y13b{bottom:147.560000pt;}
.y29{bottom:147.866667pt;}
.yc3{bottom:149.786667pt;}
.y8f{bottom:153.946667pt;}
.y149{bottom:154.266667pt;}
.y161{bottom:154.586667pt;}
.yca{bottom:156.826667pt;}
.y66{bottom:157.146667pt;}
.yc2{bottom:160.026667pt;}
.y8e{bottom:165.466667pt;}
.y136{bottom:165.786667pt;}
.y11e{bottom:166.106667pt;}
.y189{bottom:166.426667pt;}
.y160{bottom:167.386667pt;}
.y8d{bottom:168.026667pt;}
.y13a{bottom:168.360000pt;}
.y11d{bottom:168.666667pt;}
.y148{bottom:173.146667pt;}
.y199{bottom:173.466667pt;}
.yc9{bottom:175.746667pt;}
.y65{bottom:176.026667pt;}
.yf7{bottom:177.306667pt;}
.y11c{bottom:177.626667pt;}
.y1a{bottom:177.946667pt;}
.y8c{bottom:178.266667pt;}
.y135{bottom:184.666667pt;}
.y188{bottom:185.306667pt;}
.y11b{bottom:189.146667pt;}
.y64{bottom:194.946667pt;}
.y15f{bottom:195.586667pt;}
.yf6{bottom:196.226667pt;}
.y11a{bottom:201.026667pt;}
.y119{bottom:203.586667pt;}
.y147{bottom:205.826667pt;}
.y198{bottom:207.746667pt;}
.y19{bottom:211.906667pt;}
.y63{bottom:213.826667pt;}
.y15e{bottom:214.466667pt;}
.yf5{bottom:214.786667pt;}
.y134{bottom:217.026667pt;}
.y187{bottom:217.346667pt;}
.y25{bottom:225.986667pt;}
.y146{bottom:229.506667pt;}
.y62{bottom:232.386667pt;}
.y15d{bottom:233.346667pt;}
.yf4{bottom:233.666667pt;}
.y133{bottom:235.586667pt;}
.y186{bottom:236.226667pt;}
.yc1{bottom:238.786667pt;}
.y118{bottom:239.426667pt;}
.y197{bottom:241.666667pt;}
.y8b{bottom:243.906667pt;}
.y18{bottom:245.826667pt;}
.y61{bottom:251.266667pt;}
.y15c{bottom:251.906667pt;}
.y132{bottom:254.466667pt;}
.y185{bottom:255.106667pt;}
.yf3{bottom:257.346667pt;}
.y117{bottom:257.986667pt;}
.y1b9{bottom:259.906667pt;}
.y8a{bottom:262.786667pt;}
.y60{bottom:270.146667pt;}
.yc0{bottom:270.786667pt;}
.y131{bottom:273.346667pt;}
.y184{bottom:273.986667pt;}
.y1d{bottom:274.946667pt;}
.y196{bottom:275.586667pt;}
.y17{bottom:280.066667pt;}
.y89{bottom:281.666667pt;}
.y5f{bottom:289.026667pt;}
.ybf{bottom:289.666667pt;}
.y116{bottom:290.306667pt;}
.y130{bottom:292.226667pt;}
.y183{bottom:292.546667pt;}
.y1b8{bottom:293.826667pt;}
.y88{bottom:300.253333pt;}
.y15b{bottom:302.813333pt;}
.y5e{bottom:307.613333pt;}
.y145{bottom:308.573333pt;}
.y115{bottom:309.213333pt;}
.y195{bottom:309.853333pt;}
.y12f{bottom:310.813333pt;}
.y182{bottom:311.453333pt;}
.y16{bottom:314.013333pt;}
.y87{bottom:319.133333pt;}
.yf2{bottom:319.773333pt;}
.ybe{bottom:321.693333pt;}
.y5d{bottom:326.493333pt;}
.y144{bottom:327.133333pt;}
.y114{bottom:327.773333pt;}
.y1b7{bottom:328.093333pt;}
.y12e{bottom:329.693333pt;}
.y181{bottom:330.333333pt;}
.y86{bottom:338.013333pt;}
.yf1{bottom:338.653333pt;}
.ybd{bottom:340.573333pt;}
.y194{bottom:343.773333pt;}
.y5c{bottom:345.373333pt;}
.y143{bottom:346.013333pt;}
.y113{bottom:346.653333pt;}
.y15{bottom:347.933333pt;}
.y12d{bottom:348.573333pt;}
.y180{bottom:349.213333pt;}
.yd0{bottom:349.853333pt;}
.y85{bottom:356.893333pt;}
.yf0{bottom:357.213333pt;}
.ybc{bottom:359.453333pt;}
.y1b6{bottom:362.013333pt;}
.y5b{bottom:364.253333pt;}
.y142{bottom:364.893333pt;}
.y111{bottom:365.533333pt;}
.y12c{bottom:367.453333pt;}
.y17f{bottom:367.773333pt;}
.y112{bottom:368.733333pt;}
.y84{bottom:375.453333pt;}
.yef{bottom:376.093333pt;}
.y193{bottom:377.693333pt;}
.ybb{bottom:378.013333pt;}
.y14{bottom:381.853333pt;}
.y5a{bottom:382.813333pt;}
.y141{bottom:383.773333pt;}
.y110{bottom:384.413333pt;}
.y12b{bottom:386.013333pt;}
.y17e{bottom:386.653333pt;}
.y27{bottom:390.173333pt;}
.y83{bottom:394.333333pt;}
.yee{bottom:394.973333pt;}
.y1b5{bottom:395.933333pt;}
.yba{bottom:396.893333pt;}
.y59{bottom:401.693333pt;}
.y140{bottom:402.333333pt;}
.y10f{bottom:402.973333pt;}
.y12a{bottom:404.893333pt;}
.y17d{bottom:405.533333pt;}
.y192{bottom:411.653333pt;}
.y82{bottom:413.253333pt;}
.yed{bottom:413.893333pt;}
.yb9{bottom:415.813333pt;}
.y13{bottom:416.133333pt;}
.y58{bottom:420.613333pt;}
.y129{bottom:423.813333pt;}
.y17c{bottom:424.453333pt;}
.y15a{bottom:429.253333pt;}
.y1b4{bottom:430.213333pt;}
.y80{bottom:432.133333pt;}
.yec{bottom:432.453333pt;}
.yb8{bottom:434.693333pt;}
.y81{bottom:435.333333pt;}
.y57{bottom:439.493333pt;}
.y17b{bottom:443.013333pt;}
.y191{bottom:445.893333pt;}
.y159{bottom:447.813333pt;}
.y12{bottom:450.053333pt;}
.yeb{bottom:451.333333pt;}
.yb7{bottom:453.253333pt;}
.y7f{bottom:455.493333pt;}
.y128{bottom:455.813333pt;}
.y56{bottom:458.053333pt;}
.y1b3{bottom:464.133333pt;}
.y158{bottom:466.693333pt;}
.y10e{bottom:467.333333pt;}
.yb6{bottom:472.133333pt;}
.y17a{bottom:475.333333pt;}
.y55{bottom:476.933333pt;}
.y127{bottom:479.493333pt;}
.y190{bottom:479.813333pt;}
.yea{bottom:483.653333pt;}
.y11{bottom:483.973333pt;}
.y157{bottom:485.573333pt;}
.yb5{bottom:491.013333pt;}
.y54{bottom:495.813333pt;}
.y1b2{bottom:498.053333pt;}
.y179{bottom:498.693333pt;}
.y10d{bottom:499.653333pt;}
.ye9{bottom:502.213333pt;}
.y156{bottom:504.453333pt;}
.yb4{bottom:509.893333pt;}
.y18f{bottom:513.733333pt;}
.y53{bottom:514.693333pt;}
.y10{bottom:518.213333pt;}
.ye8{bottom:521.120000pt;}
.y154{bottom:523.040000pt;}
.y155{bottom:526.240000pt;}
.yb3{bottom:528.480000pt;}
.y10c{bottom:531.680000pt;}
.y1b1{bottom:532.000000pt;}
.y52{bottom:533.280000pt;}
.y7e{bottom:536.800000pt;}
.y3c{bottom:541.600000pt;}
.y126{bottom:541.920000pt;}
.yb2{bottom:547.360000pt;}
.y18e{bottom:548.000000pt;}
.yf{bottom:552.160000pt;}
.ye7{bottom:553.440000pt;}
.y7d{bottom:555.680000pt;}
.y125{bottom:560.800000pt;}
.y178{bottom:561.440000pt;}
.y10b{bottom:563.680000pt;}
.yb1{bottom:566.240000pt;}
.y14d{bottom:568.800000pt;}
.y51{bottom:571.040000pt;}
.ye6{bottom:572.000000pt;}
.y7c{bottom:574.560000pt;}
.y97{bottom:576.480000pt;}
.y3b{bottom:576.800000pt;}
.y124{bottom:579.680000pt;}
.y177{bottom:580.000000pt;}
.y18d{bottom:581.920000pt;}
.ye{bottom:586.080000pt;}
.y50{bottom:589.920000pt;}
.ye5{bottom:590.880000pt;}
.y153{bottom:592.800000pt;}
.y7b{bottom:593.440000pt;}
.y10a{bottom:596.000000pt;}
.yb0{bottom:598.240000pt;}
.y176{bottom:598.880000pt;}
.y1b0{bottom:600.160000pt;}
.y4f{bottom:608.480000pt;}
.ye4{bottom:609.760000pt;}
.y164{bottom:610.400000pt;}
.y152{bottom:611.680000pt;}
.y7a{bottom:612.000000pt;}
.y18c{bottom:615.840000pt;}
.yae{bottom:617.120000pt;}
.y175{bottom:617.760000pt;}
.yd{bottom:620.000000pt;}
.yaf{bottom:620.320000pt;}
.y4e{bottom:627.360000pt;}
.y109{bottom:628.000000pt;}
.y123{bottom:630.586667pt;}
.y79{bottom:630.906667pt;}
.y1af{bottom:634.106667pt;}
.yad{bottom:636.026667pt;}
.y174{bottom:636.666667pt;}
.y3a{bottom:639.866667pt;}
.ye3{bottom:641.786667pt;}
.y4d{bottom:646.266667pt;}
.y122{bottom:649.466667pt;}
.y78{bottom:649.786667pt;}
.y139{bottom:652.986667pt;}
.yc{bottom:654.266667pt;}
.yac{bottom:654.906667pt;}
.y173{bottom:655.226667pt;}
.y108{bottom:660.346667pt;}
.ye2{bottom:660.666667pt;}
.y4c{bottom:665.146667pt;}
.y39{bottom:667.066667pt;}
.y121{bottom:668.026667pt;}
.y1ae{bottom:668.346667pt;}
.y77{bottom:668.666667pt;}
.yab{bottom:673.466667pt;}
.y172{bottom:674.106667pt;}
.ye1{bottom:679.546667pt;}
.y4b{bottom:683.706667pt;}
.y120{bottom:686.906667pt;}
.y76{bottom:687.226667pt;}
.yb{bottom:688.186667pt;}
.y107{bottom:692.346667pt;}
.y38{bottom:694.586667pt;}
.ye0{bottom:698.106667pt;}
.y1ad{bottom:702.266667pt;}
.y4a{bottom:702.586667pt;}
.yaa{bottom:705.786667pt;}
.y75{bottom:706.106667pt;}
.y171{bottom:706.426667pt;}
.y49{bottom:721.466667pt;}
.y37{bottom:721.786667pt;}
.ya{bottom:722.106667pt;}
.ya9{bottom:724.666667pt;}
.y73{bottom:724.986667pt;}
.y74{bottom:728.186667pt;}
.ydf{bottom:730.426667pt;}
.y1ac{bottom:736.186667pt;}
.y48{bottom:740.346667pt;}
.ya8{bottom:743.266667pt;}
.y72{bottom:743.906667pt;}
.y36{bottom:749.346667pt;}
.yfb{bottom:749.986667pt;}
.y9{bottom:756.386667pt;}
.y106{bottom:756.706667pt;}
.y1a0{bottom:757.986667pt;}
.y47{bottom:758.946667pt;}
.ya7{bottom:762.146667pt;}
.y71{bottom:762.466667pt;}
.y170{bottom:762.786667pt;}
.yde{bottom:767.906667pt;}
.y1ab{bottom:770.146667pt;}
.y105{bottom:775.586667pt;}
.y35{bottom:776.546667pt;}
.y46{bottom:777.826667pt;}
.ya6{bottom:781.026667pt;}
.y16f{bottom:781.666667pt;}
.yc8{bottom:786.466667pt;}
.ydd{bottom:786.786667pt;}
.y8{bottom:790.306667pt;}
.y19f{bottom:791.586667pt;}
.y104{bottom:794.146667pt;}
.y70{bottom:794.786667pt;}
.y45{bottom:796.706667pt;}
.ya5{bottom:799.906667pt;}
.y16e{bottom:800.226667pt;}
.y34{bottom:804.066667pt;}
.y1aa{bottom:804.386667pt;}
.ydc{bottom:805.666667pt;}
.y103{bottom:813.026667pt;}
.y6f{bottom:813.346667pt;}
.y44{bottom:815.586667pt;}
.y16d{bottom:819.106667pt;}
.y7{bottom:824.226667pt;}
.ydb{bottom:824.546667pt;}
.y33{bottom:831.266667pt;}
.ya4{bottom:831.906667pt;}
.y6e{bottom:832.226667pt;}
.y43{bottom:834.146667pt;}
.y16c{bottom:837.986667pt;}
.y1a9{bottom:838.306667pt;}
.yda{bottom:843.106667pt;}
.ya3{bottom:850.813333pt;}
.y6d{bottom:851.133333pt;}
.y42{bottom:853.053333pt;}
.y102{bottom:854.013333pt;}
.y16a{bottom:856.893333pt;}
.y6{bottom:858.173333pt;}
.y32{bottom:858.493333pt;}
.y16b{bottom:860.093333pt;}
.yd9{bottom:862.013333pt;}
.ya2{bottom:869.373333pt;}
.y6c{bottom:870.013333pt;}
.y41{bottom:871.933333pt;}
.y1a8{bottom:872.253333pt;}
.y151{bottom:882.813333pt;}
.y31{bottom:886.013333pt;}
.ya1{bottom:888.253333pt;}
.y6b{bottom:888.573333pt;}
.y169{bottom:889.533333pt;}
.y40{bottom:890.813333pt;}
.y5{bottom:892.413333pt;}
.yd8{bottom:894.333333pt;}
.y101{bottom:901.693333pt;}
.y150{bottom:904.893333pt;}
.y1a7{bottom:906.493333pt;}
.ya0{bottom:907.133333pt;}
.y6a{bottom:907.453333pt;}
.y3f{bottom:909.373333pt;}
.y30{bottom:911.933333pt;}
.yd6{bottom:912.893333pt;}
.y168{bottom:914.173333pt;}
.yd7{bottom:916.093333pt;}
.y100{bottom:920.573333pt;}
.y9f{bottom:926.013333pt;}
.y4{bottom:926.333333pt;}
.y3e{bottom:928.253333pt;}
.yd5{bottom:931.773333pt;}
.yff{bottom:939.133333pt;}
.y1a6{bottom:940.413333pt;}
.y13f{bottom:944.573333pt;}
.y69{bottom:945.213333pt;}
.y9e{bottom:958.013333pt;}
.y3{bottom:960.253333pt;}
.y68{bottom:963.813333pt;}
.y1a5{bottom:974.373333pt;}
.y9d{bottom:976.933333pt;}
.y2f{bottom:982.373333pt;}
.y3d{bottom:983.973333pt;}
.y67{bottom:986.533333pt;}
.y2{bottom:994.533333pt;}
.y9c{bottom:995.813333pt;}
.yfe{bottom:999.013333pt;}
.y1a4{bottom:1008.293333pt;}
.y1a3{bottom:1042.533333pt;}
.y1{bottom:1060.453333pt;}
.y2c{bottom:1063.013333pt;}
.y1a2{bottom:1076.480000pt;}
.y1a1{bottom:1110.400000pt;}
.h9{height:18.240000pt;}
.h15{height:18.287500pt;}
.h13{height:25.987500pt;}
.h16{height:27.912500pt;}
.h7{height:29.440000pt;}
.h6{height:29.837500pt;}
.h1a{height:30.450000pt;}
.h17{height:32.096797pt;}
.hc{height:36.480000pt;}
.h1c{height:40.320000pt;}
.hb{height:40.425000pt;}
.h19{height:44.160000pt;}
.h2{height:44.275000pt;}
.h22{height:44.371250pt;}
.he{height:48.125000pt;}
.h5{height:48.992000pt;}
.ha{height:52.192000pt;}
.h11{height:55.256809pt;}
.h8{height:62.854375pt;}
.h14{height:72.187500pt;}
.h4{height:79.680000pt;}
.h12{height:96.750000pt;}
.h3{height:105.312000pt;}
.hf{height:107.070000pt;}
.h10{height:109.197979pt;}
.hd{height:118.680000pt;}
.h1e{height:126.112000pt;}
.h21{height:146.626667pt;}
.h18{height:146.906667pt;}
.h1d{height:158.106667pt;}
.h20{height:188.226667pt;}
.h1f{height:208.706667pt;}
.h1b{height:214.466667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:265.053333pt;}
.wa{width:266.333333pt;}
.w9{width:268.573333pt;}
.wd{width:276.253333pt;}
.wc{width:279.813333pt;}
.wb{width:280.093333pt;}
.w6{width:331.973333pt;}
.w4{width:551.586667pt;}
.w5{width:585.506667pt;}
.w3{width:607.613333pt;}
.w7{width:620.093333pt;}
.wf{width:789.440000pt;}
.w1{width:793.333333pt;}
.w8{width:793.599976pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x34{left:4.160000pt;}
.x35{left:9.280000pt;}
.x36{left:13.439988pt;}
.x9{left:23.680000pt;}
.x2c{left:29.440000pt;}
.xa{left:33.280000pt;}
.x7{left:37.120000pt;}
.x1f{left:43.226667pt;}
.xf{left:79.392000pt;}
.x8{left:88.986667pt;}
.x3{left:91.872000pt;}
.x1{left:94.431988pt;}
.x1c{left:97.951988pt;}
.x31{left:101.471988pt;}
.xc{left:102.749333pt;}
.x20{left:108.831988pt;}
.xb{left:113.984000pt;}
.x13{left:118.463988pt;}
.x14{left:142.466655pt;}
.x6{left:148.226667pt;}
.x2{left:151.746655pt;}
.xe{left:220.253333pt;}
.x1d{left:252.253322pt;}
.x4{left:265.728000pt;}
.x5{left:271.168000pt;}
.x1b{left:286.533322pt;}
.x2a{left:291.973322pt;}
.x2b{left:309.253322pt;}
.x28{left:323.653310pt;}
.x29{left:328.453322pt;}
.x11{left:346.074667pt;}
.x23{left:353.119976pt;}
.x24{left:357.919988pt;}
.xd{left:367.520000pt;}
.x2d{left:381.919988pt;}
.x12{left:385.119988pt;}
.x30{left:413.279976pt;}
.x2e{left:414.559976pt;}
.x2f{left:419.386655pt;}
.x10{left:420.354667pt;}
.x15{left:423.546643pt;}
.x16{left:428.346655pt;}
.x25{left:497.506667pt;}
.x22{left:502.306667pt;}
.x26{left:504.546643pt;}
.x27{left:509.346655pt;}
.x17{left:512.546643pt;}
.x18{left:517.346655pt;}
.x1e{left:525.026667pt;}
.x21{left:527.266667pt;}
.x33{left:528.546667pt;}
.x19{left:580.413310pt;}
.x1a{left:585.213322pt;}
.x32{left:595.133322pt;}
}




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