
    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_c5338709683ab4095650af9e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_fa86fdc863d0967a8613f227.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.961000;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_3d712e3f4a9cdfd77d1f703c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_400d677c252b4788cec04305.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861816;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_02504ff08d2fceb3822ef3ca.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.971191;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_1b4e6d0f7d5646fb7849b1c0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.971191;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_d6fe61b0df2630344cbe62ac.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.024902;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_2c1d36c3a89f8bef1519af21.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861816;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_b93d771b4a9672c6d7e65a77.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.874023;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_6440720f87227e306034df57.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.024902;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_eb96d0f0bea57238dbe32521.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.971191;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_a7238331680263f475407bdf.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.024902;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_1325056b5a49c6bf7334104a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.971191;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:ffe;src:url('chunks/assets/font_6d30b56e86dba34195d450ee.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.986816;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:fff;src:url('chunks/assets/font_6440720f87227e306034df57.woff2')format("woff");}.fff{font-family:fff;line-height:1.024902;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:ff10;src:url('chunks/assets/font_057076f7545008f3f02b82c0.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.861816;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:ff11;src:url('chunks/assets/font_6440720f87227e306034df57.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.024902;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;}
.m3{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.338000px;}
.ls5{letter-spacing:-1.950000px;}
.ls9{letter-spacing:-1.170000px;}
.ls6{letter-spacing:-0.624000px;}
.ls4{letter-spacing:-0.330000px;}
.ls8{letter-spacing:-0.312000px;}
.ls7{letter-spacing:-0.156000px;}
.ls3{letter-spacing:-0.078000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:24.480000px;}
.ls1{letter-spacing:45.672000px;}
.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;}
}
.ws3{word-spacing:-45.672000px;}
.ws4{word-spacing:-24.480000px;}
.wsf{word-spacing:-20.340000px;}
.ws2{word-spacing:-14.916000px;}
.ws0{word-spacing:-14.678320px;}
.ws6{word-spacing:-13.560000px;}
.ws5{word-spacing:-12.204000px;}
.wsc{word-spacing:-8.696028px;}
.ws9{word-spacing:-0.078000px;}
.ws1{word-spacing:0.000000px;}
.ws7{word-spacing:0.078000px;}
.wsd{word-spacing:0.234000px;}
.ws8{word-spacing:0.330000px;}
.wsb{word-spacing:0.546000px;}
.wse{word-spacing:1.092000px;}
.wsa{word-spacing:1.872000px;}
._f{margin-left:-26.516400px;}
._10{margin-left:-15.199200px;}
._11{margin-left:-14.005200px;}
._17{margin-left:-11.759994px;}
._16{margin-left:-7.603200px;}
._14{margin-left:-6.527400px;}
._1a{margin-left:-5.518800px;}
._c{margin-left:-4.435200px;}
._e{margin-left:-3.254400px;}
._d{margin-left:-1.465200px;}
._a{width:1.385992px;}
._3{width:2.870984px;}
._6{width:4.124977px;}
._12{width:5.979600px;}
._4{width:7.193961px;}
._13{width:8.767918px;}
._9{width:10.262944px;}
._15{width:11.428559px;}
._8{width:13.265928px;}
._2{width:15.377916px;}
._18{width:17.457000px;}
._19{width:18.711000px;}
._5{width:20.492888px;}
._1{width:28.313846px;}
._7{width:33.164819px;}
._b{width:45.209753px;}
._0{width:820.875237px;}
.fc5{color:rgb(76,142,165);}
.fc2{color:rgb(65,160,17);}
.fc3{color:rgb(0,94,126);}
.fc1{color:rgb(255,101,0);}
.fc4{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:32.999820px;}
.fse{font-size:36.000000px;}
.fs3{font-size:37.714080px;}
.fs14{font-size:38.478000px;}
.fs6{font-size:41.485488px;}
.fs7{font-size:42.428340px;}
.fs2{font-size:47.142600px;}
.fs1{font-size:51.856860px;}
.fs5{font-size:52.799712px;}
.fs10{font-size:54.000000px;}
.fs13{font-size:60.000000px;}
.fs0{font-size:65.999640px;}
.fsb{font-size:66.000000px;}
.fs11{font-size:72.000000px;}
.fsd{font-size:78.000000px;}
.fs12{font-size:90.000000px;}
.fsc{font-size:114.000000px;}
.fsf{font-size:126.000000px;}
.fs8{font-size:252.000000px;}
.fsa{font-size:288.000000px;}
.fs9{font-size:519.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.298365px;}
.y35{bottom:46.346400px;}
.y20{bottom:50.265797px;}
.y1f{bottom:63.630724px;}
.y1e{bottom:76.995651px;}
.y1d{bottom:90.360579px;}
.y1c{bottom:101.780873px;}
.y34{bottom:102.047250px;}
.yb1{bottom:102.053400px;}
.y123{bottom:102.062400px;}
.y87{bottom:102.157350px;}
.y98{bottom:105.938400px;}
.y46{bottom:108.908850px;}
.y6a{bottom:109.444200px;}
.y14f{bottom:110.534100px;}
.y10a{bottom:115.453350px;}
.yb0{bottom:118.550400px;}
.y122{bottom:118.559400px;}
.yf2{bottom:118.715850px;}
.yd0{bottom:119.291700px;}
.y86{bottom:122.864850px;}
.y1b{bottom:123.419327px;}
.y97{bottom:124.988400px;}
.y45{bottom:125.108850px;}
.y14e{bottom:129.015600px;}
.y69{bottom:130.151700px;}
.yaf{bottom:135.047400px;}
.y121{bottom:135.056400px;}
.y109{bottom:136.160850px;}
.y21{bottom:136.778700px;}
.yf1{bottom:139.423350px;}
.ycf{bottom:139.999200px;}
.y44{bottom:141.308850px;}
.y28{bottom:142.439400px;}
.y85{bottom:143.572350px;}
.y96{bottom:144.038400px;}
.y14d{bottom:145.364100px;}
.y68{bottom:150.859200px;}
.y120{bottom:151.553400px;}
.y108{bottom:156.868350px;}
.y43{bottom:157.508850px;}
.yf0{bottom:160.130850px;}
.yce{bottom:160.706700px;}
.y14c{bottom:161.712600px;}
.y95{bottom:163.088400px;}
.y84{bottom:164.279850px;}
.y11f{bottom:168.050400px;}
.y42{bottom:173.708850px;}
.yae{bottom:175.611600px;}
.y107{bottom:177.575850px;}
.y14b{bottom:178.061100px;}
.y1a{bottom:179.601520px;}
.y67{bottom:180.488400px;}
.yef{bottom:180.838350px;}
.ycd{bottom:181.414200px;}
.y94{bottom:182.138400px;}
.y27{bottom:184.431900px;}
.y11e{bottom:184.547400px;}
.y83{bottom:184.987350px;}
.y19{bottom:189.619323px;}
.y41{bottom:189.908850px;}
.y14a{bottom:194.409600px;}
.yad{bottom:196.319100px;}
.y18{bottom:198.812130px;}
.y66{bottom:199.538400px;}
.y93{bottom:201.188400px;}
.yee{bottom:201.545850px;}
.ycc{bottom:202.121700px;}
.y26{bottom:205.436400px;}
.y82{bottom:205.694850px;}
.y40{bottom:206.108850px;}
.y17{bottom:207.156370px;}
.y106{bottom:207.204900px;}
.y149{bottom:210.758100px;}
.y16{bottom:215.512396px;}
.yac{bottom:217.026600px;}
.y65{bottom:218.588400px;}
.y92{bottom:220.238400px;}
.yed{bottom:222.253350px;}
.y3f{bottom:222.308850px;}
.ycb{bottom:222.829200px;}
.y15{bottom:223.868422px;}
.y105{bottom:226.254900px;}
.y81{bottom:226.402350px;}
.y25{bottom:226.440900px;}
.y148{bottom:227.106600px;}
.y14{bottom:232.212662px;}
.y64{bottom:237.638400px;}
.yab{bottom:237.734100px;}
.y3e{bottom:238.508850px;}
.y91{bottom:239.288400px;}
.y13{bottom:240.568688px;}
.yec{bottom:242.960850px;}
.y147{bottom:243.455100px;}
.yca{bottom:243.536700px;}
.y104{bottom:245.304900px;}
.y80{bottom:247.109850px;}
.y12{bottom:248.924714px;}
.y3d{bottom:254.708850px;}
.y63{bottom:256.688400px;}
.y11{bottom:257.268954px;}
.y90{bottom:258.338400px;}
.y146{bottom:259.803600px;}
.yeb{bottom:263.668350px;}
.yc9{bottom:264.244200px;}
.y103{bottom:264.354900px;}
.y10{bottom:265.624980px;}
.yaa{bottom:267.363150px;}
.y7f{bottom:267.817350px;}
.yf{bottom:273.981006px;}
.y8f{bottom:277.388400px;}
.y102{bottom:283.404900px;}
.yea{bottom:284.375850px;}
.y33{bottom:284.425200px;}
.y62{bottom:284.569950px;}
.yc8{bottom:284.951700px;}
.ya9{bottom:286.413150px;}
.y7e{bottom:288.524850px;}
.y11d{bottom:290.840100px;}
.ye{bottom:291.164483px;}
.y101{bottom:302.454900px;}
.y61{bottom:305.277450px;}
.y8e{bottom:305.337600px;}
.y32{bottom:305.429700px;}
.ya8{bottom:305.463150px;}
.yc7{bottom:305.659200px;}
.y7d{bottom:309.232350px;}
.y11c{bottom:311.547600px;}
.ye9{bottom:314.004900px;}
.y100{bottom:321.504900px;}
.ya7{bottom:324.513150px;}
.y60{bottom:325.984950px;}
.y8d{bottom:326.045100px;}
.y31{bottom:326.434200px;}
.y145{bottom:327.182100px;}
.y7c{bottom:329.939850px;}
.y11b{bottom:332.255100px;}
.ye8{bottom:333.054900px;}
.yc6{bottom:335.288400px;}
.y144{bottom:343.530600px;}
.ya6{bottom:343.563150px;}
.y5f{bottom:346.692450px;}
.y8c{bottom:346.752600px;}
.y30{bottom:347.438700px;}
.yff{bottom:349.394100px;}
.y7b{bottom:350.647350px;}
.ye7{bottom:352.104900px;}
.y11a{bottom:352.962600px;}
.yc5{bottom:354.338400px;}
.y143{bottom:359.879100px;}
.y5e{bottom:367.399950px;}
.y8b{bottom:367.460100px;}
.y2f{bottom:368.443200px;}
.yfe{bottom:370.101600px;}
.ye6{bottom:371.154900px;}
.y7a{bottom:371.354850px;}
.ya5{bottom:371.444850px;}
.yc4{bottom:373.388400px;}
.y119{bottom:373.670100px;}
.y142{bottom:376.227600px;}
.y5d{bottom:388.107450px;}
.y8a{bottom:388.167600px;}
.y2e{bottom:389.447700px;}
.ye5{bottom:390.204900px;}
.yfd{bottom:390.809100px;}
.y79{bottom:392.062350px;}
.ya4{bottom:392.152350px;}
.yc3{bottom:392.438400px;}
.y141{bottom:392.576100px;}
.y118{bottom:394.377600px;}
.y5c{bottom:408.814950px;}
.y140{bottom:408.924600px;}
.ye4{bottom:409.254900px;}
.y2d{bottom:410.452200px;}
.yc2{bottom:411.488400px;}
.yfc{bottom:411.516600px;}
.yd{bottom:412.250251px;}
.y78{bottom:412.769850px;}
.ya3{bottom:412.859850px;}
.y117{bottom:415.085100px;}
.y13f{bottom:425.273100px;}
.y89{bottom:426.725850px;}
.ye3{bottom:428.304900px;}
.y5b{bottom:429.522450px;}
.yc1{bottom:430.538400px;}
.y2c{bottom:431.456700px;}
.yfb{bottom:432.224100px;}
.y77{bottom:433.477350px;}
.ya2{bottom:433.567350px;}
.y116{bottom:435.792600px;}
.y13e{bottom:441.621600px;}
.yc0{bottom:449.588400px;}
.y5a{bottom:450.229950px;}
.yfa{bottom:452.931600px;}
.y88{bottom:453.725850px;}
.y76{bottom:454.184850px;}
.ya1{bottom:454.274850px;}
.ye2{bottom:456.246600px;}
.y115{bottom:456.500100px;}
.y13d{bottom:457.970100px;}
.ybf{bottom:468.638400px;}
.y59{bottom:470.937450px;}
.yf9{bottom:473.639100px;}
.y13c{bottom:474.318600px;}
.y75{bottom:474.892350px;}
.ya0{bottom:474.982350px;}
.ye1{bottom:476.954100px;}
.y114{bottom:477.207600px;}
.ybe{bottom:487.688400px;}
.y13b{bottom:490.667100px;}
.y58{bottom:491.644950px;}
.yf8{bottom:494.346600px;}
.y74{bottom:495.599850px;}
.y9f{bottom:495.689850px;}
.ye0{bottom:497.661600px;}
.y113{bottom:497.915100px;}
.ybd{bottom:506.738400px;}
.y13a{bottom:507.015600px;}
.y57{bottom:512.352450px;}
.yf7{bottom:515.054100px;}
.y73{bottom:516.307350px;}
.y9e{bottom:516.397350px;}
.ydf{bottom:518.369100px;}
.y112{bottom:518.622600px;}
.y2b{bottom:519.056700px;}
.y139{bottom:523.364100px;}
.ybc{bottom:525.788400px;}
.y56{bottom:533.059950px;}
.yf6{bottom:535.761600px;}
.y72{bottom:537.014850px;}
.y9d{bottom:537.104850px;}
.yde{bottom:539.076600px;}
.y111{bottom:539.330100px;}
.y138{bottom:539.712600px;}
.y2a{bottom:553.256700px;}
.ybb{bottom:553.715100px;}
.y55{bottom:553.767450px;}
.y137{bottom:556.061100px;}
.yf5{bottom:556.469100px;}
.y71{bottom:557.722350px;}
.y9c{bottom:557.812350px;}
.ydd{bottom:559.784100px;}
.y110{bottom:560.037600px;}
.y136{bottom:572.409600px;}
.yc{bottom:574.420795px;}
.yba{bottom:574.422600px;}
.yf4{bottom:577.176600px;}
.y70{bottom:578.429850px;}
.y9b{bottom:578.519850px;}
.y10f{bottom:580.745100px;}
.y29{bottom:587.456700px;}
.y135{bottom:588.758100px;}
.ydc{bottom:589.413300px;}
.y54{bottom:592.325850px;}
.yb9{bottom:595.130100px;}
.yf3{bottom:597.884100px;}
.y6f{bottom:599.137350px;}
.y9a{bottom:599.227350px;}
.yb{bottom:600.184226px;}
.y10e{bottom:601.452600px;}
.y134{bottom:605.106600px;}
.ydb{bottom:608.463300px;}
.y3c{bottom:613.192350px;}
.ya{bottom:613.549153px;}
.yb8{bottom:615.837600px;}
.y53{bottom:619.325850px;}
.y6e{bottom:619.844850px;}
.y99{bottom:619.934850px;}
.y133{bottom:621.455100px;}
.y10d{bottom:622.160100px;}
.yda{bottom:627.513300px;}
.yb7{bottom:636.545100px;}
.y132{bottom:637.803600px;}
.y9{bottom:639.571869px;}
.y6d{bottom:640.552350px;}
.y10c{bottom:642.867600px;}
.yd9{bottom:646.563300px;}
.y3b{bottom:650.992350px;}
.y8{bottom:652.936796px;}
.y131{bottom:654.152100px;}
.y24{bottom:657.176850px;}
.yb6{bottom:657.252600px;}
.y6c{bottom:661.259850px;}
.yd8{bottom:665.613300px;}
.y7{bottom:666.301723px;}
.y130{bottom:670.500600px;}
.yb5{bottom:677.960100px;}
.y6{bottom:679.666650px;}
.y10b{bottom:681.425850px;}
.y52{bottom:681.967350px;}
.yd7{bottom:684.663300px;}
.y12f{bottom:686.849100px;}
.y3a{bottom:688.792350px;}
.yb4{bottom:698.667600px;}
.y51{bottom:702.674850px;}
.y12e{bottom:703.197600px;}
.yd6{bottom:703.713300px;}
.y12d{bottom:719.546100px;}
.yd5{bottom:722.763300px;}
.y23{bottom:723.200850px;}
.y50{bottom:723.382350px;}
.y39{bottom:726.592350px;}
.y12c{bottom:735.894600px;}
.yb3{bottom:737.225850px;}
.yd4{bottom:741.813300px;}
.y5{bottom:741.942024px;}
.y4f{bottom:744.089850px;}
.y12b{bottom:752.243100px;}
.yd3{bottom:760.863300px;}
.y4{bottom:761.765488px;}
.yb2{bottom:764.225850px;}
.y38{bottom:764.392350px;}
.y4e{bottom:764.797350px;}
.y12a{bottom:768.591600px;}
.yd2{bottom:779.913300px;}
.y129{bottom:784.940100px;}
.y3{bottom:785.148217px;}
.y4d{bottom:785.504850px;}
.yd1{bottom:798.963300px;}
.y128{bottom:801.288600px;}
.y4c{bottom:806.212350px;}
.y2{bottom:808.542733px;}
.y22{bottom:811.700850px;}
.y127{bottom:817.637100px;}
.y4b{bottom:826.919850px;}
.y126{bottom:833.985600px;}
.y37{bottom:839.992350px;}
.y4a{bottom:847.627350px;}
.y125{bottom:850.334100px;}
.y49{bottom:868.334850px;}
.y6b{bottom:875.155500px;}
.y36{bottom:877.792350px;}
.y124{bottom:884.542350px;}
.y48{bottom:889.042350px;}
.y47{bottom:952.015800px;}
.h9{height:24.452867px;}
.h7{height:27.946133px;}
.h8{height:28.021561px;}
.h16{height:30.480469px;}
.hc{height:31.439400px;}
.h6{height:34.932667px;}
.ha{height:35.026952px;}
.h5{height:38.425933px;}
.hb{height:39.124587px;}
.h20{height:42.820312px;}
.h21{height:43.664062px;}
.h1a{height:45.720703px;}
.h1d{height:47.578125px;}
.h3{height:48.905733px;}
.h4{height:49.037733px;}
.h1e{height:50.800781px;}
.h12{height:52.335938px;}
.h15{height:54.272461px;}
.h13{height:55.880859px;}
.h1f{height:56.240859px;}
.h1b{height:60.960938px;}
.h1c{height:72.773438px;}
.h17{height:87.670898px;}
.h14{height:96.521484px;}
.h18{height:99.914062px;}
.h19{height:106.681641px;}
.hf{height:172.265625px;}
.h11{height:228.375000px;}
.h10{height:354.785156px;}
.h2{height:992.222088px;}
.h0{height:992.820000px;}
.h1{height:993.000000px;}
.he{height:999.000000px;}
.hd{height:999.213000px;}
.w1{width:701.250000px;}
.w3{width:701.575500px;}
.w2{width:701.576173px;}
.w0{width:701.580000px;}
.x0{left:0.000000px;}
.x3{left:36.747657px;}
.x1{left:43.430120px;}
.x16{left:46.771650px;}
.x1d{left:60.271650px;}
.x14{left:69.335400px;}
.x1b{left:76.535400px;}
.x8{left:80.205750px;}
.x10{left:88.541400px;}
.x1c{left:97.795200px;}
.xd{left:106.916700px;}
.x15{left:114.182400px;}
.xb{left:115.780200px;}
.x2{left:116.925434px;}
.xc{left:124.159200px;}
.x9{left:135.959250px;}
.x18{left:161.574750px;}
.x1e{left:182.834550px;}
.x7{left:190.392750px;}
.x11{left:220.376400px;}
.x13{left:221.960400px;}
.x12{left:227.355900px;}
.xf{left:265.371900px;}
.xa{left:281.522250px;}
.x25{left:302.714400px;}
.xe{left:307.133400px;}
.x20{left:321.803400px;}
.x23{left:340.986900px;}
.x4{left:344.105623px;}
.x22{left:346.089900px;}
.x27{left:374.102400px;}
.x26{left:405.125400px;}
.x17{left:407.083800px;}
.x24{left:419.718900px;}
.x21{left:432.570900px;}
.x5{left:449.502150px;}
.x1f{left:454.089900px;}
.x6{left:481.152750px;}
.x19{left:625.174650px;}
.x1a{left:642.001350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.856000pt;}
.ls5{letter-spacing:-1.733333pt;}
.ls9{letter-spacing:-1.040000pt;}
.ls6{letter-spacing:-0.554667pt;}
.ls4{letter-spacing:-0.293333pt;}
.ls8{letter-spacing:-0.277333pt;}
.ls7{letter-spacing:-0.138667pt;}
.ls3{letter-spacing:-0.069333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:21.760000pt;}
.ls1{letter-spacing:40.597333pt;}
.ws3{word-spacing:-40.597333pt;}
.ws4{word-spacing:-21.760000pt;}
.wsf{word-spacing:-18.080000pt;}
.ws2{word-spacing:-13.258667pt;}
.ws0{word-spacing:-13.047395pt;}
.ws6{word-spacing:-12.053333pt;}
.ws5{word-spacing:-10.848000pt;}
.wsc{word-spacing:-7.729803pt;}
.ws9{word-spacing:-0.069333pt;}
.ws1{word-spacing:0.000000pt;}
.ws7{word-spacing:0.069333pt;}
.wsd{word-spacing:0.208000pt;}
.ws8{word-spacing:0.293333pt;}
.wsb{word-spacing:0.485333pt;}
.wse{word-spacing:0.970667pt;}
.wsa{word-spacing:1.664000pt;}
._f{margin-left:-23.570133pt;}
._10{margin-left:-13.510400pt;}
._11{margin-left:-12.449067pt;}
._17{margin-left:-10.453328pt;}
._16{margin-left:-6.758400pt;}
._14{margin-left:-5.802133pt;}
._1a{margin-left:-4.905600pt;}
._c{margin-left:-3.942400pt;}
._e{margin-left:-2.892800pt;}
._d{margin-left:-1.302400pt;}
._a{width:1.231993pt;}
._3{width:2.551986pt;}
._6{width:3.666647pt;}
._12{width:5.315200pt;}
._4{width:6.394632pt;}
._13{width:7.793705pt;}
._9{width:9.122617pt;}
._15{width:10.158719pt;}
._8{width:11.791936pt;}
._2{width:13.669259pt;}
._18{width:15.517333pt;}
._19{width:16.632000pt;}
._5{width:18.215901pt;}
._1{width:25.167863pt;}
._7{width:29.479839pt;}
._b{width:40.186447pt;}
._0{width:729.666877pt;}
.fs4{font-size:29.333173pt;}
.fse{font-size:32.000000pt;}
.fs3{font-size:33.523627pt;}
.fs14{font-size:34.202667pt;}
.fs6{font-size:36.875989pt;}
.fs7{font-size:37.714080pt;}
.fs2{font-size:41.904533pt;}
.fs1{font-size:46.094987pt;}
.fs5{font-size:46.933077pt;}
.fs10{font-size:48.000000pt;}
.fs13{font-size:53.333333pt;}
.fs0{font-size:58.666347pt;}
.fsb{font-size:58.666667pt;}
.fs11{font-size:64.000000pt;}
.fsd{font-size:69.333333pt;}
.fs12{font-size:80.000000pt;}
.fsc{font-size:101.333333pt;}
.fsf{font-size:112.000000pt;}
.fs8{font-size:224.000000pt;}
.fsa{font-size:256.000000pt;}
.fs9{font-size:461.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.265213pt;}
.y35{bottom:41.196800pt;}
.y20{bottom:44.680709pt;}
.y1f{bottom:56.560644pt;}
.y1e{bottom:68.440579pt;}
.y1d{bottom:80.320514pt;}
.y1c{bottom:90.471887pt;}
.y34{bottom:90.708667pt;}
.yb1{bottom:90.714133pt;}
.y123{bottom:90.722133pt;}
.y87{bottom:90.806533pt;}
.y98{bottom:94.167467pt;}
.y46{bottom:96.807867pt;}
.y6a{bottom:97.283733pt;}
.y14f{bottom:98.252533pt;}
.y10a{bottom:102.625200pt;}
.yb0{bottom:105.378133pt;}
.y122{bottom:105.386133pt;}
.yf2{bottom:105.525200pt;}
.yd0{bottom:106.037067pt;}
.y86{bottom:109.213200pt;}
.y1b{bottom:109.706068pt;}
.y97{bottom:111.100800pt;}
.y45{bottom:111.207867pt;}
.y14e{bottom:114.680533pt;}
.y69{bottom:115.690400pt;}
.yaf{bottom:120.042133pt;}
.y121{bottom:120.050133pt;}
.y109{bottom:121.031867pt;}
.y21{bottom:121.581067pt;}
.yf1{bottom:123.931867pt;}
.ycf{bottom:124.443733pt;}
.y44{bottom:125.607867pt;}
.y28{bottom:126.612800pt;}
.y85{bottom:127.619867pt;}
.y96{bottom:128.034133pt;}
.y14d{bottom:129.212533pt;}
.y68{bottom:134.097067pt;}
.y120{bottom:134.714133pt;}
.y108{bottom:139.438533pt;}
.y43{bottom:140.007867pt;}
.yf0{bottom:142.338533pt;}
.yce{bottom:142.850400pt;}
.y14c{bottom:143.744533pt;}
.y95{bottom:144.967467pt;}
.y84{bottom:146.026533pt;}
.y11f{bottom:149.378133pt;}
.y42{bottom:154.407867pt;}
.yae{bottom:156.099200pt;}
.y107{bottom:157.845200pt;}
.y14b{bottom:158.276533pt;}
.y1a{bottom:159.645796pt;}
.y67{bottom:160.434133pt;}
.yef{bottom:160.745200pt;}
.ycd{bottom:161.257067pt;}
.y94{bottom:161.900800pt;}
.y27{bottom:163.939467pt;}
.y11e{bottom:164.042133pt;}
.y83{bottom:164.433200pt;}
.y19{bottom:168.550509pt;}
.y41{bottom:168.807867pt;}
.y14a{bottom:172.808533pt;}
.yad{bottom:174.505867pt;}
.y18{bottom:176.721893pt;}
.y66{bottom:177.367467pt;}
.y93{bottom:178.834133pt;}
.yee{bottom:179.151867pt;}
.ycc{bottom:179.663733pt;}
.y26{bottom:182.610133pt;}
.y82{bottom:182.839867pt;}
.y40{bottom:183.207867pt;}
.y17{bottom:184.138996pt;}
.y106{bottom:184.182133pt;}
.y149{bottom:187.340533pt;}
.y16{bottom:191.566574pt;}
.yac{bottom:192.912533pt;}
.y65{bottom:194.300800pt;}
.y92{bottom:195.767467pt;}
.yed{bottom:197.558533pt;}
.y3f{bottom:197.607867pt;}
.ycb{bottom:198.070400pt;}
.y15{bottom:198.994153pt;}
.y105{bottom:201.115467pt;}
.y81{bottom:201.246533pt;}
.y25{bottom:201.280800pt;}
.y148{bottom:201.872533pt;}
.y14{bottom:206.411255pt;}
.y64{bottom:211.234133pt;}
.yab{bottom:211.319200pt;}
.y3e{bottom:212.007867pt;}
.y91{bottom:212.700800pt;}
.y13{bottom:213.838834pt;}
.yec{bottom:215.965200pt;}
.y147{bottom:216.404533pt;}
.yca{bottom:216.477067pt;}
.y104{bottom:218.048800pt;}
.y80{bottom:219.653200pt;}
.y12{bottom:221.266412pt;}
.y3d{bottom:226.407867pt;}
.y63{bottom:228.167467pt;}
.y11{bottom:228.683515pt;}
.y90{bottom:229.634133pt;}
.y146{bottom:230.936533pt;}
.yeb{bottom:234.371867pt;}
.yc9{bottom:234.883733pt;}
.y103{bottom:234.982133pt;}
.y10{bottom:236.111093pt;}
.yaa{bottom:237.656133pt;}
.y7f{bottom:238.059867pt;}
.yf{bottom:243.538672pt;}
.y8f{bottom:246.567467pt;}
.y102{bottom:251.915467pt;}
.yea{bottom:252.778533pt;}
.y33{bottom:252.822400pt;}
.y62{bottom:252.951067pt;}
.yc8{bottom:253.290400pt;}
.ya9{bottom:254.589467pt;}
.y7e{bottom:256.466533pt;}
.y11d{bottom:258.524533pt;}
.ye{bottom:258.812874pt;}
.y101{bottom:268.848800pt;}
.y61{bottom:271.357733pt;}
.y8e{bottom:271.411200pt;}
.y32{bottom:271.493067pt;}
.ya8{bottom:271.522800pt;}
.yc7{bottom:271.697067pt;}
.y7d{bottom:274.873200pt;}
.y11c{bottom:276.931200pt;}
.ye9{bottom:279.115467pt;}
.y100{bottom:285.782133pt;}
.ya7{bottom:288.456133pt;}
.y60{bottom:289.764400pt;}
.y8d{bottom:289.817867pt;}
.y31{bottom:290.163733pt;}
.y145{bottom:290.828533pt;}
.y7c{bottom:293.279867pt;}
.y11b{bottom:295.337867pt;}
.ye8{bottom:296.048800pt;}
.yc6{bottom:298.034133pt;}
.y144{bottom:305.360533pt;}
.ya6{bottom:305.389467pt;}
.y5f{bottom:308.171067pt;}
.y8c{bottom:308.224533pt;}
.y30{bottom:308.834400pt;}
.yff{bottom:310.572533pt;}
.y7b{bottom:311.686533pt;}
.ye7{bottom:312.982133pt;}
.y11a{bottom:313.744533pt;}
.yc5{bottom:314.967467pt;}
.y143{bottom:319.892533pt;}
.y5e{bottom:326.577733pt;}
.y8b{bottom:326.631200pt;}
.y2f{bottom:327.505067pt;}
.yfe{bottom:328.979200pt;}
.ye6{bottom:329.915467pt;}
.y7a{bottom:330.093200pt;}
.ya5{bottom:330.173200pt;}
.yc4{bottom:331.900800pt;}
.y119{bottom:332.151200pt;}
.y142{bottom:334.424533pt;}
.y5d{bottom:344.984400pt;}
.y8a{bottom:345.037867pt;}
.y2e{bottom:346.175733pt;}
.ye5{bottom:346.848800pt;}
.yfd{bottom:347.385867pt;}
.y79{bottom:348.499867pt;}
.ya4{bottom:348.579867pt;}
.yc3{bottom:348.834133pt;}
.y141{bottom:348.956533pt;}
.y118{bottom:350.557867pt;}
.y5c{bottom:363.391067pt;}
.y140{bottom:363.488533pt;}
.ye4{bottom:363.782133pt;}
.y2d{bottom:364.846400pt;}
.yc2{bottom:365.767467pt;}
.yfc{bottom:365.792533pt;}
.yd{bottom:366.444668pt;}
.y78{bottom:366.906533pt;}
.ya3{bottom:366.986533pt;}
.y117{bottom:368.964533pt;}
.y13f{bottom:378.020533pt;}
.y89{bottom:379.311867pt;}
.ye3{bottom:380.715467pt;}
.y5b{bottom:381.797733pt;}
.yc1{bottom:382.700800pt;}
.y2c{bottom:383.517067pt;}
.yfb{bottom:384.199200pt;}
.y77{bottom:385.313200pt;}
.ya2{bottom:385.393200pt;}
.y116{bottom:387.371200pt;}
.y13e{bottom:392.552533pt;}
.yc0{bottom:399.634133pt;}
.y5a{bottom:400.204400pt;}
.yfa{bottom:402.605867pt;}
.y88{bottom:403.311867pt;}
.y76{bottom:403.719867pt;}
.ya1{bottom:403.799867pt;}
.ye2{bottom:405.552533pt;}
.y115{bottom:405.777867pt;}
.y13d{bottom:407.084533pt;}
.ybf{bottom:416.567467pt;}
.y59{bottom:418.611067pt;}
.yf9{bottom:421.012533pt;}
.y13c{bottom:421.616533pt;}
.y75{bottom:422.126533pt;}
.ya0{bottom:422.206533pt;}
.ye1{bottom:423.959200pt;}
.y114{bottom:424.184533pt;}
.ybe{bottom:433.500800pt;}
.y13b{bottom:436.148533pt;}
.y58{bottom:437.017733pt;}
.yf8{bottom:439.419200pt;}
.y74{bottom:440.533200pt;}
.y9f{bottom:440.613200pt;}
.ye0{bottom:442.365867pt;}
.y113{bottom:442.591200pt;}
.ybd{bottom:450.434133pt;}
.y13a{bottom:450.680533pt;}
.y57{bottom:455.424400pt;}
.yf7{bottom:457.825867pt;}
.y73{bottom:458.939867pt;}
.y9e{bottom:459.019867pt;}
.ydf{bottom:460.772533pt;}
.y112{bottom:460.997867pt;}
.y2b{bottom:461.383733pt;}
.y139{bottom:465.212533pt;}
.ybc{bottom:467.367467pt;}
.y56{bottom:473.831067pt;}
.yf6{bottom:476.232533pt;}
.y72{bottom:477.346533pt;}
.y9d{bottom:477.426533pt;}
.yde{bottom:479.179200pt;}
.y111{bottom:479.404533pt;}
.y138{bottom:479.744533pt;}
.y2a{bottom:491.783733pt;}
.ybb{bottom:492.191200pt;}
.y55{bottom:492.237733pt;}
.y137{bottom:494.276533pt;}
.yf5{bottom:494.639200pt;}
.y71{bottom:495.753200pt;}
.y9c{bottom:495.833200pt;}
.ydd{bottom:497.585867pt;}
.y110{bottom:497.811200pt;}
.y136{bottom:508.808533pt;}
.yc{bottom:510.596263pt;}
.yba{bottom:510.597867pt;}
.yf4{bottom:513.045867pt;}
.y70{bottom:514.159867pt;}
.y9b{bottom:514.239867pt;}
.y10f{bottom:516.217867pt;}
.y29{bottom:522.183733pt;}
.y135{bottom:523.340533pt;}
.ydc{bottom:523.922933pt;}
.y54{bottom:526.511867pt;}
.yb9{bottom:529.004533pt;}
.yf3{bottom:531.452533pt;}
.y6f{bottom:532.566533pt;}
.y9a{bottom:532.646533pt;}
.yb{bottom:533.497090pt;}
.y10e{bottom:534.624533pt;}
.y134{bottom:537.872533pt;}
.ydb{bottom:540.856267pt;}
.y3c{bottom:545.059867pt;}
.ya{bottom:545.377025pt;}
.yb8{bottom:547.411200pt;}
.y53{bottom:550.511867pt;}
.y6e{bottom:550.973200pt;}
.y99{bottom:551.053200pt;}
.y133{bottom:552.404533pt;}
.y10d{bottom:553.031200pt;}
.yda{bottom:557.789600pt;}
.yb7{bottom:565.817867pt;}
.y132{bottom:566.936533pt;}
.y9{bottom:568.508328pt;}
.y6d{bottom:569.379867pt;}
.y10c{bottom:571.437867pt;}
.yd9{bottom:574.722933pt;}
.y3b{bottom:578.659867pt;}
.y8{bottom:580.388263pt;}
.y131{bottom:581.468533pt;}
.y24{bottom:584.157200pt;}
.yb6{bottom:584.224533pt;}
.y6c{bottom:587.786533pt;}
.yd8{bottom:591.656267pt;}
.y7{bottom:592.268198pt;}
.y130{bottom:596.000533pt;}
.yb5{bottom:602.631200pt;}
.y6{bottom:604.148133pt;}
.y10b{bottom:605.711867pt;}
.y52{bottom:606.193200pt;}
.yd7{bottom:608.589600pt;}
.y12f{bottom:610.532533pt;}
.y3a{bottom:612.259867pt;}
.yb4{bottom:621.037867pt;}
.y51{bottom:624.599867pt;}
.y12e{bottom:625.064533pt;}
.yd6{bottom:625.522933pt;}
.y12d{bottom:639.596533pt;}
.yd5{bottom:642.456267pt;}
.y23{bottom:642.845200pt;}
.y50{bottom:643.006533pt;}
.y39{bottom:645.859867pt;}
.y12c{bottom:654.128533pt;}
.yb3{bottom:655.311867pt;}
.yd4{bottom:659.389600pt;}
.y5{bottom:659.504022pt;}
.y4f{bottom:661.413200pt;}
.y12b{bottom:668.660533pt;}
.yd3{bottom:676.322933pt;}
.y4{bottom:677.124878pt;}
.yb2{bottom:679.311867pt;}
.y38{bottom:679.459867pt;}
.y4e{bottom:679.819867pt;}
.y12a{bottom:683.192533pt;}
.yd2{bottom:693.256267pt;}
.y129{bottom:697.724533pt;}
.y3{bottom:697.909527pt;}
.y4d{bottom:698.226533pt;}
.yd1{bottom:710.189600pt;}
.y128{bottom:712.256533pt;}
.y4c{bottom:716.633200pt;}
.y2{bottom:718.704651pt;}
.y22{bottom:721.511867pt;}
.y127{bottom:726.788533pt;}
.y4b{bottom:735.039867pt;}
.y126{bottom:741.320533pt;}
.y37{bottom:746.659867pt;}
.y4a{bottom:753.446533pt;}
.y125{bottom:755.852533pt;}
.y49{bottom:771.853200pt;}
.y6b{bottom:777.916000pt;}
.y36{bottom:780.259867pt;}
.y124{bottom:786.259867pt;}
.y48{bottom:790.259867pt;}
.y47{bottom:846.236267pt;}
.h9{height:21.735881pt;}
.h7{height:24.841007pt;}
.h8{height:24.908055pt;}
.h16{height:27.093750pt;}
.hc{height:27.946133pt;}
.h6{height:31.051259pt;}
.ha{height:31.135068pt;}
.h5{height:34.156385pt;}
.hb{height:34.777410pt;}
.h20{height:38.062500pt;}
.h21{height:38.812500pt;}
.h1a{height:40.640625pt;}
.h1d{height:42.291667pt;}
.h3{height:43.471763pt;}
.h4{height:43.589096pt;}
.h1e{height:45.156250pt;}
.h12{height:46.520833pt;}
.h15{height:48.242188pt;}
.h13{height:49.671875pt;}
.h1f{height:49.991875pt;}
.h1b{height:54.187500pt;}
.h1c{height:64.687500pt;}
.h17{height:77.929688pt;}
.h14{height:85.796875pt;}
.h18{height:88.812500pt;}
.h19{height:94.828125pt;}
.hf{height:153.125000pt;}
.h11{height:203.000000pt;}
.h10{height:315.364583pt;}
.h2{height:881.975189pt;}
.h0{height:882.506667pt;}
.h1{height:882.666667pt;}
.he{height:888.000000pt;}
.hd{height:888.189333pt;}
.w1{width:623.333333pt;}
.w3{width:623.622667pt;}
.w2{width:623.623265pt;}
.w0{width:623.626667pt;}
.x0{left:0.000000pt;}
.x3{left:32.664584pt;}
.x1{left:38.604551pt;}
.x16{left:41.574800pt;}
.x1d{left:53.574800pt;}
.x14{left:61.631467pt;}
.x1b{left:68.031467pt;}
.x8{left:71.294000pt;}
.x10{left:78.703467pt;}
.x1c{left:86.929067pt;}
.xd{left:95.037067pt;}
.x15{left:101.495467pt;}
.xb{left:102.915733pt;}
.x2{left:103.933719pt;}
.xc{left:110.363733pt;}
.x9{left:120.852667pt;}
.x18{left:143.622000pt;}
.x1e{left:162.519600pt;}
.x7{left:169.238000pt;}
.x11{left:195.890133pt;}
.x13{left:197.298133pt;}
.x12{left:202.094133pt;}
.xf{left:235.886133pt;}
.xa{left:250.242000pt;}
.x25{left:269.079467pt;}
.xe{left:273.007467pt;}
.x20{left:286.047467pt;}
.x23{left:303.099467pt;}
.x4{left:305.871665pt;}
.x22{left:307.635467pt;}
.x27{left:332.535467pt;}
.x26{left:360.111467pt;}
.x17{left:361.852267pt;}
.x24{left:373.083467pt;}
.x21{left:384.507467pt;}
.x5{left:399.557467pt;}
.x1f{left:403.635467pt;}
.x6{left:427.691333pt;}
.x19{left:555.710800pt;}
.x1a{left:570.667867pt;}
}




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