
    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_fc7bb3aef699c53955c56ab1.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_60bcaec60aafe72017875abf.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_69d2e0c438cf84afb8c3e76a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.948242;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_f2d4abe50beb1b30a7efb7f8.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_31481835f2557836868094e6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.966797;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_c67ce711b831d4a214b91a69.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_302cf33964ac440cb9929abf.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.948242;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_7a93cd17d77daacd02556ff2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.966797;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_dfd2fce430edbfb03fac0996.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.016602;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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_ed39a11ee838d319914bd1ea.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.075000;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_efed7490d90073f41c758d90.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.961914;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_fe98a7654a1e9ef163f2842b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.853027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.120026px;}
.ls23{letter-spacing:-0.432000px;}
.ls1a{letter-spacing:-0.216000px;}
.ls1b{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.081600px;}
.ls6{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.000026px;}
.ls28{letter-spacing:0.009360px;}
.ls30{letter-spacing:0.018000px;}
.ls8{letter-spacing:0.045360px;}
.ls5{letter-spacing:0.047956px;}
.ls13{letter-spacing:0.048002px;}
.ls2c{letter-spacing:0.064816px;}
.lsb{letter-spacing:0.067200px;}
.ls1{letter-spacing:0.090600px;}
.ls9{letter-spacing:0.090692px;}
.lsa{letter-spacing:0.090875px;}
.ls31{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.143912px;}
.ls15{letter-spacing:0.143934px;}
.lse{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.144007px;}
.ls1f{letter-spacing:0.144026px;}
.ls4{letter-spacing:0.144095px;}
.ls17{letter-spacing:0.144117px;}
.ls12{letter-spacing:0.197400px;}
.ls1c{letter-spacing:0.216000px;}
.ls32{letter-spacing:0.216026px;}
.ls14{letter-spacing:0.288000px;}
.ls19{letter-spacing:0.360000px;}
.ls22{letter-spacing:0.504000px;}
.ls20{letter-spacing:1.277296px;}
.ls1e{letter-spacing:1.278000px;}
.ls0{letter-spacing:1.318680px;}
.ls27{letter-spacing:1.356000px;}
.ls24{letter-spacing:1.368000px;}
.ls2f{letter-spacing:1.386000px;}
.ls18{letter-spacing:1.482000px;}
.ls2b{letter-spacing:1.584037px;}
.ls21{letter-spacing:1.716000px;}
.ls26{letter-spacing:16.343985px;}
.ls25{letter-spacing:27.863974px;}
.ls2e{letter-spacing:29.313379px;}
.ls10{letter-spacing:32.184027px;}
.ls1d{letter-spacing:39.743996px;}
.lsd{letter-spacing:58.823996px;}
.ls2a{letter-spacing:59.445355px;}
.ls2d{letter-spacing:63.566624px;}
.lsf{letter-spacing:75.864020px;}
.lsc{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;}
}
.ws19{word-spacing:-72.000000px;}
.ws13{word-spacing:-65.879997px;}
.ws14{word-spacing:-34.712639px;}
.ws0{word-spacing:-34.645319px;}
.wsd{word-spacing:-33.326639px;}
.wsf{word-spacing:-27.999360px;}
.wsb{word-spacing:-26.918760px;}
.ws9{word-spacing:-26.721360px;}
.wsa{word-spacing:-26.639760px;}
.ws10{word-spacing:-21.384000px;}
.wse{word-spacing:-20.232000px;}
.wsc{word-spacing:-20.160000px;}
.ws3{word-spacing:-20.016000px;}
.ws4{word-spacing:-19.944000px;}
.ws5{word-spacing:-19.872000px;}
.ws12{word-spacing:-19.584000px;}
.ws1{word-spacing:-18.405239px;}
.ws6{word-spacing:-18.381839px;}
.ws8{word-spacing:-18.359999px;}
.ws7{word-spacing:-18.314639px;}
.ws18{word-spacing:-15.372000px;}
.ws17{word-spacing:-15.228000px;}
.ws15{word-spacing:-15.012000px;}
.ws16{word-spacing:-14.868000px;}
.ws11{word-spacing:-13.320000px;}
.ws2{word-spacing:0.000000px;}
._13{margin-left:-23.229003px;}
._17{margin-left:-18.863865px;}
._10{margin-left:-17.396513px;}
._14{margin-left:-15.631058px;}
._16{margin-left:-13.224040px;}
._15{margin-left:-11.495996px;}
._1a{margin-left:-9.960011px;}
._18{margin-left:-8.855996px;}
._19{margin-left:-7.751908px;}
._12{margin-left:-5.981262px;}
._d{margin-left:-4.150440px;}
._c{margin-left:-2.964600px;}
._0{margin-left:-1.022040px;}
._1{width:1.198800px;}
._2{width:2.757240px;}
._1b{width:3.962359px;}
._f{width:5.904000px;}
._3{width:7.363800px;}
._26{width:8.856000px;}
._5{width:9.936000px;}
._e{width:11.924280px;}
._1e{width:13.059677px;}
._8{width:14.112022px;}
._2d{width:15.169147px;}
._1d{width:16.175965px;}
._9{width:17.208000px;}
._20{width:18.410400px;}
._44{width:19.497600px;}
._23{width:21.888000px;}
._22{width:23.616000px;}
._27{width:25.488000px;}
._21{width:27.288000px;}
._1c{width:28.781304px;}
._25{width:29.844055px;}
._3d{width:30.863771px;}
._24{width:32.448018px;}
._2c{width:33.662077px;}
._2b{width:35.039991px;}
._3e{width:36.168035px;}
._2a{width:37.776000px;}
._29{width:39.672000px;}
._35{width:40.680000px;}
._2e{width:42.408000px;}
._45{width:43.560000px;}
._36{width:45.432000px;}
._1f{width:47.016000px;}
._28{width:48.119934px;}
._31{width:49.392000px;}
._39{width:51.912000px;}
._30{width:54.864000px;}
._40{width:59.808037px;}
._3f{width:60.840000px;}
._33{width:64.008000px;}
._46{width:66.982862px;}
._34{width:69.336000px;}
._6{width:72.432000px;}
._7{width:73.512000px;}
._32{width:76.824000px;}
._3b{width:81.720000px;}
._42{width:91.676520px;}
._43{width:95.495647px;}
._3c{width:96.912000px;}
._37{width:107.352000px;}
._47{width:115.488000px;}
._38{width:123.840000px;}
._3a{width:125.496000px;}
._41{width:168.192000px;}
._a{width:172.473102px;}
._2f{width:180.576000px;}
._11{width:189.278640px;}
._b{width:202.412862px;}
._4{width:844.104007px;}
.fc8{color:rgb(0,112,192);}
.fc7{color:rgb(7,62,135);}
.fc3{color:rgb(243,149,120);}
.fc6{color:rgb(123,155,30);}
.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;}
.fs9{font-size:38.880000px;}
.fs5{font-size:43.200000px;}
.fs8{font-size:47.880000px;}
.fsc{font-size:54.000000px;}
.fs2{font-size:60.120000px;}
.fsa{font-size:63.000000px;}
.fs4{font-size:65.879997px;}
.fsb{font-size:66.000000px;}
.fs6{font-size:69.120000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:96.120000px;}
.fs3{font-size:119.879997px;}
.y0{bottom:0.000000px;}
.y1f4{bottom:0.930038px;}
.y145{bottom:9.750000px;}
.y25c{bottom:10.529995px;}
.y250{bottom:10.530006px;}
.y21b{bottom:10.530029px;}
.y20a{bottom:10.619980px;}
.y211{bottom:10.620003px;}
.y234{bottom:10.620014px;}
.y201{bottom:10.620026px;}
.y1a7{bottom:11.490005px;}
.y3a{bottom:12.959930px;}
.y37{bottom:12.960022px;}
.y3c{bottom:13.050018px;}
.y35{bottom:13.080048px;}
.y1c{bottom:14.129974px;}
.y21{bottom:14.130020px;}
.y1a{bottom:14.130066px;}
.y16{bottom:14.160004px;}
.y43{bottom:21.959976px;}
.y50{bottom:21.959999px;}
.y45{bottom:21.990005px;}
.y1f3{bottom:29.460022px;}
.y4d{bottom:30.959976px;}
.y46{bottom:30.990005px;}
.y214{bottom:33.839996px;}
.y233{bottom:33.840008px;}
.y23b{bottom:33.929947px;}
.y209{bottom:33.929993px;}
.y210{bottom:33.930016px;}
.y241{bottom:33.930038px;}
.y3e{bottom:41.400055px;}
.y39{bottom:41.489960px;}
.y19{bottom:45.179993px;}
.y23{bottom:45.180038px;}
.y42{bottom:50.399963px;}
.y208{bottom:57.149963px;}
.y232{bottom:57.149998px;}
.y213{bottom:57.150009px;}
.y220{bottom:57.239960px;}
.y258{bottom:57.239983px;}
.y240{bottom:57.240005px;}
.y20f{bottom:57.240028px;}
.y18{bottom:76.230011px;}
.y207{bottom:80.459976px;}
.y25b{bottom:80.459988px;}
.y20e{bottom:80.459999px;}
.y231{bottom:80.460011px;}
.y21f{bottom:80.460022px;}
.y21a{bottom:80.489960px;}
.y23f{bottom:80.490005px;}
.y13{bottom:102.060000px;}
.y22a{bottom:103.679993px;}
.y25a{bottom:103.709988px;}
.y24f{bottom:103.709999px;}
.y219{bottom:103.710022px;}
.y23a{bottom:103.769943px;}
.y206{bottom:103.769989px;}
.y20d{bottom:103.770012px;}
.y230{bottom:103.800007px;}
.y23e{bottom:103.800018px;}
.y8{bottom:105.209999px;}
.y205{bottom:126.989960px;}
.y229{bottom:126.990005px;}
.y218{bottom:127.019989px;}
.y22f{bottom:127.020000px;}
.y24e{bottom:127.020012px;}
.y257{bottom:127.079979px;}
.y20c{bottom:127.080025px;}
.y21e{bottom:127.080048px;}
.y23d{bottom:127.110031px;}
.y7{bottom:131.129997px;}
.y204{bottom:150.299973px;}
.y22c{bottom:150.299995px;}
.y21d{bottom:150.300018px;}
.y217{bottom:150.329956px;}
.y24d{bottom:150.330002px;}
.y22e{bottom:150.330013px;}
.y12{bottom:161.370003px;}
.y239{bottom:173.609940px;}
.y256{bottom:173.610008px;}
.y203{bottom:173.639969px;}
.y24c{bottom:173.639992px;}
.y228{bottom:173.640015px;}
.yf{bottom:174.509995px;}
.yd8{bottom:178.560000px;}
.y259{bottom:181.350002px;}
.y22d{bottom:182.069996px;}
.ye6{bottom:183.779995px;}
.y143{bottom:184.140003px;}
.y124{bottom:184.410004px;}
.y31{bottom:184.589996px;}
.y55{bottom:186.120003px;}
.y112{bottom:189.720005px;}
.y155{bottom:192.780006px;}
.y1a5{bottom:194.490005px;}
.yd7{bottom:195.839996px;}
.y24b{bottom:196.860008px;}
.y227{bottom:196.860031px;}
.y255{bottom:196.919975px;}
.y238{bottom:196.919998px;}
.y269{bottom:198.269989px;}
.y7b{bottom:200.700005px;}
.yd6{bottom:201.059990px;}
.y16a{bottom:203.400009px;}
.yc1{bottom:204.839996px;}
.y242{bottom:205.379997px;}
.ye5{bottom:206.820007px;}
.y1f1{bottom:209.790000px;}
.y186{bottom:213.120003px;}
.y1af{bottom:214.830002px;}
.y142{bottom:215.190010px;}
.y123{bottom:215.459999px;}
.yf6{bottom:215.910004px;}
.ye{bottom:216.450005px;}
.yec{bottom:216.540000px;}
.y185{bottom:218.339996px;}
.y226{bottom:220.169998px;}
.y24a{bottom:220.170021px;}
.y254{bottom:220.229988px;}
.y111{bottom:220.769989px;}
.y265{bottom:220.950005px;}
.y30{bottom:221.129997px;}
.y54{bottom:222.570007px;}
.y154{bottom:223.830002px;}
.yd5{bottom:224.099991px;}
.y1a4{bottom:225.540000px;}
.y184{bottom:230.309990px;}
.y169{bottom:234.450005px;}
.yae{bottom:235.889992px;}
.y1de{bottom:236.339996px;}
.y1f0{bottom:240.839996px;}
.y266{bottom:241.200005px;}
.y215{bottom:241.290000px;}
.y253{bottom:243.450005px;}
.y249{bottom:243.479988px;}
.y225{bottom:243.480011px;}
.y1ae{bottom:245.879997px;}
.y141{bottom:246.240005px;}
.y122{bottom:246.509995px;}
.y183{bottom:247.589996px;}
.y268{bottom:248.040000px;}
.y267{bottom:250.290000px;}
.y110{bottom:251.820007px;}
.y7a{bottom:253.169998px;}
.y153{bottom:254.879997px;}
.y117{bottom:256.230011px;}
.y1a3{bottom:256.589996px;}
.yd{bottom:256.860008px;}
.y2f{bottom:257.580002px;}
.y53{bottom:259.019989px;}
.y1fc{bottom:263.790000px;}
.y182{bottom:264.870003px;}
.y168{bottom:265.500000px;}
.y248{bottom:266.700005px;}
.y252{bottom:266.759972px;}
.y224{bottom:266.789978px;}
.yad{bottom:266.940010px;}
.y1dd{bottom:267.389992px;}
.y181{bottom:270.089996px;}
.y1ef{bottom:275.219994px;}
.y1ad{bottom:276.929993px;}
.y140{bottom:277.290000px;}
.y121{bottom:277.589996px;}
.y10f{bottom:282.900009px;}
.y152{bottom:285.959999px;}
.yc{bottom:286.500000px;}
.y116{bottom:287.309990px;}
.y1a2{bottom:287.669998px;}
.y247{bottom:290.010017px;}
.y223{bottom:290.010040px;}
.y212{bottom:292.080002px;}
.y180{bottom:293.070007px;}
.y2e{bottom:294.059990px;}
.y1fb{bottom:294.870003px;}
.y52{bottom:295.589996px;}
.y264{bottom:296.490005px;}
.y167{bottom:296.580002px;}
.y1ee{bottom:297.570007px;}
.yac{bottom:298.019989px;}
.y1dc{bottom:298.469994px;}
.y79{bottom:304.500000px;}
.y1ac{bottom:308.009995px;}
.y13f{bottom:308.370003px;}
.y120{bottom:308.639992px;}
.y246{bottom:313.319984px;}
.y222{bottom:313.320007px;}
.y10e{bottom:313.950005px;}
.y151{bottom:317.009995px;}
.y115{bottom:318.360008px;}
.y1a1{bottom:318.719994px;}
.y251{bottom:321.780006px;}
.y1fa{bottom:325.919998px;}
.y166{bottom:327.629997px;}
.yab{bottom:329.070007px;}
.y1db{bottom:329.519989px;}
.y2d{bottom:330.509995px;}
.y1ed{bottom:331.950005px;}
.y51{bottom:332.040000px;}
.y245{bottom:336.629997px;}
.y1ab{bottom:339.059990px;}
.y13e{bottom:339.419998px;}
.y11f{bottom:339.690010px;}
.y78{bottom:344.549995px;}
.y10d{bottom:345.000000px;}
.y22b{bottom:345.809990px;}
.y150{bottom:348.059990px;}
.yd4{bottom:349.410004px;}
.y1a0{bottom:349.769989px;}
.y17f{bottom:351.570007px;}
.yb{bottom:352.559990px;}
.y1ec{bottom:354.269989px;}
.y4f{bottom:356.070007px;}
.y1f9{bottom:356.969994px;}
.y165{bottom:358.679993px;}
.y244{bottom:359.850014px;}
.yaa{bottom:360.120003px;}
.y1da{bottom:360.570007px;}
.y20b{bottom:362.639992px;}
.y2c{bottom:366.959999px;}
.y1aa{bottom:370.110008px;}
.y13d{bottom:370.469994px;}
.y11e{bottom:370.740005px;}
.y10c{bottom:376.049995px;}
.y14f{bottom:379.110008px;}
.yd3{bottom:380.459999px;}
.y19f{bottom:380.820007px;}
.y17e{bottom:382.620003px;}
.y243{bottom:383.159981px;}
.y1eb{bottom:385.320007px;}
.y1f8{bottom:388.019989px;}
.y77{bottom:389.369980px;}
.ya9{bottom:391.169998px;}
.y1d9{bottom:391.619980px;}
.y1c0{bottom:401.160004px;}
.y13c{bottom:401.519989px;}
.y11d{bottom:401.789978px;}
.y4e{bottom:403.320007px;}
.y2b{bottom:403.410004px;}
.ya{bottom:404.310013px;}
.y14e{bottom:406.289978px;}
.y10b{bottom:407.099991px;}
.yfc{bottom:408.359985px;}
.yd2{bottom:411.509995px;}
.y19e{bottom:411.869980px;}
.y17d{bottom:413.669998px;}
.y1f2{bottom:414.449982px;}
.y164{bottom:415.470016px;}
.y1ea{bottom:416.369980px;}
.y1f7{bottom:419.070007px;}
.ya8{bottom:422.220016px;}
.y1d8{bottom:422.669998px;}
.ye4{bottom:425.910004px;}
.y1a9{bottom:426.990005px;}
.y262{bottom:431.759995px;}
.y1bf{bottom:432.210022px;}
.y13b{bottom:432.570007px;}
.yf0{bottom:432.660004px;}
.y11c{bottom:432.839996px;}
.y10a{bottom:438.150009px;}
.yfb{bottom:439.410004px;}
.y76{bottom:439.769989px;}
.y2a{bottom:439.949982px;}
.yd1{bottom:442.560013px;}
.y19d{bottom:442.919998px;}
.y17c{bottom:444.720016px;}
.y1f6{bottom:446.250000px;}
.y1e9{bottom:447.419998px;}
.y4c{bottom:450.480011px;}
.y9{bottom:450.750000px;}
.y261{bottom:452.460022px;}
.ya7{bottom:453.179993px;}
.y1d7{bottom:453.720016px;}
.ye3{bottom:456.960022px;}
.y91{bottom:462.179993px;}
.y6{bottom:462.539978px;}
.y1be{bottom:463.259995px;}
.y13a{bottom:463.529984px;}
.yef{bottom:463.710022px;}
.y11b{bottom:463.890015px;}
.y1a8{bottom:468.390015px;}
.y109{bottom:469.199982px;}
.yfa{bottom:470.460022px;}
.y163{bottom:473.070007px;}
.y260{bottom:473.160004px;}
.yd0{bottom:473.609985px;}
.y19c{bottom:473.880020px;}
.y29{bottom:476.400009px;}
.y1e8{bottom:478.470016px;}
.y17b{bottom:479.009995px;}
.ya6{bottom:484.230011px;}
.y1d6{bottom:484.769989px;}
.ye2{bottom:488.009995px;}
.y75{bottom:490.169998px;}
.yee{bottom:490.980011px;}
.y90{bottom:493.230011px;}
.y25f{bottom:494.039978px;}
.y1bd{bottom:494.310013px;}
.y139{bottom:494.580002px;}
.y11a{bottom:494.939987px;}
.y108{bottom:500.250000px;}
.y28{bottom:500.429993px;}
.y144{bottom:501.029984px;}
.y17a{bottom:501.419998px;}
.yf9{bottom:501.509995px;}
.y202{bottom:503.130020px;}
.y162{bottom:504.119980px;}
.ycf{bottom:504.660004px;}
.y19b{bottom:504.929993px;}
.y1e7{bottom:505.740005px;}
.y221{bottom:509.609985px;}
.y25e{bottom:515.099991px;}
.ya5{bottom:515.279984px;}
.y64{bottom:516.179993px;}
.ye1{bottom:519.060013px;}
.y1d5{bottom:519.419998px;}
.y4b{bottom:519.689987px;}
.y179{bottom:523.740005px;}
.y8f{bottom:524.279984px;}
.y1bc{bottom:525.359985px;}
.y138{bottom:525.630020px;}
.y119{bottom:525.990005px;}
.yf8{bottom:528.779984px;}
.y107{bottom:531.300018px;}
.y27{bottom:532.199982px;}
.y161{bottom:535.169998px;}
.yce{bottom:535.710022px;}
.y19a{bottom:535.980011px;}
.y74{bottom:540.570007px;}
.y1d4{bottom:541.740005px;}
.y1ce{bottom:542.910004px;}
.y178{bottom:546.060013px;}
.ya4{bottom:546.330002px;}
.ye0{bottom:550.109985px;}
.y8e{bottom:555.330002px;}
.y1bb{bottom:556.410004px;}
.y137{bottom:556.679993px;}
.y118{bottom:557.039978px;}
.y63{bottom:557.939987px;}
.y4a{bottom:558.300018px;}
.y106{bottom:562.349991px;}
.y26{bottom:564.060013px;}
.y160{bottom:566.220016px;}
.ycd{bottom:566.759995px;}
.y199{bottom:567.029984px;}
.y177{bottom:568.380020px;}
.y1cd{bottom:573.960022px;}
.y49{bottom:575.939987px;}
.ya3{bottom:577.380020px;}
.ydf{bottom:581.160004px;}
.y73{bottom:586.199982px;}
.y8d{bottom:586.380020px;}
.y1ba{bottom:587.460022px;}
.y136{bottom:587.730011px;}
.yc0{bottom:588.089996px;}
.y176{bottom:590.699982px;}
.y114{bottom:592.589996px;}
.y105{bottom:593.669998px;}
.y62{bottom:594.570007px;}
.y25{bottom:595.830002px;}
.y15f{bottom:597.269989px;}
.ycc{bottom:597.810013px;}
.y198{bottom:598.080002px;}
.y23c{bottom:601.949982px;}
.y1cc{bottom:605.009995px;}
.y48{bottom:605.189987px;}
.ya2{bottom:608.429993px;}
.y1d3{bottom:608.699982px;}
.yde{bottom:612.210022px;}
.y175{bottom:613.109985px;}
.y72{bottom:617.250000px;}
.y8c{bottom:617.429993px;}
.y1b9{bottom:618.509995px;}
.y135{bottom:618.779984px;}
.ybf{bottom:619.140015px;}
.yf5{bottom:620.400009px;}
.y104{bottom:624.810013px;}
.y61{bottom:625.619980px;}
.yeb{bottom:626.339996px;}
.y24{bottom:627.599991px;}
.y15e{bottom:628.320007px;}
.ycb{bottom:628.859985px;}
.y197{bottom:629.130020px;}
.y1d2{bottom:631.019989px;}
.y47{bottom:634.349991px;}
.y174{bottom:635.429993px;}
.y1cb{bottom:636.060013px;}
.ya1{bottom:639.480011px;}
.ydd{bottom:643.259995px;}
.y71{bottom:648.300018px;}
.y8b{bottom:648.480011px;}
.y1b8{bottom:649.560013px;}
.y134{bottom:649.830002px;}
.ybe{bottom:650.189987px;}
.y1d1{bottom:653.339996px;}
.y103{bottom:655.859985px;}
.y113{bottom:656.220016px;}
.y60{bottom:656.669998px;}
.y173{bottom:657.750000px;}
.yf4{bottom:659.009995px;}
.y15d{bottom:659.369980px;}
.yca{bottom:659.910004px;}
.y196{bottom:660.179993px;}
.y44{bottom:663.599991px;}
.yea{bottom:664.949982px;}
.y1ca{bottom:667.109985px;}
.ya0{bottom:670.529984px;}
.ydc{bottom:674.310013px;}
.y70{bottom:679.380020px;}
.y8a{bottom:679.560013px;}
.y172{bottom:680.099991px;}
.y1b7{bottom:680.640015px;}
.y133{bottom:680.910004px;}
.ybd{bottom:681.269989px;}
.y1d0{bottom:684.060013px;}
.y102{bottom:686.939987px;}
.y1a6{bottom:687.060013px;}
.y5f{bottom:687.750000px;}
.yf3{bottom:690.089996px;}
.y200{bottom:690.179993px;}
.y15c{bottom:690.449982px;}
.y22{bottom:690.539978px;}
.yc9{bottom:690.990005px;}
.y195{bottom:691.259995px;}
.ye9{bottom:696.029984px;}
.y1c9{bottom:698.189987px;}
.y9f{bottom:701.609985px;}
.y171{bottom:702.419998px;}
.yda{bottom:705.390015px;}
.y6f{bottom:710.429993px;}
.y89{bottom:710.609985px;}
.y41{bottom:710.880020px;}
.ydb{bottom:711.419998px;}
.y1b6{bottom:711.689987px;}
.y132{bottom:711.960022px;}
.ybc{bottom:712.320007px;}
.y101{bottom:717.990005px;}
.y187{bottom:718.349991px;}
.y5e{bottom:718.800018px;}
.yf2{bottom:721.140015px;}
.y15b{bottom:721.500000px;}
.yc8{bottom:722.039978px;}
.y194{bottom:722.310013px;}
.y170{bottom:724.830002px;}
.ye8{bottom:727.080002px;}
.y1c8{bottom:729.240005px;}
.y9e{bottom:732.660004px;}
.y1ff{bottom:735.449982px;}
.y1cf{bottom:736.080002px;}
.y6e{bottom:741.480011px;}
.y88{bottom:741.660004px;}
.y237{bottom:742.470016px;}
.y1b5{bottom:742.740005px;}
.y131{bottom:743.009995px;}
.ybb{bottom:743.369980px;}
.y16f{bottom:747.150009px;}
.yf1{bottom:748.410004px;}
.y100{bottom:749.039978px;}
.yc7{bottom:753.089996px;}
.y20{bottom:753.359985px;}
.ye7{bottom:754.349991px;}
.y15a{bottom:755.880020px;}
.y5d{bottom:760.740005px;}
.y1c7{bottom:763.619980px;}
.y9d{bottom:763.710022px;}
.y16e{bottom:769.469971px;}
.y6d{bottom:772.530029px;}
.y87{bottom:772.710022px;}
.y1b4{bottom:773.789978px;}
.y130{bottom:774.059967px;}
.yba{bottom:774.420044px;}
.y159{bottom:778.199982px;}
.yff{bottom:780.089996px;}
.yc6{bottom:784.140015px;}
.y193{bottom:784.410004px;}
.y1f{bottom:785.129974px;}
.y1c6{bottom:787.019989px;}
.y16d{bottom:791.789978px;}
.y9c{bottom:794.760040px;}
.y158{bottom:800.519989px;}
.y14d{bottom:802.410004px;}
.y6c{bottom:803.579956px;}
.y86{bottom:803.760040px;}
.y1b3{bottom:804.839996px;}
.y12f{bottom:805.109985px;}
.yb9{bottom:805.469971px;}
.y40{bottom:808.530029px;}
.y1c5{bottom:810.600037px;}
.yfe{bottom:811.140015px;}
.y16c{bottom:814.109985px;}
.yc5{bottom:815.190033px;}
.y192{bottom:815.460022px;}
.y1e6{bottom:817.980011px;}
.y157{bottom:822.839996px;}
.y9b{bottom:825.809967px;}
.y1f5{bottom:828.870026px;}
.y1e{bottom:831.030029px;}
.y1c4{bottom:834.179993px;}
.y6b{bottom:834.629974px;}
.y85{bottom:834.809967px;}
.y14c{bottom:835.350037px;}
.y5{bottom:835.620026px;}
.y1b2{bottom:835.890015px;}
.y12e{bottom:836.160004px;}
.y21c{bottom:836.339996px;}
.yb8{bottom:836.429993px;}
.yfd{bottom:838.410004px;}
.y188{bottom:842.460022px;}
.y156{bottom:845.160004px;}
.yc4{bottom:846.239960px;}
.y191{bottom:846.510040px;}
.y3f{bottom:847.410004px;}
.y1d{bottom:848.760040px;}
.y1e5{bottom:856.589996px;}
.y9a{bottom:856.859985px;}
.y14b{bottom:857.670044px;}
.y6a{bottom:865.679993px;}
.y84{bottom:865.859985px;}
.y12d{bottom:867.210022px;}
.yb7{bottom:867.480011px;}
.y3d{bottom:872.969971px;}
.y190{bottom:877.559967px;}
.y5c{bottom:878.910004px;}
.y14a{bottom:879.989960px;}
.y1b{bottom:880.530029px;}
.y1c3{bottom:881.250000px;}
.y1e4{bottom:887.640015px;}
.y99{bottom:887.910004px;}
.yed{bottom:890.969971px;}
.y1b1{bottom:892.679993px;}
.y69{bottom:896.730011px;}
.y83{bottom:896.910004px;}
.y12c{bottom:898.260040px;}
.yb6{bottom:898.530029px;}
.y149{bottom:902.399963px;}
.yc3{bottom:903.030029px;}
.y1fe{bottom:904.289978px;}
.y1c2{bottom:904.829956px;}
.y18f{bottom:908.609985px;}
.y5b{bottom:909.960022px;}
.y1e3{bottom:918.690033px;}
.y98{bottom:918.960022px;}
.yf7{bottom:922.019989px;}
.y148{bottom:924.719971px;}
.y82{bottom:927.960022px;}
.y1c1{bottom:928.320007px;}
.y12b{bottom:929.309967px;}
.yb5{bottom:929.579956px;}
.y3b{bottom:930.570007px;}
.y1b0{bottom:934.079956px;}
.y18e{bottom:939.660004px;}
.y5a{bottom:940.649963px;}
.y68{bottom:941.550018px;}
.y147{bottom:947.039978px;}
.y1e2{bottom:949.739960px;}
.y97{bottom:950.010040px;}
.y236{bottom:952.800018px;}
.y81{bottom:959.010040px;}
.y12a{bottom:960.359985px;}
.yb4{bottom:960.629974px;}
.y16b{bottom:966.660004px;}
.y146{bottom:969.359985px;}
.y18d{bottom:970.710022px;}
.y17{bottom:974.399963px;}
.y1e1{bottom:980.789978px;}
.y96{bottom:981.059967px;}
.y38{bottom:988.260040px;}
.y80{bottom:990.059967px;}
.y129{bottom:991.410004px;}
.yb3{bottom:991.679993px;}
.y67{bottom:991.859985px;}
.y216{bottom:1000.140015px;}
.y18c{bottom:1001.760040px;}
.y1e0{bottom:1011.839996px;}
.y95{bottom:1012.109985px;}
.y7f{bottom:1021.109985px;}
.y128{bottom:1022.460022px;}
.yb2{bottom:1022.730011px;}
.yc2{bottom:1028.760040px;}
.y18b{bottom:1032.809967px;}
.y59{bottom:1036.050018px;}
.y66{bottom:1042.260040px;}
.y94{bottom:1043.160004px;}
.y36{bottom:1045.949982px;}
.y7e{bottom:1052.160004px;}
.y127{bottom:1053.510040px;}
.yb1{bottom:1053.780029px;}
.y1df{bottom:1063.769989px;}
.y18a{bottom:1063.859985px;}
.y15{bottom:1068.359985px;}
.y263{bottom:1068.629974px;}
.y93{bottom:1074.210022px;}
.y34{bottom:1075.109985px;}
.y58{bottom:1077.480011px;}
.y1fd{bottom:1083.960022px;}
.y126{bottom:1084.589996px;}
.yb0{bottom:1084.859985px;}
.y65{bottom:1092.690033px;}
.y235{bottom:1093.320007px;}
.y189{bottom:1094.940033px;}
.y7d{bottom:1104.660004px;}
.y57{bottom:1113.120026px;}
.yaf{bottom:1115.910004px;}
.y33{bottom:1117.980011px;}
.y14{bottom:1135.710022px;}
.y92{bottom:1135.800018px;}
.y125{bottom:1141.469971px;}
.y7c{bottom:1146.960022px;}
.y32{bottom:1147.679993px;}
.yd9{bottom:1148.399963px;}
.y56{bottom:1149.570007px;}
.y25d{bottom:1151.190033px;}
.y11{bottom:1178.010040px;}
.y4{bottom:1185.750000px;}
.y3{bottom:1188.359985px;}
.y2{bottom:1190.879974px;}
.y1{bottom:1193.489960px;}
.y10{bottom:1200.385530px;}
.h3{height:4.249336px;}
.h6{height:5.486484px;}
.h2b{height:23.310000px;}
.h15{height:28.439999px;}
.h1b{height:28.530000px;}
.h13{height:28.560000px;}
.h21{height:28.685391px;}
.he{height:31.050000px;}
.hc{height:31.079999px;}
.h26{height:34.290000px;}
.h24{height:34.855313px;}
.h27{height:36.089999px;}
.h30{height:39.840820px;}
.h2c{height:40.579102px;}
.ha{height:42.335156px;}
.h20{height:42.923672px;}
.h22{height:44.356113px;}
.h1c{height:46.439999px;}
.h1a{height:46.469999px;}
.h2d{height:48.410156px;}
.h23{height:48.605799px;}
.h28{height:48.694336px;}
.h14{height:49.538670px;}
.h25{height:49.992188px;}
.h12{height:51.975000px;}
.h9{height:53.121094px;}
.h5{height:53.896641px;}
.h2a{height:54.000000px;}
.h1f{height:54.140625px;}
.h17{height:56.879997px;}
.h16{height:56.969999px;}
.h8{height:59.060388px;}
.h11{height:59.797090px;}
.hf{height:62.100002px;}
.h10{height:62.129997px;}
.h4{height:64.546875px;}
.h18{height:65.526150px;}
.h29{height:67.043698px;}
.h31{height:69.840002px;}
.h19{height:74.879997px;}
.h1d{height:86.170078px;}
.hb{height:90.144139px;}
.hd{height:93.149998px;}
.h1e{height:95.603730px;}
.h7{height:107.470544px;}
.h35{height:139.709999px;}
.h2f{height:139.770000px;}
.h37{height:139.799995px;}
.h33{height:162.990005px;}
.h32{height:163.020000px;}
.h2e{height:186.330002px;}
.h36{height:209.610008px;}
.h39{height:279.450005px;}
.h34{height:326.009995px;}
.h38{height:395.849991px;}
.h2{height:1262.969971px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w7{width:52.110003px;}
.wa{width:60.750000px;}
.w8{width:116.220005px;}
.wf{width:116.279995px;}
.wb{width:118.200005px;}
.w17{width:148.169998px;}
.w14{width:148.529995px;}
.we{width:233.759995px;}
.w5{width:251.129997px;}
.w3{width:253.830002px;}
.w19{width:285.780006px;}
.w18{width:285.870003px;}
.w15{width:286.589996px;}
.w16{width:286.679993px;}
.wd{width:326.549995px;}
.w12{width:414.990005px;}
.w13{width:438.750000px;}
.w9{width:467.039978px;}
.w4{width:479.580002px;}
.w6{width:482.910004px;}
.w11{width:510.119980px;}
.wc{width:530.880020px;}
.w1a{width:721.349991px;}
.w1{width:892.500000px;}
.w10{width:892.529973px;}
.w2{width:892.529987px;}
.w0{width:892.530000px;}
.x0{left:0.000000px;}
.x8{left:8.280001px;}
.x7{left:77.129997px;}
.x21{left:81.810000px;}
.x13{left:82.979986px;}
.x1{left:85.049987px;}
.x17{left:90.449986px;}
.x11{left:103.049982px;}
.x33{left:109.890015px;}
.x22{left:112.049982px;}
.x34{left:113.849989px;}
.x12{left:121.049982px;}
.x2e{left:126.449991px;}
.xb{left:129.959999px;}
.x23{left:131.669985px;}
.xc{left:138.600002px;}
.x2f{left:156.089970px;}
.x30{left:162.749987px;}
.x28{left:183.179978px;}
.x29{left:189.839983px;}
.x10{left:200.279993px;}
.x31{left:233.940010px;}
.x3{left:246.539987px;}
.xd{left:257.610008px;}
.x16{left:301.079989px;}
.x18{left:321.959972px;}
.xa{left:328.980011px;}
.x9{left:331.769989px;}
.x2d{left:369.719994px;}
.x2a{left:392.220016px;}
.xe{left:404.400009px;}
.x5{left:457.229998px;}
.x1d{left:472.289951px;}
.x1e{left:478.949968px;}
.x32{left:520.529984px;}
.x24{left:577.139988px;}
.x25{left:583.800005px;}
.x1f{left:606.119967px;}
.x20{left:613.409990px;}
.xf{left:638.880020px;}
.x26{left:661.289951px;}
.x27{left:667.949968px;}
.x4{left:674.924475px;}
.x38{left:737.609972px;}
.x6{left:739.229998px;}
.x39{left:744.359972px;}
.x37{left:746.609972px;}
.x35{left:752.189974px;}
.x36{left:753.359972px;}
.x1a{left:754.529970px;}
.x1c{left:757.949968px;}
.x14{left:795.780003px;}
.x15{left:802.440020px;}
.x2b{left:805.499987px;}
.x2{left:807.479998px;}
.x2c{left:809.640001px;}
.x1b{left:811.890001px;}
.x19{left:817.109972px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.440023pt;}
.ls23{letter-spacing:-0.384000pt;}
.ls1a{letter-spacing:-0.192000pt;}
.ls1b{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.072533pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.000023pt;}
.ls28{letter-spacing:0.008320pt;}
.ls30{letter-spacing:0.016000pt;}
.ls8{letter-spacing:0.040320pt;}
.ls5{letter-spacing:0.042628pt;}
.ls13{letter-spacing:0.042668pt;}
.ls2c{letter-spacing:0.057615pt;}
.lsb{letter-spacing:0.059733pt;}
.ls1{letter-spacing:0.080533pt;}
.ls9{letter-spacing:0.080615pt;}
.lsa{letter-spacing:0.080778pt;}
.ls31{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.127922pt;}
.ls15{letter-spacing:0.127941pt;}
.lse{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.128007pt;}
.ls1f{letter-spacing:0.128023pt;}
.ls4{letter-spacing:0.128085pt;}
.ls17{letter-spacing:0.128104pt;}
.ls12{letter-spacing:0.175467pt;}
.ls1c{letter-spacing:0.192000pt;}
.ls32{letter-spacing:0.192023pt;}
.ls14{letter-spacing:0.256000pt;}
.ls19{letter-spacing:0.320000pt;}
.ls22{letter-spacing:0.448000pt;}
.ls20{letter-spacing:1.135375pt;}
.ls1e{letter-spacing:1.136000pt;}
.ls0{letter-spacing:1.172160pt;}
.ls27{letter-spacing:1.205333pt;}
.ls24{letter-spacing:1.216000pt;}
.ls2f{letter-spacing:1.232000pt;}
.ls18{letter-spacing:1.317333pt;}
.ls2b{letter-spacing:1.408033pt;}
.ls21{letter-spacing:1.525333pt;}
.ls26{letter-spacing:14.527987pt;}
.ls25{letter-spacing:24.767977pt;}
.ls2e{letter-spacing:26.056337pt;}
.ls10{letter-spacing:28.608024pt;}
.ls1d{letter-spacing:35.327997pt;}
.lsd{letter-spacing:52.287997pt;}
.ls2a{letter-spacing:52.840316pt;}
.ls2d{letter-spacing:56.503665pt;}
.lsf{letter-spacing:67.434685pt;}
.lsc{letter-spacing:750.314673pt;}
.ws19{word-spacing:-64.000000pt;}
.ws13{word-spacing:-58.559998pt;}
.ws14{word-spacing:-30.855679pt;}
.ws0{word-spacing:-30.795839pt;}
.wsd{word-spacing:-29.623679pt;}
.wsf{word-spacing:-24.888320pt;}
.wsb{word-spacing:-23.927787pt;}
.ws9{word-spacing:-23.752320pt;}
.wsa{word-spacing:-23.679787pt;}
.ws10{word-spacing:-19.008000pt;}
.wse{word-spacing:-17.984000pt;}
.wsc{word-spacing:-17.920000pt;}
.ws3{word-spacing:-17.792000pt;}
.ws4{word-spacing:-17.728000pt;}
.ws5{word-spacing:-17.664000pt;}
.ws12{word-spacing:-17.408000pt;}
.ws1{word-spacing:-16.360213pt;}
.ws6{word-spacing:-16.339413pt;}
.ws8{word-spacing:-16.319999pt;}
.ws7{word-spacing:-16.279679pt;}
.ws18{word-spacing:-13.664000pt;}
.ws17{word-spacing:-13.536000pt;}
.ws15{word-spacing:-13.344000pt;}
.ws16{word-spacing:-13.216000pt;}
.ws11{word-spacing:-11.840000pt;}
.ws2{word-spacing:0.000000pt;}
._13{margin-left:-20.648003pt;}
._17{margin-left:-16.767880pt;}
._10{margin-left:-15.463567pt;}
._14{margin-left:-13.894274pt;}
._16{margin-left:-11.754702pt;}
._15{margin-left:-10.218663pt;}
._1a{margin-left:-8.853343pt;}
._18{margin-left:-7.871997pt;}
._19{margin-left:-6.890585pt;}
._12{margin-left:-5.316677pt;}
._d{margin-left:-3.689280pt;}
._c{margin-left:-2.635200pt;}
._0{margin-left:-0.908480pt;}
._1{width:1.065600pt;}
._2{width:2.450880pt;}
._1b{width:3.522097pt;}
._f{width:5.248000pt;}
._3{width:6.545600pt;}
._26{width:7.872000pt;}
._5{width:8.832000pt;}
._e{width:10.599360pt;}
._1e{width:11.608601pt;}
._8{width:12.544020pt;}
._2d{width:13.483686pt;}
._1d{width:14.378636pt;}
._9{width:15.296000pt;}
._20{width:16.364800pt;}
._44{width:17.331200pt;}
._23{width:19.456000pt;}
._22{width:20.992000pt;}
._27{width:22.656000pt;}
._21{width:24.256000pt;}
._1c{width:25.583382pt;}
._25{width:26.528049pt;}
._3d{width:27.434463pt;}
._24{width:28.842683pt;}
._2c{width:29.921846pt;}
._2b{width:31.146659pt;}
._3e{width:32.149364pt;}
._2a{width:33.578667pt;}
._29{width:35.264000pt;}
._35{width:36.160000pt;}
._2e{width:37.696000pt;}
._45{width:38.720000pt;}
._36{width:40.384000pt;}
._1f{width:41.792000pt;}
._28{width:42.773275pt;}
._31{width:43.904000pt;}
._39{width:46.144000pt;}
._30{width:48.768000pt;}
._40{width:53.162699pt;}
._3f{width:54.080000pt;}
._33{width:56.896000pt;}
._46{width:59.540322pt;}
._34{width:61.632000pt;}
._6{width:64.384000pt;}
._7{width:65.344000pt;}
._32{width:68.288000pt;}
._3b{width:72.640000pt;}
._42{width:81.490240pt;}
._43{width:84.885020pt;}
._3c{width:86.144000pt;}
._37{width:95.424000pt;}
._47{width:102.656000pt;}
._38{width:110.080000pt;}
._3a{width:111.552000pt;}
._41{width:149.504000pt;}
._a{width:153.309424pt;}
._2f{width:160.512000pt;}
._11{width:168.247680pt;}
._b{width:179.922544pt;}
._4{width:750.314673pt;}
.fs0{font-size:5.440000pt;}
.fs9{font-size:34.560000pt;}
.fs5{font-size:38.400000pt;}
.fs8{font-size:42.560000pt;}
.fsc{font-size:48.000000pt;}
.fs2{font-size:53.440000pt;}
.fsa{font-size:56.000000pt;}
.fs4{font-size:58.559998pt;}
.fsb{font-size:58.666667pt;}
.fs6{font-size:61.440000pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:85.440000pt;}
.fs3{font-size:106.559998pt;}
.y0{bottom:0.000000pt;}
.y1f4{bottom:0.826701pt;}
.y145{bottom:8.666667pt;}
.y25c{bottom:9.359996pt;}
.y250{bottom:9.360006pt;}
.y21b{bottom:9.360026pt;}
.y20a{bottom:9.439982pt;}
.y211{bottom:9.440002pt;}
.y234{bottom:9.440013pt;}
.y201{bottom:9.440023pt;}
.y1a7{bottom:10.213338pt;}
.y3a{bottom:11.519938pt;}
.y37{bottom:11.520020pt;}
.y3c{bottom:11.600016pt;}
.y35{bottom:11.626709pt;}
.y1c{bottom:12.559977pt;}
.y21{bottom:12.560018pt;}
.y1a{bottom:12.560059pt;}
.y16{bottom:12.586670pt;}
.y43{bottom:19.519979pt;}
.y50{bottom:19.519999pt;}
.y45{bottom:19.546672pt;}
.y1f3{bottom:26.186686pt;}
.y4d{bottom:27.519979pt;}
.y46{bottom:27.546672pt;}
.y214{bottom:30.079997pt;}
.y233{bottom:30.080007pt;}
.y23b{bottom:30.159953pt;}
.y209{bottom:30.159993pt;}
.y210{bottom:30.160014pt;}
.y241{bottom:30.160034pt;}
.y3e{bottom:36.800049pt;}
.y39{bottom:36.879964pt;}
.y19{bottom:40.159993pt;}
.y23{bottom:40.160034pt;}
.y42{bottom:44.799967pt;}
.y208{bottom:50.799967pt;}
.y232{bottom:50.799998pt;}
.y213{bottom:50.800008pt;}
.y220{bottom:50.879964pt;}
.y258{bottom:50.879985pt;}
.y240{bottom:50.880005pt;}
.y20f{bottom:50.880025pt;}
.y18{bottom:67.760010pt;}
.y207{bottom:71.519979pt;}
.y25b{bottom:71.519989pt;}
.y20e{bottom:71.519999pt;}
.y231{bottom:71.520009pt;}
.y21f{bottom:71.520020pt;}
.y21a{bottom:71.546631pt;}
.y23f{bottom:71.546672pt;}
.y13{bottom:90.720000pt;}
.y22a{bottom:92.159993pt;}
.y25a{bottom:92.186656pt;}
.y24f{bottom:92.186666pt;}
.y219{bottom:92.186686pt;}
.y23a{bottom:92.239950pt;}
.y206{bottom:92.239990pt;}
.y20d{bottom:92.240011pt;}
.y230{bottom:92.266673pt;}
.y23e{bottom:92.266683pt;}
.y8{bottom:93.519999pt;}
.y205{bottom:112.879964pt;}
.y229{bottom:112.880005pt;}
.y218{bottom:112.906657pt;}
.y22f{bottom:112.906667pt;}
.y24e{bottom:112.906677pt;}
.y257{bottom:112.959981pt;}
.y20c{bottom:112.960022pt;}
.y21e{bottom:112.960042pt;}
.y23d{bottom:112.986694pt;}
.y7{bottom:116.559998pt;}
.y204{bottom:133.599976pt;}
.y22c{bottom:133.599996pt;}
.y21d{bottom:133.600016pt;}
.y217{bottom:133.626628pt;}
.y24d{bottom:133.626668pt;}
.y22e{bottom:133.626678pt;}
.y12{bottom:143.440002pt;}
.y239{bottom:154.319946pt;}
.y256{bottom:154.320007pt;}
.y203{bottom:154.346639pt;}
.y24c{bottom:154.346659pt;}
.y228{bottom:154.346680pt;}
.yf{bottom:155.119995pt;}
.yd8{bottom:158.720000pt;}
.y259{bottom:161.200002pt;}
.y22d{bottom:161.839996pt;}
.ye6{bottom:163.359996pt;}
.y143{bottom:163.680003pt;}
.y124{bottom:163.920003pt;}
.y31{bottom:164.079997pt;}
.y55{bottom:165.440002pt;}
.y112{bottom:168.640004pt;}
.y155{bottom:171.360006pt;}
.y1a5{bottom:172.880005pt;}
.yd7{bottom:174.079997pt;}
.y24b{bottom:174.986674pt;}
.y227{bottom:174.986694pt;}
.y255{bottom:175.039978pt;}
.y238{bottom:175.039998pt;}
.y269{bottom:176.239990pt;}
.y7b{bottom:178.400004pt;}
.yd6{bottom:178.719991pt;}
.y16a{bottom:180.800008pt;}
.yc1{bottom:182.079997pt;}
.y242{bottom:182.559998pt;}
.ye5{bottom:183.840007pt;}
.y1f1{bottom:186.480000pt;}
.y186{bottom:189.440002pt;}
.y1af{bottom:190.960002pt;}
.y142{bottom:191.280009pt;}
.y123{bottom:191.519999pt;}
.yf6{bottom:191.920003pt;}
.ye{bottom:192.400004pt;}
.yec{bottom:192.480000pt;}
.y185{bottom:194.079997pt;}
.y226{bottom:195.706665pt;}
.y24a{bottom:195.706685pt;}
.y254{bottom:195.759989pt;}
.y111{bottom:196.239990pt;}
.y265{bottom:196.400004pt;}
.y30{bottom:196.559998pt;}
.y54{bottom:197.840007pt;}
.y154{bottom:198.960002pt;}
.yd5{bottom:199.199992pt;}
.y1a4{bottom:200.480000pt;}
.y184{bottom:204.719991pt;}
.y169{bottom:208.400004pt;}
.yae{bottom:209.679993pt;}
.y1de{bottom:210.079997pt;}
.y1f0{bottom:214.079997pt;}
.y266{bottom:214.400004pt;}
.y215{bottom:214.480000pt;}
.y253{bottom:216.400004pt;}
.y249{bottom:216.426656pt;}
.y225{bottom:216.426676pt;}
.y1ae{bottom:218.559998pt;}
.y141{bottom:218.880005pt;}
.y122{bottom:219.119995pt;}
.y183{bottom:220.079997pt;}
.y268{bottom:220.480000pt;}
.y267{bottom:222.480000pt;}
.y110{bottom:223.840007pt;}
.y7a{bottom:225.039998pt;}
.y153{bottom:226.559998pt;}
.y117{bottom:227.760010pt;}
.y1a3{bottom:228.079997pt;}
.yd{bottom:228.320007pt;}
.y2f{bottom:228.960002pt;}
.y53{bottom:230.239990pt;}
.y1fc{bottom:234.480000pt;}
.y182{bottom:235.440002pt;}
.y168{bottom:236.000000pt;}
.y248{bottom:237.066671pt;}
.y252{bottom:237.119975pt;}
.y224{bottom:237.146647pt;}
.yad{bottom:237.280009pt;}
.y1dd{bottom:237.679993pt;}
.y181{bottom:240.079997pt;}
.y1ef{bottom:244.639994pt;}
.y1ad{bottom:246.159993pt;}
.y140{bottom:246.480000pt;}
.y121{bottom:246.746663pt;}
.y10f{bottom:251.466675pt;}
.y152{bottom:254.186666pt;}
.yc{bottom:254.666667pt;}
.y116{bottom:255.386658pt;}
.y1a2{bottom:255.706665pt;}
.y247{bottom:257.786682pt;}
.y223{bottom:257.786702pt;}
.y212{bottom:259.626668pt;}
.y180{bottom:260.506673pt;}
.y2e{bottom:261.386658pt;}
.y1fb{bottom:262.106669pt;}
.y52{bottom:262.746663pt;}
.y264{bottom:263.546672pt;}
.y167{bottom:263.626668pt;}
.y1ee{bottom:264.506673pt;}
.yac{bottom:264.906657pt;}
.y1dc{bottom:265.306661pt;}
.y79{bottom:270.666667pt;}
.y1ac{bottom:273.786662pt;}
.y13f{bottom:274.106669pt;}
.y120{bottom:274.346659pt;}
.y246{bottom:278.506653pt;}
.y222{bottom:278.506673pt;}
.y10e{bottom:279.066671pt;}
.y151{bottom:281.786662pt;}
.y115{bottom:282.986674pt;}
.y1a1{bottom:283.306661pt;}
.y251{bottom:286.026672pt;}
.y1fa{bottom:289.706665pt;}
.y166{bottom:291.226664pt;}
.yab{bottom:292.506673pt;}
.y1db{bottom:292.906657pt;}
.y2d{bottom:293.786662pt;}
.y1ed{bottom:295.066671pt;}
.y51{bottom:295.146667pt;}
.y245{bottom:299.226664pt;}
.y1ab{bottom:301.386658pt;}
.y13e{bottom:301.706665pt;}
.y11f{bottom:301.946676pt;}
.y78{bottom:306.266663pt;}
.y10d{bottom:306.666667pt;}
.y22b{bottom:307.386658pt;}
.y150{bottom:309.386658pt;}
.yd4{bottom:310.586670pt;}
.y1a0{bottom:310.906657pt;}
.y17f{bottom:312.506673pt;}
.yb{bottom:313.386658pt;}
.y1ec{bottom:314.906657pt;}
.y4f{bottom:316.506673pt;}
.y1f9{bottom:317.306661pt;}
.y165{bottom:318.826660pt;}
.y244{bottom:319.866679pt;}
.yaa{bottom:320.106669pt;}
.y1da{bottom:320.506673pt;}
.y20b{bottom:322.346659pt;}
.y2c{bottom:326.186666pt;}
.y1aa{bottom:328.986674pt;}
.y13d{bottom:329.306661pt;}
.y11e{bottom:329.546672pt;}
.y10c{bottom:334.266663pt;}
.y14f{bottom:336.986674pt;}
.yd3{bottom:338.186666pt;}
.y19f{bottom:338.506673pt;}
.y17e{bottom:340.106669pt;}
.y243{bottom:340.586650pt;}
.y1eb{bottom:342.506673pt;}
.y1f8{bottom:344.906657pt;}
.y77{bottom:346.106649pt;}
.ya9{bottom:347.706665pt;}
.y1d9{bottom:348.106649pt;}
.y1c0{bottom:356.586670pt;}
.y13c{bottom:356.906657pt;}
.y11d{bottom:357.146647pt;}
.y4e{bottom:358.506673pt;}
.y2b{bottom:358.586670pt;}
.ya{bottom:359.386678pt;}
.y14e{bottom:361.146647pt;}
.y10b{bottom:361.866659pt;}
.yfc{bottom:362.986654pt;}
.yd2{bottom:365.786662pt;}
.y19e{bottom:366.106649pt;}
.y17d{bottom:367.706665pt;}
.y1f2{bottom:368.399984pt;}
.y164{bottom:369.306681pt;}
.y1ea{bottom:370.106649pt;}
.y1f7{bottom:372.506673pt;}
.ya8{bottom:375.306681pt;}
.y1d8{bottom:375.706665pt;}
.ye4{bottom:378.586670pt;}
.y1a9{bottom:379.546672pt;}
.y262{bottom:383.786662pt;}
.y1bf{bottom:384.186686pt;}
.y13b{bottom:384.506673pt;}
.yf0{bottom:384.586670pt;}
.y11c{bottom:384.746663pt;}
.y10a{bottom:389.466675pt;}
.yfb{bottom:390.586670pt;}
.y76{bottom:390.906657pt;}
.y2a{bottom:391.066650pt;}
.yd1{bottom:393.386678pt;}
.y19d{bottom:393.706665pt;}
.y17c{bottom:395.306681pt;}
.y1f6{bottom:396.666667pt;}
.y1e9{bottom:397.706665pt;}
.y4c{bottom:400.426676pt;}
.y9{bottom:400.666667pt;}
.y261{bottom:402.186686pt;}
.ya7{bottom:402.826660pt;}
.y1d7{bottom:403.306681pt;}
.ye3{bottom:406.186686pt;}
.y91{bottom:410.826660pt;}
.y6{bottom:411.146647pt;}
.y1be{bottom:411.786662pt;}
.y13a{bottom:412.026652pt;}
.yef{bottom:412.186686pt;}
.y11b{bottom:412.346680pt;}
.y1a8{bottom:416.346680pt;}
.y109{bottom:417.066650pt;}
.yfa{bottom:418.186686pt;}
.y163{bottom:420.506673pt;}
.y260{bottom:420.586670pt;}
.yd0{bottom:420.986654pt;}
.y19c{bottom:421.226685pt;}
.y29{bottom:423.466675pt;}
.y1e8{bottom:425.306681pt;}
.y17b{bottom:425.786662pt;}
.ya6{bottom:430.426676pt;}
.y1d6{bottom:430.906657pt;}
.ye2{bottom:433.786662pt;}
.y75{bottom:435.706665pt;}
.yee{bottom:436.426676pt;}
.y90{bottom:438.426676pt;}
.y25f{bottom:439.146647pt;}
.y1bd{bottom:439.386678pt;}
.y139{bottom:439.626668pt;}
.y11a{bottom:439.946655pt;}
.y108{bottom:444.666667pt;}
.y28{bottom:444.826660pt;}
.y144{bottom:445.359985pt;}
.y17a{bottom:445.706665pt;}
.yf9{bottom:445.786662pt;}
.y202{bottom:447.226685pt;}
.y162{bottom:448.106649pt;}
.ycf{bottom:448.586670pt;}
.y19b{bottom:448.826660pt;}
.y1e7{bottom:449.546672pt;}
.y221{bottom:452.986654pt;}
.y25e{bottom:457.866659pt;}
.ya5{bottom:458.026652pt;}
.y64{bottom:458.826660pt;}
.ye1{bottom:461.386678pt;}
.y1d5{bottom:461.706665pt;}
.y4b{bottom:461.946655pt;}
.y179{bottom:465.546672pt;}
.y8f{bottom:466.026652pt;}
.y1bc{bottom:466.986654pt;}
.y138{bottom:467.226685pt;}
.y119{bottom:467.546672pt;}
.yf8{bottom:470.026652pt;}
.y107{bottom:472.266683pt;}
.y27{bottom:473.066650pt;}
.y161{bottom:475.706665pt;}
.yce{bottom:476.186686pt;}
.y19a{bottom:476.426676pt;}
.y74{bottom:480.506673pt;}
.y1d4{bottom:481.546672pt;}
.y1ce{bottom:482.586670pt;}
.y178{bottom:485.386678pt;}
.ya4{bottom:485.626668pt;}
.ye0{bottom:488.986654pt;}
.y8e{bottom:493.626668pt;}
.y1bb{bottom:494.586670pt;}
.y137{bottom:494.826660pt;}
.y118{bottom:495.146647pt;}
.y63{bottom:495.946655pt;}
.y4a{bottom:496.266683pt;}
.y106{bottom:499.866659pt;}
.y26{bottom:501.386678pt;}
.y160{bottom:503.306681pt;}
.ycd{bottom:503.786662pt;}
.y199{bottom:504.026652pt;}
.y177{bottom:505.226685pt;}
.y1cd{bottom:510.186686pt;}
.y49{bottom:511.946655pt;}
.ya3{bottom:513.226685pt;}
.ydf{bottom:516.586670pt;}
.y73{bottom:521.066650pt;}
.y8d{bottom:521.226685pt;}
.y1ba{bottom:522.186686pt;}
.y136{bottom:522.426676pt;}
.yc0{bottom:522.746663pt;}
.y176{bottom:525.066650pt;}
.y114{bottom:526.746663pt;}
.y105{bottom:527.706665pt;}
.y62{bottom:528.506673pt;}
.y25{bottom:529.626668pt;}
.y15f{bottom:530.906657pt;}
.ycc{bottom:531.386678pt;}
.y198{bottom:531.626668pt;}
.y23c{bottom:535.066650pt;}
.y1cc{bottom:537.786662pt;}
.y48{bottom:537.946655pt;}
.ya2{bottom:540.826660pt;}
.y1d3{bottom:541.066650pt;}
.yde{bottom:544.186686pt;}
.y175{bottom:544.986654pt;}
.y72{bottom:548.666667pt;}
.y8c{bottom:548.826660pt;}
.y1b9{bottom:549.786662pt;}
.y135{bottom:550.026652pt;}
.ybf{bottom:550.346680pt;}
.yf5{bottom:551.466675pt;}
.y104{bottom:555.386678pt;}
.y61{bottom:556.106649pt;}
.yeb{bottom:556.746663pt;}
.y24{bottom:557.866659pt;}
.y15e{bottom:558.506673pt;}
.ycb{bottom:558.986654pt;}
.y197{bottom:559.226685pt;}
.y1d2{bottom:560.906657pt;}
.y47{bottom:563.866659pt;}
.y174{bottom:564.826660pt;}
.y1cb{bottom:565.386678pt;}
.ya1{bottom:568.426676pt;}
.ydd{bottom:571.786662pt;}
.y71{bottom:576.266683pt;}
.y8b{bottom:576.426676pt;}
.y1b8{bottom:577.386678pt;}
.y134{bottom:577.626668pt;}
.ybe{bottom:577.946655pt;}
.y1d1{bottom:580.746663pt;}
.y103{bottom:582.986654pt;}
.y113{bottom:583.306681pt;}
.y60{bottom:583.706665pt;}
.y173{bottom:584.666667pt;}
.yf4{bottom:585.786662pt;}
.y15d{bottom:586.106649pt;}
.yca{bottom:586.586670pt;}
.y196{bottom:586.826660pt;}
.y44{bottom:589.866659pt;}
.yea{bottom:591.066650pt;}
.y1ca{bottom:592.986654pt;}
.ya0{bottom:596.026652pt;}
.ydc{bottom:599.386678pt;}
.y70{bottom:603.893351pt;}
.y8a{bottom:604.053345pt;}
.y172{bottom:604.533325pt;}
.y1b7{bottom:605.013346pt;}
.y133{bottom:605.253337pt;}
.ybd{bottom:605.573324pt;}
.y1d0{bottom:608.053345pt;}
.y102{bottom:610.613322pt;}
.y1a6{bottom:610.720011pt;}
.y5f{bottom:611.333333pt;}
.yf3{bottom:613.413330pt;}
.y200{bottom:613.493327pt;}
.y15c{bottom:613.733317pt;}
.y22{bottom:613.813314pt;}
.yc9{bottom:614.213338pt;}
.y195{bottom:614.453328pt;}
.ye9{bottom:618.693319pt;}
.y1c9{bottom:620.613322pt;}
.y9f{bottom:623.653320pt;}
.y171{bottom:624.373332pt;}
.yda{bottom:627.013346pt;}
.y6f{bottom:631.493327pt;}
.y89{bottom:631.653320pt;}
.y41{bottom:631.893351pt;}
.ydb{bottom:632.373332pt;}
.y1b6{bottom:632.613322pt;}
.y132{bottom:632.853353pt;}
.ybc{bottom:633.173340pt;}
.y101{bottom:638.213338pt;}
.y187{bottom:638.533325pt;}
.y5e{bottom:638.933350pt;}
.yf2{bottom:641.013346pt;}
.y15b{bottom:641.333333pt;}
.yc8{bottom:641.813314pt;}
.y194{bottom:642.053345pt;}
.y170{bottom:644.293335pt;}
.ye8{bottom:646.293335pt;}
.y1c8{bottom:648.213338pt;}
.y9e{bottom:651.253337pt;}
.y1ff{bottom:653.733317pt;}
.y1cf{bottom:654.293335pt;}
.y6e{bottom:659.093343pt;}
.y88{bottom:659.253337pt;}
.y237{bottom:659.973348pt;}
.y1b5{bottom:660.213338pt;}
.y131{bottom:660.453328pt;}
.ybb{bottom:660.773315pt;}
.y16f{bottom:664.133341pt;}
.yf1{bottom:665.253337pt;}
.y100{bottom:665.813314pt;}
.yc7{bottom:669.413330pt;}
.y20{bottom:669.653320pt;}
.ye7{bottom:670.533325pt;}
.y15a{bottom:671.893351pt;}
.y5d{bottom:676.213338pt;}
.y1c7{bottom:678.773315pt;}
.y9d{bottom:678.853353pt;}
.y16e{bottom:683.973307pt;}
.y6d{bottom:686.693359pt;}
.y87{bottom:686.853353pt;}
.y1b4{bottom:687.813314pt;}
.y130{bottom:688.053304pt;}
.yba{bottom:688.373372pt;}
.y159{bottom:691.733317pt;}
.yff{bottom:693.413330pt;}
.yc6{bottom:697.013346pt;}
.y193{bottom:697.253337pt;}
.y1f{bottom:697.893311pt;}
.y1c6{bottom:699.573324pt;}
.y16d{bottom:703.813314pt;}
.y9c{bottom:706.453369pt;}
.y158{bottom:711.573324pt;}
.y14d{bottom:713.253337pt;}
.y6c{bottom:714.293294pt;}
.y86{bottom:714.453369pt;}
.y1b3{bottom:715.413330pt;}
.y12f{bottom:715.653320pt;}
.yb9{bottom:715.973307pt;}
.y40{bottom:718.693359pt;}
.y1c5{bottom:720.533366pt;}
.yfe{bottom:721.013346pt;}
.y16c{bottom:723.653320pt;}
.yc5{bottom:724.613363pt;}
.y192{bottom:724.853353pt;}
.y1e6{bottom:727.093343pt;}
.y157{bottom:731.413330pt;}
.y9b{bottom:734.053304pt;}
.y1f5{bottom:736.773356pt;}
.y1e{bottom:738.693359pt;}
.y1c4{bottom:741.493327pt;}
.y6b{bottom:741.893311pt;}
.y85{bottom:742.053304pt;}
.y14c{bottom:742.533366pt;}
.y5{bottom:742.773356pt;}
.y1b2{bottom:743.013346pt;}
.y12e{bottom:743.253337pt;}
.y21c{bottom:743.413330pt;}
.yb8{bottom:743.493327pt;}
.yfd{bottom:745.253337pt;}
.y188{bottom:748.853353pt;}
.y156{bottom:751.253337pt;}
.yc4{bottom:752.213298pt;}
.y191{bottom:752.453369pt;}
.y3f{bottom:753.253337pt;}
.y1d{bottom:754.453369pt;}
.y1e5{bottom:761.413330pt;}
.y9a{bottom:761.653320pt;}
.y14b{bottom:762.373372pt;}
.y6a{bottom:769.493327pt;}
.y84{bottom:769.653320pt;}
.y12d{bottom:770.853353pt;}
.yb7{bottom:771.093343pt;}
.y3d{bottom:775.973307pt;}
.y190{bottom:780.053304pt;}
.y5c{bottom:781.253337pt;}
.y14a{bottom:782.213298pt;}
.y1b{bottom:782.693359pt;}
.y1c3{bottom:783.333333pt;}
.y1e4{bottom:789.013346pt;}
.y99{bottom:789.253337pt;}
.yed{bottom:791.973307pt;}
.y1b1{bottom:793.493327pt;}
.y69{bottom:797.093343pt;}
.y83{bottom:797.253337pt;}
.y12c{bottom:798.453369pt;}
.yb6{bottom:798.693359pt;}
.y149{bottom:802.133301pt;}
.yc3{bottom:802.693359pt;}
.y1fe{bottom:803.813314pt;}
.y1c2{bottom:804.293294pt;}
.y18f{bottom:807.653320pt;}
.y5b{bottom:808.853353pt;}
.y1e3{bottom:816.613363pt;}
.y98{bottom:816.853353pt;}
.yf7{bottom:819.573324pt;}
.y148{bottom:821.973307pt;}
.y82{bottom:824.853353pt;}
.y1c1{bottom:825.173340pt;}
.y12b{bottom:826.053304pt;}
.yb5{bottom:826.293294pt;}
.y3b{bottom:827.173340pt;}
.y1b0{bottom:830.293294pt;}
.y18e{bottom:835.253337pt;}
.y5a{bottom:836.133301pt;}
.y68{bottom:836.933350pt;}
.y147{bottom:841.813314pt;}
.y1e2{bottom:844.213298pt;}
.y97{bottom:844.453369pt;}
.y236{bottom:846.933350pt;}
.y81{bottom:852.453369pt;}
.y12a{bottom:853.653320pt;}
.yb4{bottom:853.893311pt;}
.y16b{bottom:859.253337pt;}
.y146{bottom:861.653320pt;}
.y18d{bottom:862.853353pt;}
.y17{bottom:866.133301pt;}
.y1e1{bottom:871.813314pt;}
.y96{bottom:872.053304pt;}
.y38{bottom:878.453369pt;}
.y80{bottom:880.053304pt;}
.y129{bottom:881.253337pt;}
.yb3{bottom:881.493327pt;}
.y67{bottom:881.653320pt;}
.y216{bottom:889.013346pt;}
.y18c{bottom:890.453369pt;}
.y1e0{bottom:899.413330pt;}
.y95{bottom:899.653320pt;}
.y7f{bottom:907.653320pt;}
.y128{bottom:908.853353pt;}
.yb2{bottom:909.093343pt;}
.yc2{bottom:914.453369pt;}
.y18b{bottom:918.053304pt;}
.y59{bottom:920.933350pt;}
.y66{bottom:926.453369pt;}
.y94{bottom:927.253337pt;}
.y36{bottom:929.733317pt;}
.y7e{bottom:935.253337pt;}
.y127{bottom:936.453369pt;}
.yb1{bottom:936.693359pt;}
.y1df{bottom:945.573324pt;}
.y18a{bottom:945.653320pt;}
.y15{bottom:949.653320pt;}
.y263{bottom:949.893311pt;}
.y93{bottom:954.853353pt;}
.y34{bottom:955.653320pt;}
.y58{bottom:957.760010pt;}
.y1fd{bottom:963.520020pt;}
.y126{bottom:964.079997pt;}
.yb0{bottom:964.319987pt;}
.y65{bottom:971.280029pt;}
.y235{bottom:971.840007pt;}
.y189{bottom:973.280029pt;}
.y7d{bottom:981.920003pt;}
.y57{bottom:989.440023pt;}
.yaf{bottom:991.920003pt;}
.y33{bottom:993.760010pt;}
.y14{bottom:1009.520020pt;}
.y92{bottom:1009.600016pt;}
.y125{bottom:1014.639974pt;}
.y7c{bottom:1019.520020pt;}
.y32{bottom:1020.159993pt;}
.yd9{bottom:1020.799967pt;}
.y56{bottom:1021.840007pt;}
.y25d{bottom:1023.280029pt;}
.y11{bottom:1047.120036pt;}
.y4{bottom:1054.000000pt;}
.y3{bottom:1056.319987pt;}
.y2{bottom:1058.559977pt;}
.y1{bottom:1060.879964pt;}
.y10{bottom:1067.009360pt;}
.h3{height:3.777187pt;}
.h6{height:4.876875pt;}
.h2b{height:20.720000pt;}
.h15{height:25.279999pt;}
.h1b{height:25.360000pt;}
.h13{height:25.386667pt;}
.h21{height:25.498125pt;}
.he{height:27.600000pt;}
.hc{height:27.626666pt;}
.h26{height:30.480000pt;}
.h24{height:30.982500pt;}
.h27{height:32.079999pt;}
.h30{height:35.414062pt;}
.h2c{height:36.070312pt;}
.ha{height:37.631250pt;}
.h20{height:38.154375pt;}
.h22{height:39.427656pt;}
.h1c{height:41.279999pt;}
.h1a{height:41.306666pt;}
.h2d{height:43.031250pt;}
.h23{height:43.205154pt;}
.h28{height:43.283854pt;}
.h14{height:44.034373pt;}
.h25{height:44.437500pt;}
.h12{height:46.200000pt;}
.h9{height:47.218750pt;}
.h5{height:47.908125pt;}
.h2a{height:48.000000pt;}
.h1f{height:48.125000pt;}
.h17{height:50.559998pt;}
.h16{height:50.639999pt;}
.h8{height:52.498123pt;}
.h11{height:53.152969pt;}
.hf{height:55.200002pt;}
.h10{height:55.226664pt;}
.h4{height:57.375000pt;}
.h18{height:58.245466pt;}
.h29{height:59.594398pt;}
.h31{height:62.080002pt;}
.h19{height:66.559998pt;}
.h1d{height:76.595625pt;}
.hb{height:80.128123pt;}
.hd{height:82.799998pt;}
.h1e{height:84.981094pt;}
.h7{height:95.529373pt;}
.h35{height:124.186666pt;}
.h2f{height:124.240000pt;}
.h37{height:124.266663pt;}
.h33{height:144.880005pt;}
.h32{height:144.906667pt;}
.h2e{height:165.626668pt;}
.h36{height:186.320007pt;}
.h39{height:248.400004pt;}
.h34{height:289.786662pt;}
.h38{height:351.866659pt;}
.h2{height:1122.639974pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w7{width:46.320002pt;}
.wa{width:54.000000pt;}
.w8{width:103.306671pt;}
.wf{width:103.359996pt;}
.wb{width:105.066671pt;}
.w17{width:131.706665pt;}
.w14{width:132.026662pt;}
.we{width:207.786662pt;}
.w5{width:223.226664pt;}
.w3{width:225.626668pt;}
.w19{width:254.026672pt;}
.w18{width:254.106669pt;}
.w15{width:254.746663pt;}
.w16{width:254.826660pt;}
.wd{width:290.266663pt;}
.w12{width:368.880005pt;}
.w13{width:390.000000pt;}
.w9{width:415.146647pt;}
.w4{width:426.293335pt;}
.w6{width:429.253337pt;}
.w11{width:453.439982pt;}
.wc{width:471.893351pt;}
.w1a{width:641.199992pt;}
.w1{width:793.333333pt;}
.w10{width:793.359976pt;}
.w2{width:793.359988pt;}
.w0{width:793.360000pt;}
.x0{left:0.000000pt;}
.x8{left:7.360001pt;}
.x7{left:68.559998pt;}
.x21{left:72.720000pt;}
.x13{left:73.759988pt;}
.x1{left:75.599988pt;}
.x17{left:80.399987pt;}
.x11{left:91.599984pt;}
.x33{left:97.680013pt;}
.x22{left:99.599984pt;}
.x34{left:101.199990pt;}
.x12{left:107.599984pt;}
.x2e{left:112.399992pt;}
.xb{left:115.519999pt;}
.x23{left:117.039987pt;}
.xc{left:123.200002pt;}
.x2f{left:138.746640pt;}
.x30{left:144.666655pt;}
.x28{left:162.826647pt;}
.x29{left:168.746652pt;}
.x10{left:178.026661pt;}
.x31{left:207.946676pt;}
.x3{left:219.146655pt;}
.xd{left:228.986674pt;}
.x16{left:267.626656pt;}
.x18{left:286.186642pt;}
.xa{left:292.426676pt;}
.x9{left:294.906657pt;}
.x2d{left:328.639994pt;}
.x2a{left:348.640015pt;}
.xe{left:359.466675pt;}
.x5{left:406.426665pt;}
.x1d{left:419.813290pt;}
.x1e{left:425.733305pt;}
.x32{left:462.693319pt;}
.x24{left:513.013323pt;}
.x25{left:518.933338pt;}
.x1f{left:538.773304pt;}
.x20{left:545.253325pt;}
.xf{left:567.893351pt;}
.x26{left:587.813290pt;}
.x27{left:593.733305pt;}
.x4{left:599.932867pt;}
.x38{left:655.653308pt;}
.x6{left:657.093331pt;}
.x39{left:661.653308pt;}
.x37{left:663.653308pt;}
.x35{left:668.613310pt;}
.x36{left:669.653308pt;}
.x1a{left:670.693307pt;}
.x1c{left:673.733305pt;}
.x14{left:707.360002pt;}
.x15{left:713.280017pt;}
.x2b{left:715.999988pt;}
.x2{left:717.759998pt;}
.x2c{left:719.680001pt;}
.x1b{left:721.680001pt;}
.x19{left:726.319975pt;}
}




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