
    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_a78516d295d34f0ad555a636.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.020000;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_cb0cac512eeead3b6f604c3a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.133301;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_a31345924ad39fcd85475cd7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172000;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_791832591888b2690ffe83b7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.006000;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_0f4d556b1c9e53e77d14f3e2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.020000;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_503ae79bb3537d9ccfff4f53.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.006000;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_656e3776f0d1f8e0f415c1ce.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.680176;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_411ab77f169cc58a8bd01cbe.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.988281;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_8edeb74c0dd7799c689866a4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.715000;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_80d6b6fac1281c0fb0d205da.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.862793;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_6286acba5000e749bef8ffee.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.131000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_e49ba0779cf5e5aa0e3c1eee.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_07d1bb8e0e41eac7e1caca90.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.933000;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:ffe;src:url('chunks/assets/font_c5ea89e960e6502dbb37b000.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.730000;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:fff;src:url('chunks/assets/font_c84061ab0083bd79881a79d9.woff2')format("woff");}.fff{font-family:fff;line-height:0.966000;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:ff10;src:url('chunks/assets/font_ebb2016a4c8d0d18197ee00c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.974609;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.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);}
.v3{vertical-align:-13.409995px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:11.291995px;}
.v1{vertical-align:13.409995px;}
.v5{vertical-align:16.962173px;}
.v8{vertical-align:18.973132px;}
.v4{vertical-align:25.655630px;}
.v7{vertical-align:33.924346px;}
.v6{vertical-align:42.617803px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000090px;}
.ls10{letter-spacing:0.000232px;}
.ls0{letter-spacing:0.000256px;}
.ls7{letter-spacing:0.000421px;}
.lsf{letter-spacing:0.000453px;}
.ls8{letter-spacing:0.001021px;}
.ls4{letter-spacing:0.001256px;}
.lsb{letter-spacing:0.003421px;}
.lsd{letter-spacing:0.003879px;}
.ls2{letter-spacing:0.004076px;}
.lsa{letter-spacing:0.004154px;}
.lsc{letter-spacing:0.004621px;}
.lse{letter-spacing:0.006836px;}
.ls9{letter-spacing:0.010621px;}
.ls6{letter-spacing:0.805782px;}
.ls5{letter-spacing:2.000738px;}
.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;}
}
.ws48{word-spacing:-31.675174px;}
.ws8{word-spacing:-26.713092px;}
.ws2d{word-spacing:-23.202376px;}
.ws1{word-spacing:-22.396594px;}
.wsc{word-spacing:-18.860269px;}
.ws6{word-spacing:-17.885050px;}
.ws49{word-spacing:-16.611168px;}
.ws13{word-spacing:-16.502752px;}
.ws5{word-spacing:-15.001126px;}
.ws12{word-spacing:-14.798993px;}
.ws24{word-spacing:-14.690675px;}
.ws25{word-spacing:-14.247537px;}
.ws41{word-spacing:-14.231545px;}
.ws46{word-spacing:-14.090398px;}
.ws45{word-spacing:-14.090237px;}
.ws42{word-spacing:-13.619465px;}
.ws47{word-spacing:-13.336906px;}
.ws4{word-spacing:-13.057199px;}
.ws44{word-spacing:-13.018947px;}
.ws43{word-spacing:-13.018906px;}
.ws2c{word-spacing:-12.919801px;}
.ws2{word-spacing:-11.198297px;}
.ws0{word-spacing:-9.430134px;}
.ws7{word-spacing:-9.328376px;}
.ws2a{word-spacing:-8.251376px;}
.ws30{word-spacing:-7.838813px;}
.ws32{word-spacing:-5.775965px;}
.ws3{word-spacing:-5.478000px;}
.ws9{word-spacing:0.000000px;}
.ws22{word-spacing:1.808847px;}
.ws23{word-spacing:4.067278px;}
.ws2e{word-spacing:4.070138px;}
.ws20{word-spacing:15.266662px;}
.ws27{word-spacing:18.564935px;}
.ws2f{word-spacing:24.249952px;}
.ws1e{word-spacing:46.606265px;}
.ws2b{word-spacing:57.715109px;}
.ws28{word-spacing:72.142494px;}
.ws40{word-spacing:85.801513px;}
.ws3f{word-spacing:88.059702px;}
.ws21{word-spacing:90.149513px;}
.ws1f{word-spacing:91.395425px;}
.ws39{word-spacing:105.562404px;}
.ws35{word-spacing:113.873736px;}
.ws38{word-spacing:124.794343px;}
.ws15{word-spacing:125.377578px;}
.ws11{word-spacing:135.856010px;}
.ws16{word-spacing:143.386809px;}
.ws29{word-spacing:167.375149px;}
.ws1b{word-spacing:182.137371px;}
.ws19{word-spacing:182.280545px;}
.wsa{word-spacing:191.085729px;}
.ws1a{word-spacing:197.520180px;}
.wse{word-spacing:221.915823px;}
.ws37{word-spacing:222.690297px;}
.ws3d{word-spacing:251.276359px;}
.ws1c{word-spacing:255.110696px;}
.ws17{word-spacing:257.588587px;}
.ws10{word-spacing:281.450839px;}
.wsf{word-spacing:297.324672px;}
.wsb{word-spacing:327.479305px;}
.wsd{word-spacing:331.248732px;}
.ws36{word-spacing:424.348954px;}
.ws18{word-spacing:514.133447px;}
.ws1d{word-spacing:560.985214px;}
.ws14{word-spacing:581.264745px;}
.ws3e{word-spacing:674.814061px;}
.ws34{word-spacing:762.116573px;}
.ws31{word-spacing:767.513890px;}
.ws33{word-spacing:849.587094px;}
.ws3c{word-spacing:947.020421px;}
.ws3b{word-spacing:1029.474817px;}
.ws26{word-spacing:1151.759757px;}
.ws3a{word-spacing:1237.302636px;}
._21{margin-left:-8.319661px;}
._20{margin-left:-6.649472px;}
._1d{margin-left:-5.484911px;}
._4{margin-left:-4.475210px;}
._3{margin-left:-3.448020px;}
._2{margin-left:-2.130798px;}
._5{margin-left:-1.010303px;}
._1{width:1.068132px;}
._6{width:2.535162px;}
._8{width:3.753257px;}
._7{width:4.936419px;}
._9{width:6.265987px;}
._a{width:7.289011px;}
._1e{width:8.365521px;}
._1f{width:9.693164px;}
._b{width:92.248382px;}
._1c{width:103.361368px;}
._c{width:167.857521px;}
._15{width:648.926373px;}
._d{width:652.250668px;}
._1a{width:703.900735px;}
._16{width:802.976608px;}
._f{width:843.605417px;}
._18{width:845.214109px;}
._19{width:851.738068px;}
._13{width:855.151407px;}
._14{width:899.137473px;}
._e{width:901.844712px;}
._12{width:992.669209px;}
._11{width:1005.219595px;}
._17{width:1056.389998px;}
._1b{width:1150.360703px;}
._10{width:1190.583505px;}
._0{width:4126.459264px;}
.fc3{color:rgb(173,97,29);}
.fc5{color:rgb(79,76,76);}
.fc1{color:rgb(141,98,69);}
.fc4{color:rgb(153,153,153);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:19.776172px;}
.fsb{font-size:20.776852px;}
.fs4{font-size:23.484171px;}
.fsa{font-size:28.197169px;}
.fs9{font-size:29.681208px;}
.fs10{font-size:33.213347px;}
.fs0{font-size:33.921346px;}
.fs3{font-size:40.281644px;}
.fs1{font-size:42.401743px;}
.fs5{font-size:46.641881px;}
.fsc{font-size:47.974481px;}
.fs7{font-size:50.882020px;}
.fs8{font-size:50.882080px;}
.fsf{font-size:56.969737px;}
.fse{font-size:59.968116px;}
.fs13{font-size:65.965174px;}
.fs2{font-size:93.283763px;}
.fs12{font-size:116.106554px;}
.fsd{font-size:131.929747px;}
.fs11{font-size:522.479191px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.060000px;}
.y2{bottom:32.035844px;}
.y3f{bottom:63.102932px;}
.y69{bottom:67.732290px;}
.y22c{bottom:70.593989px;}
.y1e3{bottom:71.319493px;}
.y209{bottom:71.477188px;}
.y92{bottom:72.638533px;}
.y175{bottom:72.955483px;}
.ye1{bottom:73.062853px;}
.y1c2{bottom:74.431782px;}
.y3e{bottom:78.366326px;}
.y68{bottom:81.512829px;}
.y19f{bottom:82.554474px;}
.y22b{bottom:84.374528px;}
.y1e2{bottom:85.100033px;}
.y91{bottom:86.419072px;}
.y174{bottom:86.736022px;}
.ye0{bottom:86.843392px;}
.y1c1{bottom:88.212322px;}
.y148{bottom:91.868720px;}
.y67{bottom:95.293369px;}
.y208{bottom:95.858029px;}
.y3d{bottom:96.541773px;}
.y22a{bottom:98.155068px;}
.y1e1{bottom:98.880572px;}
.y90{bottom:100.199612px;}
.ydf{bottom:100.623932px;}
.y19e{bottom:101.392666px;}
.y147{bottom:105.649260px;}
.y66{bottom:109.073908px;}
.y207{bottom:109.638568px;}
.y3c{bottom:110.322313px;}
.y172{bottom:113.460462px;}
.y8f{bottom:113.980151px;}
.yde{bottom:114.404471px;}
.y1c0{bottom:115.773311px;}
.y146{bottom:119.429799px;}
.y19d{bottom:120.231459px;}
.y229{bottom:122.535908px;}
.y65{bottom:122.854448px;}
.y1e0{bottom:123.261413px;}
.ydd{bottom:128.185011px;}
.y171{bottom:132.540454px;}
.y145{bottom:133.210339px;}
.y206{bottom:134.019408px;}
.yb8{bottom:136.305437px;}
.y228{bottom:136.316447px;}
.y64{bottom:136.634987px;}
.y1df{bottom:137.041952px;}
.y3b{bottom:137.883302px;}
.y19c{bottom:139.069651px;}
.y8e{bottom:141.541290px;}
.y144{bottom:146.990878px;}
.y205{bottom:147.799948px;}
.yb7{bottom:150.085977px;}
.y227{bottom:150.096987px;}
.y63{bottom:150.415527px;}
.y1de{bottom:150.822492px;}
.y170{bottom:151.621946px;}
.y167{bottom:151.622096px;}
.y8d{bottom:155.321830px;}
.y1bf{bottom:157.114614px;}
.y19b{bottom:157.908444px;}
.y143{bottom:160.771418px;}
.y204{bottom:161.580487px;}
.y226{bottom:163.877526px;}
.y62{bottom:164.196066px;}
.y8c{bottom:169.102369px;}
.ydc{bottom:169.526644px;}
.y16f{bottom:170.701939px;}
.y1be{bottom:170.895154px;}
.y142{bottom:174.551957px;}
.y19a{bottom:176.746636px;}
.yb6{bottom:177.647116px;}
.y61{bottom:177.976606px;}
.y1dd{bottom:178.383631px;}
.y3a{bottom:179.224200px;}
.y8b{bottom:182.882909px;}
.ydb{bottom:183.306479px;}
.y203{bottom:185.961328px;}
.y225{bottom:188.258367px;}
.y141{bottom:188.332497px;}
.y16e{bottom:189.783281px;}
.y166{bottom:189.783431px;}
.yb5{bottom:191.427655px;}
.y60{bottom:191.757145px;}
.y39{bottom:193.004740px;}
.y199{bottom:195.585429px;}
.y8a{bottom:196.663448px;}
.y1bd{bottom:198.457643px;}
.y202{bottom:199.741867px;}
.y224{bottom:202.038906px;}
.y140{bottom:202.113036px;}
.yb4{bottom:205.208195px;}
.y5f{bottom:205.537685px;}
.y1dc{bottom:205.944020px;}
.y38{bottom:206.785279px;}
.y165{bottom:208.863423px;}
.yda{bottom:210.867618px;}
.y1bc{bottom:212.238182px;}
.y201{bottom:213.522407px;}
.y198{bottom:214.424971px;}
.y13f{bottom:215.893576px;}
.y5e{bottom:219.318224px;}
.y1db{bottom:219.724559px;}
.y37{bottom:220.565819px;}
.y89{bottom:224.224587px;}
.yd9{bottom:224.648157px;}
.y1bb{bottom:226.018722px;}
.y223{bottom:226.419746px;}
.y164{bottom:227.944766px;}
.y16d{bottom:227.944916px;}
.yb3{bottom:232.769334px;}
.y5d{bottom:233.098764px;}
.y197{bottom:233.263764px;}
.y36{bottom:234.346358px;}
.y200{bottom:237.903247px;}
.y88{bottom:238.005127px;}
.y1ba{bottom:239.799261px;}
.y222{bottom:240.200286px;}
.y13e{bottom:243.454715px;}
.yb2{bottom:246.551283px;}
.y163{bottom:247.026108px;}
.y16c{bottom:247.026408px;}
.y1da{bottom:247.284948px;}
.y35{bottom:248.126898px;}
.y1ff{bottom:251.683786px;}
.y87{bottom:251.785666px;}
.yd8{bottom:252.210646px;}
.y13d{bottom:257.235254px;}
.yb1{bottom:260.331823px;}
.y5c{bottom:260.659753px;}
.y1d9{bottom:261.065488px;}
.y34{bottom:261.907437px;}
.y196{bottom:264.510821px;}
.y221{bottom:264.581876px;}
.y1fe{bottom:265.464326px;}
.y86{bottom:265.566206px;}
.yd7{bottom:265.991186px;}
.y1b9{bottom:267.360250px;}
.yb0{bottom:274.112362px;}
.y1d8{bottom:274.846027px;}
.y33{bottom:275.687977px;}
.y220{bottom:278.361711px;}
.y85{bottom:279.346745px;}
.y13c{bottom:284.796798px;}
.y16b{bottom:285.187743px;}
.yaf{bottom:287.892902px;}
.y32{bottom:289.468516px;}
.y1fd{bottom:289.845166px;}
.y195{bottom:292.071960px;}
.y21f{bottom:292.142250px;}
.y84{bottom:293.127285px;}
.yd6{bottom:293.552325px;}
.yae{bottom:301.673441px;}
.y5b{bottom:302.004716px;}
.y1d7{bottom:302.407166px;}
.y31{bottom:303.250466px;}
.y1fc{bottom:303.625706px;}
.y162{bottom:304.267435px;}
.y16a{bottom:304.267885px;}
.y194{bottom:305.852500px;}
.y83{bottom:306.907824px;}
.yd5{bottom:307.332864px;}
.y1b8{bottom:308.701283px;}
.y13b{bottom:312.357187px;}
.yad{bottom:315.453981px;}
.y5a{bottom:315.785256px;}
.y1d6{bottom:316.187706px;}
.y21e{bottom:316.523840px;}
.y30{bottom:317.031005px;}
.y1fb{bottom:317.406245px;}
.y193{bottom:319.633039px;}
.y82{bottom:320.688364px;}
.y1b7{bottom:322.481823px;}
.y161{bottom:323.348778px;}
.y169{bottom:323.349228px;}
.y13a{bottom:326.137727px;}
.yac{bottom:329.234520px;}
.y21d{bottom:330.303675px;}
.y2f{bottom:330.811545px;}
.y192{bottom:333.413579px;}
.y81{bottom:334.468903px;}
.yd4{bottom:334.894003px;}
.y1b6{bottom:336.262362px;}
.y1fa{bottom:341.787085px;}
.y160{bottom:342.428770px;}
.y168{bottom:342.429220px;}
.y173{bottom:342.429370px;}
.yab{bottom:343.015060px;}
.y59{bottom:343.346395px;}
.y1d5{bottom:343.748844px;}
.y2e{bottom:344.592084px;}
.y191{bottom:347.194118px;}
.yd3{bottom:348.674543px;}
.y1b5{bottom:350.042902px;}
.y21c{bottom:354.685265px;}
.y1f9{bottom:355.567625px;}
.y58{bottom:357.126934px;}
.y15f{bottom:357.687214px;}
.y2d{bottom:358.372624px;}
.y17{bottom:359.003358px;}
.y80{bottom:362.031392px;}
.yd2{bottom:362.455082px;}
.y12a{bottom:366.511215px;}
.y21b{bottom:368.465805px;}
.y1f8{bottom:369.348164px;}
.yaa{bottom:370.575449px;}
.y1d4{bottom:371.311333px;}
.yfa{bottom:371.394463px;}
.y2c{bottom:372.153163px;}
.y7f{bottom:375.811932px;}
.yd1{bottom:376.235621px;}
.y1b4{bottom:377.604041px;}
.y21a{bottom:382.246344px;}
.y1f7{bottom:383.128704px;}
.ya9{bottom:384.355988px;}
.y57{bottom:384.688073px;}
.y1d3{bottom:385.091873px;}
.yf9{bottom:385.175003px;}
.y129{bottom:385.591208px;}
.y15e{bottom:385.928078px;}
.y2b{bottom:385.933703px;}
.y16{bottom:386.564497px;}
.y7e{bottom:389.592471px;}
.yd0{bottom:390.016161px;}
.y1b3{bottom:391.384580px;}
.y190{bottom:391.857950px;}
.y219{bottom:396.026179px;}
.ya8{bottom:398.136528px;}
.y56{bottom:398.467908px;}
.yf8{bottom:398.955542px;}
.y18f{bottom:400.339037px;}
.y15{bottom:400.345037px;}
.ycf{bottom:403.796700px;}
.y128{bottom:404.672550px;}
.y1b2{bottom:405.165120px;}
.y1f6{bottom:407.509544px;}
.ya7{bottom:411.917067px;}
.y1d2{bottom:412.653012px;}
.yf7{bottom:412.736082px;}
.y15d{bottom:413.489217px;}
.y2a{bottom:413.494542px;}
.y14{bottom:414.125576px;}
.yce{bottom:417.577240px;}
.y1b1{bottom:418.945659px;}
.y218{bottom:420.407769px;}
.y18e{bottom:421.039029px;}
.y1f5{bottom:421.290083px;}
.y127{bottom:423.752542px;}
.ya6{bottom:425.697607px;}
.y55{bottom:426.029047px;}
.yf6{bottom:426.516621px;}
.y15c{bottom:427.269756px;}
.y18d{bottom:429.518720px;}
.ycd{bottom:431.357779px;}
.y126{bottom:432.233629px;}
.y7d{bottom:432.967504px;}
.y217{bottom:434.188308px;}
.y18c{bottom:437.998412px;}
.ya5{bottom:439.478146px;}
.y54{bottom:439.809586px;}
.y1d1{bottom:440.213401px;}
.yf5{bottom:440.297161px;}
.y29{bottom:441.055681px;}
.y13{bottom:441.686715px;}
.y7c{bottom:442.507500px;}
.ycc{bottom:445.138319px;}
.y1f4{bottom:445.670924px;}
.y18b{bottom:446.478103px;}
.y188{bottom:446.479483px;}
.y1b0{bottom:446.506798px;}
.y216{bottom:447.968143px;}
.y125{bottom:451.313621px;}
.y7b{bottom:452.048906px;}
.ya4{bottom:453.258686px;}
.y53{bottom:453.590126px;}
.y1d0{bottom:453.993940px;}
.yf4{bottom:454.077700px;}
.y15b{bottom:454.830895px;}
.y187{bottom:454.959175px;}
.y18a{bottom:454.959190px;}
.y12{bottom:455.467255px;}
.ycb{bottom:458.918858px;}
.y1f3{bottom:459.451463px;}
.y124{bottom:459.794708px;}
.y1af{bottom:460.287338px;}
.y186{bottom:463.440262px;}
.y189{bottom:463.440277px;}
.ya3{bottom:467.039225px;}
.y52{bottom:467.370665px;}
.yf3{bottom:467.858240px;}
.y15a{bottom:468.611435px;}
.y7a{bottom:471.860898px;}
.y215{bottom:472.349733px;}
.yca{bottom:472.699398px;}
.y1ae{bottom:474.067877px;}
.y114{bottom:478.874340px;}
.y123{bottom:478.874700px;}
.y133{bottom:478.875075px;}
.ya2{bottom:480.819765px;}
.y51{bottom:481.151205px;}
.y79{bottom:481.400894px;}
.y1cf{bottom:481.555079px;}
.yf2{bottom:481.640189px;}
.y159{bottom:482.391974px;}
.y28{bottom:482.396519px;}
.y11{bottom:483.028394px;}
.y1f2{bottom:483.832303px;}
.y239{bottom:484.303663px;}
.y185{bottom:485.543053px;}
.yc9{bottom:486.479937px;}
.y122{bottom:487.355787px;}
.y184{bottom:494.022039px;}
.ya1{bottom:494.600304px;}
.y50{bottom:494.931744px;}
.y158{bottom:496.172514px;}
.y214{bottom:496.730573px;}
.y10{bottom:496.808933px;}
.y1f1{bottom:497.612843px;}
.y113{bottom:497.955683px;}
.y132{bottom:497.956418px;}
.yc8{bottom:500.260477px;}
.y78{bottom:501.214986px;}
.y1ad{bottom:501.628266px;}
.y183{bottom:502.503126px;}
.y121{bottom:506.435779px;}
.ya0{bottom:508.380844px;}
.y4f{bottom:508.712283px;}
.y1ce{bottom:509.116218px;}
.yf1{bottom:509.201328px;}
.y157{bottom:509.953053px;}
.y27{bottom:509.957658px;}
.yf{bottom:510.589473px;}
.y77{bottom:510.754983px;}
.y1f0{bottom:511.393382px;}
.y112{bottom:517.035675px;}
.y131{bottom:517.036410px;}
.y1ac{bottom:517.576560px;}
.y213{bottom:521.111414px;}
.y1cd{bottom:522.896758px;}
.yf0{bottom:522.981163px;}
.y26{bottom:523.738197px;}
.y182{bottom:525.071967px;}
.y11a{bottom:525.516972px;}
.y120{bottom:525.517122px;}
.y1ab{bottom:526.057647px;}
.y76{bottom:530.568325px;}
.y181{bottom:533.553054px;}
.y1ef{bottom:535.774223px;}
.y9f{bottom:535.941983px;}
.y111{bottom:536.117018px;}
.y130{bottom:536.117753px;}
.y4e{bottom:536.273422px;}
.yef{bottom:536.761702px;}
.y156{bottom:537.514192px;}
.y25{bottom:537.518737px;}
.ye{bottom:538.150612px;}
.y75{bottom:540.108321px;}
.yc7{bottom:540.633261px;}
.yc6{bottom:542.806625px;}
.y119{bottom:544.596964px;}
.y11f{bottom:544.597114px;}
.y212{bottom:545.492254px;}
.y1aa{bottom:546.993138px;}
.y1ee{bottom:549.554057px;}
.y9e{bottom:549.722522px;}
.y4d{bottom:550.053257px;}
.y1cc{bottom:550.457897px;}
.yee{bottom:550.542242px;}
.yc5{bottom:551.287711px;}
.y155{bottom:551.294731px;}
.y24{bottom:551.299276px;}
.yd{bottom:551.931151px;}
.y110{bottom:555.197010px;}
.y12f{bottom:555.197745px;}
.y180{bottom:556.375844px;}
.y211{bottom:559.272793px;}
.y74{bottom:559.920313px;}
.yc0{bottom:563.179632px;}
.y9d{bottom:563.503062px;}
.y10f{bottom:563.678097px;}
.y118{bottom:563.678307px;}
.y11e{bottom:563.678457px;}
.y4c{bottom:563.833091px;}
.y1cb{bottom:564.238436px;}
.yed{bottom:564.322781px;}
.y17f{bottom:564.856931px;}
.y154{bottom:565.076681px;}
.y23{bottom:565.079816px;}
.yc{bottom:565.711691px;}
.y1a9{bottom:565.831331px;}
.yc4{bottom:566.290255px;}
.y73{bottom:569.461719px;}
.yc3{bottom:572.704163px;}
.y1ed{bottom:573.934897px;}
.y12e{bottom:574.279087px;}
.y139{bottom:574.279342px;}
.y9c{bottom:577.283601px;}
.y4b{bottom:577.612926px;}
.yec{bottom:578.103321px;}
.y153{bottom:578.857220px;}
.y22{bottom:578.860355px;}
.y72{bottom:579.001715px;}
.y10e{bottom:582.758089px;}
.y117{bottom:582.758299px;}
.y11d{bottom:582.758449px;}
.y12d{bottom:582.758779px;}
.y136{bottom:582.759034px;}
.y210{bottom:583.653634px;}
.y1a8{bottom:584.670123px;}
.y1ec{bottom:587.715437px;}
.y17e{bottom:588.442622px;}
.y9b{bottom:591.065551px;}
.y4a{bottom:591.392760px;}
.y1ca{bottom:591.799575px;}
.yeb{bottom:591.883860px;}
.yc2{bottom:591.947955px;}
.y152{bottom:592.637760px;}
.y21{bottom:592.640895px;}
.yb{bottom:593.272830px;}
.y138{bottom:593.359335px;}
.y71{bottom:598.813707px;}
.y10d{bottom:601.839431px;}
.y116{bottom:601.839641px;}
.y11c{bottom:601.839791px;}
.y12c{bottom:601.840121px;}
.y135{bottom:601.840376px;}
.y1a7{bottom:603.508316px;}
.yc1{bottom:604.777165px;}
.y9a{bottom:604.846090px;}
.y49{bottom:605.173300px;}
.y1c9{bottom:605.580115px;}
.yea{bottom:605.664400px;}
.y151{bottom:606.418299px;}
.y20{bottom:606.421434px;}
.y20f{bottom:608.035224px;}
.y70{bottom:608.355114px;}
.y1eb{bottom:612.096277px;}
.y137{bottom:612.440677px;}
.y48{bottom:618.955249px;}
.ybf{bottom:619.135279px;}
.ye9{bottom:619.444939px;}
.y17d{bottom:619.689184px;}
.y150{bottom:620.198839px;}
.y1f{bottom:620.201974px;}
.ya{bottom:620.833219px;}
.y10c{bottom:620.919424px;}
.y115{bottom:620.919634px;}
.y11b{bottom:620.919784px;}
.y12b{bottom:620.920114px;}
.y134{bottom:620.920369px;}
.y1a6{bottom:622.347108px;}
.y1ea{bottom:625.876817px;}
.y6f{bottom:628.167106px;}
.y99{bottom:632.407229px;}
.y20e{bottom:632.416064px;}
.y47{bottom:632.735789px;}
.y1c8{bottom:633.141104px;}
.ye8{bottom:633.225479px;}
.y103{bottom:633.748483px;}
.y107{bottom:633.748558px;}
.y10b{bottom:633.748633px;}
.y14f{bottom:633.979378px;}
.y1e{bottom:633.983923px;}
.y1e9{bottom:639.657356px;}
.y1a5{bottom:641.799010px;}
.y102{bottom:642.229570px;}
.y106{bottom:642.229645px;}
.y10a{bottom:642.229720px;}
.y98{bottom:646.187769px;}
.y46{bottom:646.516328px;}
.ybe{bottom:646.696418px;}
.ye7{bottom:647.006018px;}
.y17c{bottom:647.249573px;}
.y14e{bottom:647.759918px;}
.y1d{bottom:647.764463px;}
.y9{bottom:648.395708px;}
.y1a4{bottom:650.280097px;}
.y101{bottom:650.709262px;}
.y105{bottom:650.709337px;}
.y109{bottom:650.709412px;}
.y20d{bottom:656.796904px;}
.y100{bottom:659.190348px;}
.y104{bottom:659.190423px;}
.y108{bottom:659.190498px;}
.y97{bottom:659.968308px;}
.y6e{bottom:660.256518px;}
.y45{bottom:660.296868px;}
.ybd{bottom:660.476958px;}
.ye6{bottom:660.786558px;}
.y17b{bottom:661.030113px;}
.y14d{bottom:661.540457px;}
.y1c{bottom:661.545002px;}
.y1e8{bottom:664.038196px;}
.y1a3{bottom:669.118289px;}
.yff{bottom:672.018148px;}
.y44{bottom:674.077407px;}
.ybc{bottom:674.257497px;}
.y1c7{bottom:674.482497px;}
.ye5{bottom:674.567097px;}
.y17a{bottom:674.810652px;}
.y14c{bottom:675.320997px;}
.y1b{bottom:675.325542px;}
.y8{bottom:675.956847px;}
.yfe{bottom:676.258691px;}
.y1e7{bottom:677.818736px;}
.y244{bottom:679.309300px;}
.y20c{bottom:681.177745px;}
.y96{bottom:687.529447px;}
.y6d{bottom:687.816907px;}
.y43{bottom:687.857947px;}
.y1a2{bottom:687.957082px;}
.ybb{bottom:688.038037px;}
.y1c6{bottom:688.264447px;}
.y179{bottom:688.591192px;}
.y14b{bottom:689.101536px;}
.y1a{bottom:689.106081px;}
.y1e6{bottom:691.599275px;}
.yfd{bottom:693.327035px;}
.yfc{bottom:697.567578px;}
.y95{bottom:701.309986px;}
.y6c{bottom:701.597446px;}
.y42{bottom:701.638486px;}
.yba{bottom:701.818576px;}
.y1c5{bottom:702.044986px;}
.ye4{bottom:702.127486px;}
.y178{bottom:702.371731px;}
.y14a{bottom:702.882076px;}
.y7{bottom:703.517986px;}
.y20b{bottom:705.558585px;}
.y1a1{bottom:706.795274px;}
.y94{bottom:715.090526px;}
.y6b{bottom:715.377986px;}
.y41{bottom:715.419026px;}
.y1c4{bottom:715.825526px;}
.ye3{bottom:715.908026px;}
.y1e5{bottom:715.980116px;}
.y177{bottom:716.152271px;}
.y19{bottom:716.667070px;}
.y6{bottom:717.298525px;}
.y23a{bottom:719.320569px;}
.y1a0{bottom:725.634067px;}
.y243{bottom:726.053782px;}
.y93{bottom:728.871065px;}
.y6a{bottom:729.158525px;}
.y40{bottom:729.199565px;}
.yb9{bottom:729.379565px;}
.y1c3{bottom:729.606065px;}
.ye2{bottom:729.688565px;}
.y1e4{bottom:729.762065px;}
.yfb{bottom:729.918320px;}
.y176{bottom:729.934220px;}
.y20a{bottom:729.939425px;}
.y149{bottom:730.443065px;}
.y18{bottom:730.447565px;}
.y5{bottom:731.079065px;}
.y23f{bottom:732.216124px;}
.y23d{bottom:738.393122px;}
.y236{bottom:742.980960px;}
.y241{bottom:748.572118px;}
.y242{bottom:753.984070px;}
.y237{bottom:760.250453px;}
.y23e{bottom:779.410605px;}
.y23c{bottom:791.884000px;}
.y240{bottom:797.026598px;}
.y23b{bottom:799.350487px;}
.y3{bottom:801.104737px;}
.y4{bottom:801.144937px;}
.y22e{bottom:806.970934px;}
.y235{bottom:807.446104px;}
.y234{bottom:807.446569px;}
.y233{bottom:807.447019px;}
.y230{bottom:807.447184px;}
.y232{bottom:807.447469px;}
.y22f{bottom:807.447634px;}
.y231{bottom:807.448234px;}
.y22d{bottom:812.029232px;}
.y238{bottom:865.065911px;}
.h14{height:18.782274px;}
.h15{height:19.782641px;}
.he{height:22.082819px;}
.h16{height:22.290587px;}
.h10{height:22.320269px;}
.h2{height:25.508853px;}
.hd{height:26.831812px;}
.h18{height:29.969543px;}
.hb{height:30.291796px;}
.hc{height:30.664897px;}
.h7{height:31.387183px;}
.ha{height:34.832361px;}
.h9{height:35.617414px;}
.h19{height:36.076810px;}
.h8{height:36.393421px;}
.h5{height:36.414606px;}
.h3{height:39.234035px;}
.h12{height:39.282442px;}
.h6{height:43.157405px;}
.h1e{height:50.569005px;}
.h1b{height:51.500642px;}
.hf{height:52.487442px;}
.h1f{height:55.488076px;}
.h13{height:56.244615px;}
.h17{height:60.756159px;}
.h11{height:69.449615px;}
.h4{height:86.314810px;}
.h1d{height:87.079915px;}
.h1a{height:122.073667px;}
.h1c{height:375.140059px;}
.h1{height:892.440000px;}
.h0{height:892.500000px;}
.w1{width:1262.034000px;}
.w2{width:1262.034085px;}
.w3{width:1262.160000px;}
.w5{width:1262.162869px;}
.w4{width:1262.163600px;}
.w7{width:1262.164275px;}
.w6{width:1262.340000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x29{left:45.305851px;}
.x1{left:56.856062px;}
.x3{left:60.432810px;}
.x27{left:75.169470px;}
.x1d{left:79.961968px;}
.x24{left:82.394967px;}
.x1a{left:105.790157px;}
.x4f{left:107.857682px;}
.x1e{left:115.579004px;}
.x25{left:130.096448px;}
.x28{left:135.266646px;}
.x4e{left:143.838017px;}
.x1b{left:148.138591px;}
.x4d{left:179.818353px;}
.x4c{left:197.809196px;}
.x1c{left:207.041917px;}
.x4b{left:233.790131px;}
.x51{left:269.770467px;}
.x4a{left:287.761310px;}
.x49{left:323.741645px;}
.x1f{left:328.011919px;}
.x50{left:359.724081px;}
.x48{left:377.713574px;}
.x47{left:429.436103px;}
.x46{left:447.427696px;}
.x26{left:464.168814px;}
.x45{left:465.417189px;}
.x3f{left:491.949553px;}
.x3e{left:511.438745px;}
.x44{left:518.937167px;}
.x43{left:538.726659px;}
.x3d{left:545.920731px;}
.x3c{left:565.409924px;}
.x3b{left:584.899866px;}
.x3a{left:619.381852px;}
.x39{left:653.863838px;}
.x38{left:673.353031px;}
.x4{left:691.162223px;}
.x37{left:692.842973px;}
.x21{left:713.384714px;}
.x13{left:720.503712px;}
.xa{left:722.836211px;}
.x36{left:727.324959px;}
.x8{left:736.235585px;}
.x6{left:739.832704px;}
.x35{left:746.814151px;}
.xf{left:774.975890px;}
.x20{left:777.910189px;}
.xd{left:779.257338px;}
.x34{left:781.296137px;}
.x10{left:784.617841px;}
.x15{left:785.908335px;}
.x42{left:793.318257px;}
.x9{left:802.351494px;}
.x5{left:814.431439px;}
.x33{left:815.778124px;}
.x12{left:820.810606px;}
.x41{left:835.348241px;}
.x32{left:850.258610px;}
.x16{left:851.367109px;}
.x7{left:860.042356px;}
.x23{left:867.098653px;}
.x40{left:876.406524px;}
.x31{left:884.740596px;}
.x17{left:897.955441px;}
.xc{left:902.785289px;}
.x30{left:904.229788px;}
.xe{left:919.148332px;}
.x11{left:931.937432px;}
.x2f{left:938.711774px;}
.x22{left:952.583619px;}
.x2e{left:958.200967px;}
.xb{left:978.938608px;}
.x18{left:982.280457px;}
.x2d{left:992.682953px;}
.x2c{left:1012.172145px;}
.x2b{left:1031.662087px;}
.x19{left:1047.739231px;}
.x14{left:1113.196055px;}
.x2a{left:1133.044516px;}
.x2{left:1137.125030px;}
@media print{
.v3{vertical-align:-11.919995pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:10.037329pt;}
.v1{vertical-align:11.919995pt;}
.v5{vertical-align:15.077487pt;}
.v8{vertical-align:16.865007pt;}
.v4{vertical-align:22.805004pt;}
.v7{vertical-align:30.154975pt;}
.v6{vertical-align:37.882492pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000080pt;}
.ls10{letter-spacing:0.000206pt;}
.ls0{letter-spacing:0.000227pt;}
.ls7{letter-spacing:0.000374pt;}
.lsf{letter-spacing:0.000403pt;}
.ls8{letter-spacing:0.000907pt;}
.ls4{letter-spacing:0.001116pt;}
.lsb{letter-spacing:0.003041pt;}
.lsd{letter-spacing:0.003448pt;}
.ls2{letter-spacing:0.003623pt;}
.lsa{letter-spacing:0.003692pt;}
.lsc{letter-spacing:0.004107pt;}
.lse{letter-spacing:0.006076pt;}
.ls9{letter-spacing:0.009441pt;}
.ls6{letter-spacing:0.716251pt;}
.ls5{letter-spacing:1.778434pt;}
.ws48{word-spacing:-28.155710pt;}
.ws8{word-spacing:-23.744971pt;}
.ws2d{word-spacing:-20.624334pt;}
.ws1{word-spacing:-19.908084pt;}
.wsc{word-spacing:-16.764683pt;}
.ws6{word-spacing:-15.897822pt;}
.ws49{word-spacing:-14.765483pt;}
.ws13{word-spacing:-14.669113pt;}
.ws5{word-spacing:-13.334334pt;}
.ws12{word-spacing:-13.154660pt;}
.ws24{word-spacing:-13.058378pt;}
.ws25{word-spacing:-12.664477pt;}
.ws41{word-spacing:-12.650262pt;}
.ws46{word-spacing:-12.524798pt;}
.ws45{word-spacing:-12.524655pt;}
.ws42{word-spacing:-12.106192pt;}
.ws47{word-spacing:-11.855027pt;}
.ws4{word-spacing:-11.606399pt;}
.ws44{word-spacing:-11.572397pt;}
.ws43{word-spacing:-11.572361pt;}
.ws2c{word-spacing:-11.484268pt;}
.ws2{word-spacing:-9.954042pt;}
.ws0{word-spacing:-8.382342pt;}
.ws7{word-spacing:-8.291890pt;}
.ws2a{word-spacing:-7.334556pt;}
.ws30{word-spacing:-6.967834pt;}
.ws32{word-spacing:-5.134191pt;}
.ws3{word-spacing:-4.869333pt;}
.ws9{word-spacing:0.000000pt;}
.ws22{word-spacing:1.607864pt;}
.ws23{word-spacing:3.615358pt;}
.ws2e{word-spacing:3.617900pt;}
.ws20{word-spacing:13.570367pt;}
.ws27{word-spacing:16.502165pt;}
.ws2f{word-spacing:21.555513pt;}
.ws1e{word-spacing:41.427791pt;}
.ws2b{word-spacing:51.302319pt;}
.ws28{word-spacing:64.126661pt;}
.ws40{word-spacing:76.268011pt;}
.ws3f{word-spacing:78.275290pt;}
.ws21{word-spacing:80.132901pt;}
.ws1f{word-spacing:81.240377pt;}
.ws39{word-spacing:93.833248pt;}
.ws35{word-spacing:101.221099pt;}
.ws38{word-spacing:110.928305pt;}
.ws15{word-spacing:111.446736pt;}
.ws11{word-spacing:120.760898pt;}
.ws16{word-spacing:127.454941pt;}
.ws29{word-spacing:148.777910pt;}
.ws1b{word-spacing:161.899886pt;}
.ws19{word-spacing:162.027151pt;}
.wsa{word-spacing:169.853981pt;}
.ws1a{word-spacing:175.573493pt;}
.wse{word-spacing:197.258509pt;}
.ws37{word-spacing:197.946930pt;}
.ws3d{word-spacing:223.356764pt;}
.ws1c{word-spacing:226.765063pt;}
.ws17{word-spacing:228.967633pt;}
.ws10{word-spacing:250.178523pt;}
.wsf{word-spacing:264.288597pt;}
.wsb{word-spacing:291.092715pt;}
.wsd{word-spacing:294.443317pt;}
.ws36{word-spacing:377.199070pt;}
.ws18{word-spacing:457.007508pt;}
.ws1d{word-spacing:498.653524pt;}
.ws14{word-spacing:516.679773pt;}
.ws3e{word-spacing:599.834721pt;}
.ws34{word-spacing:677.436954pt;}
.ws31{word-spacing:682.234569pt;}
.ws33{word-spacing:755.188528pt;}
.ws3c{word-spacing:841.795930pt;}
.ws3b{word-spacing:915.088726pt;}
.ws26{word-spacing:1023.786450pt;}
.ws3a{word-spacing:1099.824566pt;}
._21{margin-left:-7.395254pt;}
._20{margin-left:-5.910642pt;}
._1d{margin-left:-4.875476pt;}
._4{margin-left:-3.977965pt;}
._3{margin-left:-3.064907pt;}
._2{margin-left:-1.894043pt;}
._5{margin-left:-0.898047pt;}
._1{width:0.949451pt;}
._6{width:2.253477pt;}
._8{width:3.336229pt;}
._7{width:4.387928pt;}
._9{width:5.569766pt;}
._a{width:6.479120pt;}
._1e{width:7.436018pt;}
._1f{width:8.616146pt;}
._b{width:81.998561pt;}
._1c{width:91.876771pt;}
._c{width:149.206685pt;}
._15{width:576.823443pt;}
._d{width:579.778372pt;}
._1a{width:625.689542pt;}
._16{width:713.756985pt;}
._f{width:749.871482pt;}
._18{width:751.301430pt;}
._19{width:757.100505pt;}
._13{width:760.134584pt;}
._14{width:799.233310pt;}
._e{width:801.639744pt;}
._12{width:882.372630pt;}
._11{width:893.528529pt;}
._17{width:939.013332pt;}
._1b{width:1022.542847pt;}
._10{width:1058.296449pt;}
._0{width:3667.963790pt;}
.fs6{font-size:17.578820pt;}
.fsb{font-size:18.468313pt;}
.fs4{font-size:20.874818pt;}
.fsa{font-size:25.064150pt;}
.fs9{font-size:26.383296pt;}
.fs10{font-size:29.522975pt;}
.fs0{font-size:30.152308pt;}
.fs3{font-size:35.805906pt;}
.fs1{font-size:37.690438pt;}
.fs5{font-size:41.459450pt;}
.fsc{font-size:42.643983pt;}
.fs7{font-size:45.228462pt;}
.fs8{font-size:45.228515pt;}
.fsf{font-size:50.639766pt;}
.fse{font-size:53.304992pt;}
.fs13{font-size:58.635710pt;}
.fs2{font-size:82.918900pt;}
.fs12{font-size:103.205825pt;}
.fsd{font-size:117.270886pt;}
.fs11{font-size:464.425948pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.053333pt;}
.y2{bottom:28.476306pt;}
.y3f{bottom:56.091495pt;}
.y69{bottom:60.206480pt;}
.y22c{bottom:62.750212pt;}
.y1e3{bottom:63.395105pt;}
.y209{bottom:63.535279pt;}
.y92{bottom:64.567585pt;}
.y175{bottom:64.849318pt;}
.ye1{bottom:64.944758pt;}
.y1c2{bottom:66.161584pt;}
.y3e{bottom:69.658956pt;}
.y68{bottom:72.455848pt;}
.y19f{bottom:73.381755pt;}
.y22b{bottom:74.999581pt;}
.y1e2{bottom:75.644474pt;}
.y91{bottom:76.816953pt;}
.y174{bottom:77.098686pt;}
.ye0{bottom:77.194126pt;}
.y1c1{bottom:78.410953pt;}
.y148{bottom:81.661085pt;}
.y67{bottom:84.705217pt;}
.y208{bottom:85.207137pt;}
.y3d{bottom:85.814910pt;}
.y22a{bottom:87.248949pt;}
.y1e1{bottom:87.893842pt;}
.y90{bottom:89.066322pt;}
.ydf{bottom:89.443495pt;}
.y19e{bottom:90.126815pt;}
.y147{bottom:93.910453pt;}
.y66{bottom:96.954585pt;}
.y207{bottom:97.456505pt;}
.y3c{bottom:98.064278pt;}
.y172{bottom:100.853744pt;}
.y8f{bottom:101.315690pt;}
.yde{bottom:101.692863pt;}
.y1c0{bottom:102.909609pt;}
.y146{bottom:106.159822pt;}
.y19d{bottom:106.872408pt;}
.y229{bottom:108.920807pt;}
.y65{bottom:109.203954pt;}
.y1e0{bottom:109.565700pt;}
.ydd{bottom:113.942232pt;}
.y171{bottom:117.813737pt;}
.y145{bottom:118.409190pt;}
.y206{bottom:119.128363pt;}
.yb8{bottom:121.160389pt;}
.y228{bottom:121.170176pt;}
.y64{bottom:121.453322pt;}
.y1df{bottom:121.815069pt;}
.y3b{bottom:122.562935pt;}
.y19c{bottom:123.617468pt;}
.y8e{bottom:125.814480pt;}
.y144{bottom:130.658558pt;}
.y205{bottom:131.377731pt;}
.yb7{bottom:133.409757pt;}
.y227{bottom:133.419544pt;}
.y63{bottom:133.702690pt;}
.y1de{bottom:134.064437pt;}
.y170{bottom:134.775063pt;}
.y167{bottom:134.775197pt;}
.y8d{bottom:138.063849pt;}
.y1bf{bottom:139.657435pt;}
.y19b{bottom:140.363061pt;}
.y143{bottom:142.907927pt;}
.y204{bottom:143.627100pt;}
.y226{bottom:145.668912pt;}
.y62{bottom:145.952059pt;}
.y8c{bottom:150.313217pt;}
.ydc{bottom:150.690350pt;}
.y16f{bottom:151.735057pt;}
.y1be{bottom:151.906803pt;}
.y142{bottom:155.157295pt;}
.y19a{bottom:157.108121pt;}
.yb6{bottom:157.908547pt;}
.y61{bottom:158.201427pt;}
.y1dd{bottom:158.563227pt;}
.y3a{bottom:159.310400pt;}
.y8b{bottom:162.562586pt;}
.ydb{bottom:162.939092pt;}
.y203{bottom:165.298958pt;}
.y225{bottom:167.340770pt;}
.y141{bottom:167.406664pt;}
.y16e{bottom:168.696250pt;}
.y166{bottom:168.696383pt;}
.yb5{bottom:170.157916pt;}
.y60{bottom:170.450796pt;}
.y39{bottom:171.559769pt;}
.y199{bottom:173.853714pt;}
.y8a{bottom:174.811954pt;}
.y1bd{bottom:176.406793pt;}
.y202{bottom:177.548326pt;}
.y224{bottom:179.590139pt;}
.y140{bottom:179.656032pt;}
.yb4{bottom:182.407284pt;}
.y5f{bottom:182.700164pt;}
.y1dc{bottom:183.061351pt;}
.y38{bottom:183.809137pt;}
.y165{bottom:185.656376pt;}
.yda{bottom:187.437882pt;}
.y1bc{bottom:188.656162pt;}
.y201{bottom:189.797695pt;}
.y198{bottom:190.599974pt;}
.y13f{bottom:191.905401pt;}
.y5e{bottom:194.949533pt;}
.y1db{bottom:195.310719pt;}
.y37{bottom:196.058506pt;}
.y89{bottom:199.310744pt;}
.yd9{bottom:199.687251pt;}
.y1bb{bottom:200.905530pt;}
.y223{bottom:201.261997pt;}
.y164{bottom:202.617570pt;}
.y16d{bottom:202.617703pt;}
.yb3{bottom:206.906075pt;}
.y5d{bottom:207.198901pt;}
.y197{bottom:207.345568pt;}
.y36{bottom:208.307874pt;}
.y200{bottom:211.469553pt;}
.y88{bottom:211.560113pt;}
.y1ba{bottom:213.154899pt;}
.y222{bottom:213.511365pt;}
.y13e{bottom:216.404191pt;}
.yb2{bottom:219.156696pt;}
.y163{bottom:219.578763pt;}
.y16c{bottom:219.579029pt;}
.y1da{bottom:219.808843pt;}
.y35{bottom:220.557242pt;}
.y1ff{bottom:223.718921pt;}
.y87{bottom:223.809481pt;}
.yd8{bottom:224.187241pt;}
.y13d{bottom:228.653559pt;}
.yb1{bottom:231.406065pt;}
.y5c{bottom:231.697558pt;}
.y1d9{bottom:232.058211pt;}
.y34{bottom:232.806611pt;}
.y196{bottom:235.120730pt;}
.y221{bottom:235.183890pt;}
.y1fe{bottom:235.968290pt;}
.y86{bottom:236.058850pt;}
.yd7{bottom:236.436609pt;}
.y1b9{bottom:237.653556pt;}
.yb0{bottom:243.655433pt;}
.y1d8{bottom:244.307580pt;}
.y33{bottom:245.055979pt;}
.y220{bottom:247.432632pt;}
.y85{bottom:248.308218pt;}
.y13c{bottom:253.152709pt;}
.y16b{bottom:253.500216pt;}
.yaf{bottom:255.904802pt;}
.y32{bottom:257.305348pt;}
.y1fd{bottom:257.640148pt;}
.y195{bottom:259.619520pt;}
.y21f{bottom:259.682000pt;}
.y84{bottom:260.557586pt;}
.yd6{bottom:260.935400pt;}
.yae{bottom:268.154170pt;}
.y5b{bottom:268.448637pt;}
.y1d7{bottom:268.806370pt;}
.y31{bottom:269.555969pt;}
.y1fc{bottom:269.889516pt;}
.y162{bottom:270.459942pt;}
.y16a{bottom:270.460342pt;}
.y194{bottom:271.868889pt;}
.y83{bottom:272.806955pt;}
.yd5{bottom:273.184768pt;}
.y1b8{bottom:274.401141pt;}
.y13b{bottom:277.650833pt;}
.yad{bottom:280.403538pt;}
.y5a{bottom:280.698005pt;}
.y1d6{bottom:281.055738pt;}
.y21e{bottom:281.354525pt;}
.y30{bottom:281.805338pt;}
.y1fb{bottom:282.138884pt;}
.y193{bottom:284.118257pt;}
.y82{bottom:285.056323pt;}
.y1b7{bottom:286.650509pt;}
.y161{bottom:287.421136pt;}
.y169{bottom:287.421536pt;}
.y13a{bottom:289.900201pt;}
.yac{bottom:292.652907pt;}
.y21d{bottom:293.603267pt;}
.y2f{bottom:294.054706pt;}
.y192{bottom:296.367625pt;}
.y81{bottom:297.305692pt;}
.yd4{bottom:297.683558pt;}
.y1b6{bottom:298.899878pt;}
.y1fa{bottom:303.810742pt;}
.y160{bottom:304.381129pt;}
.y168{bottom:304.381529pt;}
.y173{bottom:304.381662pt;}
.yab{bottom:304.902275pt;}
.y59{bottom:305.196795pt;}
.y1d5{bottom:305.554528pt;}
.y2e{bottom:306.304075pt;}
.y191{bottom:308.616994pt;}
.yd3{bottom:309.932927pt;}
.y1b5{bottom:311.149246pt;}
.y21c{bottom:315.275791pt;}
.y1f9{bottom:316.060111pt;}
.y58{bottom:317.446164pt;}
.y15f{bottom:317.944190pt;}
.y2d{bottom:318.553443pt;}
.y17{bottom:319.114096pt;}
.y80{bottom:321.805682pt;}
.yd2{bottom:322.182295pt;}
.y12a{bottom:325.787747pt;}
.y21b{bottom:327.525160pt;}
.y1f8{bottom:328.309479pt;}
.yaa{bottom:329.400399pt;}
.y1d4{bottom:330.054519pt;}
.yfa{bottom:330.128412pt;}
.y2c{bottom:330.802812pt;}
.y7f{bottom:334.055050pt;}
.yd1{bottom:334.431664pt;}
.y1b4{bottom:335.648036pt;}
.y21a{bottom:339.774528pt;}
.y1f7{bottom:340.558848pt;}
.ya9{bottom:341.649767pt;}
.y57{bottom:341.944954pt;}
.y1d3{bottom:342.303887pt;}
.yf9{bottom:342.377780pt;}
.y129{bottom:342.747740pt;}
.y15e{bottom:343.047180pt;}
.y2b{bottom:343.052180pt;}
.y16{bottom:343.612887pt;}
.y7e{bottom:346.304419pt;}
.yd0{bottom:346.681032pt;}
.y1b3{bottom:347.897405pt;}
.y190{bottom:348.318178pt;}
.y219{bottom:352.023270pt;}
.ya8{bottom:353.899136pt;}
.y56{bottom:354.193696pt;}
.yf8{bottom:354.627149pt;}
.y18f{bottom:355.856922pt;}
.y15{bottom:355.862255pt;}
.ycf{bottom:358.930400pt;}
.y128{bottom:359.708933pt;}
.y1b2{bottom:360.146773pt;}
.y1f6{bottom:362.230706pt;}
.ya7{bottom:366.148504pt;}
.y1d2{bottom:366.802677pt;}
.yf7{bottom:366.876517pt;}
.y15d{bottom:367.545970pt;}
.y2a{bottom:367.550704pt;}
.y14{bottom:368.111623pt;}
.yce{bottom:371.179769pt;}
.y1b1{bottom:372.396142pt;}
.y218{bottom:373.695795pt;}
.y18e{bottom:374.256914pt;}
.y1f5{bottom:374.480074pt;}
.y127{bottom:376.668927pt;}
.ya6{bottom:378.397873pt;}
.y55{bottom:378.692486pt;}
.yf6{bottom:379.125886pt;}
.y15c{bottom:379.795339pt;}
.y18d{bottom:381.794418pt;}
.ycd{bottom:383.429137pt;}
.y126{bottom:384.207670pt;}
.y7d{bottom:384.860003pt;}
.y217{bottom:385.945163pt;}
.y18c{bottom:389.331922pt;}
.ya5{bottom:390.647241pt;}
.y54{bottom:390.941854pt;}
.y1d1{bottom:391.300801pt;}
.yf5{bottom:391.375254pt;}
.y29{bottom:392.049494pt;}
.y13{bottom:392.610414pt;}
.y7c{bottom:393.340000pt;}
.ycc{bottom:395.678506pt;}
.y1f4{bottom:396.151932pt;}
.y18b{bottom:396.869425pt;}
.y188{bottom:396.870652pt;}
.y1b0{bottom:396.894932pt;}
.y216{bottom:398.193905pt;}
.y125{bottom:401.167664pt;}
.y7b{bottom:401.821250pt;}
.ya4{bottom:402.896609pt;}
.y53{bottom:403.191223pt;}
.y1d0{bottom:403.550169pt;}
.yf4{bottom:403.624623pt;}
.y15b{bottom:404.294129pt;}
.y187{bottom:404.408156pt;}
.y18a{bottom:404.408169pt;}
.y12{bottom:404.859782pt;}
.ycb{bottom:407.927874pt;}
.y1f3{bottom:408.401301pt;}
.y124{bottom:408.706407pt;}
.y1af{bottom:409.144300pt;}
.y186{bottom:411.946899pt;}
.y189{bottom:411.946913pt;}
.ya3{bottom:415.145978pt;}
.y52{bottom:415.440591pt;}
.yf3{bottom:415.873991pt;}
.y15a{bottom:416.543497pt;}
.y7a{bottom:419.431910pt;}
.y215{bottom:419.866429pt;}
.yca{bottom:420.177243pt;}
.y1ae{bottom:421.393669pt;}
.y114{bottom:425.666080pt;}
.y123{bottom:425.666400pt;}
.y133{bottom:425.666734pt;}
.ya2{bottom:427.395346pt;}
.y51{bottom:427.689960pt;}
.y79{bottom:427.911906pt;}
.y1cf{bottom:428.048959pt;}
.yf2{bottom:428.124613pt;}
.y159{bottom:428.792866pt;}
.y28{bottom:428.796906pt;}
.y11{bottom:429.358572pt;}
.y1f2{bottom:430.073159pt;}
.y239{bottom:430.492145pt;}
.y185{bottom:431.593825pt;}
.yc9{bottom:432.426611pt;}
.y122{bottom:433.205144pt;}
.y184{bottom:439.130702pt;}
.ya1{bottom:439.644715pt;}
.y50{bottom:439.939328pt;}
.y158{bottom:441.042234pt;}
.y214{bottom:441.538287pt;}
.y10{bottom:441.607941pt;}
.y1f1{bottom:442.322527pt;}
.y113{bottom:442.627274pt;}
.y132{bottom:442.627927pt;}
.yc8{bottom:444.675979pt;}
.y78{bottom:445.524432pt;}
.y1ad{bottom:445.891792pt;}
.y183{bottom:446.669445pt;}
.y121{bottom:450.165137pt;}
.ya0{bottom:451.894083pt;}
.y4f{bottom:452.188696pt;}
.y1ce{bottom:452.547750pt;}
.yf1{bottom:452.623403pt;}
.y157{bottom:453.291603pt;}
.y27{bottom:453.295696pt;}
.yf{bottom:453.857309pt;}
.y77{bottom:454.004429pt;}
.y1f0{bottom:454.571895pt;}
.y112{bottom:459.587267pt;}
.y131{bottom:459.587920pt;}
.y1ac{bottom:460.068053pt;}
.y213{bottom:463.210145pt;}
.y1cd{bottom:464.797118pt;}
.yf0{bottom:464.872145pt;}
.y26{bottom:465.545064pt;}
.y182{bottom:466.730637pt;}
.y11a{bottom:467.126197pt;}
.y120{bottom:467.126330pt;}
.y1ab{bottom:467.606797pt;}
.y76{bottom:471.616289pt;}
.y181{bottom:474.269381pt;}
.y1ef{bottom:476.243753pt;}
.y9f{bottom:476.392873pt;}
.y111{bottom:476.548460pt;}
.y130{bottom:476.549113pt;}
.y4e{bottom:476.687487pt;}
.yef{bottom:477.121513pt;}
.y156{bottom:477.790393pt;}
.y25{bottom:477.794433pt;}
.ye{bottom:478.356099pt;}
.y75{bottom:480.096285pt;}
.yc7{bottom:480.562898pt;}
.yc6{bottom:482.494778pt;}
.y119{bottom:484.086190pt;}
.y11f{bottom:484.086324pt;}
.y212{bottom:484.882003pt;}
.y1aa{bottom:486.216123pt;}
.y1ee{bottom:488.492495pt;}
.y9e{bottom:488.642242pt;}
.y4d{bottom:488.936228pt;}
.y1cc{bottom:489.295908pt;}
.yee{bottom:489.370882pt;}
.yc5{bottom:490.033521pt;}
.y155{bottom:490.039761pt;}
.y24{bottom:490.043801pt;}
.yd{bottom:490.605468pt;}
.y110{bottom:493.508453pt;}
.y12f{bottom:493.509107pt;}
.y180{bottom:494.556306pt;}
.y211{bottom:497.131372pt;}
.y74{bottom:497.706945pt;}
.yc0{bottom:500.604117pt;}
.y9d{bottom:500.891610pt;}
.y10f{bottom:501.047197pt;}
.y118{bottom:501.047384pt;}
.y11e{bottom:501.047517pt;}
.y4c{bottom:501.184970pt;}
.y1cb{bottom:501.545277pt;}
.yed{bottom:501.620250pt;}
.y17f{bottom:502.095050pt;}
.y154{bottom:502.290383pt;}
.y23{bottom:502.293170pt;}
.yc{bottom:502.854836pt;}
.y1a9{bottom:502.961183pt;}
.yc4{bottom:503.369116pt;}
.y73{bottom:506.188195pt;}
.yc3{bottom:509.070367pt;}
.y1ed{bottom:510.164353pt;}
.y12e{bottom:510.470300pt;}
.y139{bottom:510.470526pt;}
.y9c{bottom:513.140979pt;}
.y4b{bottom:513.433712pt;}
.yec{bottom:513.869618pt;}
.y153{bottom:514.539751pt;}
.y22{bottom:514.542538pt;}
.y72{bottom:514.668191pt;}
.y10e{bottom:518.007190pt;}
.y117{bottom:518.007377pt;}
.y11d{bottom:518.007510pt;}
.y12d{bottom:518.007803pt;}
.y136{bottom:518.008030pt;}
.y210{bottom:518.803230pt;}
.y1a8{bottom:519.706776pt;}
.y1ec{bottom:522.413722pt;}
.y17e{bottom:523.060108pt;}
.y9b{bottom:525.391600pt;}
.y4a{bottom:525.682454pt;}
.y1ca{bottom:526.044067pt;}
.yeb{bottom:526.118987pt;}
.yc2{bottom:526.175960pt;}
.y152{bottom:526.789120pt;}
.y21{bottom:526.791907pt;}
.yb{bottom:527.353626pt;}
.y138{bottom:527.430520pt;}
.y71{bottom:532.278851pt;}
.y10d{bottom:534.968383pt;}
.y116{bottom:534.968570pt;}
.y11c{bottom:534.968703pt;}
.y12c{bottom:534.968997pt;}
.y135{bottom:534.969223pt;}
.y1a7{bottom:536.451836pt;}
.yc1{bottom:537.579702pt;}
.y9a{bottom:537.640969pt;}
.y49{bottom:537.931822pt;}
.y1c9{bottom:538.293435pt;}
.yea{bottom:538.368355pt;}
.y151{bottom:539.038488pt;}
.y20{bottom:539.041275pt;}
.y20f{bottom:540.475754pt;}
.y70{bottom:540.760101pt;}
.y1eb{bottom:544.085580pt;}
.y137{bottom:544.391713pt;}
.y48{bottom:550.182444pt;}
.ybf{bottom:550.342471pt;}
.ye9{bottom:550.617724pt;}
.y17d{bottom:550.834830pt;}
.y150{bottom:551.287857pt;}
.y1f{bottom:551.290643pt;}
.ya{bottom:551.851750pt;}
.y10c{bottom:551.928377pt;}
.y115{bottom:551.928563pt;}
.y11b{bottom:551.928697pt;}
.y12b{bottom:551.928990pt;}
.y134{bottom:551.929217pt;}
.y1a6{bottom:553.197429pt;}
.y1ea{bottom:556.334948pt;}
.y6f{bottom:558.370761pt;}
.y99{bottom:562.139759pt;}
.y20e{bottom:562.147612pt;}
.y47{bottom:562.431812pt;}
.y1c8{bottom:562.792092pt;}
.ye8{bottom:562.867092pt;}
.y103{bottom:563.331985pt;}
.y107{bottom:563.332052pt;}
.y10b{bottom:563.332119pt;}
.y14f{bottom:563.537225pt;}
.y1e{bottom:563.541265pt;}
.y1e9{bottom:568.584317pt;}
.y1a5{bottom:570.488009pt;}
.y102{bottom:570.870729pt;}
.y106{bottom:570.870796pt;}
.y10a{bottom:570.870862pt;}
.y98{bottom:574.389128pt;}
.y46{bottom:574.681181pt;}
.ybe{bottom:574.841261pt;}
.ye7{bottom:575.116461pt;}
.y17c{bottom:575.332954pt;}
.y14e{bottom:575.786594pt;}
.y1d{bottom:575.790634pt;}
.y9{bottom:576.351740pt;}
.y1a4{bottom:578.026753pt;}
.y101{bottom:578.408233pt;}
.y105{bottom:578.408299pt;}
.y109{bottom:578.408366pt;}
.y20d{bottom:583.819470pt;}
.y100{bottom:585.946976pt;}
.y104{bottom:585.947043pt;}
.y108{bottom:585.947110pt;}
.y97{bottom:586.638496pt;}
.y6e{bottom:586.894683pt;}
.y45{bottom:586.930549pt;}
.ybd{bottom:587.090629pt;}
.ye6{bottom:587.365829pt;}
.y17b{bottom:587.582322pt;}
.y14d{bottom:588.035962pt;}
.y1c{bottom:588.040002pt;}
.y1e8{bottom:590.256175pt;}
.y1a3{bottom:594.771813pt;}
.yff{bottom:597.349465pt;}
.y44{bottom:599.179918pt;}
.ybc{bottom:599.339998pt;}
.y1c7{bottom:599.539997pt;}
.ye5{bottom:599.615197pt;}
.y17a{bottom:599.831691pt;}
.y14c{bottom:600.285331pt;}
.y1b{bottom:600.289371pt;}
.y8{bottom:600.850530pt;}
.yfe{bottom:601.118837pt;}
.y1e7{bottom:602.505543pt;}
.y244{bottom:603.830489pt;}
.y20c{bottom:605.491328pt;}
.y96{bottom:611.137286pt;}
.y6d{bottom:611.392806pt;}
.y43{bottom:611.429286pt;}
.y1a2{bottom:611.517406pt;}
.ybb{bottom:611.589366pt;}
.y1c6{bottom:611.790619pt;}
.y179{bottom:612.081059pt;}
.y14b{bottom:612.534699pt;}
.y1a{bottom:612.538739pt;}
.y1e6{bottom:614.754911pt;}
.yfd{bottom:616.290697pt;}
.yfc{bottom:620.060069pt;}
.y95{bottom:623.386655pt;}
.y6c{bottom:623.642175pt;}
.y42{bottom:623.678655pt;}
.yba{bottom:623.838734pt;}
.y1c5{bottom:624.039988pt;}
.ye4{bottom:624.113321pt;}
.y178{bottom:624.330428pt;}
.y14a{bottom:624.784067pt;}
.y7{bottom:625.349321pt;}
.y20b{bottom:627.163186pt;}
.y1a1{bottom:628.262466pt;}
.y94{bottom:635.636023pt;}
.y6b{bottom:635.891543pt;}
.y41{bottom:635.928023pt;}
.y1c4{bottom:636.289356pt;}
.ye3{bottom:636.362689pt;}
.y1e5{bottom:636.426769pt;}
.y177{bottom:636.579796pt;}
.y19{bottom:637.037396pt;}
.y6{bottom:637.598689pt;}
.y23a{bottom:639.396062pt;}
.y1a0{bottom:645.008059pt;}
.y243{bottom:645.381139pt;}
.y93{bottom:647.885391pt;}
.y6a{bottom:648.140911pt;}
.y40{bottom:648.177391pt;}
.yb9{bottom:648.337391pt;}
.y1c3{bottom:648.538725pt;}
.ye2{bottom:648.612058pt;}
.y1e4{bottom:648.677391pt;}
.yfb{bottom:648.816284pt;}
.y176{bottom:648.830418pt;}
.y20a{bottom:648.835044pt;}
.y149{bottom:649.282724pt;}
.y18{bottom:649.286724pt;}
.y5{bottom:649.848057pt;}
.y23f{bottom:650.858777pt;}
.y23d{bottom:656.349441pt;}
.y236{bottom:660.427520pt;}
.y241{bottom:665.397438pt;}
.y242{bottom:670.208063pt;}
.y237{bottom:675.778180pt;}
.y23e{bottom:692.809427pt;}
.y23c{bottom:703.896889pt;}
.y240{bottom:708.468087pt;}
.y23b{bottom:710.533766pt;}
.y3{bottom:712.093099pt;}
.y4{bottom:712.128832pt;}
.y22e{bottom:717.307497pt;}
.y235{bottom:717.729870pt;}
.y234{bottom:717.730284pt;}
.y233{bottom:717.730684pt;}
.y230{bottom:717.730830pt;}
.y232{bottom:717.731084pt;}
.y22f{bottom:717.731230pt;}
.y231{bottom:717.731764pt;}
.y22d{bottom:721.803762pt;}
.y238{bottom:768.947476pt;}
.h14{height:16.695355pt;}
.h15{height:17.584570pt;}
.he{height:19.629172pt;}
.h16{height:19.813855pt;}
.h10{height:19.840239pt;}
.h2{height:22.674536pt;}
.hd{height:23.850500pt;}
.h18{height:26.639594pt;}
.hb{height:26.926041pt;}
.hc{height:27.257686pt;}
.h7{height:27.899719pt;}
.ha{height:30.962099pt;}
.h9{height:31.659923pt;}
.h19{height:32.068275pt;}
.h8{height:32.349708pt;}
.h5{height:32.368539pt;}
.h3{height:34.874698pt;}
.h12{height:34.917726pt;}
.h6{height:38.362138pt;}
.h1e{height:44.950227pt;}
.h1b{height:45.778349pt;}
.hf{height:46.655504pt;}
.h1f{height:49.322734pt;}
.h13{height:49.995213pt;}
.h17{height:54.005474pt;}
.h11{height:61.732991pt;}
.h4{height:76.724275pt;}
.h1d{height:77.404369pt;}
.h1a{height:108.509927pt;}
.h1c{height:333.457830pt;}
.h1{height:793.280000pt;}
.h0{height:793.333333pt;}
.w1{width:1121.808000pt;}
.w2{width:1121.808075pt;}
.w3{width:1121.920000pt;}
.w5{width:1121.922550pt;}
.w4{width:1121.923200pt;}
.w7{width:1121.923800pt;}
.w6{width:1122.080000pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x29{left:40.271867pt;}
.x1{left:50.538721pt;}
.x3{left:53.718054pt;}
.x27{left:66.817306pt;}
.x1d{left:71.077305pt;}
.x24{left:73.239971pt;}
.x1a{left:94.035696pt;}
.x4f{left:95.873495pt;}
.x1e{left:102.736892pt;}
.x25{left:115.641287pt;}
.x28{left:120.237018pt;}
.x4e{left:127.856015pt;}
.x1b{left:131.678747pt;}
.x4d{left:159.838536pt;}
.x4c{left:175.830396pt;}
.x1c{left:184.037260pt;}
.x4b{left:207.813450pt;}
.x51{left:239.795971pt;}
.x4a{left:255.787831pt;}
.x49{left:287.770351pt;}
.x1f{left:291.566150pt;}
.x50{left:319.754739pt;}
.x48{left:335.745399pt;}
.x47{left:381.720980pt;}
.x46{left:397.713507pt;}
.x26{left:412.594501pt;}
.x45{left:413.704168pt;}
.x3f{left:437.288492pt;}
.x3e{left:454.612218pt;}
.x44{left:461.277482pt;}
.x43{left:478.868142pt;}
.x3d{left:485.262872pt;}
.x3c{left:502.586599pt;}
.x3b{left:519.910992pt;}
.x3a{left:550.561646pt;}
.x39{left:581.212301pt;}
.x38{left:598.536027pt;}
.x4{left:614.366421pt;}
.x37{left:615.860420pt;}
.x21{left:634.119746pt;}
.x13{left:640.447744pt;}
.xa{left:642.521076pt;}
.x36{left:646.511075pt;}
.x8{left:654.431631pt;}
.x6{left:657.629070pt;}
.x35{left:663.834801pt;}
.xf{left:688.867458pt;}
.x20{left:691.475723pt;}
.xd{left:692.673189pt;}
.x34{left:694.485455pt;}
.x10{left:697.438081pt;}
.x15{left:698.585187pt;}
.x42{left:705.171784pt;}
.x9{left:713.201328pt;}
.x5{left:723.939057pt;}
.x33{left:725.136110pt;}
.x12{left:729.609428pt;}
.x41{left:742.531769pt;}
.x32{left:755.785431pt;}
.x16{left:756.770764pt;}
.x7{left:764.482094pt;}
.x23{left:770.754358pt;}
.x40{left:779.028022pt;}
.x31{left:786.436085pt;}
.x17{left:798.182614pt;}
.xc{left:802.475812pt;}
.x30{left:803.759812pt;}
.xe{left:817.020740pt;}
.x11{left:828.388828pt;}
.x2f{left:834.410466pt;}
.x22{left:846.740994pt;}
.x2e{left:851.734193pt;}
.xb{left:870.167652pt;}
.x18{left:873.138184pt;}
.x2d{left:882.384847pt;}
.x2c{left:899.708573pt;}
.x2b{left:917.032966pt;}
.x19{left:931.323761pt;}
.x14{left:989.507604pt;}
.x2a{left:1007.150681pt;}
.x2{left:1010.777804pt;}
}




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