
    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_aca1696f3dc1d6a77fb730ee.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.708008;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_1da7c9ae622e766d8b98f9e4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_f7c3323877daa96df9b90e87.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_e40a5699d5b6818502767658.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.283203;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_a9cf4e3d0fb661e475a9839e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.962402;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_c9308e42b3e82adaf9d93ed6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_7af474c313d721bb6e23f325.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.945312;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_a1c0b089e478bd6154b9e2f5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.945312;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_0a85c2f51d5cc8ccf7f7e930.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.962402;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_313bc1d82e92b3a43d6491ce.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.172852;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_f2594e8d4b9f3f5b853c8d97.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.767578;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);}
.m2{transform:matrix(0.250181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250181,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:-1.803154px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:32.455987px;}
.v3{vertical-align:57.699592px;}
.ls1f{letter-spacing:-0.901555px;}
.ls22{letter-spacing:-0.576995px;}
.ls26{letter-spacing:-0.513886px;}
.ls27{letter-spacing:-0.510881px;}
.ls29{letter-spacing:-0.504871px;}
.ls18{letter-spacing:-0.378653px;}
.ls13{letter-spacing:-0.348601px;}
.ls1a{letter-spacing:-0.318550px;}
.ls15{letter-spacing:-0.300518px;}
.ls10{letter-spacing:-0.295710px;}
.ls1c{letter-spacing:-0.252435px;}
.ls14{letter-spacing:-0.189327px;}
.ls1d{letter-spacing:-0.180311px;}
.ls5{letter-spacing:-0.144000px;}
.ls1e{letter-spacing:-0.135233px;}
.lsd{letter-spacing:-0.081600px;}
.ls12{letter-spacing:-0.072124px;}
.ls4{letter-spacing:-0.072000px;}
.ls17{letter-spacing:-0.014425px;}
.ls0{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.007212px;}
.ls16{letter-spacing:0.010819px;}
.ls6{letter-spacing:0.045360px;}
.ls3{letter-spacing:0.047956px;}
.ls19{letter-spacing:0.073928px;}
.ls8{letter-spacing:0.090600px;}
.ls7{letter-spacing:0.134400px;}
.ls2{letter-spacing:0.143912px;}
.lsc{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.144095px;}
.lse{letter-spacing:0.174392px;}
.ls24{letter-spacing:0.234404px;}
.ls23{letter-spacing:0.342591px;}
.ls21{letter-spacing:0.450723px;}
.ls25{letter-spacing:0.535524px;}
.ls11{letter-spacing:0.561969px;}
.ls20{letter-spacing:0.564975px;}
.ls1b{letter-spacing:0.649120px;}
.ls28{letter-spacing:1.278000px;}
.lsa{letter-spacing:60.525357px;}
.lsb{letter-spacing:97.725385px;}
.ls9{letter-spacing:844.104007px;}
.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;}
}
.wse{word-spacing:-70.676640px;}
.ws1{word-spacing:-51.984000px;}
.wsc{word-spacing:-33.326639px;}
.ws9{word-spacing:-26.721360px;}
.wsa{word-spacing:-26.639760px;}
.wsd{word-spacing:-23.566653px;}
.wsb{word-spacing:-20.160000px;}
.ws2{word-spacing:-20.016000px;}
.ws3{word-spacing:-19.944000px;}
.ws4{word-spacing:-19.872000px;}
.ws8{word-spacing:-18.449039px;}
.ws6{word-spacing:-18.405239px;}
.ws7{word-spacing:-18.359999px;}
.ws5{word-spacing:-18.314639px;}
.ws0{word-spacing:0.000000px;}
._11{margin-left:-23.221566px;}
._13{margin-left:-18.648044px;}
._f{margin-left:-17.396513px;}
._10{margin-left:-15.631058px;}
._12{margin-left:-9.664054px;}
._14{margin-left:-5.640004px;}
._a{margin-left:-4.248000px;}
._b{margin-left:-3.086620px;}
._1b{margin-left:-2.073577px;}
._0{margin-left:-1.022040px;}
._1{width:1.286620px;}
._2{width:2.580314px;}
._16{width:4.293891px;}
._e{width:5.904000px;}
._19{width:7.416000px;}
._9{width:8.640000px;}
._3{width:9.936000px;}
._1f{width:12.951614px;}
._20{width:16.035662px;}
._18{width:18.624020px;}
._17{width:28.333481px;}
._8{width:29.808000px;}
._c{width:31.688279px;}
._1a{width:34.200000px;}
._d{width:43.678438px;}
._4{width:72.432000px;}
._5{width:73.512000px;}
._6{width:172.473102px;}
._7{width:202.412862px;}
._1d{width:211.348580px;}
._1e{width:418.319540px;}
._15{width:844.104007px;}
._1c{width:1301.217807px;}
.fca{color:rgb(0,112,192);}
.fc9{color:rgb(94,174,255);}
.fc8{color:transparent;}
.fc7{color:rgb(7,62,135);}
.fc6{color:rgb(255,0,0);}
.fc3{color:rgb(243,149,120);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(191,191,191);}
.fc2{color:rgb(64,64,64);}
.fc1{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:6.120000px;}
.fsb{font-size:32.455987px;}
.fsa{font-size:33.057024px;}
.fsf{font-size:36.062208px;}
.fs8{font-size:41.471539px;}
.fs10{font-size:42.072576px;}
.fs5{font-size:43.200000px;}
.fs9{font-size:48.683981px;}
.fse{font-size:49.285018px;}
.fsc{font-size:54.093312px;}
.fsd{font-size:54.694349px;}
.fs2{font-size:60.120000px;}
.fs4{font-size:65.879997px;}
.fs6{font-size:69.120000px;}
.fs1{font-size:72.000000px;}
.fs11{font-size:72.124416px;}
.fs7{font-size:96.120000px;}
.fs3{font-size:119.879997px;}
.y0{bottom:0.000000px;}
.yfb{bottom:5.534655px;}
.ya6{bottom:5.985432px;}
.y105{bottom:7.337615px;}
.y40{bottom:12.960022px;}
.y19{bottom:14.129974px;}
.y2f{bottom:14.129998px;}
.y1f{bottom:14.130020px;}
.y15{bottom:14.130066px;}
.y34{bottom:14.160004px;}
.y3e{bottom:15.569962px;}
.y9d{bottom:21.011202px;}
.ya5{bottom:21.912757px;}
.y3a{bottom:21.959930px;}
.y48{bottom:21.960022px;}
.y45{bottom:22.050018px;}
.ya7{bottom:25.969755px;}
.y113{bottom:27.322089px;}
.y3c{bottom:30.959930px;}
.y44{bottom:31.050018px;}
.ya4{bottom:36.337639px;}
.y116{bottom:44.000860px;}
.y18{bottom:45.179993px;}
.y33{bottom:45.210022px;}
.ye5{bottom:50.311745px;}
.y47{bottom:50.400009px;}
.y104{bottom:56.171855px;}
.y49{bottom:59.400009px;}
.ye4{bottom:60.228853px;}
.ycd{bottom:60.679628px;}
.yc5{bottom:63.384297px;}
.y115{bottom:65.638185px;}
.y107{bottom:66.990515px;}
.ya3{bottom:68.793628px;}
.y9a{bottom:70.145959px;}
.ycc{bottom:70.596738px;}
.y103{bottom:72.399849px;}
.ydc{bottom:75.101509px;}
.yc4{bottom:76.003064px;}
.y17{bottom:76.229919px;}
.y1b{bottom:76.230011px;}
.ycb{bottom:80.510840px;}
.yce{bottom:84.117060px;}
.y114{bottom:87.272504px;}
.ydb{bottom:87.723282px;}
.ya0{bottom:91.329502px;}
.y9{bottom:105.209999px;}
.ya8{bottom:105.303605px;}
.y9f{bottom:105.754386px;}
.y9e{bottom:120.179262px;}
.yc3{bottom:122.433157px;}
.yfa{bottom:128.293266px;}
.y8{bottom:131.129997px;}
.y9c{bottom:137.759590px;}
.yf7{bottom:139.111925px;}
.yfd{bottom:141.480000px;}
.y97{bottom:141.816594px;}
.yed{bottom:142.740005px;}
.y53{bottom:143.459999px;}
.yf9{bottom:144.521259px;}
.yd3{bottom:145.873586px;}
.y9b{bottom:152.184473px;}
.yd2{bottom:155.790699px;}
.y96{bottom:156.241477px;}
.yf{bottom:157.950005px;}
.ye6{bottom:159.396920px;}
.yb9{bottom:162.101586px;}
.y31{bottom:162.450005px;}
.yef{bottom:163.080002px;}
.yd1{bottom:165.707807px;}
.y10c{bottom:166.230000px;}
.yf8{bottom:174.723353px;}
.yd0{bottom:175.624914px;}
.y52{bottom:179.910004px;}
.y102{bottom:182.386576px;}
.y8a{bottom:182.430004px;}
.ybf{bottom:183.288133px;}
.y78{bottom:184.950005px;}
.ycf{bottom:185.542020px;}
.ya2{bottom:185.992793px;}
.y109{bottom:186.894354px;}
.yb7{bottom:187.345128px;}
.yb0{bottom:188.279995px;}
.yb4{bottom:191.430004px;}
.ybe{bottom:195.909906px;}
.yb6{bottom:198.163794px;}
.ye{bottom:198.360008px;}
.yd7{bottom:198.614568px;}
.ya1{bottom:200.417677px;}
.yfe{bottom:201.770012px;}
.y108{bottom:203.122347px;}
.y95{bottom:207.630123px;}
.ybd{bottom:208.531673px;}
.y10b{bottom:210.690010px;}
.y99{bottom:215.744120px;}
.y77{bottom:216.000000px;}
.y51{bottom:216.360008px;}
.y94{bottom:222.055007px;}
.y30{bottom:225.269989px;}
.yd6{bottom:225.629997px;}
.ybc{bottom:227.464336px;}
.y98{bottom:231.972114px;}
.yd9{bottom:233.775224px;}
.yd{bottom:238.860008px;}
.ybb{bottom:243.692328px;}
.yf6{bottom:244.593876px;}
.y10a{bottom:245.519989px;}
.yc6{bottom:246.396997px;}
.y117{bottom:246.733314px;}
.y76{bottom:247.049995px;}
.y93{bottom:248.200122px;}
.yd8{bottom:250.003216px;}
.y50{bottom:252.809990px;}
.ye8{bottom:252.858143px;}
.y2e{bottom:257.040000px;}
.y92{bottom:257.816696px;}
.yf5{bottom:259.169029px;}
.ye7{bottom:265.479924px;}
.yc0{bottom:267.733803px;}
.yf4{bottom:273.593906px;}
.y119{bottom:276.749394px;}
.yc{bottom:279.299995px;}
.yda{bottom:279.904793px;}
.y112{bottom:282.609464px;}
.yb8{bottom:285.314130px;}
.y4f{bottom:289.290000px;}
.y75{bottom:291.900009px;}
.y2d{bottom:302.429993px;}
.yb{bottom:308.910004px;}
.y106{bottom:311.459231px;}
.ye9{bottom:311.910019px;}
.yca{bottom:314.614661px;}
.yc9{bottom:324.531794px;}
.ydf{bottom:325.433336px;}
.y4e{bottom:325.740005px;}
.ye3{bottom:326.334888px;}
.yf0{bottom:327.687224px;}
.yaa{bottom:328.138011px;}
.y2c{bottom:332.219994px;}
.yc8{bottom:334.448899px;}
.ye2{bottom:336.251993px;}
.y74{bottom:337.530006px;}
.yde{bottom:338.055109px;}
.y111{bottom:341.661330px;}
.ya9{bottom:342.562881px;}
.yc7{bottom:344.366004px;}
.ye1{bottom:346.169098px;}
.y101{bottom:347.070674px;}
.yf3{bottom:347.521433px;}
.ydd{bottom:350.676891px;}
.y10e{bottom:355.184656px;}
.ye0{bottom:356.086203px;}
.yba{bottom:357.438538px;}
.y91{bottom:360.143208px;}
.y100{bottom:361.495544px;}
.y2b{bottom:361.559990px;}
.yf2{bottom:361.946331px;}
.y4d{bottom:362.280006px;}
.y110{bottom:363.298667px;}
.y118{bottom:364.200276px;}
.y8e{bottom:364.651002px;}
.y73{bottom:368.580002px;}
.y90{bottom:374.568107px;}
.ya{bottom:374.969994px;}
.yc2{bottom:375.469650px;}
.yff{bottom:375.920442px;}
.yf1{bottom:376.371201px;}
.y10d{bottom:376.821983px;}
.y8d{bottom:377.272748px;}
.y10f{bottom:384.935971px;}
.yc1{bottom:388.091423px;}
.y8f{bottom:388.992976px;}
.y8c{bottom:389.894523px;}
.y2a{bottom:398.009995px;}
.y4c{bottom:398.730011px;}
.y72{bottom:399.630020px;}
.y71{bottom:430.679993px;}
.y29{bottom:434.460022px;}
.y7{bottom:435.269989px;}
.y4b{bottom:436.439987px;}
.y6{bottom:453.269989px;}
.y5{bottom:455.880020px;}
.y4{bottom:458.490005px;}
.y3{bottom:461.099991px;}
.y70{bottom:461.730011px;}
.y4a{bottom:462.000000px;}
.y89{bottom:470.009995px;}
.y28{bottom:471.000000px;}
.y2{bottom:472.890015px;}
.y6f{bottom:492.779984px;}
.y27{bottom:507.449982px;}
.yfc{bottom:511.410004px;}
.y88{bottom:514.470016px;}
.yee{bottom:516.990005px;}
.y6e{bottom:523.830002px;}
.y26{bottom:531.480011px;}
.yaf{bottom:533.460022px;}
.yec{bottom:535.169998px;}
.y46{bottom:537.689987px;}
.y60{bottom:539.130020px;}
.y87{bottom:549.300018px;}
.y8b{bottom:550.483422px;}
.yd5{bottom:552.810013px;}
.y6d{bottom:554.880020px;}
.y25{bottom:563.250000px;}
.yeb{bottom:570.990005px;}
.yae{bottom:574.859985px;}
.y5f{bottom:580.890015px;}
.yb3{bottom:583.859985px;}
.y11c{bottom:585.300018px;}
.yd4{bottom:589.439987px;}
.y24{bottom:595.109985px;}
.y6c{bottom:607.349991px;}
.y11b{bottom:612.570007px;}
.y43{bottom:613.289978px;}
.yea{bottom:615.539978px;}
.y5e{bottom:617.519989px;}
.yad{bottom:619.320007px;}
.y23{bottom:626.880020px;}
.yb2{bottom:628.320007px;}
.y5d{bottom:648.570007px;}
.yac{bottom:654.150009px;}
.y22{bottom:658.650009px;}
.yb1{bottom:663.150009px;}
.yb5{bottom:664.333413px;}
.y5c{bottom:679.650009px;}
.y42{bottom:682.529984px;}
.y21{bottom:690.539978px;}
.y6b{bottom:698.730011px;}
.y5b{bottom:710.699982px;}
.y41{bottom:719.970016px;}
.y20{bottom:722.310013px;}
.y6a{bottom:729.779984px;}
.y3f{bottom:736.259995px;}
.y5a{bottom:741.750000px;}
.y1e{bottom:754.080002px;}
.y69{bottom:760.830002px;}
.y83{bottom:763.710022px;}
.y3d{bottom:765.419998px;}
.y68{bottom:791.879974px;}
.y82{bottom:794.760040px;}
.y3b{bottom:797.280029px;}
.y1d{bottom:800.070007px;}
.y1c{bottom:817.710022px;}
.y67{bottom:822.929993px;}
.y81{bottom:825.809967px;}
.y39{bottom:844.440033px;}
.y1{bottom:845.969971px;}
.y1a{bottom:849.480011px;}
.y66{bottom:853.980011px;}
.y80{bottom:856.859985px;}
.y59{bottom:882.149963px;}
.y65{bottom:885.030029px;}
.y7f{bottom:887.910004px;}
.y58{bottom:911.760040px;}
.y38{bottom:913.649963px;}
.y64{bottom:916.079956px;}
.y7e{bottom:918.960022px;}
.y57{bottom:942.809967px;}
.y16{bottom:943.350037px;}
.y7d{bottom:950.010040px;}
.y37{bottom:951.269989px;}
.y63{bottom:960.899963px;}
.y86{bottom:970.710022px;}
.y56{bottom:973.500000px;}
.y36{bottom:975.300018px;}
.y7c{bottom:981.059967px;}
.y85{bottom:1001.760040px;}
.y62{bottom:1011.210022px;}
.y7b{bottom:1012.109985px;}
.y11a{bottom:1027.500000px;}
.y14{bottom:1037.309967px;}
.y35{bottom:1038.210022px;}
.y7a{bottom:1043.160004px;}
.y84{bottom:1058.550018px;}
.y61{bottom:1061.609985px;}
.y55{bottom:1068.899963px;}
.y32{bottom:1069.980011px;}
.y13{bottom:1104.660004px;}
.y79{bottom:1104.750000px;}
.y54{bottom:1110.329956px;}
.yab{bottom:1110.420044px;}
.y12{bottom:1146.960022px;}
.y11{bottom:1178.010040px;}
.y10{bottom:1200.385530px;}
.h3{height:4.249336px;}
.h13{height:28.439999px;}
.h1e{height:29.096285px;}
.h1d{height:29.635106px;}
.ha{height:31.050000px;}
.hc{height:31.079999px;}
.h23{height:32.281663px;}
.h22{height:35.868515px;}
.h1b{height:41.248792px;}
.h25{height:41.846600px;}
.h8{height:42.335156px;}
.h12{height:46.439999px;}
.h14{height:46.530000px;}
.h1c{height:48.422495px;}
.h21{height:49.020303px;}
.he{height:51.975000px;}
.h18{height:53.121094px;}
.h1f{height:53.802772px;}
.h5{height:53.896641px;}
.hf{height:54.140625px;}
.h20{height:54.400580px;}
.h7{height:59.060388px;}
.hd{height:59.797090px;}
.h10{height:62.100002px;}
.h11{height:62.129997px;}
.h4{height:64.546875px;}
.h16{height:65.526150px;}
.h26{height:71.737029px;}
.h24{height:73.704779px;}
.h15{height:74.879997px;}
.h17{height:86.170078px;}
.h9{height:90.144139px;}
.hb{height:93.149998px;}
.h19{height:95.603730px;}
.h6{height:107.470544px;}
.h27{height:111.502364px;}
.h1a{height:405.699840px;}
.h28{height:405.699948px;}
.h2{height:1262.969971px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w7{width:52.110003px;}
.wa{width:94.620003px;}
.wb{width:114.209999px;}
.w8{width:116.220005px;}
.wf{width:116.279995px;}
.w5{width:251.129997px;}
.w3{width:253.830002px;}
.wd{width:263.459999px;}
.we{width:296.759995px;}
.w9{width:467.039978px;}
.w4{width:479.580002px;}
.w6{width:482.910004px;}
.wc{width:501.000000px;}
.w10{width:721.765595px;}
.w1{width:892.500000px;}
.w2{width:892.529987px;}
.w0{width:892.530000px;}
.x0{left:0.000000px;}
.x6{left:8.280001px;}
.x2d{left:21.377320px;}
.x50{left:26.640159px;}
.x47{left:27.843136px;}
.x6b{left:30.248999px;}
.x64{left:33.256343px;}
.x5b{left:38.368881px;}
.x2e{left:46.789457px;}
.x20{left:48.142838px;}
.x60{left:49.345766px;}
.x30{left:52.052311px;}
.x40{left:54.007164px;}
.x2f{left:58.518179px;}
.x59{left:61.224840px;}
.x61{left:63.630713px;}
.x57{left:67.840992px;}
.x23{left:69.645384px;}
.x6c{left:75.509777px;}
.x5{left:77.129997px;}
.x58{left:79.118606px;}
.x2{left:85.049987px;}
.x24{left:87.238423px;}
.xf{left:103.049982px;}
.x12{left:108.590602px;}
.x11{left:123.326638px;}
.x9{left:129.959999px;}
.x1e{left:133.100615px;}
.x48{left:141.821922px;}
.x67{left:144.678871px;}
.x1f{left:145.731515px;}
.x49{left:151.896570px;}
.x13{left:166.181476px;}
.xa{left:172.560000px;}
.x31{left:174.752469px;}
.x2a{left:189.789227px;}
.xe{left:200.279993px;}
.x1c{left:205.728251px;}
.x56{left:213.998500px;}
.x1d{left:232.493756px;}
.x3{left:246.539987px;}
.x63{left:254.748202px;}
.x62{left:258.808135px;}
.x6f{left:276.852193px;}
.xb{left:287.490005px;}
.x4a{left:290.234941px;}
.x35{left:293.091934px;}
.x38{left:300.309628px;}
.x17{left:304.820614px;}
.x5f{left:323.616606px;}
.x8{left:328.980011px;}
.x7{left:331.769989px;}
.xc{left:341.400009px;}
.x5c{left:358.050799px;}
.x5e{left:364.817372px;}
.x5d{left:366.772136px;}
.x68{left:381.357798px;}
.x33{left:384.816330px;}
.x37{left:397.447152px;}
.x6d{left:401.657543px;}
.x6a{left:413.686912px;}
.x39{left:415.040266px;}
.x22{left:420.002395px;}
.x69{left:426.468147px;}
.x32{left:427.520758px;}
.x51{left:428.723683px;}
.x3a{left:429.926659px;}
.x34{left:434.287328px;}
.x36{left:435.339843px;}
.x21{left:438.046540px;}
.x52{left:439.099049px;}
.x6e{left:462.706872px;}
.x18{left:470.676329px;}
.x1a{left:476.691053px;}
.x1b{left:478.044369px;}
.x65{left:489.472375px;}
.x19{left:494.284103px;}
.x70{left:522.553191px;}
.x4b{left:527.364935px;}
.x14{left:529.470124px;}
.x26{left:533.680495px;}
.x15{left:540.446971px;}
.x25{left:542.401793px;}
.x29{left:544.958059px;}
.x27{left:557.889733px;}
.x66{left:575.933787px;}
.x16{left:581.346980px;}
.x53{left:587.211396px;}
.x54{left:592.474246px;}
.x55{left:595.782364px;}
.x44{left:602.699293px;}
.x43{left:603.751856px;}
.x42{left:607.511049px;}
.x45{left:609.916942px;}
.x41{left:621.796004px;}
.x4c{left:625.555233px;}
.x3e{left:627.359628px;}
.x3b{left:630.066176px;}
.x3c{left:632.020983px;}
.x3d{left:633.073618px;}
.xd{left:638.880020px;}
.x4d{left:644.952639px;}
.x3f{left:646.606692px;}
.x4e{left:652.470957px;}
.x28{left:660.891654px;}
.x4{left:674.924475px;}
.x10{left:683.699968px;}
.x5a{left:695.579989px;}
.x46{left:719.699968px;}
.x2c{left:723.569994px;}
.x2b{left:734.279970px;}
.x4f{left:743.189974px;}
.x71{left:787.140001px;}
.x1{left:807.479998px;}
@media print{
.v2{vertical-align:-1.602804pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:28.849766pt;}
.v3{vertical-align:51.288527pt;}
.ls1f{letter-spacing:-0.801382pt;}
.ls22{letter-spacing:-0.512885pt;}
.ls26{letter-spacing:-0.456788pt;}
.ls27{letter-spacing:-0.454117pt;}
.ls29{letter-spacing:-0.448774pt;}
.ls18{letter-spacing:-0.336581pt;}
.ls13{letter-spacing:-0.309868pt;}
.ls1a{letter-spacing:-0.283155pt;}
.ls15{letter-spacing:-0.267127pt;}
.ls10{letter-spacing:-0.262853pt;}
.ls1c{letter-spacing:-0.224387pt;}
.ls14{letter-spacing:-0.168290pt;}
.ls1d{letter-spacing:-0.160276pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls1e{letter-spacing:-0.120207pt;}
.lsd{letter-spacing:-0.072533pt;}
.ls12{letter-spacing:-0.064111pt;}
.ls4{letter-spacing:-0.064000pt;}
.ls17{letter-spacing:-0.012822pt;}
.ls0{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.006411pt;}
.ls16{letter-spacing:0.009617pt;}
.ls6{letter-spacing:0.040320pt;}
.ls3{letter-spacing:0.042628pt;}
.ls19{letter-spacing:0.065713pt;}
.ls8{letter-spacing:0.080533pt;}
.ls7{letter-spacing:0.119467pt;}
.ls2{letter-spacing:0.127922pt;}
.lsc{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.128085pt;}
.lse{letter-spacing:0.155015pt;}
.ls24{letter-spacing:0.208359pt;}
.ls23{letter-spacing:0.304525pt;}
.ls21{letter-spacing:0.400642pt;}
.ls25{letter-spacing:0.476021pt;}
.ls11{letter-spacing:0.499528pt;}
.ls20{letter-spacing:0.502200pt;}
.ls1b{letter-spacing:0.576995pt;}
.ls28{letter-spacing:1.136000pt;}
.lsa{letter-spacing:53.800317pt;}
.lsb{letter-spacing:86.867009pt;}
.ls9{letter-spacing:750.314673pt;}
.wse{word-spacing:-62.823680pt;}
.ws1{word-spacing:-46.208000pt;}
.wsc{word-spacing:-29.623679pt;}
.ws9{word-spacing:-23.752320pt;}
.wsa{word-spacing:-23.679787pt;}
.wsd{word-spacing:-20.948136pt;}
.wsb{word-spacing:-17.920000pt;}
.ws2{word-spacing:-17.792000pt;}
.ws3{word-spacing:-17.728000pt;}
.ws4{word-spacing:-17.664000pt;}
.ws8{word-spacing:-16.399146pt;}
.ws6{word-spacing:-16.360213pt;}
.ws7{word-spacing:-16.319999pt;}
.ws5{word-spacing:-16.279679pt;}
.ws0{word-spacing:0.000000pt;}
._11{margin-left:-20.641392pt;}
._13{margin-left:-16.576039pt;}
._f{margin-left:-15.463567pt;}
._10{margin-left:-13.894274pt;}
._12{margin-left:-8.590271pt;}
._14{margin-left:-5.013337pt;}
._a{margin-left:-3.776000pt;}
._b{margin-left:-2.743662pt;}
._1b{margin-left:-1.843180pt;}
._0{margin-left:-0.908480pt;}
._1{width:1.143662pt;}
._2{width:2.293612pt;}
._16{width:3.816792pt;}
._e{width:5.248000pt;}
._19{width:6.592000pt;}
._9{width:7.680000pt;}
._3{width:8.832000pt;}
._1f{width:11.512546pt;}
._20{width:14.253922pt;}
._18{width:16.554685pt;}
._17{width:25.185316pt;}
._8{width:26.496000pt;}
._c{width:28.167359pt;}
._1a{width:30.400000pt;}
._d{width:38.825278pt;}
._4{width:64.384000pt;}
._5{width:65.344000pt;}
._6{width:153.309424pt;}
._7{width:179.922544pt;}
._1d{width:187.865405pt;}
._1e{width:371.839591pt;}
._15{width:750.314673pt;}
._1c{width:1156.638050pt;}
.fs0{font-size:5.440000pt;}
.fsb{font-size:28.849766pt;}
.fsa{font-size:29.384021pt;}
.fsf{font-size:32.055296pt;}
.fs8{font-size:36.863590pt;}
.fs10{font-size:37.397845pt;}
.fs5{font-size:38.400000pt;}
.fs9{font-size:43.274650pt;}
.fse{font-size:43.808905pt;}
.fsc{font-size:48.082944pt;}
.fsd{font-size:48.617199pt;}
.fs2{font-size:53.440000pt;}
.fs4{font-size:58.559998pt;}
.fs6{font-size:61.440000pt;}
.fs1{font-size:64.000000pt;}
.fs11{font-size:64.110592pt;}
.fs7{font-size:85.440000pt;}
.fs3{font-size:106.559998pt;}
.y0{bottom:0.000000pt;}
.yfb{bottom:4.919693pt;}
.ya6{bottom:5.320384pt;}
.y105{bottom:6.522324pt;}
.y40{bottom:11.520020pt;}
.y19{bottom:12.559977pt;}
.y2f{bottom:12.559998pt;}
.y1f{bottom:12.560018pt;}
.y15{bottom:12.560059pt;}
.y34{bottom:12.586670pt;}
.y3e{bottom:13.839966pt;}
.y9d{bottom:18.676624pt;}
.ya5{bottom:19.478007pt;}
.y3a{bottom:19.519938pt;}
.y48{bottom:19.520020pt;}
.y45{bottom:19.600016pt;}
.ya7{bottom:23.084227pt;}
.y113{bottom:24.286301pt;}
.y3c{bottom:27.519938pt;}
.y44{bottom:27.600016pt;}
.ya4{bottom:32.300123pt;}
.y116{bottom:39.111875pt;}
.y18{bottom:40.159993pt;}
.y33{bottom:40.186686pt;}
.ye5{bottom:44.721552pt;}
.y47{bottom:44.800008pt;}
.y104{bottom:49.930538pt;}
.y49{bottom:52.800008pt;}
.ye4{bottom:53.536759pt;}
.ycd{bottom:53.937447pt;}
.yc5{bottom:56.341597pt;}
.y115{bottom:58.345053pt;}
.y107{bottom:59.547125pt;}
.ya3{bottom:61.149891pt;}
.y9a{bottom:62.351963pt;}
.ycc{bottom:62.752656pt;}
.y103{bottom:64.355421pt;}
.ydc{bottom:66.756897pt;}
.yc4{bottom:67.558279pt;}
.y17{bottom:67.759928pt;}
.y1b{bottom:67.760010pt;}
.ycb{bottom:71.565191pt;}
.yce{bottom:74.770720pt;}
.y114{bottom:77.575559pt;}
.ydb{bottom:77.976251pt;}
.ya0{bottom:81.181779pt;}
.y9{bottom:93.519999pt;}
.ya8{bottom:93.603204pt;}
.y9f{bottom:94.003899pt;}
.y9e{bottom:106.826011pt;}
.yc3{bottom:108.829473pt;}
.yfa{bottom:114.038459pt;}
.y8{bottom:116.559998pt;}
.y9c{bottom:122.452969pt;}
.yf7{bottom:123.655044pt;}
.yfd{bottom:125.760000pt;}
.y97{bottom:126.059195pt;}
.yed{bottom:126.880005pt;}
.y53{bottom:127.519999pt;}
.yf9{bottom:128.463342pt;}
.yd3{bottom:129.665410pt;}
.y9b{bottom:135.275087pt;}
.yd2{bottom:138.480622pt;}
.y96{bottom:138.881313pt;}
.yf{bottom:140.400004pt;}
.ye6{bottom:141.686151pt;}
.yb9{bottom:144.090299pt;}
.y31{bottom:144.400004pt;}
.yef{bottom:144.960002pt;}
.yd1{bottom:147.295828pt;}
.y10c{bottom:147.760000pt;}
.yf8{bottom:155.309647pt;}
.yd0{bottom:156.111035pt;}
.y52{bottom:159.920003pt;}
.y102{bottom:162.121401pt;}
.y8a{bottom:162.160004pt;}
.ybf{bottom:162.922785pt;}
.y78{bottom:164.400004pt;}
.ycf{bottom:164.926240pt;}
.ya2{bottom:165.326927pt;}
.y109{bottom:166.128315pt;}
.yb7{bottom:166.529003pt;}
.yb0{bottom:167.359996pt;}
.yb4{bottom:170.160004pt;}
.ybe{bottom:174.142139pt;}
.yb6{bottom:176.145595pt;}
.ye{bottom:176.320007pt;}
.yd7{bottom:176.546283pt;}
.ya1{bottom:178.149046pt;}
.yfe{bottom:179.351122pt;}
.y108{bottom:180.553198pt;}
.y95{bottom:184.560110pt;}
.ybd{bottom:185.361487pt;}
.y10b{bottom:187.280009pt;}
.y99{bottom:191.772551pt;}
.y77{bottom:192.000000pt;}
.y51{bottom:192.320007pt;}
.y94{bottom:197.382228pt;}
.y30{bottom:200.239990pt;}
.yd6{bottom:200.559998pt;}
.ybc{bottom:202.190521pt;}
.y98{bottom:206.197435pt;}
.yd9{bottom:207.800199pt;}
.yd{bottom:212.320007pt;}
.ybb{bottom:216.615403pt;}
.yf6{bottom:217.416778pt;}
.y10a{bottom:218.239990pt;}
.yc6{bottom:219.019553pt;}
.y117{bottom:219.318502pt;}
.y76{bottom:219.599996pt;}
.y93{bottom:220.622330pt;}
.yd8{bottom:222.225081pt;}
.y50{bottom:224.719991pt;}
.ye8{bottom:224.762793pt;}
.y2e{bottom:228.480000pt;}
.y92{bottom:229.170397pt;}
.yf5{bottom:230.372470pt;}
.ye7{bottom:235.982155pt;}
.yc0{bottom:237.985603pt;}
.yf4{bottom:243.194583pt;}
.y119{bottom:245.999461pt;}
.yc{bottom:248.266663pt;}
.yda{bottom:248.804261pt;}
.y112{bottom:251.208413pt;}
.yb8{bottom:253.612560pt;}
.y4f{bottom:257.146667pt;}
.y75{bottom:259.466675pt;}
.y2d{bottom:268.826660pt;}
.yb{bottom:274.586670pt;}
.y106{bottom:276.852649pt;}
.ye9{bottom:277.253350pt;}
.yca{bottom:279.657476pt;}
.yc9{bottom:288.472706pt;}
.ydf{bottom:289.274077pt;}
.y4e{bottom:289.546672pt;}
.ye3{bottom:290.075456pt;}
.yf0{bottom:291.277533pt;}
.yaa{bottom:291.678232pt;}
.y2c{bottom:295.306661pt;}
.yc8{bottom:297.287910pt;}
.ye2{bottom:298.890661pt;}
.y74{bottom:300.026672pt;}
.yde{bottom:300.493430pt;}
.y111{bottom:303.698960pt;}
.ya9{bottom:304.500339pt;}
.yc7{bottom:306.103115pt;}
.ye1{bottom:307.705865pt;}
.y101{bottom:308.507266pt;}
.yf3{bottom:308.907941pt;}
.ydd{bottom:311.712792pt;}
.y10e{bottom:315.719694pt;}
.ye0{bottom:316.521069pt;}
.yba{bottom:317.723145pt;}
.y91{bottom:320.127296pt;}
.y100{bottom:321.329373pt;}
.y2b{bottom:321.386658pt;}
.yf2{bottom:321.730072pt;}
.y4d{bottom:322.026672pt;}
.y110{bottom:322.932148pt;}
.y118{bottom:323.733579pt;}
.y8e{bottom:324.134224pt;}
.y73{bottom:327.626668pt;}
.y90{bottom:332.949428pt;}
.ya{bottom:333.306661pt;}
.yc2{bottom:333.750800pt;}
.yff{bottom:334.151504pt;}
.yf1{bottom:334.552179pt;}
.y10d{bottom:334.952873pt;}
.y8d{bottom:335.353554pt;}
.y10f{bottom:342.165307pt;}
.yc1{bottom:344.970153pt;}
.y8f{bottom:345.771534pt;}
.y8c{bottom:346.572909pt;}
.y2a{bottom:353.786662pt;}
.y4c{bottom:354.426676pt;}
.y72{bottom:355.226685pt;}
.y71{bottom:382.826660pt;}
.y29{bottom:386.186686pt;}
.y7{bottom:386.906657pt;}
.y4b{bottom:387.946655pt;}
.y6{bottom:402.906657pt;}
.y5{bottom:405.226685pt;}
.y4{bottom:407.546672pt;}
.y3{bottom:409.866659pt;}
.y70{bottom:410.426676pt;}
.y4a{bottom:410.666667pt;}
.y89{bottom:417.786662pt;}
.y28{bottom:418.666667pt;}
.y2{bottom:420.346680pt;}
.y6f{bottom:438.026652pt;}
.y27{bottom:451.066650pt;}
.yfc{bottom:454.586670pt;}
.y88{bottom:457.306681pt;}
.yee{bottom:459.546672pt;}
.y6e{bottom:465.626668pt;}
.y26{bottom:472.426676pt;}
.yaf{bottom:474.186686pt;}
.yec{bottom:475.706665pt;}
.y46{bottom:477.946655pt;}
.y60{bottom:479.226685pt;}
.y87{bottom:488.266683pt;}
.y8b{bottom:489.318598pt;}
.yd5{bottom:491.386678pt;}
.y6d{bottom:493.226685pt;}
.y25{bottom:500.666667pt;}
.yeb{bottom:507.546672pt;}
.yae{bottom:510.986654pt;}
.y5f{bottom:516.346680pt;}
.yb3{bottom:518.986654pt;}
.y11c{bottom:520.266683pt;}
.yd4{bottom:523.946655pt;}
.y24{bottom:528.986654pt;}
.y6c{bottom:539.866659pt;}
.y11b{bottom:544.506673pt;}
.y43{bottom:545.146647pt;}
.yea{bottom:547.146647pt;}
.y5e{bottom:548.906657pt;}
.yad{bottom:550.506673pt;}
.y23{bottom:557.226685pt;}
.yb2{bottom:558.506673pt;}
.y5d{bottom:576.506673pt;}
.yac{bottom:581.466675pt;}
.y22{bottom:585.466675pt;}
.yb1{bottom:589.466675pt;}
.yb5{bottom:590.518590pt;}
.y5c{bottom:604.133341pt;}
.y42{bottom:606.693319pt;}
.y21{bottom:613.813314pt;}
.y6b{bottom:621.093343pt;}
.y5b{bottom:631.733317pt;}
.y41{bottom:639.973348pt;}
.y20{bottom:642.053345pt;}
.y6a{bottom:648.693319pt;}
.y3f{bottom:654.453328pt;}
.y5a{bottom:659.333333pt;}
.y1e{bottom:670.293335pt;}
.y69{bottom:676.293335pt;}
.y83{bottom:678.853353pt;}
.y3d{bottom:680.373332pt;}
.y68{bottom:703.893311pt;}
.y82{bottom:706.453369pt;}
.y3b{bottom:708.693359pt;}
.y1d{bottom:711.173340pt;}
.y1c{bottom:726.853353pt;}
.y67{bottom:731.493327pt;}
.y81{bottom:734.053304pt;}
.y39{bottom:750.613363pt;}
.y1{bottom:751.973307pt;}
.y1a{bottom:755.093343pt;}
.y66{bottom:759.093343pt;}
.y80{bottom:761.653320pt;}
.y59{bottom:784.133301pt;}
.y65{bottom:786.693359pt;}
.y7f{bottom:789.253337pt;}
.y58{bottom:810.453369pt;}
.y38{bottom:812.133301pt;}
.y64{bottom:814.293294pt;}
.y7e{bottom:816.853353pt;}
.y57{bottom:838.053304pt;}
.y16{bottom:838.533366pt;}
.y7d{bottom:844.453369pt;}
.y37{bottom:845.573324pt;}
.y63{bottom:854.133301pt;}
.y86{bottom:862.853353pt;}
.y56{bottom:865.333333pt;}
.y36{bottom:866.933350pt;}
.y7c{bottom:872.053304pt;}
.y85{bottom:890.453369pt;}
.y62{bottom:898.853353pt;}
.y7b{bottom:899.653320pt;}
.y11a{bottom:913.333333pt;}
.y14{bottom:922.053304pt;}
.y35{bottom:922.853353pt;}
.y7a{bottom:927.253337pt;}
.y84{bottom:940.933350pt;}
.y61{bottom:943.653320pt;}
.y55{bottom:950.133301pt;}
.y32{bottom:951.093343pt;}
.y13{bottom:981.920003pt;}
.y79{bottom:982.000000pt;}
.y54{bottom:986.959961pt;}
.yab{bottom:987.040039pt;}
.y12{bottom:1019.520020pt;}
.y11{bottom:1047.120036pt;}
.y10{bottom:1067.009360pt;}
.h3{height:3.777187pt;}
.h13{height:25.279999pt;}
.h1e{height:25.863365pt;}
.h1d{height:26.342316pt;}
.ha{height:27.600000pt;}
.hc{height:27.626666pt;}
.h23{height:28.694812pt;}
.h22{height:31.883124pt;}
.h1b{height:36.665593pt;}
.h25{height:37.196978pt;}
.h8{height:37.631250pt;}
.h12{height:41.279999pt;}
.h14{height:41.360000pt;}
.h1c{height:43.042217pt;}
.h21{height:43.573603pt;}
.he{height:46.200000pt;}
.h18{height:47.218750pt;}
.h1f{height:47.824686pt;}
.h5{height:47.908125pt;}
.hf{height:48.125000pt;}
.h20{height:48.356071pt;}
.h7{height:52.498123pt;}
.hd{height:53.152969pt;}
.h10{height:55.200002pt;}
.h11{height:55.226664pt;}
.h4{height:57.375000pt;}
.h16{height:58.245466pt;}
.h26{height:63.766248pt;}
.h24{height:65.515359pt;}
.h15{height:66.559998pt;}
.h17{height:76.595625pt;}
.h9{height:80.128123pt;}
.hb{height:82.799998pt;}
.h19{height:84.981094pt;}
.h6{height:95.529373pt;}
.h27{height:99.113213pt;}
.h1a{height:360.622080pt;}
.h28{height:360.622176pt;}
.h2{height:1122.639974pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w7{width:46.320002pt;}
.wa{width:84.106669pt;}
.wb{width:101.519999pt;}
.w8{width:103.306671pt;}
.wf{width:103.359996pt;}
.w5{width:223.226664pt;}
.w3{width:225.626668pt;}
.wd{width:234.186666pt;}
.we{width:263.786662pt;}
.w9{width:415.146647pt;}
.w4{width:426.293335pt;}
.w6{width:429.253337pt;}
.wc{width:445.333333pt;}
.w10{width:641.569418pt;}
.w1{width:793.333333pt;}
.w2{width:793.359988pt;}
.w0{width:793.360000pt;}
.x0{left:0.000000pt;}
.x6{left:7.360001pt;}
.x2d{left:19.002063pt;}
.x50{left:23.680142pt;}
.x47{left:24.749454pt;}
.x6b{left:26.887999pt;}
.x64{left:29.561194pt;}
.x5b{left:34.105672pt;}
.x2e{left:41.590629pt;}
.x20{left:42.793633pt;}
.x60{left:43.862903pt;}
.x30{left:46.268721pt;}
.x40{left:48.006368pt;}
.x2f{left:52.016159pt;}
.x59{left:54.422080pt;}
.x61{left:56.560633pt;}
.x57{left:60.303104pt;}
.x23{left:61.907008pt;}
.x6c{left:67.119802pt;}
.x5{left:68.559998pt;}
.x58{left:70.327650pt;}
.x2{left:75.599988pt;}
.x24{left:77.545265pt;}
.xf{left:91.599984pt;}
.x12{left:96.524980pt;}
.x11{left:109.623678pt;}
.x9{left:115.519999pt;}
.x1e{left:118.311658pt;}
.x48{left:126.063931pt;}
.x67{left:128.603441pt;}
.x1f{left:129.539125pt;}
.x49{left:135.019173pt;}
.x13{left:147.716867pt;}
.xa{left:153.386667pt;}
.x31{left:155.335528pt;}
.x2a{left:168.701535pt;}
.xe{left:178.026661pt;}
.x1c{left:182.869556pt;}
.x56{left:190.220889pt;}
.x1d{left:206.661116pt;}
.x3{left:219.146655pt;}
.x63{left:226.442846pt;}
.x62{left:230.051676pt;}
.x6f{left:246.090838pt;}
.xb{left:255.546672pt;}
.x4a{left:257.986615pt;}
.x35{left:260.526164pt;}
.x38{left:266.941891pt;}
.x17{left:270.951657pt;}
.x5f{left:287.659206pt;}
.x8{left:292.426676pt;}
.x7{left:294.906657pt;}
.xc{left:303.466675pt;}
.x5c{left:318.267377pt;}
.x5e{left:324.282109pt;}
.x5d{left:326.019676pt;}
.x68{left:338.984709pt;}
.x33{left:342.058960pt;}
.x37{left:353.286357pt;}
.x6d{left:357.028927pt;}
.x6a{left:367.721699pt;}
.x39{left:368.924681pt;}
.x22{left:373.335462pt;}
.x69{left:379.082797pt;}
.x32{left:380.018452pt;}
.x51{left:381.087719pt;}
.x3a{left:382.157031pt;}
.x34{left:386.033180pt;}
.x36{left:386.968750pt;}
.x21{left:389.374702pt;}
.x52{left:390.310266pt;}
.x6e{left:411.294997pt;}
.x18{left:418.378959pt;}
.x1a{left:423.725380pt;}
.x1b{left:424.928328pt;}
.x65{left:435.086555pt;}
.x19{left:439.363647pt;}
.x70{left:464.491725pt;}
.x4b{left:468.768831pt;}
.x14{left:470.640110pt;}
.x26{left:474.382662pt;}
.x15{left:480.397308pt;}
.x25{left:482.134927pt;}
.x29{left:484.407163pt;}
.x27{left:495.901985pt;}
.x66{left:511.941144pt;}
.x16{left:516.752871pt;}
.x53{left:521.965685pt;}
.x54{left:526.643774pt;}
.x55{left:529.584324pt;}
.x44{left:535.732705pt;}
.x43{left:536.668317pt;}
.x42{left:540.009821pt;}
.x45{left:542.148393pt;}
.x41{left:552.707559pt;}
.x4c{left:556.049096pt;}
.x3e{left:557.653002pt;}
.x3b{left:560.058823pt;}
.x3c{left:561.796429pt;}
.x3d{left:562.732105pt;}
.xd{left:567.893351pt;}
.x4d{left:573.291235pt;}
.x3f{left:574.761504pt;}
.x4e{left:579.974184pt;}
.x28{left:587.459248pt;}
.x4{left:599.932867pt;}
.x10{left:607.733305pt;}
.x5a{left:618.293323pt;}
.x46{left:639.733305pt;}
.x2c{left:643.173328pt;}
.x2b{left:652.693307pt;}
.x4f{left:660.613310pt;}
.x71{left:699.680001pt;}
.x1{left:717.759998pt;}
}




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