
    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_270aaf8d848a356a79db90eb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.690430;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_661f41f7dd6c455407162179.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_89d8d72602cf326adc4bb621.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_d04dc4580a5a0095676a4ffa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.903320;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_a034728b6c7c29736f286489.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.710449;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_93719a6fe30f019794563b96.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_d45e2cd088e357037ed683ea.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7585f9a312ad36bc5e789753.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3aa03be1f65d2df258b6f101.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_af1985f8588424ba3fffb092.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_1cbcd0e5d4c9eeb5415246ab.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.690918;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_a255808842ad311625c9c8bc.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_8149dda89856c7af6c146036.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v3{vertical-align:-10.800018px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.998000px;}
.v1{vertical-align:21.816000px;}
.ls6{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.012002px;}
.lsc{letter-spacing:54.864000px;}
.ls5{letter-spacing:107.976000px;}
.ls4{letter-spacing:107.988000px;}
.ls3{letter-spacing:108.000000px;}
.ls0{letter-spacing:128.928000px;}
.ls8{letter-spacing:180.864000px;}
.lsa{letter-spacing:203.040000px;}
.ls1{letter-spacing:231.744000px;}
.ls2{letter-spacing:521.184000px;}
.lsb{letter-spacing:824.832000px;}
.ls9{letter-spacing:945.648000px;}
.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;}
}
.ws1b{word-spacing:-72.000000px;}
.ws7{word-spacing:-26.688000px;}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-13.560000px;}
.ws0{word-spacing:-12.000000px;}
.ws9{word-spacing:-11.880000px;}
.ws2{word-spacing:-10.500000px;}
.ws6{word-spacing:0.000000px;}
.ws3{word-spacing:93.060000px;}
.ws4{word-spacing:93.084000px;}
.wsd{word-spacing:101.076000px;}
.ws19{word-spacing:102.012000px;}
.wsa{word-spacing:122.964000px;}
.ws14{word-spacing:126.060000px;}
.ws11{word-spacing:133.116000px;}
.wse{word-spacing:139.956000px;}
.wsc{word-spacing:140.100000px;}
.ws10{word-spacing:193.092000px;}
.ws15{word-spacing:230.172000px;}
.ws17{word-spacing:260.844000px;}
.ws12{word-spacing:412.836000px;}
.ws1a{word-spacing:556.836000px;}
.ws13{word-spacing:675.924000px;}
.wsb{word-spacing:761.748000px;}
.ws16{word-spacing:946.716000px;}
.ws18{word-spacing:961.836000px;}
.wsf{word-spacing:1235.724000px;}
.ws8{word-spacing:1810.860000px;}
._23{margin-left:-2.304000px;}
._1c{margin-left:-1.008000px;}
._9{width:1.872000px;}
._d{width:3.096000px;}
._7{width:4.104000px;}
._4{width:5.742000px;}
._11{width:7.146000px;}
._1{width:8.316000px;}
._6{width:10.116000px;}
._b{width:11.592000px;}
._17{width:12.756000px;}
._3{width:14.388000px;}
._15{width:15.408000px;}
._a{width:16.776000px;}
._13{width:19.116000px;}
._5{width:20.394000px;}
._12{width:21.618000px;}
._14{width:23.382000px;}
._19{width:24.498000px;}
._e{width:25.776000px;}
._16{width:27.504000px;}
._10{width:28.944000px;}
._8{width:30.312000px;}
._1f{width:31.824000px;}
._f{width:33.120000px;}
._1a{width:34.344000px;}
._1e{width:35.568000px;}
._2{width:37.884000px;}
._18{width:38.940000px;}
._20{width:40.680000px;}
._1d{width:42.264000px;}
._21{width:45.072000px;}
._1b{width:46.440000px;}
._0{width:47.520000px;}
._c{width:59.256000px;}
._22{width:71.064000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs4{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:24.572936px;}
.y24{bottom:24.573001px;}
.y23{bottom:53.100062px;}
.y1{bottom:53.100064px;}
.y92{bottom:113.407516px;}
.y12a{bottom:118.360508px;}
.y104{bottom:121.501522px;}
.y11c{bottom:123.754543px;}
.ye5{bottom:126.454514px;}
.y5d{bottom:131.407528px;}
.yb8{bottom:131.407551px;}
.y1f{bottom:134.109000px;}
.y7e{bottom:136.360508px;}
.y43{bottom:136.360531px;}
.y173{bottom:139.501522px;}
.y16d{bottom:142.597549px;}
.ya8{bottom:143.685029px;}
.y91{bottom:144.454514px;}
.y129{bottom:149.407516px;}
.y103{bottom:152.548519px;}
.y11b{bottom:154.801545px;}
.ye4{bottom:157.501522px;}
.y152{bottom:159.732010px;}
.yd8{bottom:162.454514px;}
.y13c{bottom:162.454525px;}
.y5c{bottom:162.454529px;}
.yb7{bottom:162.454548px;}
.y1e{bottom:165.156000px;}
.y7d{bottom:167.407505px;}
.y42{bottom:167.407528px;}
.y148{bottom:170.548519px;}
.y172{bottom:170.548523px;}
.y16c{bottom:173.644558px;}
.y90{bottom:175.501511px;}
.y128{bottom:180.454514px;}
.y102{bottom:183.595520px;}
.ye3{bottom:188.548519px;}
.ya7{bottom:192.732010px;}
.yd7{bottom:193.501511px;}
.y13b{bottom:193.501522px;}
.yb6{bottom:193.501545px;}
.y151{bottom:195.732010px;}
.y1d{bottom:196.203000px;}
.y7c{bottom:198.454514px;}
.y41{bottom:198.454529px;}
.y147{bottom:201.595520px;}
.y11a{bottom:203.848526px;}
.y16b{bottom:204.691555px;}
.y8f{bottom:206.548519px;}
.y127{bottom:211.501511px;}
.y5b{bottom:211.501522px;}
.y6e{bottom:211.501545px;}
.y171{bottom:219.595505px;}
.ye2{bottom:219.595520px;}
.ya6{bottom:223.779007px;}
.yd6{bottom:224.548508px;}
.y13a{bottom:224.548523px;}
.ycb{bottom:224.548542px;}
.yb5{bottom:224.548553px;}
.y7b{bottom:229.501511px;}
.y150{bottom:231.732010px;}
.y101{bottom:232.642513px;}
.y119{bottom:234.895535px;}
.y16a{bottom:235.738556px;}
.y8e{bottom:237.595516px;}
.y5a{bottom:242.548519px;}
.yf2{bottom:242.548542px;}
.y6d{bottom:242.548553px;}
.y1c{bottom:245.250000px;}
.y40{bottom:247.501545px;}
.y146{bottom:250.642513px;}
.ya5{bottom:254.826015px;}
.yd5{bottom:255.595516px;}
.yca{bottom:255.595539px;}
.yb4{bottom:255.595551px;}
.y7a{bottom:260.548508px;}
.y100{bottom:263.689515px;}
.y118{bottom:265.942532px;}
.y177{bottom:268.642502px;}
.ye1{bottom:268.642513px;}
.y8d{bottom:268.642518px;}
.y126{bottom:273.595516px;}
.y59{bottom:273.595520px;}
.yf1{bottom:273.595539px;}
.y6c{bottom:273.595551px;}
.y14f{bottom:274.482010px;}
.y3f{bottom:278.548542px;}
.y170{bottom:281.689510px;}
.y145{bottom:281.689515px;}
.y169{bottom:284.785538px;}
.ya4{bottom:285.873013px;}
.yd4{bottom:286.642513px;}
.yc9{bottom:286.642536px;}
.yb3{bottom:286.642548px;}
.y79{bottom:291.595516px;}
.y1b{bottom:294.297000px;}
.y117{bottom:296.989533px;}
.ye0{bottom:299.689510px;}
.y125{bottom:304.642518px;}
.yf0{bottom:304.642536px;}
.y6b{bottom:304.642548px;}
.y3e{bottom:309.595539px;}
.y14e{bottom:310.482010px;}
.yff{bottom:312.736512px;}
.y168{bottom:315.832546px;}
.ya3{bottom:316.920014px;}
.y8c{bottom:317.689515px;}
.yc8{bottom:317.689533px;}
.yb2{bottom:317.689556px;}
.y78{bottom:322.642513px;}
.y58{bottom:322.642548px;}
.y1a{bottom:325.344000px;}
.y176{bottom:330.736507px;}
.ydf{bottom:330.736512px;}
.y144{bottom:330.736542px;}
.yef{bottom:335.689533px;}
.y139{bottom:335.689545px;}
.y6a{bottom:335.689556px;}
.y3d{bottom:340.642548px;}
.y116{bottom:346.036526px;}
.y14d{bottom:346.482010px;}
.y167{bottom:346.879543px;}
.yc7{bottom:348.736542px;}
.yb1{bottom:348.736553px;}
.y77{bottom:353.689515px;}
.y124{bottom:353.689533px;}
.y57{bottom:353.689545px;}
.y175{bottom:361.783509px;}
.yfe{bottom:361.783550px;}
.ya2{bottom:365.072674px;}
.yee{bottom:366.736530px;}
.y8b{bottom:366.736542px;}
.y69{bottom:366.736553px;}
.y3c{bottom:371.689545px;}
.y9f{bottom:371.949080px;}
.y9e{bottom:372.265554px;}
.y19{bottom:374.391000px;}
.y115{bottom:377.083523px;}
.y166{bottom:377.926545px;}
.yc6{bottom:379.783539px;}
.yde{bottom:379.783550px;}
.yb0{bottom:379.783555px;}
.y123{bottom:384.736530px;}
.y56{bottom:384.736542px;}
.ya0{bottom:385.322674px;}
.ya1{bottom:388.568035px;}
.yfd{bottom:392.830547px;}
.yed{bottom:397.783527px;}
.y8a{bottom:397.783550px;}
.y68{bottom:397.783555px;}
.y3b{bottom:402.736542px;}
.y76{bottom:402.736557px;}
.y18{bottom:405.438000px;}
.y114{bottom:408.130524px;}
.yc5{bottom:410.830536px;}
.ydd{bottom:410.830552px;}
.y122{bottom:415.783527px;}
.y55{bottom:415.783550px;}
.yfc{bottom:423.877549px;}
.yec{bottom:428.830536px;}
.y89{bottom:428.830547px;}
.y9d{bottom:428.830552px;}
.y3a{bottom:433.783550px;}
.y165{bottom:435.973537px;}
.y17{bottom:436.485000px;}
.yc4{bottom:441.877544px;}
.y121{bottom:446.830524px;}
.y54{bottom:446.830547px;}
.y67{bottom:446.830552px;}
.y75{bottom:451.783527px;}
.y113{bottom:457.177563px;}
.yeb{bottom:459.877533px;}
.y88{bottom:459.877549px;}
.y39{bottom:464.830547px;}
.y164{bottom:467.020539px;}
.y16{bottom:467.532000px;}
.yc3{bottom:472.924541px;}
.yfb{bottom:472.924546px;}
.y9c{bottom:477.877533px;}
.y53{bottom:477.877549px;}
.y74{bottom:482.830524px;}
.y112{bottom:488.224560px;}
.yea{bottom:490.924530px;}
.y38{bottom:495.877549px;}
.y15{bottom:498.579000px;}
.y16f{bottom:503.971539px;}
.yc2{bottom:503.971543px;}
.y138{bottom:508.924519px;}
.y120{bottom:508.924530px;}
.y87{bottom:508.924541px;}
.y73{bottom:513.877533px;}
.y163{bottom:514.719040px;}
.y111{bottom:519.271561px;}
.yfa{bottom:521.971527px;}
.ye9{bottom:521.971539px;}
.y52{bottom:526.924541px;}
.y14{bottom:529.626000px;}
.y16e{bottom:535.018540px;}
.y137{bottom:539.971516px;}
.y11f{bottom:539.971527px;}
.y86{bottom:539.971539px;}
.y72{bottom:544.924530px;}
.y37{bottom:544.924541px;}
.y162{bottom:550.719040px;}
.y143{bottom:553.018524px;}
.yc1{bottom:553.018536px;}
.y51{bottom:557.971539px;}
.y13{bottom:560.673000px;}
.y110{bottom:568.318554px;}
.y136{bottom:571.018524px;}
.yd3{bottom:571.018536px;}
.y85{bottom:571.018540px;}
.y71{bottom:575.971527px;}
.y36{bottom:575.971539px;}
.yf9{bottom:584.065533px;}
.yc0{bottom:584.065537px;}
.y161{bottom:586.719040px;}
.y50{bottom:589.018536px;}
.y12{bottom:591.720000px;}
.y10f{bottom:599.365555px;}
.y135{bottom:602.065521px;}
.y11e{bottom:602.065533px;}
.yd2{bottom:602.065544px;}
.y35{bottom:607.018536px;}
.y142{bottom:615.112530px;}
.yf8{bottom:615.112534px;}
.y84{bottom:620.065521px;}
.y9b{bottom:620.065533px;}
.y4f{bottom:620.065544px;}
.y11{bottom:622.767000px;}
.y160{bottom:629.469040px;}
.y134{bottom:633.112518px;}
.ye8{bottom:633.112530px;}
.ybf{bottom:633.112534px;}
.yd1{bottom:633.112541px;}
.y34{bottom:638.065533px;}
.y66{bottom:638.065544px;}
.y141{bottom:646.159531px;}
.y10e{bottom:648.412552px;}
.y83{bottom:651.112518px;}
.y9a{bottom:651.112534px;}
.y4e{bottom:651.112541px;}
.y133{bottom:664.159527px;}
.ye7{bottom:664.159531px;}
.yd0{bottom:664.159538px;}
.y15f{bottom:665.469040px;}
.y33{bottom:669.112530px;}
.y70{bottom:669.112534px;}
.y65{bottom:669.112541px;}
.y10{bottom:671.814000px;}
.y82{bottom:682.159527px;}
.y4d{bottom:682.159538px;}
.y132{bottom:695.206524px;}
.y140{bottom:695.206528px;}
.yf7{bottom:695.206535px;}
.ycf{bottom:695.206547px;}
.y10d{bottom:697.459545px;}
.y99{bottom:700.159531px;}
.y32{bottom:700.159538px;}
.y15e{bottom:701.469040px;}
.y81{bottom:713.206524px;}
.ye6{bottom:713.206528px;}
.ydc{bottom:713.206535px;}
.y4c{bottom:713.206547px;}
.yf{bottom:719.673000px;}
.y131{bottom:726.253525px;}
.yce{bottom:726.253544px;}
.y10c{bottom:728.506542px;}
.y31{bottom:731.206535px;}
.y64{bottom:731.206547px;}
.y15d{bottom:744.219040px;}
.y80{bottom:744.253525px;}
.y13f{bottom:744.253532px;}
.y4b{bottom:744.253544px;}
.ye{bottom:748.132500px;}
.y98{bottom:749.206535px;}
.yf6{bottom:757.300541px;}
.ycd{bottom:757.300545px;}
.y10b{bottom:759.553544px;}
.y30{bottom:762.253532px;}
.y63{bottom:762.253544px;}
.y130{bottom:775.300529px;}
.ydb{bottom:775.300541px;}
.y4a{bottom:775.300545px;}
.yd{bottom:776.592000px;}
.y15c{bottom:780.219040px;}
.y10a{bottom:780.252038px;}
.y97{bottom:780.253532px;}
.yf5{bottom:788.347542px;}
.y7f{bottom:793.300529px;}
.y2f{bottom:793.300541px;}
.y62{bottom:793.300545px;}
.y109{bottom:800.950544px;}
.yc{bottom:805.051500px;}
.y12f{bottom:806.347527px;}
.y14c{bottom:806.347538px;}
.ycc{bottom:806.347542px;}
.y96{bottom:811.300529px;}
.y15b{bottom:816.219040px;}
.y108{bottom:821.649044px;}
.yaf{bottom:824.347527px;}
.y2e{bottom:824.347538px;}
.y6f{bottom:824.347542px;}
.yb{bottom:833.511000px;}
.y12e{bottom:837.394524px;}
.yf4{bottom:837.394535px;}
.y14b{bottom:837.394539px;}
.y61{bottom:842.347538px;}
.y107{bottom:842.347542px;}
.y49{bottom:855.394535px;}
.y2d{bottom:855.394539px;}
.y15a{bottom:858.969040px;}
.ya{bottom:861.970500px;}
.y12d{bottom:868.441532px;}
.yf3{bottom:868.441536px;}
.y60{bottom:873.394535px;}
.yae{bottom:886.441532px;}
.y48{bottom:886.441536px;}
.y14a{bottom:886.441544px;}
.y9{bottom:890.430000px;}
.y106{bottom:891.394535px;}
.y159{bottom:894.969040px;}
.y12c{bottom:899.488529px;}
.y13e{bottom:899.488533px;}
.y5f{bottom:904.441532px;}
.y95{bottom:904.441536px;}
.yda{bottom:904.441538px;}
.y2c{bottom:904.441544px;}
.ybe{bottom:917.488529px;}
.yad{bottom:917.488533px;}
.y149{bottom:917.488541px;}
.y8{bottom:918.889500px;}
.y105{bottom:922.441532px;}
.y12b{bottom:930.535531px;}
.y47{bottom:935.488529px;}
.y11d{bottom:935.488533px;}
.yd9{bottom:935.488535px;}
.y2b{bottom:935.488541px;}
.y158{bottom:937.719040px;}
.ybd{bottom:948.535538px;}
.y13d{bottom:948.535542px;}
.y17f{bottom:953.430000px;}
.y94{bottom:953.488529px;}
.yac{bottom:966.535532px;}
.y46{bottom:966.535538px;}
.y2a{bottom:966.535542px;}
.y7{bottom:966.537000px;}
.y157{bottom:973.719040px;}
.y17e{bottom:977.190000px;}
.ybc{bottom:979.582535px;}
.y174{bottom:979.582539px;}
.y93{bottom:984.535538px;}
.y45{bottom:997.582535px;}
.y5e{bottom:997.582539px;}
.yab{bottom:997.582541px;}
.y6{bottom:997.584000px;}
.y17d{bottom:1002.390000px;}
.y156{bottom:1009.719040px;}
.ybb{bottom:1010.629536px;}
.y29{bottom:1015.582535px;}
.y17c{bottom:1026.150000px;}
.y44{bottom:1028.629536px;}
.yaa{bottom:1028.629538px;}
.y28{bottom:1046.629532px;}
.y17b{bottom:1051.170000px;}
.y5{bottom:1051.378500px;}
.y155{bottom:1052.469040px;}
.yba{bottom:1059.676535px;}
.ya9{bottom:1059.676539px;}
.y17a{bottom:1075.110000px;}
.y27{bottom:1077.676540px;}
.y154{bottom:1088.469040px;}
.yb9{bottom:1090.723536px;}
.y4{bottom:1092.774000px;}
.y179{bottom:1100.130000px;}
.y26{bottom:1108.723537px;}
.y153{bottom:1124.469040px;}
.y3{bottom:1134.169500px;}
.y25{bottom:1139.770539px;}
.y178{bottom:1139.940000px;}
.y22{bottom:1194.385500px;}
.y21{bottom:1212.385500px;}
.y20{bottom:1230.385500px;}
.h13{height:25.013672px;}
.h11{height:38.100586px;}
.h2{height:40.284000px;}
.hb{height:40.284001px;}
.ha{height:43.886719px;}
.h3{height:45.084961px;}
.h7{height:45.858398px;}
.h8{height:48.796875px;}
.h6{height:49.180617px;}
.h16{height:49.992188px;}
.h9{height:50.027344px;}
.hf{height:50.800781px;}
.h5{height:54.347250px;}
.hd{height:55.167549px;}
.h15{height:55.167563px;}
.hc{height:55.167572px;}
.h4{height:65.062500px;}
.h1a{height:70.664062px;}
.h18{height:72.562500px;}
.h19{height:74.004654px;}
.h14{height:378.321799px;}
.he{height:389.614580px;}
.h10{height:398.571799px;}
.h12{height:403.618285px;}
.h1b{height:802.500000px;}
.h1c{height:1173.000000px;}
.h0{height:1262.850037px;}
.h17{height:1262.879974px;}
.h1{height:1263.000000px;}
.wb{width:18.281250px;}
.w6{width:19.383749px;}
.wd{width:20.623501px;}
.we{width:21.276001px;}
.w7{width:21.533624px;}
.wc{width:22.601250px;}
.w9{width:23.866875px;}
.w4{width:31.822500px;}
.wa{width:33.213376px;}
.w8{width:65.724751px;}
.wf{width:71.327250px;}
.w5{width:94.386377px;}
.w3{width:161.313000px;}
.w12{width:802.500000px;}
.w2{width:892.949977px;}
.w0{width:892.949982px;}
.w10{width:892.980011px;}
.w1{width:893.250000px;}
.w11{width:1173.000000px;}
.x0{left:0.000000px;}
.x9{left:6.890625px;}
.x6{left:9.187500px;}
.x4{left:50.544000px;}
.x3{left:83.850000px;}
.x2{left:92.212500px;}
.x1d{left:127.656000px;}
.x5{left:146.254503px;}
.x1e{left:154.650000px;}
.x1f{left:181.650000px;}
.x7{left:293.156370px;}
.x14{left:312.864372px;}
.x8{left:326.303621px;}
.x15{left:393.469491px;}
.x16{left:399.071991px;}
.xa{left:406.908740px;}
.xb{left:412.511240px;}
.xc{left:420.263615px;}
.x1c{left:438.112495px;}
.x1{left:442.292995px;}
.x17{left:457.857742px;}
.x18{left:466.433138px;}
.xd{left:472.207114px;}
.x19{left:479.491659px;}
.xe{left:480.782518px;}
.x1a{left:485.094154px;}
.x1b{left:492.588907px;}
.xf{left:493.841040px;}
.x10{left:513.273159px;}
.x11{left:517.773159px;}
.x12{left:526.593155px;}
.x13{left:531.093155px;}
@media print{
.v3{vertical-align:-9.600016pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.776000pt;}
.v1{vertical-align:19.392000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.010669pt;}
.lsc{letter-spacing:48.768000pt;}
.ls5{letter-spacing:95.978667pt;}
.ls4{letter-spacing:95.989333pt;}
.ls3{letter-spacing:96.000000pt;}
.ls0{letter-spacing:114.602667pt;}
.ls8{letter-spacing:160.768000pt;}
.lsa{letter-spacing:180.480000pt;}
.ls1{letter-spacing:205.994667pt;}
.ls2{letter-spacing:463.274667pt;}
.lsb{letter-spacing:733.184000pt;}
.ls9{letter-spacing:840.576000pt;}
.ws1b{word-spacing:-64.000000pt;}
.ws7{word-spacing:-23.722667pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-12.053333pt;}
.ws0{word-spacing:-10.666667pt;}
.ws9{word-spacing:-10.560000pt;}
.ws2{word-spacing:-9.333333pt;}
.ws6{word-spacing:0.000000pt;}
.ws3{word-spacing:82.720000pt;}
.ws4{word-spacing:82.741333pt;}
.wsd{word-spacing:89.845333pt;}
.ws19{word-spacing:90.677333pt;}
.wsa{word-spacing:109.301333pt;}
.ws14{word-spacing:112.053333pt;}
.ws11{word-spacing:118.325333pt;}
.wse{word-spacing:124.405333pt;}
.wsc{word-spacing:124.533333pt;}
.ws10{word-spacing:171.637333pt;}
.ws15{word-spacing:204.597333pt;}
.ws17{word-spacing:231.861333pt;}
.ws12{word-spacing:366.965333pt;}
.ws1a{word-spacing:494.965333pt;}
.ws13{word-spacing:600.821333pt;}
.wsb{word-spacing:677.109333pt;}
.ws16{word-spacing:841.525333pt;}
.ws18{word-spacing:854.965333pt;}
.wsf{word-spacing:1098.421333pt;}
.ws8{word-spacing:1609.653333pt;}
._23{margin-left:-2.048000pt;}
._1c{margin-left:-0.896000pt;}
._9{width:1.664000pt;}
._d{width:2.752000pt;}
._7{width:3.648000pt;}
._4{width:5.104000pt;}
._11{width:6.352000pt;}
._1{width:7.392000pt;}
._6{width:8.992000pt;}
._b{width:10.304000pt;}
._17{width:11.338667pt;}
._3{width:12.789333pt;}
._15{width:13.696000pt;}
._a{width:14.912000pt;}
._13{width:16.992000pt;}
._5{width:18.128000pt;}
._12{width:19.216000pt;}
._14{width:20.784000pt;}
._19{width:21.776000pt;}
._e{width:22.912000pt;}
._16{width:24.448000pt;}
._10{width:25.728000pt;}
._8{width:26.944000pt;}
._1f{width:28.288000pt;}
._f{width:29.440000pt;}
._1a{width:30.528000pt;}
._1e{width:31.616000pt;}
._2{width:33.674667pt;}
._18{width:34.613333pt;}
._20{width:36.160000pt;}
._1d{width:37.568000pt;}
._21{width:40.064000pt;}
._1b{width:41.280000pt;}
._0{width:42.240000pt;}
._c{width:52.672000pt;}
._22{width:63.168000pt;}
.fs7{font-size:32.000000pt;}
.fs4{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:21.842610pt;}
.y24{bottom:21.842668pt;}
.y23{bottom:47.200055pt;}
.y1{bottom:47.200057pt;}
.y92{bottom:100.806681pt;}
.y12a{bottom:105.209340pt;}
.y104{bottom:108.001353pt;}
.y11c{bottom:110.004038pt;}
.ye5{bottom:112.404012pt;}
.y5d{bottom:116.806691pt;}
.yb8{bottom:116.806712pt;}
.y1f{bottom:119.208000pt;}
.y7e{bottom:121.209340pt;}
.y43{bottom:121.209361pt;}
.y173{bottom:124.001353pt;}
.y16d{bottom:126.753377pt;}
.ya8{bottom:127.720025pt;}
.y91{bottom:128.404012pt;}
.y129{bottom:132.806681pt;}
.y103{bottom:135.598684pt;}
.y11b{bottom:137.601373pt;}
.ye4{bottom:140.001353pt;}
.y152{bottom:141.984009pt;}
.yd8{bottom:144.404012pt;}
.y13c{bottom:144.404022pt;}
.y5c{bottom:144.404026pt;}
.yb7{bottom:144.404043pt;}
.y1e{bottom:146.805333pt;}
.y7d{bottom:148.806671pt;}
.y42{bottom:148.806691pt;}
.y148{bottom:151.598684pt;}
.y172{bottom:151.598687pt;}
.y16c{bottom:154.350718pt;}
.y90{bottom:156.001343pt;}
.y128{bottom:160.404012pt;}
.y102{bottom:163.196018pt;}
.ye3{bottom:167.598684pt;}
.ya7{bottom:171.317342pt;}
.yd7{bottom:172.001343pt;}
.y13b{bottom:172.001353pt;}
.yb6{bottom:172.001373pt;}
.y151{bottom:173.984009pt;}
.y1d{bottom:174.402667pt;}
.y7c{bottom:176.404012pt;}
.y41{bottom:176.404026pt;}
.y147{bottom:179.196018pt;}
.y11a{bottom:181.198690pt;}
.y16b{bottom:181.948049pt;}
.y8f{bottom:183.598684pt;}
.y127{bottom:188.001343pt;}
.y5b{bottom:188.001353pt;}
.y6e{bottom:188.001373pt;}
.y171{bottom:195.196004pt;}
.ye2{bottom:195.196018pt;}
.ya6{bottom:198.914673pt;}
.yd6{bottom:199.598674pt;}
.y13a{bottom:199.598687pt;}
.ycb{bottom:199.598704pt;}
.yb5{bottom:199.598714pt;}
.y7b{bottom:204.001343pt;}
.y150{bottom:205.984009pt;}
.y101{bottom:206.793345pt;}
.y119{bottom:208.796031pt;}
.y16a{bottom:209.545383pt;}
.y8e{bottom:211.196014pt;}
.y5a{bottom:215.598684pt;}
.yf2{bottom:215.598704pt;}
.y6d{bottom:215.598714pt;}
.y1c{bottom:218.000000pt;}
.y40{bottom:220.001373pt;}
.y146{bottom:222.793345pt;}
.ya5{bottom:226.512014pt;}
.yd5{bottom:227.196014pt;}
.yca{bottom:227.196035pt;}
.yb4{bottom:227.196045pt;}
.y7a{bottom:231.598674pt;}
.y100{bottom:234.390680pt;}
.y118{bottom:236.393361pt;}
.y177{bottom:238.793335pt;}
.ye1{bottom:238.793345pt;}
.y8d{bottom:238.793349pt;}
.y126{bottom:243.196014pt;}
.y59{bottom:243.196018pt;}
.yf1{bottom:243.196035pt;}
.y6c{bottom:243.196045pt;}
.y14f{bottom:243.984009pt;}
.y3f{bottom:247.598704pt;}
.y170{bottom:250.390676pt;}
.y145{bottom:250.390680pt;}
.y169{bottom:253.142700pt;}
.ya4{bottom:254.109344pt;}
.yd4{bottom:254.793345pt;}
.yc9{bottom:254.793365pt;}
.yb3{bottom:254.793376pt;}
.y79{bottom:259.196014pt;}
.y1b{bottom:261.597333pt;}
.y117{bottom:263.990696pt;}
.ye0{bottom:266.390676pt;}
.y125{bottom:270.793349pt;}
.yf0{bottom:270.793365pt;}
.y6b{bottom:270.793376pt;}
.y3e{bottom:275.196035pt;}
.y14e{bottom:275.984009pt;}
.yff{bottom:277.988010pt;}
.y168{bottom:280.740041pt;}
.ya3{bottom:281.706679pt;}
.y8c{bottom:282.390680pt;}
.yc8{bottom:282.390696pt;}
.yb2{bottom:282.390717pt;}
.y78{bottom:286.793345pt;}
.y58{bottom:286.793376pt;}
.y1a{bottom:289.194667pt;}
.y176{bottom:293.988007pt;}
.ydf{bottom:293.988010pt;}
.y144{bottom:293.988037pt;}
.yef{bottom:298.390696pt;}
.y139{bottom:298.390706pt;}
.y6a{bottom:298.390717pt;}
.y3d{bottom:302.793376pt;}
.y116{bottom:307.588023pt;}
.y14d{bottom:307.984009pt;}
.y167{bottom:308.337372pt;}
.yc7{bottom:309.988037pt;}
.yb1{bottom:309.988047pt;}
.y77{bottom:314.390680pt;}
.y124{bottom:314.390696pt;}
.y57{bottom:314.390706pt;}
.y175{bottom:321.585341pt;}
.yfe{bottom:321.585378pt;}
.ya2{bottom:324.509043pt;}
.yee{bottom:325.988027pt;}
.y8b{bottom:325.988037pt;}
.y69{bottom:325.988047pt;}
.y3c{bottom:330.390706pt;}
.y9f{bottom:330.621404pt;}
.y9e{bottom:330.902715pt;}
.y19{bottom:332.792000pt;}
.y115{bottom:335.185354pt;}
.y166{bottom:335.934706pt;}
.yc6{bottom:337.585368pt;}
.yde{bottom:337.585378pt;}
.yb0{bottom:337.585382pt;}
.y123{bottom:341.988027pt;}
.y56{bottom:341.988037pt;}
.ya0{bottom:342.509043pt;}
.ya1{bottom:345.393809pt;}
.yfd{bottom:349.182709pt;}
.yed{bottom:353.585358pt;}
.y8a{bottom:353.585378pt;}
.y68{bottom:353.585382pt;}
.y3b{bottom:357.988037pt;}
.y76{bottom:357.988051pt;}
.y18{bottom:360.389333pt;}
.y114{bottom:362.782688pt;}
.yc5{bottom:365.182699pt;}
.ydd{bottom:365.182713pt;}
.y122{bottom:369.585358pt;}
.y55{bottom:369.585378pt;}
.yfc{bottom:376.780043pt;}
.yec{bottom:381.182699pt;}
.y89{bottom:381.182709pt;}
.y9d{bottom:381.182713pt;}
.y3a{bottom:385.585378pt;}
.y165{bottom:387.532033pt;}
.y17{bottom:387.986667pt;}
.yc4{bottom:392.780039pt;}
.y121{bottom:397.182688pt;}
.y54{bottom:397.182709pt;}
.y67{bottom:397.182713pt;}
.y75{bottom:401.585358pt;}
.y113{bottom:406.380056pt;}
.yeb{bottom:408.780029pt;}
.y88{bottom:408.780043pt;}
.y39{bottom:413.182709pt;}
.y164{bottom:415.129368pt;}
.y16{bottom:415.584000pt;}
.yc3{bottom:420.377370pt;}
.yfb{bottom:420.377374pt;}
.y9c{bottom:424.780029pt;}
.y53{bottom:424.780043pt;}
.y74{bottom:429.182688pt;}
.y112{bottom:433.977386pt;}
.yea{bottom:436.377360pt;}
.y38{bottom:440.780043pt;}
.y15{bottom:443.181333pt;}
.y16f{bottom:447.974701pt;}
.yc2{bottom:447.974705pt;}
.y138{bottom:452.377350pt;}
.y120{bottom:452.377360pt;}
.y87{bottom:452.377370pt;}
.y73{bottom:456.780029pt;}
.y163{bottom:457.528035pt;}
.y111{bottom:461.574721pt;}
.yfa{bottom:463.974691pt;}
.ye9{bottom:463.974701pt;}
.y52{bottom:468.377370pt;}
.y14{bottom:470.778667pt;}
.y16e{bottom:475.572035pt;}
.y137{bottom:479.974681pt;}
.y11f{bottom:479.974691pt;}
.y86{bottom:479.974701pt;}
.y72{bottom:484.377360pt;}
.y37{bottom:484.377370pt;}
.y162{bottom:489.528035pt;}
.y143{bottom:491.572021pt;}
.yc1{bottom:491.572032pt;}
.y51{bottom:495.974701pt;}
.y13{bottom:498.376000pt;}
.y110{bottom:505.172048pt;}
.y136{bottom:507.572021pt;}
.yd3{bottom:507.572032pt;}
.y85{bottom:507.572035pt;}
.y71{bottom:511.974691pt;}
.y36{bottom:511.974701pt;}
.yf9{bottom:519.169362pt;}
.yc0{bottom:519.169366pt;}
.y161{bottom:521.528035pt;}
.y50{bottom:523.572032pt;}
.y12{bottom:525.973333pt;}
.y10f{bottom:532.769382pt;}
.y135{bottom:535.169352pt;}
.y11e{bottom:535.169362pt;}
.yd2{bottom:535.169373pt;}
.y35{bottom:539.572032pt;}
.y142{bottom:546.766693pt;}
.yf8{bottom:546.766697pt;}
.y84{bottom:551.169352pt;}
.y9b{bottom:551.169362pt;}
.y4f{bottom:551.169373pt;}
.y11{bottom:553.570667pt;}
.y160{bottom:559.528035pt;}
.y134{bottom:562.766683pt;}
.ye8{bottom:562.766693pt;}
.ybf{bottom:562.766697pt;}
.yd1{bottom:562.766703pt;}
.y34{bottom:567.169362pt;}
.y66{bottom:567.169373pt;}
.y141{bottom:574.364028pt;}
.y10e{bottom:576.366713pt;}
.y83{bottom:578.766683pt;}
.y9a{bottom:578.766697pt;}
.y4e{bottom:578.766703pt;}
.y133{bottom:590.364024pt;}
.ye7{bottom:590.364028pt;}
.yd0{bottom:590.364034pt;}
.y15f{bottom:591.528035pt;}
.y33{bottom:594.766693pt;}
.y70{bottom:594.766697pt;}
.y65{bottom:594.766703pt;}
.y10{bottom:597.168000pt;}
.y82{bottom:606.364024pt;}
.y4d{bottom:606.364034pt;}
.y132{bottom:617.961355pt;}
.y140{bottom:617.961358pt;}
.yf7{bottom:617.961365pt;}
.ycf{bottom:617.961375pt;}
.y10d{bottom:619.964040pt;}
.y99{bottom:622.364028pt;}
.y32{bottom:622.364034pt;}
.y15e{bottom:623.528035pt;}
.y81{bottom:633.961355pt;}
.ye6{bottom:633.961358pt;}
.ydc{bottom:633.961365pt;}
.y4c{bottom:633.961375pt;}
.yf{bottom:639.709333pt;}
.y131{bottom:645.558689pt;}
.yce{bottom:645.558706pt;}
.y10c{bottom:647.561371pt;}
.y31{bottom:649.961365pt;}
.y64{bottom:649.961375pt;}
.y15d{bottom:661.528035pt;}
.y80{bottom:661.558689pt;}
.y13f{bottom:661.558695pt;}
.y4b{bottom:661.558706pt;}
.ye{bottom:665.006667pt;}
.y98{bottom:665.961365pt;}
.yf6{bottom:673.156036pt;}
.ycd{bottom:673.156040pt;}
.y10b{bottom:675.158705pt;}
.y30{bottom:677.558695pt;}
.y63{bottom:677.558706pt;}
.y130{bottom:689.156026pt;}
.ydb{bottom:689.156036pt;}
.y4a{bottom:689.156040pt;}
.yd{bottom:690.304000pt;}
.y15c{bottom:693.528035pt;}
.y10a{bottom:693.557367pt;}
.y97{bottom:693.558695pt;}
.yf5{bottom:700.753371pt;}
.y7f{bottom:705.156026pt;}
.y2f{bottom:705.156036pt;}
.y62{bottom:705.156040pt;}
.y109{bottom:711.956039pt;}
.yc{bottom:715.601333pt;}
.y12f{bottom:716.753357pt;}
.y14c{bottom:716.753367pt;}
.ycc{bottom:716.753371pt;}
.y96{bottom:721.156026pt;}
.y15b{bottom:725.528035pt;}
.y108{bottom:730.354706pt;}
.yaf{bottom:732.753357pt;}
.y2e{bottom:732.753367pt;}
.y6f{bottom:732.753371pt;}
.yb{bottom:740.898667pt;}
.y12e{bottom:744.350688pt;}
.yf4{bottom:744.350698pt;}
.y14b{bottom:744.350702pt;}
.y61{bottom:748.753367pt;}
.y107{bottom:748.753371pt;}
.y49{bottom:760.350698pt;}
.y2d{bottom:760.350702pt;}
.y15a{bottom:763.528035pt;}
.ya{bottom:766.196000pt;}
.y12d{bottom:771.948029pt;}
.yf3{bottom:771.948032pt;}
.y60{bottom:776.350698pt;}
.yae{bottom:787.948029pt;}
.y48{bottom:787.948032pt;}
.y14a{bottom:787.948039pt;}
.y9{bottom:791.493333pt;}
.y106{bottom:792.350698pt;}
.y159{bottom:795.528035pt;}
.y12c{bottom:799.545359pt;}
.y13e{bottom:799.545363pt;}
.y5f{bottom:803.948029pt;}
.y95{bottom:803.948032pt;}
.yda{bottom:803.948034pt;}
.y2c{bottom:803.948039pt;}
.ybe{bottom:815.545359pt;}
.yad{bottom:815.545363pt;}
.y149{bottom:815.545369pt;}
.y8{bottom:816.790667pt;}
.y105{bottom:819.948029pt;}
.y12b{bottom:827.142694pt;}
.y47{bottom:831.545359pt;}
.y11d{bottom:831.545363pt;}
.yd9{bottom:831.545364pt;}
.y2b{bottom:831.545369pt;}
.y158{bottom:833.528035pt;}
.ybd{bottom:843.142700pt;}
.y13d{bottom:843.142704pt;}
.y17f{bottom:847.493333pt;}
.y94{bottom:847.545359pt;}
.yac{bottom:859.142695pt;}
.y46{bottom:859.142700pt;}
.y2a{bottom:859.142704pt;}
.y7{bottom:859.144000pt;}
.y157{bottom:865.528035pt;}
.y17e{bottom:868.613333pt;}
.ybc{bottom:870.740031pt;}
.y174{bottom:870.740035pt;}
.y93{bottom:875.142700pt;}
.y45{bottom:886.740031pt;}
.y5e{bottom:886.740035pt;}
.yab{bottom:886.740036pt;}
.y6{bottom:886.741333pt;}
.y17d{bottom:891.013333pt;}
.y156{bottom:897.528035pt;}
.ybb{bottom:898.337365pt;}
.y29{bottom:902.740031pt;}
.y17c{bottom:912.133333pt;}
.y44{bottom:914.337365pt;}
.yaa{bottom:914.337367pt;}
.y28{bottom:930.337362pt;}
.y17b{bottom:934.373333pt;}
.y5{bottom:934.558667pt;}
.y155{bottom:935.528035pt;}
.yba{bottom:941.934697pt;}
.ya9{bottom:941.934701pt;}
.y17a{bottom:955.653333pt;}
.y27{bottom:957.934703pt;}
.y154{bottom:967.528035pt;}
.yb9{bottom:969.532032pt;}
.y4{bottom:971.354667pt;}
.y179{bottom:977.893333pt;}
.y26{bottom:985.532033pt;}
.y153{bottom:999.528035pt;}
.y3{bottom:1008.150667pt;}
.y25{bottom:1013.129368pt;}
.y178{bottom:1013.280000pt;}
.y22{bottom:1061.676000pt;}
.y21{bottom:1077.676000pt;}
.y20{bottom:1093.676000pt;}
.h13{height:22.234375pt;}
.h11{height:33.867188pt;}
.h2{height:35.808000pt;}
.hb{height:35.808001pt;}
.ha{height:39.010417pt;}
.h3{height:40.075521pt;}
.h7{height:40.763021pt;}
.h8{height:43.375000pt;}
.h6{height:43.716104pt;}
.h16{height:44.437500pt;}
.h9{height:44.468750pt;}
.hf{height:45.156250pt;}
.h5{height:48.308667pt;}
.hd{height:49.037821pt;}
.h15{height:49.037834pt;}
.hc{height:49.037842pt;}
.h4{height:57.833333pt;}
.h1a{height:62.812500pt;}
.h18{height:64.500000pt;}
.h19{height:65.781915pt;}
.h14{height:336.286044pt;}
.he{height:346.324071pt;}
.h10{height:354.286044pt;}
.h12{height:358.771809pt;}
.h1b{height:713.333333pt;}
.h1c{height:1042.666667pt;}
.h0{height:1122.533366pt;}
.h17{height:1122.559977pt;}
.h1{height:1122.666667pt;}
.wb{width:16.250000pt;}
.w6{width:17.230000pt;}
.wd{width:18.332001pt;}
.we{width:18.912001pt;}
.w7{width:19.140999pt;}
.wc{width:20.090000pt;}
.w9{width:21.215000pt;}
.w4{width:28.286667pt;}
.wa{width:29.523001pt;}
.w8{width:58.422001pt;}
.wf{width:63.402000pt;}
.w5{width:83.899002pt;}
.w3{width:143.389333pt;}
.w12{width:713.333333pt;}
.w2{width:793.733313pt;}
.w0{width:793.733317pt;}
.w10{width:793.760010pt;}
.w1{width:794.000000pt;}
.w11{width:1042.666667pt;}
.x0{left:0.000000pt;}
.x9{left:6.125000pt;}
.x6{left:8.166667pt;}
.x4{left:44.928000pt;}
.x3{left:74.533333pt;}
.x2{left:81.966667pt;}
.x1d{left:113.472000pt;}
.x5{left:130.004003pt;}
.x1e{left:137.466667pt;}
.x1f{left:161.466667pt;}
.x7{left:260.583440pt;}
.x14{left:278.101664pt;}
.x8{left:290.047663pt;}
.x15{left:349.750659pt;}
.x16{left:354.730659pt;}
.xa{left:361.696658pt;}
.xb{left:366.676658pt;}
.xc{left:373.567658pt;}
.x1c{left:389.433329pt;}
.x1{left:393.149329pt;}
.x17{left:406.984660pt;}
.x18{left:414.607234pt;}
.xd{left:419.739657pt;}
.x19{left:426.214808pt;}
.xe{left:427.362239pt;}
.x1a{left:431.194804pt;}
.x1b{left:437.856806pt;}
.xf{left:438.969813pt;}
.x10{left:456.242808pt;}
.x11{left:460.242808pt;}
.x12{left:468.082804pt;}
.x13{left:472.082804pt;}
}




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