
    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_0aca3ebbbdcb5f3405e2c467.woff')format("woff");}.ff1{font-family:ff1;line-height:0.689453;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_a70c5918805ef33a0b8b49d4.woff')format("woff");}.ff2{font-family:ff2;line-height:1.011230;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_7290a5ed8c91e18bae9abe52.woff')format("woff");}.ff3{font-family:ff3;line-height:1.206055;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_89ca72a167164421ef3f5e1d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.909180;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_60e6c1fcf66ff95ad1bc06a1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.879395;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_6cb6b7a6b58fdf157c1d91bb.woff')format("woff");}.ff6{font-family:ff6;line-height:1.000488;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_53c9c8ed69a837e5825e9229.woff')format("woff");}.ff7{font-family:ff7;line-height:0.819824;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_a2951e55d68189911dbbd62d.woff')format("woff");}.ff8{font-family:ff8;line-height:1.011230;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_5e05b14c57717edabb734ead.woff')format("woff");}.ff9{font-family:ff9;line-height:1.011230;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_a2951e55d68189911dbbd62d.woff')format("woff");}.ffa{font-family:ffa;line-height:1.011230;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_82838c00343feb923af7fd13.woff')format("woff");}.ffb{font-family:ffb;line-height:1.000488;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_cc3f48be803e742876a64add.woff')format("woff");}.ffc{font-family:ffc;line-height:0.672852;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_595533aee5e63c717400a3ab.woff')format("woff");}.ffd{font-family:ffd;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.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.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);}
.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);}
.m3{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);}
.v1{vertical-align:-8.232000px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-1.620000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.144000px;}
.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;}
}
.ws15{word-spacing:-21.000000px;}
.ws1c{word-spacing:-18.144000px;}
.ws1b{word-spacing:-18.072000px;}
.ws10{word-spacing:-18.000000px;}
.ws0{word-spacing:-16.500000px;}
.wse{word-spacing:-0.864000px;}
.ws1a{word-spacing:-0.792000px;}
.ws4{word-spacing:-0.648000px;}
.wsa{word-spacing:-0.288000px;}
.ws1{word-spacing:0.000000px;}
.wsd{word-spacing:0.144000px;}
.ws5{word-spacing:0.792000px;}
.ws19{word-spacing:1.224000px;}
.ws16{word-spacing:2.592000px;}
.ws6{word-spacing:3.096000px;}
.ws13{word-spacing:3.528000px;}
.ws14{word-spacing:3.888000px;}
.ws9{word-spacing:4.032000px;}
.ws3{word-spacing:4.752000px;}
.wsf{word-spacing:5.112000px;}
.ws8{word-spacing:5.760000px;}
.ws12{word-spacing:5.832000px;}
.ws17{word-spacing:5.976000px;}
.ws2{word-spacing:7.722000px;}
.ws18{word-spacing:9.072000px;}
.wsb{word-spacing:11.088000px;}
.ws11{word-spacing:17.784000px;}
.wsc{word-spacing:18.144000px;}
.ws7{word-spacing:21.312000px;}
._23{margin-left:-12.398400px;}
._20{margin-left:-10.503000px;}
._1f{margin-left:-8.881200px;}
._1e{margin-left:-7.725600px;}
._2{margin-left:-6.714000px;}
._1d{margin-left:-5.687400px;}
._0{margin-left:-4.679400px;}
._3{margin-left:-3.478200px;}
._7{margin-left:-2.237400px;}
._1{margin-left:-1.141800px;}
._12{width:1.174800px;}
._15{width:2.296800px;}
._14{width:3.550800px;}
._13{width:4.580400px;}
._a{width:5.596800px;}
._8{width:6.659400px;}
._11{width:7.814400px;}
._18{width:8.856000px;}
._4{width:9.939600px;}
._b{width:11.391600px;}
._10{width:12.619200px;}
._f{width:13.807200px;}
._19{width:15.645600px;}
._1b{width:16.695000px;}
._9{width:18.678000px;}
._d{width:20.598600px;}
._5{width:22.169400px;}
._c{width:23.278200px;}
._17{width:25.423200px;}
._1a{width:26.487000px;}
._16{width:27.898200px;}
._e{width:29.191800px;}
._21{width:30.340800px;}
._1c{width:32.148000px;}
._22{width:33.789600px;}
._6{width:43.645800px;}
._25{width:45.936000px;}
._24{width:47.880000px;}
.fc5{color:rgb(54,95,145);}
.fc4{color:rgb(100,99,99);}
.fc3{color:rgb(96,124,180);}
.fc2{color:rgb(74,74,73);}
.fc1{color:rgb(1,2,2);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y38{bottom:46.489950px;}
.y5f{bottom:56.625900px;}
.y36{bottom:59.803050px;}
.y1{bottom:60.865950px;}
.y37{bottom:62.689950px;}
.y5e{bottom:72.825900px;}
.y4{bottom:106.299150px;}
.y141{bottom:109.873050px;}
.y193{bottom:110.130750px;}
.ya6{bottom:113.649000px;}
.ydd{bottom:113.755800px;}
.y22{bottom:114.387300px;}
.yfe{bottom:118.634550px;}
.y5d{bottom:118.912950px;}
.y174{bottom:128.275800px;}
.y21{bottom:134.187300px;}
.y140{bottom:136.873050px;}
.yfd{bottom:138.434550px;}
.ya5{bottom:140.649000px;}
.ydc{bottom:140.755800px;}
.y192{bottom:141.378750px;}
.y83{bottom:145.225200px;}
.y5c{bottom:145.912950px;}
.ybb{bottom:148.017300px;}
.y11f{bottom:150.748200px;}
.y173{bottom:155.275800px;}
.yfc{bottom:158.234550px;}
.y20{bottom:162.484800px;}
.y13f{bottom:163.873050px;}
.y1b0{bottom:165.888600px;}
.ydb{bottom:167.755800px;}
.yba{bottom:167.817300px;}
.y82{bottom:172.225200px;}
.y5b{bottom:172.912950px;}
.ya4{bottom:176.145000px;}
.y11e{bottom:177.748200px;}
.yfb{bottom:178.034550px;}
.y172{bottom:182.275800px;}
.yb9{bottom:187.617300px;}
.y191{bottom:189.638550px;}
.y13e{bottom:190.873050px;}
.y1af{bottom:192.888600px;}
.yda{bottom:194.755800px;}
.y158{bottom:196.305450px;}
.y81{bottom:199.225200px;}
.y5a{bottom:199.912950px;}
.ya3{bottom:203.145000px;}
.y11d{bottom:204.748200px;}
.yb8{bottom:207.417300px;}
.y1f{bottom:207.793800px;}
.y171{bottom:209.275800px;}
.y13d{bottom:217.873050px;}
.yd9{bottom:221.755800px;}
.y157{bottom:223.305450px;}
.y1ae{bottom:224.136600px;}
.y80{bottom:226.225200px;}
.y59{bottom:226.912950px;}
.yb7{bottom:227.217300px;}
.y1e{bottom:227.593800px;}
.ya2{bottom:230.145000px;}
.y11c{bottom:231.748200px;}
.y35{bottom:233.203800px;}
.y170{bottom:236.275800px;}
.y13c{bottom:244.873050px;}
.yb6{bottom:247.017300px;}
.y1d{bottom:247.393800px;}
.yd8{bottom:248.755800px;}
.y156{bottom:250.305450px;}
.y1ad{bottom:251.136600px;}
.y34{bottom:253.003800px;}
.yfa{bottom:253.458150px;}
.ya1{bottom:257.145000px;}
.y11b{bottom:258.748200px;}
.y58{bottom:262.408950px;}
.yb5{bottom:266.817300px;}
.y1c{bottom:267.193800px;}
.yd7{bottom:275.755800px;}
.y155{bottom:277.305450px;}
.y190{bottom:278.106300px;}
.y7f{bottom:278.737050px;}
.yf9{bottom:280.458150px;}
.y33{bottom:281.301300px;}
.y1ac{bottom:282.384600px;}
.ya0{bottom:284.145000px;}
.y11a{bottom:285.748200px;}
.yb4{bottom:286.617300px;}
.y1b{bottom:286.993800px;}
.y57{bottom:289.408950px;}
.y13b{bottom:295.183650px;}
.y7e{bottom:298.537050px;}
.yd6{bottom:302.755800px;}
.y154{bottom:304.305450px;}
.y18f{bottom:305.106300px;}
.yb3{bottom:306.417300px;}
.y1a{bottom:306.793800px;}
.yf8{bottom:307.458150px;}
.y1ab{bottom:309.384600px;}
.y9f{bottom:311.145000px;}
.y119{bottom:312.748200px;}
.y56{bottom:316.408950px;}
.y7d{bottom:318.337050px;}
.y16f{bottom:323.587650px;}
.yb2{bottom:326.217300px;}
.y19{bottom:326.593800px;}
.y32{bottom:326.610300px;}
.yd5{bottom:329.755800px;}
.y153{bottom:331.305450px;}
.y18e{bottom:332.106300px;}
.yf7{bottom:334.458150px;}
.y7c{bottom:338.137050px;}
.y9e{bottom:338.145000px;}
.y118{bottom:339.748200px;}
.y1aa{bottom:340.632600px;}
.y13a{bottom:342.534750px;}
.y16e{bottom:343.387650px;}
.y55{bottom:343.408950px;}
.y18{bottom:346.393800px;}
.y31{bottom:346.410300px;}
.yd4{bottom:356.755800px;}
.y7b{bottom:357.937050px;}
.y152{bottom:358.305450px;}
.y18d{bottom:359.106300px;}
.yf6{bottom:361.458150px;}
.y16d{bottom:363.187650px;}
.y9d{bottom:365.145000px;}
.y17{bottom:366.193800px;}
.y30{bottom:366.210300px;}
.y117{bottom:366.748200px;}
.y1a9{bottom:367.632600px;}
.y54{bottom:370.408950px;}
.y139{bottom:370.650750px;}
.yb1{bottom:371.529150px;}
.y7a{bottom:377.737050px;}
.y16c{bottom:382.987650px;}
.yd3{bottom:383.755800px;}
.y151{bottom:385.305450px;}
.y16{bottom:385.993800px;}
.y2f{bottom:386.010300px;}
.y18c{bottom:386.106300px;}
.yf5{bottom:388.458150px;}
.y116{bottom:393.748200px;}
.y1a8{bottom:394.632600px;}
.y53{bottom:397.408950px;}
.y79{bottom:397.537050px;}
.y138{bottom:397.650750px;}
.yb0{bottom:398.529150px;}
.y9c{bottom:400.641000px;}
.y16b{bottom:402.787650px;}
.y15{bottom:405.793800px;}
.y2e{bottom:405.810300px;}
.yd2{bottom:410.755800px;}
.y150{bottom:412.305450px;}
.y18b{bottom:413.106300px;}
.yf4{bottom:415.458150px;}
.y115{bottom:420.748200px;}
.y16a{bottom:422.587650px;}
.y52{bottom:424.408950px;}
.y137{bottom:424.650750px;}
.yaf{bottom:425.529150px;}
.y14{bottom:425.593800px;}
.y2d{bottom:425.610300px;}
.y1a7{bottom:425.880600px;}
.y9b{bottom:427.641000px;}
.yd1{bottom:437.755800px;}
.y14f{bottom:439.305450px;}
.y18a{bottom:440.106300px;}
.y169{bottom:442.387650px;}
.yf3{bottom:442.458150px;}
.y13{bottom:445.393800px;}
.y2c{bottom:445.410300px;}
.y114{bottom:447.748200px;}
.y51{bottom:451.408950px;}
.y136{bottom:451.650750px;}
.yae{bottom:452.529150px;}
.y1a6{bottom:452.880600px;}
.y9a{bottom:454.641000px;}
.y168{bottom:462.187650px;}
.yd0{bottom:464.755800px;}
.y12{bottom:465.193800px;}
.y2b{bottom:465.210300px;}
.y14e{bottom:466.305450px;}
.y189{bottom:467.106300px;}
.yf2{bottom:469.458150px;}
.y113{bottom:474.748200px;}
.y78{bottom:478.368600px;}
.y50{bottom:478.408950px;}
.y135{bottom:478.650750px;}
.yad{bottom:479.529150px;}
.y99{bottom:481.641000px;}
.y167{bottom:481.987650px;}
.y1a5{bottom:484.128600px;}
.y11{bottom:484.993800px;}
.y2a{bottom:485.010300px;}
.y14d{bottom:493.305450px;}
.y188{bottom:494.106300px;}
.y112{bottom:501.748200px;}
.y166{bottom:501.787650px;}
.y10{bottom:504.793800px;}
.y29{bottom:504.810300px;}
.yf1{bottom:504.954150px;}
.y77{bottom:505.368600px;}
.y4f{bottom:505.408950px;}
.yac{bottom:506.529150px;}
.y98{bottom:508.641000px;}
.y1a4{bottom:511.128600px;}
.y134{bottom:514.146750px;}
.y14c{bottom:520.305450px;}
.yf{bottom:524.593800px;}
.y28{bottom:524.610300px;}
.y111{bottom:528.748200px;}
.y187{bottom:529.602300px;}
.yf0{bottom:531.954150px;}
.y76{bottom:532.368600px;}
.y4e{bottom:532.408950px;}
.y97{bottom:535.641000px;}
.y133{bottom:541.146750px;}
.y1a3{bottom:542.376600px;}
.ye{bottom:544.393800px;}
.y27{bottom:544.410300px;}
.y110{bottom:555.748200px;}
.y186{bottom:556.602300px;}
.yef{bottom:558.954150px;}
.y75{bottom:559.368600px;}
.y4d{bottom:559.408950px;}
.y96{bottom:562.641000px;}
.yd{bottom:564.193800px;}
.y26{bottom:564.210300px;}
.y132{bottom:568.146750px;}
.y1a2{bottom:569.376600px;}
.ycf{bottom:579.587250px;}
.y10f{bottom:582.748200px;}
.y185{bottom:583.602300px;}
.yc{bottom:583.993800px;}
.y25{bottom:584.010300px;}
.yee{bottom:585.954150px;}
.y4c{bottom:586.408950px;}
.y95{bottom:589.641000px;}
.y74{bottom:594.864600px;}
.y131{bottom:595.146750px;}
.y1a1{bottom:596.376600px;}
.yce{bottom:599.387250px;}
.yb{bottom:603.793800px;}
.y24{bottom:603.810300px;}
.y165{bottom:609.427050px;}
.y10e{bottom:609.748200px;}
.y184{bottom:610.602300px;}
.yed{bottom:612.954150px;}
.y4b{bottom:613.408950px;}
.y94{bottom:616.641000px;}
.ycd{bottom:619.187250px;}
.y73{bottom:621.864600px;}
.y130{bottom:622.146750px;}
.y1a0{bottom:623.376600px;}
.yab{bottom:623.841000px;}
.y14b{bottom:635.137050px;}
.ya{bottom:636.348300px;}
.y23{bottom:636.364800px;}
.y164{bottom:636.427050px;}
.y10d{bottom:636.748200px;}
.y183{bottom:637.602300px;}
.ycc{bottom:638.987250px;}
.y4a{bottom:640.408950px;}
.y93{bottom:643.641000px;}
.y72{bottom:648.864600px;}
.y12f{bottom:649.146750px;}
.y19f{bottom:654.624600px;}
.y14a{bottom:654.937050px;}
.ycb{bottom:658.787250px;}
.y163{bottom:663.427050px;}
.yaa{bottom:663.441000px;}
.y10c{bottom:663.748200px;}
.y182{bottom:664.602300px;}
.y49{bottom:667.408950px;}
.y92{bottom:670.641000px;}
.y149{bottom:674.737050px;}
.y71{bottom:675.864600px;}
.y12e{bottom:676.146750px;}
.yca{bottom:678.587250px;}
.y19e{bottom:681.624600px;}
.ya9{bottom:683.241000px;}
.y162{bottom:690.427050px;}
.y181{bottom:691.602300px;}
.y48{bottom:694.408950px;}
.y148{bottom:694.537050px;}
.y91{bottom:697.641000px;}
.yc9{bottom:698.387250px;}
.yec{bottom:699.440850px;}
.y70{bottom:702.864600px;}
.ya8{bottom:703.041000px;}
.y12d{bottom:703.146750px;}
.y19d{bottom:708.624600px;}
.y161{bottom:717.427050px;}
.y180{bottom:718.602300px;}
.yeb{bottom:719.240850px;}
.y90{bottom:724.641000px;}
.y6f{bottom:729.864600px;}
.y47{bottom:729.904950px;}
.y12c{bottom:730.146750px;}
.yea{bottom:739.040850px;}
.y147{bottom:739.872600px;}
.y17f{bottom:745.602300px;}
.y10b{bottom:750.235050px;}
.y8f{bottom:751.641000px;}
.y160{bottom:752.923050px;}
.y6e{bottom:756.864600px;}
.y46{bottom:756.904950px;}
.y12b{bottom:757.146750px;}
.ye9{bottom:758.840850px;}
.y19c{bottom:766.872600px;}
.y10a{bottom:770.035050px;}
.yc8{bottom:773.803050px;}
.y146{bottom:775.368600px;}
.ye8{bottom:778.640850px;}
.y8e{bottom:778.641000px;}
.y15f{bottom:779.923050px;}
.y6d{bottom:783.864600px;}
.y45{bottom:783.904950px;}
.y12a{bottom:784.146750px;}
.y109{bottom:789.835050px;}
.y19b{bottom:798.120600px;}
.ye7{bottom:798.440850px;}
.yc7{bottom:800.803050px;}
.y145{bottom:802.368600px;}
.y8d{bottom:805.641000px;}
.y15e{bottom:806.923050px;}
.y108{bottom:809.635050px;}
.y6c{bottom:810.864600px;}
.y44{bottom:810.904950px;}
.y129{bottom:811.146750px;}
.ye6{bottom:818.240850px;}
.y19a{bottom:825.120600px;}
.yc6{bottom:827.803050px;}
.y107{bottom:829.435050px;}
.y17e{bottom:832.089150px;}
.y8c{bottom:832.641000px;}
.y6{bottom:833.405100px;}
.y15d{bottom:833.923050px;}
.y6b{bottom:837.864600px;}
.y43{bottom:837.904950px;}
.ye5{bottom:838.040850px;}
.y128{bottom:838.146750px;}
.y106{bottom:849.235050px;}
.y17d{bottom:851.889150px;}
.y199{bottom:852.120600px;}
.yc5{bottom:854.803050px;}
.ye4{bottom:857.840850px;}
.y8b{bottom:859.641000px;}
.y15c{bottom:860.923050px;}
.y5{bottom:861.702600px;}
.y6a{bottom:864.864600px;}
.y42{bottom:864.904950px;}
.y127{bottom:865.146750px;}
.y17c{bottom:871.689150px;}
.ye3{bottom:877.640850px;}
.yc4{bottom:881.803050px;}
.y198{bottom:883.368600px;}
.y8a{bottom:886.641000px;}
.y17b{bottom:891.489150px;}
.y69{bottom:891.864600px;}
.y41{bottom:891.904950px;}
.y126{bottom:892.146750px;}
.y15b{bottom:896.427000px;}
.ye2{bottom:897.440850px;}
.ya7{bottom:900.360600px;}
.yc3{bottom:908.803050px;}
.y197{bottom:910.368600px;}
.y17a{bottom:911.289150px;}
.y89{bottom:913.641000px;}
.y144{bottom:918.864600px;}
.y40{bottom:918.904950px;}
.y125{bottom:919.146750px;}
.y15a{bottom:923.427000px;}
.y68{bottom:927.360600px;}
.y179{bottom:931.089150px;}
.yc2{bottom:935.803050px;}
.y105{bottom:936.546750px;}
.y88{bottom:940.641000px;}
.y196{bottom:941.616600px;}
.y143{bottom:945.864600px;}
.y3f{bottom:945.904950px;}
.y124{bottom:946.146750px;}
.y1b5{bottom:950.112600px;}
.y159{bottom:950.427000px;}
.y67{bottom:954.360600px;}
.yc1{bottom:962.803050px;}
.y104{bottom:963.546750px;}
.y87{bottom:967.641000px;}
.y9{bottom:971.348850px;}
.ye1{bottom:972.864600px;}
.y3e{bottom:972.904950px;}
.y123{bottom:973.146750px;}
.y1b4{bottom:977.112600px;}
.y66{bottom:981.360600px;}
.yc0{bottom:989.803050px;}
.y103{bottom:990.546750px;}
.y86{bottom:994.641000px;}
.ye0{bottom:999.864600px;}
.y3d{bottom:999.904950px;}
.y1b3{bottom:1004.112600px;}
.y8{bottom:1005.704700px;}
.y65{bottom:1008.360600px;}
.y178{bottom:1011.904950px;}
.ybf{bottom:1016.803050px;}
.y85{bottom:1021.641000px;}
.y122{bottom:1025.658600px;}
.ydf{bottom:1026.864600px;}
.y3c{bottom:1026.904950px;}
.y1b2{bottom:1031.112600px;}
.y7{bottom:1032.704700px;}
.y64{bottom:1035.360600px;}
.y177{bottom:1038.904950px;}
.ybe{bottom:1043.803050px;}
.y121{bottom:1045.458600px;}
.yde{bottom:1053.864600px;}
.y3b{bottom:1053.904950px;}
.y1b1{bottom:1058.112600px;}
.y63{bottom:1062.360600px;}
.y120{bottom:1065.258600px;}
.y176{bottom:1065.904950px;}
.y84{bottom:1069.900800px;}
.ybd{bottom:1070.803050px;}
.y142{bottom:1080.864600px;}
.y102{bottom:1085.058600px;}
.y195{bottom:1085.112600px;}
.y62{bottom:1089.360600px;}
.y175{bottom:1092.904950px;}
.ybc{bottom:1097.803050px;}
.y101{bottom:1104.858600px;}
.y194{bottom:1112.112600px;}
.y61{bottom:1116.360600px;}
.y100{bottom:1124.658600px;}
.y3a{bottom:1141.164900px;}
.y60{bottom:1143.360600px;}
.yff{bottom:1144.458600px;}
.y3{bottom:1171.698450px;}
.y2{bottom:1187.898450px;}
.y39{bottom:1204.375350px;}
.h3{height:39.418945px;}
.hd{height:43.183594px;}
.ha{height:43.798828px;}
.h9{height:46.664062px;}
.h2{height:48.656250px;}
.h8{height:51.820312px;}
.he{height:52.558594px;}
.h4{height:55.488281px;}
.hb{height:59.390625px;}
.h5{height:61.037109px;}
.h7{height:63.632812px;}
.hc{height:66.585938px;}
.h6{height:69.829102px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:73.338150px;}
.x4{left:74.401050px;}
.x1{left:86.527500px;}
.x7{left:106.299150px;}
.xc{left:127.559100px;}
.x10{left:131.805150px;}
.xf{left:148.818900px;}
.x8{left:455.455650px;}
.xd{left:492.632700px;}
.x6{left:541.946400px;}
.x2{left:551.814900px;}
.x5{left:595.043400px;}
.xb{left:612.458850px;}
.x3{left:706.047000px;}
.x9{left:793.488150px;}
.xa{left:838.695600px;}
@media print{
.v1{vertical-align:-7.317333pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-1.440000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.128000pt;}
.ws15{word-spacing:-18.666667pt;}
.ws1c{word-spacing:-16.128000pt;}
.ws1b{word-spacing:-16.064000pt;}
.ws10{word-spacing:-16.000000pt;}
.ws0{word-spacing:-14.666667pt;}
.wse{word-spacing:-0.768000pt;}
.ws1a{word-spacing:-0.704000pt;}
.ws4{word-spacing:-0.576000pt;}
.wsa{word-spacing:-0.256000pt;}
.ws1{word-spacing:0.000000pt;}
.wsd{word-spacing:0.128000pt;}
.ws5{word-spacing:0.704000pt;}
.ws19{word-spacing:1.088000pt;}
.ws16{word-spacing:2.304000pt;}
.ws6{word-spacing:2.752000pt;}
.ws13{word-spacing:3.136000pt;}
.ws14{word-spacing:3.456000pt;}
.ws9{word-spacing:3.584000pt;}
.ws3{word-spacing:4.224000pt;}
.wsf{word-spacing:4.544000pt;}
.ws8{word-spacing:5.120000pt;}
.ws12{word-spacing:5.184000pt;}
.ws17{word-spacing:5.312000pt;}
.ws2{word-spacing:6.864000pt;}
.ws18{word-spacing:8.064000pt;}
.wsb{word-spacing:9.856000pt;}
.ws11{word-spacing:15.808000pt;}
.wsc{word-spacing:16.128000pt;}
.ws7{word-spacing:18.944000pt;}
._23{margin-left:-11.020800pt;}
._20{margin-left:-9.336000pt;}
._1f{margin-left:-7.894400pt;}
._1e{margin-left:-6.867200pt;}
._2{margin-left:-5.968000pt;}
._1d{margin-left:-5.055467pt;}
._0{margin-left:-4.159467pt;}
._3{margin-left:-3.091733pt;}
._7{margin-left:-1.988800pt;}
._1{margin-left:-1.014933pt;}
._12{width:1.044267pt;}
._15{width:2.041600pt;}
._14{width:3.156267pt;}
._13{width:4.071467pt;}
._a{width:4.974933pt;}
._8{width:5.919467pt;}
._11{width:6.946133pt;}
._18{width:7.872000pt;}
._4{width:8.835200pt;}
._b{width:10.125867pt;}
._10{width:11.217067pt;}
._f{width:12.273067pt;}
._19{width:13.907200pt;}
._1b{width:14.840000pt;}
._9{width:16.602667pt;}
._d{width:18.309867pt;}
._5{width:19.706133pt;}
._c{width:20.691733pt;}
._17{width:22.598400pt;}
._1a{width:23.544000pt;}
._16{width:24.798400pt;}
._e{width:25.948267pt;}
._21{width:26.969600pt;}
._1c{width:28.576000pt;}
._22{width:30.035200pt;}
._6{width:38.796267pt;}
._25{width:40.832000pt;}
._24{width:42.560000pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:41.324400pt;}
.y5f{bottom:50.334133pt;}
.y36{bottom:53.158267pt;}
.y1{bottom:54.103067pt;}
.y37{bottom:55.724400pt;}
.y5e{bottom:64.734133pt;}
.y4{bottom:94.488133pt;}
.y141{bottom:97.664933pt;}
.y193{bottom:97.894000pt;}
.ya6{bottom:101.021333pt;}
.ydd{bottom:101.116267pt;}
.y22{bottom:101.677600pt;}
.yfe{bottom:105.452933pt;}
.y5d{bottom:105.700400pt;}
.y174{bottom:114.022933pt;}
.y21{bottom:119.277600pt;}
.y140{bottom:121.664933pt;}
.yfd{bottom:123.052933pt;}
.ya5{bottom:125.021333pt;}
.ydc{bottom:125.116267pt;}
.y192{bottom:125.670000pt;}
.y83{bottom:129.089067pt;}
.y5c{bottom:129.700400pt;}
.ybb{bottom:131.570933pt;}
.y11f{bottom:133.998400pt;}
.y173{bottom:138.022933pt;}
.yfc{bottom:140.652933pt;}
.y20{bottom:144.430933pt;}
.y13f{bottom:145.664933pt;}
.y1b0{bottom:147.456533pt;}
.ydb{bottom:149.116267pt;}
.yba{bottom:149.170933pt;}
.y82{bottom:153.089067pt;}
.y5b{bottom:153.700400pt;}
.ya4{bottom:156.573333pt;}
.y11e{bottom:157.998400pt;}
.yfb{bottom:158.252933pt;}
.y172{bottom:162.022933pt;}
.yb9{bottom:166.770933pt;}
.y191{bottom:168.567600pt;}
.y13e{bottom:169.664933pt;}
.y1af{bottom:171.456533pt;}
.yda{bottom:173.116267pt;}
.y158{bottom:174.493733pt;}
.y81{bottom:177.089067pt;}
.y5a{bottom:177.700400pt;}
.ya3{bottom:180.573333pt;}
.y11d{bottom:181.998400pt;}
.yb8{bottom:184.370933pt;}
.y1f{bottom:184.705600pt;}
.y171{bottom:186.022933pt;}
.y13d{bottom:193.664933pt;}
.yd9{bottom:197.116267pt;}
.y157{bottom:198.493733pt;}
.y1ae{bottom:199.232533pt;}
.y80{bottom:201.089067pt;}
.y59{bottom:201.700400pt;}
.yb7{bottom:201.970933pt;}
.y1e{bottom:202.305600pt;}
.ya2{bottom:204.573333pt;}
.y11c{bottom:205.998400pt;}
.y35{bottom:207.292267pt;}
.y170{bottom:210.022933pt;}
.y13c{bottom:217.664933pt;}
.yb6{bottom:219.570933pt;}
.y1d{bottom:219.905600pt;}
.yd8{bottom:221.116267pt;}
.y156{bottom:222.493733pt;}
.y1ad{bottom:223.232533pt;}
.y34{bottom:224.892267pt;}
.yfa{bottom:225.296133pt;}
.ya1{bottom:228.573333pt;}
.y11b{bottom:229.998400pt;}
.y58{bottom:233.252400pt;}
.yb5{bottom:237.170933pt;}
.y1c{bottom:237.505600pt;}
.yd7{bottom:245.116267pt;}
.y155{bottom:246.493733pt;}
.y190{bottom:247.205600pt;}
.y7f{bottom:247.766267pt;}
.yf9{bottom:249.296133pt;}
.y33{bottom:250.045600pt;}
.y1ac{bottom:251.008533pt;}
.ya0{bottom:252.573333pt;}
.y11a{bottom:253.998400pt;}
.yb4{bottom:254.770933pt;}
.y1b{bottom:255.105600pt;}
.y57{bottom:257.252400pt;}
.y13b{bottom:262.385467pt;}
.y7e{bottom:265.366267pt;}
.yd6{bottom:269.116267pt;}
.y154{bottom:270.493733pt;}
.y18f{bottom:271.205600pt;}
.yb3{bottom:272.370933pt;}
.y1a{bottom:272.705600pt;}
.yf8{bottom:273.296133pt;}
.y1ab{bottom:275.008533pt;}
.y9f{bottom:276.573333pt;}
.y119{bottom:277.998400pt;}
.y56{bottom:281.252400pt;}
.y7d{bottom:282.966267pt;}
.y16f{bottom:287.633467pt;}
.yb2{bottom:289.970933pt;}
.y19{bottom:290.305600pt;}
.y32{bottom:290.320267pt;}
.yd5{bottom:293.116267pt;}
.y153{bottom:294.493733pt;}
.y18e{bottom:295.205600pt;}
.yf7{bottom:297.296133pt;}
.y7c{bottom:300.566267pt;}
.y9e{bottom:300.573333pt;}
.y118{bottom:301.998400pt;}
.y1aa{bottom:302.784533pt;}
.y13a{bottom:304.475333pt;}
.y16e{bottom:305.233467pt;}
.y55{bottom:305.252400pt;}
.y18{bottom:307.905600pt;}
.y31{bottom:307.920267pt;}
.yd4{bottom:317.116267pt;}
.y7b{bottom:318.166267pt;}
.y152{bottom:318.493733pt;}
.y18d{bottom:319.205600pt;}
.yf6{bottom:321.296133pt;}
.y16d{bottom:322.833467pt;}
.y9d{bottom:324.573333pt;}
.y17{bottom:325.505600pt;}
.y30{bottom:325.520267pt;}
.y117{bottom:325.998400pt;}
.y1a9{bottom:326.784533pt;}
.y54{bottom:329.252400pt;}
.y139{bottom:329.467333pt;}
.yb1{bottom:330.248133pt;}
.y7a{bottom:335.766267pt;}
.y16c{bottom:340.433467pt;}
.yd3{bottom:341.116267pt;}
.y151{bottom:342.493733pt;}
.y16{bottom:343.105600pt;}
.y2f{bottom:343.120267pt;}
.y18c{bottom:343.205600pt;}
.yf5{bottom:345.296133pt;}
.y116{bottom:349.998400pt;}
.y1a8{bottom:350.784533pt;}
.y53{bottom:353.252400pt;}
.y79{bottom:353.366267pt;}
.y138{bottom:353.467333pt;}
.yb0{bottom:354.248133pt;}
.y9c{bottom:356.125333pt;}
.y16b{bottom:358.033467pt;}
.y15{bottom:360.705600pt;}
.y2e{bottom:360.720267pt;}
.yd2{bottom:365.116267pt;}
.y150{bottom:366.493733pt;}
.y18b{bottom:367.205600pt;}
.yf4{bottom:369.296133pt;}
.y115{bottom:373.998400pt;}
.y16a{bottom:375.633467pt;}
.y52{bottom:377.252400pt;}
.y137{bottom:377.467333pt;}
.yaf{bottom:378.248133pt;}
.y14{bottom:378.305600pt;}
.y2d{bottom:378.320267pt;}
.y1a7{bottom:378.560533pt;}
.y9b{bottom:380.125333pt;}
.yd1{bottom:389.116267pt;}
.y14f{bottom:390.493733pt;}
.y18a{bottom:391.205600pt;}
.y169{bottom:393.233467pt;}
.yf3{bottom:393.296133pt;}
.y13{bottom:395.905600pt;}
.y2c{bottom:395.920267pt;}
.y114{bottom:397.998400pt;}
.y51{bottom:401.252400pt;}
.y136{bottom:401.467333pt;}
.yae{bottom:402.248133pt;}
.y1a6{bottom:402.560533pt;}
.y9a{bottom:404.125333pt;}
.y168{bottom:410.833467pt;}
.yd0{bottom:413.116267pt;}
.y12{bottom:413.505600pt;}
.y2b{bottom:413.520267pt;}
.y14e{bottom:414.493733pt;}
.y189{bottom:415.205600pt;}
.yf2{bottom:417.296133pt;}
.y113{bottom:421.998400pt;}
.y78{bottom:425.216533pt;}
.y50{bottom:425.252400pt;}
.y135{bottom:425.467333pt;}
.yad{bottom:426.248133pt;}
.y99{bottom:428.125333pt;}
.y167{bottom:428.433467pt;}
.y1a5{bottom:430.336533pt;}
.y11{bottom:431.105600pt;}
.y2a{bottom:431.120267pt;}
.y14d{bottom:438.493733pt;}
.y188{bottom:439.205600pt;}
.y112{bottom:445.998400pt;}
.y166{bottom:446.033467pt;}
.y10{bottom:448.705600pt;}
.y29{bottom:448.720267pt;}
.yf1{bottom:448.848133pt;}
.y77{bottom:449.216533pt;}
.y4f{bottom:449.252400pt;}
.yac{bottom:450.248133pt;}
.y98{bottom:452.125333pt;}
.y1a4{bottom:454.336533pt;}
.y134{bottom:457.019333pt;}
.y14c{bottom:462.493733pt;}
.yf{bottom:466.305600pt;}
.y28{bottom:466.320267pt;}
.y111{bottom:469.998400pt;}
.y187{bottom:470.757600pt;}
.yf0{bottom:472.848133pt;}
.y76{bottom:473.216533pt;}
.y4e{bottom:473.252400pt;}
.y97{bottom:476.125333pt;}
.y133{bottom:481.019333pt;}
.y1a3{bottom:482.112533pt;}
.ye{bottom:483.905600pt;}
.y27{bottom:483.920267pt;}
.y110{bottom:493.998400pt;}
.y186{bottom:494.757600pt;}
.yef{bottom:496.848133pt;}
.y75{bottom:497.216533pt;}
.y4d{bottom:497.252400pt;}
.y96{bottom:500.125333pt;}
.yd{bottom:501.505600pt;}
.y26{bottom:501.520267pt;}
.y132{bottom:505.019333pt;}
.y1a2{bottom:506.112533pt;}
.ycf{bottom:515.188667pt;}
.y10f{bottom:517.998400pt;}
.y185{bottom:518.757600pt;}
.yc{bottom:519.105600pt;}
.y25{bottom:519.120267pt;}
.yee{bottom:520.848133pt;}
.y4c{bottom:521.252400pt;}
.y95{bottom:524.125333pt;}
.y74{bottom:528.768533pt;}
.y131{bottom:529.019333pt;}
.y1a1{bottom:530.112533pt;}
.yce{bottom:532.788667pt;}
.yb{bottom:536.705600pt;}
.y24{bottom:536.720267pt;}
.y165{bottom:541.712933pt;}
.y10e{bottom:541.998400pt;}
.y184{bottom:542.757600pt;}
.yed{bottom:544.848133pt;}
.y4b{bottom:545.252400pt;}
.y94{bottom:548.125333pt;}
.ycd{bottom:550.388667pt;}
.y73{bottom:552.768533pt;}
.y130{bottom:553.019333pt;}
.y1a0{bottom:554.112533pt;}
.yab{bottom:554.525333pt;}
.y14b{bottom:564.566267pt;}
.ya{bottom:565.642933pt;}
.y23{bottom:565.657600pt;}
.y164{bottom:565.712933pt;}
.y10d{bottom:565.998400pt;}
.y183{bottom:566.757600pt;}
.ycc{bottom:567.988667pt;}
.y4a{bottom:569.252400pt;}
.y93{bottom:572.125333pt;}
.y72{bottom:576.768533pt;}
.y12f{bottom:577.019333pt;}
.y19f{bottom:581.888533pt;}
.y14a{bottom:582.166267pt;}
.ycb{bottom:585.588667pt;}
.y163{bottom:589.712933pt;}
.yaa{bottom:589.725333pt;}
.y10c{bottom:589.998400pt;}
.y182{bottom:590.757600pt;}
.y49{bottom:593.252400pt;}
.y92{bottom:596.125333pt;}
.y149{bottom:599.766267pt;}
.y71{bottom:600.768533pt;}
.y12e{bottom:601.019333pt;}
.yca{bottom:603.188667pt;}
.y19e{bottom:605.888533pt;}
.ya9{bottom:607.325333pt;}
.y162{bottom:613.712933pt;}
.y181{bottom:614.757600pt;}
.y48{bottom:617.252400pt;}
.y148{bottom:617.366267pt;}
.y91{bottom:620.125333pt;}
.yc9{bottom:620.788667pt;}
.yec{bottom:621.725200pt;}
.y70{bottom:624.768533pt;}
.ya8{bottom:624.925333pt;}
.y12d{bottom:625.019333pt;}
.y19d{bottom:629.888533pt;}
.y161{bottom:637.712933pt;}
.y180{bottom:638.757600pt;}
.yeb{bottom:639.325200pt;}
.y90{bottom:644.125333pt;}
.y6f{bottom:648.768533pt;}
.y47{bottom:648.804400pt;}
.y12c{bottom:649.019333pt;}
.yea{bottom:656.925200pt;}
.y147{bottom:657.664533pt;}
.y17f{bottom:662.757600pt;}
.y10b{bottom:666.875600pt;}
.y8f{bottom:668.125333pt;}
.y160{bottom:669.264933pt;}
.y6e{bottom:672.768533pt;}
.y46{bottom:672.804400pt;}
.y12b{bottom:673.019333pt;}
.ye9{bottom:674.525200pt;}
.y19c{bottom:681.664533pt;}
.y10a{bottom:684.475600pt;}
.yc8{bottom:687.824933pt;}
.y146{bottom:689.216533pt;}
.ye8{bottom:692.125200pt;}
.y8e{bottom:692.125333pt;}
.y15f{bottom:693.264933pt;}
.y6d{bottom:696.768533pt;}
.y45{bottom:696.804400pt;}
.y12a{bottom:697.019333pt;}
.y109{bottom:702.075600pt;}
.y19b{bottom:709.440533pt;}
.ye7{bottom:709.725200pt;}
.yc7{bottom:711.824933pt;}
.y145{bottom:713.216533pt;}
.y8d{bottom:716.125333pt;}
.y15e{bottom:717.264933pt;}
.y108{bottom:719.675600pt;}
.y6c{bottom:720.768533pt;}
.y44{bottom:720.804400pt;}
.y129{bottom:721.019333pt;}
.ye6{bottom:727.325200pt;}
.y19a{bottom:733.440533pt;}
.yc6{bottom:735.824933pt;}
.y107{bottom:737.275600pt;}
.y17e{bottom:739.634800pt;}
.y8c{bottom:740.125333pt;}
.y6{bottom:740.804533pt;}
.y15d{bottom:741.264933pt;}
.y6b{bottom:744.768533pt;}
.y43{bottom:744.804400pt;}
.ye5{bottom:744.925200pt;}
.y128{bottom:745.019333pt;}
.y106{bottom:754.875600pt;}
.y17d{bottom:757.234800pt;}
.y199{bottom:757.440533pt;}
.yc5{bottom:759.824933pt;}
.ye4{bottom:762.525200pt;}
.y8b{bottom:764.125333pt;}
.y15c{bottom:765.264933pt;}
.y5{bottom:765.957867pt;}
.y6a{bottom:768.768533pt;}
.y42{bottom:768.804400pt;}
.y127{bottom:769.019333pt;}
.y17c{bottom:774.834800pt;}
.ye3{bottom:780.125200pt;}
.yc4{bottom:783.824933pt;}
.y198{bottom:785.216533pt;}
.y8a{bottom:788.125333pt;}
.y17b{bottom:792.434800pt;}
.y69{bottom:792.768533pt;}
.y41{bottom:792.804400pt;}
.y126{bottom:793.019333pt;}
.y15b{bottom:796.824000pt;}
.ye2{bottom:797.725200pt;}
.ya7{bottom:800.320533pt;}
.yc3{bottom:807.824933pt;}
.y197{bottom:809.216533pt;}
.y17a{bottom:810.034800pt;}
.y89{bottom:812.125333pt;}
.y144{bottom:816.768533pt;}
.y40{bottom:816.804400pt;}
.y125{bottom:817.019333pt;}
.y15a{bottom:820.824000pt;}
.y68{bottom:824.320533pt;}
.y179{bottom:827.634800pt;}
.yc2{bottom:831.824933pt;}
.y105{bottom:832.486000pt;}
.y88{bottom:836.125333pt;}
.y196{bottom:836.992533pt;}
.y143{bottom:840.768533pt;}
.y3f{bottom:840.804400pt;}
.y124{bottom:841.019333pt;}
.y1b5{bottom:844.544533pt;}
.y159{bottom:844.824000pt;}
.y67{bottom:848.320533pt;}
.yc1{bottom:855.824933pt;}
.y104{bottom:856.486000pt;}
.y87{bottom:860.125333pt;}
.y9{bottom:863.421200pt;}
.ye1{bottom:864.768533pt;}
.y3e{bottom:864.804400pt;}
.y123{bottom:865.019333pt;}
.y1b4{bottom:868.544533pt;}
.y66{bottom:872.320533pt;}
.yc0{bottom:879.824933pt;}
.y103{bottom:880.486000pt;}
.y86{bottom:884.125333pt;}
.ye0{bottom:888.768533pt;}
.y3d{bottom:888.804400pt;}
.y1b3{bottom:892.544533pt;}
.y8{bottom:893.959733pt;}
.y65{bottom:896.320533pt;}
.y178{bottom:899.471067pt;}
.ybf{bottom:903.824933pt;}
.y85{bottom:908.125333pt;}
.y122{bottom:911.696533pt;}
.ydf{bottom:912.768533pt;}
.y3c{bottom:912.804400pt;}
.y1b2{bottom:916.544533pt;}
.y7{bottom:917.959733pt;}
.y64{bottom:920.320533pt;}
.y177{bottom:923.471067pt;}
.ybe{bottom:927.824933pt;}
.y121{bottom:929.296533pt;}
.yde{bottom:936.768533pt;}
.y3b{bottom:936.804400pt;}
.y1b1{bottom:940.544533pt;}
.y63{bottom:944.320533pt;}
.y120{bottom:946.896533pt;}
.y176{bottom:947.471067pt;}
.y84{bottom:951.022933pt;}
.ybd{bottom:951.824933pt;}
.y142{bottom:960.768533pt;}
.y102{bottom:964.496533pt;}
.y195{bottom:964.544533pt;}
.y62{bottom:968.320533pt;}
.y175{bottom:971.471067pt;}
.ybc{bottom:975.824933pt;}
.y101{bottom:982.096533pt;}
.y194{bottom:988.544533pt;}
.y61{bottom:992.320533pt;}
.y100{bottom:999.696533pt;}
.y3a{bottom:1014.368800pt;}
.y60{bottom:1016.320533pt;}
.yff{bottom:1017.296533pt;}
.y3{bottom:1041.509733pt;}
.y2{bottom:1055.909733pt;}
.y39{bottom:1070.555867pt;}
.h3{height:35.039062pt;}
.hd{height:38.385417pt;}
.ha{height:38.932292pt;}
.h9{height:41.479167pt;}
.h2{height:43.250000pt;}
.h8{height:46.062500pt;}
.he{height:46.718750pt;}
.h4{height:49.322917pt;}
.hb{height:52.791667pt;}
.h5{height:54.255208pt;}
.h7{height:56.562500pt;}
.hc{height:59.187500pt;}
.h6{height:62.070312pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:65.189467pt;}
.x4{left:66.134267pt;}
.x1{left:76.913333pt;}
.x7{left:94.488133pt;}
.xc{left:113.385867pt;}
.x10{left:117.160133pt;}
.xf{left:132.283467pt;}
.x8{left:404.849467pt;}
.xd{left:437.895733pt;}
.x6{left:481.730133pt;}
.x2{left:490.502133pt;}
.x5{left:528.927467pt;}
.xb{left:544.407867pt;}
.x3{left:627.597333pt;}
.x9{left:705.322800pt;}
.xa{left:745.507200pt;}
}




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