
    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_4286710202318ca59976c3af.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.211426;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_8964989cd2dd8748d026d7d3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.211426;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_9c4c38682b4e8098d5323a12.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.200684;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_1134da454b3862ce394dfc53.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.193359;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.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);}
.v4{vertical-align:-18.000000px;}
.v5{vertical-align:-2.976360px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.282800px;}
.v3{vertical-align:18.000000px;}
.v2{vertical-align:22.000020px;}
.v1{vertical-align:60.480000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000060px;}
.ls2{letter-spacing:2.194320px;}
.ls3{letter-spacing:2.969940px;}
.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;}
}
.ws0{word-spacing:-16.500000px;}
.ws1{word-spacing:-15.750000px;}
.ws4{word-spacing:-13.500000px;}
.ws2{word-spacing:-9.750000px;}
.ws7{word-spacing:-9.515805px;}
.ws5{word-spacing:-9.000000px;}
.ws3{word-spacing:0.000000px;}
.ws6{word-spacing:3.294000px;}
._3{margin-left:-9.078000px;}
._1{margin-left:-6.528000px;}
._6{margin-left:-5.104620px;}
._e{margin-left:-3.379380px;}
._2{margin-left:-2.346000px;}
._c{margin-left:-1.188000px;}
._a{width:1.764000px;}
._7{width:2.772000px;}
._9{width:4.536000px;}
._d{width:5.821920px;}
._4{width:6.873000px;}
._f{width:7.964160px;}
._b{width:9.097920px;}
._13{width:10.434000px;}
._11{width:11.664000px;}
._14{width:13.104000px;}
._16{width:14.193180px;}
._12{width:15.378000px;}
._10{width:16.632000px;}
._8{width:20.664000px;}
._15{width:21.972000px;}
._5{width:29.180220px;}
._0{width:85.570860px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fsa{font-size:38.063220px;}
.fs5{font-size:39.000000px;}
.fs7{font-size:46.500000px;}
.fs6{font-size:52.640820px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:63.000000px;}
.fs9{font-size:64.414680px;}
.fs1{font-size:66.000000px;}
.fs3{font-size:96.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:116.259555px;}
.y7c{bottom:163.561290px;}
.y15b{bottom:163.561305px;}
.y3{bottom:163.561320px;}
.y36{bottom:163.561335px;}
.y65{bottom:163.561350px;}
.yc0{bottom:163.561365px;}
.y1a4{bottom:164.305380px;}
.y2{bottom:164.305410px;}
.y7b{bottom:178.681290px;}
.y15a{bottom:178.681305px;}
.y35{bottom:178.681320px;}
.y64{bottom:178.681335px;}
.ybf{bottom:178.681365px;}
.y155{bottom:179.425395px;}
.y16c{bottom:179.425410px;}
.y1{bottom:180.169500px;}
.y126{bottom:193.801290px;}
.y203{bottom:193.801305px;}
.y34{bottom:193.801320px;}
.y63{bottom:193.801335px;}
.ybe{bottom:193.801350px;}
.y7a{bottom:194.545380px;}
.y1b6{bottom:194.545395px;}
.ye5{bottom:194.545410px;}
.y202{bottom:208.921305px;}
.y33{bottom:208.921320px;}
.y62{bottom:208.921335px;}
.ybd{bottom:208.921350px;}
.y125{bottom:209.665395px;}
.yc7{bottom:209.665410px;}
.yee{bottom:209.665425px;}
.y1c6{bottom:210.409485px;}
.y1c{bottom:221.474385px;}
.y201{bottom:224.041305px;}
.y32{bottom:224.041320px;}
.y61{bottom:224.041335px;}
.ybc{bottom:224.041350px;}
.y124{bottom:224.785395px;}
.yd8{bottom:224.785410px;}
.yed{bottom:224.785425px;}
.y18c{bottom:225.529485px;}
.y200{bottom:239.161305px;}
.y31{bottom:239.161320px;}
.y60{bottom:239.161335px;}
.ybb{bottom:239.161350px;}
.y123{bottom:239.905395px;}
.yd7{bottom:239.905410px;}
.yec{bottom:239.905425px;}
.y1b{bottom:239.954400px;}
.y18d{bottom:240.649485px;}
.y16b{bottom:240.649500px;}
.y1ff{bottom:254.281305px;}
.y30{bottom:254.281320px;}
.y5f{bottom:254.281335px;}
.yba{bottom:254.281350px;}
.y122{bottom:255.025395px;}
.yd6{bottom:255.025410px;}
.yeb{bottom:255.025425px;}
.y113{bottom:255.769485px;}
.y154{bottom:255.769500px;}
.y18b{bottom:256.513575px;}
.y1a{bottom:258.434415px;}
.y1fe{bottom:269.401305px;}
.y2f{bottom:269.401320px;}
.y5e{bottom:269.401335px;}
.yb9{bottom:269.401350px;}
.yd5{bottom:270.145410px;}
.yea{bottom:270.145425px;}
.y121{bottom:270.889485px;}
.y159{bottom:270.889500px;}
.y1e6{bottom:271.186095px;}
.y19{bottom:276.914430px;}
.y9c{bottom:277.542555px;}
.y1fd{bottom:284.521305px;}
.y2e{bottom:284.521320px;}
.y5d{bottom:284.521335px;}
.yb8{bottom:284.521350px;}
.y1f7{bottom:285.265395px;}
.yd4{bottom:285.265410px;}
.ye9{bottom:285.265425px;}
.y120{bottom:286.009485px;}
.y158{bottom:286.009500px;}
.y1a3{bottom:286.753590px;}
.y1e5{bottom:289.666110px;}
.y18{bottom:295.394445px;}
.y9b{bottom:296.022570px;}
.y2d{bottom:299.641320px;}
.y5c{bottom:299.641335px;}
.yb7{bottom:299.641350px;}
.yd3{bottom:300.385410px;}
.ye8{bottom:300.385425px;}
.y181{bottom:301.092825px;}
.y11f{bottom:301.129485px;}
.y157{bottom:301.129500px;}
.y1b5{bottom:301.873605px;}
.y18a{bottom:303.075795px;}
.y17{bottom:313.874460px;}
.y9a{bottom:314.502585px;}
.y2c{bottom:314.761320px;}
.y5b{bottom:314.761335px;}
.yb6{bottom:314.761350px;}
.yd2{bottom:315.505410px;}
.ye7{bottom:315.505425px;}
.y145{bottom:315.505470px;}
.y11e{bottom:316.249485px;}
.y156{bottom:316.249500px;}
.y153{bottom:316.993590px;}
.y1b4{bottom:316.993605px;}
.y180{bottom:319.572840px;}
.y1e4{bottom:320.902020px;}
.y1d5{bottom:321.555795px;}
.y189{bottom:321.555810px;}
.y2b{bottom:329.881320px;}
.y5a{bottom:329.881335px;}
.yb5{bottom:329.881350px;}
.yd1{bottom:330.625410px;}
.ye6{bottom:330.625425px;}
.y144{bottom:330.625470px;}
.y11d{bottom:331.369485px;}
.ye4{bottom:331.369515px;}
.y112{bottom:332.113575px;}
.y1b3{bottom:332.113605px;}
.y16{bottom:332.354475px;}
.y1a2{bottom:332.857695px;}
.y99{bottom:332.982600px;}
.y1e3{bottom:339.382035px;}
.y1d4{bottom:340.035810px;}
.y188{bottom:340.035825px;}
.y2a{bottom:345.001320px;}
.y59{bottom:345.001335px;}
.yb4{bottom:345.001350px;}
.yd0{bottom:345.745410px;}
.y198{bottom:345.745425px;}
.y143{bottom:345.745455px;}
.yc6{bottom:346.489500px;}
.y11c{bottom:347.233590px;}
.y1b2{bottom:347.977725px;}
.y98{bottom:351.462615px;}
.y17f{bottom:353.159835px;}
.y1e2{bottom:357.862050px;}
.y16a{bottom:357.862110px;}
.y1d3{bottom:358.515825px;}
.y187{bottom:358.515840px;}
.y29{bottom:360.121320px;}
.y58{bottom:360.121335px;}
.yb3{bottom:360.121350px;}
.y20{bottom:360.865410px;}
.y4e{bottom:360.865425px;}
.y142{bottom:360.865455px;}
.y4{bottom:361.464405px;}
.ycf{bottom:361.609515px;}
.y11b{bottom:362.353590px;}
.y111{bottom:363.097680px;}
.y1b1{bottom:363.097710px;}
.y97{bottom:369.942630px;}
.y17e{bottom:371.639850px;}
.y10b{bottom:375.241320px;}
.yb2{bottom:375.241350px;}
.y1f5{bottom:375.985410px;}
.y28{bottom:375.985425px;}
.y57{bottom:375.985440px;}
.y141{bottom:375.985455px;}
.y1e1{bottom:376.342065px;}
.y169{bottom:376.342125px;}
.yce{bottom:376.729515px;}
.y1d2{bottom:376.995840px;}
.y186{bottom:376.995855px;}
.y11a{bottom:378.217680px;}
.y1b0{bottom:378.217710px;}
.y96{bottom:388.422645px;}
.y17d{bottom:390.119865px;}
.y10a{bottom:390.361320px;}
.y102{bottom:391.105410px;}
.y27{bottom:391.105425px;}
.y56{bottom:391.105440px;}
.y140{bottom:391.105455px;}
.yb1{bottom:391.105485px;}
.ycd{bottom:391.849515px;}
.y119{bottom:393.337680px;}
.y1af{bottom:393.337710px;}
.y110{bottom:394.081770px;}
.y168{bottom:394.822140px;}
.y1d1{bottom:395.475855px;}
.y185{bottom:395.475870px;}
.y1f4{bottom:406.225410px;}
.y26{bottom:406.225425px;}
.y55{bottom:406.225440px;}
.y13f{bottom:406.225455px;}
.yb0{bottom:406.225485px;}
.y100{bottom:406.902645px;}
.y95{bottom:406.902660px;}
.y1e9{bottom:406.969500px;}
.ycc{bottom:406.969515px;}
.y1e0{bottom:407.577975px;}
.yc5{bottom:407.713605px;}
.y1e7{bottom:408.231765px;}
.y1ae{bottom:408.457710px;}
.y17c{bottom:408.599880px;}
.y118{bottom:409.201770px;}
.y15{bottom:413.708085px;}
.y197{bottom:413.955885px;}
.y1fc{bottom:421.345410px;}
.y25{bottom:421.345425px;}
.y54{bottom:421.345440px;}
.y13e{bottom:421.345455px;}
.yaf{bottom:421.345485px;}
.y1f3{bottom:422.089530px;}
.ycb{bottom:422.833605px;}
.y1ad{bottom:423.577710px;}
.y167{bottom:423.931980px;}
.y117{bottom:424.321770px;}
.yff{bottom:425.382660px;}
.y1df{bottom:426.057990px;}
.y1d0{bottom:426.711765px;}
.y184{bottom:426.711780px;}
.y17b{bottom:427.079895px;}
.y14{bottom:431.348085px;}
.y196{bottom:432.435900px;}
.y1fb{bottom:436.465410px;}
.y24{bottom:436.465425px;}
.y53{bottom:436.465440px;}
.y13d{bottom:436.465455px;}
.yae{bottom:436.465485px;}
.y1f{bottom:437.209515px;}
.y1f2{bottom:437.209530px;}
.yca{bottom:437.953605px;}
.y1ac{bottom:438.697710px;}
.y116{bottom:439.441770px;}
.y94{bottom:440.489640px;}
.y166{bottom:442.411980px;}
.y15c{bottom:442.412025px;}
.yfe{bottom:443.862675px;}
.y1de{bottom:444.538005px;}
.y1cf{bottom:445.191780px;}
.y183{bottom:445.191795px;}
.y17a{bottom:445.559910px;}
.y13{bottom:448.988085px;}
.y195{bottom:450.915915px;}
.y1fa{bottom:451.585410px;}
.y109{bottom:451.585425px;}
.y52{bottom:451.585440px;}
.y13c{bottom:451.585455px;}
.yad{bottom:451.585485px;}
.y23{bottom:452.329515px;}
.y1f1{bottom:452.329530px;}
.yc9{bottom:453.073605px;}
.y1ab{bottom:453.817710px;}
.y115{bottom:454.561770px;}
.y93{bottom:458.969655px;}
.yfd{bottom:462.342690px;}
.y1dd{bottom:463.018020px;}
.y1ce{bottom:463.671795px;}
.y182{bottom:463.671810px;}
.y179{bottom:464.039925px;}
.y12{bottom:466.628085px;}
.y1f9{bottom:466.705410px;}
.y108{bottom:466.705425px;}
.y51{bottom:466.705440px;}
.y13b{bottom:466.705455px;}
.yac{bottom:466.705485px;}
.y22{bottom:467.354025px;}
.y1f0{bottom:467.449530px;}
.yc8{bottom:468.193605px;}
.y1aa{bottom:468.937710px;}
.y194{bottom:469.395930px;}
.y114{bottom:469.681770px;}
.y10f{bottom:470.425860px;}
.y92{bottom:477.449670px;}
.yfc{bottom:480.822705px;}
.y1dc{bottom:481.498035px;}
.y1f8{bottom:481.825410px;}
.y107{bottom:481.825425px;}
.y50{bottom:481.825440px;}
.y13a{bottom:481.825455px;}
.yab{bottom:481.825485px;}
.y1cd{bottom:482.151810px;}
.y165{bottom:482.151825px;}
.y178{bottom:482.519940px;}
.y1f6{bottom:482.569500px;}
.y21{bottom:482.569515px;}
.y1ef{bottom:482.569530px;}
.y1e{bottom:483.313605px;}
.yc4{bottom:484.057695px;}
.y1a9{bottom:484.057710px;}
.y11{bottom:484.268085px;}
.y193{bottom:487.875945px;}
.y1a0{bottom:491.749275px;}
.y91{bottom:495.929685px;}
.y106{bottom:496.945425px;}
.y4f{bottom:496.945440px;}
.y139{bottom:496.945455px;}
.yaa{bottom:496.945470px;}
.y4d{bottom:497.689530px;}
.y1a8{bottom:499.177710px;}
.yfb{bottom:499.302720px;}
.y1db{bottom:499.978050px;}
.y1cc{bottom:500.631825px;}
.y164{bottom:500.631840px;}
.y177{bottom:500.999955px;}
.y10{bottom:501.908085px;}
.y192{bottom:506.355960px;}
.y19f{bottom:510.229290px;}
.y105{bottom:512.065425px;}
.y138{bottom:512.065455px;}
.ya9{bottom:512.065470px;}
.y1ee{bottom:512.809530px;}
.y1a7{bottom:514.297710px;}
.yfa{bottom:517.782735px;}
.y1da{bottom:518.458065px;}
.y1cb{bottom:519.111840px;}
.y163{bottom:519.111855px;}
.y176{bottom:519.479970px;}
.yf{bottom:519.548085px;}
.y104{bottom:527.185425px;}
.y137{bottom:527.185455px;}
.ya8{bottom:527.185470px;}
.y1ed{bottom:527.929530px;}
.y130{bottom:527.929545px;}
.y19e{bottom:528.709305px;}
.y1a6{bottom:529.417710px;}
.y90{bottom:529.516680px;}
.y4b{bottom:534.361950px;}
.yf9{bottom:536.262750px;}
.y1d9{bottom:536.938080px;}
.ye{bottom:537.188085px;}
.y1ca{bottom:537.591855px;}
.y162{bottom:537.591870px;}
.y103{bottom:542.305425px;}
.ya7{bottom:542.305470px;}
.y101{bottom:543.049515px;}
.y1ec{bottom:543.049530px;}
.y136{bottom:543.049560px;}
.y1a5{bottom:544.537710px;}
.y1a1{bottom:545.281800px;}
.y12e{bottom:547.189305px;}
.y19d{bottom:547.189320px;}
.y8f{bottom:547.996695px;}
.ye3{bottom:550.347750px;}
.y4a{bottom:552.841965px;}
.y175{bottom:553.066950px;}
.yf8{bottom:554.742765px;}
.y5{bottom:554.828070px;}
.yd{bottom:554.828085px;}
.y1c9{bottom:556.071870px;}
.y161{bottom:556.071885px;}
.ya6{bottom:557.425470px;}
.y1eb{bottom:558.169530px;}
.y135{bottom:558.169560px;}
.y12d{bottom:565.669320px;}
.y19c{bottom:565.669335px;}
.y1d8{bottom:566.047995px;}
.y8e{bottom:566.476710px;}
.ye2{bottom:568.827765px;}
.y174{bottom:571.546965px;}
.ya5{bottom:572.545470px;}
.y78{bottom:573.201345px;}
.y1ea{bottom:573.289530px;}
.y134{bottom:573.289560px;}
.y1e8{bottom:574.033620px;}
.y1c8{bottom:574.551885px;}
.y160{bottom:574.551900px;}
.y12c{bottom:584.149335px;}
.y19b{bottom:584.149350px;}
.y49{bottom:584.302965px;}
.y1d6{bottom:584.527995px;}
.y8d{bottom:584.956725px;}
.ye1{bottom:587.307780px;}
.ya4{bottom:587.665470px;}
.yf7{bottom:588.329745px;}
.y133{bottom:588.409560px;}
.y173{bottom:590.026980px;}
.y77{bottom:591.681360px;}
.y1c7{bottom:593.031900px;}
.y15f{bottom:593.031915px;}
.y12b{bottom:602.629350px;}
.y48{bottom:602.782965px;}
.ya3{bottom:602.785470px;}
.y8c{bottom:603.436740px;}
.y132{bottom:603.529560px;}
.y1c5{bottom:604.787280px;}
.ye0{bottom:605.787795px;}
.yf6{bottom:606.809760px;}
.y172{bottom:608.506995px;}
.y76{bottom:610.161375px;}
.y15e{bottom:611.511930px;}
.y19a{bottom:615.610305px;}
.y199{bottom:615.610320px;}
.ya2{bottom:617.905470px;}
.y131{bottom:618.649560px;}
.y12f{bottom:619.393650px;}
.y12a{bottom:621.109365px;}
.y38{bottom:621.262965px;}
.y8b{bottom:621.916755px;}
.y1c4{bottom:623.267295px;}
.yc{bottom:623.743800px;}
.ydf{bottom:624.267810px;}
.y1d7{bottom:624.267825px;}
.yf5{bottom:625.289775px;}
.y10e{bottom:625.289790px;}
.y171{bottom:626.987010px;}
.y75{bottom:628.641390px;}
.y191{bottom:629.991945px;}
.ya1{bottom:633.025470px;}
.y129{bottom:639.589380px;}
.y8a{bottom:640.396770px;}
.y1c3{bottom:641.747310px;}
.yb{bottom:642.223815px;}
.yde{bottom:642.747825px;}
.y15d{bottom:642.747840px;}
.yf4{bottom:643.769790px;}
.y10d{bottom:643.769805px;}
.y170{bottom:645.467025px;}
.y74{bottom:647.121405px;}
.ya0{bottom:648.145470px;}
.y190{bottom:648.471960px;}
.y47{bottom:652.723905px;}
.y37{bottom:652.723935px;}
.y89{bottom:658.876785px;}
.y1c2{bottom:660.227325px;}
.ya{bottom:660.703800px;}
.ydd{bottom:661.227840px;}
.y152{bottom:661.227855px;}
.yf3{bottom:662.249805px;}
.y10c{bottom:662.249820px;}
.y9f{bottom:663.265470px;}
.y16f{bottom:663.947040px;}
.y73{bottom:665.601420px;}
.y18f{bottom:666.951975px;}
.y128{bottom:671.050365px;}
.y88{bottom:677.356800px;}
.y9e{bottom:678.385470px;}
.y9d{bottom:679.129560px;}
.ydc{bottom:679.707855px;}
.y151{bottom:679.707870px;}
.yf2{bottom:680.729820px;}
.y16e{bottom:682.427055px;}
.y72{bottom:684.081435px;}
.y18e{bottom:685.431990px;}
.y127{bottom:689.530365px;}
.y46{bottom:692.463765px;}
.y1c1{bottom:694.989855px;}
.y87{bottom:695.836815px;}
.ydb{bottom:698.187870px;}
.y150{bottom:698.187885px;}
.yf1{bottom:699.209835px;}
.y71{bottom:702.561450px;}
.y45{bottom:710.943780px;}
.y1c0{bottom:713.469870px;}
.y16d{bottom:713.888040px;}
.y86{bottom:714.316830px;}
.y9{bottom:716.224680px;}
.yc3{bottom:716.667885px;}
.y14f{bottom:716.667900px;}
.yf0{bottom:717.689820px;}
.y70{bottom:721.041435px;}
.y44{bottom:729.423795px;}
.y1bf{bottom:731.949885px;}
.y85{bottom:732.796815px;}
.yc2{bottom:735.147870px;}
.y14e{bottom:735.147885px;}
.yef{bottom:736.169835px;}
.y6f{bottom:739.521450px;}
.y8{bottom:744.784695px;}
.y43{bottom:747.903780px;}
.y1be{bottom:750.429870px;}
.y84{bottom:751.276830px;}
.yc1{bottom:753.627885px;}
.y14d{bottom:753.627900px;}
.y6e{bottom:758.001435px;}
.y42{bottom:766.383795px;}
.y1bd{bottom:768.909885px;}
.y83{bottom:769.756815px;}
.yda{bottom:772.107870px;}
.y14c{bottom:772.107885px;}
.y7{bottom:773.344710px;}
.y6d{bottom:776.481450px;}
.y41{bottom:784.863780px;}
.y1bc{bottom:787.389870px;}
.y82{bottom:788.236830px;}
.yd9{bottom:790.587885px;}
.y14b{bottom:790.587900px;}
.y6c{bottom:794.961435px;}
.y40{bottom:803.343795px;}
.y1bb{bottom:805.869885px;}
.y81{bottom:806.716815px;}
.y14a{bottom:809.067885px;}
.y6{bottom:820.525515px;}
.y3f{bottom:821.823780px;}
.y1ba{bottom:824.349870px;}
.y80{bottom:825.196830px;}
.y6b{bottom:826.197345px;}
.y149{bottom:827.547900px;}
.y3e{bottom:840.303795px;}
.y1b9{bottom:842.829885px;}
.y7f{bottom:843.676815px;}
.y6a{bottom:844.677345px;}
.y148{bottom:846.027885px;}
.y3d{bottom:858.783795px;}
.y1b8{bottom:861.309870px;}
.y7e{bottom:862.156815px;}
.y69{bottom:863.157345px;}
.y147{bottom:864.507885px;}
.y3c{bottom:877.263795px;}
.y7d{bottom:880.636815px;}
.y68{bottom:881.637345px;}
.y146{bottom:882.987885px;}
.y1b7{bottom:895.632360px;}
.y3b{bottom:895.743795px;}
.y67{bottom:900.117345px;}
.y3a{bottom:914.223795px;}
.y66{bottom:918.597345px;}
.y39{bottom:932.703795px;}
.y79{bottom:936.724230px;}
.y4c{bottom:981.434955px;}
.hb{height:43.253174px;}
.ha{height:48.965216px;}
.hd{height:49.280273px;}
.h2{height:50.229492px;}
.hc{height:51.486328px;}
.h9{height:57.493652px;}
.h5{height:58.601074px;}
.h8{height:60.231445px;}
.he{height:61.199775px;}
.h4{height:61.391602px;}
.h6{height:87.609375px;}
.h7{height:94.877930px;}
.h3{height:110.709492px;}
.h0{height:1104.660900px;}
.h1{height:1104.750000px;}
.w1{width:807.000000px;}
.w0{width:807.023400px;}
.x0{left:0.000000px;}
.x1{left:133.511805px;}
.xd{left:142.969635px;}
.xe{left:147.997770px;}
.x9{left:159.020805px;}
.x8{left:161.062620px;}
.xc{left:162.894690px;}
.xb{left:167.486085px;}
.x2{left:171.779520px;}
.xf{left:173.904615px;}
.x7{left:227.051865px;}
.x5{left:359.434860px;}
.x4{left:424.795845px;}
.x6{left:523.164315px;}
.x3{left:571.515555px;}
.xa{left:653.267385px;}
@media print{
.v4{vertical-align:-16.000000pt;}
.v5{vertical-align:-2.645653pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.140267pt;}
.v3{vertical-align:16.000000pt;}
.v2{vertical-align:19.555573pt;}
.v1{vertical-align:53.760000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000053pt;}
.ls2{letter-spacing:1.950507pt;}
.ls3{letter-spacing:2.639947pt;}
.ws0{word-spacing:-14.666667pt;}
.ws1{word-spacing:-14.000000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws2{word-spacing:-8.666667pt;}
.ws7{word-spacing:-8.458493pt;}
.ws5{word-spacing:-8.000000pt;}
.ws3{word-spacing:0.000000pt;}
.ws6{word-spacing:2.928000pt;}
._3{margin-left:-8.069333pt;}
._1{margin-left:-5.802667pt;}
._6{margin-left:-4.537440pt;}
._e{margin-left:-3.003893pt;}
._2{margin-left:-2.085333pt;}
._c{margin-left:-1.056000pt;}
._a{width:1.568000pt;}
._7{width:2.464000pt;}
._9{width:4.032000pt;}
._d{width:5.175040pt;}
._4{width:6.109333pt;}
._f{width:7.079253pt;}
._b{width:8.087040pt;}
._13{width:9.274667pt;}
._11{width:10.368000pt;}
._14{width:11.648000pt;}
._16{width:12.616160pt;}
._12{width:13.669333pt;}
._10{width:14.784000pt;}
._8{width:18.368000pt;}
._15{width:19.530667pt;}
._5{width:25.937973pt;}
._0{width:76.062987pt;}
.fs8{font-size:32.000000pt;}
.fsa{font-size:33.833973pt;}
.fs5{font-size:34.666667pt;}
.fs7{font-size:41.333333pt;}
.fs6{font-size:46.791840pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:56.000000pt;}
.fs9{font-size:57.257493pt;}
.fs1{font-size:58.666667pt;}
.fs3{font-size:85.333333pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:103.341827pt;}
.y7c{bottom:145.387813pt;}
.y15b{bottom:145.387827pt;}
.y3{bottom:145.387840pt;}
.y36{bottom:145.387853pt;}
.y65{bottom:145.387867pt;}
.yc0{bottom:145.387880pt;}
.y1a4{bottom:146.049227pt;}
.y2{bottom:146.049253pt;}
.y7b{bottom:158.827813pt;}
.y15a{bottom:158.827827pt;}
.y35{bottom:158.827840pt;}
.y64{bottom:158.827853pt;}
.ybf{bottom:158.827880pt;}
.y155{bottom:159.489240pt;}
.y16c{bottom:159.489253pt;}
.y1{bottom:160.150667pt;}
.y126{bottom:172.267813pt;}
.y203{bottom:172.267827pt;}
.y34{bottom:172.267840pt;}
.y63{bottom:172.267853pt;}
.ybe{bottom:172.267867pt;}
.y7a{bottom:172.929227pt;}
.y1b6{bottom:172.929240pt;}
.ye5{bottom:172.929253pt;}
.y202{bottom:185.707827pt;}
.y33{bottom:185.707840pt;}
.y62{bottom:185.707853pt;}
.ybd{bottom:185.707867pt;}
.y125{bottom:186.369240pt;}
.yc7{bottom:186.369253pt;}
.yee{bottom:186.369267pt;}
.y1c6{bottom:187.030653pt;}
.y1c{bottom:196.866120pt;}
.y201{bottom:199.147827pt;}
.y32{bottom:199.147840pt;}
.y61{bottom:199.147853pt;}
.ybc{bottom:199.147867pt;}
.y124{bottom:199.809240pt;}
.yd8{bottom:199.809253pt;}
.yed{bottom:199.809267pt;}
.y18c{bottom:200.470653pt;}
.y200{bottom:212.587827pt;}
.y31{bottom:212.587840pt;}
.y60{bottom:212.587853pt;}
.ybb{bottom:212.587867pt;}
.y123{bottom:213.249240pt;}
.yd7{bottom:213.249253pt;}
.yec{bottom:213.249267pt;}
.y1b{bottom:213.292800pt;}
.y18d{bottom:213.910653pt;}
.y16b{bottom:213.910667pt;}
.y1ff{bottom:226.027827pt;}
.y30{bottom:226.027840pt;}
.y5f{bottom:226.027853pt;}
.yba{bottom:226.027867pt;}
.y122{bottom:226.689240pt;}
.yd6{bottom:226.689253pt;}
.yeb{bottom:226.689267pt;}
.y113{bottom:227.350653pt;}
.y154{bottom:227.350667pt;}
.y18b{bottom:228.012067pt;}
.y1a{bottom:229.719480pt;}
.y1fe{bottom:239.467827pt;}
.y2f{bottom:239.467840pt;}
.y5e{bottom:239.467853pt;}
.yb9{bottom:239.467867pt;}
.yd5{bottom:240.129253pt;}
.yea{bottom:240.129267pt;}
.y121{bottom:240.790653pt;}
.y159{bottom:240.790667pt;}
.y1e6{bottom:241.054307pt;}
.y19{bottom:246.146160pt;}
.y9c{bottom:246.704493pt;}
.y1fd{bottom:252.907827pt;}
.y2e{bottom:252.907840pt;}
.y5d{bottom:252.907853pt;}
.yb8{bottom:252.907867pt;}
.y1f7{bottom:253.569240pt;}
.yd4{bottom:253.569253pt;}
.ye9{bottom:253.569267pt;}
.y120{bottom:254.230653pt;}
.y158{bottom:254.230667pt;}
.y1a3{bottom:254.892080pt;}
.y1e5{bottom:257.480987pt;}
.y18{bottom:262.572840pt;}
.y9b{bottom:263.131173pt;}
.y2d{bottom:266.347840pt;}
.y5c{bottom:266.347853pt;}
.yb7{bottom:266.347867pt;}
.yd3{bottom:267.009253pt;}
.ye8{bottom:267.009267pt;}
.y181{bottom:267.638067pt;}
.y11f{bottom:267.670653pt;}
.y157{bottom:267.670667pt;}
.y1b5{bottom:268.332093pt;}
.y18a{bottom:269.400707pt;}
.y17{bottom:278.999520pt;}
.y9a{bottom:279.557853pt;}
.y2c{bottom:279.787840pt;}
.y5b{bottom:279.787853pt;}
.yb6{bottom:279.787867pt;}
.yd2{bottom:280.449253pt;}
.ye7{bottom:280.449267pt;}
.y145{bottom:280.449307pt;}
.y11e{bottom:281.110653pt;}
.y156{bottom:281.110667pt;}
.y153{bottom:281.772080pt;}
.y1b4{bottom:281.772093pt;}
.y180{bottom:284.064747pt;}
.y1e4{bottom:285.246240pt;}
.y1d5{bottom:285.827373pt;}
.y189{bottom:285.827387pt;}
.y2b{bottom:293.227840pt;}
.y5a{bottom:293.227853pt;}
.yb5{bottom:293.227867pt;}
.yd1{bottom:293.889253pt;}
.ye6{bottom:293.889267pt;}
.y144{bottom:293.889307pt;}
.y11d{bottom:294.550653pt;}
.ye4{bottom:294.550680pt;}
.y112{bottom:295.212067pt;}
.y1b3{bottom:295.212093pt;}
.y16{bottom:295.426200pt;}
.y1a2{bottom:295.873507pt;}
.y99{bottom:295.984533pt;}
.y1e3{bottom:301.672920pt;}
.y1d4{bottom:302.254053pt;}
.y188{bottom:302.254067pt;}
.y2a{bottom:306.667840pt;}
.y59{bottom:306.667853pt;}
.yb4{bottom:306.667867pt;}
.yd0{bottom:307.329253pt;}
.y198{bottom:307.329267pt;}
.y143{bottom:307.329293pt;}
.yc6{bottom:307.990667pt;}
.y11c{bottom:308.652080pt;}
.y1b2{bottom:309.313533pt;}
.y98{bottom:312.411213pt;}
.y17f{bottom:313.919853pt;}
.y1e2{bottom:318.099600pt;}
.y16a{bottom:318.099653pt;}
.y1d3{bottom:318.680733pt;}
.y187{bottom:318.680747pt;}
.y29{bottom:320.107840pt;}
.y58{bottom:320.107853pt;}
.yb3{bottom:320.107867pt;}
.y20{bottom:320.769253pt;}
.y4e{bottom:320.769267pt;}
.y142{bottom:320.769293pt;}
.y4{bottom:321.301693pt;}
.ycf{bottom:321.430680pt;}
.y11b{bottom:322.092080pt;}
.y111{bottom:322.753493pt;}
.y1b1{bottom:322.753520pt;}
.y97{bottom:328.837893pt;}
.y17e{bottom:330.346533pt;}
.y10b{bottom:333.547840pt;}
.yb2{bottom:333.547867pt;}
.y1f5{bottom:334.209253pt;}
.y28{bottom:334.209267pt;}
.y57{bottom:334.209280pt;}
.y141{bottom:334.209293pt;}
.y1e1{bottom:334.526280pt;}
.y169{bottom:334.526333pt;}
.yce{bottom:334.870680pt;}
.y1d2{bottom:335.107413pt;}
.y186{bottom:335.107427pt;}
.y11a{bottom:336.193493pt;}
.y1b0{bottom:336.193520pt;}
.y96{bottom:345.264573pt;}
.y17d{bottom:346.773213pt;}
.y10a{bottom:346.987840pt;}
.y102{bottom:347.649253pt;}
.y27{bottom:347.649267pt;}
.y56{bottom:347.649280pt;}
.y140{bottom:347.649293pt;}
.yb1{bottom:347.649320pt;}
.ycd{bottom:348.310680pt;}
.y119{bottom:349.633493pt;}
.y1af{bottom:349.633520pt;}
.y110{bottom:350.294907pt;}
.y168{bottom:350.953013pt;}
.y1d1{bottom:351.534093pt;}
.y185{bottom:351.534107pt;}
.y1f4{bottom:361.089253pt;}
.y26{bottom:361.089267pt;}
.y55{bottom:361.089280pt;}
.y13f{bottom:361.089293pt;}
.yb0{bottom:361.089320pt;}
.y100{bottom:361.691240pt;}
.y95{bottom:361.691253pt;}
.y1e9{bottom:361.750667pt;}
.ycc{bottom:361.750680pt;}
.y1e0{bottom:362.291533pt;}
.yc5{bottom:362.412093pt;}
.y1e7{bottom:362.872680pt;}
.y1ae{bottom:363.073520pt;}
.y17c{bottom:363.199893pt;}
.y118{bottom:363.734907pt;}
.y15{bottom:367.740520pt;}
.y197{bottom:367.960787pt;}
.y1fc{bottom:374.529253pt;}
.y25{bottom:374.529267pt;}
.y54{bottom:374.529280pt;}
.y13e{bottom:374.529293pt;}
.yaf{bottom:374.529320pt;}
.y1f3{bottom:375.190693pt;}
.ycb{bottom:375.852093pt;}
.y1ad{bottom:376.513520pt;}
.y167{bottom:376.828427pt;}
.y117{bottom:377.174907pt;}
.yff{bottom:378.117920pt;}
.y1df{bottom:378.718213pt;}
.y1d0{bottom:379.299347pt;}
.y184{bottom:379.299360pt;}
.y17b{bottom:379.626573pt;}
.y14{bottom:383.420520pt;}
.y196{bottom:384.387467pt;}
.y1fb{bottom:387.969253pt;}
.y24{bottom:387.969267pt;}
.y53{bottom:387.969280pt;}
.y13d{bottom:387.969293pt;}
.yae{bottom:387.969320pt;}
.y1f{bottom:388.630680pt;}
.y1f2{bottom:388.630693pt;}
.yca{bottom:389.292093pt;}
.y1ac{bottom:389.953520pt;}
.y116{bottom:390.614907pt;}
.y94{bottom:391.546347pt;}
.y166{bottom:393.255093pt;}
.y15c{bottom:393.255133pt;}
.yfe{bottom:394.544600pt;}
.y1de{bottom:395.144893pt;}
.y1cf{bottom:395.726027pt;}
.y183{bottom:395.726040pt;}
.y17a{bottom:396.053253pt;}
.y13{bottom:399.100520pt;}
.y195{bottom:400.814147pt;}
.y1fa{bottom:401.409253pt;}
.y109{bottom:401.409267pt;}
.y52{bottom:401.409280pt;}
.y13c{bottom:401.409293pt;}
.yad{bottom:401.409320pt;}
.y23{bottom:402.070680pt;}
.y1f1{bottom:402.070693pt;}
.yc9{bottom:402.732093pt;}
.y1ab{bottom:403.393520pt;}
.y115{bottom:404.054907pt;}
.y93{bottom:407.973027pt;}
.yfd{bottom:410.971280pt;}
.y1dd{bottom:411.571573pt;}
.y1ce{bottom:412.152707pt;}
.y182{bottom:412.152720pt;}
.y179{bottom:412.479933pt;}
.y12{bottom:414.780520pt;}
.y1f9{bottom:414.849253pt;}
.y108{bottom:414.849267pt;}
.y51{bottom:414.849280pt;}
.y13b{bottom:414.849293pt;}
.yac{bottom:414.849320pt;}
.y22{bottom:415.425800pt;}
.y1f0{bottom:415.510693pt;}
.yc8{bottom:416.172093pt;}
.y1aa{bottom:416.833520pt;}
.y194{bottom:417.240827pt;}
.y114{bottom:417.494907pt;}
.y10f{bottom:418.156320pt;}
.y92{bottom:424.399707pt;}
.yfc{bottom:427.397960pt;}
.y1dc{bottom:427.998253pt;}
.y1f8{bottom:428.289253pt;}
.y107{bottom:428.289267pt;}
.y50{bottom:428.289280pt;}
.y13a{bottom:428.289293pt;}
.yab{bottom:428.289320pt;}
.y1cd{bottom:428.579387pt;}
.y165{bottom:428.579400pt;}
.y178{bottom:428.906613pt;}
.y1f6{bottom:428.950667pt;}
.y21{bottom:428.950680pt;}
.y1ef{bottom:428.950693pt;}
.y1e{bottom:429.612093pt;}
.yc4{bottom:430.273507pt;}
.y1a9{bottom:430.273520pt;}
.y11{bottom:430.460520pt;}
.y193{bottom:433.667507pt;}
.y1a0{bottom:437.110467pt;}
.y91{bottom:440.826387pt;}
.y106{bottom:441.729267pt;}
.y4f{bottom:441.729280pt;}
.y139{bottom:441.729293pt;}
.yaa{bottom:441.729307pt;}
.y4d{bottom:442.390693pt;}
.y1a8{bottom:443.713520pt;}
.yfb{bottom:443.824640pt;}
.y1db{bottom:444.424933pt;}
.y1cc{bottom:445.006067pt;}
.y164{bottom:445.006080pt;}
.y177{bottom:445.333293pt;}
.y10{bottom:446.140520pt;}
.y192{bottom:450.094187pt;}
.y19f{bottom:453.537147pt;}
.y105{bottom:455.169267pt;}
.y138{bottom:455.169293pt;}
.ya9{bottom:455.169307pt;}
.y1ee{bottom:455.830693pt;}
.y1a7{bottom:457.153520pt;}
.yfa{bottom:460.251320pt;}
.y1da{bottom:460.851613pt;}
.y1cb{bottom:461.432747pt;}
.y163{bottom:461.432760pt;}
.y176{bottom:461.759973pt;}
.yf{bottom:461.820520pt;}
.y104{bottom:468.609267pt;}
.y137{bottom:468.609293pt;}
.ya8{bottom:468.609307pt;}
.y1ed{bottom:469.270693pt;}
.y130{bottom:469.270707pt;}
.y19e{bottom:469.963827pt;}
.y1a6{bottom:470.593520pt;}
.y90{bottom:470.681493pt;}
.y4b{bottom:474.988400pt;}
.yf9{bottom:476.678000pt;}
.y1d9{bottom:477.278293pt;}
.ye{bottom:477.500520pt;}
.y1ca{bottom:477.859427pt;}
.y162{bottom:477.859440pt;}
.y103{bottom:482.049267pt;}
.ya7{bottom:482.049307pt;}
.y101{bottom:482.710680pt;}
.y1ec{bottom:482.710693pt;}
.y136{bottom:482.710720pt;}
.y1a5{bottom:484.033520pt;}
.y1a1{bottom:484.694933pt;}
.y12e{bottom:486.390493pt;}
.y19d{bottom:486.390507pt;}
.y8f{bottom:487.108173pt;}
.ye3{bottom:489.198000pt;}
.y4a{bottom:491.415080pt;}
.y175{bottom:491.615067pt;}
.yf8{bottom:493.104680pt;}
.y5{bottom:493.180507pt;}
.yd{bottom:493.180520pt;}
.y1c9{bottom:494.286107pt;}
.y161{bottom:494.286120pt;}
.ya6{bottom:495.489307pt;}
.y1eb{bottom:496.150693pt;}
.y135{bottom:496.150720pt;}
.y12d{bottom:502.817173pt;}
.y19c{bottom:502.817187pt;}
.y1d8{bottom:503.153773pt;}
.y8e{bottom:503.534853pt;}
.ye2{bottom:505.624680pt;}
.y174{bottom:508.041747pt;}
.ya5{bottom:508.929307pt;}
.y78{bottom:509.512307pt;}
.y1ea{bottom:509.590693pt;}
.y134{bottom:509.590720pt;}
.y1e8{bottom:510.252107pt;}
.y1c8{bottom:510.712787pt;}
.y160{bottom:510.712800pt;}
.y12c{bottom:519.243853pt;}
.y19b{bottom:519.243867pt;}
.y49{bottom:519.380413pt;}
.y1d6{bottom:519.580440pt;}
.y8d{bottom:519.961533pt;}
.ye1{bottom:522.051360pt;}
.ya4{bottom:522.369307pt;}
.yf7{bottom:522.959773pt;}
.y133{bottom:523.030720pt;}
.y173{bottom:524.468427pt;}
.y77{bottom:525.938987pt;}
.y1c7{bottom:527.139467pt;}
.y15f{bottom:527.139480pt;}
.y12b{bottom:535.670533pt;}
.y48{bottom:535.807080pt;}
.ya3{bottom:535.809307pt;}
.y8c{bottom:536.388213pt;}
.y132{bottom:536.470720pt;}
.y1c5{bottom:537.588693pt;}
.ye0{bottom:538.478040pt;}
.yf6{bottom:539.386453pt;}
.y172{bottom:540.895107pt;}
.y76{bottom:542.365667pt;}
.y15e{bottom:543.566160pt;}
.y19a{bottom:547.209160pt;}
.y199{bottom:547.209173pt;}
.ya2{bottom:549.249307pt;}
.y131{bottom:549.910720pt;}
.y12f{bottom:550.572133pt;}
.y12a{bottom:552.097213pt;}
.y38{bottom:552.233747pt;}
.y8b{bottom:552.814893pt;}
.y1c4{bottom:554.015373pt;}
.yc{bottom:554.438933pt;}
.ydf{bottom:554.904720pt;}
.y1d7{bottom:554.904733pt;}
.yf5{bottom:555.813133pt;}
.y10e{bottom:555.813147pt;}
.y171{bottom:557.321787pt;}
.y75{bottom:558.792347pt;}
.y191{bottom:559.992840pt;}
.ya1{bottom:562.689307pt;}
.y129{bottom:568.523893pt;}
.y8a{bottom:569.241573pt;}
.y1c3{bottom:570.442053pt;}
.yb{bottom:570.865613pt;}
.yde{bottom:571.331400pt;}
.y15d{bottom:571.331413pt;}
.yf4{bottom:572.239813pt;}
.y10d{bottom:572.239827pt;}
.y170{bottom:573.748467pt;}
.y74{bottom:575.219027pt;}
.ya0{bottom:576.129307pt;}
.y190{bottom:576.419520pt;}
.y47{bottom:580.199027pt;}
.y37{bottom:580.199053pt;}
.y89{bottom:585.668253pt;}
.y1c2{bottom:586.868733pt;}
.ya{bottom:587.292267pt;}
.ydd{bottom:587.758080pt;}
.y152{bottom:587.758093pt;}
.yf3{bottom:588.666493pt;}
.y10c{bottom:588.666507pt;}
.y9f{bottom:589.569307pt;}
.y16f{bottom:590.175147pt;}
.y73{bottom:591.645707pt;}
.y18f{bottom:592.846200pt;}
.y128{bottom:596.489213pt;}
.y88{bottom:602.094933pt;}
.y9e{bottom:603.009307pt;}
.y9d{bottom:603.670720pt;}
.ydc{bottom:604.184760pt;}
.y151{bottom:604.184773pt;}
.yf2{bottom:605.093173pt;}
.y16e{bottom:606.601827pt;}
.y72{bottom:608.072387pt;}
.y18e{bottom:609.272880pt;}
.y127{bottom:612.915880pt;}
.y46{bottom:615.523347pt;}
.y1c1{bottom:617.768760pt;}
.y87{bottom:618.521613pt;}
.ydb{bottom:620.611440pt;}
.y150{bottom:620.611453pt;}
.yf1{bottom:621.519853pt;}
.y71{bottom:624.499067pt;}
.y45{bottom:631.950027pt;}
.y1c0{bottom:634.195440pt;}
.y16d{bottom:634.567147pt;}
.y86{bottom:634.948293pt;}
.y9{bottom:636.644160pt;}
.yc3{bottom:637.038120pt;}
.y14f{bottom:637.038133pt;}
.yf0{bottom:637.946507pt;}
.y70{bottom:640.925720pt;}
.y44{bottom:648.376707pt;}
.y1bf{bottom:650.622120pt;}
.y85{bottom:651.374947pt;}
.yc2{bottom:653.464773pt;}
.y14e{bottom:653.464787pt;}
.yef{bottom:654.373187pt;}
.y6f{bottom:657.352400pt;}
.y8{bottom:662.030840pt;}
.y43{bottom:664.803360pt;}
.y1be{bottom:667.048773pt;}
.y84{bottom:667.801627pt;}
.yc1{bottom:669.891453pt;}
.y14d{bottom:669.891467pt;}
.y6e{bottom:673.779053pt;}
.y42{bottom:681.230040pt;}
.y1bd{bottom:683.475453pt;}
.y83{bottom:684.228280pt;}
.yda{bottom:686.318107pt;}
.y14c{bottom:686.318120pt;}
.y7{bottom:687.417520pt;}
.y6d{bottom:690.205733pt;}
.y41{bottom:697.656693pt;}
.y1bc{bottom:699.902107pt;}
.y82{bottom:700.654960pt;}
.yd9{bottom:702.744787pt;}
.y14b{bottom:702.744800pt;}
.y6c{bottom:706.632387pt;}
.y40{bottom:714.083373pt;}
.y1bb{bottom:716.328787pt;}
.y81{bottom:717.081613pt;}
.y14a{bottom:719.171453pt;}
.y6{bottom:729.356013pt;}
.y3f{bottom:730.510027pt;}
.y1ba{bottom:732.755440pt;}
.y80{bottom:733.508293pt;}
.y6b{bottom:734.397640pt;}
.y149{bottom:735.598133pt;}
.y3e{bottom:746.936707pt;}
.y1b9{bottom:749.182120pt;}
.y7f{bottom:749.934947pt;}
.y6a{bottom:750.824307pt;}
.y148{bottom:752.024787pt;}
.y3d{bottom:763.363373pt;}
.y1b8{bottom:765.608773pt;}
.y7e{bottom:766.361613pt;}
.y69{bottom:767.250973pt;}
.y147{bottom:768.451453pt;}
.y3c{bottom:779.790040pt;}
.y7d{bottom:782.788280pt;}
.y68{bottom:783.677640pt;}
.y146{bottom:784.878120pt;}
.y1b7{bottom:796.117653pt;}
.y3b{bottom:796.216707pt;}
.y67{bottom:800.104307pt;}
.y3a{bottom:812.643373pt;}
.y66{bottom:816.530973pt;}
.y39{bottom:829.070040pt;}
.y79{bottom:832.643760pt;}
.y4c{bottom:872.386627pt;}
.hb{height:38.447266pt;}
.ha{height:43.524636pt;}
.hd{height:43.804688pt;}
.h2{height:44.648438pt;}
.hc{height:45.765625pt;}
.h9{height:51.105469pt;}
.h5{height:52.089844pt;}
.h8{height:53.539062pt;}
.he{height:54.399800pt;}
.h4{height:54.570312pt;}
.h6{height:77.875000pt;}
.h7{height:84.335938pt;}
.h3{height:98.408438pt;}
.h0{height:981.920800pt;}
.h1{height:982.000000pt;}
.w1{width:717.333333pt;}
.w0{width:717.354133pt;}
.x0{left:0.000000pt;}
.x1{left:118.677160pt;}
.xd{left:127.084120pt;}
.xe{left:131.553573pt;}
.x9{left:141.351827pt;}
.x8{left:143.166773pt;}
.xc{left:144.795280pt;}
.xb{left:148.876520pt;}
.x2{left:152.692907pt;}
.xf{left:154.581880pt;}
.x7{left:201.823880pt;}
.x5{left:319.497653pt;}
.x4{left:377.596307pt;}
.x6{left:465.034947pt;}
.x3{left:508.013827pt;}
.xa{left:580.682120pt;}
}




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