
    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_02b3ff277a68ea4577c446b6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_27012f31e08f278ec674194b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.962000;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_035ce2c586517a040612a7f1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b3080464d740410d6f67168b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_76d658311348a27df282e6a9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c69910c3a7d527c845453d05.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_04bc293723bcd02c2c68140c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.024902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_95c7cff478012574c9b21d9d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b93d771b4a9672c6d7e65a77.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.874023;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b98b9be1955dff29950bfc52.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.024902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d18bfd6bab9b78160038cd72.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_9158764dd3fb3acf7c655b1f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_569fae66b951c549a3056621.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.024902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_3f1504dabb3286cdb7b39c07.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_54159962cb80b599cf4b73a6.woff2')format("woff");}.fff{font-family:fff;line-height:0.986816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_b98b9be1955dff29950bfc52.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.024902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_330e6fe003f73f4ece834cdc.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.024902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.858000px;}
.lsb{letter-spacing:-0.780000px;}
.ls7{letter-spacing:-0.702000px;}
.ls4{letter-spacing:-0.630000px;}
.lsd{letter-spacing:-0.462000px;}
.ls8{letter-spacing:-0.330000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.078000px;}
.ls9{letter-spacing:0.546000px;}
.lsa{letter-spacing:0.624000px;}
.ls6{letter-spacing:0.858000px;}
.ls3{letter-spacing:0.936000px;}
.lse{letter-spacing:11.232000px;}
.ls2{letter-spacing:24.480000px;}
.ls1{letter-spacing:45.672000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-45.672000px;}
.ws5{word-spacing:-27.846000px;}
.ws4{word-spacing:-24.480000px;}
.wsf{word-spacing:-20.340000px;}
.ws2{word-spacing:-14.916000px;}
.ws0{word-spacing:-14.678320px;}
.ws6{word-spacing:-12.204000px;}
.ws7{word-spacing:-0.936000px;}
.wsd{word-spacing:-0.624000px;}
.wsc{word-spacing:-0.546000px;}
.ws9{word-spacing:-0.078000px;}
.ws1{word-spacing:0.000000px;}
.wsb{word-spacing:0.330000px;}
.ws10{word-spacing:0.462000px;}
.ws8{word-spacing:0.630000px;}
.wsa{word-spacing:0.702000px;}
.wse{word-spacing:0.780000px;}
._f{margin-left:-26.516400px;}
._10{margin-left:-15.826800px;}
._1a{margin-left:-14.497839px;}
._21{margin-left:-13.168800px;}
._20{margin-left:-11.955592px;}
._16{margin-left:-10.907669px;}
._1d{margin-left:-6.829788px;}
._14{margin-left:-5.708961px;}
._c{margin-left:-4.435200px;}
._e{margin-left:-3.254400px;}
._d{margin-left:-1.465200px;}
._a{width:1.385992px;}
._3{width:2.870984px;}
._6{width:4.124977px;}
._11{width:6.137478px;}
._4{width:7.193961px;}
._12{width:8.386200px;}
._9{width:10.262944px;}
._13{width:11.569800px;}
._8{width:13.265928px;}
._1f{width:14.342545px;}
._2{width:15.377916px;}
._15{width:16.387800px;}
._19{width:17.694600px;}
._1b{width:18.731024px;}
._5{width:20.492888px;}
._17{width:21.951600px;}
._18{width:23.053800px;}
._1e{width:24.387000px;}
._1{width:28.313846px;}
._1c{width:32.089381px;}
._7{width:33.164819px;}
._b{width:45.209753px;}
._0{width:820.875237px;}
.fc5{color:rgb(76,142,165);}
.fc2{color:rgb(65,160,17);}
.fc3{color:rgb(0,94,126);}
.fc1{color:rgb(255,101,0);}
.fc4{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:32.999820px;}
.fse{font-size:36.000000px;}
.fs3{font-size:37.714080px;}
.fs6{font-size:41.485488px;}
.fs7{font-size:42.428340px;}
.fs2{font-size:47.142600px;}
.fs1{font-size:51.856860px;}
.fs5{font-size:52.799712px;}
.fs10{font-size:54.000000px;}
.fs13{font-size:60.000000px;}
.fs0{font-size:65.999640px;}
.fsb{font-size:66.000000px;}
.fs11{font-size:72.000000px;}
.fsd{font-size:78.000000px;}
.fs12{font-size:90.000000px;}
.fsc{font-size:114.000000px;}
.fsf{font-size:126.000000px;}
.fs8{font-size:252.000000px;}
.fsa{font-size:288.000000px;}
.fs9{font-size:519.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.298365px;}
.y37{bottom:46.346400px;}
.y21{bottom:50.265797px;}
.y20{bottom:63.630724px;}
.y1f{bottom:76.995651px;}
.y1e{bottom:90.360579px;}
.y1d{bottom:101.780873px;}
.y36{bottom:102.047250px;}
.ydc{bottom:102.920850px;}
.yb7{bottom:104.449950px;}
.y107{bottom:104.948400px;}
.ye3{bottom:105.063150px;}
.y12d{bottom:105.270450px;}
.y48{bottom:108.908400px;}
.y98{bottom:114.929100px;}
.y6c{bottom:119.045100px;}
.y12c{bottom:121.470450px;}
.y1c{bottom:123.419327px;}
.ydb{bottom:123.628350px;}
.ye2{bottom:124.113150px;}
.y47{bottom:125.108400px;}
.yb6{bottom:125.157450px;}
.y106{bottom:125.655900px;}
.y97{bottom:135.636600px;}
.y22{bottom:136.778700px;}
.y12b{bottom:137.670450px;}
.y6b{bottom:139.752600px;}
.y29{bottom:142.439400px;}
.ye1{bottom:143.163150px;}
.yda{bottom:144.335850px;}
.y46{bottom:145.560900px;}
.yb5{bottom:145.864950px;}
.y105{bottom:146.198400px;}
.y12a{bottom:153.870450px;}
.y96{bottom:156.344100px;}
.y6a{bottom:160.460100px;}
.y45{bottom:161.760900px;}
.ye0{bottom:162.213150px;}
.yd9{bottom:165.043350px;}
.yb4{bottom:166.572450px;}
.y104{bottom:166.740900px;}
.y129{bottom:170.070450px;}
.y95{bottom:177.051600px;}
.y44{bottom:177.960900px;}
.y1b{bottom:179.601520px;}
.y69{bottom:181.167600px;}
.ydf{bottom:181.263150px;}
.y28{bottom:184.431900px;}
.y73{bottom:184.987350px;}
.yd8{bottom:185.750850px;}
.y128{bottom:186.270450px;}
.yb3{bottom:187.279950px;}
.y103{bottom:187.283400px;}
.y1a{bottom:189.619323px;}
.y43{bottom:194.160900px;}
.y94{bottom:197.759100px;}
.y19{bottom:198.812130px;}
.yde{bottom:200.313150px;}
.y127{bottom:202.470450px;}
.y153{bottom:203.453850px;}
.y27{bottom:205.436400px;}
.y72{bottom:205.694850px;}
.yd7{bottom:206.458350px;}
.y18{bottom:207.156370px;}
.y102{bottom:207.825900px;}
.yb2{bottom:207.987450px;}
.y42{bottom:210.360900px;}
.y17{bottom:215.512396px;}
.y93{bottom:218.466600px;}
.y126{bottom:218.670450px;}
.ydd{bottom:219.363150px;}
.y68{bottom:219.725850px;}
.y152{bottom:221.935350px;}
.y16{bottom:223.868422px;}
.y71{bottom:226.402350px;}
.y26{bottom:226.440900px;}
.y41{bottom:226.560900px;}
.yd6{bottom:227.165850px;}
.y101{bottom:228.368400px;}
.yb1{bottom:228.694950px;}
.y15{bottom:232.212662px;}
.y125{bottom:235.018950px;}
.y151{bottom:238.283850px;}
.y92{bottom:239.174100px;}
.y14{bottom:240.568688px;}
.y40{bottom:242.760900px;}
.y67{bottom:246.725850px;}
.y70{bottom:247.109850px;}
.yd5{bottom:247.873350px;}
.y100{bottom:248.910900px;}
.y13{bottom:248.924714px;}
.yb0{bottom:249.402450px;}
.y124{bottom:251.367450px;}
.y150{bottom:254.632350px;}
.y12{bottom:257.268954px;}
.y3f{bottom:258.960900px;}
.y91{bottom:259.881600px;}
.y11{bottom:265.624980px;}
.y123{bottom:267.567450px;}
.y6f{bottom:267.817350px;}
.yd4{bottom:268.580850px;}
.yff{bottom:269.453400px;}
.yaf{bottom:270.109950px;}
.y14f{bottom:270.980850px;}
.y10{bottom:273.981006px;}
.y90{bottom:280.589100px;}
.y122{bottom:283.767450px;}
.y35{bottom:284.420700px;}
.y14e{bottom:287.329350px;}
.y6e{bottom:288.524850px;}
.yd3{bottom:289.288350px;}
.yfe{bottom:289.995900px;}
.yae{bottom:290.817450px;}
.yf{bottom:291.164483px;}
.y121{bottom:299.967450px;}
.y8f{bottom:301.296600px;}
.y14d{bottom:303.677850px;}
.y34{bottom:305.425200px;}
.y66{bottom:309.232350px;}
.yd2{bottom:309.995850px;}
.yfd{bottom:310.538400px;}
.yad{bottom:311.524950px;}
.y120{bottom:316.167450px;}
.y14c{bottom:320.026350px;}
.y8e{bottom:322.004100px;}
.y33{bottom:326.429700px;}
.y65{bottom:329.939850px;}
.yd1{bottom:330.703350px;}
.yfc{bottom:331.080900px;}
.yac{bottom:332.232450px;}
.y11f{bottom:332.367450px;}
.y8d{bottom:342.711600px;}
.y32{bottom:347.434200px;}
.y11e{bottom:348.567450px;}
.y14b{bottom:349.132350px;}
.y64{bottom:350.647350px;}
.yd0{bottom:351.410850px;}
.yfb{bottom:351.623400px;}
.yab{bottom:352.939950px;}
.y8c{bottom:363.419100px;}
.y11d{bottom:364.767450px;}
.y14a{bottom:367.613850px;}
.y31{bottom:368.438700px;}
.y63{bottom:371.354850px;}
.ycf{bottom:372.118350px;}
.yfa{bottom:372.165900px;}
.yaa{bottom:373.647450px;}
.y11c{bottom:380.967450px;}
.y149{bottom:383.962350px;}
.y8b{bottom:384.126600px;}
.y30{bottom:389.443200px;}
.y62{bottom:392.062350px;}
.yf9{bottom:392.708400px;}
.yce{bottom:392.825850px;}
.ya9{bottom:394.354950px;}
.y11b{bottom:397.167450px;}
.ye{bottom:398.885324px;}
.y148{bottom:400.310850px;}
.y8a{bottom:404.834100px;}
.y2f{bottom:410.447700px;}
.y61{bottom:412.769850px;}
.yf8{bottom:413.250900px;}
.y11a{bottom:413.367450px;}
.ya8{bottom:415.062450px;}
.y147{bottom:416.659350px;}
.ycd{bottom:422.463150px;}
.y89{bottom:425.541600px;}
.y119{bottom:429.567450px;}
.y2e{bottom:431.452200px;}
.y146{bottom:433.007850px;}
.y60{bottom:433.477350px;}
.yf7{bottom:433.793400px;}
.ya7{bottom:435.769950px;}
.ycc{bottom:441.513150px;}
.y118{bottom:445.767450px;}
.y88{bottom:446.249100px;}
.y145{bottom:449.356350px;}
.y2d{bottom:452.456700px;}
.y5f{bottom:454.184850px;}
.yf6{bottom:454.335900px;}
.ya6{bottom:456.477450px;}
.ycb{bottom:460.563150px;}
.y117{bottom:461.967450px;}
.y144{bottom:465.704850px;}
.y87{bottom:466.956600px;}
.yf5{bottom:474.878400px;}
.y5e{bottom:474.892350px;}
.ya5{bottom:477.184950px;}
.y116{bottom:478.167450px;}
.yca{bottom:479.613150px;}
.y143{bottom:482.053350px;}
.y86{bottom:487.664100px;}
.y115{bottom:494.367450px;}
.yf4{bottom:495.420900px;}
.y5d{bottom:495.599850px;}
.ya4{bottom:497.892450px;}
.y142{bottom:498.401850px;}
.yc9{bottom:498.663150px;}
.y85{bottom:508.371600px;}
.y114{bottom:510.567450px;}
.yf3{bottom:515.963400px;}
.y5c{bottom:516.307350px;}
.yc8{bottom:517.713150px;}
.ya3{bottom:518.599950px;}
.y113{bottom:526.767450px;}
.y141{bottom:527.507850px;}
.y84{bottom:529.079100px;}
.yc7{bottom:536.763150px;}
.y5b{bottom:537.014850px;}
.ya2{bottom:539.307450px;}
.y2c{bottom:540.056700px;}
.y112{bottom:542.967450px;}
.y140{bottom:545.989350px;}
.y83{bottom:549.786600px;}
.yf2{bottom:554.371650px;}
.yc6{bottom:555.813150px;}
.y5a{bottom:557.722350px;}
.y111{bottom:559.167450px;}
.ya1{bottom:560.014950px;}
.yd{bottom:561.067654px;}
.y13f{bottom:562.337850px;}
.y82{bottom:570.494100px;}
.y2b{bottom:574.256700px;}
.yc5{bottom:574.863150px;}
.y110{bottom:575.367450px;}
.y59{bottom:578.429850px;}
.y13e{bottom:578.686350px;}
.y6d{bottom:579.192450px;}
.ya0{bottom:580.722450px;}
.yc{bottom:586.831085px;}
.y81{bottom:591.201600px;}
.y10f{bottom:591.567450px;}
.y13d{bottom:595.034850px;}
.y58{bottom:599.137350px;}
.yb{bottom:600.184226px;}
.y9f{bottom:601.429950px;}
.yc4{bottom:602.838150px;}
.y10e{bottom:607.767450px;}
.y2a{bottom:608.456700px;}
.y13c{bottom:611.383350px;}
.y80{bottom:611.909100px;}
.y3e{bottom:613.192350px;}
.yf1{bottom:617.163300px;}
.y57{bottom:619.844850px;}
.yc3{bottom:621.888150px;}
.y9e{bottom:622.137450px;}
.y10d{bottom:623.967450px;}
.ya{bottom:626.206941px;}
.y13b{bottom:627.731850px;}
.y7f{bottom:632.616600px;}
.yf0{bottom:637.705800px;}
.y9{bottom:639.571869px;}
.y10c{bottom:640.167450px;}
.y56{bottom:640.552350px;}
.yc2{bottom:640.938150px;}
.y9d{bottom:642.844950px;}
.y13a{bottom:644.080350px;}
.y3d{bottom:650.992350px;}
.y8{bottom:652.936796px;}
.y7e{bottom:653.324100px;}
.y10b{bottom:656.367450px;}
.y25{bottom:657.176850px;}
.yef{bottom:658.248300px;}
.yc1{bottom:659.988150px;}
.y139{bottom:660.428850px;}
.y55{bottom:661.259850px;}
.y9c{bottom:663.552450px;}
.y7{bottom:666.301723px;}
.y10a{bottom:672.567450px;}
.y7d{bottom:674.031600px;}
.yee{bottom:678.790800px;}
.yc0{bottom:679.038150px;}
.y6{bottom:679.666650px;}
.y54{bottom:681.967350px;}
.y9b{bottom:684.259950px;}
.y109{bottom:688.767450px;}
.y3c{bottom:688.792350px;}
.y7c{bottom:694.739100px;}
.ybf{bottom:698.088150px;}
.yed{bottom:699.333300px;}
.y53{bottom:702.674850px;}
.y9a{bottom:704.967450px;}
.y7b{bottom:715.446600px;}
.ybe{bottom:717.138150px;}
.yec{bottom:719.875800px;}
.y108{bottom:722.825850px;}
.y24{bottom:723.200850px;}
.y52{bottom:723.382350px;}
.y3b{bottom:726.592350px;}
.y138{bottom:727.807350px;}
.y7a{bottom:736.154100px;}
.yeb{bottom:740.418300px;}
.y5{bottom:741.942024px;}
.y99{bottom:743.525850px;}
.y51{bottom:744.089850px;}
.y137{bottom:744.155850px;}
.ybd{bottom:745.113150px;}
.y79{bottom:756.861600px;}
.y136{bottom:760.504350px;}
.yea{bottom:760.960800px;}
.y4{bottom:761.765488px;}
.ybc{bottom:764.163150px;}
.y50{bottom:764.797350px;}
.y135{bottom:776.852850px;}
.y78{bottom:777.569100px;}
.ye9{bottom:781.503300px;}
.ybb{bottom:783.213150px;}
.y3{bottom:785.148217px;}
.y4f{bottom:785.504850px;}
.y134{bottom:793.201350px;}
.y77{bottom:798.276600px;}
.ye8{bottom:802.045800px;}
.y3a{bottom:802.192350px;}
.yba{bottom:802.263150px;}
.y4e{bottom:806.212350px;}
.y2{bottom:808.542733px;}
.y133{bottom:809.549850px;}
.y23{bottom:811.700850px;}
.y76{bottom:818.984100px;}
.yb9{bottom:821.313150px;}
.ye7{bottom:822.588300px;}
.y132{bottom:825.898350px;}
.y4d{bottom:826.919850px;}
.y39{bottom:839.992350px;}
.yb8{bottom:840.363150px;}
.y131{bottom:842.246850px;}
.y4c{bottom:847.627350px;}
.ye6{bottom:852.067350px;}
.y75{bottom:857.542350px;}
.y130{bottom:858.595350px;}
.y4b{bottom:868.334850px;}
.ye5{bottom:871.117350px;}
.y12f{bottom:874.943850px;}
.y38{bottom:877.792350px;}
.y74{bottom:884.542350px;}
.y4a{bottom:889.042350px;}
.ye4{bottom:890.167350px;}
.y12e{bottom:891.292350px;}
.y49{bottom:952.015800px;}
.h9{height:24.452867px;}
.h7{height:27.946133px;}
.h8{height:28.059276px;}
.h16{height:30.480469px;}
.hc{height:31.439400px;}
.h6{height:34.932667px;}
.ha{height:35.074094px;}
.h5{height:38.425933px;}
.hb{height:39.124587px;}
.h1e{height:42.820312px;}
.h1f{height:43.664062px;}
.h1a{height:45.720703px;}
.h3{height:48.905733px;}
.h4{height:49.103732px;}
.h1d{height:50.800781px;}
.h12{height:52.335938px;}
.h15{height:54.272461px;}
.h13{height:55.880859px;}
.h1b{height:60.960938px;}
.h1c{height:72.773438px;}
.h17{height:87.670898px;}
.h14{height:96.521484px;}
.h18{height:99.914062px;}
.h19{height:106.681641px;}
.hf{height:172.265625px;}
.h11{height:228.375000px;}
.h10{height:354.785156px;}
.h2{height:992.222088px;}
.h0{height:992.820000px;}
.h1{height:993.000000px;}
.he{height:999.000000px;}
.hd{height:999.213000px;}
.w1{width:701.250000px;}
.w3{width:701.575500px;}
.w2{width:701.576173px;}
.w0{width:701.580000px;}
.x0{left:0.000000px;}
.x3{left:36.747657px;}
.x1{left:43.430120px;}
.x16{left:46.771650px;}
.x1c{left:60.271650px;}
.x1b{left:76.535400px;}
.x14{left:77.700900px;}
.x8{left:80.205750px;}
.x1d{left:97.795200px;}
.xd{left:106.916700px;}
.x15{left:114.182400px;}
.xb{left:115.780200px;}
.x2{left:116.925434px;}
.xc{left:124.159200px;}
.x9{left:135.959250px;}
.x13{left:139.806900px;}
.x18{left:161.574750px;}
.x2c{left:173.330400px;}
.x1e{left:182.834550px;}
.x12{left:185.709900px;}
.x7{left:190.392750px;}
.xf{left:194.141400px;}
.x23{left:204.839400px;}
.x10{left:214.568400px;}
.x11{left:220.706400px;}
.x2b{left:231.920400px;}
.xa{left:281.522250px;}
.x25{left:289.052400px;}
.x2d{left:298.016400px;}
.xe{left:307.133400px;}
.x21{left:321.830400px;}
.x26{left:325.596900px;}
.x30{left:338.799900px;}
.x4{left:344.105623px;}
.x2f{left:366.272400px;}
.x22{left:371.010900px;}
.x20{left:398.388900px;}
.x17{left:407.083800px;}
.x27{left:415.614900px;}
.x2a{left:418.449900px;}
.x24{left:419.745900px;}
.x2e{left:428.709900px;}
.x28{left:442.641900px;}
.x29{left:445.125900px;}
.x5{left:449.502150px;}
.x6{left:481.152750px;}
.x1f{left:625.570500px;}
.x19{left:635.011200px;}
.x1a{left:641.637300px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.762667pt;}
.lsb{letter-spacing:-0.693333pt;}
.ls7{letter-spacing:-0.624000pt;}
.ls4{letter-spacing:-0.560000pt;}
.lsd{letter-spacing:-0.410667pt;}
.ls8{letter-spacing:-0.293333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.069333pt;}
.ls9{letter-spacing:0.485333pt;}
.lsa{letter-spacing:0.554667pt;}
.ls6{letter-spacing:0.762667pt;}
.ls3{letter-spacing:0.832000pt;}
.lse{letter-spacing:9.984000pt;}
.ls2{letter-spacing:21.760000pt;}
.ls1{letter-spacing:40.597333pt;}
.ws3{word-spacing:-40.597333pt;}
.ws5{word-spacing:-24.752000pt;}
.ws4{word-spacing:-21.760000pt;}
.wsf{word-spacing:-18.080000pt;}
.ws2{word-spacing:-13.258667pt;}
.ws0{word-spacing:-13.047395pt;}
.ws6{word-spacing:-10.848000pt;}
.ws7{word-spacing:-0.832000pt;}
.wsd{word-spacing:-0.554667pt;}
.wsc{word-spacing:-0.485333pt;}
.ws9{word-spacing:-0.069333pt;}
.ws1{word-spacing:0.000000pt;}
.wsb{word-spacing:0.293333pt;}
.ws10{word-spacing:0.410667pt;}
.ws8{word-spacing:0.560000pt;}
.wsa{word-spacing:0.624000pt;}
.wse{word-spacing:0.693333pt;}
._f{margin-left:-23.570133pt;}
._10{margin-left:-14.068267pt;}
._1a{margin-left:-12.886968pt;}
._21{margin-left:-11.705600pt;}
._20{margin-left:-10.627193pt;}
._16{margin-left:-9.695706pt;}
._1d{margin-left:-6.070923pt;}
._14{margin-left:-5.074632pt;}
._c{margin-left:-3.942400pt;}
._e{margin-left:-2.892800pt;}
._d{margin-left:-1.302400pt;}
._a{width:1.231993pt;}
._3{width:2.551986pt;}
._6{width:3.666647pt;}
._11{width:5.455536pt;}
._4{width:6.394632pt;}
._12{width:7.454400pt;}
._9{width:9.122617pt;}
._13{width:10.284267pt;}
._8{width:11.791936pt;}
._1f{width:12.748929pt;}
._2{width:13.669259pt;}
._15{width:14.566933pt;}
._19{width:15.728533pt;}
._1b{width:16.649799pt;}
._5{width:18.215901pt;}
._17{width:19.512533pt;}
._18{width:20.492267pt;}
._1e{width:21.677333pt;}
._1{width:25.167863pt;}
._1c{width:28.523894pt;}
._7{width:29.479839pt;}
._b{width:40.186447pt;}
._0{width:729.666877pt;}
.fs4{font-size:29.333173pt;}
.fse{font-size:32.000000pt;}
.fs3{font-size:33.523627pt;}
.fs6{font-size:36.875989pt;}
.fs7{font-size:37.714080pt;}
.fs2{font-size:41.904533pt;}
.fs1{font-size:46.094987pt;}
.fs5{font-size:46.933077pt;}
.fs10{font-size:48.000000pt;}
.fs13{font-size:53.333333pt;}
.fs0{font-size:58.666347pt;}
.fsb{font-size:58.666667pt;}
.fs11{font-size:64.000000pt;}
.fsd{font-size:69.333333pt;}
.fs12{font-size:80.000000pt;}
.fsc{font-size:101.333333pt;}
.fsf{font-size:112.000000pt;}
.fs8{font-size:224.000000pt;}
.fsa{font-size:256.000000pt;}
.fs9{font-size:461.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.265213pt;}
.y37{bottom:41.196800pt;}
.y21{bottom:44.680709pt;}
.y20{bottom:56.560644pt;}
.y1f{bottom:68.440579pt;}
.y1e{bottom:80.320514pt;}
.y1d{bottom:90.471887pt;}
.y36{bottom:90.708667pt;}
.ydc{bottom:91.485200pt;}
.yb7{bottom:92.844400pt;}
.y107{bottom:93.287467pt;}
.ye3{bottom:93.389467pt;}
.y12d{bottom:93.573733pt;}
.y48{bottom:96.807467pt;}
.y98{bottom:102.159200pt;}
.y6c{bottom:105.817867pt;}
.y12c{bottom:107.973733pt;}
.y1c{bottom:109.706068pt;}
.ydb{bottom:109.891867pt;}
.ye2{bottom:110.322800pt;}
.y47{bottom:111.207467pt;}
.yb6{bottom:111.251067pt;}
.y106{bottom:111.694133pt;}
.y97{bottom:120.565867pt;}
.y22{bottom:121.581067pt;}
.y12b{bottom:122.373733pt;}
.y6b{bottom:124.224533pt;}
.y29{bottom:126.612800pt;}
.ye1{bottom:127.256133pt;}
.yda{bottom:128.298533pt;}
.y46{bottom:129.387467pt;}
.yb5{bottom:129.657733pt;}
.y105{bottom:129.954133pt;}
.y12a{bottom:136.773733pt;}
.y96{bottom:138.972533pt;}
.y6a{bottom:142.631200pt;}
.y45{bottom:143.787467pt;}
.ye0{bottom:144.189467pt;}
.yd9{bottom:146.705200pt;}
.yb4{bottom:148.064400pt;}
.y104{bottom:148.214133pt;}
.y129{bottom:151.173733pt;}
.y95{bottom:157.379200pt;}
.y44{bottom:158.187467pt;}
.y1b{bottom:159.645796pt;}
.y69{bottom:161.037867pt;}
.ydf{bottom:161.122800pt;}
.y28{bottom:163.939467pt;}
.y73{bottom:164.433200pt;}
.yd8{bottom:165.111867pt;}
.y128{bottom:165.573733pt;}
.yb3{bottom:166.471067pt;}
.y103{bottom:166.474133pt;}
.y1a{bottom:168.550509pt;}
.y43{bottom:172.587467pt;}
.y94{bottom:175.785867pt;}
.y19{bottom:176.721893pt;}
.yde{bottom:178.056133pt;}
.y127{bottom:179.973733pt;}
.y153{bottom:180.847867pt;}
.y27{bottom:182.610133pt;}
.y72{bottom:182.839867pt;}
.yd7{bottom:183.518533pt;}
.y18{bottom:184.138996pt;}
.y102{bottom:184.734133pt;}
.yb2{bottom:184.877733pt;}
.y42{bottom:186.987467pt;}
.y17{bottom:191.566574pt;}
.y93{bottom:194.192533pt;}
.y126{bottom:194.373733pt;}
.ydd{bottom:194.989467pt;}
.y68{bottom:195.311867pt;}
.y152{bottom:197.275867pt;}
.y16{bottom:198.994153pt;}
.y71{bottom:201.246533pt;}
.y26{bottom:201.280800pt;}
.y41{bottom:201.387467pt;}
.yd6{bottom:201.925200pt;}
.y101{bottom:202.994133pt;}
.yb1{bottom:203.284400pt;}
.y15{bottom:206.411255pt;}
.y125{bottom:208.905733pt;}
.y151{bottom:211.807867pt;}
.y92{bottom:212.599200pt;}
.y14{bottom:213.838834pt;}
.y40{bottom:215.787467pt;}
.y67{bottom:219.311867pt;}
.y70{bottom:219.653200pt;}
.yd5{bottom:220.331867pt;}
.y100{bottom:221.254133pt;}
.y13{bottom:221.266412pt;}
.yb0{bottom:221.691067pt;}
.y124{bottom:223.437733pt;}
.y150{bottom:226.339867pt;}
.y12{bottom:228.683515pt;}
.y3f{bottom:230.187467pt;}
.y91{bottom:231.005867pt;}
.y11{bottom:236.111093pt;}
.y123{bottom:237.837733pt;}
.y6f{bottom:238.059867pt;}
.yd4{bottom:238.738533pt;}
.yff{bottom:239.514133pt;}
.yaf{bottom:240.097733pt;}
.y14f{bottom:240.871867pt;}
.y10{bottom:243.538672pt;}
.y90{bottom:249.412533pt;}
.y122{bottom:252.237733pt;}
.y35{bottom:252.818400pt;}
.y14e{bottom:255.403867pt;}
.y6e{bottom:256.466533pt;}
.yd3{bottom:257.145200pt;}
.yfe{bottom:257.774133pt;}
.yae{bottom:258.504400pt;}
.yf{bottom:258.812874pt;}
.y121{bottom:266.637733pt;}
.y8f{bottom:267.819200pt;}
.y14d{bottom:269.935867pt;}
.y34{bottom:271.489067pt;}
.y66{bottom:274.873200pt;}
.yd2{bottom:275.551867pt;}
.yfd{bottom:276.034133pt;}
.yad{bottom:276.911067pt;}
.y120{bottom:281.037733pt;}
.y14c{bottom:284.467867pt;}
.y8e{bottom:286.225867pt;}
.y33{bottom:290.159733pt;}
.y65{bottom:293.279867pt;}
.yd1{bottom:293.958533pt;}
.yfc{bottom:294.294133pt;}
.yac{bottom:295.317733pt;}
.y11f{bottom:295.437733pt;}
.y8d{bottom:304.632533pt;}
.y32{bottom:308.830400pt;}
.y11e{bottom:309.837733pt;}
.y14b{bottom:310.339867pt;}
.y64{bottom:311.686533pt;}
.yd0{bottom:312.365200pt;}
.yfb{bottom:312.554133pt;}
.yab{bottom:313.724400pt;}
.y8c{bottom:323.039200pt;}
.y11d{bottom:324.237733pt;}
.y14a{bottom:326.767867pt;}
.y31{bottom:327.501067pt;}
.y63{bottom:330.093200pt;}
.ycf{bottom:330.771867pt;}
.yfa{bottom:330.814133pt;}
.yaa{bottom:332.131067pt;}
.y11c{bottom:338.637733pt;}
.y149{bottom:341.299867pt;}
.y8b{bottom:341.445867pt;}
.y30{bottom:346.171733pt;}
.y62{bottom:348.499867pt;}
.yf9{bottom:349.074133pt;}
.yce{bottom:349.178533pt;}
.ya9{bottom:350.537733pt;}
.y11b{bottom:353.037733pt;}
.ye{bottom:354.564733pt;}
.y148{bottom:355.831867pt;}
.y8a{bottom:359.852533pt;}
.y2f{bottom:364.842400pt;}
.y61{bottom:366.906533pt;}
.yf8{bottom:367.334133pt;}
.y11a{bottom:367.437733pt;}
.ya8{bottom:368.944400pt;}
.y147{bottom:370.363867pt;}
.ycd{bottom:375.522800pt;}
.y89{bottom:378.259200pt;}
.y119{bottom:381.837733pt;}
.y2e{bottom:383.513067pt;}
.y146{bottom:384.895867pt;}
.y60{bottom:385.313200pt;}
.yf7{bottom:385.594133pt;}
.ya7{bottom:387.351067pt;}
.ycc{bottom:392.456133pt;}
.y118{bottom:396.237733pt;}
.y88{bottom:396.665867pt;}
.y145{bottom:399.427867pt;}
.y2d{bottom:402.183733pt;}
.y5f{bottom:403.719867pt;}
.yf6{bottom:403.854133pt;}
.ya6{bottom:405.757733pt;}
.ycb{bottom:409.389467pt;}
.y117{bottom:410.637733pt;}
.y144{bottom:413.959867pt;}
.y87{bottom:415.072533pt;}
.yf5{bottom:422.114133pt;}
.y5e{bottom:422.126533pt;}
.ya5{bottom:424.164400pt;}
.y116{bottom:425.037733pt;}
.yca{bottom:426.322800pt;}
.y143{bottom:428.491867pt;}
.y86{bottom:433.479200pt;}
.y115{bottom:439.437733pt;}
.yf4{bottom:440.374133pt;}
.y5d{bottom:440.533200pt;}
.ya4{bottom:442.571067pt;}
.y142{bottom:443.023867pt;}
.yc9{bottom:443.256133pt;}
.y85{bottom:451.885867pt;}
.y114{bottom:453.837733pt;}
.yf3{bottom:458.634133pt;}
.y5c{bottom:458.939867pt;}
.yc8{bottom:460.189467pt;}
.ya3{bottom:460.977733pt;}
.y113{bottom:468.237733pt;}
.y141{bottom:468.895867pt;}
.y84{bottom:470.292533pt;}
.yc7{bottom:477.122800pt;}
.y5b{bottom:477.346533pt;}
.ya2{bottom:479.384400pt;}
.y2c{bottom:480.050400pt;}
.y112{bottom:482.637733pt;}
.y140{bottom:485.323867pt;}
.y83{bottom:488.699200pt;}
.yf2{bottom:492.774800pt;}
.yc6{bottom:494.056133pt;}
.y5a{bottom:495.753200pt;}
.y111{bottom:497.037733pt;}
.ya1{bottom:497.791067pt;}
.yd{bottom:498.726803pt;}
.y13f{bottom:499.855867pt;}
.y82{bottom:507.105867pt;}
.y2b{bottom:510.450400pt;}
.yc5{bottom:510.989467pt;}
.y110{bottom:511.437733pt;}
.y59{bottom:514.159867pt;}
.y13e{bottom:514.387867pt;}
.y6d{bottom:514.837733pt;}
.ya0{bottom:516.197733pt;}
.yc{bottom:521.627631pt;}
.y81{bottom:525.512533pt;}
.y10f{bottom:525.837733pt;}
.y13d{bottom:528.919867pt;}
.y58{bottom:532.566533pt;}
.yb{bottom:533.497090pt;}
.y9f{bottom:534.604400pt;}
.yc4{bottom:535.856133pt;}
.y10e{bottom:540.237733pt;}
.y2a{bottom:540.850400pt;}
.y13c{bottom:543.451867pt;}
.y80{bottom:543.919200pt;}
.y3e{bottom:545.059867pt;}
.yf1{bottom:548.589600pt;}
.y57{bottom:550.973200pt;}
.yc3{bottom:552.789467pt;}
.y9e{bottom:553.011067pt;}
.y10d{bottom:554.637733pt;}
.ya{bottom:556.628392pt;}
.y13b{bottom:557.983867pt;}
.y7f{bottom:562.325867pt;}
.yf0{bottom:566.849600pt;}
.y9{bottom:568.508328pt;}
.y10c{bottom:569.037733pt;}
.y56{bottom:569.379867pt;}
.yc2{bottom:569.722800pt;}
.y9d{bottom:571.417733pt;}
.y13a{bottom:572.515867pt;}
.y3d{bottom:578.659867pt;}
.y8{bottom:580.388263pt;}
.y7e{bottom:580.732533pt;}
.y10b{bottom:583.437733pt;}
.y25{bottom:584.157200pt;}
.yef{bottom:585.109600pt;}
.yc1{bottom:586.656133pt;}
.y139{bottom:587.047867pt;}
.y55{bottom:587.786533pt;}
.y9c{bottom:589.824400pt;}
.y7{bottom:592.268198pt;}
.y10a{bottom:597.837733pt;}
.y7d{bottom:599.139200pt;}
.yee{bottom:603.369600pt;}
.yc0{bottom:603.589467pt;}
.y6{bottom:604.148133pt;}
.y54{bottom:606.193200pt;}
.y9b{bottom:608.231067pt;}
.y109{bottom:612.237733pt;}
.y3c{bottom:612.259867pt;}
.y7c{bottom:617.545867pt;}
.ybf{bottom:620.522800pt;}
.yed{bottom:621.629600pt;}
.y53{bottom:624.599867pt;}
.y9a{bottom:626.637733pt;}
.y7b{bottom:635.952533pt;}
.ybe{bottom:637.456133pt;}
.yec{bottom:639.889600pt;}
.y108{bottom:642.511867pt;}
.y24{bottom:642.845200pt;}
.y52{bottom:643.006533pt;}
.y3b{bottom:645.859867pt;}
.y138{bottom:646.939867pt;}
.y7a{bottom:654.359200pt;}
.yeb{bottom:658.149600pt;}
.y5{bottom:659.504022pt;}
.y99{bottom:660.911867pt;}
.y51{bottom:661.413200pt;}
.y137{bottom:661.471867pt;}
.ybd{bottom:662.322800pt;}
.y79{bottom:672.765867pt;}
.y136{bottom:676.003867pt;}
.yea{bottom:676.409600pt;}
.y4{bottom:677.124878pt;}
.ybc{bottom:679.256133pt;}
.y50{bottom:679.819867pt;}
.y135{bottom:690.535867pt;}
.y78{bottom:691.172533pt;}
.ye9{bottom:694.669600pt;}
.ybb{bottom:696.189467pt;}
.y3{bottom:697.909527pt;}
.y4f{bottom:698.226533pt;}
.y134{bottom:705.067867pt;}
.y77{bottom:709.579200pt;}
.ye8{bottom:712.929600pt;}
.y3a{bottom:713.059867pt;}
.yba{bottom:713.122800pt;}
.y4e{bottom:716.633200pt;}
.y2{bottom:718.704651pt;}
.y133{bottom:719.599867pt;}
.y23{bottom:721.511867pt;}
.y76{bottom:727.985867pt;}
.yb9{bottom:730.056133pt;}
.ye7{bottom:731.189600pt;}
.y132{bottom:734.131867pt;}
.y4d{bottom:735.039867pt;}
.y39{bottom:746.659867pt;}
.yb8{bottom:746.989467pt;}
.y131{bottom:748.663867pt;}
.y4c{bottom:753.446533pt;}
.ye6{bottom:757.393200pt;}
.y75{bottom:762.259867pt;}
.y130{bottom:763.195867pt;}
.y4b{bottom:771.853200pt;}
.ye5{bottom:774.326533pt;}
.y12f{bottom:777.727867pt;}
.y38{bottom:780.259867pt;}
.y74{bottom:786.259867pt;}
.y4a{bottom:790.259867pt;}
.ye4{bottom:791.259867pt;}
.y12e{bottom:792.259867pt;}
.y49{bottom:846.236267pt;}
.h9{height:21.735881pt;}
.h7{height:24.841007pt;}
.h8{height:24.941578pt;}
.h16{height:27.093750pt;}
.hc{height:27.946133pt;}
.h6{height:31.051259pt;}
.ha{height:31.176973pt;}
.h5{height:34.156385pt;}
.hb{height:34.777410pt;}
.h1e{height:38.062500pt;}
.h1f{height:38.812500pt;}
.h1a{height:40.640625pt;}
.h3{height:43.471763pt;}
.h4{height:43.647762pt;}
.h1d{height:45.156250pt;}
.h12{height:46.520833pt;}
.h15{height:48.242188pt;}
.h13{height:49.671875pt;}
.h1b{height:54.187500pt;}
.h1c{height:64.687500pt;}
.h17{height:77.929688pt;}
.h14{height:85.796875pt;}
.h18{height:88.812500pt;}
.h19{height:94.828125pt;}
.hf{height:153.125000pt;}
.h11{height:203.000000pt;}
.h10{height:315.364583pt;}
.h2{height:881.975189pt;}
.h0{height:882.506667pt;}
.h1{height:882.666667pt;}
.he{height:888.000000pt;}
.hd{height:888.189333pt;}
.w1{width:623.333333pt;}
.w3{width:623.622667pt;}
.w2{width:623.623265pt;}
.w0{width:623.626667pt;}
.x0{left:0.000000pt;}
.x3{left:32.664584pt;}
.x1{left:38.604551pt;}
.x16{left:41.574800pt;}
.x1c{left:53.574800pt;}
.x1b{left:68.031467pt;}
.x14{left:69.067467pt;}
.x8{left:71.294000pt;}
.x1d{left:86.929067pt;}
.xd{left:95.037067pt;}
.x15{left:101.495467pt;}
.xb{left:102.915733pt;}
.x2{left:103.933719pt;}
.xc{left:110.363733pt;}
.x9{left:120.852667pt;}
.x13{left:124.272800pt;}
.x18{left:143.622000pt;}
.x2c{left:154.071467pt;}
.x1e{left:162.519600pt;}
.x12{left:165.075467pt;}
.x7{left:169.238000pt;}
.xf{left:172.570133pt;}
.x23{left:182.079467pt;}
.x10{left:190.727467pt;}
.x11{left:196.183467pt;}
.x2b{left:206.151467pt;}
.xa{left:250.242000pt;}
.x25{left:256.935467pt;}
.x2d{left:264.903467pt;}
.xe{left:273.007467pt;}
.x21{left:286.071467pt;}
.x26{left:289.419467pt;}
.x30{left:301.155467pt;}
.x4{left:305.871665pt;}
.x2f{left:325.575467pt;}
.x22{left:329.787467pt;}
.x20{left:354.123467pt;}
.x17{left:361.852267pt;}
.x27{left:369.435467pt;}
.x2a{left:371.955467pt;}
.x24{left:373.107467pt;}
.x2e{left:381.075467pt;}
.x28{left:393.459467pt;}
.x29{left:395.667467pt;}
.x5{left:399.557467pt;}
.x6{left:427.691333pt;}
.x1f{left:556.062667pt;}
.x19{left:564.454400pt;}
.x1a{left:570.344267pt;}
}




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