
    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_cfc2f330deb630ee8da6bc1a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_f26c5ee70605fd1d76b56bd4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_508bdd80c89126913567789a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938497;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_4d624e2d8c29e6ba4c232449.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_76c5e46371363d14d98b2e1f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.909668;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_3b95506f0e7ff2c9478fc6ca.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.098633;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_a80bbf99b9e3756eec93bb6d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.680664;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_eacfe4cab8debc383c8b7cb7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.722656;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_e930f65e245eaf31347ba424.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.926270;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_1ea285ac96782655e60c1a58.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.988281;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.179889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179889,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.194976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194976,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.196907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196907,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.197762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197762,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.198099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198099,0.000000,0.000000,0.250000,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(0.256861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256861,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.286329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286329,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.289164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289164,0.000000,0.000000,0.250000,0,0);}
.v7{vertical-align:-63.438000px;}
.v2{vertical-align:-18.708000px;}
.v1{vertical-align:-13.602000px;}
.v3{vertical-align:-5.952000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:35.796000px;}
.v5{vertical-align:77.388000px;}
.v4{vertical-align:140.994000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.018000px;}
.ls9{letter-spacing:0.197964px;}
.ls3{letter-spacing:0.788184px;}
.ls1c{letter-spacing:1.426323px;}
.ls20{letter-spacing:1.461313px;}
.lsf{letter-spacing:1.572906px;}
.ls1d{letter-spacing:1.680504px;}
.ls14{letter-spacing:1.688621px;}
.ls10{letter-spacing:1.834843px;}
.ls5{letter-spacing:3.794316px;}
.ls22{letter-spacing:4.827911px;}
.ls16{letter-spacing:5.099039px;}
.ls19{letter-spacing:7.247884px;}
.lsc{letter-spacing:7.347566px;}
.ls6{letter-spacing:7.409118px;}
.ls17{letter-spacing:7.507252px;}
.lsa{letter-spacing:7.609503px;}
.ls15{letter-spacing:7.614741px;}
.ls1e{letter-spacing:7.766621px;}
.ls11{letter-spacing:7.871440px;}
.ls1b{letter-spacing:8.194509px;}
.lse{letter-spacing:8.509456px;}
.ls12{letter-spacing:8.514695px;}
.ls1f{letter-spacing:8.544725px;}
.ls13{letter-spacing:8.662489px;}
.ls18{letter-spacing:9.058274px;}
.ls21{letter-spacing:9.063461px;}
.lsb{letter-spacing:9.186362px;}
.ls4{letter-spacing:9.752115px;}
.ls1a{letter-spacing:12.763410px;}
.lsd{letter-spacing:13.028897px;}
.ls7{letter-spacing:85.686000px;}
.ls2{letter-spacing:675.327984px;}
.ls1{letter-spacing:685.365984px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12{word-spacing:-39.724776px;}
.ws8{word-spacing:-33.261606px;}
.ws6{word-spacing:-29.916000px;}
.wsa{word-spacing:-27.000000px;}
.ws0{word-spacing:-26.570394px;}
.ws1b{word-spacing:-23.272986px;}
.ws2{word-spacing:-19.929042px;}
.ws7{word-spacing:-18.278676px;}
.ws3{word-spacing:-0.875760px;}
.ws4{word-spacing:-0.087576px;}
.ws9{word-spacing:-0.062988px;}
.ws1a{word-spacing:-0.062394px;}
.ws1{word-spacing:0.000000px;}
.ws5{word-spacing:11.950231px;}
.ws10{word-spacing:55.398000px;}
.ws13{word-spacing:150.456000px;}
.ws19{word-spacing:199.746000px;}
.ws16{word-spacing:228.858000px;}
.wse{word-spacing:247.362000px;}
.wsf{word-spacing:263.484000px;}
.ws14{word-spacing:270.228000px;}
.wsb{word-spacing:294.504000px;}
.ws18{word-spacing:318.726000px;}
.ws17{word-spacing:356.280000px;}
.wsd{word-spacing:384.378000px;}
.wsc{word-spacing:421.932000px;}
.ws11{word-spacing:442.438824px;}
.ws15{word-spacing:695.864748px;}
.ws1c{word-spacing:1281.685986px;}
._3{margin-left:-3.590616px;}
._7{margin-left:-2.456532px;}
._0{margin-left:-1.008216px;}
._2{width:1.242744px;}
._1{width:2.330010px;}
._5{width:3.779568px;}
._6{width:5.905140px;}
._4{width:9.788574px;}
._9{width:41.297184px;}
._c{width:106.890000px;}
._17{width:114.942000px;}
._18{width:117.426000px;}
._13{width:119.640000px;}
._12{width:171.408000px;}
._b{width:180.582000px;}
._16{width:181.782000px;}
._11{width:187.542000px;}
._a{width:229.404000px;}
._1c{width:345.294000px;}
._14{width:394.500000px;}
._15{width:529.716000px;}
._d{width:546.726000px;}
._19{width:557.262000px;}
._10{width:560.226000px;}
._f{width:573.960000px;}
._1b{width:584.502000px;}
._e{width:627.852000px;}
._1a{width:638.400000px;}
._8{width:1043.465526px;}
.fc9{color:rgb(255,128,0);}
.fc8{color:transparent;}
.fc6{color:rgb(255,64,0);}
.fc5{color:rgb(42,96,153);}
.fc4{color:rgb(0,169,51);}
.fc7{color:rgb(128,0,128);}
.fc3{color:rgb(23,49,236);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(152,5,40);}
.fs13{font-size:41.424000px;}
.fsd{font-size:41.988000px;}
.fs3{font-size:54.084000px;}
.fs10{font-size:60.036000px;}
.fs11{font-size:62.394000px;}
.fsf{font-size:62.472000px;}
.fsb{font-size:62.988000px;}
.fs12{font-size:63.690000px;}
.fsc{font-size:64.296000px;}
.fs6{font-size:65.988000px;}
.fs5{font-size:71.946000px;}
.fs14{font-size:77.412000px;}
.fse{font-size:78.468000px;}
.fs15{font-size:84.018000px;}
.fs8{font-size:87.576000px;}
.fs9{font-size:89.484000px;}
.fs2{font-size:95.922000px;}
.fsa{font-size:108.000000px;}
.fs1{font-size:120.078000px;}
.fs0{font-size:168.036000px;}
.fs4{font-size:179.946000px;}
.fs7{font-size:324.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.yee{bottom:5.364000px;}
.y76{bottom:5.431500px;}
.yd1{bottom:5.449500px;}
.y21{bottom:5.848500px;}
.y22{bottom:6.432000px;}
.yed{bottom:7.953000px;}
.y75{bottom:8.056500px;}
.yd0{bottom:8.074500px;}
.yef{bottom:8.341500px;}
.y77{bottom:8.449500px;}
.yd2{bottom:8.467500px;}
.yc{bottom:14.584500px;}
.yeb{bottom:29.182500px;}
.y73{bottom:29.577000px;}
.yce{bottom:29.593500px;}
.yea{bottom:31.771500px;}
.yec{bottom:32.160000px;}
.y72{bottom:32.200500px;}
.ycd{bottom:32.218500px;}
.y74{bottom:32.595000px;}
.ycf{bottom:32.611500px;}
.y20{bottom:32.736000px;}
.yb5{bottom:41.670000px;}
.ye9{bottom:53.001000px;}
.y71{bottom:53.721000px;}
.ycc{bottom:53.739000px;}
.yfd{bottom:53.788500px;}
.ye7{bottom:55.590000px;}
.y38{bottom:55.786500px;}
.ye8{bottom:55.978500px;}
.y6f{bottom:56.346000px;}
.yca{bottom:56.362500px;}
.y70{bottom:56.739000px;}
.ycb{bottom:56.757000px;}
.y10c{bottom:59.571000px;}
.y114{bottom:61.441500px;}
.y113{bottom:61.611000px;}
.yb4{bottom:65.905500px;}
.y10a{bottom:68.287500px;}
.y82{bottom:68.584500px;}
.y68{bottom:70.413000px;}
.yfc{bottom:77.514000px;}
.ye5{bottom:78.243000px;}
.ye6{bottom:78.631500px;}
.y6d{bottom:79.309500px;}
.yc8{bottom:79.326000px;}
.y116{bottom:79.428000px;}
.y6e{bottom:79.702500px;}
.yc9{bottom:79.720500px;}
.y99{bottom:83.382000px;}
.y81{bottom:87.463500px;}
.y5f{bottom:89.716500px;}
.yb3{bottom:90.142500px;}
.yb{bottom:91.290000px;}
.y67{bottom:92.013000px;}
.y115{bottom:92.905500px;}
.y109{bottom:93.501000px;}
.y37{bottom:94.437000px;}
.yfb{bottom:101.239500px;}
.y3d{bottom:103.833000px;}
.y80{bottom:106.342500px;}
.yb2{bottom:114.378000px;}
.y5b{bottom:115.611000px;}
.ya{bottom:120.076500px;}
.yfa{bottom:124.966500px;}
.y7f{bottom:125.221500px;}
.y5c{bottom:127.219500px;}
.ya9{bottom:137.722500px;}
.yb1{bottom:138.615000px;}
.y33{bottom:142.782000px;}
.y7e{bottom:144.099000px;}
.yf9{bottom:148.692000px;}
.y9{bottom:148.861500px;}
.y40{bottom:151.072500px;}
.yff{bottom:155.538000px;}
.y59{bottom:158.386500px;}
.yb0{bottom:160.215000px;}
.y4e{bottom:160.725000px;}
.y7d{bottom:162.978000px;}
.y2c{bottom:165.274500px;}
.yda{bottom:168.081000px;}
.y39{bottom:169.059000px;}
.yf8{bottom:172.417500px;}
.y83{bottom:176.116500px;}
.yfe{bottom:177.138000px;}
.y7c{bottom:181.857000px;}
.yab{bottom:182.325000px;}
.y8{bottom:188.533500px;}
.y58{bottom:190.786500px;}
.yf0{bottom:192.699000px;}
.y4d{bottom:193.125000px;}
.yf7{bottom:196.144500px;}
.y3f{bottom:196.272000px;}
.y5a{bottom:197.760000px;}
.y7b{bottom:200.736000px;}
.y3b{bottom:203.883000px;}
.yaa{bottom:203.925000px;}
.yd9{bottom:205.540500px;}
.y9f{bottom:212.769000px;}
.y1b{bottom:216.639000px;}
.y7{bottom:217.318500px;}
.y7a{bottom:219.615000px;}
.yf6{bottom:219.870000px;}
.y24{bottom:219.955500px;}
.y60{bottom:221.358000px;}
.y78{bottom:222.123000px;}
.y57{bottom:223.186500px;}
.y1a{bottom:223.611000px;}
.yd8{bottom:227.140500px;}
.y3c{bottom:229.011000px;}
.y89{bottom:230.074500px;}
.ya2{bottom:234.283500px;}
.ya8{bottom:237.303000px;}
.y79{bottom:238.494000px;}
.y36{bottom:239.938500px;}
.y31{bottom:241.512000px;}
.y2e{bottom:241.555500px;}
.yf5{bottom:243.595500px;}
.y4c{bottom:243.894000px;}
.yd7{bottom:248.740500px;}
.y23{bottom:251.377500px;}
.y56{bottom:255.586500px;}
.y6{bottom:256.989000px;}
.ya1{bottom:262.092000px;}
.yf4{bottom:267.322500px;}
.yd6{bottom:270.340500px;}
.y9e{bottom:270.766500px;}
.y4b{bottom:276.294000px;}
.y108{bottom:278.716500px;}
.y88{bottom:280.162500px;}
.yc6{bottom:288.666000px;}
.ya0{bottom:289.899000px;}
.yf3{bottom:291.048000px;}
.ydc{bottom:300.742500px;}
.yf{bottom:300.828000px;}
.y6b{bottom:301.338000px;}
.y107{bottom:301.635000px;}
.y92{bottom:304.144500px;}
.y55{bottom:306.355500px;}
.y4a{bottom:308.694000px;}
.yc5{bottom:311.584500px;}
.y17{bottom:311.628000px;}
.ybd{bottom:315.666000px;}
.y3e{bottom:319.239000px;}
.y1e{bottom:319.663500px;}
.ydb{bottom:320.556000px;}
.ye{bottom:322.428000px;}
.y106{bottom:324.553500px;}
.yf2{bottom:326.679000px;}
.y9d{bottom:327.274500px;}
.yc4{bottom:334.503000px;}
.y5{bottom:336.331500px;}
.y87{bottom:336.672000px;}
.y54{bottom:338.755500px;}
.y6c{bottom:339.391500px;}
.y91{bottom:342.793500px;}
.yaf{bottom:344.239500px;}
.y105{bottom:347.472000px;}
.yf1{bottom:348.279000px;}
.ya7{bottom:348.874500px;}
.y112{bottom:351.255000px;}
.yc3{bottom:357.421500px;}
.ybc{bottom:358.228500px;}
.y32{bottom:358.866000px;}
.y2f{bottom:358.909500px;}
.y6a{bottom:359.334000px;}
.y90{bottom:362.140500px;}
.y3a{bottom:367.626000px;}
.y29{bottom:368.817000px;}
.y1f{bottom:368.995500px;}
.y104{bottom:370.389000px;}
.y4{bottom:370.687500px;}
.yae{bottom:372.048000px;}
.yc7{bottom:372.769500px;}
.y1d{bottom:373.663500px;}
.y111{bottom:376.470000px;}
.y9c{bottom:377.362500px;}
.yc2{bottom:380.338500px;}
.ye1{bottom:381.274500px;}
.y86{bottom:385.272000px;}
.y11{bottom:385.738500px;}
.ye3{bottom:386.760000px;}
.y35{bottom:387.822000px;}
.y53{bottom:389.523000px;}
.y98{bottom:391.224000px;}
.ye4{bottom:391.435500px;}
.ybb{bottom:392.116500px;}
.y103{bottom:393.307500px;}
.y34{bottom:393.690000px;}
.y19{bottom:395.178000px;}
.y18{bottom:396.199500px;}
.yad{bottom:399.855000px;}
.y110{bottom:401.683500px;}
.yc1{bottom:403.257000px;}
.y10{bottom:407.338500px;}
.y44{bottom:408.061500px;}
.y49{bottom:408.105000px;}
.y28{bottom:412.866000px;}
.y69{bottom:413.079000px;}
.y102{bottom:416.226000px;}
.y3{bottom:416.778000px;}
.y30{bottom:417.586500px;}
.y2d{bottom:417.628500px;}
.ye0{bottom:419.925000px;}
.y8f{bottom:420.094500px;}
.y52{bottom:421.923000px;}
.y97{bottom:425.920500px;}
.yc0{bottom:426.175500px;}
.y1c{bottom:427.663500px;}
.y10f{bottom:429.534000px;}
.yba{bottom:433.149000px;}
.y9b{bottom:433.872000px;}
.y85{bottom:435.360000px;}
.y94{bottom:435.912000px;}
.y101{bottom:439.144500px;}
.y43{bottom:440.461500px;}
.y48{bottom:440.505000px;}
.ye2{bottom:443.268000px;}
.yde{bottom:448.795500px;}
.y8c{bottom:448.881000px;}
.ybf{bottom:449.094000px;}
.yac{bottom:450.411000px;}
.y10e{bottom:454.749000px;}
.y27{bottom:456.916500px;}
.ydf{bottom:458.661000px;}
.y8e{bottom:458.745000px;}
.y100{bottom:462.061500px;}
.yb9{bottom:465.549000px;}
.y2{bottom:467.206500px;}
.ydd{bottom:468.567000px;}
.y8b{bottom:468.652500px;}
.yb8{bottom:470.098500px;}
.y13{bottom:470.694000px;}
.ybe{bottom:472.011000px;}
.y51{bottom:472.692000px;}
.y96{bottom:483.916500px;}
.y9a{bottom:483.960000px;}
.y93{bottom:486.681000px;}
.y66{bottom:488.169000px;}
.y42{bottom:491.230500px;}
.y47{bottom:491.272500px;}
.y84{bottom:491.868000px;}
.y12{bottom:492.294000px;}
.y8d{bottom:497.439000px;}
.y26{bottom:499.437000px;}
.ya4{bottom:501.988500px;}
.yd3{bottom:502.030500px;}
.y5e{bottom:505.050000px;}
.y50{bottom:505.092000px;}
.y63{bottom:505.134000px;}
.yd5{bottom:505.560000px;}
.ya6{bottom:505.602000px;}
.yb7{bottom:508.791000px;}
.y65{bottom:515.977500px;}
.y2b{bottom:520.228500px;}
.ya3{bottom:523.588500px;}
.y41{bottom:523.630500px;}
.y46{bottom:523.672500px;}
.yd4{bottom:527.160000px;}
.ya5{bottom:527.202000px;}
.y8a{bottom:536.088000px;}
.y5d{bottom:537.450000px;}
.y4f{bottom:537.492000px;}
.y95{bottom:541.914000px;}
.y25{bottom:541.956000px;}
.y64{bottom:543.784500px;}
.yb6{bottom:547.441500px;}
.y10d{bottom:551.182500px;}
.y10b{bottom:552.288000px;}
.y61{bottom:555.861000px;}
.y2a{bottom:556.030500px;}
.y45{bottom:556.072500px;}
.y16{bottom:557.136000px;}
.y117{bottom:558.199500px;}
.y62{bottom:563.131500px;}
.y15{bottom:576.949500px;}
.yd{bottom:614.835000px;}
.y14{bottom:651.360000px;}
.h6{height:37.552465px;}
.h1c{height:42.358758px;}
.h22{height:43.291931px;}
.h17{height:43.704076px;}
.h20{height:47.020383px;}
.h9{height:48.073289px;}
.h15{height:51.682008px;}
.hc{height:52.380104px;}
.h8{height:52.413785px;}
.hd{height:52.500000px;}
.h24{height:53.833104px;}
.h19{height:54.345604px;}
.h23{height:54.951284px;}
.h18{height:55.474137px;}
.he{height:60.764402px;}
.h26{height:61.208426px;}
.h25{height:66.790529px;}
.h1a{height:67.701639px;}
.h5{height:69.835770px;}
.h4{height:69.880676px;}
.h1d{height:74.988281px;}
.hf{height:75.559957px;}
.h10{height:77.206166px;}
.h14{height:77.308594px;}
.h11{height:78.046875px;}
.h13{height:78.629128px;}
.h12{height:78.679688px;}
.h1f{height:79.172555px;}
.h3{height:87.478699px;}
.h21{height:93.202500px;}
.h16{height:94.477500px;}
.h2{height:122.334803px;}
.hb{height:122.416852px;}
.h7{height:131.005608px;}
.h1e{height:152.376281px;}
.h1b{height:183.352758px;}
.ha{height:235.880859px;}
.h1{height:809.956500px;}
.h0{height:810.000000px;}
.w4{width:311.095500px;}
.w6{width:351.934500px;}
.w5{width:353.253000px;}
.w1{width:1440.000000px;}
.w3{width:1440.013500px;}
.w2{width:1440.099000px;}
.w0{width:1440.141732px;}
.x0{left:0.000000px;}
.x52{left:7.659000px;}
.x43{left:9.762000px;}
.x2{left:23.938500px;}
.x13{left:38.634000px;}
.x11{left:47.026500px;}
.x4e{left:54.247500px;}
.x40{left:65.895000px;}
.x44{left:74.611500px;}
.x45{left:80.473500px;}
.x10{left:96.136500px;}
.x14{left:99.837000px;}
.x59{left:101.325000px;}
.x3e{left:103.068000px;}
.x15{left:107.317500px;}
.x46{left:108.652500px;}
.x3{left:113.953500px;}
.x23{left:119.353500px;}
.x16{left:120.475500px;}
.x37{left:121.648500px;}
.x7c{left:125.353500px;}
.x17{left:126.481500px;}
.x4f{left:132.322500px;}
.x53{left:138.109500px;}
.x54{left:144.646500px;}
.x41{left:148.704000px;}
.x21{left:150.009000px;}
.x42{left:155.317500px;}
.x18{left:164.644500px;}
.x24{left:169.780500px;}
.x19{left:172.015500px;}
.x3d{left:176.541000px;}
.x47{left:180.189000px;}
.x5b{left:183.769500px;}
.x1a{left:185.337000px;}
.x48{left:186.727500px;}
.x1b{left:191.397000px;}
.x22{left:204.009000px;}
.x27{left:206.986500px;}
.x55{left:212.802000px;}
.x3b{left:215.191500px;}
.x49{left:218.664000px;}
.x4a{left:224.074500px;}
.x6e{left:237.769500px;}
.x86{left:247.762500px;}
.x1c{left:263.029500px;}
.x1d{left:270.399000px;}
.x7d{left:281.445000px;}
.x50{left:282.460500px;}
.x2f{left:283.989000px;}
.x7e{left:287.284500px;}
.x51{left:288.322500px;}
.x7a{left:294.546000px;}
.x4b{left:295.611000px;}
.x1{left:298.488000px;}
.x1e{left:300.973500px;}
.x4c{left:302.149500px;}
.x7f{left:320.299500px;}
.x56{left:321.460500px;}
.x80{left:326.887500px;}
.x57{left:328.074000px;}
.x7b{left:333.025500px;}
.x4d{left:334.236000px;}
.x81{left:336.769500px;}
.x58{left:337.992000px;}
.x82{left:342.682500px;}
.x26{left:344.580000px;}
.x88{left:353.169000px;}
.x25{left:372.855000px;}
.x38{left:397.984500px;}
.x89{left:411.463500px;}
.x36{left:426.132000px;}
.x12{left:499.860000px;}
.x2a{left:500.881500px;}
.x2d{left:504.114000px;}
.x3a{left:520.611000px;}
.x63{left:547.270500px;}
.x28{left:548.631000px;}
.x20{left:552.202500px;}
.x1f{left:562.195500px;}
.x6f{left:582.349500px;}
.x6c{left:600.718500px;}
.xe{left:603.141000px;}
.x34{left:608.244000px;}
.x2b{left:630.481500px;}
.x2e{left:633.714000px;}
.x3c{left:645.151500px;}
.x29{left:680.314500px;}
.x2c{left:683.547000px;}
.x62{left:707.442000px;}
.x83{left:713.736000px;}
.x60{left:714.969000px;}
.x5d{left:716.457000px;}
.x5c{left:720.241500px;}
.x76{left:722.367000px;}
.x75{left:726.108000px;}
.x39{left:730.446000px;}
.x71{left:735.633000px;}
.x8c{left:740.182500px;}
.x6d{left:742.435500px;}
.x35{left:787.975500px;}
.x69{left:796.224000px;}
.x8b{left:805.620000px;}
.x61{left:834.448500px;}
.x67{left:839.934000px;}
.x3f{left:842.824500px;}
.x77{left:853.158000px;}
.x5e{left:859.195500px;}
.x4{left:862.384500px;}
.x78{left:868.125000px;}
.x5f{left:874.162500px;}
.x87{left:875.523000px;}
.x85{left:883.813500px;}
.x5a{left:891.637500px;}
.xf{left:909.070500px;}
.x65{left:936.835500px;}
.x72{left:984.459000px;}
.x64{left:987.646500px;}
.x84{left:991.857000px;}
.x79{left:997.681500px;}
.x30{left:1016.943000px;}
.x70{left:1030.293000px;}
.xa{left:1036.375500px;}
.xb{left:1037.905500px;}
.x32{left:1052.319000px;}
.x9{left:1053.850500px;}
.x6{left:1057.890000px;}
.x5{left:1059.378000px;}
.x7{left:1066.393500px;}
.x8{left:1068.903000px;}
.x66{left:1090.119000px;}
.x6a{left:1142.758500px;}
.x33{left:1173.459000px;}
.x8a{left:1176.094500px;}
.x31{left:1185.321000px;}
.x6b{left:1188.297000px;}
.x68{left:1190.551500px;}
.xc{left:1238.896500px;}
.xd{left:1273.890000px;}
.x74{left:1315.134000px;}
.x73{left:1328.995500px;}
@media print{
.v7{vertical-align:-56.389333pt;}
.v2{vertical-align:-16.629333pt;}
.v1{vertical-align:-12.090667pt;}
.v3{vertical-align:-5.290667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:31.818667pt;}
.v5{vertical-align:68.789333pt;}
.v4{vertical-align:125.328000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.016000pt;}
.ls9{letter-spacing:0.175968pt;}
.ls3{letter-spacing:0.700608pt;}
.ls1c{letter-spacing:1.267843pt;}
.ls20{letter-spacing:1.298945pt;}
.lsf{letter-spacing:1.398139pt;}
.ls1d{letter-spacing:1.493781pt;}
.ls14{letter-spacing:1.500997pt;}
.ls10{letter-spacing:1.630972pt;}
.ls5{letter-spacing:3.372726pt;}
.ls22{letter-spacing:4.291477pt;}
.ls16{letter-spacing:4.532479pt;}
.ls19{letter-spacing:6.442564pt;}
.lsc{letter-spacing:6.531170pt;}
.ls6{letter-spacing:6.585882pt;}
.ls17{letter-spacing:6.673113pt;}
.lsa{letter-spacing:6.764002pt;}
.ls15{letter-spacing:6.768659pt;}
.ls1e{letter-spacing:6.903663pt;}
.ls11{letter-spacing:6.996835pt;}
.ls1b{letter-spacing:7.284008pt;}
.lse{letter-spacing:7.563961pt;}
.ls12{letter-spacing:7.568618pt;}
.ls1f{letter-spacing:7.595311pt;}
.ls13{letter-spacing:7.699990pt;}
.ls18{letter-spacing:8.051799pt;}
.ls21{letter-spacing:8.056410pt;}
.lsb{letter-spacing:8.165656pt;}
.ls4{letter-spacing:8.668546pt;}
.ls1a{letter-spacing:11.345254pt;}
.lsd{letter-spacing:11.581242pt;}
.ls7{letter-spacing:76.165333pt;}
.ls2{letter-spacing:600.291541pt;}
.ls1{letter-spacing:609.214208pt;}
.ws12{word-spacing:-35.310912pt;}
.ws8{word-spacing:-29.565872pt;}
.ws6{word-spacing:-26.592000pt;}
.wsa{word-spacing:-24.000000pt;}
.ws0{word-spacing:-23.618128pt;}
.ws1b{word-spacing:-20.687099pt;}
.ws2{word-spacing:-17.714704pt;}
.ws7{word-spacing:-16.247712pt;}
.ws3{word-spacing:-0.778453pt;}
.ws4{word-spacing:-0.077845pt;}
.ws9{word-spacing:-0.055989pt;}
.ws1a{word-spacing:-0.055461pt;}
.ws1{word-spacing:0.000000pt;}
.ws5{word-spacing:10.622427pt;}
.ws10{word-spacing:49.242667pt;}
.ws13{word-spacing:133.738667pt;}
.ws19{word-spacing:177.552000pt;}
.ws16{word-spacing:203.429333pt;}
.wse{word-spacing:219.877333pt;}
.wsf{word-spacing:234.208000pt;}
.ws14{word-spacing:240.202667pt;}
.wsb{word-spacing:261.781333pt;}
.ws18{word-spacing:283.312000pt;}
.ws17{word-spacing:316.693333pt;}
.wsd{word-spacing:341.669333pt;}
.wsc{word-spacing:375.050667pt;}
.ws11{word-spacing:393.278955pt;}
.ws15{word-spacing:618.546443pt;}
.ws1c{word-spacing:1139.276432pt;}
._3{margin-left:-3.191659pt;}
._7{margin-left:-2.183584pt;}
._0{margin-left:-0.896192pt;}
._2{width:1.104661pt;}
._1{width:2.071120pt;}
._5{width:3.359616pt;}
._6{width:5.249014pt;}
._4{width:8.700954pt;}
._9{width:36.708608pt;}
._c{width:95.013333pt;}
._17{width:102.170667pt;}
._18{width:104.378667pt;}
._13{width:106.346667pt;}
._12{width:152.362667pt;}
._b{width:160.517333pt;}
._16{width:161.584000pt;}
._11{width:166.704000pt;}
._a{width:203.914667pt;}
._1c{width:306.928000pt;}
._14{width:350.666667pt;}
._15{width:470.858667pt;}
._d{width:485.978667pt;}
._19{width:495.344000pt;}
._10{width:497.978667pt;}
._f{width:510.186667pt;}
._1b{width:519.557333pt;}
._e{width:558.090667pt;}
._1a{width:567.466667pt;}
._8{width:927.524912pt;}
.fs13{font-size:36.821333pt;}
.fsd{font-size:37.322667pt;}
.fs3{font-size:48.074667pt;}
.fs10{font-size:53.365333pt;}
.fs11{font-size:55.461333pt;}
.fsf{font-size:55.530667pt;}
.fsb{font-size:55.989333pt;}
.fs12{font-size:56.613333pt;}
.fsc{font-size:57.152000pt;}
.fs6{font-size:58.656000pt;}
.fs5{font-size:63.952000pt;}
.fs14{font-size:68.810667pt;}
.fse{font-size:69.749333pt;}
.fs15{font-size:74.682667pt;}
.fs8{font-size:77.845333pt;}
.fs9{font-size:79.541333pt;}
.fs2{font-size:85.264000pt;}
.fsa{font-size:96.000000pt;}
.fs1{font-size:106.736000pt;}
.fs0{font-size:149.365333pt;}
.fs4{font-size:159.952000pt;}
.fs7{font-size:288.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.yee{bottom:4.768000pt;}
.y76{bottom:4.828000pt;}
.yd1{bottom:4.844000pt;}
.y21{bottom:5.198667pt;}
.y22{bottom:5.717333pt;}
.yed{bottom:7.069333pt;}
.y75{bottom:7.161333pt;}
.yd0{bottom:7.177333pt;}
.yef{bottom:7.414667pt;}
.y77{bottom:7.510667pt;}
.yd2{bottom:7.526667pt;}
.yc{bottom:12.964000pt;}
.yeb{bottom:25.940000pt;}
.y73{bottom:26.290667pt;}
.yce{bottom:26.305333pt;}
.yea{bottom:28.241333pt;}
.yec{bottom:28.586667pt;}
.y72{bottom:28.622667pt;}
.ycd{bottom:28.638667pt;}
.y74{bottom:28.973333pt;}
.ycf{bottom:28.988000pt;}
.y20{bottom:29.098667pt;}
.yb5{bottom:37.040000pt;}
.ye9{bottom:47.112000pt;}
.y71{bottom:47.752000pt;}
.ycc{bottom:47.768000pt;}
.yfd{bottom:47.812000pt;}
.ye7{bottom:49.413333pt;}
.y38{bottom:49.588000pt;}
.ye8{bottom:49.758667pt;}
.y6f{bottom:50.085333pt;}
.yca{bottom:50.100000pt;}
.y70{bottom:50.434667pt;}
.ycb{bottom:50.450667pt;}
.y10c{bottom:52.952000pt;}
.y114{bottom:54.614667pt;}
.y113{bottom:54.765333pt;}
.yb4{bottom:58.582667pt;}
.y10a{bottom:60.700000pt;}
.y82{bottom:60.964000pt;}
.y68{bottom:62.589333pt;}
.yfc{bottom:68.901333pt;}
.ye5{bottom:69.549333pt;}
.ye6{bottom:69.894667pt;}
.y6d{bottom:70.497333pt;}
.yc8{bottom:70.512000pt;}
.y116{bottom:70.602667pt;}
.y6e{bottom:70.846667pt;}
.yc9{bottom:70.862667pt;}
.y99{bottom:74.117333pt;}
.y81{bottom:77.745333pt;}
.y5f{bottom:79.748000pt;}
.yb3{bottom:80.126667pt;}
.yb{bottom:81.146667pt;}
.y67{bottom:81.789333pt;}
.y115{bottom:82.582667pt;}
.y109{bottom:83.112000pt;}
.y37{bottom:83.944000pt;}
.yfb{bottom:89.990667pt;}
.y3d{bottom:92.296000pt;}
.y80{bottom:94.526667pt;}
.yb2{bottom:101.669333pt;}
.y5b{bottom:102.765333pt;}
.ya{bottom:106.734667pt;}
.yfa{bottom:111.081333pt;}
.y7f{bottom:111.308000pt;}
.y5c{bottom:113.084000pt;}
.ya9{bottom:122.420000pt;}
.yb1{bottom:123.213333pt;}
.y33{bottom:126.917333pt;}
.y7e{bottom:128.088000pt;}
.yf9{bottom:132.170667pt;}
.y9{bottom:132.321333pt;}
.y40{bottom:134.286667pt;}
.yff{bottom:138.256000pt;}
.y59{bottom:140.788000pt;}
.yb0{bottom:142.413333pt;}
.y4e{bottom:142.866667pt;}
.y7d{bottom:144.869333pt;}
.y2c{bottom:146.910667pt;}
.yda{bottom:149.405333pt;}
.y39{bottom:150.274667pt;}
.yf8{bottom:153.260000pt;}
.y83{bottom:156.548000pt;}
.yfe{bottom:157.456000pt;}
.y7c{bottom:161.650667pt;}
.yab{bottom:162.066667pt;}
.y8{bottom:167.585333pt;}
.y58{bottom:169.588000pt;}
.yf0{bottom:171.288000pt;}
.y4d{bottom:171.666667pt;}
.yf7{bottom:174.350667pt;}
.y3f{bottom:174.464000pt;}
.y5a{bottom:175.786667pt;}
.y7b{bottom:178.432000pt;}
.y3b{bottom:181.229333pt;}
.yaa{bottom:181.266667pt;}
.yd9{bottom:182.702667pt;}
.y9f{bottom:189.128000pt;}
.y1b{bottom:192.568000pt;}
.y7{bottom:193.172000pt;}
.y7a{bottom:195.213333pt;}
.yf6{bottom:195.440000pt;}
.y24{bottom:195.516000pt;}
.y60{bottom:196.762667pt;}
.y78{bottom:197.442667pt;}
.y57{bottom:198.388000pt;}
.y1a{bottom:198.765333pt;}
.yd8{bottom:201.902667pt;}
.y3c{bottom:203.565333pt;}
.y89{bottom:204.510667pt;}
.ya2{bottom:208.252000pt;}
.ya8{bottom:210.936000pt;}
.y79{bottom:211.994667pt;}
.y36{bottom:213.278667pt;}
.y31{bottom:214.677333pt;}
.y2e{bottom:214.716000pt;}
.yf5{bottom:216.529333pt;}
.y4c{bottom:216.794667pt;}
.yd7{bottom:221.102667pt;}
.y23{bottom:223.446667pt;}
.y56{bottom:227.188000pt;}
.y6{bottom:228.434667pt;}
.ya1{bottom:232.970667pt;}
.yf4{bottom:237.620000pt;}
.yd6{bottom:240.302667pt;}
.y9e{bottom:240.681333pt;}
.y4b{bottom:245.594667pt;}
.y108{bottom:247.748000pt;}
.y88{bottom:249.033333pt;}
.yc6{bottom:256.592000pt;}
.ya0{bottom:257.688000pt;}
.yf3{bottom:258.709333pt;}
.ydc{bottom:267.326667pt;}
.yf{bottom:267.402667pt;}
.y6b{bottom:267.856000pt;}
.y107{bottom:268.120000pt;}
.y92{bottom:270.350667pt;}
.y55{bottom:272.316000pt;}
.y4a{bottom:274.394667pt;}
.yc5{bottom:276.964000pt;}
.y17{bottom:277.002667pt;}
.ybd{bottom:280.592000pt;}
.y3e{bottom:283.768000pt;}
.y1e{bottom:284.145333pt;}
.ydb{bottom:284.938667pt;}
.ye{bottom:286.602667pt;}
.y106{bottom:288.492000pt;}
.yf2{bottom:290.381333pt;}
.y9d{bottom:290.910667pt;}
.yc4{bottom:297.336000pt;}
.y5{bottom:298.961333pt;}
.y87{bottom:299.264000pt;}
.y54{bottom:301.116000pt;}
.y6c{bottom:301.681333pt;}
.y91{bottom:304.705333pt;}
.yaf{bottom:305.990667pt;}
.y105{bottom:308.864000pt;}
.yf1{bottom:309.581333pt;}
.ya7{bottom:310.110667pt;}
.y112{bottom:312.226667pt;}
.yc3{bottom:317.708000pt;}
.ybc{bottom:318.425333pt;}
.y32{bottom:318.992000pt;}
.y2f{bottom:319.030667pt;}
.y6a{bottom:319.408000pt;}
.y90{bottom:321.902667pt;}
.y3a{bottom:326.778667pt;}
.y29{bottom:327.837333pt;}
.y1f{bottom:327.996000pt;}
.y104{bottom:329.234667pt;}
.y4{bottom:329.500000pt;}
.yae{bottom:330.709333pt;}
.yc7{bottom:331.350667pt;}
.y1d{bottom:332.145333pt;}
.y111{bottom:334.640000pt;}
.y9c{bottom:335.433333pt;}
.yc2{bottom:338.078667pt;}
.ye1{bottom:338.910667pt;}
.y86{bottom:342.464000pt;}
.y11{bottom:342.878667pt;}
.ye3{bottom:343.786667pt;}
.y35{bottom:344.730667pt;}
.y53{bottom:346.242667pt;}
.y98{bottom:347.754667pt;}
.ye4{bottom:347.942667pt;}
.ybb{bottom:348.548000pt;}
.y103{bottom:349.606667pt;}
.y34{bottom:349.946667pt;}
.y19{bottom:351.269333pt;}
.y18{bottom:352.177333pt;}
.yad{bottom:355.426667pt;}
.y110{bottom:357.052000pt;}
.yc1{bottom:358.450667pt;}
.y10{bottom:362.078667pt;}
.y44{bottom:362.721333pt;}
.y49{bottom:362.760000pt;}
.y28{bottom:366.992000pt;}
.y69{bottom:367.181333pt;}
.y102{bottom:369.978667pt;}
.y3{bottom:370.469333pt;}
.y30{bottom:371.188000pt;}
.y2d{bottom:371.225333pt;}
.ye0{bottom:373.266667pt;}
.y8f{bottom:373.417333pt;}
.y52{bottom:375.042667pt;}
.y97{bottom:378.596000pt;}
.yc0{bottom:378.822667pt;}
.y1c{bottom:380.145333pt;}
.y10f{bottom:381.808000pt;}
.yba{bottom:385.021333pt;}
.y9b{bottom:385.664000pt;}
.y85{bottom:386.986667pt;}
.y94{bottom:387.477333pt;}
.y101{bottom:390.350667pt;}
.y43{bottom:391.521333pt;}
.y48{bottom:391.560000pt;}
.ye2{bottom:394.016000pt;}
.yde{bottom:398.929333pt;}
.y8c{bottom:399.005333pt;}
.ybf{bottom:399.194667pt;}
.yac{bottom:400.365333pt;}
.y10e{bottom:404.221333pt;}
.y27{bottom:406.148000pt;}
.ydf{bottom:407.698667pt;}
.y8e{bottom:407.773333pt;}
.y100{bottom:410.721333pt;}
.yb9{bottom:413.821333pt;}
.y2{bottom:415.294667pt;}
.ydd{bottom:416.504000pt;}
.y8b{bottom:416.580000pt;}
.yb8{bottom:417.865333pt;}
.y13{bottom:418.394667pt;}
.ybe{bottom:419.565333pt;}
.y51{bottom:420.170667pt;}
.y96{bottom:430.148000pt;}
.y9a{bottom:430.186667pt;}
.y93{bottom:432.605333pt;}
.y66{bottom:433.928000pt;}
.y42{bottom:436.649333pt;}
.y47{bottom:436.686667pt;}
.y84{bottom:437.216000pt;}
.y12{bottom:437.594667pt;}
.y8d{bottom:442.168000pt;}
.y26{bottom:443.944000pt;}
.ya4{bottom:446.212000pt;}
.yd3{bottom:446.249333pt;}
.y5e{bottom:448.933333pt;}
.y50{bottom:448.970667pt;}
.y63{bottom:449.008000pt;}
.yd5{bottom:449.386667pt;}
.ya6{bottom:449.424000pt;}
.yb7{bottom:452.258667pt;}
.y65{bottom:458.646667pt;}
.y2b{bottom:462.425333pt;}
.ya3{bottom:465.412000pt;}
.y41{bottom:465.449333pt;}
.y46{bottom:465.486667pt;}
.yd4{bottom:468.586667pt;}
.ya5{bottom:468.624000pt;}
.y8a{bottom:476.522667pt;}
.y5d{bottom:477.733333pt;}
.y4f{bottom:477.770667pt;}
.y95{bottom:481.701333pt;}
.y25{bottom:481.738667pt;}
.y64{bottom:483.364000pt;}
.yb6{bottom:486.614667pt;}
.y10d{bottom:489.940000pt;}
.y10b{bottom:490.922667pt;}
.y61{bottom:494.098667pt;}
.y2a{bottom:494.249333pt;}
.y45{bottom:494.286667pt;}
.y16{bottom:495.232000pt;}
.y117{bottom:496.177333pt;}
.y62{bottom:500.561333pt;}
.y15{bottom:512.844000pt;}
.yd{bottom:546.520000pt;}
.y14{bottom:578.986667pt;}
.h6{height:33.379969pt;}
.h1c{height:37.652229pt;}
.h22{height:38.481716pt;}
.h17{height:38.848068pt;}
.h20{height:41.795896pt;}
.h9{height:42.731812pt;}
.h15{height:45.939562pt;}
.hc{height:46.560092pt;}
.h8{height:46.590031pt;}
.hd{height:46.666667pt;}
.h24{height:47.851648pt;}
.h19{height:48.307203pt;}
.h23{height:48.845586pt;}
.h18{height:49.310344pt;}
.he{height:54.012802pt;}
.h26{height:54.407490pt;}
.h25{height:59.369359pt;}
.h1a{height:60.179234pt;}
.h5{height:62.076240pt;}
.h4{height:62.116156pt;}
.h1d{height:66.656250pt;}
.hf{height:67.164406pt;}
.h10{height:68.627703pt;}
.h14{height:68.718750pt;}
.h11{height:69.375000pt;}
.h13{height:69.892558pt;}
.h12{height:69.937500pt;}
.h1f{height:70.375604pt;}
.h3{height:77.758844pt;}
.h21{height:82.846667pt;}
.h16{height:83.980000pt;}
.h2{height:108.742047pt;}
.hb{height:108.814979pt;}
.h7{height:116.449430pt;}
.h1e{height:135.445583pt;}
.h1b{height:162.980229pt;}
.ha{height:209.671875pt;}
.h1{height:719.961333pt;}
.h0{height:720.000000pt;}
.w4{width:276.529333pt;}
.w6{width:312.830667pt;}
.w5{width:314.002667pt;}
.w1{width:1280.000000pt;}
.w3{width:1280.012000pt;}
.w2{width:1280.088000pt;}
.w0{width:1280.125984pt;}
.x0{left:0.000000pt;}
.x52{left:6.808000pt;}
.x43{left:8.677333pt;}
.x2{left:21.278667pt;}
.x13{left:34.341333pt;}
.x11{left:41.801333pt;}
.x4e{left:48.220000pt;}
.x40{left:58.573333pt;}
.x44{left:66.321333pt;}
.x45{left:71.532000pt;}
.x10{left:85.454667pt;}
.x14{left:88.744000pt;}
.x59{left:90.066667pt;}
.x3e{left:91.616000pt;}
.x15{left:95.393333pt;}
.x46{left:96.580000pt;}
.x3{left:101.292000pt;}
.x23{left:106.092000pt;}
.x16{left:107.089333pt;}
.x37{left:108.132000pt;}
.x7c{left:111.425333pt;}
.x17{left:112.428000pt;}
.x4f{left:117.620000pt;}
.x53{left:122.764000pt;}
.x54{left:128.574667pt;}
.x41{left:132.181333pt;}
.x21{left:133.341333pt;}
.x42{left:138.060000pt;}
.x18{left:146.350667pt;}
.x24{left:150.916000pt;}
.x19{left:152.902667pt;}
.x3d{left:156.925333pt;}
.x47{left:160.168000pt;}
.x5b{left:163.350667pt;}
.x1a{left:164.744000pt;}
.x48{left:165.980000pt;}
.x1b{left:170.130667pt;}
.x22{left:181.341333pt;}
.x27{left:183.988000pt;}
.x55{left:189.157333pt;}
.x3b{left:191.281333pt;}
.x49{left:194.368000pt;}
.x4a{left:199.177333pt;}
.x6e{left:211.350667pt;}
.x86{left:220.233333pt;}
.x1c{left:233.804000pt;}
.x1d{left:240.354667pt;}
.x7d{left:250.173333pt;}
.x50{left:251.076000pt;}
.x2f{left:252.434667pt;}
.x7e{left:255.364000pt;}
.x51{left:256.286667pt;}
.x7a{left:261.818667pt;}
.x4b{left:262.765333pt;}
.x1{left:265.322667pt;}
.x1e{left:267.532000pt;}
.x4c{left:268.577333pt;}
.x7f{left:284.710667pt;}
.x56{left:285.742667pt;}
.x80{left:290.566667pt;}
.x57{left:291.621333pt;}
.x7b{left:296.022667pt;}
.x4d{left:297.098667pt;}
.x81{left:299.350667pt;}
.x58{left:300.437333pt;}
.x82{left:304.606667pt;}
.x26{left:306.293333pt;}
.x88{left:313.928000pt;}
.x25{left:331.426667pt;}
.x38{left:353.764000pt;}
.x89{left:365.745333pt;}
.x36{left:378.784000pt;}
.x12{left:444.320000pt;}
.x2a{left:445.228000pt;}
.x2d{left:448.101333pt;}
.x3a{left:462.765333pt;}
.x63{left:486.462667pt;}
.x28{left:487.672000pt;}
.x20{left:490.846667pt;}
.x1f{left:499.729333pt;}
.x6f{left:517.644000pt;}
.x6c{left:533.972000pt;}
.xe{left:536.125333pt;}
.x34{left:540.661333pt;}
.x2b{left:560.428000pt;}
.x2e{left:563.301333pt;}
.x3c{left:573.468000pt;}
.x29{left:604.724000pt;}
.x2c{left:607.597333pt;}
.x62{left:628.837333pt;}
.x83{left:634.432000pt;}
.x60{left:635.528000pt;}
.x5d{left:636.850667pt;}
.x5c{left:640.214667pt;}
.x76{left:642.104000pt;}
.x75{left:645.429333pt;}
.x39{left:649.285333pt;}
.x71{left:653.896000pt;}
.x8c{left:657.940000pt;}
.x6d{left:659.942667pt;}
.x35{left:700.422667pt;}
.x69{left:707.754667pt;}
.x8b{left:716.106667pt;}
.x61{left:741.732000pt;}
.x67{left:746.608000pt;}
.x3f{left:749.177333pt;}
.x77{left:758.362667pt;}
.x5e{left:763.729333pt;}
.x4{left:766.564000pt;}
.x78{left:771.666667pt;}
.x5f{left:777.033333pt;}
.x87{left:778.242667pt;}
.x85{left:785.612000pt;}
.x5a{left:792.566667pt;}
.xf{left:808.062667pt;}
.x65{left:832.742667pt;}
.x72{left:875.074667pt;}
.x64{left:877.908000pt;}
.x84{left:881.650667pt;}
.x79{left:886.828000pt;}
.x30{left:903.949333pt;}
.x70{left:915.816000pt;}
.xa{left:921.222667pt;}
.xb{left:922.582667pt;}
.x32{left:935.394667pt;}
.x9{left:936.756000pt;}
.x6{left:940.346667pt;}
.x5{left:941.669333pt;}
.x7{left:947.905333pt;}
.x8{left:950.136000pt;}
.x66{left:968.994667pt;}
.x6a{left:1015.785333pt;}
.x33{left:1043.074667pt;}
.x8a{left:1045.417333pt;}
.x31{left:1053.618667pt;}
.x6b{left:1056.264000pt;}
.x68{left:1058.268000pt;}
.xc{left:1101.241333pt;}
.xd{left:1132.346667pt;}
.x74{left:1169.008000pt;}
.x73{left:1181.329333pt;}
}




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