
    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_a22865096fb1a9c72d0b5b03.woff')format("woff");}.ff1{font-family:ff1;line-height:1.197754;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_6e19b588329c2f8df8015529.woff')format("woff");}.ff2{font-family:ff2;line-height:1.084961;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_bdc8bccacc9e16fe85e761a0.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_cf885d088c9500396312e02b.woff')format("woff");}.ff4{font-family:ff4;line-height:1.082000;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_6993589cab2c136859de1bfd.woff')format("woff");}.ff5{font-family:ff5;line-height:0.957000;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_6993589cab2c136859de1bfd.woff')format("woff");}.ff6{font-family:ff6;line-height:0.957000;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_6993589cab2c136859de1bfd.woff')format("woff");}.ff7{font-family:ff7;line-height:0.957000;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_cf885d088c9500396312e02b.woff')format("woff");}.ff8{font-family:ff8;line-height:1.082000;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;}
.m5{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);}
.m4{transform:matrix(0.000008,-0.250000,0.250000,0.000008,0,0);-ms-transform:matrix(0.000008,-0.250000,0.250000,0.000008,0,0);-webkit-transform:matrix(0.000008,-0.250000,0.250000,0.000008,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248838,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);}
.m7{transform:matrix(0.255054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255054,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.264165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264165,0.000000,0.000000,0.250000,0,0);}
.v10{vertical-align:-43.804705px;}
.vf{vertical-align:-38.141168px;}
.vc{vertical-align:-22.826400px;}
.v11{vertical-align:-4.923785px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.019976px;}
.v1{vertical-align:3.000000px;}
.vd{vertical-align:8.159808px;}
.va{vertical-align:9.893767px;}
.v3{vertical-align:16.013623px;}
.v4{vertical-align:24.173431px;}
.ve{vertical-align:26.640000px;}
.v5{vertical-align:30.650279px;}
.v6{vertical-align:37.127126px;}
.v7{vertical-align:43.603974px;}
.vb{vertical-align:45.337933px;}
.v8{vertical-align:53.140750px;}
.v9{vertical-align:59.617597px;}
.ls4{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.288000px;}
.lse{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.449400px;}
.ls8{letter-spacing:3.273600px;}
.ls1{letter-spacing:4.197333px;}
.ls0{letter-spacing:4.200000px;}
.ls5{letter-spacing:5.400000px;}
.lsf{letter-spacing:6.000000px;}
.ls2{letter-spacing:6.600000px;}
.ls6{letter-spacing:7.200000px;}
.lsa{letter-spacing:7.217333px;}
.ls9{letter-spacing:7.218000px;}
.ls3{letter-spacing:10.200000px;}
.ls11{letter-spacing:19.800000px;}
.lsc{letter-spacing:76.683294px;}
.ls7{letter-spacing:96.747900px;}
.lsd{letter-spacing:107.888814px;}
.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;}
}
.ws25{word-spacing:-36.102000px;}
.wse{word-spacing:-27.432000px;}
.ws22{word-spacing:-22.860000px;}
.wsd{word-spacing:-20.232000px;}
.ws24{word-spacing:-18.546000px;}
.wsf{word-spacing:-18.072000px;}
.wsb{word-spacing:-17.784000px;}
.ws0{word-spacing:-16.860000px;}
.ws23{word-spacing:-16.302000px;}
.wsc{word-spacing:-12.139200px;}
.ws10{word-spacing:-0.056999px;}
.ws1b{word-spacing:-0.053952px;}
.ws16{word-spacing:-0.053068px;}
.ws20{word-spacing:-0.050489px;}
.ws19{word-spacing:-0.050120px;}
.ws1{word-spacing:0.000000px;}
.ws1c{word-spacing:13.516272px;}
.ws1d{word-spacing:13.564544px;}
.ws17{word-spacing:14.033544px;}
.ws18{word-spacing:14.083664px;}
.ws21{word-spacing:14.086375px;}
.ws1f{word-spacing:14.136864px;}
.ws1e{word-spacing:14.187353px;}
.ws11{word-spacing:14.279664px;}
.ws12{word-spacing:14.330663px;}
.ws15{word-spacing:15.035496px;}
.ws1a{word-spacing:15.106560px;}
.wsa{word-spacing:15.959832px;}
.ws13{word-spacing:64.303703px;}
.ws5{word-spacing:66.604433px;}
.ws3{word-spacing:69.307369px;}
.ws2{word-spacing:71.704313px;}
.ws7{word-spacing:72.673290px;}
.ws4{word-spacing:73.438272px;}
.ws14{word-spacing:75.580658px;}
.ws6{word-spacing:78.538152px;}
.ws8{word-spacing:81.904073px;}
.ws9{word-spacing:98.886673px;}
._16{margin-left:-20.662200px;}
._f{margin-left:-19.652133px;}
._17{margin-left:-11.304000px;}
._5{margin-left:-10.302000px;}
._7{margin-left:-8.454000px;}
._3{margin-left:-6.666000px;}
._2{margin-left:-5.610000px;}
._0{margin-left:-3.906000px;}
._c{margin-left:-2.448000px;}
._4{margin-left:-1.200000px;}
._8{width:1.008000px;}
._9{width:2.376000px;}
._1{width:3.780000px;}
._a{width:5.472000px;}
._d{width:6.912000px;}
._e{width:8.499333px;}
._6{width:10.292667px;}
._10{width:11.808000px;}
._13{width:13.318200px;}
._14{width:15.048000px;}
._15{width:16.680000px;}
._b{width:19.080000px;}
._12{width:21.273600px;}
._11{width:23.328000px;}
.fc0{color:rgb(35,31,32);}
.fs2{font-size:42.000000px;}
.fsa{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fse{font-size:48.272400px;}
.fsb{font-size:50.119800px;}
.fs10{font-size:50.488800px;}
.fs8{font-size:50.998800px;}
.fsd{font-size:53.068200px;}
.fsc{font-size:53.698200px;}
.fsf{font-size:53.952000px;}
.fs9{font-size:53.999400px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:56.999400px;}
.fs11{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.ydb{bottom:15.343708px;}
.yda{bottom:29.467950px;}
.yb1{bottom:30.819150px;}
.yf2{bottom:44.118150px;}
.yb0{bottom:49.163795px;}
.y8c{bottom:62.810497px;}
.yaf{bottom:62.971800px;}
.yf1{bottom:68.566050px;}
.yc7{bottom:70.288350px;}
.ye1{bottom:79.679062px;}
.y8b{bottom:79.703850px;}
.yae{bottom:82.983933px;}
.yc6{bottom:91.790250px;}
.yf0{bottom:92.520000px;}
.ye9{bottom:93.635623px;}
.ye0{bottom:93.803303px;}
.yad{bottom:96.378450px;}
.y8a{bottom:104.343600px;}
.ye8{bottom:107.759864px;}
.y1{bottom:107.837550px;}
.ydf{bottom:107.927545px;}
.yc5{bottom:112.548450px;}
.yef{bottom:116.828700px;}
.yac{bottom:117.229790px;}
.yab{bottom:129.784800px;}
.y89{bottom:130.684350px;}
.yc4{bottom:133.647900px;}
.yee{bottom:141.558300px;}
.ye3{bottom:151.714558px;}
.yaa{bottom:153.162600px;}
.yc3{bottom:154.003800px;}
.y88{bottom:157.515900px;}
.yde{bottom:158.428967px;}
.yed{bottom:163.042108px;}
.ye2{bottom:165.838800px;}
.ydd{bottom:172.553209px;}
.y71{bottom:173.108550px;}
.ya9{bottom:173.615100px;}
.y98{bottom:174.577350px;}
.yc2{bottom:175.505550px;}
.yec{bottom:177.166350px;}
.y32{bottom:177.504600px;}
.y20{bottom:177.868050px;}
.y137{bottom:180.308550px;}
.y5b{bottom:181.612500px;}
.y87{bottom:183.431700px;}
.ydc{bottom:186.677451px;}
.yd8{bottom:193.208550px;}
.ye5{bottom:193.325758px;}
.y70{bottom:194.708550px;}
.ya8{bottom:195.321600px;}
.y97{bottom:196.177350px;}
.y136{bottom:198.308550px;}
.yeb{bottom:198.882934px;}
.y31{bottom:199.104600px;}
.y1f{bottom:199.467900px;}
.y118{bottom:203.003700px;}
.y5a{bottom:203.212500px;}
.ye4{bottom:207.450000px;}
.y86{bottom:208.071300px;}
.yea{bottom:211.997400px;}
.ye7{bottom:212.019236px;}
.yd7{bottom:215.108550px;}
.y6f{bottom:216.308550px;}
.ya7{bottom:216.609750px;}
.y96{bottom:217.777350px;}
.y30{bottom:220.704600px;}
.y1e{bottom:221.068050px;}
.y59{bottom:224.812500px;}
.ye6{bottom:226.143478px;}
.y135{bottom:234.308550px;}
.yd6{bottom:237.008550px;}
.y6e{bottom:237.908550px;}
.y95{bottom:239.377500px;}
.y117{bottom:239.903700px;}
.y1d{bottom:242.668050px;}
.y58{bottom:246.412500px;}
.y2f{bottom:250.808550px;}
.y134{bottom:252.308550px;}
.yd5{bottom:258.908550px;}
.y6d{bottom:259.508550px;}
.y116{bottom:259.703700px;}
.y94{bottom:260.977500px;}
.y1c{bottom:264.267900px;}
.y57{bottom:268.012500px;}
.y2e{bottom:272.408550px;}
.y115{bottom:279.503700px;}
.yd4{bottom:280.808550px;}
.y6c{bottom:281.108550px;}
.y93{bottom:282.577350px;}
.y1b{bottom:285.868050px;}
.y56{bottom:289.612500px;}
.y72{bottom:295.012500px;}
.y114{bottom:299.303700px;}
.y6b{bottom:302.708550px;}
.y92{bottom:304.177350px;}
.y1a{bottom:307.468050px;}
.y133{bottom:309.908550px;}
.y55{bottom:311.212500px;}
.y113{bottom:319.103550px;}
.y85{bottom:322.359000px;}
.y6a{bottom:324.308550px;}
.yd3{bottom:324.608550px;}
.y91{bottom:325.777350px;}
.y19{bottom:329.068050px;}
.y132{bottom:329.708550px;}
.y54{bottom:332.812500px;}
.y112{bottom:338.903700px;}
.y73{bottom:342.486450px;}
.y69{bottom:345.908550px;}
.yd2{bottom:346.508550px;}
.y90{bottom:347.377350px;}
.y131{bottom:349.508550px;}
.y18{bottom:350.668050px;}
.y53{bottom:354.412500px;}
.y111{bottom:358.703700px;}
.y83{bottom:365.354700px;}
.y68{bottom:367.508550px;}
.yd1{bottom:368.408550px;}
.y8f{bottom:368.977500px;}
.y130{bottom:369.308550px;}
.y17{bottom:372.267900px;}
.y52{bottom:376.012500px;}
.y110{bottom:378.503700px;}
.y2d{bottom:383.212500px;}
.y7a{bottom:385.549975px;}
.y67{bottom:389.108550px;}
.yd0{bottom:390.308550px;}
.y16{bottom:393.868050px;}
.y51{bottom:397.612500px;}
.y10f{bottom:398.303700px;}
.y78{bottom:402.774819px;}
.y7b{bottom:404.598026px;}
.y12f{bottom:408.908550px;}
.y66{bottom:410.708550px;}
.ycf{bottom:412.208550px;}
.y15{bottom:415.468050px;}
.y8e{bottom:415.581450px;}
.y40{bottom:416.494500px;}
.y10e{bottom:418.103550px;}
.y50{bottom:419.212500px;}
.y79{bottom:423.620579px;}
.y7c{bottom:423.646078px;}
.y12e{bottom:428.708550px;}
.y65{bottom:432.308550px;}
.yce{bottom:434.108550px;}
.y14{bottom:437.068050px;}
.y10d{bottom:437.903700px;}
.y77{bottom:439.085965px;}
.y4f{bottom:440.812500px;}
.y84{bottom:441.991650px;}
.y7d{bottom:442.694130px;}
.y37{bottom:447.577459px;}
.y12d{bottom:448.508550px;}
.y3f{bottom:449.622900px;}
.y64{bottom:453.908550px;}
.yc1{bottom:454.687500px;}
.ycd{bottom:456.008550px;}
.y10c{bottom:457.703700px;}
.y13{bottom:458.668050px;}
.y34{bottom:459.580950px;}
.y7e{bottom:461.028199px;}
.y75{bottom:461.372440px;}
.y4e{bottom:462.412500px;}
.y12c{bottom:468.308550px;}
.ybf{bottom:470.118564px;}
.y38{bottom:473.727094px;}
.y63{bottom:475.508550px;}
.y35{bottom:476.233800px;}
.y10b{bottom:477.503700px;}
.y36{bottom:477.730500px;}
.ycc{bottom:477.908550px;}
.y7f{bottom:480.076250px;}
.y12{bottom:480.267900px;}
.y74{bottom:482.218200px;}
.y4d{bottom:484.012500px;}
.y12b{bottom:488.108550px;}
.ybe{bottom:492.333300px;}
.y62{bottom:497.108550px;}
.y10a{bottom:497.303700px;}
.y80{bottom:499.124302px;}
.ycb{bottom:499.808550px;}
.y11{bottom:501.868050px;}
.y4c{bottom:505.612500px;}
.y12a{bottom:507.908550px;}
.yb7{bottom:515.810097px;}
.y109{bottom:517.103550px;}
.y81{bottom:518.172354px;}
.y61{bottom:518.708550px;}
.y39{bottom:521.257976px;}
.y76{bottom:521.410778px;}
.yca{bottom:521.708550px;}
.y10{bottom:523.468050px;}
.y3e{bottom:523.973662px;}
.y41{bottom:524.285850px;}
.y4b{bottom:527.212500px;}
.y129{bottom:527.708550px;}
.yb6{bottom:530.617656px;}
.y3b{bottom:533.612435px;}
.yb8{bottom:535.553509px;}
.y108{bottom:536.903700px;}
.y82{bottom:537.220406px;}
.y60{bottom:540.308550px;}
.yc9{bottom:543.608550px;}
.yf{bottom:545.068050px;}
.y128{bottom:547.508550px;}
.y4a{bottom:548.812500px;}
.yc0{bottom:555.630150px;}
.yb9{bottom:555.634827px;}
.y107{bottom:556.703700px;}
.y5f{bottom:561.908550px;}
.ye{bottom:566.668050px;}
.y127{bottom:567.308550px;}
.yb5{bottom:569.199372px;}
.y49{bottom:570.412500px;}
.y3a{bottom:574.322227px;}
.yba{bottom:575.378239px;}
.y106{bottom:576.503700px;}
.y5e{bottom:583.508550px;}
.y126{bottom:587.108550px;}
.yd{bottom:588.267900px;}
.y48{bottom:592.012500px;}
.ybb{bottom:595.459557px;}
.yc8{bottom:595.612500px;}
.y105{bottom:596.303700px;}
.y3c{bottom:602.856056px;}
.y5d{bottom:605.108550px;}
.yb3{bottom:606.574277px;}
.y125{bottom:606.908550px;}
.yc{bottom:609.868050px;}
.y47{bottom:613.612500px;}
.ybc{bottom:615.202969px;}
.y104{bottom:616.103700px;}
.yd9{bottom:620.727000px;}
.y5c{bottom:626.708550px;}
.yb{bottom:631.467900px;}
.y3d{bottom:633.429836px;}
.y46{bottom:635.212500px;}
.ybd{bottom:635.284287px;}
.y103{bottom:635.903700px;}
.yb2{bottom:636.092850px;}
.yb4{bottom:637.323796px;}
.y124{bottom:646.508550px;}
.y42{bottom:650.269950px;}
.ya{bottom:653.068050px;}
.y102{bottom:655.703550px;}
.y45{bottom:656.812500px;}
.y123{bottom:666.308550px;}
.y33{bottom:674.666400px;}
.y9{bottom:674.668050px;}
.y101{bottom:675.503700px;}
.y44{bottom:678.412500px;}
.y122{bottom:686.108550px;}
.y100{bottom:695.303700px;}
.y8{bottom:696.267900px;}
.y43{bottom:700.012500px;}
.y121{bottom:705.908550px;}
.y8d{bottom:711.589350px;}
.yff{bottom:715.103700px;}
.y7{bottom:717.868050px;}
.y2c{bottom:721.612500px;}
.y120{bottom:725.708550px;}
.ya6{bottom:734.584500px;}
.yfe{bottom:734.903700px;}
.y2b{bottom:743.212500px;}
.y11f{bottom:745.508550px;}
.yfd{bottom:754.703550px;}
.ya4{bottom:757.946700px;}
.y2a{bottom:764.812500px;}
.y11e{bottom:765.308550px;}
.yfc{bottom:774.503700px;}
.y11d{bottom:785.108550px;}
.ya3{bottom:785.838355px;}
.y29{bottom:786.412500px;}
.yfb{bottom:794.303700px;}
.y11c{bottom:804.908550px;}
.y9e{bottom:806.349883px;}
.y28{bottom:808.012500px;}
.yfa{bottom:814.103700px;}
.y11b{bottom:824.708550px;}
.y9b{bottom:825.583356px;}
.y6{bottom:825.868050px;}
.y27{bottom:829.612500px;}
.yf9{bottom:833.903700px;}
.y9d{bottom:836.534532px;}
.y9f{bottom:837.787527px;}
.y11a{bottom:844.508550px;}
.ya5{bottom:849.447600px;}
.y26{bottom:851.212500px;}
.yf8{bottom:853.703550px;}
.y5{bottom:856.467900px;}
.y9c{bottom:861.619492px;}
.ya0{bottom:868.874333px;}
.y25{bottom:872.812500px;}
.yf7{bottom:873.503700px;}
.y119{bottom:885.908550px;}
.y4{bottom:887.068050px;}
.yf6{bottom:893.303700px;}
.y24{bottom:894.412500px;}
.y9a{bottom:896.816122px;}
.ya1{bottom:900.311978px;}
.yf5{bottom:913.103700px;}
.y23{bottom:916.012500px;}
.y99{bottom:927.326550px;}
.ya2{bottom:931.749622px;}
.yf4{bottom:932.903700px;}
.y22{bottom:937.612500px;}
.y3{bottom:942.329400px;}
.y21{bottom:959.212500px;}
.y2{bottom:960.329400px;}
.yf3{bottom:961.207650px;}
.h19{height:34.949218px;}
.h15{height:36.286735px;}
.h12{height:36.923131px;}
.h17{height:38.421377px;}
.h16{height:38.877497px;}
.h1a{height:39.061248px;}
.h13{height:39.095566px;}
.h4{height:40.523438px;}
.h11{height:41.267566px;}
.h1d{height:42.864991px;}
.hc{height:43.297981px;}
.h3{height:43.523438px;}
.hf{height:45.845491px;}
.h8{height:46.312500px;}
.ha{height:48.392491px;}
.h1f{height:50.947266px;}
.hd{height:53.191748px;}
.h1e{height:54.996094px;}
.h5{height:56.041992px;}
.h2{height:57.890625px;}
.h10{height:61.136719px;}
.h9{height:63.679688px;}
.h7{height:69.468750px;}
.he{height:88.635914px;}
.h6{height:98.414062px;}
.hb{height:102.915578px;}
.h1b{height:209.835000px;}
.h18{height:236.931000px;}
.h1c{height:248.031000px;}
.h14{height:255.637500px;}
.h0{height:1083.472500px;}
.h1{height:1083.750000px;}
.w4{width:480.472500px;}
.w3{width:502.038000px;}
.w2{width:519.541500px;}
.w5{width:527.952000px;}
.w0{width:785.835000px;}
.w1{width:786.000000px;}
.x0{left:0.000000px;}
.x3c{left:10.872900px;}
.x40{left:21.715370px;}
.x3d{left:30.311088px;}
.x3b{left:37.516200px;}
.x36{left:66.400500px;}
.x3e{left:89.610184px;}
.x3f{left:105.741355px;}
.x7{left:108.035400px;}
.x37{left:110.767533px;}
.x1{left:129.295350px;}
.x34{left:131.089500px;}
.x15{left:137.738700px;}
.x33{left:140.596050px;}
.x2a{left:142.739550px;}
.x4{left:150.555150px;}
.x30{left:153.082576px;}
.x27{left:155.454580px;}
.x2f{left:158.863196px;}
.x5{left:160.164000px;}
.x9{left:161.626200px;}
.x38{left:170.988049px;}
.x1f{left:173.782347px;}
.xc{left:175.560655px;}
.x1e{left:180.259195px;}
.x2{left:182.170350px;}
.x39{left:187.081354px;}
.xd{left:202.832264px;}
.x22{left:205.624500px;}
.x2c{left:208.571700px;}
.x3a{left:222.814802px;}
.xe{left:233.342296px;}
.x23{left:234.593744px;}
.x18{left:237.416100px;}
.x2d{left:241.577953px;}
.x32{left:259.616988px;}
.xf{left:264.464314px;}
.x24{left:266.031389px;}
.x29{left:272.042700px;}
.x19{left:275.167962px;}
.x25{left:291.467187px;}
.x31{left:295.009500px;}
.x17{left:300.640650px;}
.x3{left:302.077950px;}
.x28{left:309.134417px;}
.x1a{left:313.633807px;}
.x10{left:326.274859px;}
.x35{left:327.607200px;}
.x20{left:335.561550px;}
.x14{left:339.398250px;}
.x2e{left:344.675732px;}
.x26{left:348.703999px;}
.x1b{left:351.028677px;}
.x8{left:354.681000px;}
.x2b{left:356.601750px;}
.x41{left:357.945300px;}
.x21{left:362.219700px;}
.x16{left:382.969800px;}
.x1c{left:391.292229px;}
.x11{left:416.211243px;}
.x1d{left:425.805667px;}
.x12{left:450.992425px;}
.x13{left:485.938650px;}
.xa{left:503.910450px;}
.xb{left:534.910950px;}
.x42{left:574.709400px;}
.x6{left:603.664350px;}
@media print{
.v10{vertical-align:-38.937516pt;}
.vf{vertical-align:-33.903260pt;}
.vc{vertical-align:-20.290133pt;}
.v11{vertical-align:-4.376698pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:0.906645pt;}
.v1{vertical-align:2.666667pt;}
.vd{vertical-align:7.253163pt;}
.va{vertical-align:8.794460pt;}
.v3{vertical-align:14.234332pt;}
.v4{vertical-align:21.487494pt;}
.ve{vertical-align:23.680000pt;}
.v5{vertical-align:27.244692pt;}
.v6{vertical-align:33.001890pt;}
.v7{vertical-align:38.759088pt;}
.vb{vertical-align:40.300385pt;}
.v8{vertical-align:47.236222pt;}
.v9{vertical-align:52.993420pt;}
.ls4{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.399467pt;}
.ls8{letter-spacing:2.909867pt;}
.ls1{letter-spacing:3.730963pt;}
.ls0{letter-spacing:3.733333pt;}
.ls5{letter-spacing:4.800000pt;}
.lsf{letter-spacing:5.333333pt;}
.ls2{letter-spacing:5.866667pt;}
.ls6{letter-spacing:6.400000pt;}
.lsa{letter-spacing:6.415407pt;}
.ls9{letter-spacing:6.416000pt;}
.ls3{letter-spacing:9.066667pt;}
.ls11{letter-spacing:17.600000pt;}
.lsc{letter-spacing:68.162928pt;}
.ls7{letter-spacing:85.998133pt;}
.lsd{letter-spacing:95.901168pt;}
.ws25{word-spacing:-32.090667pt;}
.wse{word-spacing:-24.384000pt;}
.ws22{word-spacing:-20.320000pt;}
.wsd{word-spacing:-17.984000pt;}
.ws24{word-spacing:-16.485333pt;}
.wsf{word-spacing:-16.064000pt;}
.wsb{word-spacing:-15.808000pt;}
.ws0{word-spacing:-14.986667pt;}
.ws23{word-spacing:-14.490667pt;}
.wsc{word-spacing:-10.790400pt;}
.ws10{word-spacing:-0.050666pt;}
.ws1b{word-spacing:-0.047957pt;}
.ws16{word-spacing:-0.047172pt;}
.ws20{word-spacing:-0.044879pt;}
.ws19{word-spacing:-0.044551pt;}
.ws1{word-spacing:0.000000pt;}
.ws1c{word-spacing:12.014464pt;}
.ws1d{word-spacing:12.057373pt;}
.ws17{word-spacing:12.474261pt;}
.ws18{word-spacing:12.518812pt;}
.ws21{word-spacing:12.521222pt;}
.ws1f{word-spacing:12.566101pt;}
.ws1e{word-spacing:12.610980pt;}
.ws11{word-spacing:12.693035pt;}
.ws12{word-spacing:12.738367pt;}
.ws15{word-spacing:13.364885pt;}
.ws1a{word-spacing:13.428053pt;}
.wsa{word-spacing:14.186517pt;}
.ws13{word-spacing:57.158847pt;}
.ws5{word-spacing:59.203940pt;}
.ws3{word-spacing:61.606550pt;}
.ws2{word-spacing:63.737167pt;}
.ws7{word-spacing:64.598480pt;}
.ws4{word-spacing:65.278464pt;}
.ws14{word-spacing:67.182807pt;}
.ws6{word-spacing:69.811691pt;}
.ws8{word-spacing:72.803620pt;}
.ws9{word-spacing:87.899265pt;}
._16{margin-left:-18.366400pt;}
._f{margin-left:-17.468563pt;}
._17{margin-left:-10.048000pt;}
._5{margin-left:-9.157333pt;}
._7{margin-left:-7.514667pt;}
._3{margin-left:-5.925333pt;}
._2{margin-left:-4.986667pt;}
._0{margin-left:-3.472000pt;}
._c{margin-left:-2.176000pt;}
._4{margin-left:-1.066667pt;}
._8{width:0.896000pt;}
._9{width:2.112000pt;}
._1{width:3.360000pt;}
._a{width:4.864000pt;}
._d{width:6.144000pt;}
._e{width:7.554963pt;}
._6{width:9.149037pt;}
._10{width:10.496000pt;}
._13{width:11.838400pt;}
._14{width:13.376000pt;}
._15{width:14.826667pt;}
._b{width:16.960000pt;}
._12{width:18.909867pt;}
._11{width:20.736000pt;}
.fs2{font-size:37.333333pt;}
.fsa{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fse{font-size:42.908800pt;}
.fsb{font-size:44.550933pt;}
.fs10{font-size:44.878933pt;}
.fs8{font-size:45.332267pt;}
.fsd{font-size:47.171733pt;}
.fsc{font-size:47.731733pt;}
.fsf{font-size:47.957333pt;}
.fs9{font-size:47.999467pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:50.666133pt;}
.fs11{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.ydb{bottom:13.638852pt;}
.yda{bottom:26.193733pt;}
.yb1{bottom:27.394800pt;}
.yf2{bottom:39.216133pt;}
.yb0{bottom:43.701151pt;}
.y8c{bottom:55.831553pt;}
.yaf{bottom:55.974933pt;}
.yf1{bottom:60.947600pt;}
.yc7{bottom:62.478533pt;}
.ye1{bottom:70.825833pt;}
.y8b{bottom:70.847867pt;}
.yae{bottom:73.763496pt;}
.yc6{bottom:81.591333pt;}
.yf0{bottom:82.240000pt;}
.ye9{bottom:83.231665pt;}
.ye0{bottom:83.380714pt;}
.yad{bottom:85.669733pt;}
.y8a{bottom:92.749867pt;}
.ye8{bottom:95.786546pt;}
.y1{bottom:95.855600pt;}
.ydf{bottom:95.935596pt;}
.yc5{bottom:100.043067pt;}
.yef{bottom:103.847733pt;}
.yac{bottom:104.204258pt;}
.yab{bottom:115.364267pt;}
.y89{bottom:116.163867pt;}
.yc4{bottom:118.798133pt;}
.yee{bottom:125.829600pt;}
.ye3{bottom:134.857385pt;}
.yaa{bottom:136.144533pt;}
.yc3{bottom:136.892267pt;}
.y88{bottom:140.014133pt;}
.yde{bottom:140.825749pt;}
.yed{bottom:144.926318pt;}
.ye2{bottom:147.412267pt;}
.ydd{bottom:153.380630pt;}
.y71{bottom:153.874267pt;}
.ya9{bottom:154.324533pt;}
.y98{bottom:155.179867pt;}
.yc2{bottom:156.004933pt;}
.yec{bottom:157.481200pt;}
.y32{bottom:157.781867pt;}
.y20{bottom:158.104933pt;}
.y137{bottom:160.274267pt;}
.y5b{bottom:161.433333pt;}
.y87{bottom:163.050400pt;}
.ydc{bottom:165.935512pt;}
.yd8{bottom:171.740933pt;}
.ye5{bottom:171.845118pt;}
.y70{bottom:173.074267pt;}
.ya8{bottom:173.619200pt;}
.y97{bottom:174.379867pt;}
.y136{bottom:176.274267pt;}
.yeb{bottom:176.784830pt;}
.y31{bottom:176.981867pt;}
.y1f{bottom:177.304800pt;}
.y118{bottom:180.447733pt;}
.y5a{bottom:180.633333pt;}
.ye4{bottom:184.400000pt;}
.y86{bottom:184.952267pt;}
.yea{bottom:188.442133pt;}
.ye7{bottom:188.461543pt;}
.yd7{bottom:191.207600pt;}
.y6f{bottom:192.274267pt;}
.ya7{bottom:192.542000pt;}
.y96{bottom:193.579867pt;}
.y30{bottom:196.181867pt;}
.y1e{bottom:196.504933pt;}
.y59{bottom:199.833333pt;}
.ye6{bottom:201.016425pt;}
.y135{bottom:208.274267pt;}
.yd6{bottom:210.674267pt;}
.y6e{bottom:211.474267pt;}
.y95{bottom:212.780000pt;}
.y117{bottom:213.247733pt;}
.y1d{bottom:215.704933pt;}
.y58{bottom:219.033333pt;}
.y2f{bottom:222.940933pt;}
.y134{bottom:224.274267pt;}
.yd5{bottom:230.140933pt;}
.y6d{bottom:230.674267pt;}
.y116{bottom:230.847733pt;}
.y94{bottom:231.980000pt;}
.y1c{bottom:234.904800pt;}
.y57{bottom:238.233333pt;}
.y2e{bottom:242.140933pt;}
.y115{bottom:248.447733pt;}
.yd4{bottom:249.607600pt;}
.y6c{bottom:249.874267pt;}
.y93{bottom:251.179867pt;}
.y1b{bottom:254.104933pt;}
.y56{bottom:257.433333pt;}
.y72{bottom:262.233333pt;}
.y114{bottom:266.047733pt;}
.y6b{bottom:269.074267pt;}
.y92{bottom:270.379867pt;}
.y1a{bottom:273.304933pt;}
.y133{bottom:275.474267pt;}
.y55{bottom:276.633333pt;}
.y113{bottom:283.647600pt;}
.y85{bottom:286.541333pt;}
.y6a{bottom:288.274267pt;}
.yd3{bottom:288.540933pt;}
.y91{bottom:289.579867pt;}
.y19{bottom:292.504933pt;}
.y132{bottom:293.074267pt;}
.y54{bottom:295.833333pt;}
.y112{bottom:301.247733pt;}
.y73{bottom:304.432400pt;}
.y69{bottom:307.474267pt;}
.yd2{bottom:308.007600pt;}
.y90{bottom:308.779867pt;}
.y131{bottom:310.674267pt;}
.y18{bottom:311.704933pt;}
.y53{bottom:315.033333pt;}
.y111{bottom:318.847733pt;}
.y83{bottom:324.759733pt;}
.y68{bottom:326.674267pt;}
.yd1{bottom:327.474267pt;}
.y8f{bottom:327.980000pt;}
.y130{bottom:328.274267pt;}
.y17{bottom:330.904800pt;}
.y52{bottom:334.233333pt;}
.y110{bottom:336.447733pt;}
.y2d{bottom:340.633333pt;}
.y7a{bottom:342.711089pt;}
.y67{bottom:345.874267pt;}
.yd0{bottom:346.940933pt;}
.y16{bottom:350.104933pt;}
.y51{bottom:353.433333pt;}
.y10f{bottom:354.047733pt;}
.y78{bottom:358.022062pt;}
.y7b{bottom:359.642690pt;}
.y12f{bottom:363.474267pt;}
.y66{bottom:365.074267pt;}
.ycf{bottom:366.407600pt;}
.y15{bottom:369.304933pt;}
.y8e{bottom:369.405733pt;}
.y40{bottom:370.217333pt;}
.y10e{bottom:371.647600pt;}
.y50{bottom:372.633333pt;}
.y79{bottom:376.551626pt;}
.y7c{bottom:376.574292pt;}
.y12e{bottom:381.074267pt;}
.y65{bottom:384.274267pt;}
.yce{bottom:385.874267pt;}
.y14{bottom:388.504933pt;}
.y10d{bottom:389.247733pt;}
.y77{bottom:390.298635pt;}
.y4f{bottom:391.833333pt;}
.y84{bottom:392.881467pt;}
.y7d{bottom:393.505893pt;}
.y37{bottom:397.846631pt;}
.y12d{bottom:398.674267pt;}
.y3f{bottom:399.664800pt;}
.y64{bottom:403.474267pt;}
.yc1{bottom:404.166667pt;}
.ycd{bottom:405.340933pt;}
.y10c{bottom:406.847733pt;}
.y13{bottom:407.704933pt;}
.y34{bottom:408.516400pt;}
.y7e{bottom:409.802843pt;}
.y75{bottom:410.108836pt;}
.y4e{bottom:411.033333pt;}
.y12c{bottom:416.274267pt;}
.ybf{bottom:417.883168pt;}
.y38{bottom:421.090750pt;}
.y63{bottom:422.674267pt;}
.y35{bottom:423.318933pt;}
.y10b{bottom:424.447733pt;}
.y36{bottom:424.649333pt;}
.ycc{bottom:424.807600pt;}
.y7f{bottom:426.734445pt;}
.y12{bottom:426.904800pt;}
.y74{bottom:428.638400pt;}
.y4d{bottom:430.233333pt;}
.y12b{bottom:433.874267pt;}
.ybe{bottom:437.629600pt;}
.y62{bottom:441.874267pt;}
.y10a{bottom:442.047733pt;}
.y80{bottom:443.666046pt;}
.ycb{bottom:444.274267pt;}
.y11{bottom:446.104933pt;}
.y4c{bottom:449.433333pt;}
.y12a{bottom:451.474267pt;}
.yb7{bottom:458.497864pt;}
.y109{bottom:459.647600pt;}
.y81{bottom:460.597648pt;}
.y61{bottom:461.074267pt;}
.y39{bottom:463.340423pt;}
.y76{bottom:463.476247pt;}
.yca{bottom:463.740933pt;}
.y10{bottom:465.304933pt;}
.y3e{bottom:465.754366pt;}
.y41{bottom:466.031867pt;}
.y4b{bottom:468.633333pt;}
.y129{bottom:469.074267pt;}
.yb6{bottom:471.660139pt;}
.y3b{bottom:474.322165pt;}
.yb8{bottom:476.047563pt;}
.y108{bottom:477.247733pt;}
.y82{bottom:477.529250pt;}
.y60{bottom:480.274267pt;}
.yc9{bottom:483.207600pt;}
.yf{bottom:484.504933pt;}
.y128{bottom:486.674267pt;}
.y4a{bottom:487.833333pt;}
.yc0{bottom:493.893467pt;}
.yb9{bottom:493.897624pt;}
.y107{bottom:494.847733pt;}
.y5f{bottom:499.474267pt;}
.ye{bottom:503.704933pt;}
.y127{bottom:504.274267pt;}
.yb5{bottom:505.954997pt;}
.y49{bottom:507.033333pt;}
.y3a{bottom:510.508646pt;}
.yba{bottom:511.447323pt;}
.y106{bottom:512.447733pt;}
.y5e{bottom:518.674267pt;}
.y126{bottom:521.874267pt;}
.yd{bottom:522.904800pt;}
.y48{bottom:526.233333pt;}
.ybb{bottom:529.297384pt;}
.yc8{bottom:529.433333pt;}
.y105{bottom:530.047733pt;}
.y3c{bottom:535.872050pt;}
.y5d{bottom:537.874267pt;}
.yb3{bottom:539.177135pt;}
.y125{bottom:539.474267pt;}
.yc{bottom:542.104933pt;}
.y47{bottom:545.433333pt;}
.ybc{bottom:546.847083pt;}
.y104{bottom:547.647733pt;}
.yd9{bottom:551.757333pt;}
.y5c{bottom:557.074267pt;}
.yb{bottom:561.304800pt;}
.y3d{bottom:563.048743pt;}
.y46{bottom:564.633333pt;}
.ybd{bottom:564.697144pt;}
.y103{bottom:565.247733pt;}
.yb2{bottom:565.415867pt;}
.yb4{bottom:566.510041pt;}
.y124{bottom:574.674267pt;}
.y42{bottom:578.017733pt;}
.ya{bottom:580.504933pt;}
.y102{bottom:582.847600pt;}
.y45{bottom:583.833333pt;}
.y123{bottom:592.274267pt;}
.y33{bottom:599.703467pt;}
.y9{bottom:599.704933pt;}
.y101{bottom:600.447733pt;}
.y44{bottom:603.033333pt;}
.y122{bottom:609.874267pt;}
.y100{bottom:618.047733pt;}
.y8{bottom:618.904800pt;}
.y43{bottom:622.233333pt;}
.y121{bottom:627.474267pt;}
.y8d{bottom:632.523867pt;}
.yff{bottom:635.647733pt;}
.y7{bottom:638.104933pt;}
.y2c{bottom:641.433333pt;}
.y120{bottom:645.074267pt;}
.ya6{bottom:652.964000pt;}
.yfe{bottom:653.247733pt;}
.y2b{bottom:660.633333pt;}
.y11f{bottom:662.674267pt;}
.yfd{bottom:670.847600pt;}
.ya4{bottom:673.730400pt;}
.y2a{bottom:679.833333pt;}
.y11e{bottom:680.274267pt;}
.yfc{bottom:688.447733pt;}
.y11d{bottom:697.874267pt;}
.ya3{bottom:698.522982pt;}
.y29{bottom:699.033333pt;}
.yfb{bottom:706.047733pt;}
.y11c{bottom:715.474267pt;}
.y9e{bottom:716.755451pt;}
.y28{bottom:718.233333pt;}
.yfa{bottom:723.647733pt;}
.y11b{bottom:733.074267pt;}
.y9b{bottom:733.851872pt;}
.y6{bottom:734.104933pt;}
.y27{bottom:737.433333pt;}
.yf9{bottom:741.247733pt;}
.y9d{bottom:743.586251pt;}
.y9f{bottom:744.700024pt;}
.y11a{bottom:750.674267pt;}
.ya5{bottom:755.064533pt;}
.y26{bottom:756.633333pt;}
.yf8{bottom:758.847600pt;}
.y5{bottom:761.304800pt;}
.y9c{bottom:765.883993pt;}
.ya0{bottom:772.332741pt;}
.y25{bottom:775.833333pt;}
.yf7{bottom:776.447733pt;}
.y119{bottom:787.474267pt;}
.y4{bottom:788.504933pt;}
.yf6{bottom:794.047733pt;}
.y24{bottom:795.033333pt;}
.y9a{bottom:797.169886pt;}
.ya1{bottom:800.277314pt;}
.yf5{bottom:811.647733pt;}
.y23{bottom:814.233333pt;}
.y99{bottom:824.290267pt;}
.ya2{bottom:828.221887pt;}
.yf4{bottom:829.247733pt;}
.y22{bottom:833.433333pt;}
.y3{bottom:837.626133pt;}
.y21{bottom:852.633333pt;}
.y2{bottom:853.626133pt;}
.yf3{bottom:854.406800pt;}
.h19{height:31.065971pt;}
.h15{height:32.254876pt;}
.h12{height:32.820561pt;}
.h17{height:34.152335pt;}
.h16{height:34.557775pt;}
.h1a{height:34.721109pt;}
.h13{height:34.751614pt;}
.h4{height:36.020833pt;}
.h11{height:36.682281pt;}
.h1d{height:38.102214pt;}
.hc{height:38.487094pt;}
.h3{height:38.687500pt;}
.hf{height:40.751547pt;}
.h8{height:41.166667pt;}
.ha{height:43.015547pt;}
.h1f{height:45.286458pt;}
.hd{height:47.281554pt;}
.h1e{height:48.885417pt;}
.h5{height:49.815104pt;}
.h2{height:51.458333pt;}
.h10{height:54.343750pt;}
.h9{height:56.604167pt;}
.h7{height:61.750000pt;}
.he{height:78.787479pt;}
.h6{height:87.479167pt;}
.hb{height:91.480514pt;}
.h1b{height:186.520000pt;}
.h18{height:210.605333pt;}
.h1c{height:220.472000pt;}
.h14{height:227.233333pt;}
.h0{height:963.086667pt;}
.h1{height:963.333333pt;}
.w4{width:427.086667pt;}
.w3{width:446.256000pt;}
.w2{width:461.814667pt;}
.w5{width:469.290667pt;}
.w0{width:698.520000pt;}
.w1{width:698.666667pt;}
.x0{left:0.000000pt;}
.x3c{left:9.664800pt;}
.x40{left:19.302551pt;}
.x3d{left:26.943189pt;}
.x3b{left:33.347733pt;}
.x36{left:59.022667pt;}
.x3e{left:79.653497pt;}
.x3f{left:93.992316pt;}
.x7{left:96.031467pt;}
.x37{left:98.460029pt;}
.x1{left:114.929200pt;}
.x34{left:116.524000pt;}
.x15{left:122.434400pt;}
.x33{left:124.974267pt;}
.x2a{left:126.879600pt;}
.x4{left:133.826800pt;}
.x30{left:136.073401pt;}
.x27{left:138.181849pt;}
.x2f{left:141.211730pt;}
.x5{left:142.368000pt;}
.x9{left:143.667733pt;}
.x38{left:151.989377pt;}
.x1f{left:154.473198pt;}
.xc{left:156.053916pt;}
.x1e{left:160.230395pt;}
.x2{left:161.929200pt;}
.x39{left:166.294537pt;}
.xd{left:180.295346pt;}
.x22{left:182.777333pt;}
.x2c{left:185.397067pt;}
.x3a{left:198.057602pt;}
.xe{left:207.415374pt;}
.x23{left:208.527773pt;}
.x18{left:211.036533pt;}
.x2d{left:214.735959pt;}
.x32{left:230.770656pt;}
.xf{left:235.079390pt;}
.x24{left:236.472346pt;}
.x29{left:241.815733pt;}
.x19{left:244.593744pt;}
.x25{left:259.081944pt;}
.x31{left:262.230667pt;}
.x17{left:267.236133pt;}
.x3{left:268.513733pt;}
.x28{left:274.786148pt;}
.x1a{left:278.785606pt;}
.x10{left:290.022097pt;}
.x35{left:291.206400pt;}
.x20{left:298.276933pt;}
.x14{left:301.687333pt;}
.x2e{left:306.378428pt;}
.x26{left:309.959110pt;}
.x1b{left:312.025490pt;}
.x8{left:315.272000pt;}
.x2b{left:316.979333pt;}
.x41{left:318.173600pt;}
.x21{left:321.973067pt;}
.x16{left:340.417600pt;}
.x1c{left:347.815315pt;}
.x11{left:369.965549pt;}
.x1d{left:378.493926pt;}
.x12{left:400.882155pt;}
.x13{left:431.945467pt;}
.xa{left:447.920400pt;}
.xb{left:475.476400pt;}
.x42{left:510.852800pt;}
.x6{left:536.590533pt;}
}




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