
    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_4f05298ecd38756a3c08cd1e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.926000;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_a09241b419b90ce6b34bd37a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.979000;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_ec78c0abc28bf78efb904b0f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_131a69d1c412f0000530798c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.722000;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_aecf963c00d88fecd0faefa5.woff')format("woff");}.ff5{font-family:ff5;line-height:0.999000;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_49ac8962b8632f3cdad1b1a5.woff')format("woff");}.ff6{font-family:ff6;line-height:1.735000;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_19265ce9231e3c1de975ff53.woff')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_be0011bd6add37cebd508179.woff')format("woff");}.ff8{font-family:ff8;line-height:1.001000;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_aecf963c00d88fecd0faefa5.woff')format("woff");}.ff9{font-family:ff9;line-height:0.999000;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_49ac8962b8632f3cdad1b1a5.woff')format("woff");}.ffa{font-family:ffa;line-height:1.735000;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_19265ce9231e3c1de975ff53.woff')format("woff");}.ffb{font-family:ffb;line-height:1.000000;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_be0011bd6add37cebd508179.woff')format("woff");}.ffc{font-family:ffc;line-height:1.001000;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_3bfe67edc2f166021915f83d.woff')format("woff");}.ffd{font-family:ffd;line-height:1.205000;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;}
.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);}
.m3{transform:matrix(0.105655,0.226577,-0.226577,0.105655,0,0);-ms-transform:matrix(0.105655,0.226577,-0.226577,0.105655,0,0);-webkit-transform:matrix(0.105655,0.226577,-0.226577,0.105655,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(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:-122.094000px;}
.vc{vertical-align:-112.037360px;}
.v14{vertical-align:-107.956800px;}
.v16{vertical-align:-57.120000px;}
.v5{vertical-align:-51.579360px;}
.vf{vertical-align:-47.144698px;}
.v8{vertical-align:-16.654318px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.685200px;}
.v15{vertical-align:17.469600px;}
.vd{vertical-align:24.118496px;}
.v6{vertical-align:26.337000px;}
.v11{vertical-align:28.216800px;}
.v10{vertical-align:37.128000px;}
.va{vertical-align:41.403153px;}
.v9{vertical-align:44.390453px;}
.v4{vertical-align:51.579360px;}
.ve{vertical-align:55.692000px;}
.vb{vertical-align:58.020249px;}
.v12{vertical-align:62.832000px;}
.v7{vertical-align:71.400000px;}
.v13{vertical-align:107.956800px;}
.v1{vertical-align:122.094000px;}
.ls1{letter-spacing:-10.260000px;}
.ls8{letter-spacing:-10.080000px;}
.lsb{letter-spacing:-9.360000px;}
.ls21{letter-spacing:-9.072000px;}
.lsc{letter-spacing:-8.568000px;}
.ls5{letter-spacing:-7.956000px;}
.lsa{letter-spacing:-7.257600px;}
.ls2{letter-spacing:-6.840000px;}
.ls4{letter-spacing:-6.271200px;}
.ls22{letter-spacing:-6.048000px;}
.ls1c{letter-spacing:-0.194819px;}
.ls1d{letter-spacing:-0.155855px;}
.ls1b{letter-spacing:-0.129879px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000360px;}
.ls3{letter-spacing:0.043200px;}
.ls19{letter-spacing:0.049927px;}
.ls17{letter-spacing:0.065409px;}
.ls10{letter-spacing:0.065966px;}
.ls15{letter-spacing:0.068605px;}
.lse{letter-spacing:0.068660px;}
.lsd{letter-spacing:0.086579px;}
.ls14{letter-spacing:0.086635px;}
.ls12{letter-spacing:0.086690px;}
.lsf{letter-spacing:0.109658px;}
.ls16{letter-spacing:0.109713px;}
.ls13{letter-spacing:0.110048px;}
.ls11{letter-spacing:36.295781px;}
.ls9{letter-spacing:122.850000px;}
.ls6{letter-spacing:123.421440px;}
.ls18{letter-spacing:130.901332px;}
.ls1e{letter-spacing:138.347400px;}
.ls1f{letter-spacing:138.347700px;}
.ls23{letter-spacing:148.680000px;}
.ls20{letter-spacing:150.348300px;}
.ls1a{letter-spacing:451.200384px;}
.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;}
}
.ws13{word-spacing:-451.311414px;}
.ws0{word-spacing:-132.354000px;}
.ws7{word-spacing:-130.032000px;}
.wsb{word-spacing:-120.744000px;}
.ws26{word-spacing:-117.028800px;}
.wsd{word-spacing:-110.527200px;}
.ws4{word-spacing:-102.632400px;}
.wsa{word-spacing:-93.623040px;}
.ws1{word-spacing:-88.236000px;}
.ws8{word-spacing:-83.400000px;}
.ws3{word-spacing:-80.898480px;}
.ws27{word-spacing:-78.019200px;}
.ws25{word-spacing:-70.056000px;}
.ws29{word-spacing:-66.720000px;}
.ws6{word-spacing:-60.248160px;}
.ws9{word-spacing:-55.599994px;}
.ws24{word-spacing:-48.927994px;}
.wsc{word-spacing:-46.704000px;}
.ws28{word-spacing:-44.480006px;}
.ws1a{word-spacing:-43.368000px;}
.ws5{word-spacing:-40.165440px;}
.ws23{word-spacing:-28.911994px;}
.ws21{word-spacing:-0.194819px;}
.ws18{word-spacing:-0.159882px;}
.ws1b{word-spacing:-0.129879px;}
.ws11{word-spacing:-0.111917px;}
.ws1e{word-spacing:-0.096111px;}
.ws2{word-spacing:0.000000px;}
.ws1c{word-spacing:32.210064px;}
.ws1d{word-spacing:32.339944px;}
.ws17{word-spacing:33.408693px;}
.ws10{word-spacing:33.408697px;}
.ws22{word-spacing:38.652078px;}
.ws19{word-spacing:48.108530px;}
.ws12{word-spacing:48.108535px;}
.wsf{word-spacing:130.858963px;}
.ws15{word-spacing:425.629611px;}
.wse{word-spacing:471.487291px;}
.ws20{word-spacing:576.004066px;}
.ws1f{word-spacing:762.362994px;}
.ws16{word-spacing:1239.526863px;}
.ws14{word-spacing:1393.244435px;}
._10{margin-left:-4439.610000px;}
._12{margin-left:-451.200384px;}
._f{margin-left:-33.300000px;}
._d{margin-left:-24.398400px;}
._16{margin-left:-21.256080px;}
._c{margin-left:-19.938240px;}
._15{margin-left:-18.865920px;}
._7{margin-left:-17.246640px;}
._e{margin-left:-14.586000px;}
._2{margin-left:-10.260000px;}
._3{margin-left:-9.234000px;}
._a{margin-left:-7.956000px;}
._6{margin-left:-6.270960px;}
._4{margin-left:-4.885920px;}
._0{margin-left:-3.672000px;}
._5{margin-left:-2.376000px;}
._8{margin-left:-1.144800px;}
._9{width:1.447200px;}
._1{width:3.672000px;}
._13{width:451.200942px;}
._11{width:497.058067px;}
._14{width:1141.974303px;}
._b{width:2975.614440px;}
.fc6{color:rgb(227,119,194);}
.fc5{color:rgb(140,86,75);}
.fc3{color:transparent;}
.fc2{color:rgb(255,255,0);}
.fc4{color:rgb(94,94,94);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1a{font-size:77.720153px;}
.fs26{font-size:96.111396px;}
.fs2a{font-size:103.999980px;}
.fs1e{font-size:111.029223px;}
.fs19{font-size:111.029235px;}
.fs21{font-size:111.916943px;}
.fs1d{font-size:111.916955px;}
.fs27{font-size:129.879271px;}
.fs24{font-size:129.879292px;}
.fs4{font-size:132.000000px;}
.fs1f{font-size:133.235090px;}
.fs1b{font-size:133.235105px;}
.fsc{font-size:144.480000px;}
.fs29{font-size:155.855152px;}
.fs23{font-size:156.000000px;}
.fs20{font-size:159.882119px;}
.fs1c{font-size:159.882137px;}
.fs32{font-size:160.000020px;}
.fs16{font-size:168.000000px;}
.fs25{font-size:168.843027px;}
.fs2c{font-size:175.999980px;}
.fs28{font-size:194.818907px;}
.fs12{font-size:199.999980px;}
.fs0{font-size:204.000000px;}
.fs6{font-size:216.000000px;}
.fsb{font-size:216.720000px;}
.fs22{font-size:234.000000px;}
.fs31{font-size:240.000000px;}
.fs9{font-size:252.000000px;}
.fs7{font-size:264.000000px;}
.fsd{font-size:265.200000px;}
.fsa{font-size:266.565600px;}
.fs3{font-size:271.440000px;}
.fs17{font-size:282.000000px;}
.fs2d{font-size:294.000000px;}
.fs30{font-size:295.200000px;}
.fs11{font-size:300.000000px;}
.fs2f{font-size:302.400000px;}
.fs13{font-size:312.000000px;}
.fs5{font-size:313.560000px;}
.fs2b{font-size:324.720000px;}
.fsf{font-size:330.000000px;}
.fs2{font-size:342.000000px;}
.fs14{font-size:362.880000px;}
.fs10{font-size:369.000000px;}
.fs8{font-size:397.800000px;}
.fs18{font-size:428.400000px;}
.fs2e{font-size:453.600000px;}
.fs15{font-size:468.000000px;}
.fse{font-size:504.000000px;}
.fs1{font-size:513.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:10.671105px;}
.ya6{bottom:16.585755px;}
.y59{bottom:31.426678px;}
.y7f{bottom:31.426765px;}
.y9d{bottom:33.531450px;}
.ya8{bottom:33.531465px;}
.y14{bottom:35.128200px;}
.y2a{bottom:44.880150px;}
.y8b{bottom:49.585755px;}
.y58{bottom:63.190986px;}
.y7e{bottom:63.191069px;}
.yc1{bottom:72.788730px;}
.ya5{bottom:85.585755px;}
.y5a{bottom:91.695482px;}
.y60{bottom:92.290253px;}
.y35{bottom:107.128740px;}
.y9c{bottom:108.531450px;}
.y13{bottom:113.128200px;}
.yc{bottom:126.563670px;}
.y3{bottom:126.788730px;}
.y97{bottom:130.585755px;}
.ya7{bottom:132.928635px;}
.y24{bottom:134.397045px;}
.y80{bottom:142.768649px;}
.yc0{bottom:144.959835px;}
.y29{bottom:146.880150px;}
.y86{bottom:148.974636px;}
.y8c{bottom:166.309990px;}
.y5b{bottom:176.481564px;}
.y27{bottom:176.518800px;}
.y9b{bottom:183.531450px;}
.y61{bottom:188.971829px;}
.y2{bottom:198.959850px;}
.ybf{bottom:206.459850px;}
.y5e{bottom:224.296321px;}
.y84{bottom:224.296388px;}
.y81{bottom:234.955879px;}
.ya9{bottom:235.057950px;}
.y23{bottom:250.648800px;}
.y87{bottom:251.505270px;}
.y9a{bottom:258.531450px;}
.y1{bottom:260.459850px;}
.y5c{bottom:261.267701px;}
.y8d{bottom:263.166462px;}
.y62{bottom:285.653252px;}
.y19{bottom:298.515750px;}
.yb1{bottom:322.675200px;}
.y82{bottom:327.143109px;}
.y99{bottom:333.531450px;}
.y5d{bottom:346.053700px;}
.y88{bottom:354.035764px;}
.y17{bottom:363.640800px;}
.y22{bottom:366.900450px;}
.y8e{bottom:377.463667px;}
.y63{bottom:382.334814px;}
.y5f{bottom:392.685602px;}
.y85{bottom:392.685650px;}
.y83{bottom:419.330339px;}
.y31{bottom:425.892900px;}
.ybe{bottom:427.826700px;}
.yb0{bottom:453.505800px;}
.y92{bottom:456.131919px;}
.yf{bottom:468.342450px;}
.y21{bottom:483.152100px;}
.y4b{bottom:484.252508px;}
.y71{bottom:484.252546px;}
.y8f{bottom:491.761034px;}
.ybd{bottom:492.794700px;}
.y94{bottom:502.641407px;}
.y30{bottom:507.102900px;}
.y54{bottom:512.792053px;}
.y4c{bottom:514.553172px;}
.yb{bottom:517.787400px;}
.y72{bottom:521.360164px;}
.y11{bottom:522.342450px;}
.y15{bottom:534.853650px;}
.ybc{bottom:553.395300px;}
.ya3{bottom:557.005800px;}
.y7a{bottom:558.384337px;}
.y4d{bottom:574.907510px;}
.y2f{bottom:581.728650px;}
.y73{bottom:585.572881px;}
.y55{bottom:598.278487px;}
.yaf{bottom:598.444800px;}
.y20{bottom:603.325200px;}
.y90{bottom:606.058402px;}
.y95{bottom:615.795625px;}
.y4e{bottom:635.261987px;}
.y7b{bottom:641.495299px;}
.y52{bottom:645.357843px;}
.y78{bottom:645.357864px;}
.y74{bottom:649.785597px;}
.y1f{bottom:674.421690px;}
.y28{bottom:682.218450px;}
.ya{bottom:682.787400px;}
.y56{bottom:683.765060px;}
.ybb{bottom:690.230700px;}
.ya2{bottom:694.890600px;}
.y4f{bottom:695.616324px;}
.y12{bottom:711.853650px;}
.y75{bottom:713.998174px;}
.y1e{bottom:715.807200px;}
.y91{bottom:720.355606px;}
.yb2{bottom:721.756500px;}
.y7c{bottom:724.606401px;}
.yae{bottom:736.329600px;}
.y2e{bottom:737.022900px;}
.yba{bottom:750.831300px;}
.y50{bottom:755.970662px;}
.y9{bottom:765.287400px;}
.y57{bottom:769.251634px;}
.y76{bottom:778.210891px;}
.y38{bottom:800.764050px;}
.y7d{bottom:807.717502px;}
.y53{bottom:813.747124px;}
.y79{bottom:813.747126px;}
.y51{bottom:816.325139px;}
.y2d{bottom:818.232900px;}
.y93{bottom:831.817669px;}
.y1d{bottom:835.980300px;}
.ya1{bottom:839.829600px;}
.y77{bottom:842.423468px;}
.y8{bottom:847.787400px;}
.yad{bottom:874.214250px;}
.y98{bottom:876.325800px;}
.y96{bottom:877.094700px;}
.y37{bottom:884.764050px;}
.y1c{bottom:890.260650px;}
.y2c{bottom:892.858650px;}
.yb9{bottom:901.946700px;}
.ya0{bottom:903.160200px;}
.y65{bottom:905.314022px;}
.y3e{bottom:905.314030px;}
.y3f{bottom:934.696661px;}
.y45{bottom:935.346389px;}
.y6b{bottom:942.396008px;}
.yb8{bottom:952.634700px;}
.y36{bottom:968.764050px;}
.y10{bottom:969.890100px;}
.y66{bottom:990.445911px;}
.y46{bottom:993.019345px;}
.ye{bottom:996.477450px;}
.y6c{bottom:1006.480423px;}
.y1b{bottom:1010.433600px;}
.yac{bottom:1012.099050px;}
.yb7{bottom:1013.235300px;}
.y3d{bottom:1023.764700px;}
.y40{bottom:1037.048018px;}
.y9f{bottom:1041.045000px;}
.y2b{bottom:1041.568650px;}
.y47{bottom:1050.692302px;}
.y1a{bottom:1064.714100px;}
.y69{bottom:1066.419201px;}
.y43{bottom:1066.419226px;}
.y7{bottom:1070.555400px;}
.y6d{bottom:1070.564838px;}
.y67{bottom:1091.890647px;}
.y3c{bottom:1098.764700px;}
.y48{bottom:1108.365259px;}
.y6e{bottom:1134.649113px;}
.y41{bottom:1139.399235px;}
.yab{bottom:1142.929800px;}
.yb6{bottom:1150.070700px;}
.y49{bottom:1166.038215px;}
.y3b{bottom:1173.764700px;}
.y9e{bottom:1178.929800px;}
.y68{bottom:1193.335383px;}
.y6{bottom:1196.099550px;}
.y6f{bottom:1198.733528px;}
.yb5{bottom:1215.038700px;}
.y4a{bottom:1223.711033px;}
.y6a{bottom:1234.808603px;}
.y44{bottom:1234.808646px;}
.y18{bottom:1236.126300px;}
.y42{bottom:1241.750592px;}
.y3a{bottom:1248.764700px;}
.ya4{bottom:1250.834400px;}
.y70{bottom:1262.817943px;}
.y32{bottom:1271.565600px;}
.yb4{bottom:1275.639300px;}
.y25{bottom:1312.187400px;}
.y8a{bottom:1321.602300px;}
.y5{bottom:1321.643550px;}
.y89{bottom:1336.775044px;}
.y64{bottom:1336.775097px;}
.y26{bottom:1416.433800px;}
.yaa{bottom:1428.334200px;}
.y39{bottom:1434.284400px;}
.y33{bottom:1449.754800px;}
.yb3{bottom:1462.072500px;}
.y34{bottom:1474.599300px;}
.y16{bottom:1491.282000px;}
.yd{bottom:1511.601000px;}
.h24{height:83.160888px;}
.h1d{height:83.160897px;}
.h26{height:83.271917px;}
.h1f{height:83.271926px;}
.h25{height:86.047648px;}
.h1e{height:86.047657px;}
.h2e{height:88.806930px;}
.h27{height:99.793083px;}
.h20{height:99.793093px;}
.h5{height:101.640000px;}
.h35{height:111.697290px;}
.hf{height:115.295040px;}
.ha{height:116.444775px;}
.h2c{height:120.008466px;}
.h31{height:120.120000px;}
.h28{height:123.911579px;}
.h39{height:127.680000px;}
.h19{height:129.360000px;}
.h22{height:141.196247px;}
.h29{height:141.846033px;}
.h23{height:141.846048px;}
.h30{height:144.010160px;}
.h21{height:144.183546px;}
.h7{height:146.917969px;}
.h1{height:149.124000px;}
.h2d{height:156.010957px;}
.he{height:166.874400px;}
.h2f{height:180.012670px;}
.h2a{height:180.180000px;}
.h38{height:184.800000px;}
.hd{height:192.460363px;}
.h10{height:193.861200px;}
.hc{height:194.040000px;}
.h8{height:194.444850px;}
.h4{height:198.422640px;}
.h9{height:203.280000px;}
.h37{height:213.134400px;}
.h1a{height:217.140000px;}
.h34{height:226.380000px;}
.h16{height:228.072000px;}
.h6{height:229.212360px;}
.h15{height:231.000000px;}
.h33{height:234.447840px;}
.h13{height:241.230000px;}
.h12{height:253.170000px;}
.h2{height:263.625000px;}
.h17{height:265.265280px;}
.h14{height:266.418000px;}
.hb{height:290.791800px;}
.h1b{height:313.160400px;}
.h36{height:331.581600px;}
.h18{height:342.108000px;}
.h11{height:368.424000px;}
.h3{height:375.003000px;}
.h32{height:411.697350px;}
.h2b{height:876.571950px;}
.h1c{height:1392.616650px;}
.h0{height:1620.000000px;}
.w8{width:289.297350px;}
.w3{width:645.032850px;}
.w7{width:801.221700px;}
.w2{width:1042.523850px;}
.w4{width:1051.210200px;}
.w5{width:1203.612450px;}
.w6{width:1787.611500px;}
.w1{width:1803.408000px;}
.w0{width:2880.000000px;}
.x0{left:0.000000px;}
.xc{left:19.972395px;}
.x50{left:21.961038px;}
.x5a{left:30.769350px;}
.x61{left:35.752755px;}
.x63{left:39.627645px;}
.x29{left:44.171364px;}
.x4f{left:47.294962px;}
.x57{left:51.842850px;}
.x23{left:56.901363px;}
.x62{left:61.803645px;}
.x21{left:69.389748px;}
.x17{left:76.640100px;}
.x28{left:78.248823px;}
.x22{left:90.978821px;}
.x59{left:98.966850px;}
.x65{left:106.453125px;}
.xb{left:122.209455px;}
.x5b{left:145.019850px;}
.x1c{left:148.574190px;}
.x58{left:154.406850px;}
.x24{left:156.696687px;}
.x1b{left:162.956250px;}
.x1f{left:168.968400px;}
.x34{left:191.048538px;}
.x3d{left:194.919811px;}
.x20{left:200.739429px;}
.x66{left:214.453200px;}
.x3e{left:235.077526px;}
.x31{left:236.844041px;}
.x7{left:248.205300px;}
.x10{left:258.700350px;}
.x3f{left:295.050270px;}
.x2d{left:315.086094px;}
.x16{left:321.747600px;}
.x40{left:340.539316px;}
.x1d{left:397.333500px;}
.x3{left:403.296000px;}
.xd{left:406.897395px;}
.x51{left:408.682443px;}
.x5e{left:430.422150px;}
.x41{left:444.862030px;}
.x5{left:484.348800px;}
.x64{left:485.946900px;}
.x35{left:492.780664px;}
.x32{left:498.485703px;}
.x2f{left:517.175547px;}
.x6a{left:527.681550px;}
.x18{left:529.453200px;}
.x12{left:538.633050px;}
.x3c{left:546.194550px;}
.x5c{left:547.453050px;}
.x13{left:574.453200px;}
.x6b{left:590.681550px;}
.x19{left:592.453200px;}
.x42{left:595.441974px;}
.x26{left:623.771031px;}
.x2a{left:636.501043px;}
.x43{left:641.315112px;}
.x27{left:645.360132px;}
.x2b{left:658.090145px;}
.xf{left:666.456900px;}
.x44{left:699.764689px;}
.x36{left:721.477892px;}
.x2c{left:723.808081px;}
.x25{left:767.850823px;}
.x33{left:795.563721px;}
.x37{left:818.492677px;}
.x4{left:832.512000px;}
.x45{left:880.563219px;}
.x2e{left:882.197487px;}
.x38{left:888.562424px;}
.xa{left:918.180750px;}
.x15{left:943.152750px;}
.x46{left:965.225389px;}
.x2{left:970.480500px;}
.x5d{left:1027.035000px;}
.x39{left:1038.097060px;}
.x56{left:1039.389150px;}
.x3a{left:1042.921500px;}
.x47{left:1099.296883px;}
.x48{left:1147.237630px;}
.x69{left:1161.792000px;}
.x49{left:1204.900772px;}
.x4a{left:1258.755751px;}
.x4b{left:1319.471909px;}
.x1{left:1367.056500px;}
.x4c{left:1377.134888px;}
.x30{left:1423.107000px;}
.x53{left:1501.015483px;}
.x4d{left:1502.431261px;}
.x4e{left:1544.322523px;}
.x52{left:1620.051829px;}
.xe{left:1749.952500px;}
.x54{left:2009.058000px;}
.x9{left:2034.417000px;}
.x6{left:2077.818000px;}
.x11{left:2091.427500px;}
.x8{left:2275.800000px;}
.x1a{left:2312.688000px;}
.x14{left:2368.627500px;}
.x55{left:2374.992000px;}
.x1e{left:2379.337500px;}
.x5f{left:2464.992000px;}
.x3b{left:2545.992000px;}
.x67{left:2558.548500px;}
.x60{left:2569.992000px;}
.x68{left:2594.671500px;}
@media print{
.v2{vertical-align:-108.528000pt;}
.vc{vertical-align:-99.588764pt;}
.v14{vertical-align:-95.961600pt;}
.v16{vertical-align:-50.773333pt;}
.v5{vertical-align:-45.848320pt;}
.vf{vertical-align:-41.906398pt;}
.v8{vertical-align:-14.803839pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.942400pt;}
.v15{vertical-align:15.528533pt;}
.vd{vertical-align:21.438663pt;}
.v6{vertical-align:23.410667pt;}
.v11{vertical-align:25.081600pt;}
.v10{vertical-align:33.002667pt;}
.va{vertical-align:36.802803pt;}
.v9{vertical-align:39.458180pt;}
.v4{vertical-align:45.848320pt;}
.ve{vertical-align:49.504000pt;}
.vb{vertical-align:51.573555pt;}
.v12{vertical-align:55.850667pt;}
.v7{vertical-align:63.466667pt;}
.v13{vertical-align:95.961600pt;}
.v1{vertical-align:108.528000pt;}
.ls1{letter-spacing:-9.120000pt;}
.ls8{letter-spacing:-8.960000pt;}
.lsb{letter-spacing:-8.320000pt;}
.ls21{letter-spacing:-8.064000pt;}
.lsc{letter-spacing:-7.616000pt;}
.ls5{letter-spacing:-7.072000pt;}
.lsa{letter-spacing:-6.451200pt;}
.ls2{letter-spacing:-6.080000pt;}
.ls4{letter-spacing:-5.574400pt;}
.ls22{letter-spacing:-5.376000pt;}
.ls1c{letter-spacing:-0.173172pt;}
.ls1d{letter-spacing:-0.138538pt;}
.ls1b{letter-spacing:-0.115448pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000320pt;}
.ls3{letter-spacing:0.038400pt;}
.ls19{letter-spacing:0.044379pt;}
.ls17{letter-spacing:0.058141pt;}
.ls10{letter-spacing:0.058636pt;}
.ls15{letter-spacing:0.060982pt;}
.lse{letter-spacing:0.061031pt;}
.lsd{letter-spacing:0.076959pt;}
.ls14{letter-spacing:0.077009pt;}
.ls12{letter-spacing:0.077058pt;}
.lsf{letter-spacing:0.097473pt;}
.ls16{letter-spacing:0.097523pt;}
.ls13{letter-spacing:0.097820pt;}
.ls11{letter-spacing:32.262917pt;}
.ls9{letter-spacing:109.200000pt;}
.ls6{letter-spacing:109.707947pt;}
.ls18{letter-spacing:116.356740pt;}
.ls1e{letter-spacing:122.975467pt;}
.ls1f{letter-spacing:122.975733pt;}
.ls23{letter-spacing:132.160000pt;}
.ls20{letter-spacing:133.642933pt;}
.ls1a{letter-spacing:401.067008pt;}
.ws13{word-spacing:-401.165701pt;}
.ws0{word-spacing:-117.648000pt;}
.ws7{word-spacing:-115.584000pt;}
.wsb{word-spacing:-107.328000pt;}
.ws26{word-spacing:-104.025600pt;}
.wsd{word-spacing:-98.246400pt;}
.ws4{word-spacing:-91.228800pt;}
.wsa{word-spacing:-83.220480pt;}
.ws1{word-spacing:-78.432000pt;}
.ws8{word-spacing:-74.133333pt;}
.ws3{word-spacing:-71.909760pt;}
.ws27{word-spacing:-69.350400pt;}
.ws25{word-spacing:-62.272000pt;}
.ws29{word-spacing:-59.306667pt;}
.ws6{word-spacing:-53.553920pt;}
.ws9{word-spacing:-49.422217pt;}
.ws24{word-spacing:-43.491551pt;}
.wsc{word-spacing:-41.514667pt;}
.ws28{word-spacing:-39.537783pt;}
.ws1a{word-spacing:-38.549333pt;}
.ws5{word-spacing:-35.702613pt;}
.ws23{word-spacing:-25.699551pt;}
.ws21{word-spacing:-0.173172pt;}
.ws18{word-spacing:-0.142117pt;}
.ws1b{word-spacing:-0.115448pt;}
.ws11{word-spacing:-0.099482pt;}
.ws1e{word-spacing:-0.085432pt;}
.ws2{word-spacing:0.000000pt;}
.ws1c{word-spacing:28.631168pt;}
.ws1d{word-spacing:28.746617pt;}
.ws17{word-spacing:29.696616pt;}
.ws10{word-spacing:29.696619pt;}
.ws22{word-spacing:34.357402pt;}
.ws19{word-spacing:42.763138pt;}
.ws12{word-spacing:42.763142pt;}
.wsf{word-spacing:116.319078pt;}
.ws15{word-spacing:378.337432pt;}
.wse{word-spacing:419.099814pt;}
.ws20{word-spacing:512.003614pt;}
.ws1f{word-spacing:677.655995pt;}
.ws16{word-spacing:1101.801656pt;}
.ws14{word-spacing:1238.439498pt;}
._10{margin-left:-3946.320000pt;}
._12{margin-left:-401.067008pt;}
._f{margin-left:-29.600000pt;}
._d{margin-left:-21.687467pt;}
._16{margin-left:-18.894293pt;}
._c{margin-left:-17.722880pt;}
._15{margin-left:-16.769707pt;}
._7{margin-left:-15.330347pt;}
._e{margin-left:-12.965333pt;}
._2{margin-left:-9.120000pt;}
._3{margin-left:-8.208000pt;}
._a{margin-left:-7.072000pt;}
._6{margin-left:-5.574187pt;}
._4{margin-left:-4.343040pt;}
._0{margin-left:-3.264000pt;}
._5{margin-left:-2.112000pt;}
._8{margin-left:-1.017600pt;}
._9{width:1.286400pt;}
._1{width:3.264000pt;}
._13{width:401.067504pt;}
._11{width:441.829393pt;}
._14{width:1015.088269pt;}
._b{width:2644.990613pt;}
.fs1a{font-size:69.084580pt;}
.fs26{font-size:85.432352pt;}
.fs2a{font-size:92.444427pt;}
.fs1e{font-size:98.692643pt;}
.fs19{font-size:98.692654pt;}
.fs21{font-size:99.481727pt;}
.fs1d{font-size:99.481738pt;}
.fs27{font-size:115.448241pt;}
.fs24{font-size:115.448260pt;}
.fs4{font-size:117.333333pt;}
.fs1f{font-size:118.431191pt;}
.fs1b{font-size:118.431204pt;}
.fsc{font-size:128.426667pt;}
.fs29{font-size:138.537913pt;}
.fs23{font-size:138.666667pt;}
.fs20{font-size:142.117440pt;}
.fs1c{font-size:142.117455pt;}
.fs32{font-size:142.222240pt;}
.fs16{font-size:149.333333pt;}
.fs25{font-size:150.082690pt;}
.fs2c{font-size:156.444427pt;}
.fs28{font-size:173.172362pt;}
.fs12{font-size:177.777760pt;}
.fs0{font-size:181.333333pt;}
.fs6{font-size:192.000000pt;}
.fsb{font-size:192.640000pt;}
.fs22{font-size:208.000000pt;}
.fs31{font-size:213.333333pt;}
.fs9{font-size:224.000000pt;}
.fs7{font-size:234.666667pt;}
.fsd{font-size:235.733333pt;}
.fsa{font-size:236.947200pt;}
.fs3{font-size:241.280000pt;}
.fs17{font-size:250.666667pt;}
.fs2d{font-size:261.333333pt;}
.fs30{font-size:262.400000pt;}
.fs11{font-size:266.666667pt;}
.fs2f{font-size:268.800000pt;}
.fs13{font-size:277.333333pt;}
.fs5{font-size:278.720000pt;}
.fs2b{font-size:288.640000pt;}
.fsf{font-size:293.333333pt;}
.fs2{font-size:304.000000pt;}
.fs14{font-size:322.560000pt;}
.fs10{font-size:328.000000pt;}
.fs8{font-size:353.600000pt;}
.fs18{font-size:380.800000pt;}
.fs2e{font-size:403.200000pt;}
.fs15{font-size:416.000000pt;}
.fse{font-size:448.000000pt;}
.fs1{font-size:456.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:9.485427pt;}
.ya6{bottom:14.742893pt;}
.y59{bottom:27.934825pt;}
.y7f{bottom:27.934902pt;}
.y9d{bottom:29.805733pt;}
.ya8{bottom:29.805747pt;}
.y14{bottom:31.225067pt;}
.y2a{bottom:39.893467pt;}
.y8b{bottom:44.076227pt;}
.y58{bottom:56.169765pt;}
.y7e{bottom:56.169839pt;}
.yc1{bottom:64.701093pt;}
.ya5{bottom:76.076227pt;}
.y5a{bottom:81.507095pt;}
.y60{bottom:82.035780pt;}
.y35{bottom:95.225547pt;}
.y9c{bottom:96.472400pt;}
.y13{bottom:100.558400pt;}
.yc{bottom:112.501040pt;}
.y3{bottom:112.701093pt;}
.y97{bottom:116.076227pt;}
.ya7{bottom:118.158787pt;}
.y24{bottom:119.464040pt;}
.y80{bottom:126.905466pt;}
.yc0{bottom:128.853187pt;}
.y29{bottom:130.560133pt;}
.y86{bottom:132.421898pt;}
.y8c{bottom:147.831102pt;}
.y5b{bottom:156.872501pt;}
.y27{bottom:156.905600pt;}
.y9b{bottom:163.139067pt;}
.y61{bottom:167.974959pt;}
.y2{bottom:176.853200pt;}
.ybf{bottom:183.519867pt;}
.y5e{bottom:199.374508pt;}
.y84{bottom:199.374567pt;}
.y81{bottom:208.849670pt;}
.ya9{bottom:208.940400pt;}
.y23{bottom:222.798933pt;}
.y87{bottom:223.560240pt;}
.y9a{bottom:229.805733pt;}
.y1{bottom:231.519867pt;}
.y5c{bottom:232.237957pt;}
.y8d{bottom:233.925744pt;}
.y62{bottom:253.914001pt;}
.y19{bottom:265.347333pt;}
.yb1{bottom:286.822400pt;}
.y82{bottom:290.793875pt;}
.y99{bottom:296.472400pt;}
.y5d{bottom:307.603289pt;}
.y88{bottom:314.698457pt;}
.y17{bottom:323.236267pt;}
.y22{bottom:326.133733pt;}
.y8e{bottom:335.523259pt;}
.y63{bottom:339.853168pt;}
.y5f{bottom:349.053868pt;}
.y85{bottom:349.053911pt;}
.y83{bottom:372.738079pt;}
.y31{bottom:378.571467pt;}
.ybe{bottom:380.290400pt;}
.yb0{bottom:403.116267pt;}
.y92{bottom:405.450595pt;}
.yf{bottom:416.304400pt;}
.y21{bottom:429.468533pt;}
.y4b{bottom:430.446673pt;}
.y71{bottom:430.446707pt;}
.y8f{bottom:437.120919pt;}
.ybd{bottom:438.039733pt;}
.y94{bottom:446.792362pt;}
.y30{bottom:450.758133pt;}
.y54{bottom:455.815158pt;}
.y4c{bottom:457.380597pt;}
.yb{bottom:460.255467pt;}
.y72{bottom:463.431257pt;}
.y11{bottom:464.304400pt;}
.y15{bottom:475.425467pt;}
.ybc{bottom:491.906933pt;}
.ya3{bottom:495.116267pt;}
.y7a{bottom:496.341633pt;}
.y4d{bottom:511.028898pt;}
.y2f{bottom:517.092133pt;}
.y73{bottom:520.509227pt;}
.y55{bottom:531.803100pt;}
.yaf{bottom:531.950933pt;}
.y20{bottom:536.289067pt;}
.y90{bottom:538.718579pt;}
.y95{bottom:547.373889pt;}
.y4e{bottom:564.677322pt;}
.y7b{bottom:570.218044pt;}
.y52{bottom:573.651416pt;}
.y78{bottom:573.651435pt;}
.y74{bottom:577.587197pt;}
.y1f{bottom:599.485947pt;}
.y28{bottom:606.416400pt;}
.ya{bottom:606.922133pt;}
.y56{bottom:607.791165pt;}
.ybb{bottom:613.538400pt;}
.ya2{bottom:617.680533pt;}
.y4f{bottom:618.325622pt;}
.y12{bottom:632.758800pt;}
.y75{bottom:634.665044pt;}
.y1e{bottom:636.273067pt;}
.y91{bottom:640.316094pt;}
.yb2{bottom:641.561333pt;}
.y7c{bottom:644.094579pt;}
.yae{bottom:654.515200pt;}
.y2e{bottom:655.131467pt;}
.yba{bottom:667.405600pt;}
.y50{bottom:671.973922pt;}
.y9{bottom:680.255467pt;}
.y57{bottom:683.779230pt;}
.y76{bottom:691.743014pt;}
.y38{bottom:711.790267pt;}
.y7d{bottom:717.971113pt;}
.y53{bottom:723.330777pt;}
.y79{bottom:723.330779pt;}
.y51{bottom:725.622346pt;}
.y2d{bottom:727.318133pt;}
.y93{bottom:739.393484pt;}
.y1d{bottom:743.093600pt;}
.ya1{bottom:746.515200pt;}
.y77{bottom:748.820861pt;}
.y8{bottom:753.588800pt;}
.yad{bottom:777.079333pt;}
.y98{bottom:778.956267pt;}
.y96{bottom:779.639733pt;}
.y37{bottom:786.456933pt;}
.y1c{bottom:791.342800pt;}
.y2c{bottom:793.652133pt;}
.yb9{bottom:801.730400pt;}
.ya0{bottom:802.809067pt;}
.y65{bottom:804.723575pt;}
.y3e{bottom:804.723582pt;}
.y3f{bottom:830.841476pt;}
.y45{bottom:831.419012pt;}
.y6b{bottom:837.685340pt;}
.yb8{bottom:846.786400pt;}
.y36{bottom:861.123600pt;}
.y10{bottom:862.124533pt;}
.y66{bottom:880.396365pt;}
.y46{bottom:882.683863pt;}
.ye{bottom:885.757733pt;}
.y6c{bottom:894.649265pt;}
.y1b{bottom:898.163200pt;}
.yac{bottom:899.643600pt;}
.yb7{bottom:900.653600pt;}
.y3d{bottom:910.013067pt;}
.y40{bottom:921.820460pt;}
.y9f{bottom:925.373333pt;}
.y2b{bottom:925.838800pt;}
.y47{bottom:933.948713pt;}
.y1a{bottom:946.412533pt;}
.y69{bottom:947.928179pt;}
.y43{bottom:947.928201pt;}
.y7{bottom:951.604800pt;}
.y6d{bottom:951.613189pt;}
.y67{bottom:970.569464pt;}
.y3c{bottom:976.679733pt;}
.y48{bottom:985.213563pt;}
.y6e{bottom:1008.576990pt;}
.y41{bottom:1012.799320pt;}
.yab{bottom:1015.937600pt;}
.yb6{bottom:1022.285067pt;}
.y49{bottom:1036.478414pt;}
.y3b{bottom:1043.346400pt;}
.y9e{bottom:1047.937600pt;}
.y68{bottom:1060.742562pt;}
.y6{bottom:1063.199600pt;}
.y6f{bottom:1065.540914pt;}
.yb5{bottom:1080.034400pt;}
.y4a{bottom:1087.743140pt;}
.y6a{bottom:1097.607647pt;}
.y44{bottom:1097.607685pt;}
.y18{bottom:1098.778933pt;}
.y42{bottom:1103.778304pt;}
.y3a{bottom:1110.013067pt;}
.ya4{bottom:1111.852800pt;}
.y70{bottom:1122.504838pt;}
.y32{bottom:1130.280533pt;}
.yb4{bottom:1133.901600pt;}
.y25{bottom:1166.388800pt;}
.y8a{bottom:1174.757600pt;}
.y5{bottom:1174.794267pt;}
.y89{bottom:1188.244483pt;}
.y64{bottom:1188.244531pt;}
.y26{bottom:1259.052267pt;}
.yaa{bottom:1269.630400pt;}
.y39{bottom:1274.919467pt;}
.y33{bottom:1288.670933pt;}
.yb3{bottom:1299.620000pt;}
.y34{bottom:1310.754933pt;}
.y16{bottom:1325.584000pt;}
.yd{bottom:1343.645333pt;}
.h24{height:73.920790pt;}
.h1d{height:73.920798pt;}
.h26{height:74.019482pt;}
.h1f{height:74.019490pt;}
.h25{height:76.486798pt;}
.h1e{height:76.486807pt;}
.h2e{height:78.939493pt;}
.h27{height:88.704962pt;}
.h20{height:88.704972pt;}
.h5{height:90.346667pt;}
.h35{height:99.286480pt;}
.hf{height:102.484480pt;}
.ha{height:103.506467pt;}
.h2c{height:106.674192pt;}
.h31{height:106.773333pt;}
.h28{height:110.143625pt;}
.h39{height:113.493333pt;}
.h19{height:114.986667pt;}
.h22{height:125.507775pt;}
.h29{height:126.085363pt;}
.h23{height:126.085376pt;}
.h30{height:128.009031pt;}
.h21{height:128.163152pt;}
.h7{height:130.593750pt;}
.h1{height:132.554667pt;}
.h2d{height:138.676406pt;}
.he{height:148.332800pt;}
.h2f{height:160.011262pt;}
.h2a{height:160.160000pt;}
.h38{height:164.266667pt;}
.hd{height:171.075878pt;}
.h10{height:172.321067pt;}
.hc{height:172.480000pt;}
.h8{height:172.839867pt;}
.h4{height:176.375680pt;}
.h9{height:180.693333pt;}
.h37{height:189.452800pt;}
.h1a{height:193.013333pt;}
.h34{height:201.226667pt;}
.h16{height:202.730667pt;}
.h6{height:203.744320pt;}
.h15{height:205.333333pt;}
.h33{height:208.398080pt;}
.h13{height:214.426667pt;}
.h12{height:225.040000pt;}
.h2{height:234.333333pt;}
.h17{height:235.791360pt;}
.h14{height:236.816000pt;}
.hb{height:258.481600pt;}
.h1b{height:278.364800pt;}
.h36{height:294.739200pt;}
.h18{height:304.096000pt;}
.h11{height:327.488000pt;}
.h3{height:333.336000pt;}
.h32{height:365.953200pt;}
.h2b{height:779.175067pt;}
.h1c{height:1237.881467pt;}
.h0{height:1440.000000pt;}
.w8{width:257.153200pt;}
.w3{width:573.362533pt;}
.w7{width:712.197067pt;}
.w2{width:926.687867pt;}
.w4{width:934.409067pt;}
.w5{width:1069.877733pt;}
.w6{width:1588.988000pt;}
.w1{width:1603.029333pt;}
.w0{width:2560.000000pt;}
.x0{left:0.000000pt;}
.xc{left:17.753240pt;}
.x50{left:19.520922pt;}
.x5a{left:27.350533pt;}
.x61{left:31.780227pt;}
.x63{left:35.224573pt;}
.x29{left:39.263435pt;}
.x4f{left:42.039966pt;}
.x57{left:46.082533pt;}
.x23{left:50.578989pt;}
.x62{left:54.936573pt;}
.x21{left:61.679776pt;}
.x17{left:68.124533pt;}
.x28{left:69.554509pt;}
.x22{left:80.870063pt;}
.x59{left:87.970533pt;}
.x65{left:94.625000pt;}
.xb{left:108.630627pt;}
.x5b{left:128.906533pt;}
.x1c{left:132.065947pt;}
.x58{left:137.250533pt;}
.x24{left:139.285944pt;}
.x1b{left:144.850000pt;}
.x1f{left:150.194133pt;}
.x34{left:169.820923pt;}
.x3d{left:173.262054pt;}
.x20{left:178.435048pt;}
.x66{left:190.625067pt;}
.x3e{left:208.957801pt;}
.x31{left:210.528037pt;}
.x7{left:220.626933pt;}
.x10{left:229.955867pt;}
.x3f{left:262.266907pt;}
.x2d{left:280.076528pt;}
.x16{left:285.997867pt;}
.x40{left:302.701614pt;}
.x1d{left:353.185333pt;}
.x3{left:358.485333pt;}
.xd{left:361.686573pt;}
.x51{left:363.273283pt;}
.x5e{left:382.597467pt;}
.x41{left:395.432916pt;}
.x5{left:430.532267pt;}
.x64{left:431.952800pt;}
.x35{left:438.027256pt;}
.x32{left:443.098403pt;}
.x2f{left:459.711598pt;}
.x6a{left:469.050267pt;}
.x18{left:470.625067pt;}
.x12{left:478.784933pt;}
.x3c{left:485.506267pt;}
.x5c{left:486.624933pt;}
.x13{left:510.625067pt;}
.x6b{left:525.050267pt;}
.x19{left:526.625067pt;}
.x42{left:529.281755pt;}
.x26{left:554.463139pt;}
.x2a{left:565.778705pt;}
.x43{left:570.057877pt;}
.x27{left:573.653451pt;}
.x2b{left:584.969018pt;}
.xf{left:592.406133pt;}
.x44{left:622.013056pt;}
.x36{left:641.313682pt;}
.x2c{left:643.384960pt;}
.x25{left:682.534065pt;}
.x33{left:707.167752pt;}
.x37{left:727.549046pt;}
.x4{left:740.010667pt;}
.x45{left:782.722862pt;}
.x2e{left:784.175544pt;}
.x38{left:789.833265pt;}
.xa{left:816.160667pt;}
.x15{left:838.358000pt;}
.x46{left:857.978124pt;}
.x2{left:862.649333pt;}
.x5d{left:912.920000pt;}
.x39{left:922.752942pt;}
.x56{left:923.901467pt;}
.x3a{left:927.041333pt;}
.x47{left:977.152785pt;}
.x48{left:1019.766783pt;}
.x69{left:1032.704000pt;}
.x49{left:1071.022909pt;}
.x4a{left:1118.894001pt;}
.x4b{left:1172.863919pt;}
.x1{left:1215.161333pt;}
.x4c{left:1224.119900pt;}
.x30{left:1264.984000pt;}
.x53{left:1334.235985pt;}
.x4d{left:1335.494455pt;}
.x4e{left:1372.731131pt;}
.x52{left:1440.046071pt;}
.xe{left:1555.513333pt;}
.x54{left:1785.829333pt;}
.x9{left:1808.370667pt;}
.x6{left:1846.949333pt;}
.x11{left:1859.046667pt;}
.x8{left:2022.933333pt;}
.x1a{left:2055.722667pt;}
.x14{left:2105.446667pt;}
.x55{left:2111.104000pt;}
.x1e{left:2114.966667pt;}
.x5f{left:2191.104000pt;}
.x3b{left:2263.104000pt;}
.x67{left:2274.265333pt;}
.x60{left:2284.437333pt;}
.x68{left:2306.374667pt;}
}




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