
    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_0c01090d081526cf5160b53a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_7d9d6e9f32f7b574db47c290.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.837402;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_bd662d1926bf7ea388b53c7e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.281250;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_e785ad8dabf378680eaa20a9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_89d25f3f6645e0c1287f5aa8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_dfe2ddd7b1aed134fadf27be.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_e7d820166b4d5145553b32df.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_2412518bc3efe0dfa125dbca.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;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_3dac8c5c2e59f178a0c06aa3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.675781;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_55c5009a5d30b71e9e1d5baa.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.908203;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.249527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v2{vertical-align:-31.088400px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.791400px;}
.ls11{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.003483px;}
.ls1{letter-spacing:0.029390px;}
.ls13{letter-spacing:0.062176px;}
.ls1a{letter-spacing:0.168282px;}
.lse{letter-spacing:0.224376px;}
.ls10{letter-spacing:0.252818px;}
.ls7{letter-spacing:0.359542px;}
.ls2{letter-spacing:0.395665px;}
.ls3{letter-spacing:0.443264px;}
.lsd{letter-spacing:0.469111px;}
.lsb{letter-spacing:0.476191px;}
.lsc{letter-spacing:0.476793px;}
.ls15{letter-spacing:0.506406px;}
.lsa{letter-spacing:0.543380px;}
.ls16{letter-spacing:0.565423px;}
.ls6{letter-spacing:0.626372px;}
.ls9{letter-spacing:0.726487px;}
.ls0{letter-spacing:0.727090px;}
.ls5{letter-spacing:0.857078px;}
.ls8{letter-spacing:0.957194px;}
.ls1c{letter-spacing:14.773253px;}
.ls19{letter-spacing:15.202704px;}
.ls1b{letter-spacing:15.984883px;}
.lsf{letter-spacing:17.461213px;}
.ls17{letter-spacing:20.332886px;}
.ls4{letter-spacing:22.781058px;}
.ls18{letter-spacing:26.005435px;}
.ls14{letter-spacing:28.724123px;}
.ls1d{letter-spacing:36.523360px;}
.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;}
}
.ws9{word-spacing:-112.863780px;}
.ws5{word-spacing:-90.245062px;}
.ws6{word-spacing:-66.600059px;}
.ws4{word-spacing:-66.379936px;}
.ws3{word-spacing:-66.342066px;}
.ws8{word-spacing:-65.755717px;}
.ws1{word-spacing:-65.438408px;}
.ws2{word-spacing:-64.987915px;}
.ws7{word-spacing:-64.819999px;}
.wsc{word-spacing:-33.880762px;}
.ws2a{word-spacing:-16.895775px;}
.ws17{word-spacing:-15.606286px;}
.wsf{word-spacing:-15.544110px;}
.wsd{word-spacing:-14.868284px;}
.ws0{word-spacing:-14.023494px;}
.ws14{word-spacing:-12.671832px;}
.wsa{word-spacing:-11.996001px;}
.ws1d{word-spacing:-11.455336px;}
.ws1c{word-spacing:-11.320170px;}
.ws16{word-spacing:-1.567177px;}
.ws1f{word-spacing:-0.114550px;}
.ws15{word-spacing:-0.023561px;}
.ws10{word-spacing:0.000000px;}
.wsb{word-spacing:0.206884px;}
.ws23{word-spacing:0.328993px;}
.ws20{word-spacing:0.338232px;}
.ws13{word-spacing:0.445603px;}
.ws1a{word-spacing:0.499839px;}
.ws28{word-spacing:0.630092px;}
.ws24{word-spacing:0.641219px;}
.ws12{word-spacing:0.655810px;}
.ws25{word-spacing:0.848194px;}
.ws1e{word-spacing:0.872627px;}
.ws2c{word-spacing:0.968525px;}
.ws1b{word-spacing:0.973107px;}
.ws19{word-spacing:1.026441px;}
.ws18{word-spacing:1.151511px;}
.ws26{word-spacing:2.252925px;}
.ws2d{word-spacing:8.934412px;}
.ws21{word-spacing:13.497506px;}
.ws2b{word-spacing:16.530231px;}
.ws29{word-spacing:18.273517px;}
.ws27{word-spacing:18.440502px;}
.ws11{word-spacing:21.309788px;}
.wse{word-spacing:22.405917px;}
.ws22{word-spacing:46.936242px;}
._1{margin-left:-1.570631px;}
._0{width:1.121880px;}
._3{width:2.337024px;}
._c{width:4.188801px;}
._15{width:5.533703px;}
._a{width:6.731277px;}
._1e{width:7.732370px;}
._9{width:8.739411px;}
._6{width:9.928634px;}
._16{width:10.955409px;}
._13{width:12.908339px;}
._19{width:14.003401px;}
._12{width:15.399568px;}
._11{width:16.713380px;}
._5{width:18.245637px;}
._4{width:20.051358px;}
._b{width:21.445773px;}
._8{width:23.101308px;}
._10{width:24.434804px;}
._7{width:26.124347px;}
._e{width:27.264297px;}
._f{width:28.409668px;}
._d{width:29.675881px;}
._14{width:30.690930px;}
._1a{width:32.244160px;}
._17{width:33.656421px;}
._18{width:34.820890px;}
._1b{width:36.929875px;}
._21{width:38.280809px;}
._1c{width:39.551922px;}
._1d{width:41.747510px;}
._20{width:46.165082px;}
._22{width:56.698098px;}
._1f{width:61.015830px;}
._2{width:1738.062188px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:45.280680px;}
.fs5{font-size:47.984004px;}
.fsb{font-size:50.687328px;}
.fs1{font-size:53.390652px;}
.fs0{font-size:56.093976px;}
.fs8{font-size:59.473134px;}
.fsa{font-size:62.176440px;}
.fs7{font-size:67.583100px;}
.fs4{font-size:72.989760px;}
.fs9{font-size:79.072260px;}
.fs3{font-size:89.885520px;}
.fs2{font-size:112.863780px;}
.yc9{bottom:-81.775650px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.891540px;}
.yc8{bottom:1.182750px;}
.y64{bottom:7.096200px;}
.y6e{bottom:8.954700px;}
.y5e{bottom:9.292650px;}
.y6c{bottom:9.292800px;}
.y6a{bottom:9.461550px;}
.yfb{bottom:17.064750px;}
.yff{bottom:17.233800px;}
.yfc{bottom:17.571600px;}
.y100{bottom:17.740650px;}
.yc7{bottom:28.215900px;}
.y102{bottom:33.284700px;}
.y105{bottom:33.453600px;}
.y103{bottom:33.791550px;}
.y106{bottom:33.960450px;}
.yc6{bottom:36.663900px;}
.y62{bottom:52.039050px;}
.yc5{bottom:66.062550px;}
.y3{bottom:108.639840px;}
.y12d{bottom:126.380400px;}
.yf7{bottom:132.800805px;}
.ya3{bottom:134.659335px;}
.y59{bottom:136.179960px;}
.y29{bottom:138.207450px;}
.y12c{bottom:144.120975px;}
.y5c{bottom:144.965760px;}
.y94{bottom:146.824305px;}
.yf6{bottom:150.710310px;}
.ya2{bottom:152.568810px;}
.y58{bottom:153.920460px;}
.y28{bottom:155.948010px;}
.y12b{bottom:162.030510px;}
.y93{bottom:164.564910px;}
.yf5{bottom:168.450960px;}
.ya1{bottom:170.309460px;}
.y57{bottom:171.661110px;}
.y27{bottom:173.688510px;}
.yc3{bottom:173.688600px;}
.yc1{bottom:176.054010px;}
.yf4{bottom:186.191460px;}
.y104{bottom:186.238200px;}
.ya0{bottom:188.049960px;}
.y56{bottom:189.570660px;}
.y70{bottom:190.800000px;}
.y26{bottom:191.598060px;}
.yc0{bottom:193.794510px;}
.y12a{bottom:197.680560px;}
.y92{bottom:201.904560px;}
.yf3{bottom:204.101010px;}
.y9f{bottom:205.959510px;}
.y55{bottom:207.311160px;}
.y25{bottom:209.338710px;}
.ybf{bottom:211.704060px;}
.y129{bottom:215.421210px;}
.y54{bottom:225.220710px;}
.y24{bottom:227.248260px;}
.ybe{bottom:229.444560px;}
.y128{bottom:233.161710px;}
.y91{bottom:240.257910px;}
.y9e{bottom:241.609560px;}
.y6f{bottom:241.656300px;}
.y53{bottom:242.961210px;}
.y23{bottom:244.988760px;}
.yf2{bottom:245.664660px;}
.ybd{bottom:247.185210px;}
.y101{bottom:247.569900px;}
.y127{bottom:251.071260px;}
.y90{bottom:257.998560px;}
.y9d{bottom:259.350210px;}
.y22{bottom:262.898310px;}
.ybc{bottom:265.094760px;}
.y8f{bottom:275.739060px;}
.y21{bottom:280.638810px;}
.ybb{bottom:282.835260px;}
.y52{bottom:284.018010px;}
.y126{bottom:286.721310px;}
.yee{bottom:289.931460px;}
.y6d{bottom:293.526450px;}
.y8e{bottom:293.648610px;}
.y9c{bottom:295.000260px;}
.y20{bottom:298.379460px;}
.yba{bottom:300.744810px;}
.y125{bottom:304.461960px;}
.yed{bottom:307.672110px;}
.yfe{bottom:308.732550px;}
.y155{bottom:309.192660px;}
.y9b{bottom:312.740760px;}
.y1f{bottom:316.288860px;}
.yb9{bottom:318.485460px;}
.y124{bottom:322.371360px;}
.y51{bottom:323.892060px;}
.y154{bottom:325.412610px;}
.yec{bottom:325.581660px;}
.y8d{bottom:330.988260px;}
.yb8{bottom:336.225960px;}
.y153{bottom:341.632560px;}
.y50{bottom:341.801610px;}
.yeb{bottom:343.322160px;}
.y6b{bottom:346.072200px;}
.y9a{bottom:348.390960px;}
.yfd{bottom:353.844300px;}
.yb7{bottom:354.135510px;}
.y1e{bottom:357.345660px;}
.y152{bottom:357.852510px;}
.y4f{bottom:359.542110px;}
.yf1{bottom:361.062810px;}
.yea{bottom:361.231710px;}
.y123{bottom:363.428160px;}
.y99{bottom:366.131460px;}
.y8c{bottom:369.172710px;}
.yb6{bottom:371.876010px;}
.y151{bottom:374.072460px;}
.y4e{bottom:377.282760px;}
.ye9{bottom:378.972210px;}
.y8b{bottom:387.082260px;}
.yb5{bottom:389.785560px;}
.y150{bottom:390.123510px;}
.y4d{bottom:395.192160px;}
.y1d{bottom:395.530110px;}
.ye8{bottom:396.712860px;}
.y69{bottom:398.956050px;}
.y98{bottom:400.092060px;}
.y122{bottom:403.302210px;}
.y8a{bottom:404.822760px;}
.y14f{bottom:406.343460px;}
.yb4{bottom:407.526060px;}
.y1c{bottom:411.750060px;}
.y4c{bottom:412.932810px;}
.ye7{bottom:414.622260px;}
.y121{bottom:421.042710px;}
.y89{bottom:422.563410px;}
.yb3{bottom:425.266710px;}
.y4b{bottom:430.842360px;}
.ye6{bottom:432.362910px;}
.y14e{bottom:438.783360px;}
.yb2{bottom:443.176260px;}
.y4a{bottom:448.582860px;}
.y1b{bottom:449.258760px;}
.ye5{bottom:450.272460px;}
.y68{bottom:452.177700px;}
.y14d{bottom:455.003310px;}
.y120{bottom:456.692760px;}
.y88{bottom:459.903060px;}
.yb1{bottom:460.916760px;}
.y49{bottom:466.323510px;}
.ye4{bottom:468.012960px;}
.yfa{bottom:469.533660px;}
.y11f{bottom:474.433410px;}
.yb0{bottom:478.826310px;}
.ye3{bottom:485.753610px;}
.y14c{bottom:487.274160px;}
.y1a{bottom:490.991310px;}
.y11e{bottom:492.342960px;}
.yaf{bottom:496.566810px;}
.y87{bottom:498.256410px;}
.y171{bottom:499.946010px;}
.y48{bottom:501.973560px;}
.yf9{bottom:502.480410px;}
.y14b{bottom:503.494110px;}
.ye2{bottom:503.663160px;}
.y67{bottom:505.230450px;}
.y19{bottom:507.211260px;}
.y11d{bottom:510.083460px;}
.y86{bottom:515.997060px;}
.y170{bottom:516.165960px;}
.y14a{bottom:519.714060px;}
.y47{bottom:519.882960px;}
.ye1{bottom:521.403660px;}
.y18{bottom:523.431210px;}
.y16f{bottom:532.385910px;}
.y85{bottom:533.737560px;}
.yae{bottom:533.906460px;}
.y149{bottom:535.934010px;}
.y46{bottom:537.623610px;}
.ye0{bottom:539.313210px;}
.y17{bottom:539.651160px;}
.y11c{bottom:545.733510px;}
.y16e{bottom:548.605860px;}
.y148{bottom:552.153960px;}
.y45{bottom:555.364110px;}
.y16{bottom:555.702060px;}
.ydf{bottom:557.053710px;}
.y66{bottom:558.283200px;}
.y11b{bottom:563.474160px;}
.y16d{bottom:564.825810px;}
.y147{bottom:568.205010px;}
.y84{bottom:570.570360px;}
.yad{bottom:571.077210px;}
.y15{bottom:571.922010px;}
.y44{bottom:573.273660px;}
.yde{bottom:574.794360px;}
.y16c{bottom:580.876860px;}
.y11a{bottom:581.383710px;}
.y146{bottom:584.424960px;}
.y14{bottom:588.141960px;}
.y83{bottom:588.310860px;}
.yac{bottom:588.817860px;}
.y43{bottom:591.014310px;}
.ydd{bottom:592.703910px;}
.y119{bottom:599.124210px;}
.y145{bottom:600.644910px;}
.y13{bottom:604.361910px;}
.y82{bottom:606.220410px;}
.y42{bottom:608.923710px;}
.y16b{bottom:613.316610px;}
.y65{bottom:613.532400px;}
.y144{bottom:616.864860px;}
.y12{bottom:620.581860px;}
.yab{bottom:624.467910px;}
.y41{bottom:626.664360px;}
.y16a{bottom:629.536560px;}
.y143{bottom:633.084660px;}
.ydc{bottom:633.760560px;}
.y118{bottom:634.774410px;}
.y11{bottom:636.632910px;}
.yaa{bottom:642.208410px;}
.y81{bottom:643.560060px;}
.y40{bottom:644.404860px;}
.y169{bottom:645.756660px;}
.y142{bottom:649.304610px;}
.y117{bottom:652.514910px;}
.y10{bottom:652.852860px;}
.ya9{bottom:660.117960px;}
.y168{bottom:661.976460px;}
.y3f{bottom:662.314410px;}
.y141{bottom:665.355660px;}
.y61{bottom:672.498600px;}
.ydb{bottom:673.634610px;}
.y167{bottom:678.027510px;}
.y3e{bottom:680.055060px;}
.y140{bottom:681.575610px;}
.y80{bottom:681.744660px;}
.y63{bottom:685.846350px;}
.y116{bottom:688.164960px;}
.yf{bottom:688.333860px;}
.yda{bottom:691.375110px;}
.ya8{bottom:695.768010px;}
.y13f{bottom:697.795560px;}
.y3d{bottom:697.964610px;}
.y7f{bottom:699.485160px;}
.y115{bottom:706.074510px;}
.yd9{bottom:709.284660px;}
.yf0{bottom:709.791510px;}
.y166{bottom:710.467410px;}
.ya7{bottom:713.508660px;}
.y13e{bottom:714.015510px;}
.y3c{bottom:715.705110px;}
.y7e{bottom:717.394710px;}
.y114{bottom:723.815010px;}
.y165{bottom:726.687360px;}
.yd8{bottom:727.025310px;}
.y13d{bottom:730.235460px;}
.ya6{bottom:731.418210px;}
.y3b{bottom:733.445610px;}
.y7d{bottom:735.135210px;}
.ye{bottom:741.048810px;}
.y113{bottom:741.555660px;}
.yef{bottom:742.231410px;}
.y164{bottom:742.907310px;}
.yd7{bottom:744.934860px;}
.y13c{bottom:746.455410px;}
.ya5{bottom:749.158710px;}
.y3a{bottom:751.355160px;}
.y7c{bottom:752.875860px;}
.yd{bottom:757.606560px;}
.y163{bottom:759.127260px;}
.y112{bottom:759.465060px;}
.y13b{bottom:762.506310px;}
.yd6{bottom:762.675360px;}
.y60{bottom:768.804600px;}
.y39{bottom:769.095660px;}
.y7b{bottom:770.785260px;}
.y111{bottom:777.205710px;}
.y13a{bottom:778.726260px;}
.yd5{bottom:780.415860px;}
.ya4{bottom:783.119160px;}
.yc{bottom:784.808760px;}
.y38{bottom:787.005210px;}
.y7a{bottom:788.525910px;}
.y162{bottom:791.398110px;}
.y97{bottom:792.749760px;}
.y139{bottom:794.946210px;}
.y110{bottom:795.115260px;}
.yb{bottom:795.791160px;}
.y37{bottom:804.745860px;}
.y79{bottom:806.435460px;}
.y161{bottom:807.618060px;}
.y96{bottom:810.490410px;}
.y138{bottom:811.166160px;}
.ya{bottom:811.842060px;}
.y10f{bottom:812.855760px;}
.yd4{bottom:817.755660px;}
.yc2{bottom:819.660900px;}
.y36{bottom:822.655410px;}
.y160{bottom:823.838010px;}
.y5f{bottom:824.053800px;}
.y78{bottom:824.175960px;}
.y137{bottom:827.386110px;}
.y9{bottom:827.724060px;}
.y10e{bottom:830.596410px;}
.y15f{bottom:840.058110px;}
.y136{bottom:843.606060px;}
.y95{bottom:846.140460px;}
.y10d{bottom:848.505960px;}
.y8{bottom:852.054060px;}
.yd3{bottom:854.926260px;}
.y35{bottom:858.136560px;}
.y135{bottom:859.657110px;}
.yf8{bottom:860.839710px;}
.y77{bottom:861.515610px;}
.y10c{bottom:866.246460px;}
.yc4{bottom:868.151700px;}
.y15e{bottom:872.328960px;}
.yd2{bottom:872.835810px;}
.y134{bottom:875.877060px;}
.y5d{bottom:875.923800px;}
.y34{bottom:876.046110px;}
.y10b{bottom:884.156010px;}
.y15d{bottom:888.548910px;}
.yd1{bottom:890.576460px;}
.y133{bottom:892.097010px;}
.y33{bottom:893.786610px;}
.y76{bottom:898.686360px;}
.y7{bottom:899.700060px;}
.y10a{bottom:901.896510px;}
.y15c{bottom:904.768860px;}
.y132{bottom:908.316960px;}
.y32{bottom:911.696160px;}
.y75{bottom:916.427010px;}
.y109{bottom:919.637160px;}
.y6{bottom:920.650860px;}
.y15b{bottom:920.988810px;}
.y131{bottom:924.536910px;}
.yd0{bottom:926.226510px;}
.y31{bottom:929.436660px;}
.y74{bottom:934.336410px;}
.y108{bottom:937.546560px;}
.y130{bottom:940.587960px;}
.ycf{bottom:943.967010px;}
.y30{bottom:947.177160px;}
.y15a{bottom:953.597610px;}
.y107{bottom:955.287210px;}
.y12f{bottom:956.807760px;}
.yce{bottom:961.876560px;}
.y2f{bottom:965.086710px;}
.y159{bottom:969.817560px;}
.y73{bottom:971.676060px;}
.y5b{bottom:973.196760px;}
.ycd{bottom:979.617060px;}
.y5{bottom:980.462010px;}
.y2e{bottom:982.827360px;}
.y158{bottom:986.037510px;}
.y5a{bottom:990.937260px;}
.y12e{bottom:996.512910px;}
.ycc{bottom:997.357710px;}
.y2d{bottom:1000.736910px;}
.y157{bottom:1002.257460px;}
.y72{bottom:1008.846810px;}
.y4{bottom:1012.056960px;}
.ycb{bottom:1015.267110px;}
.y156{bottom:1018.308510px;}
.y2c{bottom:1018.477410px;}
.y2b{bottom:1036.217910px;}
.y71{bottom:1049.903460px;}
.yca{bottom:1052.606910px;}
.y2a{bottom:1054.127460px;}
.y2{bottom:1084.032960px;}
.h11{height:18.563745px;}
.h13{height:20.695605px;}
.h14{height:20.724255px;}
.he{height:20.735055px;}
.h19{height:20.756655px;}
.h18{height:20.767500px;}
.h12{height:20.778150px;}
.hc{height:20.781750px;}
.h16{height:20.781900px;}
.h15{height:20.922000px;}
.h17{height:20.950650px;}
.h10{height:33.783302px;}
.h1e{height:38.353350px;}
.h1f{height:44.266950px;}
.h21{height:44.436000px;}
.h6{height:44.440511px;}
.hd{height:49.746840px;}
.h7{height:55.025780px;}
.h2{height:55.053170px;}
.h20{height:56.532210px;}
.h22{height:60.486900px;}
.h23{height:60.655800px;}
.hb{height:61.022776px;}
.h1b{height:62.662193px;}
.hf{height:64.035000px;}
.h8{height:66.329117px;}
.h1a{height:68.111093px;}
.h9{height:71.599818px;}
.h3{height:75.224150px;}
.h1d{height:76.368900px;}
.ha{height:79.690012px;}
.h4{height:80.885076px;}
.h5{height:80.885676px;}
.h1c{height:184.332900px;}
.h1{height:1185.407550px;}
.h0{height:1188.000000px;}
.wd{width:35.209800px;}
.we{width:35.209950px;}
.wc{width:35.703300px;}
.wb{width:38.206500px;}
.wf{width:40.381950px;}
.wa{width:62.121600px;}
.w4{width:72.541200px;}
.w5{width:72.544800px;}
.w6{width:72.620400px;}
.w9{width:87.470100px;}
.w8{width:234.209250px;}
.w7{width:276.539550px;}
.w2{width:276.554100px;}
.w3{width:276.600900px;}
.w1{width:839.790000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3c{left:7.264650px;}
.x3b{left:8.291100px;}
.x28{left:10.109850px;}
.x3a{left:11.968350px;}
.x36{left:14.050050px;}
.x17{left:15.159450px;}
.x39{left:16.513650px;}
.x19{left:19.805550px;}
.x32{left:22.341150px;}
.x15{left:23.619750px;}
.x3d{left:27.419550px;}
.x29{left:36.855750px;}
.x1{left:38.898015px;}
.x1b{left:42.996750px;}
.x21{left:46.504800px;}
.x2a{left:48.536100px;}
.x13{left:56.708250px;}
.x10{left:76.128450px;}
.x1f{left:83.407350px;}
.x20{left:84.592350px;}
.x11{left:87.686250px;}
.x22{left:93.103050px;}
.x26{left:102.849150px;}
.x1c{left:107.999550px;}
.x1e{left:110.830500px;}
.x3{left:118.494885px;}
.x1d{left:124.927500px;}
.x8{left:136.099785px;}
.x4{left:147.102885px;}
.x3e{left:149.980635px;}
.x2{left:154.381935px;}
.x5{left:164.200035px;}
.x6{left:173.679585px;}
.xa{left:216.845535px;}
.x9{left:221.077485px;}
.xc{left:228.017985px;}
.x7{left:270.168285px;}
.xd{left:272.368935px;}
.x2c{left:274.400235px;}
.x2b{left:283.879785px;}
.x30{left:296.914185px;}
.x2e{left:308.086635px;}
.xb{left:314.180685px;}
.x12{left:315.329550px;}
.x1a{left:316.406550px;}
.x23{left:318.920385px;}
.xf{left:321.628935px;}
.x2f{left:329.754285px;}
.x14{left:330.813150px;}
.x31{left:338.016450px;}
.x2d{left:339.403185px;}
.x24{left:357.515835px;}
.x25{left:358.906200px;}
.x33{left:400.865550px;}
.x16{left:421.034850px;}
.x27{left:431.839950px;}
.x34{left:439.763550px;}
.x35{left:476.144100px;}
.x18{left:503.905650px;}
.x37{left:512.031000px;}
.x38{left:547.993650px;}
.xe{left:716.047485px;}
@media print{
.v2{vertical-align:-27.634133pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:30.036800pt;}
.ls11{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.003096pt;}
.ls1{letter-spacing:0.026125pt;}
.ls13{letter-spacing:0.055268pt;}
.ls1a{letter-spacing:0.149584pt;}
.lse{letter-spacing:0.199445pt;}
.ls10{letter-spacing:0.224727pt;}
.ls7{letter-spacing:0.319593pt;}
.ls2{letter-spacing:0.351703pt;}
.ls3{letter-spacing:0.394012pt;}
.lsd{letter-spacing:0.416988pt;}
.lsb{letter-spacing:0.423281pt;}
.lsc{letter-spacing:0.423816pt;}
.ls15{letter-spacing:0.450139pt;}
.lsa{letter-spacing:0.483004pt;}
.ls16{letter-spacing:0.502598pt;}
.ls6{letter-spacing:0.556775pt;}
.ls9{letter-spacing:0.645767pt;}
.ls0{letter-spacing:0.646302pt;}
.ls5{letter-spacing:0.761847pt;}
.ls8{letter-spacing:0.850839pt;}
.ls1c{letter-spacing:13.131780pt;}
.ls19{letter-spacing:13.513515pt;}
.ls1b{letter-spacing:14.208785pt;}
.lsf{letter-spacing:15.521078pt;}
.ls17{letter-spacing:18.073676pt;}
.ls4{letter-spacing:20.249829pt;}
.ls18{letter-spacing:23.115942pt;}
.ls14{letter-spacing:25.532553pt;}
.ls1d{letter-spacing:32.465209pt;}
.ws9{word-spacing:-100.323360pt;}
.ws5{word-spacing:-80.217833pt;}
.ws6{word-spacing:-59.200052pt;}
.ws4{word-spacing:-59.004387pt;}
.ws3{word-spacing:-58.970725pt;}
.ws8{word-spacing:-58.449526pt;}
.ws1{word-spacing:-58.167473pt;}
.ws2{word-spacing:-57.767036pt;}
.ws7{word-spacing:-57.617777pt;}
.wsc{word-spacing:-30.116232pt;}
.ws2a{word-spacing:-15.018467pt;}
.ws17{word-spacing:-13.872255pt;}
.wsf{word-spacing:-13.816987pt;}
.wsd{word-spacing:-13.216252pt;}
.ws0{word-spacing:-12.465328pt;}
.ws14{word-spacing:-11.263851pt;}
.wsa{word-spacing:-10.663112pt;}
.ws1d{word-spacing:-10.182521pt;}
.ws1c{word-spacing:-10.062373pt;}
.ws16{word-spacing:-1.393046pt;}
.ws1f{word-spacing:-0.101823pt;}
.ws15{word-spacing:-0.020943pt;}
.ws10{word-spacing:0.000000pt;}
.wsb{word-spacing:0.183897pt;}
.ws23{word-spacing:0.292438pt;}
.ws20{word-spacing:0.300650pt;}
.ws13{word-spacing:0.396092pt;}
.ws1a{word-spacing:0.444302pt;}
.ws28{word-spacing:0.560082pt;}
.ws24{word-spacing:0.569973pt;}
.ws12{word-spacing:0.582942pt;}
.ws25{word-spacing:0.753951pt;}
.ws1e{word-spacing:0.775668pt;}
.ws2c{word-spacing:0.860911pt;}
.ws1b{word-spacing:0.864984pt;}
.ws19{word-spacing:0.912392pt;}
.ws18{word-spacing:1.023565pt;}
.ws26{word-spacing:2.002600pt;}
.ws2d{word-spacing:7.941700pt;}
.ws21{word-spacing:11.997783pt;}
.ws2b{word-spacing:14.693539pt;}
.ws29{word-spacing:16.243126pt;}
.ws27{word-spacing:16.391557pt;}
.ws11{word-spacing:18.942033pt;}
.wse{word-spacing:19.916371pt;}
.ws22{word-spacing:41.721104pt;}
._1{margin-left:-1.396117pt;}
._0{width:0.997226pt;}
._3{width:2.077354pt;}
._c{width:3.723379pt;}
._15{width:4.918847pt;}
._a{width:5.983357pt;}
._1e{width:6.873218pt;}
._9{width:7.768365pt;}
._6{width:8.825452pt;}
._16{width:9.738141pt;}
._13{width:11.474079pt;}
._19{width:12.447468pt;}
._12{width:13.688505pt;}
._11{width:14.856338pt;}
._5{width:16.218344pt;}
._4{width:17.823429pt;}
._b{width:19.062909pt;}
._8{width:20.534496pt;}
._10{width:21.719826pt;}
._7{width:23.221641pt;}
._e{width:24.234931pt;}
._f{width:25.253038pt;}
._d{width:26.378561pt;}
._14{width:27.280827pt;}
._1a{width:28.661475pt;}
._17{width:29.916818pt;}
._18{width:30.951902pt;}
._1b{width:32.826555pt;}
._21{width:34.027386pt;}
._1c{width:35.157264pt;}
._1d{width:37.108898pt;}
._20{width:41.035629pt;}
._22{width:50.398309pt;}
._1f{width:54.236293pt;}
._2{width:1544.944167pt;}
.fs6{font-size:40.249493pt;}
.fs5{font-size:42.652448pt;}
.fsb{font-size:45.055403pt;}
.fs1{font-size:47.458357pt;}
.fs0{font-size:49.861312pt;}
.fs8{font-size:52.865008pt;}
.fsa{font-size:55.267947pt;}
.fs7{font-size:60.073867pt;}
.fs4{font-size:64.879787pt;}
.fs9{font-size:70.286453pt;}
.fs3{font-size:79.898240pt;}
.fs2{font-size:100.323360pt;}
.yc9{bottom:-72.689467pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.792480pt;}
.yc8{bottom:1.051333pt;}
.y64{bottom:6.307733pt;}
.y6e{bottom:7.959733pt;}
.y5e{bottom:8.260133pt;}
.y6c{bottom:8.260267pt;}
.y6a{bottom:8.410267pt;}
.yfb{bottom:15.168667pt;}
.yff{bottom:15.318933pt;}
.yfc{bottom:15.619200pt;}
.y100{bottom:15.769467pt;}
.yc7{bottom:25.080800pt;}
.y102{bottom:29.586400pt;}
.y105{bottom:29.736533pt;}
.y103{bottom:30.036933pt;}
.y106{bottom:30.187067pt;}
.yc6{bottom:32.590133pt;}
.y62{bottom:46.256933pt;}
.yc5{bottom:58.722267pt;}
.y3{bottom:96.568747pt;}
.y12d{bottom:112.338133pt;}
.yf7{bottom:118.045160pt;}
.ya3{bottom:119.697187pt;}
.y59{bottom:121.048853pt;}
.y29{bottom:122.851067pt;}
.y12c{bottom:128.107533pt;}
.y5c{bottom:128.858453pt;}
.y94{bottom:130.510493pt;}
.yf6{bottom:133.964720pt;}
.ya2{bottom:135.616720pt;}
.y58{bottom:136.818187pt;}
.y28{bottom:138.620453pt;}
.y12b{bottom:144.027120pt;}
.y93{bottom:146.279920pt;}
.yf5{bottom:149.734187pt;}
.ya1{bottom:151.386187pt;}
.y57{bottom:152.587653pt;}
.y27{bottom:154.389787pt;}
.yc3{bottom:154.389867pt;}
.yc1{bottom:156.492453pt;}
.yf4{bottom:165.503520pt;}
.y104{bottom:165.545067pt;}
.ya0{bottom:167.155520pt;}
.y56{bottom:168.507253pt;}
.y70{bottom:169.600000pt;}
.y26{bottom:170.309387pt;}
.yc0{bottom:172.261787pt;}
.y12a{bottom:175.716053pt;}
.y92{bottom:179.470720pt;}
.yf3{bottom:181.423120pt;}
.y9f{bottom:183.075120pt;}
.y55{bottom:184.276587pt;}
.y25{bottom:186.078853pt;}
.ybf{bottom:188.181387pt;}
.y129{bottom:191.485520pt;}
.y54{bottom:200.196187pt;}
.y24{bottom:201.998453pt;}
.ybe{bottom:203.950720pt;}
.y128{bottom:207.254853pt;}
.y91{bottom:213.562587pt;}
.y9e{bottom:214.764053pt;}
.y6f{bottom:214.805600pt;}
.y53{bottom:215.965520pt;}
.y23{bottom:217.767787pt;}
.yf2{bottom:218.368587pt;}
.ybd{bottom:219.720187pt;}
.y101{bottom:220.062133pt;}
.y127{bottom:223.174453pt;}
.y90{bottom:229.332053pt;}
.y9d{bottom:230.533520pt;}
.y22{bottom:233.687387pt;}
.ybc{bottom:235.639787pt;}
.y8f{bottom:245.101387pt;}
.y21{bottom:249.456720pt;}
.ybb{bottom:251.409120pt;}
.y52{bottom:252.460453pt;}
.y126{bottom:254.863387pt;}
.yee{bottom:257.716853pt;}
.y6d{bottom:260.912400pt;}
.y8e{bottom:261.020987pt;}
.y9c{bottom:262.222453pt;}
.y20{bottom:265.226187pt;}
.yba{bottom:267.328720pt;}
.y125{bottom:270.632853pt;}
.yed{bottom:273.486320pt;}
.yfe{bottom:274.428933pt;}
.y155{bottom:274.837920pt;}
.y9b{bottom:277.991787pt;}
.y1f{bottom:281.145653pt;}
.yb9{bottom:283.098187pt;}
.y124{bottom:286.552320pt;}
.y51{bottom:287.904053pt;}
.y154{bottom:289.255653pt;}
.yec{bottom:289.405920pt;}
.y8d{bottom:294.211787pt;}
.yb8{bottom:298.867520pt;}
.y153{bottom:303.673387pt;}
.y50{bottom:303.823653pt;}
.yeb{bottom:305.175253pt;}
.y6b{bottom:307.619733pt;}
.y9a{bottom:309.680853pt;}
.yfd{bottom:314.528267pt;}
.yb7{bottom:314.787120pt;}
.y1e{bottom:317.640587pt;}
.y152{bottom:318.091120pt;}
.y4f{bottom:319.592987pt;}
.yf1{bottom:320.944720pt;}
.yea{bottom:321.094853pt;}
.y123{bottom:323.047253pt;}
.y99{bottom:325.450187pt;}
.y8c{bottom:328.153520pt;}
.yb6{bottom:330.556453pt;}
.y151{bottom:332.508853pt;}
.y4e{bottom:335.362453pt;}
.ye9{bottom:336.864187pt;}
.y8b{bottom:344.073120pt;}
.yb5{bottom:346.476053pt;}
.y150{bottom:346.776453pt;}
.y4d{bottom:351.281920pt;}
.y1d{bottom:351.582320pt;}
.ye8{bottom:352.633653pt;}
.y69{bottom:354.627600pt;}
.y98{bottom:355.637387pt;}
.y122{bottom:358.490853pt;}
.y8a{bottom:359.842453pt;}
.y14f{bottom:361.194187pt;}
.yb4{bottom:362.245387pt;}
.y1c{bottom:366.000053pt;}
.y4c{bottom:367.051387pt;}
.ye7{bottom:368.553120pt;}
.y121{bottom:374.260187pt;}
.y89{bottom:375.611920pt;}
.yb3{bottom:378.014853pt;}
.y4b{bottom:382.970987pt;}
.ye6{bottom:384.322587pt;}
.y14e{bottom:390.029653pt;}
.yb2{bottom:393.934453pt;}
.y4a{bottom:398.740320pt;}
.y1b{bottom:399.341120pt;}
.ye5{bottom:400.242187pt;}
.y68{bottom:401.935733pt;}
.y14d{bottom:404.447387pt;}
.y120{bottom:405.949120pt;}
.y88{bottom:408.802720pt;}
.yb1{bottom:409.703787pt;}
.y49{bottom:414.509787pt;}
.ye4{bottom:416.011520pt;}
.yfa{bottom:417.363253pt;}
.y11f{bottom:421.718587pt;}
.yb0{bottom:425.623387pt;}
.ye3{bottom:431.780987pt;}
.y14c{bottom:433.132587pt;}
.y1a{bottom:436.436720pt;}
.y11e{bottom:437.638187pt;}
.yaf{bottom:441.392720pt;}
.y87{bottom:442.894587pt;}
.y171{bottom:444.396453pt;}
.y48{bottom:446.198720pt;}
.yf9{bottom:446.649253pt;}
.y14b{bottom:447.550320pt;}
.ye2{bottom:447.700587pt;}
.y67{bottom:449.093733pt;}
.y19{bottom:450.854453pt;}
.y11d{bottom:453.407520pt;}
.y86{bottom:458.664053pt;}
.y170{bottom:458.814187pt;}
.y14a{bottom:461.968053pt;}
.y47{bottom:462.118187pt;}
.ye1{bottom:463.469920pt;}
.y18{bottom:465.272187pt;}
.y16f{bottom:473.231920pt;}
.y85{bottom:474.433387pt;}
.yae{bottom:474.583520pt;}
.y149{bottom:476.385787pt;}
.y46{bottom:477.887653pt;}
.ye0{bottom:479.389520pt;}
.y17{bottom:479.689920pt;}
.y11c{bottom:485.096453pt;}
.y16e{bottom:487.649653pt;}
.y148{bottom:490.803520pt;}
.y45{bottom:493.656987pt;}
.y16{bottom:493.957387pt;}
.ydf{bottom:495.158853pt;}
.y66{bottom:496.251733pt;}
.y11b{bottom:500.865920pt;}
.y16d{bottom:502.067387pt;}
.y147{bottom:505.071120pt;}
.y84{bottom:507.173653pt;}
.yad{bottom:507.624187pt;}
.y15{bottom:508.375120pt;}
.y44{bottom:509.576587pt;}
.yde{bottom:510.928320pt;}
.y16c{bottom:516.334987pt;}
.y11a{bottom:516.785520pt;}
.y146{bottom:519.488853pt;}
.y14{bottom:522.792853pt;}
.y83{bottom:522.942987pt;}
.yac{bottom:523.393653pt;}
.y43{bottom:525.346053pt;}
.ydd{bottom:526.847920pt;}
.y119{bottom:532.554853pt;}
.y145{bottom:533.906587pt;}
.y13{bottom:537.210587pt;}
.y82{bottom:538.862587pt;}
.y42{bottom:541.265520pt;}
.y16b{bottom:545.170320pt;}
.y65{bottom:545.362133pt;}
.y144{bottom:548.324320pt;}
.y12{bottom:551.628320pt;}
.yab{bottom:555.082587pt;}
.y41{bottom:557.034987pt;}
.y16a{bottom:559.588053pt;}
.y143{bottom:562.741920pt;}
.ydc{bottom:563.342720pt;}
.y118{bottom:564.243920pt;}
.y11{bottom:565.895920pt;}
.yaa{bottom:570.851920pt;}
.y81{bottom:572.053387pt;}
.y40{bottom:572.804320pt;}
.y169{bottom:574.005920pt;}
.y142{bottom:577.159653pt;}
.y117{bottom:580.013253pt;}
.y10{bottom:580.313653pt;}
.ya9{bottom:586.771520pt;}
.y168{bottom:588.423520pt;}
.y3f{bottom:588.723920pt;}
.y141{bottom:591.427253pt;}
.y61{bottom:597.776533pt;}
.ydb{bottom:598.786320pt;}
.y167{bottom:602.691120pt;}
.y3e{bottom:604.493387pt;}
.y140{bottom:605.844987pt;}
.y80{bottom:605.995253pt;}
.y63{bottom:609.641200pt;}
.y116{bottom:611.702187pt;}
.yf{bottom:611.852320pt;}
.yda{bottom:614.555653pt;}
.ya8{bottom:618.460453pt;}
.y13f{bottom:620.262720pt;}
.y3d{bottom:620.412987pt;}
.y7f{bottom:621.764587pt;}
.y115{bottom:627.621787pt;}
.yd9{bottom:630.475253pt;}
.yf0{bottom:630.925787pt;}
.y166{bottom:631.526587pt;}
.ya7{bottom:634.229920pt;}
.y13e{bottom:634.680453pt;}
.y3c{bottom:636.182320pt;}
.y7e{bottom:637.684187pt;}
.y114{bottom:643.391120pt;}
.y165{bottom:645.944320pt;}
.yd8{bottom:646.244720pt;}
.y13d{bottom:649.098187pt;}
.ya6{bottom:650.149520pt;}
.y3b{bottom:651.951653pt;}
.y7d{bottom:653.453520pt;}
.ye{bottom:658.710053pt;}
.y113{bottom:659.160587pt;}
.yef{bottom:659.761253pt;}
.y164{bottom:660.362053pt;}
.yd7{bottom:662.164320pt;}
.y13c{bottom:663.515920pt;}
.ya5{bottom:665.918853pt;}
.y3a{bottom:667.871253pt;}
.y7c{bottom:669.222987pt;}
.yd{bottom:673.428053pt;}
.y163{bottom:674.779787pt;}
.y112{bottom:675.080053pt;}
.y13b{bottom:677.783387pt;}
.yd6{bottom:677.933653pt;}
.y60{bottom:683.381867pt;}
.y39{bottom:683.640587pt;}
.y7b{bottom:685.142453pt;}
.y111{bottom:690.849520pt;}
.y13a{bottom:692.201120pt;}
.yd5{bottom:693.702987pt;}
.ya4{bottom:696.105920pt;}
.yc{bottom:697.607787pt;}
.y38{bottom:699.560187pt;}
.y7a{bottom:700.911920pt;}
.y162{bottom:703.464987pt;}
.y97{bottom:704.666453pt;}
.y139{bottom:706.618853pt;}
.y110{bottom:706.769120pt;}
.yb{bottom:707.369920pt;}
.y37{bottom:715.329653pt;}
.y79{bottom:716.831520pt;}
.y161{bottom:717.882720pt;}
.y96{bottom:720.435920pt;}
.y138{bottom:721.036587pt;}
.ya{bottom:721.637387pt;}
.y10f{bottom:722.538453pt;}
.yd4{bottom:726.893920pt;}
.yc2{bottom:728.587467pt;}
.y36{bottom:731.249253pt;}
.y160{bottom:732.300453pt;}
.y5f{bottom:732.492267pt;}
.y78{bottom:732.600853pt;}
.y137{bottom:735.454320pt;}
.y9{bottom:735.754720pt;}
.y10e{bottom:738.307920pt;}
.y15f{bottom:746.718320pt;}
.y136{bottom:749.872053pt;}
.y95{bottom:752.124853pt;}
.y10d{bottom:754.227520pt;}
.y8{bottom:757.381387pt;}
.yd3{bottom:759.934453pt;}
.y35{bottom:762.788053pt;}
.y135{bottom:764.139653pt;}
.yf8{bottom:765.190853pt;}
.y77{bottom:765.791653pt;}
.y10c{bottom:769.996853pt;}
.yc4{bottom:771.690400pt;}
.y15e{bottom:775.403520pt;}
.yd2{bottom:775.854053pt;}
.y134{bottom:778.557387pt;}
.y5d{bottom:778.598933pt;}
.y34{bottom:778.707653pt;}
.y10b{bottom:785.916453pt;}
.y15d{bottom:789.821253pt;}
.yd1{bottom:791.623520pt;}
.y133{bottom:792.975120pt;}
.y33{bottom:794.476987pt;}
.y76{bottom:798.832320pt;}
.y7{bottom:799.733387pt;}
.y10a{bottom:801.685787pt;}
.y15c{bottom:804.238987pt;}
.y132{bottom:807.392853pt;}
.y32{bottom:810.396587pt;}
.y75{bottom:814.601787pt;}
.y109{bottom:817.455253pt;}
.y6{bottom:818.356320pt;}
.y15b{bottom:818.656720pt;}
.y131{bottom:821.810587pt;}
.yd0{bottom:823.312453pt;}
.y31{bottom:826.165920pt;}
.y74{bottom:830.521253pt;}
.y108{bottom:833.374720pt;}
.y130{bottom:836.078187pt;}
.ycf{bottom:839.081787pt;}
.y30{bottom:841.935253pt;}
.y15a{bottom:847.642320pt;}
.y107{bottom:849.144187pt;}
.y12f{bottom:850.495787pt;}
.yce{bottom:855.001387pt;}
.y2f{bottom:857.854853pt;}
.y159{bottom:862.060053pt;}
.y73{bottom:863.712053pt;}
.y5b{bottom:865.063787pt;}
.ycd{bottom:870.770720pt;}
.y5{bottom:871.521787pt;}
.y2e{bottom:873.624320pt;}
.y158{bottom:876.477787pt;}
.y5a{bottom:880.833120pt;}
.y12e{bottom:885.789253pt;}
.ycc{bottom:886.540187pt;}
.y2d{bottom:889.543920pt;}
.y157{bottom:890.895520pt;}
.y72{bottom:896.752720pt;}
.y4{bottom:899.606187pt;}
.ycb{bottom:902.459653pt;}
.y156{bottom:905.163120pt;}
.y2c{bottom:905.313253pt;}
.y2b{bottom:921.082587pt;}
.y71{bottom:933.247520pt;}
.yca{bottom:935.650587pt;}
.y2a{bottom:937.002187pt;}
.y2{bottom:963.584853pt;}
.h11{height:16.501107pt;}
.h13{height:18.396093pt;}
.h14{height:18.421560pt;}
.he{height:18.431160pt;}
.h19{height:18.450360pt;}
.h18{height:18.460000pt;}
.h12{height:18.469467pt;}
.hc{height:18.472667pt;}
.h16{height:18.472800pt;}
.h15{height:18.597333pt;}
.h17{height:18.622800pt;}
.h10{height:30.029602pt;}
.h1e{height:34.091867pt;}
.h1f{height:39.348400pt;}
.h21{height:39.498667pt;}
.h6{height:39.502677pt;}
.hd{height:44.219414pt;}
.h7{height:48.911805pt;}
.h2{height:48.936151pt;}
.h20{height:50.250853pt;}
.h22{height:53.766133pt;}
.h23{height:53.916267pt;}
.hb{height:54.242467pt;}
.h1b{height:55.699728pt;}
.hf{height:56.920000pt;}
.h8{height:58.959215pt;}
.h1a{height:60.543194pt;}
.h9{height:63.644283pt;}
.h3{height:66.865911pt;}
.h1d{height:67.883467pt;}
.ha{height:70.835566pt;}
.h4{height:71.897845pt;}
.h5{height:71.898378pt;}
.h1c{height:163.851467pt;}
.h1{height:1053.695600pt;}
.h0{height:1056.000000pt;}
.wd{width:31.297600pt;}
.we{width:31.297733pt;}
.wc{width:31.736267pt;}
.wb{width:33.961333pt;}
.wf{width:35.895067pt;}
.wa{width:55.219200pt;}
.w4{width:64.481067pt;}
.w5{width:64.484267pt;}
.w6{width:64.551467pt;}
.w9{width:77.751200pt;}
.w8{width:208.186000pt;}
.w7{width:245.812933pt;}
.w2{width:245.825867pt;}
.w3{width:245.867467pt;}
.w1{width:746.480000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3c{left:6.457467pt;}
.x3b{left:7.369867pt;}
.x28{left:8.986533pt;}
.x3a{left:10.638533pt;}
.x36{left:12.488933pt;}
.x17{left:13.475067pt;}
.x39{left:14.678800pt;}
.x19{left:17.604933pt;}
.x32{left:19.858800pt;}
.x15{left:20.995333pt;}
.x3d{left:24.372933pt;}
.x29{left:32.760667pt;}
.x1{left:34.576013pt;}
.x1b{left:38.219333pt;}
.x21{left:41.337600pt;}
.x2a{left:43.143200pt;}
.x13{left:50.407333pt;}
.x10{left:67.669733pt;}
.x1f{left:74.139867pt;}
.x20{left:75.193200pt;}
.x11{left:77.943333pt;}
.x22{left:82.758267pt;}
.x26{left:91.421467pt;}
.x1c{left:95.999600pt;}
.x1e{left:98.516000pt;}
.x3{left:105.328787pt;}
.x1d{left:111.046667pt;}
.x8{left:120.977587pt;}
.x4{left:130.758120pt;}
.x3e{left:133.316120pt;}
.x2{left:137.228387pt;}
.x5{left:145.955587pt;}
.x6{left:154.381853pt;}
.xa{left:192.751587pt;}
.x9{left:196.513320pt;}
.xc{left:202.682653pt;}
.x7{left:240.149587pt;}
.xd{left:242.105720pt;}
.x2c{left:243.911320pt;}
.x2b{left:252.337587pt;}
.x30{left:263.923720pt;}
.x2e{left:273.854787pt;}
.xb{left:279.271720pt;}
.x12{left:280.292933pt;}
.x1a{left:281.250267pt;}
.x23{left:283.484787pt;}
.xf{left:285.892387pt;}
.x2f{left:293.114920pt;}
.x14{left:294.056133pt;}
.x31{left:300.459067pt;}
.x2d{left:301.691720pt;}
.x24{left:317.791853pt;}
.x25{left:319.027733pt;}
.x33{left:356.324933pt;}
.x16{left:374.253200pt;}
.x27{left:383.857733pt;}
.x34{left:390.900933pt;}
.x35{left:423.239200pt;}
.x18{left:447.916133pt;}
.x37{left:455.138667pt;}
.x38{left:487.105467pt;}
.xe{left:636.486653pt;}
}




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