
    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_0136660017d583e788291963.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_738922b19921be1ae54eea59.woff')format("woff");}.ff2{font-family:ff2;line-height:1.004395;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_1cc488c223d1a058f781651b.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_3f5428b7cff6334b669dd236.woff')format("woff");}.ff4{font-family:ff4;line-height:0.975586;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_67c3ae624806fc02a4319528.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_fa51d6964389d069cdad35dd.woff')format("woff");}.ff6{font-family:ff6;line-height:0.829590;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_6d14824a50dc09408d631aa5.woff')format("woff");}.ff7{font-family:ff7;line-height:1.004395;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_e344af113fe154d73280f434.woff')format("woff");}.ff8{font-family:ff8;line-height:1.004395;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_50cc58615f89123555df3044.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6d14824a50dc09408d631aa5.woff')format("woff");}.ffa{font-family:ffa;line-height:1.004395;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_6168cbf0cb44dd3b17989d91.woff')format("woff");}.ffb{font-family:ffb;line-height:1.193359;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_ba2ab56317a4476343dde48b.woff')format("woff");}.ffc{font-family:ffc;line-height:1.004395;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_6dac9205b00fdcf624f2d549.woff')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_490f5629ceb197538d2a35dd.woff')format("woff");}.ffe{font-family:ffe;line-height:1.193359;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_c5c450460707951cd052cff1.woff')format("woff");}.fff{font-family:fff;line-height:0.853027;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_1e8c0b5f6cc78a28615db237.woff')format("woff");}.ff10{font-family:ff10;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_327060715ca7a652338d5968.woff')format("woff");}.ff11{font-family:ff11;line-height:0.692383;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;}
.v3{vertical-align:-6.468000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.976000px;}
.ls0{letter-spacing:-14.472000px;}
.ls3{letter-spacing:-11.448000px;}
.ls5{letter-spacing:-7.326000px;}
.ls1{letter-spacing:-1.620000px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:6.494400px;}
.ls7{letter-spacing:7.207200px;}
.ls8{letter-spacing:55.960200px;}
.ls4{letter-spacing:55.960800px;}
.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;}
}
.ws4{word-spacing:-21.000000px;}
.ws15{word-spacing:-18.000000px;}
.ws0{word-spacing:-16.500000px;}
.ws1b{word-spacing:-13.500000px;}
.ws5{word-spacing:-10.494000px;}
.ws3{word-spacing:-6.552000px;}
.ws14{word-spacing:-4.464000px;}
.ws19{word-spacing:-3.240000px;}
.ws6{word-spacing:-2.916000px;}
.wsf{word-spacing:-2.376000px;}
.wsb{word-spacing:-2.268000px;}
.ws11{word-spacing:-1.998000px;}
.ws1e{word-spacing:-1.188000px;}
.ws13{word-spacing:-0.864000px;}
.ws2{word-spacing:0.000000px;}
.wsc{word-spacing:0.054000px;}
.ws9{word-spacing:0.378000px;}
.ws1d{word-spacing:0.432000px;}
.ws16{word-spacing:0.858000px;}
.ws1f{word-spacing:0.864000px;}
.ws20{word-spacing:1.566000px;}
.ws8{word-spacing:1.890000px;}
.wse{word-spacing:1.914000px;}
.ws12{word-spacing:2.106000px;}
.ws7{word-spacing:2.430000px;}
.ws24{word-spacing:2.592000px;}
.ws23{word-spacing:3.600000px;}
.ws1c{word-spacing:4.608000px;}
.wsa{word-spacing:4.806000px;}
.ws10{word-spacing:4.968000px;}
.ws18{word-spacing:5.112000px;}
.ws17{word-spacing:7.326000px;}
.wsd{word-spacing:9.504000px;}
.ws1a{word-spacing:12.384000px;}
.ws1{word-spacing:14.472000px;}
.ws21{word-spacing:16.488000px;}
.ws22{word-spacing:17.640000px;}
._4{margin-left:-9.594000px;}
._3{margin-left:-8.586000px;}
._5{margin-left:-7.119000px;}
._1{margin-left:-5.346000px;}
._2{margin-left:-3.609000px;}
._6{margin-left:-2.592000px;}
._0{margin-left:-1.141800px;}
._c{width:1.089000px;}
._9{width:2.752200px;}
._10{width:4.032600px;}
._7{width:5.702400px;}
._1c{width:6.883800px;}
._f{width:8.164200px;}
._b{width:9.979200px;}
._1b{width:11.140800px;}
._d{width:12.949200px;}
._18{width:14.388000px;}
._11{width:15.404400px;}
._24{width:16.927200px;}
._1d{width:18.011400px;}
._14{width:19.133400px;}
._e{width:20.387400px;}
._a{width:21.588600px;}
._21{width:22.862400px;}
._26{width:24.129600px;}
._1f{width:25.713600px;}
._25{width:27.360000px;}
._20{width:29.594400px;}
._12{width:31.449000px;}
._1a{width:33.343200px;}
._22{width:34.359600px;}
._19{width:36.496200px;}
._17{width:38.068800px;}
._8{width:40.629600px;}
._15{width:41.751600px;}
._13{width:42.966000px;}
._27{width:46.756800px;}
._16{width:57.981000px;}
._1e{width:64.858200px;}
._23{width:85.960800px;}
.fc3{color:rgb(100,99,99);}
.fc2{color:rgb(74,74,73);}
.fc1{color:rgb(1,2,2);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.976000px;}
.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;}
.y5e{bottom:46.489950px;}
.y88{bottom:56.625900px;}
.y5c{bottom:59.803050px;}
.y1{bottom:60.865950px;}
.y5d{bottom:62.689950px;}
.y87{bottom:72.825900px;}
.y4{bottom:106.299150px;}
.y1cd{bottom:106.299450px;}
.ycb{bottom:106.303800px;}
.y86{bottom:106.308150px;}
.yf7{bottom:106.308300px;}
.yb0{bottom:106.330650px;}
.y1ab{bottom:106.339650px;}
.y16f{bottom:108.864600px;}
.y33{bottom:115.025100px;}
.y5b{bottom:115.041600px;}
.y1e0{bottom:122.137050px;}
.yca{bottom:124.299300px;}
.y85{bottom:124.303650px;}
.yf6{bottom:124.303800px;}
.yaf{bottom:124.326150px;}
.y1aa{bottom:124.335150px;}
.y133{bottom:130.783500px;}
.y153{bottom:132.803100px;}
.y16e{bottom:135.864600px;}
.y116{bottom:139.825050px;}
.y84{bottom:142.299150px;}
.yf5{bottom:142.299300px;}
.yae{bottom:142.321650px;}
.y1a9{bottom:142.330650px;}
.y32{bottom:143.322600px;}
.y5a{bottom:143.339100px;}
.y1df{bottom:149.137050px;}
.yc9{bottom:150.803250px;}
.y19c{bottom:153.167700px;}
.y132{bottom:157.783500px;}
.y115{bottom:159.625050px;}
.yad{bottom:160.317150px;}
.y1a8{bottom:160.326150px;}
.y16d{bottom:162.864600px;}
.yf4{bottom:168.821250px;}
.y83{bottom:168.834600px;}
.y17b{bottom:171.360600px;}
.y1de{bottom:176.137050px;}
.y1cc{bottom:176.145000px;}
.yc8{bottom:177.307050px;}
.yac{bottom:178.312650px;}
.y1a7{bottom:178.321650px;}
.y114{bottom:179.425050px;}
.y19b{bottom:180.167700px;}
.y131{bottom:184.783500px;}
.y152{bottom:185.049000px;}
.yf3{bottom:186.816750px;}
.y82{bottom:186.830100px;}
.y31{bottom:188.631600px;}
.y59{bottom:188.648100px;}
.y16c{bottom:189.864600px;}
.y1fa{bottom:193.801200px;}
.yab{bottom:196.308150px;}
.y1a6{bottom:196.317150px;}
.y17a{bottom:198.360600px;}
.y113{bottom:199.225050px;}
.y1dd{bottom:203.137050px;}
.y1cb{bottom:203.145000px;}
.yc7{bottom:203.820000px;}
.yf2{bottom:204.812250px;}
.y81{bottom:204.825600px;}
.y19a{bottom:207.167700px;}
.y30{bottom:208.431600px;}
.y58{bottom:208.448100px;}
.y130{bottom:211.783500px;}
.y151{bottom:212.049000px;}
.yaa{bottom:214.303650px;}
.y1a5{bottom:214.312650px;}
.y16b{bottom:216.864600px;}
.y112{bottom:219.025050px;}
.y1f9{bottom:220.801200px;}
.yc6{bottom:221.815500px;}
.yf1{bottom:222.807750px;}
.y80{bottom:222.821100px;}
.y179{bottom:225.360600px;}
.y2f{bottom:228.231600px;}
.y57{bottom:228.248100px;}
.y1dc{bottom:230.137050px;}
.y1ca{bottom:230.145000px;}
.ya9{bottom:232.299150px;}
.y1a4{bottom:232.308150px;}
.y199{bottom:234.167700px;}
.y12f{bottom:238.783500px;}
.y111{bottom:238.825050px;}
.y150{bottom:239.049000px;}
.yc5{bottom:239.811000px;}
.yf0{bottom:240.803250px;}
.y7f{bottom:240.816600px;}
.y16a{bottom:243.864600px;}
.y2e{bottom:248.031600px;}
.y56{bottom:248.048100px;}
.y1a3{bottom:250.303650px;}
.y1f8{bottom:252.049200px;}
.y178{bottom:252.360600px;}
.y1db{bottom:257.137050px;}
.y1c9{bottom:257.145000px;}
.y110{bottom:258.625050px;}
.y7e{bottom:258.812100px;}
.y12e{bottom:265.783500px;}
.yc4{bottom:266.314950px;}
.yef{bottom:267.316200px;}
.y2d{bottom:267.831600px;}
.y55{bottom:267.848100px;}
.y1a2{bottom:268.299150px;}
.y198{bottom:269.663700px;}
.y169{bottom:270.864600px;}
.y14f{bottom:274.545000px;}
.y7d{bottom:276.807600px;}
.y1f7{bottom:279.049200px;}
.y177{bottom:279.360600px;}
.y1da{bottom:284.137050px;}
.y1c8{bottom:284.145000px;}
.yee{bottom:285.311700px;}
.y2c{bottom:287.631600px;}
.y54{bottom:287.648100px;}
.y12d{bottom:292.783500px;}
.yc3{bottom:292.823400px;}
.y7c{bottom:294.803100px;}
.y197{bottom:296.663700px;}
.ya8{bottom:297.856650px;}
.y168{bottom:297.864600px;}
.y14e{bottom:301.545000px;}
.yed{bottom:303.307200px;}
.y1f6{bottom:306.049200px;}
.y176{bottom:306.360600px;}
.y2b{bottom:307.431600px;}
.y53{bottom:307.448100px;}
.yc2{bottom:310.818900px;}
.y1d9{bottom:311.137050px;}
.y1c7{bottom:311.145000px;}
.y12c{bottom:319.783500px;}
.y196{bottom:323.663700px;}
.ya7{bottom:324.856650px;}
.y167{bottom:324.864600px;}
.y2a{bottom:327.231600px;}
.y52{bottom:327.248100px;}
.y14d{bottom:328.545000px;}
.y175{bottom:333.360600px;}
.y1f5{bottom:337.297200px;}
.y1d8{bottom:338.137050px;}
.y1c6{bottom:338.145000px;}
.y10f{bottom:345.936900px;}
.y12b{bottom:346.783500px;}
.y29{bottom:347.031600px;}
.y51{bottom:347.048100px;}
.yc1{bottom:347.344950px;}
.y7b{bottom:348.904950px;}
.yec{bottom:349.746900px;}
.y195{bottom:350.663700px;}
.ya6{bottom:351.856650px;}
.y166{bottom:351.864600px;}
.y14c{bottom:355.545000px;}
.y174{bottom:360.360600px;}
.y1c5{bottom:365.145000px;}
.y28{bottom:366.831600px;}
.y50{bottom:366.848100px;}
.yc0{bottom:367.144950px;}
.y1f4{bottom:368.545200px;}
.y10e{bottom:372.936900px;}
.y7a{bottom:375.904950px;}
.yeb{bottom:376.746900px;}
.ya5{bottom:378.856650px;}
.y165{bottom:378.864600px;}
.y14b{bottom:382.545000px;}
.y27{bottom:386.631600px;}
.y4f{bottom:386.648100px;}
.ybf{bottom:386.944950px;}
.y173{bottom:387.360600px;}
.y1d7{bottom:388.447650px;}
.y1c4{bottom:392.145000px;}
.y1f3{bottom:395.545200px;}
.y10d{bottom:399.936900px;}
.y79{bottom:402.904950px;}
.yea{bottom:403.746900px;}
.ya4{bottom:405.856650px;}
.y164{bottom:405.864600px;}
.y26{bottom:406.431600px;}
.y4e{bottom:406.448100px;}
.ybe{bottom:406.744950px;}
.y14a{bottom:409.545000px;}
.y172{bottom:414.360600px;}
.y1c3{bottom:419.145000px;}
.y25{bottom:426.231600px;}
.y4d{bottom:426.248100px;}
.ybd{bottom:426.544950px;}
.y1f2{bottom:426.793200px;}
.y10c{bottom:426.936900px;}
.y78{bottom:429.904950px;}
.ye9{bottom:430.746900px;}
.y12a{bottom:432.785400px;}
.ya3{bottom:432.856650px;}
.y171{bottom:432.864600px;}
.y149{bottom:436.545000px;}
.y163{bottom:441.360600px;}
.y194{bottom:442.925400px;}
.y24{bottom:446.031600px;}
.y4c{bottom:446.048100px;}
.y1c2{bottom:446.145000px;}
.y1f1{bottom:453.793200px;}
.y10b{bottom:453.936900px;}
.y77{bottom:456.904950px;}
.y129{bottom:457.535400px;}
.ye8{bottom:457.746900px;}
.ya2{bottom:459.856650px;}
.y170{bottom:459.864600px;}
.y193{bottom:462.725400px;}
.y23{bottom:465.831600px;}
.y4b{bottom:465.848100px;}
.y162{bottom:468.360600px;}
.y148{bottom:472.041000px;}
.y1c1{bottom:473.145000px;}
.y10a{bottom:480.936900px;}
.y192{bottom:482.525400px;}
.y76{bottom:483.904950px;}
.ye7{bottom:484.746900px;}
.y1f0{bottom:485.041200px;}
.y22{bottom:485.631600px;}
.y4a{bottom:485.648100px;}
.ya1{bottom:486.856650px;}
.y1a1{bottom:486.864600px;}
.y161{bottom:495.360600px;}
.y147{bottom:499.041000px;}
.y191{bottom:502.325400px;}
.y21{bottom:505.431600px;}
.y49{bottom:505.448100px;}
.y109{bottom:507.936900px;}
.y1c0{bottom:508.641000px;}
.y75{bottom:510.904950px;}
.ye6{bottom:511.746900px;}
.y1ef{bottom:512.041200px;}
.ya0{bottom:513.856650px;}
.y1a0{bottom:513.864600px;}
.y190{bottom:522.125400px;}
.y160{bottom:522.360600px;}
.y20{bottom:525.231600px;}
.y48{bottom:525.248100px;}
.y146{bottom:526.041000px;}
.y108{bottom:534.936900px;}
.y1bf{bottom:535.641000px;}
.y74{bottom:537.904950px;}
.ye5{bottom:538.746900px;}
.y9f{bottom:540.856650px;}
.y19f{bottom:540.864600px;}
.y18f{bottom:541.925400px;}
.y1ee{bottom:543.289200px;}
.y1f{bottom:545.031600px;}
.y47{bottom:545.048100px;}
.y15f{bottom:549.360600px;}
.y145{bottom:553.041000px;}
.y18e{bottom:561.725400px;}
.y107{bottom:561.936900px;}
.y1be{bottom:562.641000px;}
.y1e{bottom:564.831600px;}
.y46{bottom:564.848100px;}
.y73{bottom:564.904950px;}
.ye4{bottom:565.746900px;}
.y9e{bottom:567.856650px;}
.y19e{bottom:567.864600px;}
.y1ed{bottom:574.537200px;}
.y15e{bottom:576.360600px;}
.y144{bottom:580.041000px;}
.y1d{bottom:584.631600px;}
.y45{bottom:584.648100px;}
.y106{bottom:588.936900px;}
.y1bd{bottom:589.641000px;}
.y72{bottom:591.904950px;}
.ye3{bottom:592.746900px;}
.y9d{bottom:594.856650px;}
.y19d{bottom:594.864600px;}
.y1ec{bottom:601.537200px;}
.y128{bottom:601.740450px;}
.y15d{bottom:603.360600px;}
.y1c{bottom:604.431600px;}
.y44{bottom:604.448100px;}
.y143{bottom:607.041000px;}
.y105{bottom:615.936900px;}
.y1bc{bottom:616.641000px;}
.y71{bottom:618.904950px;}
.ye2{bottom:619.746900px;}
.y9c{bottom:621.856650px;}
.y1d6{bottom:621.864600px;}
.y1b{bottom:624.231600px;}
.y43{bottom:624.248100px;}
.y127{bottom:628.740450px;}
.y15c{bottom:630.360600px;}
.y1eb{bottom:632.785200px;}
.y142{bottom:634.041000px;}
.y104{bottom:642.936900px;}
.y1bb{bottom:643.641000px;}
.y1a{bottom:644.031600px;}
.y42{bottom:644.048100px;}
.y70{bottom:645.904950px;}
.ye1{bottom:646.746900px;}
.y18d{bottom:646.803150px;}
.y9b{bottom:648.856650px;}
.y1d5{bottom:648.864600px;}
.y126{bottom:655.740450px;}
.y15b{bottom:657.360600px;}
.y141{bottom:661.041000px;}
.y19{bottom:663.831600px;}
.y41{bottom:663.848100px;}
.y1ea{bottom:664.033200px;}
.y1ba{bottom:670.641000px;}
.y6f{bottom:672.904950px;}
.ye0{bottom:673.746900px;}
.y18c{bottom:673.803150px;}
.y9a{bottom:675.856650px;}
.y1d4{bottom:675.864600px;}
.y125{bottom:682.740450px;}
.y18{bottom:683.631600px;}
.y40{bottom:683.648100px;}
.y15a{bottom:684.360600px;}
.y140{bottom:688.041000px;}
.y1e9{bottom:691.033200px;}
.y1b9{bottom:697.641000px;}
.y6e{bottom:699.904950px;}
.y99{bottom:702.856650px;}
.y1d3{bottom:702.864600px;}
.y17{bottom:703.431600px;}
.y3f{bottom:703.448100px;}
.y18b{bottom:709.299150px;}
.y124{bottom:709.740450px;}
.y159{bottom:711.360600px;}
.y13f{bottom:715.041000px;}
.y1e8{bottom:722.281200px;}
.y16{bottom:723.231600px;}
.y3e{bottom:723.248100px;}
.y1b8{bottom:724.641000px;}
.y6d{bottom:726.904950px;}
.y98{bottom:729.856650px;}
.y1d2{bottom:729.864600px;}
.y103{bottom:730.248750px;}
.y18a{bottom:736.299150px;}
.y123{bottom:736.740450px;}
.y158{bottom:738.360600px;}
.y13e{bottom:742.041000px;}
.y15{bottom:743.031600px;}
.y3d{bottom:743.048100px;}
.y1e7{bottom:749.281200px;}
.y102{bottom:750.048750px;}
.y1b7{bottom:751.641000px;}
.y6c{bottom:753.904950px;}
.y97{bottom:756.856650px;}
.y1d1{bottom:756.864600px;}
.y14{bottom:762.831600px;}
.y3c{bottom:762.848100px;}
.y189{bottom:763.299150px;}
.y122{bottom:763.740450px;}
.y157{bottom:765.360600px;}
.ydf{bottom:768.258600px;}
.y13d{bottom:769.041000px;}
.y101{bottom:769.848750px;}
.y1b6{bottom:778.641000px;}
.y1e6{bottom:780.529200px;}
.y6b{bottom:780.904950px;}
.y13{bottom:782.631600px;}
.y3b{bottom:782.648100px;}
.ybc{bottom:783.856650px;}
.y96{bottom:783.864600px;}
.yde{bottom:788.058600px;}
.y100{bottom:789.648750px;}
.y188{bottom:790.299150px;}
.y121{bottom:790.740450px;}
.y156{bottom:792.360600px;}
.y13c{bottom:796.041000px;}
.y12{bottom:802.431600px;}
.y3a{bottom:802.448100px;}
.y1b5{bottom:805.641000px;}
.y1e5{bottom:807.529200px;}
.ydd{bottom:807.858600px;}
.y6a{bottom:807.904950px;}
.yff{bottom:809.448750px;}
.ybb{bottom:810.856650px;}
.y95{bottom:810.864600px;}
.y187{bottom:817.299150px;}
.y120{bottom:817.740450px;}
.y155{bottom:819.360600px;}
.y11{bottom:822.231600px;}
.y39{bottom:822.248100px;}
.y13b{bottom:823.041000px;}
.ydc{bottom:827.658600px;}
.yfe{bottom:829.248750px;}
.y1b4{bottom:832.641000px;}
.y69{bottom:834.904950px;}
.yba{bottom:837.856650px;}
.y94{bottom:837.864600px;}
.y1e4{bottom:838.777200px;}
.y10{bottom:842.031600px;}
.y38{bottom:842.048100px;}
.y186{bottom:844.299150px;}
.y11f{bottom:844.740450px;}
.y154{bottom:846.360600px;}
.ydb{bottom:847.458600px;}
.yfd{bottom:849.048750px;}
.y13a{bottom:850.041000px;}
.y1b3{bottom:859.641000px;}
.yf{bottom:861.831600px;}
.y37{bottom:861.848100px;}
.y68{bottom:861.904950px;}
.yb9{bottom:864.856650px;}
.y1d0{bottom:864.864600px;}
.y1e3{bottom:865.777200px;}
.yda{bottom:867.258600px;}
.yfc{bottom:868.848750px;}
.y185{bottom:871.299150px;}
.y11e{bottom:871.740450px;}
.y93{bottom:873.360600px;}
.y139{bottom:877.041000px;}
.ye{bottom:881.631600px;}
.y36{bottom:881.648100px;}
.y1b2{bottom:886.641000px;}
.yd9{bottom:887.058600px;}
.yfb{bottom:888.648750px;}
.y67{bottom:888.904950px;}
.yb8{bottom:891.856650px;}
.y1cf{bottom:891.864600px;}
.y1e2{bottom:897.025200px;}
.y184{bottom:898.299150px;}
.y11d{bottom:898.740450px;}
.y92{bottom:900.360600px;}
.yd{bottom:901.431600px;}
.y35{bottom:901.448100px;}
.y138{bottom:904.041000px;}
.yd8{bottom:906.858600px;}
.yfa{bottom:908.448750px;}
.y1b1{bottom:913.641000px;}
.y66{bottom:915.904950px;}
.yb7{bottom:918.856650px;}
.y1ce{bottom:918.864600px;}
.y183{bottom:925.299150px;}
.y11c{bottom:925.740450px;}
.yd7{bottom:926.658600px;}
.y91{bottom:927.360600px;}
.yf9{bottom:928.248750px;}
.y137{bottom:931.041000px;}
.yc{bottom:933.986100px;}
.y34{bottom:934.002600px;}
.y1b0{bottom:940.641000px;}
.y65{bottom:942.904950px;}
.yb6{bottom:945.864600px;}
.yd6{bottom:946.458600px;}
.yf8{bottom:948.048750px;}
.y182{bottom:952.299150px;}
.y11b{bottom:952.740450px;}
.y90{bottom:954.360600px;}
.y136{bottom:958.041000px;}
.y6{bottom:959.901150px;}
.yd5{bottom:966.258600px;}
.y1af{bottom:967.641000px;}
.y64{bottom:969.904950px;}
.yb5{bottom:972.864600px;}
.y11a{bottom:979.740450px;}
.y8f{bottom:981.360600px;}
.y135{bottom:985.041000px;}
.yd4{bottom:986.058600px;}
.y181{bottom:987.795150px;}
.y5{bottom:988.198650px;}
.y1ae{bottom:994.641000px;}
.y63{bottom:996.904950px;}
.yb4{bottom:999.864600px;}
.y1e1{bottom:1000.900800px;}
.yd3{bottom:1005.858600px;}
.y119{bottom:1006.740450px;}
.y8e{bottom:1008.360600px;}
.y180{bottom:1014.795150px;}
.yb{bottom:1017.355050px;}
.y1ad{bottom:1021.641000px;}
.y62{bottom:1023.904950px;}
.yd2{bottom:1025.658600px;}
.yb3{bottom:1026.864600px;}
.y118{bottom:1033.740450px;}
.y134{bottom:1034.912100px;}
.y8d{bottom:1035.360600px;}
.ya{bottom:1038.955050px;}
.y17f{bottom:1041.795150px;}
.yd1{bottom:1045.458600px;}
.y61{bottom:1050.904950px;}
.yb2{bottom:1053.864600px;}
.y8c{bottom:1062.360600px;}
.yd0{bottom:1065.258600px;}
.y17e{bottom:1068.795150px;}
.y1ac{bottom:1071.951600px;}
.y9{bottom:1073.310900px;}
.yb1{bottom:1080.864600px;}
.ycf{bottom:1085.058600px;}
.y8b{bottom:1089.360600px;}
.y17d{bottom:1095.795150px;}
.y8{bottom:1100.310900px;}
.yce{bottom:1104.858600px;}
.y8a{bottom:1116.360600px;}
.y117{bottom:1122.860100px;}
.ycd{bottom:1124.658600px;}
.y7{bottom:1127.310900px;}
.y60{bottom:1143.215550px;}
.y89{bottom:1143.360600px;}
.ycc{bottom:1144.458600px;}
.y17c{bottom:1145.666250px;}
.y3{bottom:1171.698450px;}
.y2{bottom:1187.898450px;}
.y5f{bottom:1204.375350px;}
.hc{height:37.494141px;}
.h3{height:39.049805px;}
.h9{height:43.388672px;}
.hf{height:45.826172px;}
.h8{height:46.664062px;}
.h2{height:49.992188px;}
.h7{height:51.820312px;}
.hd{height:54.755859px;}
.h4{height:55.488281px;}
.ha{height:59.390625px;}
.h5{height:61.037109px;}
.he{height:66.579338px;}
.hb{height:66.585938px;}
.h10{height:69.902766px;}
.h6{height:83.715820px;}
.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;}
.x11{left:131.805150px;}
.x10{left:140.314950px;}
.xf{left:148.818900px;}
.x8{left:455.455650px;}
.xd{left:492.632700px;}
.x2{left:551.814900px;}
.x6{left:607.962000px;}
.x5{left:643.206000px;}
.xb{left:655.854900px;}
.x3{left:706.047000px;}
.x9{left:793.488150px;}
.xa{left:838.695600px;}
@media print{
.v1{vertical-align:-7.317333pt;}
.v3{vertical-align:-5.749333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.312000pt;}
.ls0{letter-spacing:-12.864000pt;}
.ls3{letter-spacing:-10.176000pt;}
.ls5{letter-spacing:-6.512000pt;}
.ls1{letter-spacing:-1.440000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:5.772800pt;}
.ls7{letter-spacing:6.406400pt;}
.ls8{letter-spacing:49.742400pt;}
.ls4{letter-spacing:49.742933pt;}
.ws4{word-spacing:-18.666667pt;}
.ws15{word-spacing:-16.000000pt;}
.ws0{word-spacing:-14.666667pt;}
.ws1b{word-spacing:-12.000000pt;}
.ws5{word-spacing:-9.328000pt;}
.ws3{word-spacing:-5.824000pt;}
.ws14{word-spacing:-3.968000pt;}
.ws19{word-spacing:-2.880000pt;}
.ws6{word-spacing:-2.592000pt;}
.wsf{word-spacing:-2.112000pt;}
.wsb{word-spacing:-2.016000pt;}
.ws11{word-spacing:-1.776000pt;}
.ws1e{word-spacing:-1.056000pt;}
.ws13{word-spacing:-0.768000pt;}
.ws2{word-spacing:0.000000pt;}
.wsc{word-spacing:0.048000pt;}
.ws9{word-spacing:0.336000pt;}
.ws1d{word-spacing:0.384000pt;}
.ws16{word-spacing:0.762667pt;}
.ws1f{word-spacing:0.768000pt;}
.ws20{word-spacing:1.392000pt;}
.ws8{word-spacing:1.680000pt;}
.wse{word-spacing:1.701333pt;}
.ws12{word-spacing:1.872000pt;}
.ws7{word-spacing:2.160000pt;}
.ws24{word-spacing:2.304000pt;}
.ws23{word-spacing:3.200000pt;}
.ws1c{word-spacing:4.096000pt;}
.wsa{word-spacing:4.272000pt;}
.ws10{word-spacing:4.416000pt;}
.ws18{word-spacing:4.544000pt;}
.ws17{word-spacing:6.512000pt;}
.wsd{word-spacing:8.448000pt;}
.ws1a{word-spacing:11.008000pt;}
.ws1{word-spacing:12.864000pt;}
.ws21{word-spacing:14.656000pt;}
.ws22{word-spacing:15.680000pt;}
._4{margin-left:-8.528000pt;}
._3{margin-left:-7.632000pt;}
._5{margin-left:-6.328000pt;}
._1{margin-left:-4.752000pt;}
._2{margin-left:-3.208000pt;}
._6{margin-left:-2.304000pt;}
._0{margin-left:-1.014933pt;}
._c{width:0.968000pt;}
._9{width:2.446400pt;}
._10{width:3.584533pt;}
._7{width:5.068800pt;}
._1c{width:6.118933pt;}
._f{width:7.257067pt;}
._b{width:8.870400pt;}
._1b{width:9.902933pt;}
._d{width:11.510400pt;}
._18{width:12.789333pt;}
._11{width:13.692800pt;}
._24{width:15.046400pt;}
._1d{width:16.010133pt;}
._14{width:17.007467pt;}
._e{width:18.122133pt;}
._a{width:19.189867pt;}
._21{width:20.322133pt;}
._26{width:21.448533pt;}
._1f{width:22.856533pt;}
._25{width:24.320000pt;}
._20{width:26.306133pt;}
._12{width:27.954667pt;}
._1a{width:29.638400pt;}
._22{width:30.541867pt;}
._19{width:32.441067pt;}
._17{width:33.838933pt;}
._8{width:36.115200pt;}
._15{width:37.112533pt;}
._13{width:38.192000pt;}
._27{width:41.561600pt;}
._16{width:51.538667pt;}
._1e{width:57.651733pt;}
._23{width:76.409600pt;}
.fs6{font-size:37.312000pt;}
.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;}
.y5e{bottom:41.324400pt;}
.y88{bottom:50.334133pt;}
.y5c{bottom:53.158267pt;}
.y1{bottom:54.103067pt;}
.y5d{bottom:55.724400pt;}
.y87{bottom:64.734133pt;}
.y4{bottom:94.488133pt;}
.y1cd{bottom:94.488400pt;}
.ycb{bottom:94.492267pt;}
.y86{bottom:94.496133pt;}
.yf7{bottom:94.496267pt;}
.yb0{bottom:94.516133pt;}
.y1ab{bottom:94.524133pt;}
.y16f{bottom:96.768533pt;}
.y33{bottom:102.244533pt;}
.y5b{bottom:102.259200pt;}
.y1e0{bottom:108.566267pt;}
.yca{bottom:110.488267pt;}
.y85{bottom:110.492133pt;}
.yf6{bottom:110.492267pt;}
.yaf{bottom:110.512133pt;}
.y1aa{bottom:110.520133pt;}
.y133{bottom:116.252000pt;}
.y153{bottom:118.047200pt;}
.y16e{bottom:120.768533pt;}
.y116{bottom:124.288933pt;}
.y84{bottom:126.488133pt;}
.yf5{bottom:126.488267pt;}
.yae{bottom:126.508133pt;}
.y1a9{bottom:126.516133pt;}
.y32{bottom:127.397867pt;}
.y5a{bottom:127.412533pt;}
.y1df{bottom:132.566267pt;}
.yc9{bottom:134.047333pt;}
.y19c{bottom:136.149067pt;}
.y132{bottom:140.252000pt;}
.y115{bottom:141.888933pt;}
.yad{bottom:142.504133pt;}
.y1a8{bottom:142.512133pt;}
.y16d{bottom:144.768533pt;}
.yf4{bottom:150.063333pt;}
.y83{bottom:150.075200pt;}
.y17b{bottom:152.320533pt;}
.y1de{bottom:156.566267pt;}
.y1cc{bottom:156.573333pt;}
.yc8{bottom:157.606267pt;}
.yac{bottom:158.500133pt;}
.y1a7{bottom:158.508133pt;}
.y114{bottom:159.488933pt;}
.y19b{bottom:160.149067pt;}
.y131{bottom:164.252000pt;}
.y152{bottom:164.488000pt;}
.yf3{bottom:166.059333pt;}
.y82{bottom:166.071200pt;}
.y31{bottom:167.672533pt;}
.y59{bottom:167.687200pt;}
.y16c{bottom:168.768533pt;}
.y1fa{bottom:172.267733pt;}
.yab{bottom:174.496133pt;}
.y1a6{bottom:174.504133pt;}
.y17a{bottom:176.320533pt;}
.y113{bottom:177.088933pt;}
.y1dd{bottom:180.566267pt;}
.y1cb{bottom:180.573333pt;}
.yc7{bottom:181.173333pt;}
.yf2{bottom:182.055333pt;}
.y81{bottom:182.067200pt;}
.y19a{bottom:184.149067pt;}
.y30{bottom:185.272533pt;}
.y58{bottom:185.287200pt;}
.y130{bottom:188.252000pt;}
.y151{bottom:188.488000pt;}
.yaa{bottom:190.492133pt;}
.y1a5{bottom:190.500133pt;}
.y16b{bottom:192.768533pt;}
.y112{bottom:194.688933pt;}
.y1f9{bottom:196.267733pt;}
.yc6{bottom:197.169333pt;}
.yf1{bottom:198.051333pt;}
.y80{bottom:198.063200pt;}
.y179{bottom:200.320533pt;}
.y2f{bottom:202.872533pt;}
.y57{bottom:202.887200pt;}
.y1dc{bottom:204.566267pt;}
.y1ca{bottom:204.573333pt;}
.ya9{bottom:206.488133pt;}
.y1a4{bottom:206.496133pt;}
.y199{bottom:208.149067pt;}
.y12f{bottom:212.252000pt;}
.y111{bottom:212.288933pt;}
.y150{bottom:212.488000pt;}
.yc5{bottom:213.165333pt;}
.yf0{bottom:214.047333pt;}
.y7f{bottom:214.059200pt;}
.y16a{bottom:216.768533pt;}
.y2e{bottom:220.472533pt;}
.y56{bottom:220.487200pt;}
.y1a3{bottom:222.492133pt;}
.y1f8{bottom:224.043733pt;}
.y178{bottom:224.320533pt;}
.y1db{bottom:228.566267pt;}
.y1c9{bottom:228.573333pt;}
.y110{bottom:229.888933pt;}
.y7e{bottom:230.055200pt;}
.y12e{bottom:236.252000pt;}
.yc4{bottom:236.724400pt;}
.yef{bottom:237.614400pt;}
.y2d{bottom:238.072533pt;}
.y55{bottom:238.087200pt;}
.y1a2{bottom:238.488133pt;}
.y198{bottom:239.701067pt;}
.y169{bottom:240.768533pt;}
.y14f{bottom:244.040000pt;}
.y7d{bottom:246.051200pt;}
.y1f7{bottom:248.043733pt;}
.y177{bottom:248.320533pt;}
.y1da{bottom:252.566267pt;}
.y1c8{bottom:252.573333pt;}
.yee{bottom:253.610400pt;}
.y2c{bottom:255.672533pt;}
.y54{bottom:255.687200pt;}
.y12d{bottom:260.252000pt;}
.yc3{bottom:260.287467pt;}
.y7c{bottom:262.047200pt;}
.y197{bottom:263.701067pt;}
.ya8{bottom:264.761467pt;}
.y168{bottom:264.768533pt;}
.y14e{bottom:268.040000pt;}
.yed{bottom:269.606400pt;}
.y1f6{bottom:272.043733pt;}
.y176{bottom:272.320533pt;}
.y2b{bottom:273.272533pt;}
.y53{bottom:273.287200pt;}
.yc2{bottom:276.283467pt;}
.y1d9{bottom:276.566267pt;}
.y1c7{bottom:276.573333pt;}
.y12c{bottom:284.252000pt;}
.y196{bottom:287.701067pt;}
.ya7{bottom:288.761467pt;}
.y167{bottom:288.768533pt;}
.y2a{bottom:290.872533pt;}
.y52{bottom:290.887200pt;}
.y14d{bottom:292.040000pt;}
.y175{bottom:296.320533pt;}
.y1f5{bottom:299.819733pt;}
.y1d8{bottom:300.566267pt;}
.y1c6{bottom:300.573333pt;}
.y10f{bottom:307.499467pt;}
.y12b{bottom:308.252000pt;}
.y29{bottom:308.472533pt;}
.y51{bottom:308.487200pt;}
.yc1{bottom:308.751067pt;}
.y7b{bottom:310.137733pt;}
.yec{bottom:310.886133pt;}
.y195{bottom:311.701067pt;}
.ya6{bottom:312.761467pt;}
.y166{bottom:312.768533pt;}
.y14c{bottom:316.040000pt;}
.y174{bottom:320.320533pt;}
.y1c5{bottom:324.573333pt;}
.y28{bottom:326.072533pt;}
.y50{bottom:326.087200pt;}
.yc0{bottom:326.351067pt;}
.y1f4{bottom:327.595733pt;}
.y10e{bottom:331.499467pt;}
.y7a{bottom:334.137733pt;}
.yeb{bottom:334.886133pt;}
.ya5{bottom:336.761467pt;}
.y165{bottom:336.768533pt;}
.y14b{bottom:340.040000pt;}
.y27{bottom:343.672533pt;}
.y4f{bottom:343.687200pt;}
.ybf{bottom:343.951067pt;}
.y173{bottom:344.320533pt;}
.y1d7{bottom:345.286800pt;}
.y1c4{bottom:348.573333pt;}
.y1f3{bottom:351.595733pt;}
.y10d{bottom:355.499467pt;}
.y79{bottom:358.137733pt;}
.yea{bottom:358.886133pt;}
.ya4{bottom:360.761467pt;}
.y164{bottom:360.768533pt;}
.y26{bottom:361.272533pt;}
.y4e{bottom:361.287200pt;}
.ybe{bottom:361.551067pt;}
.y14a{bottom:364.040000pt;}
.y172{bottom:368.320533pt;}
.y1c3{bottom:372.573333pt;}
.y25{bottom:378.872533pt;}
.y4d{bottom:378.887200pt;}
.ybd{bottom:379.151067pt;}
.y1f2{bottom:379.371733pt;}
.y10c{bottom:379.499467pt;}
.y78{bottom:382.137733pt;}
.ye9{bottom:382.886133pt;}
.y12a{bottom:384.698133pt;}
.ya3{bottom:384.761467pt;}
.y171{bottom:384.768533pt;}
.y149{bottom:388.040000pt;}
.y163{bottom:392.320533pt;}
.y194{bottom:393.711467pt;}
.y24{bottom:396.472533pt;}
.y4c{bottom:396.487200pt;}
.y1c2{bottom:396.573333pt;}
.y1f1{bottom:403.371733pt;}
.y10b{bottom:403.499467pt;}
.y77{bottom:406.137733pt;}
.y129{bottom:406.698133pt;}
.ye8{bottom:406.886133pt;}
.ya2{bottom:408.761467pt;}
.y170{bottom:408.768533pt;}
.y193{bottom:411.311467pt;}
.y23{bottom:414.072533pt;}
.y4b{bottom:414.087200pt;}
.y162{bottom:416.320533pt;}
.y148{bottom:419.592000pt;}
.y1c1{bottom:420.573333pt;}
.y10a{bottom:427.499467pt;}
.y192{bottom:428.911467pt;}
.y76{bottom:430.137733pt;}
.ye7{bottom:430.886133pt;}
.y1f0{bottom:431.147733pt;}
.y22{bottom:431.672533pt;}
.y4a{bottom:431.687200pt;}
.ya1{bottom:432.761467pt;}
.y1a1{bottom:432.768533pt;}
.y161{bottom:440.320533pt;}
.y147{bottom:443.592000pt;}
.y191{bottom:446.511467pt;}
.y21{bottom:449.272533pt;}
.y49{bottom:449.287200pt;}
.y109{bottom:451.499467pt;}
.y1c0{bottom:452.125333pt;}
.y75{bottom:454.137733pt;}
.ye6{bottom:454.886133pt;}
.y1ef{bottom:455.147733pt;}
.ya0{bottom:456.761467pt;}
.y1a0{bottom:456.768533pt;}
.y190{bottom:464.111467pt;}
.y160{bottom:464.320533pt;}
.y20{bottom:466.872533pt;}
.y48{bottom:466.887200pt;}
.y146{bottom:467.592000pt;}
.y108{bottom:475.499467pt;}
.y1bf{bottom:476.125333pt;}
.y74{bottom:478.137733pt;}
.ye5{bottom:478.886133pt;}
.y9f{bottom:480.761467pt;}
.y19f{bottom:480.768533pt;}
.y18f{bottom:481.711467pt;}
.y1ee{bottom:482.923733pt;}
.y1f{bottom:484.472533pt;}
.y47{bottom:484.487200pt;}
.y15f{bottom:488.320533pt;}
.y145{bottom:491.592000pt;}
.y18e{bottom:499.311467pt;}
.y107{bottom:499.499467pt;}
.y1be{bottom:500.125333pt;}
.y1e{bottom:502.072533pt;}
.y46{bottom:502.087200pt;}
.y73{bottom:502.137733pt;}
.ye4{bottom:502.886133pt;}
.y9e{bottom:504.761467pt;}
.y19e{bottom:504.768533pt;}
.y1ed{bottom:510.699733pt;}
.y15e{bottom:512.320533pt;}
.y144{bottom:515.592000pt;}
.y1d{bottom:519.672533pt;}
.y45{bottom:519.687200pt;}
.y106{bottom:523.499467pt;}
.y1bd{bottom:524.125333pt;}
.y72{bottom:526.137733pt;}
.ye3{bottom:526.886133pt;}
.y9d{bottom:528.761467pt;}
.y19d{bottom:528.768533pt;}
.y1ec{bottom:534.699733pt;}
.y128{bottom:534.880400pt;}
.y15d{bottom:536.320533pt;}
.y1c{bottom:537.272533pt;}
.y44{bottom:537.287200pt;}
.y143{bottom:539.592000pt;}
.y105{bottom:547.499467pt;}
.y1bc{bottom:548.125333pt;}
.y71{bottom:550.137733pt;}
.ye2{bottom:550.886133pt;}
.y9c{bottom:552.761467pt;}
.y1d6{bottom:552.768533pt;}
.y1b{bottom:554.872533pt;}
.y43{bottom:554.887200pt;}
.y127{bottom:558.880400pt;}
.y15c{bottom:560.320533pt;}
.y1eb{bottom:562.475733pt;}
.y142{bottom:563.592000pt;}
.y104{bottom:571.499467pt;}
.y1bb{bottom:572.125333pt;}
.y1a{bottom:572.472533pt;}
.y42{bottom:572.487200pt;}
.y70{bottom:574.137733pt;}
.ye1{bottom:574.886133pt;}
.y18d{bottom:574.936133pt;}
.y9b{bottom:576.761467pt;}
.y1d5{bottom:576.768533pt;}
.y126{bottom:582.880400pt;}
.y15b{bottom:584.320533pt;}
.y141{bottom:587.592000pt;}
.y19{bottom:590.072533pt;}
.y41{bottom:590.087200pt;}
.y1ea{bottom:590.251733pt;}
.y1ba{bottom:596.125333pt;}
.y6f{bottom:598.137733pt;}
.ye0{bottom:598.886133pt;}
.y18c{bottom:598.936133pt;}
.y9a{bottom:600.761467pt;}
.y1d4{bottom:600.768533pt;}
.y125{bottom:606.880400pt;}
.y18{bottom:607.672533pt;}
.y40{bottom:607.687200pt;}
.y15a{bottom:608.320533pt;}
.y140{bottom:611.592000pt;}
.y1e9{bottom:614.251733pt;}
.y1b9{bottom:620.125333pt;}
.y6e{bottom:622.137733pt;}
.y99{bottom:624.761467pt;}
.y1d3{bottom:624.768533pt;}
.y17{bottom:625.272533pt;}
.y3f{bottom:625.287200pt;}
.y18b{bottom:630.488133pt;}
.y124{bottom:630.880400pt;}
.y159{bottom:632.320533pt;}
.y13f{bottom:635.592000pt;}
.y1e8{bottom:642.027733pt;}
.y16{bottom:642.872533pt;}
.y3e{bottom:642.887200pt;}
.y1b8{bottom:644.125333pt;}
.y6d{bottom:646.137733pt;}
.y98{bottom:648.761467pt;}
.y1d2{bottom:648.768533pt;}
.y103{bottom:649.110000pt;}
.y18a{bottom:654.488133pt;}
.y123{bottom:654.880400pt;}
.y158{bottom:656.320533pt;}
.y13e{bottom:659.592000pt;}
.y15{bottom:660.472533pt;}
.y3d{bottom:660.487200pt;}
.y1e7{bottom:666.027733pt;}
.y102{bottom:666.710000pt;}
.y1b7{bottom:668.125333pt;}
.y6c{bottom:670.137733pt;}
.y97{bottom:672.761467pt;}
.y1d1{bottom:672.768533pt;}
.y14{bottom:678.072533pt;}
.y3c{bottom:678.087200pt;}
.y189{bottom:678.488133pt;}
.y122{bottom:678.880400pt;}
.y157{bottom:680.320533pt;}
.ydf{bottom:682.896533pt;}
.y13d{bottom:683.592000pt;}
.y101{bottom:684.310000pt;}
.y1b6{bottom:692.125333pt;}
.y1e6{bottom:693.803733pt;}
.y6b{bottom:694.137733pt;}
.y13{bottom:695.672533pt;}
.y3b{bottom:695.687200pt;}
.ybc{bottom:696.761467pt;}
.y96{bottom:696.768533pt;}
.yde{bottom:700.496533pt;}
.y100{bottom:701.910000pt;}
.y188{bottom:702.488133pt;}
.y121{bottom:702.880400pt;}
.y156{bottom:704.320533pt;}
.y13c{bottom:707.592000pt;}
.y12{bottom:713.272533pt;}
.y3a{bottom:713.287200pt;}
.y1b5{bottom:716.125333pt;}
.y1e5{bottom:717.803733pt;}
.ydd{bottom:718.096533pt;}
.y6a{bottom:718.137733pt;}
.yff{bottom:719.510000pt;}
.ybb{bottom:720.761467pt;}
.y95{bottom:720.768533pt;}
.y187{bottom:726.488133pt;}
.y120{bottom:726.880400pt;}
.y155{bottom:728.320533pt;}
.y11{bottom:730.872533pt;}
.y39{bottom:730.887200pt;}
.y13b{bottom:731.592000pt;}
.ydc{bottom:735.696533pt;}
.yfe{bottom:737.110000pt;}
.y1b4{bottom:740.125333pt;}
.y69{bottom:742.137733pt;}
.yba{bottom:744.761467pt;}
.y94{bottom:744.768533pt;}
.y1e4{bottom:745.579733pt;}
.y10{bottom:748.472533pt;}
.y38{bottom:748.487200pt;}
.y186{bottom:750.488133pt;}
.y11f{bottom:750.880400pt;}
.y154{bottom:752.320533pt;}
.ydb{bottom:753.296533pt;}
.yfd{bottom:754.710000pt;}
.y13a{bottom:755.592000pt;}
.y1b3{bottom:764.125333pt;}
.yf{bottom:766.072533pt;}
.y37{bottom:766.087200pt;}
.y68{bottom:766.137733pt;}
.yb9{bottom:768.761467pt;}
.y1d0{bottom:768.768533pt;}
.y1e3{bottom:769.579733pt;}
.yda{bottom:770.896533pt;}
.yfc{bottom:772.310000pt;}
.y185{bottom:774.488133pt;}
.y11e{bottom:774.880400pt;}
.y93{bottom:776.320533pt;}
.y139{bottom:779.592000pt;}
.ye{bottom:783.672533pt;}
.y36{bottom:783.687200pt;}
.y1b2{bottom:788.125333pt;}
.yd9{bottom:788.496533pt;}
.yfb{bottom:789.910000pt;}
.y67{bottom:790.137733pt;}
.yb8{bottom:792.761467pt;}
.y1cf{bottom:792.768533pt;}
.y1e2{bottom:797.355733pt;}
.y184{bottom:798.488133pt;}
.y11d{bottom:798.880400pt;}
.y92{bottom:800.320533pt;}
.yd{bottom:801.272533pt;}
.y35{bottom:801.287200pt;}
.y138{bottom:803.592000pt;}
.yd8{bottom:806.096533pt;}
.yfa{bottom:807.510000pt;}
.y1b1{bottom:812.125333pt;}
.y66{bottom:814.137733pt;}
.yb7{bottom:816.761467pt;}
.y1ce{bottom:816.768533pt;}
.y183{bottom:822.488133pt;}
.y11c{bottom:822.880400pt;}
.yd7{bottom:823.696533pt;}
.y91{bottom:824.320533pt;}
.yf9{bottom:825.110000pt;}
.y137{bottom:827.592000pt;}
.yc{bottom:830.209867pt;}
.y34{bottom:830.224533pt;}
.y1b0{bottom:836.125333pt;}
.y65{bottom:838.137733pt;}
.yb6{bottom:840.768533pt;}
.yd6{bottom:841.296533pt;}
.yf8{bottom:842.710000pt;}
.y182{bottom:846.488133pt;}
.y11b{bottom:846.880400pt;}
.y90{bottom:848.320533pt;}
.y136{bottom:851.592000pt;}
.y6{bottom:853.245467pt;}
.yd5{bottom:858.896533pt;}
.y1af{bottom:860.125333pt;}
.y64{bottom:862.137733pt;}
.yb5{bottom:864.768533pt;}
.y11a{bottom:870.880400pt;}
.y8f{bottom:872.320533pt;}
.y135{bottom:875.592000pt;}
.yd4{bottom:876.496533pt;}
.y181{bottom:878.040133pt;}
.y5{bottom:878.398800pt;}
.y1ae{bottom:884.125333pt;}
.y63{bottom:886.137733pt;}
.yb4{bottom:888.768533pt;}
.y1e1{bottom:889.689600pt;}
.yd3{bottom:894.096533pt;}
.y119{bottom:894.880400pt;}
.y8e{bottom:896.320533pt;}
.y180{bottom:902.040133pt;}
.yb{bottom:904.315600pt;}
.y1ad{bottom:908.125333pt;}
.y62{bottom:910.137733pt;}
.yd2{bottom:911.696533pt;}
.yb3{bottom:912.768533pt;}
.y118{bottom:918.880400pt;}
.y134{bottom:919.921867pt;}
.y8d{bottom:920.320533pt;}
.ya{bottom:923.515600pt;}
.y17f{bottom:926.040133pt;}
.yd1{bottom:929.296533pt;}
.y61{bottom:934.137733pt;}
.yb2{bottom:936.768533pt;}
.y8c{bottom:944.320533pt;}
.yd0{bottom:946.896533pt;}
.y17e{bottom:950.040133pt;}
.y1ac{bottom:952.845867pt;}
.y9{bottom:954.054133pt;}
.yb1{bottom:960.768533pt;}
.ycf{bottom:964.496533pt;}
.y8b{bottom:968.320533pt;}
.y17d{bottom:974.040133pt;}
.y8{bottom:978.054133pt;}
.yce{bottom:982.096533pt;}
.y8a{bottom:992.320533pt;}
.y117{bottom:998.097867pt;}
.ycd{bottom:999.696533pt;}
.y7{bottom:1002.054133pt;}
.y60{bottom:1016.191600pt;}
.y89{bottom:1016.320533pt;}
.ycc{bottom:1017.296533pt;}
.y17c{bottom:1018.370000pt;}
.y3{bottom:1041.509733pt;}
.y2{bottom:1055.909733pt;}
.y5f{bottom:1070.555867pt;}
.hc{height:33.328125pt;}
.h3{height:34.710938pt;}
.h9{height:38.567708pt;}
.hf{height:40.734375pt;}
.h8{height:41.479167pt;}
.h2{height:44.437500pt;}
.h7{height:46.062500pt;}
.hd{height:48.671875pt;}
.h4{height:49.322917pt;}
.ha{height:52.791667pt;}
.h5{height:54.255208pt;}
.he{height:59.181633pt;}
.hb{height:59.187500pt;}
.h10{height:62.135792pt;}
.h6{height:74.414062pt;}
.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;}
.x11{left:117.160133pt;}
.x10{left:124.724400pt;}
.xf{left:132.283467pt;}
.x8{left:404.849467pt;}
.xd{left:437.895733pt;}
.x2{left:490.502133pt;}
.x6{left:540.410667pt;}
.x5{left:571.738667pt;}
.xb{left:582.982133pt;}
.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; }
  