
    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_03c74196c8148b8a573e5d30.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_85d8b6267351a55a1eb53fa3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.690918;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_94b0bfe4ed2b82179691a5f7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_7da3d4ea5fae3f88f38ec207.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_8c39e43d5ada883a96c7bcc9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_26aba45425eee7e6f4d61f70.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1eda0f57ca677eef94b4dfd8.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4697383db7db420b1453f318.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_d60b90d31d9ff0fd053ca066.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.969000;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_9011e8dcae4e61f16f52a730.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.750000;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;}
.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);}
.v2{vertical-align:-23.096298px;}
.v3{vertical-align:-5.595604px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.309416px;}
.v1{vertical-align:23.096298px;}
.ls7{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.001260px;}
.ls0{letter-spacing:0.001680px;}
.ls1b{letter-spacing:0.004770px;}
.ls15{letter-spacing:0.026331px;}
.ls17{letter-spacing:0.052230px;}
.lsf{letter-spacing:0.054630px;}
.ls3{letter-spacing:0.134451px;}
.ls9{letter-spacing:0.151380px;}
.lse{letter-spacing:0.199695px;}
.ls14{letter-spacing:0.214168px;}
.ls12{letter-spacing:0.219808px;}
.ls2{letter-spacing:0.235366px;}
.ls5{letter-spacing:0.318585px;}
.ls18{letter-spacing:0.345360px;}
.ls1a{letter-spacing:0.350940px;}
.ls19{letter-spacing:0.356580px;}
.lsa{letter-spacing:0.373110px;}
.ls13{letter-spacing:0.473710px;}
.ls16{letter-spacing:8.351796px;}
.lsb{letter-spacing:9.718418px;}
.lsd{letter-spacing:10.444298px;}
.ls6{letter-spacing:13.217260px;}
.ls8{letter-spacing:17.419064px;}
.ls1{letter-spacing:29.344313px;}
.ls4{letter-spacing:62.239340px;}
.ls11{letter-spacing:101.049159px;}
.lsc{letter-spacing:647.806718px;}
.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;}
}
.ws2{word-spacing:-14.524032px;}
.ws1{word-spacing:-13.124125px;}
.ws3{word-spacing:-11.724219px;}
.ws6{word-spacing:-11.024274px;}
.ws0{word-spacing:-10.149323px;}
.ws4{word-spacing:-9.449378px;}
.ws7{word-spacing:-7.349511px;}
.ws5{word-spacing:0.000000px;}
._1c{margin-left:-4.884489px;}
._e{margin-left:-3.237223px;}
._f{margin-left:-2.125307px;}
._0{margin-left:-1.014894px;}
._1{width:1.141084px;}
._7{width:2.519430px;}
._6{width:3.569762px;}
._8{width:5.039664px;}
._18{width:6.146598px;}
._19{width:7.353081px;}
._1a{width:9.330131px;}
._13{width:10.838649px;}
._12{width:12.669207px;}
._4{width:14.659461px;}
._3{width:16.221582px;}
._2{width:17.665459px;}
._1d{width:18.796863px;}
._15{width:19.824040px;}
._14{width:21.065509px;}
._1b{width:22.394615px;}
._25{width:24.204239px;}
._23{width:25.292742px;}
._11{width:26.375641px;}
._10{width:27.417543px;}
._5{width:29.398088px;}
._a{width:30.710352px;}
._9{width:31.812884px;}
._24{width:32.817965px;}
._d{width:33.860553px;}
._c{width:34.961861px;}
._17{width:36.213494px;}
._16{width:37.332001px;}
._26{width:38.735828px;}
._b{width:41.525202px;}
._2c{width:44.596177px;}
._2b{width:45.813773px;}
._22{width:49.671559px;}
._30{width:72.852288px;}
._2f{width:86.969981px;}
._2e{width:94.707766px;}
._31{width:120.250751px;}
._2d{width:143.715990px;}
._28{width:203.342016px;}
._27{width:211.559950px;}
._29{width:233.608580px;}
._2a{width:241.483880px;}
._1f{width:717.806691px;}
._1e{width:726.198148px;}
._21{width:728.303818px;}
._20{width:1445.872941px;}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:29.398044px;}
.fs6{font-size:37.797510px;}
.fs3{font-size:40.597292px;}
.fs8{font-size:44.097095px;}
.fs5{font-size:46.896878px;}
.fs4{font-size:52.496502px;}
.fs1{font-size:58.096126px;}
.fs7{font-size:58.329467px;}
.fs2{font-size:64.395652px;}
.fs0{font-size:139.990912px;}
.y0{bottom:0.000000px;}
.yf6{bottom:2.449187px;}
.yf3{bottom:2.449363px;}
.yff{bottom:2.450285px;}
.yfb{bottom:2.450426px;}
.yfd{bottom:2.450536px;}
.y104{bottom:2.451794px;}
.y5d{bottom:7.157647px;}
.y101{bottom:8.750389px;}
.yf8{bottom:8.750431px;}
.yf2{bottom:15.047963px;}
.y103{bottom:15.050394px;}
.yfa{bottom:15.050436px;}
.y5c{bottom:26.843812px;}
.yf1{bottom:27.647973px;}
.yec{bottom:33.947963px;}
.yf0{bottom:40.246573px;}
.yea{bottom:40.247968px;}
.y5b{bottom:46.529978px;}
.yeb{bottom:46.547973px;}
.yef{bottom:52.846583px;}
.y1{bottom:54.000000px;}
.yee{bottom:65.269398px;}
.y5a{bottom:66.216144px;}
.y59{bottom:76.234320px;}
.yed{bottom:77.912998px;}
.yc4{bottom:117.550637px;}
.y58{bottom:118.076388px;}
.y33{bottom:121.227590px;}
.y81{bottom:121.401740px;}
.yc3{bottom:133.999650px;}
.y57{bottom:134.000700px;}
.y105{bottom:134.526151px;}
.y32{bottom:137.150553px;}
.y80{bottom:138.025054px;}
.yc2{bottom:146.244460px;}
.y56{bottom:149.919463px;}
.y31{bottom:153.069316px;}
.y7f{bottom:154.818467px;}
.y102{bottom:157.618669px;}
.y55{bottom:165.842426px;}
.y9c{bottom:168.292903px;}
.y30{bottom:168.992278px;}
.y7e{bottom:171.617580px;}
.y9b{bottom:178.616196px;}
.y54{bottom:181.766739px;}
.y2f{bottom:184.916591px;}
.y7d{bottom:188.416694px;}
.y53{bottom:197.691051px;}
.y2e{bottom:200.840904px;}
.y100{bottom:202.868280px;}
.y7c{bottom:204.514602px;}
.yf9{bottom:210.115711px;}
.y52{bottom:213.615364px;}
.y2d{bottom:216.939667px;}
.y7b{bottom:217.813522px;}
.yfe{bottom:228.767400px;}
.y51{bottom:229.538327px;}
.y7a{bottom:231.288228px;}
.y2c{bottom:232.863979px;}
.yfc{bottom:242.066160px;}
.y79{bottom:244.761524px;}
.y50{bottom:245.462640px;}
.y2b{bottom:248.788292px;}
.yf7{bottom:255.365280px;}
.y78{bottom:255.611498px;}
.y2a{bottom:264.712605px;}
.y4f{bottom:270.136759px;}
.yf4{bottom:280.810768px;}
.yf5{bottom:281.264040px;}
.y4e{bottom:286.059722px;}
.y29{bottom:289.383875px;}
.ye9{bottom:294.562800px;}
.y4d{bottom:301.984035px;}
.y28{bottom:305.308187px;}
.y16b{bottom:309.901356px;}
.yc1{bottom:313.928094px;}
.y4c{bottom:317.951998px;}
.y9a{bottom:318.826408px;}
.y27{bottom:321.274650px;}
.y134{bottom:322.849516px;}
.y99{bottom:332.301114px;}
.y4b{bottom:333.876310px;}
.y133{bottom:336.324222px;}
.y26{bottom:337.198963px;}
.yc0{bottom:339.475515px;}
.ye8{bottom:340.349850px;}
.y98{bottom:345.774410px;}
.y132{bottom:349.623143px;}
.y4a{bottom:349.799273px;}
.ye7{bottom:352.425325px;}
.y25{bottom:353.123276px;}
.y16a{bottom:354.697542px;}
.ybf{bottom:356.274628px;}
.y97{bottom:359.073330px;}
.y131{bottom:363.097849px;}
.y49{bottom:365.723586px;}
.y169{bottom:367.647712px;}
.y24{bottom:369.047588px;}
.y96{bottom:370.096839px;}
.ybe{bottom:373.073742px;}
.y130{bottom:376.572554px;}
.y168{bottom:381.121008px;}
.y48{bottom:381.647899px;}
.ye6{bottom:382.871449px;}
.y23{bottom:384.970551px;}
.y12f{bottom:389.871475px;}
.ybd{bottom:389.872855px;}
.y77{bottom:393.021958px;}
.y167{bottom:394.419929px;}
.y47{bottom:397.570861px;}
.ye5{bottom:399.671913px;}
.y22{bottom:400.895764px;}
.y12e{bottom:403.344771px;}
.ybc{bottom:406.496168px;}
.y166{bottom:407.894635px;}
.y46{bottom:413.669624px;}
.ye4{bottom:416.469526px;}
.y12d{bottom:416.819477px;}
.y21{bottom:416.820077px;}
.y76{bottom:418.570728px;}
.y165{bottom:421.367930px;}
.ybb{bottom:423.296632px;}
.y45{bottom:429.593937px;}
.y12c{bottom:430.118397px;}
.y20{bottom:432.744389px;}
.ye3{bottom:433.268640px;}
.y164{bottom:434.666851px;}
.y75{bottom:435.368341px;}
.yba{bottom:440.094245px;}
.y12b{bottom:443.593103px;}
.y44{bottom:445.516900px;}
.y163{bottom:448.141557px;}
.y1f{bottom:448.667352px;}
.ye2{bottom:450.067753px;}
.y74{bottom:452.167455px;}
.yb9{bottom:456.893359px;}
.y12a{bottom:457.067809px;}
.y162{bottom:461.616262px;}
.ye1{bottom:466.691067px;}
.y73{bottom:468.967918px;}
.y129{bottom:470.366729px;}
.y1e{bottom:473.341472px;}
.yb8{bottom:473.690972px;}
.y161{bottom:474.915183px;}
.y43{bottom:475.441534px;}
.ye0{bottom:483.490180px;}
.y128{bottom:483.841435px;}
.y72{bottom:485.065931px;}
.y160{bottom:488.389889px;}
.y42{bottom:488.916239px;}
.y1d{bottom:489.265785px;}
.yb7{bottom:490.491436px;}
.y71{bottom:496.090940px;}
.y127{bottom:497.313321px;}
.y95{bottom:498.189337px;}
.ydf{bottom:500.289293px;}
.y15f{bottom:501.863185px;}
.y41{bottom:502.215160px;}
.y1c{bottom:505.188747px;}
.y126{bottom:510.612242px;}
.y94{bottom:511.488257px;}
.y15e{bottom:515.162105px;}
.y40{bottom:515.688456px;}
.yb6{bottom:515.864406px;}
.yde{bottom:517.088407px;}
.y1b{bottom:521.113060px;}
.y125{bottom:524.086947px;}
.y93{bottom:524.961553px;}
.y15d{bottom:528.635401px;}
.y3f{bottom:529.862987px;}
.yb5{bottom:532.662019px;}
.ydd{bottom:533.887520px;}
.y1a{bottom:537.037373px;}
.y124{bottom:537.561653px;}
.y92{bottom:538.436259px;}
.y15c{bottom:542.110107px;}
.y3e{bottom:543.337678px;}
.y91{bottom:549.285483px;}
.yb4{bottom:549.462483px;}
.ydc{bottom:550.685134px;}
.y123{bottom:550.860574px;}
.y19{bottom:552.989886px;}
.y15b{bottom:555.438563px;}
.y122{bottom:564.363390px;}
.yb3{bottom:566.289646px;}
.ydb{bottom:567.339347px;}
.y15a{bottom:568.913268px;}
.y18{bottom:568.914198px;}
.y121{bottom:577.838095px;}
.y159{bottom:582.386564px;}
.yb2{bottom:583.090110px;}
.yda{bottom:584.136961px;}
.y17{bottom:584.837161px;}
.y120{bottom:591.137016px;}
.y158{bottom:595.685485px;}
.yb1{bottom:599.711923px;}
.yd9{bottom:600.937424px;}
.y16{bottom:606.710029px;}
.y157{bottom:609.160191px;}
.y11f{bottom:609.687531px;}
.yb0{bottom:616.511036px;}
.yd8{bottom:617.735037px;}
.y156{bottom:622.633486px;}
.yd7{bottom:634.534151px;}
.y11e{bottom:635.234951px;}
.y155{bottom:635.932407px;}
.y15{bottom:637.684273px;}
.y70{bottom:638.383874px;}
.yaf{bottom:642.059807px;}
.y154{bottom:649.407113px;}
.y6f{bottom:651.857170px;}
.y11d{bottom:652.034065px;}
.y14{bottom:652.908386px;}
.yae{bottom:658.858920px;}
.yd6{bottom:659.908471px;}
.y153{bottom:662.881819px;}
.y6e{bottom:665.331875px;}
.y13{bottom:667.956698px;}
.y11c{bottom:668.831678px;}
.yad{bottom:675.658034px;}
.y152{bottom:676.180739px;}
.yd5{bottom:676.706085px;}
.y6d{bottom:678.630796px;}
.y12{bottom:683.180810px;}
.y90{bottom:685.107591px;}
.y11b{bottom:685.456342px;}
.y151{bottom:689.655445px;}
.y6c{bottom:692.105502px;}
.yac{bottom:692.455647px;}
.yd4{bottom:693.505198px;}
.y11{bottom:698.230472px;}
.y3d{bottom:698.230802px;}
.y11a{bottom:702.255455px;}
.y150{bottom:703.128741px;}
.y6b{bottom:705.580208px;}
.yab{bottom:709.080310px;}
.yd3{bottom:710.304311px;}
.y8f{bottom:712.928114px;}
.y10{bottom:713.280134px;}
.y14f{bottom:716.429071px;}
.y119{bottom:719.053068px;}
.y3c{bottom:723.605422px;}
.y8e{bottom:723.954022px;}
.yaa{bottom:725.879424px;}
.yd2{bottom:727.103425px;}
.yf{bottom:728.328446px;}
.y14e{bottom:729.902367px;}
.y6a{bottom:731.127628px;}
.y118{bottom:741.628237px;}
.ya9{bottom:742.677037px;}
.y14d{bottom:743.201288px;}
.ye{bottom:743.552558px;}
.yd1{bottom:743.902538px;}
.y3b{bottom:751.951245px;}
.y14c{bottom:756.675994px;}
.yd{bottom:758.600870px;}
.ya8{bottom:759.477501px;}
.yd0{bottom:760.527202px;}
.y3a{bottom:767.875557px;}
.y117{bottom:769.976909px;}
.y14b{bottom:770.149289px;}
.yc{bottom:773.650532px;}
.ya7{bottom:776.276614px;}
.ycf{bottom:777.324815px;}
.y14a{bottom:783.448210px;}
.y39{bottom:783.799870px;}
.y116{bottom:785.899872px;}
.yb{bottom:788.700194px;}
.ya6{bottom:793.074228px;}
.yce{bottom:794.123928px;}
.y149{bottom:796.966506px;}
.y38{bottom:799.942283px;}
.y115{bottom:801.867835px;}
.ya{bottom:803.966456px;}
.ya5{bottom:809.742541px;}
.y148{bottom:810.441212px;}
.ycd{bottom:810.965342px;}
.y37{bottom:815.866596px;}
.y114{bottom:817.792147px;}
.y9{bottom:819.016118px;}
.y147{bottom:823.740132px;}
.ya4{bottom:826.541654px;}
.ycc{bottom:827.765805px;}
.y36{bottom:831.790909px;}
.y113{bottom:833.715110px;}
.y8{bottom:834.064430px;}
.y146{bottom:837.213428px;}
.ya3{bottom:843.339268px;}
.ycb{bottom:844.564919px;}
.y35{bottom:847.715221px;}
.y7{bottom:849.114092px;}
.y112{bottom:849.639423px;}
.y145{bottom:850.688134px;}
.ya2{bottom:860.139731px;}
.yca{bottom:861.188232px;}
.y34{bottom:863.638184px;}
.y144{bottom:863.987054px;}
.y6{bottom:864.336705px;}
.y111{bottom:865.563736px;}
.y8d{bottom:869.413789px;}
.ya1{bottom:876.235794px;}
.y143{bottom:877.461760px;}
.yc9{bottom:877.638610px;}
.y69{bottom:878.686796px;}
.y110{bottom:881.488048px;}
.y8c{bottom:886.212902px;}
.ya0{bottom:889.534715px;}
.y142{bottom:890.936466px;}
.yc8{bottom:892.861222px;}
.y10f{bottom:897.411011px;}
.y9f{bottom:903.009421px;}
.y8b{bottom:903.010516px;}
.y68{bottom:904.061116px;}
.y141{bottom:904.235387px;}
.yc7{bottom:907.559359px;}
.y10e{bottom:913.335324px;}
.y140{bottom:917.707272px;}
.y8a{bottom:919.809629px;}
.y67{bottom:919.985429px;}
.yc6{bottom:920.858280px;}
.y9e{bottom:925.058088px;}
.y10d{bottom:929.259637px;}
.y13f{bottom:931.181978px;}
.yc5{bottom:931.881789px;}
.y9d{bottom:935.382792px;}
.y66{bottom:935.908392px;}
.y89{bottom:936.434292px;}
.y13e{bottom:944.480899px;}
.y10c{bottom:945.182599px;}
.y65{bottom:951.832705px;}
.y88{bottom:953.231906px;}
.y13d{bottom:957.955605px;}
.y5{bottom:957.956430px;}
.y10b{bottom:967.056217px;}
.y64{bottom:967.757017px;}
.y87{bottom:970.031019px;}
.y13c{bottom:971.430310px;}
.y4{bottom:980.705328px;}
.y63{bottom:983.679980px;}
.y13b{bottom:984.729231px;}
.y86{bottom:986.830133px;}
.y10a{bottom:995.579190px;}
.y13a{bottom:998.202527px;}
.y62{bottom:999.604293px;}
.y3{bottom:1003.280346px;}
.y85{bottom:1003.629246px;}
.y139{bottom:1011.677233px;}
.y109{bottom:1012.378303px;}
.y61{bottom:1015.528606px;}
.y84{bottom:1020.428360px;}
.y138{bottom:1024.976153px;}
.y108{bottom:1029.177417px;}
.y60{bottom:1031.452918px;}
.y137{bottom:1038.450859px;}
.y2{bottom:1043.555378px;}
.y107{bottom:1045.830280px;}
.y83{bottom:1045.830880px;}
.y5f{bottom:1047.405431px;}
.y136{bottom:1051.953690px;}
.y106{bottom:1062.629393px;}
.y82{bottom:1062.629993px;}
.y5e{bottom:1063.328394px;}
.y135{bottom:1065.252610px;}
.h12{height:12.598596px;}
.h13{height:25.198596px;}
.h11{height:30.639730px;}
.h15{height:32.562187px;}
.h9{height:32.585086px;}
.h5{height:35.578684px;}
.he{height:36.475841px;}
.hc{height:39.372376px;}
.hd{height:39.373742px;}
.h8{height:40.338228px;}
.h6{height:40.366596px;}
.h7{height:40.367196px;}
.h14{height:40.368996px;}
.hb{height:41.530580px;}
.h4{height:44.743658px;}
.hf{height:46.572042px;}
.h3{height:51.304281px;}
.ha{height:79.003080px;}
.h10{height:88.053840px;}
.h2{height:97.269076px;}
.h1{height:1155.240000px;}
.h0{height:1263.000000px;}
.w3{width:61.104240px;}
.w4{width:65.446920px;}
.w5{width:66.495960px;}
.w6{width:69.121440px;}
.w7{width:100.268280px;}
.w2{width:752.461200px;}
.w1{width:892.440000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x20{left:8.745425px;}
.x21{left:12.775478px;}
.x24{left:17.674367px;}
.x23{left:19.249368px;}
.x1e{left:21.200785px;}
.x25{left:23.098266px;}
.x26{left:24.324517px;}
.x2c{left:26.425092px;}
.x2d{left:27.822847px;}
.x2b{left:29.925442px;}
.x30{left:35.872359px;}
.x2f{left:44.096360px;}
.x6{left:66.146123px;}
.x2a{left:78.045643px;}
.xe{left:79.261935px;}
.x35{left:84.864593px;}
.x5{left:85.913004px;}
.x8{left:87.144070px;}
.x11{left:99.253279px;}
.x1{left:106.602235px;}
.x4{left:118.328030px;}
.x2{left:188.666851px;}
.x7{left:193.041154px;}
.x32{left:203.190763px;}
.x33{left:211.940120px;}
.x3{left:221.389677px;}
.x12{left:246.587642px;}
.x19{left:248.163199px;}
.x1b{left:249.562700px;}
.x10{left:332.025266px;}
.x1a{left:403.946015px;}
.xf{left:424.944340px;}
.x9{left:459.417776px;}
.x1c{left:474.319879px;}
.x14{left:477.645382px;}
.x34{left:479.216408px;}
.xd{left:480.445884px;}
.x31{left:487.969890px;}
.x15{left:501.618401px;}
.x17{left:517.717314px;}
.x1f{left:522.090000px;}
.x1d{left:525.942526px;}
.x18{left:546.591437px;}
.x2e{left:549.213439px;}
.xa{left:552.192400px;}
.x22{left:588.236400px;}
.x16{left:639.860012px;}
.xc{left:642.831604px;}
.x27{left:655.477200px;}
.x29{left:725.472000px;}
.x28{left:747.869098px;}
.x13{left:804.740335px;}
.xb{left:823.989749px;}
@media print{
.v2{vertical-align:-20.530043pt;}
.v3{vertical-align:-4.973871pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.052814pt;}
.v1{vertical-align:20.530043pt;}
.ls7{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.001120pt;}
.ls0{letter-spacing:0.001493pt;}
.ls1b{letter-spacing:0.004240pt;}
.ls15{letter-spacing:0.023405pt;}
.ls17{letter-spacing:0.046427pt;}
.lsf{letter-spacing:0.048560pt;}
.ls3{letter-spacing:0.119512pt;}
.ls9{letter-spacing:0.134560pt;}
.lse{letter-spacing:0.177507pt;}
.ls14{letter-spacing:0.190371pt;}
.ls12{letter-spacing:0.195385pt;}
.ls2{letter-spacing:0.209214pt;}
.ls5{letter-spacing:0.283187pt;}
.ls18{letter-spacing:0.306987pt;}
.ls1a{letter-spacing:0.311947pt;}
.ls19{letter-spacing:0.316960pt;}
.lsa{letter-spacing:0.331653pt;}
.ls13{letter-spacing:0.421075pt;}
.ls16{letter-spacing:7.423819pt;}
.lsb{letter-spacing:8.638593pt;}
.lsd{letter-spacing:9.283821pt;}
.ls6{letter-spacing:11.748676pt;}
.ls8{letter-spacing:15.483612pt;}
.ls1{letter-spacing:26.083834pt;}
.ls4{letter-spacing:55.323857pt;}
.ls11{letter-spacing:89.821475pt;}
.lsc{letter-spacing:575.828194pt;}
.ws2{word-spacing:-12.910250pt;}
.ws1{word-spacing:-11.665889pt;}
.ws3{word-spacing:-10.421528pt;}
.ws6{word-spacing:-9.799355pt;}
.ws0{word-spacing:-9.021621pt;}
.ws4{word-spacing:-8.399447pt;}
.ws7{word-spacing:-6.532899pt;}
.ws5{word-spacing:0.000000pt;}
._1c{margin-left:-4.341768pt;}
._e{margin-left:-2.877532pt;}
._f{margin-left:-1.889162pt;}
._0{margin-left:-0.902128pt;}
._1{width:1.014297pt;}
._7{width:2.239493pt;}
._6{width:3.173122pt;}
._8{width:4.479702pt;}
._18{width:5.463643pt;}
._19{width:6.536072pt;}
._1a{width:8.293450pt;}
._13{width:9.634355pt;}
._12{width:11.261517pt;}
._4{width:13.030632pt;}
._3{width:14.419184pt;}
._2{width:15.702630pt;}
._1d{width:16.708323pt;}
._15{width:17.621369pt;}
._14{width:18.724897pt;}
._1b{width:19.906325pt;}
._25{width:21.514879pt;}
._23{width:22.482437pt;}
._11{width:23.445015pt;}
._10{width:24.371149pt;}
._5{width:26.131634pt;}
._a{width:27.298091pt;}
._9{width:28.278119pt;}
._24{width:29.171524pt;}
._d{width:30.098269pt;}
._c{width:31.077210pt;}
._17{width:32.189772pt;}
._16{width:33.184001pt;}
._26{width:34.431847pt;}
._b{width:36.911291pt;}
._2c{width:39.641046pt;}
._2b{width:40.723354pt;}
._22{width:44.152497pt;}
._30{width:64.757589pt;}
._2f{width:77.306650pt;}
._2e{width:84.184680pt;}
._31{width:106.889556pt;}
._2d{width:127.747546pt;}
._28{width:180.748458pt;}
._27{width:188.053289pt;}
._29{width:207.652071pt;}
._2a{width:214.652338pt;}
._1f{width:638.050392pt;}
._1e{width:645.509465pt;}
._21{width:647.381172pt;}
._20{width:1285.220392pt;}
.fs9{font-size:26.131594pt;}
.fs6{font-size:33.597787pt;}
.fs3{font-size:36.086482pt;}
.fs8{font-size:39.197418pt;}
.fs5{font-size:41.686113pt;}
.fs4{font-size:46.663557pt;}
.fs1{font-size:51.641001pt;}
.fs7{font-size:51.848415pt;}
.fs2{font-size:57.240579pt;}
.fs0{font-size:124.436366pt;}
.y0{bottom:0.000000pt;}
.yf6{bottom:2.177055pt;}
.yf3{bottom:2.177211pt;}
.yff{bottom:2.178031pt;}
.yfb{bottom:2.178157pt;}
.yfd{bottom:2.178254pt;}
.y104{bottom:2.179373pt;}
.y5d{bottom:6.362353pt;}
.y101{bottom:7.778124pt;}
.yf8{bottom:7.778161pt;}
.yf2{bottom:13.375967pt;}
.y103{bottom:13.378128pt;}
.yfa{bottom:13.378166pt;}
.y5c{bottom:23.861167pt;}
.yf1{bottom:24.575976pt;}
.yec{bottom:30.175967pt;}
.yf0{bottom:35.774731pt;}
.yea{bottom:35.775971pt;}
.y5b{bottom:41.359981pt;}
.yeb{bottom:41.375976pt;}
.yef{bottom:46.974740pt;}
.y1{bottom:48.000000pt;}
.yee{bottom:58.017243pt;}
.y5a{bottom:58.858795pt;}
.y59{bottom:67.763840pt;}
.yed{bottom:69.255998pt;}
.yc4{bottom:104.489455pt;}
.y58{bottom:104.956789pt;}
.y33{bottom:107.757858pt;}
.y81{bottom:107.912658pt;}
.yc3{bottom:119.110800pt;}
.y57{bottom:119.111734pt;}
.y105{bottom:119.578801pt;}
.y32{bottom:121.911603pt;}
.y80{bottom:122.688937pt;}
.yc2{bottom:129.995076pt;}
.y56{bottom:133.261745pt;}
.y31{bottom:136.061614pt;}
.y7f{bottom:137.616415pt;}
.y102{bottom:140.105484pt;}
.y55{bottom:147.415490pt;}
.y9c{bottom:149.593691pt;}
.y30{bottom:150.215359pt;}
.y7e{bottom:152.548960pt;}
.y9b{bottom:158.769952pt;}
.y54{bottom:161.570434pt;}
.y2f{bottom:164.370303pt;}
.y7d{bottom:167.481506pt;}
.y53{bottom:175.725379pt;}
.y2e{bottom:178.525248pt;}
.y100{bottom:180.327360pt;}
.y7c{bottom:181.790757pt;}
.yf9{bottom:186.769521pt;}
.y52{bottom:189.880324pt;}
.y2d{bottom:192.835259pt;}
.y7b{bottom:193.612020pt;}
.yfe{bottom:203.348800pt;}
.y51{bottom:204.034068pt;}
.y7a{bottom:205.589536pt;}
.y2c{bottom:206.990204pt;}
.yfc{bottom:215.169920pt;}
.y79{bottom:217.565799pt;}
.y50{bottom:218.189013pt;}
.y2b{bottom:221.145149pt;}
.yf7{bottom:226.991360pt;}
.y78{bottom:227.210220pt;}
.y2a{bottom:235.300093pt;}
.y4f{bottom:240.121564pt;}
.yf4{bottom:249.609571pt;}
.yf5{bottom:250.012480pt;}
.y4e{bottom:254.275308pt;}
.y29{bottom:257.230111pt;}
.ye9{bottom:261.833600pt;}
.y4d{bottom:268.430253pt;}
.y28{bottom:271.385056pt;}
.y16b{bottom:275.467872pt;}
.yc1{bottom:279.047195pt;}
.y4c{bottom:282.623998pt;}
.y9a{bottom:283.401252pt;}
.y27{bottom:285.577467pt;}
.y134{bottom:286.977348pt;}
.y99{bottom:295.378768pt;}
.y4b{bottom:296.778942pt;}
.y133{bottom:298.954864pt;}
.y26{bottom:299.732412pt;}
.yc0{bottom:301.756013pt;}
.ye8{bottom:302.533200pt;}
.y98{bottom:307.355031pt;}
.y132{bottom:310.776127pt;}
.y4a{bottom:310.932687pt;}
.ye7{bottom:313.266956pt;}
.y25{bottom:313.887356pt;}
.y16a{bottom:315.286704pt;}
.ybf{bottom:316.688558pt;}
.y97{bottom:319.176294pt;}
.y131{bottom:322.753643pt;}
.y49{bottom:325.087632pt;}
.y169{bottom:326.797967pt;}
.y24{bottom:328.042301pt;}
.y96{bottom:328.974968pt;}
.ybe{bottom:331.621104pt;}
.y130{bottom:334.731160pt;}
.y168{bottom:338.774229pt;}
.y48{bottom:339.242576pt;}
.ye6{bottom:340.330177pt;}
.y23{bottom:342.196045pt;}
.y12f{bottom:346.552422pt;}
.ybd{bottom:346.553649pt;}
.y77{bottom:349.352851pt;}
.y167{bottom:350.595492pt;}
.y47{bottom:353.396321pt;}
.ye5{bottom:355.263923pt;}
.y22{bottom:356.351790pt;}
.y12e{bottom:358.528685pt;}
.ybc{bottom:361.329927pt;}
.y166{bottom:362.573008pt;}
.y46{bottom:367.706333pt;}
.ye4{bottom:370.195135pt;}
.y12d{bottom:370.506201pt;}
.y21{bottom:370.506735pt;}
.y76{bottom:372.062869pt;}
.y165{bottom:374.549271pt;}
.ybb{bottom:376.263673pt;}
.y45{bottom:381.861277pt;}
.y12c{bottom:382.327464pt;}
.y20{bottom:384.661679pt;}
.ye3{bottom:385.127680pt;}
.y164{bottom:386.370534pt;}
.y75{bottom:386.994081pt;}
.yba{bottom:391.194885pt;}
.y12b{bottom:394.304981pt;}
.y44{bottom:396.015022pt;}
.y163{bottom:398.348050pt;}
.y1f{bottom:398.815424pt;}
.ye2{bottom:400.060225pt;}
.y74{bottom:401.926627pt;}
.yb9{bottom:406.127430pt;}
.y12a{bottom:406.282497pt;}
.y162{bottom:410.325567pt;}
.ye1{bottom:414.836504pt;}
.y73{bottom:416.860372pt;}
.y129{bottom:418.103760pt;}
.y1e{bottom:420.747975pt;}
.yb8{bottom:421.058642pt;}
.y161{bottom:422.146829pt;}
.y43{bottom:422.614696pt;}
.ye0{bottom:429.769049pt;}
.y128{bottom:430.081276pt;}
.y72{bottom:431.169717pt;}
.y160{bottom:434.124346pt;}
.y42{bottom:434.592213pt;}
.y1d{bottom:434.902920pt;}
.yb7{bottom:435.992387pt;}
.y71{bottom:440.969725pt;}
.y127{bottom:442.056285pt;}
.y95{bottom:442.834966pt;}
.ydf{bottom:444.701594pt;}
.y15f{bottom:446.100609pt;}
.y41{bottom:446.413476pt;}
.y1c{bottom:449.056664pt;}
.y126{bottom:453.877548pt;}
.y94{bottom:454.656229pt;}
.y15e{bottom:457.921871pt;}
.y40{bottom:458.389738pt;}
.yb6{bottom:458.546139pt;}
.yde{bottom:459.634139pt;}
.y1b{bottom:463.211609pt;}
.y125{bottom:465.855064pt;}
.y93{bottom:466.632492pt;}
.y15d{bottom:469.898134pt;}
.y3f{bottom:470.989322pt;}
.yb5{bottom:473.477351pt;}
.ydd{bottom:474.566685pt;}
.y1a{bottom:477.366554pt;}
.y124{bottom:477.832581pt;}
.y92{bottom:478.610008pt;}
.y15c{bottom:481.875651pt;}
.y3e{bottom:482.966825pt;}
.y91{bottom:488.253762pt;}
.yb4{bottom:488.411096pt;}
.ydc{bottom:489.497897pt;}
.y123{bottom:489.653843pt;}
.y19{bottom:491.546565pt;}
.y15b{bottom:493.723167pt;}
.y122{bottom:501.656346pt;}
.yb3{bottom:503.368574pt;}
.ydb{bottom:504.301642pt;}
.y15a{bottom:505.700683pt;}
.y18{bottom:505.701510pt;}
.y121{bottom:513.633863pt;}
.y159{bottom:517.676946pt;}
.yb2{bottom:518.302320pt;}
.yda{bottom:519.232854pt;}
.y17{bottom:519.855254pt;}
.y120{bottom:525.455125pt;}
.y158{bottom:529.498209pt;}
.yb1{bottom:533.077265pt;}
.yd9{bottom:534.166599pt;}
.y16{bottom:539.297803pt;}
.y157{bottom:541.475725pt;}
.y11f{bottom:541.944472pt;}
.yb0{bottom:548.009810pt;}
.yd8{bottom:549.097811pt;}
.y156{bottom:553.451988pt;}
.yd7{bottom:564.030356pt;}
.y11e{bottom:564.653290pt;}
.y155{bottom:565.273251pt;}
.y15{bottom:566.830465pt;}
.y70{bottom:567.452332pt;}
.yaf{bottom:570.719828pt;}
.y154{bottom:577.250767pt;}
.y6f{bottom:579.428595pt;}
.y11d{bottom:579.585835pt;}
.y14{bottom:580.363009pt;}
.yae{bottom:585.652374pt;}
.yd6{bottom:586.585308pt;}
.y153{bottom:589.228283pt;}
.y6e{bottom:591.406112pt;}
.y13{bottom:593.739287pt;}
.y11c{bottom:594.517047pt;}
.yad{bottom:600.584919pt;}
.y152{bottom:601.049546pt;}
.yd5{bottom:601.516520pt;}
.y6d{bottom:603.227374pt;}
.y12{bottom:607.271831pt;}
.y90{bottom:608.984526pt;}
.y11b{bottom:609.294526pt;}
.y151{bottom:613.027062pt;}
.y6c{bottom:615.204891pt;}
.yac{bottom:615.516131pt;}
.yd4{bottom:616.449065pt;}
.y11{bottom:620.649308pt;}
.y3d{bottom:620.649602pt;}
.y11a{bottom:624.227071pt;}
.y150{bottom:625.003325pt;}
.y6b{bottom:627.182407pt;}
.yab{bottom:630.293609pt;}
.yd3{bottom:631.381610pt;}
.y8f{bottom:633.713879pt;}
.y10{bottom:634.026786pt;}
.y14f{bottom:636.825841pt;}
.y119{bottom:639.158283pt;}
.y3c{bottom:643.204820pt;}
.y8e{bottom:643.514687pt;}
.yaa{bottom:645.226155pt;}
.yd2{bottom:646.314155pt;}
.yf{bottom:647.403063pt;}
.y14e{bottom:648.802104pt;}
.y6a{bottom:649.891225pt;}
.y118{bottom:659.225099pt;}
.ya9{bottom:660.157367pt;}
.y14d{bottom:660.623367pt;}
.ye{bottom:660.935607pt;}
.yd1{bottom:661.246701pt;}
.y3b{bottom:668.401106pt;}
.y14c{bottom:672.600883pt;}
.yd{bottom:674.311885pt;}
.ya8{bottom:675.091112pt;}
.yd0{bottom:676.024179pt;}
.y3a{bottom:682.556051pt;}
.y117{bottom:684.423919pt;}
.y14b{bottom:684.577146pt;}
.yc{bottom:687.689362pt;}
.ya7{bottom:690.023657pt;}
.ycf{bottom:690.955391pt;}
.y14a{bottom:696.398409pt;}
.y39{bottom:696.710996pt;}
.y116{bottom:698.577664pt;}
.yb{bottom:701.066839pt;}
.ya6{bottom:704.954869pt;}
.yce{bottom:705.887936pt;}
.y149{bottom:708.414672pt;}
.y38{bottom:711.059807pt;}
.y115{bottom:712.771409pt;}
.ya{bottom:714.636850pt;}
.ya5{bottom:719.771148pt;}
.y148{bottom:720.392188pt;}
.ycd{bottom:720.858082pt;}
.y37{bottom:725.214752pt;}
.y114{bottom:726.926353pt;}
.y9{bottom:728.014327pt;}
.y147{bottom:732.213451pt;}
.ya4{bottom:734.703693pt;}
.ycc{bottom:735.791827pt;}
.y36{bottom:739.369697pt;}
.y113{bottom:741.080098pt;}
.y8{bottom:741.390605pt;}
.y146{bottom:744.189714pt;}
.ya3{bottom:749.634905pt;}
.ycb{bottom:750.724372pt;}
.y35{bottom:753.524641pt;}
.y7{bottom:754.768082pt;}
.y112{bottom:755.235043pt;}
.y145{bottom:756.167230pt;}
.ya2{bottom:764.568650pt;}
.yca{bottom:765.500651pt;}
.y34{bottom:767.678386pt;}
.y144{bottom:767.988493pt;}
.y6{bottom:768.299293pt;}
.y111{bottom:769.389987pt;}
.y8d{bottom:772.812257pt;}
.ya1{bottom:778.876262pt;}
.y143{bottom:779.966009pt;}
.yc9{bottom:780.123209pt;}
.y69{bottom:781.054930pt;}
.y110{bottom:783.544932pt;}
.y8c{bottom:787.744802pt;}
.ya0{bottom:790.697524pt;}
.y142{bottom:791.943525pt;}
.yc8{bottom:793.654420pt;}
.y10f{bottom:797.698677pt;}
.y9f{bottom:802.675041pt;}
.y8b{bottom:802.676014pt;}
.y68{bottom:803.609881pt;}
.y141{bottom:803.764788pt;}
.yc7{bottom:806.719430pt;}
.y10e{bottom:811.853621pt;}
.y140{bottom:815.739798pt;}
.y8a{bottom:817.608559pt;}
.y67{bottom:817.764826pt;}
.yc6{bottom:818.540693pt;}
.y9e{bottom:822.273856pt;}
.y10d{bottom:826.008566pt;}
.y13f{bottom:827.717314pt;}
.yc5{bottom:828.339368pt;}
.y9d{bottom:831.451370pt;}
.y66{bottom:831.918571pt;}
.y89{bottom:832.386038pt;}
.y13e{bottom:839.538577pt;}
.y10c{bottom:840.162311pt;}
.y65{bottom:846.073515pt;}
.y88{bottom:847.317250pt;}
.y13d{bottom:851.516093pt;}
.y5{bottom:851.516826pt;}
.y10b{bottom:859.605526pt;}
.y64{bottom:860.228460pt;}
.y87{bottom:862.249795pt;}
.y13c{bottom:863.493609pt;}
.y4{bottom:871.738069pt;}
.y63{bottom:874.382205pt;}
.y13b{bottom:875.314872pt;}
.y86{bottom:877.182340pt;}
.y10a{bottom:884.959280pt;}
.y13a{bottom:887.291135pt;}
.y62{bottom:888.537149pt;}
.y3{bottom:891.804752pt;}
.y85{bottom:892.114885pt;}
.y139{bottom:899.268651pt;}
.y109{bottom:899.891825pt;}
.y61{bottom:902.692094pt;}
.y84{bottom:907.047431pt;}
.y138{bottom:911.089914pt;}
.y108{bottom:914.824370pt;}
.y60{bottom:916.847039pt;}
.y137{bottom:923.067430pt;}
.y2{bottom:927.604780pt;}
.y107{bottom:929.626915pt;}
.y83{bottom:929.627449pt;}
.y5f{bottom:931.027050pt;}
.y136{bottom:935.069946pt;}
.y106{bottom:944.559461pt;}
.y82{bottom:944.559994pt;}
.y5e{bottom:945.180795pt;}
.y135{bottom:946.891209pt;}
.h12{height:11.198752pt;}
.h13{height:22.398752pt;}
.h11{height:27.235315pt;}
.h15{height:28.944167pt;}
.h9{height:28.964521pt;}
.h5{height:31.625497pt;}
.he{height:32.422970pt;}
.hc{height:34.997668pt;}
.hd{height:34.998882pt;}
.h8{height:35.856203pt;}
.h6{height:35.881418pt;}
.h7{height:35.881952pt;}
.h14{height:35.883552pt;}
.hb{height:36.916071pt;}
.h4{height:39.772141pt;}
.hf{height:41.397370pt;}
.h3{height:45.603805pt;}
.ha{height:70.224960pt;}
.h10{height:78.270080pt;}
.h2{height:86.461401pt;}
.h1{height:1026.880000pt;}
.h0{height:1122.666667pt;}
.w3{width:54.314880pt;}
.w4{width:58.175040pt;}
.w5{width:59.107520pt;}
.w6{width:61.441280pt;}
.w7{width:89.127360pt;}
.w2{width:668.854400pt;}
.w1{width:793.280000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x20{left:7.773711pt;}
.x21{left:11.355980pt;}
.x24{left:15.710548pt;}
.x23{left:17.110549pt;}
.x1e{left:18.845142pt;}
.x25{left:20.531792pt;}
.x26{left:21.621793pt;}
.x2c{left:23.488970pt;}
.x2d{left:24.731419pt;}
.x2b{left:26.600393pt;}
.x30{left:31.886541pt;}
.x2f{left:39.196764pt;}
.x6{left:58.796554pt;}
.x2a{left:69.373905pt;}
.xe{left:70.455053pt;}
.x35{left:75.435194pt;}
.x5{left:76.367114pt;}
.x8{left:77.461395pt;}
.x11{left:88.225137pt;}
.x1{left:94.757542pt;}
.x4{left:105.180471pt;}
.x2{left:167.703867pt;}
.x7{left:171.592137pt;}
.x32{left:180.614011pt;}
.x33{left:188.391217pt;}
.x3{left:196.790824pt;}
.x12{left:219.189015pt;}
.x19{left:220.589510pt;}
.x1b{left:221.833511pt;}
.x10{left:295.133569pt;}
.x1a{left:359.063124pt;}
.xf{left:377.728302pt;}
.x9{left:408.371356pt;}
.x1c{left:421.617671pt;}
.x14{left:424.573673pt;}
.x34{left:425.970141pt;}
.xd{left:427.063008pt;}
.x31{left:433.751014pt;}
.x15{left:445.883023pt;}
.x17{left:460.193168pt;}
.x1f{left:464.080000pt;}
.x1d{left:467.504467pt;}
.x18{left:485.859055pt;}
.x2e{left:488.189724pt;}
.xa{left:490.837689pt;}
.x22{left:522.876800pt;}
.x16{left:568.764455pt;}
.xc{left:571.405870pt;}
.x27{left:582.646400pt;}
.x29{left:644.864000pt;}
.x28{left:664.772532pt;}
.x13{left:715.324743pt;}
.xb{left:732.435333pt;}
}




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