
    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_e50611f36e0bf4d34195281f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.923340;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_dbb882dbec14a040074a2784.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.073242;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_2de06a3d4238af4dd74109d0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.073242;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_afd7ad569a9f78164306267a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.050293;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_03bf54a0cda88b79e9bac458.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.049805;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_8f63381d39efdf4922cbfdad.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.727539;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_f4e4f49f940d2028ac37fb9e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.054688;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_491cd321331464cecc29ded1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.896973;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_ae16468b3622888c15b023ca.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_83dc362f6de3e084f9284ea5.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.056152;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_25a68a7a2aecc81ce4900df2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.722656;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;}
.m2{transform:matrix(0.221708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221708,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.223886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223886,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.224365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224365,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v2{vertical-align:-20.159910px;}
.v3{vertical-align:-10.800108px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.239865px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.071063px;}
.lsf{letter-spacing:0.094275px;}
.ls5{letter-spacing:0.101835px;}
.ls8{letter-spacing:0.188550px;}
.ls27{letter-spacing:0.218647px;}
.lse{letter-spacing:0.229941px;}
.ls4{letter-spacing:0.258305px;}
.ls0{letter-spacing:0.501601px;}
.ls7{letter-spacing:0.516609px;}
.lsb{letter-spacing:0.548634px;}
.lsa{letter-spacing:0.548769px;}
.lsc{letter-spacing:0.548773px;}
.ls15{letter-spacing:0.814154px;}
.ls1c{letter-spacing:0.814225px;}
.ls17{letter-spacing:0.814293px;}
.ls20{letter-spacing:0.908563px;}
.ls25{letter-spacing:2.254253px;}
.ls26{letter-spacing:2.254320px;}
.ls28{letter-spacing:2.254324px;}
.ls2{letter-spacing:2.418282px;}
.ls3{letter-spacing:2.418417px;}
.ls1e{letter-spacing:2.974270px;}
.ls1b{letter-spacing:2.974338px;}
.ls1f{letter-spacing:7.294302px;}
.ls2a{letter-spacing:7.294306px;}
.ls21{letter-spacing:8.014253px;}
.ls13{letter-spacing:9.454217px;}
.ls23{letter-spacing:10.174235px;}
.ls16{letter-spacing:10.174369px;}
.lsd{letter-spacing:12.334145px;}
.ls22{letter-spacing:12.334279px;}
.ls14{letter-spacing:12.334419px;}
.ls29{letter-spacing:13.054298px;}
.ls24{letter-spacing:13.774315px;}
.ls12{letter-spacing:14.494329px;}
.ls11{letter-spacing:15.214212px;}
.ls10{letter-spacing:16.654244px;}
.ls1d{letter-spacing:18.094275px;}
.ls19{letter-spacing:24.480013px;}
.ls18{letter-spacing:25.199892px;}
.ls1a{letter-spacing:26.014180px;}
.ls9{letter-spacing:26.014315px;}
.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;}
}
.ws7{word-spacing:-71.622900px;}
.ws6{word-spacing:-53.716950px;}
.ws0{word-spacing:-20.949639px;}
.ws1{word-spacing:-17.905725px;}
.ws3{word-spacing:-16.473263px;}
.ws2{word-spacing:-14.861700px;}
.ws5{word-spacing:-13.429238px;}
.ws4{word-spacing:0.000000px;}
._24{margin-left:-5.314984px;}
._13{margin-left:-4.262113px;}
._a{margin-left:-3.244265px;}
._4{margin-left:-2.174450px;}
._0{margin-left:-1.089352px;}
._1{width:1.592130px;}
._2{width:2.849074px;}
._8{width:3.873221px;}
._9{width:4.891701px;}
._3{width:6.123485px;}
._7{width:7.195030px;}
._6{width:8.263105px;}
._d{width:9.288262px;}
._b{width:10.722414px;}
._c{width:12.163835px;}
._5{width:13.329017px;}
._16{width:15.300620px;}
._12{width:16.461585px;}
._11{width:18.250959px;}
._10{width:19.295525px;}
._f{width:20.310577px;}
._e{width:21.618665px;}
._17{width:22.635559px;}
._14{width:24.051130px;}
._15{width:25.790299px;}
._1d{width:27.451796px;}
._1e{width:28.494443px;}
._1f{width:29.762392px;}
._20{width:31.728945px;}
._2a{width:32.812852px;}
._19{width:33.820730px;}
._18{width:34.869441px;}
._1a{width:36.070319px;}
._22{width:37.659481px;}
._23{width:38.764652px;}
._21{width:40.304919px;}
._1b{width:42.642484px;}
._1c{width:44.417669px;}
._2b{width:45.493953px;}
._26{width:47.284548px;}
._25{width:50.079975px;}
._29{width:51.629200px;}
._27{width:52.967093px;}
._28{width:53.999258px;}
._2c{width:61.693056px;}
._2d{width:63.939715px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(166,166,166);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.676330px;}
.fs4{font-size:53.716950px;}
.fs6{font-size:59.446800px;}
.fs2{font-size:65.890712px;}
.fs7{font-size:65.893050px;}
.fs1{font-size:71.622900px;}
.fs5{font-size:80.933850px;}
.fs0{font-size:83.796294px;}
.fs3{font-size:83.798555px;}
.y0{bottom:0.000000px;}
.y10d{bottom:2.879928px;}
.yfd{bottom:2.879997px;}
.yf3{bottom:2.879998px;}
.y1e9{bottom:2.880014px;}
.y1b0{bottom:3.059966px;}
.ye7{bottom:3.059967px;}
.y1be{bottom:3.060001px;}
.y1f8{bottom:3.060002px;}
.y194{bottom:3.060035px;}
.yd9{bottom:3.060036px;}
.y48{bottom:3.239988px;}
.y44{bottom:3.239989px;}
.y39{bottom:3.239997px;}
.y3d{bottom:3.239998px;}
.y4b{bottom:3.240004px;}
.y40{bottom:3.240006px;}
.y46{bottom:3.419992px;}
.y42{bottom:3.419993px;}
.y3b{bottom:3.420001px;}
.y4d{bottom:3.420009px;}
.y55{bottom:3.779983px;}
.ydf{bottom:4.139991px;}
.yd1{bottom:4.139992px;}
.y10f{bottom:4.140000px;}
.y1f5{bottom:4.140009px;}
.y109{bottom:4.140061px;}
.ydb{bottom:4.319961px;}
.yff{bottom:4.319962px;}
.y1e7{bottom:4.319996px;}
.y1ee{bottom:4.319997px;}
.y1f2{bottom:4.320012px;}
.yce{bottom:4.320030px;}
.y50{bottom:4.500000px;}
.y29{bottom:4.860000px;}
.y53{bottom:5.040012px;}
.y3{bottom:45.003777px;}
.y2{bottom:65.160049px;}
.y10c{bottom:91.260132px;}
.y1e6{bottom:93.060104px;}
.y10b{bottom:94.140060px;}
.y107{bottom:98.460022px;}
.y27{bottom:100.080093px;}
.y15c{bottom:100.260132px;}
.y274{bottom:102.960022px;}
.y1b7{bottom:103.500000px;}
.y285{bottom:103.860077px;}
.yb5{bottom:107.460022px;}
.y13e{bottom:107.820099px;}
.y258{bottom:109.260132px;}
.y188{bottom:109.620072px;}
.y106{bottom:109.800110px;}
.y108{bottom:109.980011px;}
.y10a{bottom:111.960091px;}
.y89{bottom:116.460091px;}
.y222{bottom:121.140060px;}
.y26{bottom:122.400055px;}
.y1e5{bottom:122.580093px;}
.y298{bottom:123.840088px;}
.y284{bottom:124.380066px;}
.y105{bottom:127.260064px;}
.yb4{bottom:127.980079px;}
.y13d{bottom:128.340088px;}
.y15b{bottom:129.780052px;}
.y187{bottom:130.140060px;}
.y273{bottom:132.480079px;}
.y1b6{bottom:133.020058px;}
.y88{bottom:136.980079px;}
.y241{bottom:141.480079px;}
.y221{bottom:141.840088px;}
.y1e4{bottom:143.280052px;}
.y25{bottom:143.820099px;}
.y283{bottom:145.080093px;}
.y104{bottom:145.620072px;}
.y13c{bottom:149.040047px;}
.y272{bottom:153.180039px;}
.y297{bottom:156.960091px;}
.y87{bottom:157.680039px;}
.y1b5{bottom:159.300041px;}
.y15a{bottom:159.480079px;}
.y186{bottom:159.840088px;}
.y240{bottom:162.000068px;}
.y103{bottom:163.260064px;}
.y1e3{bottom:163.800041px;}
.y100{bottom:165.420043px;}
.y282{bottom:165.600083px;}
.y13b{bottom:169.560036px;}
.y220{bottom:171.360077px;}
.y271{bottom:173.700096px;}
.y1b4{bottom:175.680039px;}
.yfe{bottom:176.580093px;}
.y101{bottom:176.760064px;}
.y86{bottom:178.200096px;}
.y102{bottom:178.740074px;}
.y257{bottom:180.000068px;}
.y185{bottom:180.360077px;}
.y1e2{bottom:184.500068px;}
.y24{bottom:185.400055px;}
.y281{bottom:186.300041px;}
.y1b1{bottom:186.660049px;}
.y159{bottom:189.000068px;}
.y296{bottom:190.080093px;}
.y13a{bottom:190.260064px;}
.y1b3{bottom:191.700096px;}
.y21f{bottom:192.060036px;}
.yfc{bottom:194.040047px;}
.y85{bottom:198.720085px;}
.y184{bottom:200.880066px;}
.y270{bottom:203.220085px;}
.y280{bottom:206.820099px;}
.y1b2{bottom:208.080093px;}
.y158{bottom:209.520058px;}
.y23{bottom:211.500068px;}
.y23f{bottom:212.220085px;}
.yfb{bottom:212.580093px;}
.y1e1{bottom:214.020058px;}
.y84{bottom:219.420043px;}
.y139{bottom:219.780052px;}
.y183{bottom:221.580093px;}
.y295{bottom:223.020058px;}
.y26f{bottom:223.920043px;}
.y1af{bottom:224.100083px;}
.y27f{bottom:227.520058px;}
.yfa{bottom:228.060036px;}
.y256{bottom:230.040047px;}
.yf7{bottom:232.200096px;}
.y23e{bottom:232.740074px;}
.y1e0{bottom:234.540047px;}
.y22{bottom:237.600083px;}
.y157{bottom:239.040047px;}
.y83{bottom:239.940033px;}
.y1ae{bottom:240.480079px;}
.y182{bottom:242.100083px;}
.yf9{bottom:245.520058px;}
.yf5{bottom:247.680039px;}
.y27e{bottom:248.040047px;}
.yb3{bottom:248.940033px;}
.y138{bottom:249.300041px;}
.y255{bottom:250.740074px;}
.y21e{bottom:251.100083px;}
.y26e{bottom:253.440033px;}
.y21{bottom:254.880066px;}
.y1df{bottom:255.240074px;}
.y294{bottom:255.960091px;}
.y1ad{bottom:256.500068px;}
.yf4{bottom:258.840088px;}
.yf6{bottom:259.020058px;}
.y1aa{bottom:259.560036px;}
.y82{bottom:260.640060px;}
.yf8{bottom:261.180039px;}
.y23d{bottom:262.440033px;}
.y156{bottom:268.560036px;}
.y137{bottom:269.820099px;}
.y181{bottom:271.620072px;}
.y20{bottom:271.980079px;}
.y1ac{bottom:272.700096px;}
.y26d{bottom:273.960091px;}
.y1de{bottom:275.760064px;}
.yf2{bottom:276.480079px;}
.yb2{bottom:278.460091px;}
.yf1{bottom:279.360077px;}
.y254{bottom:280.260064px;}
.y81{bottom:281.160049px;}
.y23c{bottom:282.960091px;}
.y1ab{bottom:288.900055px;}
.y1f{bottom:289.260064px;}
.y136{bottom:290.520058px;}
.y21d{bottom:292.320099px;}
.y1dd{bottom:296.460091px;}
.yf0{bottom:296.820099px;}
.y180{bottom:298.080093px;}
.yb1{bottom:298.980079px;}
.y253{bottom:300.780052px;}
.y80{bottom:301.680039px;}
.yec{bottom:303.480079px;}
.y1a9{bottom:305.100083px;}
.y1e{bottom:306.180039px;}
.y155{bottom:309.780052px;}
.y135{bottom:311.040047px;}
.yef{bottom:312.480079px;}
.y21c{bottom:312.840088px;}
.y17f{bottom:313.560036px;}
.y1dc{bottom:316.980079px;}
.y27d{bottom:318.780052px;}
.yeb{bottom:318.960091px;}
.yb0{bottom:319.680039px;}
.y1a8{bottom:321.300041px;}
.y252{bottom:321.480079px;}
.y293{bottom:321.840088px;}
.y7f{bottom:322.380066px;}
.y1d{bottom:323.460091px;}
.y26c{bottom:324.180039px;}
.y17e{bottom:328.860077px;}
.yee{bottom:330.120072px;}
.y154{bottom:330.480079px;}
.y23b{bottom:333.000068px;}
.y21b{bottom:333.360077px;}
.ye9{bottom:334.260064px;}
.y1a7{bottom:337.500068px;}
.y27c{bottom:339.300041px;}
.yaf{bottom:340.200096px;}
.y1c{bottom:340.560036px;}
.y7e{bottom:342.900055px;}
.y17d{bottom:345.060036px;}
.ye8{bottom:345.420043px;}
.yea{bottom:345.600083px;}
.y1db{bottom:346.500068px;}
.yed{bottom:347.580093px;}
.y1a3{bottom:348.480079px;}
.y251{bottom:351.000068px;}
.y1a6{bottom:353.520058px;}
.y26b{bottom:353.700096px;}
.y21a{bottom:354.060036px;}
.y292{bottom:354.780052px;}
.y1b{bottom:357.840088px;}
.y153{bottom:360.000068px;}
.yae{bottom:360.900055px;}
.y23a{bottom:362.700096px;}
.ye6{bottom:362.880066px;}
.y7d{bottom:363.600083px;}
.y1da{bottom:367.020058px;}
.y1a5{bottom:369.900055px;}
.y134{bottom:370.080093px;}
.y250{bottom:371.520058px;}
.y17c{bottom:374.220085px;}
.y219{bottom:374.580093px;}
.y1a{bottom:374.940033px;}
.y152{bottom:380.520058px;}
.yad{bottom:381.420043px;}
.y239{bottom:383.220085px;}
.y7c{bottom:384.120072px;}
.y1a4{bottom:385.920043px;}
.y1d9{bottom:387.720085px;}
.y133{bottom:390.780052px;}
.y19{bottom:392.220085px;}
.ye5{bottom:399.060036px;}
.y151{bottom:401.220085px;}
.yac{bottom:402.120072px;}
.y1a2{bottom:402.300041px;}
.y17b{bottom:403.920043px;}
.y218{bottom:404.280052px;}
.y7b{bottom:404.820099px;}
.y1d8{bottom:408.240074px;}
.y18{bottom:409.140060px;}
.y132{bottom:411.300041px;}
.y238{bottom:412.740074px;}
.ye4{bottom:414.540047px;}
.y1a1{bottom:418.500068px;}
.y291{bottom:420.840088px;}
.y150{bottom:421.740074px;}
.yab{bottom:422.640060px;}
.y17a{bottom:424.440033px;}
.y17{bottom:426.420043px;}
.y1d6{bottom:428.940033px;}
.y19e{bottom:429.480079px;}
.y1d7{bottom:431.640060px;}
.y131{bottom:432.000068px;}
.ye3{bottom:432.180039px;}
.y237{bottom:433.440033px;}
.y217{bottom:433.620072px;}
.y7a{bottom:434.340088px;}
.y1a0{bottom:434.520058px;}
.y27b{bottom:442.260064px;}
.yaa{bottom:443.160049px;}
.y16{bottom:443.520058px;}
.y179{bottom:444.960091px;}
.ye2{bottom:447.480079px;}
.y1d5{bottom:449.460091px;}
.y19f{bottom:450.900055px;}
.y14f{bottom:451.260064px;}
.y130{bottom:452.520058px;}
.y290{bottom:453.780052px;}
.ydd{bottom:453.960091px;}
.y216{bottom:454.140060px;}
.y79{bottom:454.860077px;}
.y15{bottom:460.800041px;}
.y27a{bottom:462.960091px;}
.ya9{bottom:463.860077px;}
.ye1{bottom:465.120072px;}
.y178{bottom:465.660049px;}
.y19d{bottom:466.920043px;}
.ydc{bottom:469.620072px;}
.y24f{bottom:471.960091px;}
.y12f{bottom:473.220085px;}
.y26a{bottom:474.660049px;}
.y215{bottom:474.840088px;}
.y78{bottom:475.380066px;}
.y14{bottom:477.900055px;}
.y1d4{bottom:478.980079px;}
.yda{bottom:480.600083px;}
.yde{bottom:480.780052px;}
.ye0{bottom:482.760064px;}
.y19c{bottom:483.300041px;}
.y236{bottom:483.480079px;}
.ya8{bottom:484.380066px;}
.y177{bottom:486.180039px;}
.y28f{bottom:486.720085px;}
.y24e{bottom:492.480079px;}
.y12e{bottom:493.740074px;}
.y269{bottom:495.180039px;}
.y214{bottom:495.360077px;}
.y77{bottom:496.080093px;}
.yd8{bottom:498.060036px;}
.y19b{bottom:499.320099px;}
.y1d3{bottom:499.680039px;}
.yd7{bottom:501.120072px;}
.y14e{bottom:501.480079px;}
.y235{bottom:504.180039px;}
.y13{bottom:504.900055px;}
.ya7{bottom:505.080093px;}
.y176{bottom:506.880066px;}
.yd3{bottom:507.600083px;}
.y198{bottom:510.300041px;}
.y12d{bottom:514.260064px;}
.y19a{bottom:515.520058px;}
.y213{bottom:515.880066px;}
.y76{bottom:516.600083px;}
.yd6{bottom:518.760064px;}
.y28e{bottom:519.660049px;}
.y1d2{bottom:520.200096px;}
.y14d{bottom:522.000068px;}
.yd2{bottom:523.080093px;}
.y234{bottom:524.700096px;}
.ya6{bottom:525.600083px;}
.y175{bottom:527.400055px;}
.y199{bottom:531.720085px;}
.yd5{bottom:534.240074px;}
.y12{bottom:534.420043px;}
.y12c{bottom:534.960091px;}
.y212{bottom:536.580093px;}
.y75{bottom:537.300041px;}
.ycf{bottom:538.560036px;}
.y1d1{bottom:540.900055px;}
.y14c{bottom:542.700096px;}
.y268{bottom:545.220085px;}
.ya5{bottom:546.120072px;}
.y174{bottom:547.920043px;}
.ycd{bottom:549.540047px;}
.yd0{bottom:549.720085px;}
.yd4{bottom:551.700096px;}
.y28d{bottom:552.600083px;}
.y233{bottom:554.220085px;}
.y11{bottom:554.940033px;}
.y12b{bottom:555.480079px;}
.y211{bottom:557.100083px;}
.y74{bottom:557.820099px;}
.y1d0{bottom:561.420043px;}
.y14b{bottom:563.220085px;}
.y197{bottom:564.120072px;}
.y267{bottom:565.920043px;}
.ya4{bottom:566.820099px;}
.ycc{bottom:567.000068px;}
.y173{bottom:568.620072px;}
.y195{bottom:575.280052px;}
.y10{bottom:575.640060px;}
.y12a{bottom:576.180039px;}
.y210{bottom:577.620072px;}
.y73{bottom:578.340088px;}
.y196{bottom:580.320099px;}
.y1ce{bottom:581.940033px;}
.y14a{bottom:583.740074px;}
.y1cf{bottom:584.640060px;}
.y28c{bottom:585.540047px;}
.y172{bottom:589.140060px;}
.y24d{bottom:592.740074px;}
.y266{bottom:595.440033px;}
.yf{bottom:596.160049px;}
.ya3{bottom:596.340088px;}
.y193{bottom:596.520058px;}
.y129{bottom:596.700096px;}
.y20f{bottom:598.320099px;}
.y72{bottom:599.040047px;}
.y149{bottom:604.440033px;}
.y191{bottom:607.680039px;}
.y171{bottom:609.840088px;}
.y1cd{bottom:611.460091px;}
.y192{bottom:612.720085px;}
.y24c{bottom:613.260064px;}
.y265{bottom:615.960091px;}
.ye{bottom:616.680039px;}
.y28b{bottom:618.660049px;}
.y20e{bottom:618.840088px;}
.y71{bottom:619.560036px;}
.y148{bottom:624.960091px;}
.ya2{bottom:625.860077px;}
.y128{bottom:626.220085px;}
.y190{bottom:628.740074px;}
.y170{bottom:630.360077px;}
.y1cc{bottom:632.160049px;}
.y264{bottom:636.660049px;}
.yd{bottom:637.380066px;}
.y20d{bottom:639.540047px;}
.y70{bottom:640.260064px;}
.y24b{bottom:642.960091px;}
.y279{bottom:645.660049px;}
.ycb{bottom:646.560036px;}
.y16f{bottom:650.880066px;}
.y28a{bottom:651.600083px;}
.y1cb{bottom:652.680039px;}
.y147{bottom:654.480079px;}
.ya1{bottom:655.380066px;}
.y127{bottom:655.740074px;}
.yc{bottom:657.720085px;}
.y18f{bottom:658.080093px;}
.y20c{bottom:660.060036px;}
.y6f{bottom:660.780052px;}
.y24a{bottom:663.480079px;}
.y263{bottom:666.180039px;}
.yca{bottom:667.080093px;}
.y16e{bottom:671.580093px;}
.y1ca{bottom:673.380066px;}
.y232{bottom:675.180039px;}
.ya0{bottom:676.080093px;}
.y126{bottom:676.440033px;}
.yb{bottom:678.420043px;}
.y20b{bottom:680.760064px;}
.y6e{bottom:681.480079px;}
.y146{bottom:684.180039px;}
.y289{bottom:684.540047px;}
.y262{bottom:686.700096px;}
.yc9{bottom:687.600083px;}
.y16d{bottom:692.100083px;}
.y1c9{bottom:693.900055px;}
.y231{bottom:695.700061px;}
.y9f{bottom:696.600083px;}
.y125{bottom:696.960056px;}
.ya{bottom:699.660049px;}
.y20a{bottom:701.280052px;}
.y6d{bottom:702.000068px;}
.yc8{bottom:708.300076px;}
.y16c{bottom:712.800076px;}
.y145{bottom:713.700061px;}
.y230{bottom:716.400055px;}
.y9e{bottom:717.300076px;}
.y124{bottom:717.660049px;}
.y209{bottom:721.800076px;}
.y6c{bottom:722.520058px;}
.y1c8{bottom:723.420078px;}
.y9{bottom:723.600083px;}
.y278{bottom:725.220051px;}
.yc7{bottom:728.820065px;}
.y16b{bottom:733.320065px;}
.y249{bottom:734.220051px;}
.y22f{bottom:736.920078px;}
.y9d{bottom:737.820065px;}
.y123{bottom:738.180073px;}
.y208{bottom:742.500068px;}
.y6b{bottom:743.220051px;}
.y277{bottom:745.920078px;}
.y8{bottom:747.720051px;}
.yc6{bottom:749.520058px;}
.y1c7{bottom:749.700061px;}
.y288{bottom:750.600083px;}
.y16a{bottom:753.840054px;}
.y261{bottom:757.440067px;}
.y9c{bottom:758.340054px;}
.y122{bottom:758.700061px;}
.y207{bottom:763.020058px;}
.y6a{bottom:763.740074px;}
.y1c6{bottom:765.900055px;}
.y22e{bottom:766.440067px;}
.yc5{bottom:770.040081px;}
.y7{bottom:771.660049px;}
.y144{bottom:772.740074px;}
.y9b{bottom:779.040081px;}
.y169{bottom:783.540081px;}
.y206{bottom:783.720051px;}
.y248{bottom:784.440067px;}
.y22d{bottom:786.960056px;}
.y121{bottom:788.220051px;}
.yc4{bottom:790.560070px;}
.y69{bottom:793.260064px;}
.y1c5{bottom:795.060070px;}
.y276{bottom:795.960056px;}
.y205{bottom:804.240074px;}
.y6{bottom:804.600083px;}
.y247{bottom:804.960056px;}
.y260{bottom:807.660049px;}
.y9a{bottom:808.560070px;}
.y120{bottom:808.920078px;}
.yc3{bottom:811.260064px;}
.y168{bottom:813.060070px;}
.y287{bottom:816.480079px;}
.y22c{bottom:816.660049px;}
.y68{bottom:821.880066px;}
.y143{bottom:822.780052px;}
.y1c4{bottom:824.580059px;}
.y25f{bottom:828.180073px;}
.y5{bottom:828.540081px;}
.y99{bottom:829.080059px;}
.y11f{bottom:829.440067px;}
.yc2{bottom:831.780052px;}
.y167{bottom:833.580059px;}
.y204{bottom:833.760064px;}
.y246{bottom:834.480079px;}
.y142{bottom:843.480079px;}
.y1c3{bottom:845.280052px;}
.y22b{bottom:846.180073px;}
.y67{bottom:848.160049px;}
.y286{bottom:849.600083px;}
.y98{bottom:849.780052px;}
.y11e{bottom:850.140060px;}
.yc1{bottom:852.480079px;}
.y4{bottom:852.840054px;}
.y245{bottom:855.000068px;}
.y25e{bottom:857.700061px;}
.y203{bottom:860.040081px;}
.y166{bottom:863.100083px;}
.y141{bottom:864.000068px;}
.y1c2{bottom:865.800076px;}
.y22a{bottom:866.700061px;}
.y97{bottom:870.300076px;}
.y11d{bottom:870.660049px;}
.yc0{bottom:873.000068px;}
.y66{bottom:874.260064px;}
.y202{bottom:874.440067px;}
.y244{bottom:875.700061px;}
.y25d{bottom:878.400055px;}
.y54{bottom:881.100083px;}
.y18e{bottom:882.000068px;}
.y140{bottom:884.700061px;}
.y1c1{bottom:886.500068px;}
.y275{bottom:887.400055px;}
.y96{bottom:890.820065px;}
.y11c{bottom:891.360077px;}
.y65{bottom:891.540081px;}
.y201{bottom:891.720051px;}
.y165{bottom:892.800076px;}
.ybf{bottom:893.700061px;}
.y229{bottom:896.400055px;}
.y52{bottom:898.560070px;}
.y25c{bottom:898.920078px;}
.y18d{bottom:902.520058px;}
.y13f{bottom:905.220051px;}
.y1ff{bottom:905.940067px;}
.y200{bottom:906.120072px;}
.y64{bottom:908.640060px;}
.y95{bottom:911.520058px;}
.y11b{bottom:911.880066px;}
.ybe{bottom:914.220051px;}
.y1c0{bottom:916.020058px;}
.y228{bottom:916.920078px;}
.y51{bottom:918.720051px;}
.y164{bottom:922.320065px;}
.y18c{bottom:923.220051px;}
.y1fe{bottom:923.400055px;}
.y63{bottom:925.920078px;}
.y25b{bottom:928.620072px;}
.y94{bottom:932.040081px;}
.ybd{bottom:934.740074px;}
.y227{bottom:937.440067px;}
.y37{bottom:939.240074px;}
.y1fd{bottom:939.600083px;}
.y11a{bottom:941.400055px;}
.y1bf{bottom:942.300076px;}
.y62{bottom:943.020058px;}
.y18b{bottom:943.740074px;}
.y243{bottom:946.440067px;}
.y25a{bottom:949.140060px;}
.y163{bottom:951.840054px;}
.y4f{bottom:952.020058px;}
.y93{bottom:952.740074px;}
.ybc{bottom:955.440067px;}
.y1fb{bottom:955.800076px;}
.y36{bottom:956.520058px;}
.y226{bottom:958.140060px;}
.y1bd{bottom:958.320065px;}
.y61{bottom:960.120072px;}
.y119{bottom:962.100083px;}
.y18a{bottom:964.440067px;}
.y242{bottom:966.960056px;}
.y1fa{bottom:969.840054px;}
.y1fc{bottom:970.020058px;}
.y4e{bottom:970.380066px;}
.y92{bottom:973.260064px;}
.y35{bottom:973.620072px;}
.ybb{bottom:975.960074px;}
.y60{bottom:977.220068px;}
.y225{bottom:978.660067px;}
.y162{bottom:981.360060px;}
.y118{bottom:982.620072px;}
.y189{bottom:984.960074px;}
.y1f7{bottom:987.300058px;}
.y4c{bottom:987.480063px;}
.y1bc{bottom:987.660067px;}
.y34{bottom:990.900072px;}
.y91{bottom:993.960074px;}
.y5f{bottom:994.500068px;}
.y259{bottom:999.180073px;}
.y1f6{bottom:1001.520058px;}
.y1f9{bottom:1001.700061px;}
.y117{bottom:1003.140060px;}
.y4a{bottom:1004.760064px;}
.yba{bottom:1005.480063px;}
.y33{bottom:1008.000068px;}
.y224{bottom:1008.180073px;}
.y161{bottom:1010.880066px;}
.y5e{bottom:1011.600065px;}
.y90{bottom:1014.480063px;}
.y1bb{bottom:1017.180073px;}
.y1f3{bottom:1018.980063px;}
.y49{bottom:1021.680073px;}
.y116{bottom:1023.840070px;}
.y32{bottom:1025.100065px;}
.yb9{bottom:1026.180073px;}
.y5d{bottom:1028.880066px;}
.y1f1{bottom:1033.020058px;}
.y1f4{bottom:1033.200061px;}
.y8f{bottom:1035.000068px;}
.y1ba{bottom:1037.700061px;}
.y47{bottom:1038.960074px;}
.y160{bottom:1040.400072px;}
.y31{bottom:1042.200061px;}
.y115{bottom:1044.360060px;}
.y5c{bottom:1045.980063px;}
.yb8{bottom:1046.700061px;}
.y1f0{bottom:1050.660067px;}
.y8e{bottom:1055.700061px;}
.y45{bottom:1056.060070px;}
.y1b9{bottom:1058.400072px;}
.y30{bottom:1059.480063px;}
.y5b{bottom:1063.080059px;}
.y1ed{bottom:1064.700061px;}
.y1ef{bottom:1064.880066px;}
.y114{bottom:1065.060070px;}
.yb7{bottom:1067.220068px;}
.y15f{bottom:1069.920061px;}
.y43{bottom:1073.340070px;}
.y8d{bottom:1076.220068px;}
.y2f{bottom:1076.580059px;}
.y1b8{bottom:1078.920061px;}
.y5a{bottom:1080.180073px;}
.y1ec{bottom:1082.340070px;}
.y113{bottom:1085.580059px;}
.yb6{bottom:1087.920061px;}
.y41{bottom:1090.440067px;}
.y2e{bottom:1093.860060px;}
.y1ea{bottom:1096.380066px;}
.y1eb{bottom:1096.560070px;}
.y8c{bottom:1096.920061px;}
.y59{bottom:1097.460074px;}
.y15e{bottom:1099.620072px;}
.y3f{bottom:1107.540064px;}
.y223{bottom:1108.440067px;}
.y2d{bottom:1110.780069px;}
.y1e8{bottom:1114.020058px;}
.y58{bottom:1114.560070px;}
.y112{bottom:1115.100065px;}
.y8b{bottom:1117.440067px;}
.y3e{bottom:1124.640069px;}
.y2c{bottom:1128.060070px;}
.y15d{bottom:1129.140069px;}
.y57{bottom:1131.840063px;}
.y8a{bottom:1137.960065px;}
.y111{bottom:1141.380066px;}
.y3c{bottom:1141.920069px;}
.y2b{bottom:1145.160067px;}
.y10e{bottom:1157.760064px;}
.y56{bottom:1158.660067px;}
.y3a{bottom:1159.020066px;}
.y110{bottom:1159.740066px;}
.y2a{bottom:1162.440067px;}
.y28{bottom:1174.680064px;}
.y38{bottom:1176.300067px;}
.y1{bottom:1200.963688px;}
.h35{height:15.479943px;}
.h3a{height:15.479976px;}
.h36{height:15.480010px;}
.h33{height:15.480011px;}
.h32{height:15.659981px;}
.h39{height:15.660015px;}
.h3b{height:15.660016px;}
.h31{height:15.660049px;}
.h37{height:15.839950px;}
.h34{height:15.840019px;}
.h23{height:15.840020px;}
.h2d{height:16.740004px;}
.h26{height:16.740006px;}
.h2e{height:16.740074px;}
.h2f{height:16.919907px;}
.h2a{height:16.919975px;}
.h3c{height:16.919992px;}
.h3e{height:16.919993px;}
.h30{height:16.920001px;}
.h40{height:16.920009px;}
.h3f{height:16.920010px;}
.h25{height:16.920044px;}
.h2b{height:16.920045px;}
.h2c{height:17.099945px;}
.h42{height:17.099979px;}
.h43{height:17.099980px;}
.h18{height:17.099997px;}
.h3d{height:17.100005px;}
.h1c{height:17.100013px;}
.h41{height:17.279983px;}
.h13{height:17.279992px;}
.h17{height:17.280000px;}
.h10{height:17.280001px;}
.h16{height:17.459988px;}
.h14{height:17.459995px;}
.h12{height:17.459997px;}
.h19{height:17.460005px;}
.h1a{height:18.540012px;}
.he{height:18.900004px;}
.h21{height:19.079990px;}
.h1e{height:20.339984px;}
.h20{height:20.699993px;}
.hc{height:32.444304px;}
.h1d{height:37.297609px;}
.h29{height:38.818890px;}
.h11{height:41.276050px;}
.h28{height:44.799097px;}
.h27{height:44.825326px;}
.h1b{height:45.140074px;}
.h24{height:46.058088px;}
.h4{height:47.262430px;}
.hf{height:49.577702px;}
.h9{height:49.606729px;}
.h45{height:49.730353px;}
.hd{height:49.867970px;}
.h15{height:49.955050px;}
.ha{height:50.970987px;}
.hb{height:54.953774px;}
.h1f{height:55.275518px;}
.h5{height:56.496138px;}
.h22{height:59.732379px;}
.h8{height:59.767352px;}
.h44{height:60.082101px;}
.h2{height:60.105838px;}
.h38{height:60.187017px;}
.h3{height:61.411041px;}
.h6{height:71.850714px;}
.h7{height:76.297953px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.wb{width:0.179970px;}
.w7{width:0.179971px;}
.wad{width:0.179986px;}
.w16{width:0.179988px;}
.w68{width:0.179995px;}
.w5{width:0.180003px;}
.w3{width:0.180004px;}
.w39{width:0.180038px;}
.w34{width:0.180039px;}
.w33{width:1.799973px;}
.w1d{width:1.800007px;}
.w4c{width:2.519989px;}
.w47{width:2.519990px;}
.w37{width:3.779983px;}
.w53{width:3.959953px;}
.wc5{width:3.960004px;}
.wae{width:3.960006px;}
.wc6{width:3.960021px;}
.wd5{width:3.960023px;}
.w2a{width:4.140027px;}
.wb3{width:4.319962px;}
.w11{width:4.680003px;}
.w1a{width:4.680004px;}
.w9{width:4.680020px;}
.w31{width:4.680038px;}
.w3a{width:5.220016px;}
.w3c{width:5.220017px;}
.wc{width:5.400003px;}
.w29{width:5.579990px;}
.w94{width:5.580025px;}
.w2e{width:6.299972px;}
.wd4{width:6.299973px;}
.w19{width:6.300007px;}
.w30{width:6.300041px;}
.w18{width:6.479993px;}
.w36{width:6.480011px;}
.w2d{width:6.659981px;}
.wb4{width:6.839951px;}
.w22{width:6.840019px;}
.w32{width:7.199960px;}
.w1b{width:7.199993px;}
.w15{width:7.200010px;}
.w2c{width:7.200027px;}
.wd{width:7.379998px;}
.w23{width:7.919975px;}
.w2f{width:10.980011px;}
.w21{width:11.159999px;}
.w91{width:12.059967px;}
.w8c{width:12.060001px;}
.wa0{width:12.419975px;}
.w9e{width:12.779983px;}
.w8b{width:12.780018px;}
.w8e{width:12.959988px;}
.w88{width:12.960022px;}
.w89{width:13.139991px;}
.w8a{width:13.139992px;}
.w8d{width:13.140027px;}
.w1c{width:14.400003px;}
.w20{width:14.580025px;}
.w1f{width:14.939999px;}
.w6f{width:15.299990px;}
.wa6{width:15.840019px;}
.wb2{width:16.019989px;}
.w92{width:16.200027px;}
.w99{width:16.379997px;}
.w95{width:16.560036px;}
.w8f{width:18.719948px;}
.w7f{width:19.439964px;}
.w82{width:19.620002px;}
.w85{width:19.799973px;}
.w17{width:19.800007px;}
.w93{width:20.700028px;}
.w35{width:21.959954px;}
.w86{width:21.960021px;}
.w87{width:22.140027px;}
.wa4{width:22.319962px;}
.w90{width:22.679970px;}
.w96{width:22.680004px;}
.w83{width:22.860008px;}
.w80{width:23.039978px;}
.wba{width:23.220017px;}
.w9b{width:23.760029px;}
.w25{width:24.659981px;}
.wc3{width:24.660015px;}
.w1e{width:25.740006px;}
.w26{width:25.919975px;}
.w5d{width:26.100013px;}
.w58{width:26.460021px;}
.w28{width:27.000000px;}
.we{width:28.619985px;}
.wb5{width:28.979978px;}
.wcc{width:28.979994px;}
.w73{width:28.980010px;}
.w3b{width:28.980011px;}
.w76{width:29.339984px;}
.w27{width:29.340019px;}
.wc1{width:29.699993px;}
.wb1{width:29.700027px;}
.wb7{width:29.700028px;}
.wa{width:29.879998px;}
.wb6{width:30.059966px;}
.w71{width:30.060001px;}
.wa2{width:30.060002px;}
.w78{width:30.060035px;}
.wb0{width:30.060036px;}
.w9d{width:30.600013px;}
.w9c{width:30.600015px;}
.w70{width:30.780001px;}
.w14{width:30.960005px;}
.w84{width:32.040012px;}
.w81{width:32.220017px;}
.w62{width:32.579956px;}
.w7e{width:32.760029px;}
.w6b{width:33.120003px;}
.wb8{width:33.659998px;}
.w67{width:33.659999px;}
.w97{width:34.740006px;}
.w63{width:35.279984px;}
.w4d{width:35.460022px;}
.w5a{width:36.000000px;}
.w7d{width:36.179970px;}
.wcf{width:37.980010px;}
.w8{width:38.340001px;}
.w9f{width:38.340019px;}
.wbf{width:38.699993px;}
.wbb{width:39.240006px;}
.wa8{width:40.140027px;}
.w61{width:42.480011px;}
.wcd{width:44.819997px;}
.w59{width:45.539979px;}
.w7c{width:46.439964px;}
.w48{width:46.620003px;}
.w57{width:46.980010px;}
.wa3{width:49.319997px;}
.w2{width:49.500000px;}
.wca{width:50.039995px;}
.w7b{width:50.580025px;}
.w52{width:50.759994px;}
.w7a{width:51.479994px;}
.wbd{width:51.480011px;}
.w75{width:54.899987px;}
.w10{width:55.079991px;}
.w9a{width:55.440034px;}
.wb9{width:55.620003px;}
.wa5{width:56.159981px;}
.w98{width:57.600015px;}
.w5f{width:59.939999px;}
.wc9{width:60.120002px;}
.wf{width:61.019989px;}
.wc2{width:61.560001px;}
.w42{width:61.740006px;}
.w43{width:62.099997px;}
.w66{width:62.819961px;}
.w65{width:63.180003px;}
.wa7{width:63.900021px;}
.w24{width:66.420010px;}
.wcb{width:66.599997px;}
.wac{width:67.500000px;}
.w50{width:68.580025px;}
.wbc{width:68.939999px;}
.wc7{width:69.120003px;}
.w4e{width:69.659999px;}
.w51{width:72.000000px;}
.w45{width:72.899953px;}
.wd2{width:74.879998px;}
.w3f{width:76.860009px;}
.w6c{width:77.759994px;}
.w79{width:78.659999px;}
.w69{width:79.199975px;}
.wd7{width:80.640026px;}
.w64{width:82.079990px;}
.wd0{width:84.599980px;}
.wd3{width:85.319997px;}
.w6e{width:85.500000px;}
.wa1{width:86.220017px;}
.w4{width:88.020006px;}
.w41{width:91.080025px;}
.wc0{width:91.259996px;}
.w40{width:91.800007px;}
.w4b{width:93.060036px;}
.w77{width:93.420010px;}
.wbe{width:93.599980px;}
.w56{width:93.779983px;}
.w5c{width:93.959988px;}
.w54{width:95.759996px;}
.w12{width:99.900021px;}
.w72{width:100.079991px;}
.w5e{width:101.159981px;}
.w13{width:105.299990px;}
.w6a{width:105.300007px;}
.w4a{width:105.660015px;}
.w3d{width:107.819962px;}
.w46{width:111.060035px;}
.waf{width:113.760012px;}
.w74{width:113.939999px;}
.wa9{width:114.480011px;}
.wab{width:116.100015px;}
.waa{width:121.140027px;}
.w6d{width:136.080025px;}
.wd8{width:146.160050px;}
.w3e{width:149.220017px;}
.wc8{width:152.100014px;}
.wd1{width:163.620002px;}
.wce{width:169.200028px;}
.wd6{width:171.540047px;}
.wc4{width:176.580025px;}
.w4f{width:230.040012px;}
.w60{width:236.700011px;}
.w5b{width:239.040012px;}
.w44{width:239.939982px;}
.w55{width:248.220017px;}
.w6{width:266.039979px;}
.w49{width:278.100014px;}
.w2b{width:342.180021px;}
.w38{width:421.739988px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x38{left:1.800007px;}
.x17{left:48.420001px;}
.x15{left:87.120002px;}
.x9{left:88.560001px;}
.x50{left:95.219999px;}
.x18{left:98.099997px;}
.xc2{left:99.719999px;}
.xb{left:102.239997px;}
.xc{left:106.019998px;}
.x8{left:115.379998px;}
.x13{left:120.420001px;}
.x90{left:128.700002px;}
.x19{left:139.500000px;}
.xa2{left:147.419992px;}
.x11{left:163.080008px;}
.x10{left:164.520006px;}
.x1{left:170.816963px;}
.x51{left:171.900003px;}
.xa1{left:173.879998px;}
.xa{left:178.020006px;}
.x95{left:180.539996px;}
.xc4{left:181.800007px;}
.xb9{left:185.219999px;}
.xcb{left:186.479994px;}
.x65{left:206.639992px;}
.x9f{left:209.520006px;}
.x67{left:211.860008px;}
.x7f{left:213.479994px;}
.x5a{left:217.080008px;}
.x75{left:221.219999px;}
.x59{left:222.659998px;}
.x66{left:223.919992px;}
.x58{left:225.900003px;}
.x89{left:227.520006px;}
.x74{left:230.939999px;}
.xc5{left:234.900003px;}
.x8a{left:235.979994px;}
.x91{left:239.580008px;}
.x4f{left:243.539996px;}
.x1a{left:246.780001px;}
.xd1{left:249.479994px;}
.x14{left:251.099997px;}
.x96{left:254.520006px;}
.x21{left:255.599997px;}
.x2b{left:260.460005px;}
.x22{left:263.159998px;}
.x2a{left:264.599997px;}
.xcc{left:266.939999px;}
.x2c{left:268.199993px;}
.x97{left:270.180005px;}
.x3{left:271.262384px;}
.x2f{left:274.139992px;}
.x2d{left:275.400003px;}
.x29{left:277.919992px;}
.xc6{left:279.719999px;}
.x30{left:281.699993px;}
.x2e{left:282.780001px;}
.x1e{left:285.479994px;}
.x31{left:289.259994px;}
.x1f{left:290.519989px;}
.x23{left:292.860008px;}
.xa3{left:296.279983px;}
.x52{left:300.060001px;}
.x16{left:302.040012px;}
.x8e{left:304.379998px;}
.xa0{left:306.899987px;}
.xaa{left:309.600013px;}
.x24{left:315.899987px;}
.x5b{left:317.519989px;}
.x92{left:319.139992px;}
.x20{left:320.220017px;}
.x32{left:322.740006px;}
.x33{left:325.980011px;}
.xa6{left:329.040012px;}
.xb6{left:330.120002px;}
.xae{left:331.379998px;}
.xb3{left:333.360008px;}
.x1b{left:334.439999px;}
.xb4{left:336.600014px;}
.x1c{left:337.860008px;}
.xb1{left:340.740006px;}
.x93{left:343.800007px;}
.xd{left:346.500000px;}
.x4{left:350.272428px;}
.xb0{left:351.720017px;}
.xaf{left:353.699993px;}
.x28{left:359.639992px;}
.x5{left:360.903286px;}
.x25{left:374.399987px;}
.xf{left:376.379998px;}
.x26{left:379.079990px;}
.xbe{left:380.519989px;}
.x98{left:381.600014px;}
.xb2{left:382.680005px;}
.x34{left:384.839985px;}
.x8f{left:387.360008px;}
.x12{left:390.240006px;}
.x53{left:391.680005px;}
.xc7{left:395.459988px;}
.xbc{left:399.420010px;}
.xc8{left:403.740006px;}
.xd5{left:407.519989px;}
.x99{left:411.839985px;}
.xb5{left:417.779983px;}
.x35{left:423.000000px;}
.xc3{left:437.759994px;}
.x2{left:442.259994px;}
.xe{left:446.759994px;}
.x36{left:450.540012px;}
.xd6{left:452.160015px;}
.x37{left:455.939999px;}
.xcd{left:460.620002px;}
.x39{left:462.779983px;}
.xd2{left:464.220017px;}
.x4d{left:469.620002px;}
.x94{left:472.860008px;}
.x9a{left:474.480011px;}
.x3a{left:475.740006px;}
.x27{left:479.339985px;}
.x6{left:493.734610px;}
.xbf{left:497.160015px;}
.xc9{left:500.579990px;}
.x6b{left:501.660015px;}
.x7{left:504.363875px;}
.x5c{left:507.240006px;}
.x69{left:512.279983px;}
.x5d{left:515.339985px;}
.x80{left:516.779983px;}
.x84{left:519.120002px;}
.x6d{left:520.199993px;}
.x81{left:526.139992px;}
.x54{left:527.399987px;}
.x9b{left:529.560001px;}
.x5f{left:531.360008px;}
.x76{left:533.339985px;}
.xce{left:535.139992px;}
.x68{left:538.740006px;}
.x6c{left:540.180005px;}
.x60{left:542.160015px;}
.x77{left:544.139992px;}
.x5e{left:546.660015px;}
.x85{left:550.439999px;}
.x6a{left:552.420010px;}
.x8b{left:557.100014px;}
.xc1{left:558.540012px;}
.xcf{left:559.620002px;}
.xca{left:566.819996px;}
.x3b{left:592.740006px;}
.x3c{left:600.120002px;}
.x1d{left:604.620002px;}
.xa4{left:608.580025px;}
.x3d{left:610.740006px;}
.x78{left:613.080025px;}
.x61{left:614.879998px;}
.xd0{left:617.759994px;}
.x55{left:618.840019px;}
.x4e{left:620.639992px;}
.xa7{left:622.080025px;}
.x3e{left:625.139992px;}
.x6e{left:626.220017px;}
.xac{left:628.919975px;}
.x9c{left:630.179970px;}
.xbd{left:631.259994px;}
.x3f{left:632.519989px;}
.xd9{left:633.779983px;}
.xad{left:635.580025px;}
.x40{left:637.379998px;}
.xab{left:638.820030px;}
.xa8{left:642.240006px;}
.x41{left:644.940033px;}
.xb7{left:648.720017px;}
.x42{left:652.500000px;}
.x43{left:656.279983px;}
.x44{left:659.700027px;}
.xba{left:660.960023px;}
.x6f{left:662.039978px;}
.x88{left:664.200027px;}
.x7e{left:667.980011px;}
.x7d{left:670.679970px;}
.x62{left:672.299973px;}
.xd3{left:675.720017px;}
.x48{left:678.419975px;}
.x45{left:681.120002px;}
.x49{left:682.559967px;}
.x46{left:686.340019px;}
.x4a{left:688.139992px;}
.x47{left:691.200027px;}
.x86{left:692.279983px;}
.x87{left:695.700027px;}
.x56{left:698.580025px;}
.x73{left:704.879998px;}
.x9d{left:709.379998px;}
.x82{left:717.480011px;}
.x4b{left:721.259994px;}
.xd7{left:725.039978px;}
.x4c{left:726.840019px;}
.xc0{left:731.519989px;}
.x79{left:734.399987px;}
.xd4{left:736.019989px;}
.x7a{left:737.820030px;}
.x9e{left:739.620002px;}
.x7b{left:741.240006px;}
.x83{left:743.940033px;}
.xb8{left:748.799973px;}
.x8c{left:750.779983px;}
.x8d{left:754.200027px;}
.x70{left:755.460023px;}
.x71{left:758.700027px;}
.x57{left:760.679970px;}
.x72{left:762.120002px;}
.xa9{left:763.559967px;}
.xbb{left:768.240006px;}
.xa5{left:770.220017px;}
.x63{left:783.539978px;}
.xda{left:784.799973px;}
.x64{left:786.960023px;}
.x7c{left:793.080025px;}
.xd8{left:797.580025px;}
@media print{
.v2{vertical-align:-17.919920pt;}
.v3{vertical-align:-9.600096pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.879880pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.063167pt;}
.lsf{letter-spacing:0.083800pt;}
.ls5{letter-spacing:0.090520pt;}
.ls8{letter-spacing:0.167600pt;}
.ls27{letter-spacing:0.194353pt;}
.lse{letter-spacing:0.204392pt;}
.ls4{letter-spacing:0.229604pt;}
.ls0{letter-spacing:0.445868pt;}
.ls7{letter-spacing:0.459208pt;}
.lsb{letter-spacing:0.487674pt;}
.lsa{letter-spacing:0.487794pt;}
.lsc{letter-spacing:0.487798pt;}
.ls15{letter-spacing:0.723692pt;}
.ls1c{letter-spacing:0.723756pt;}
.ls17{letter-spacing:0.723816pt;}
.ls20{letter-spacing:0.807612pt;}
.ls25{letter-spacing:2.003780pt;}
.ls26{letter-spacing:2.003840pt;}
.ls28{letter-spacing:2.003844pt;}
.ls2{letter-spacing:2.149584pt;}
.ls3{letter-spacing:2.149704pt;}
.ls1e{letter-spacing:2.643796pt;}
.ls1b{letter-spacing:2.643856pt;}
.ls1f{letter-spacing:6.483824pt;}
.ls2a{letter-spacing:6.483828pt;}
.ls21{letter-spacing:7.123780pt;}
.ls13{letter-spacing:8.403748pt;}
.ls23{letter-spacing:9.043764pt;}
.ls16{letter-spacing:9.043884pt;}
.lsd{letter-spacing:10.963684pt;}
.ls22{letter-spacing:10.963804pt;}
.ls14{letter-spacing:10.963928pt;}
.ls29{letter-spacing:11.603820pt;}
.ls24{letter-spacing:12.243836pt;}
.ls12{letter-spacing:12.883848pt;}
.ls11{letter-spacing:13.523744pt;}
.ls10{letter-spacing:14.803772pt;}
.ls1d{letter-spacing:16.083800pt;}
.ls19{letter-spacing:21.760012pt;}
.ls18{letter-spacing:22.399904pt;}
.ls1a{letter-spacing:23.123716pt;}
.ls9{letter-spacing:23.123836pt;}
.ws7{word-spacing:-63.664800pt;}
.ws6{word-spacing:-47.748400pt;}
.ws0{word-spacing:-18.621901pt;}
.ws1{word-spacing:-15.916200pt;}
.ws3{word-spacing:-14.642900pt;}
.ws2{word-spacing:-13.210400pt;}
.ws5{word-spacing:-11.937100pt;}
.ws4{word-spacing:0.000000pt;}
._24{margin-left:-4.724430pt;}
._13{margin-left:-3.788544pt;}
._a{margin-left:-2.883791pt;}
._4{margin-left:-1.932845pt;}
._0{margin-left:-0.968313pt;}
._1{width:1.415226pt;}
._2{width:2.532510pt;}
._8{width:3.442863pt;}
._9{width:4.348178pt;}
._3{width:5.443098pt;}
._7{width:6.395583pt;}
._6{width:7.344982pt;}
._d{width:8.256233pt;}
._b{width:9.531035pt;}
._c{width:10.812297pt;}
._5{width:11.848015pt;}
._16{width:13.600551pt;}
._12{width:14.632520pt;}
._11{width:16.223075pt;}
._10{width:17.151578pt;}
._f{width:18.053847pt;}
._e{width:19.216591pt;}
._17{width:20.120497pt;}
._14{width:21.378783pt;}
._15{width:22.924710pt;}
._1d{width:24.401596pt;}
._1e{width:25.328394pt;}
._1f{width:26.455460pt;}
._20{width:28.203506pt;}
._2a{width:29.166980pt;}
._19{width:30.062871pt;}
._18{width:30.995059pt;}
._1a{width:32.062506pt;}
._22{width:33.475095pt;}
._23{width:34.457469pt;}
._21{width:35.826594pt;}
._1b{width:37.904430pt;}
._1c{width:39.482372pt;}
._2b{width:40.439069pt;}
._26{width:42.030710pt;}
._25{width:44.515533pt;}
._29{width:45.892622pt;}
._27{width:47.081860pt;}
._28{width:47.999341pt;}
._2c{width:54.838272pt;}
._2d{width:56.835302pt;}
.fs8{font-size:34.378960pt;}
.fs4{font-size:47.748400pt;}
.fs6{font-size:52.841600pt;}
.fs2{font-size:58.569522pt;}
.fs7{font-size:58.571600pt;}
.fs1{font-size:63.664800pt;}
.fs5{font-size:71.941200pt;}
.fs0{font-size:74.485595pt;}
.fs3{font-size:74.487604pt;}
.y0{bottom:0.000000pt;}
.y10d{bottom:2.559936pt;}
.yfd{bottom:2.559997pt;}
.yf3{bottom:2.559998pt;}
.y1e9{bottom:2.560012pt;}
.y1b0{bottom:2.719970pt;}
.ye7{bottom:2.719971pt;}
.y1be{bottom:2.720001pt;}
.y1f8{bottom:2.720002pt;}
.y194{bottom:2.720031pt;}
.yd9{bottom:2.720032pt;}
.y48{bottom:2.879989pt;}
.y44{bottom:2.879990pt;}
.y39{bottom:2.879997pt;}
.y3d{bottom:2.879998pt;}
.y4b{bottom:2.880004pt;}
.y40{bottom:2.880005pt;}
.y46{bottom:3.039993pt;}
.y42{bottom:3.039994pt;}
.y3b{bottom:3.040001pt;}
.y4d{bottom:3.040008pt;}
.y55{bottom:3.359985pt;}
.ydf{bottom:3.679992pt;}
.yd1{bottom:3.679993pt;}
.y10f{bottom:3.680000pt;}
.y1f5{bottom:3.680008pt;}
.y109{bottom:3.680054pt;}
.ydb{bottom:3.839965pt;}
.yff{bottom:3.839966pt;}
.y1e7{bottom:3.839996pt;}
.y1ee{bottom:3.839997pt;}
.y1f2{bottom:3.840011pt;}
.yce{bottom:3.840027pt;}
.y50{bottom:4.000000pt;}
.y29{bottom:4.320000pt;}
.y53{bottom:4.480011pt;}
.y3{bottom:40.003357pt;}
.y2{bottom:57.920044pt;}
.y10c{bottom:81.120118pt;}
.y1e6{bottom:82.720093pt;}
.y10b{bottom:83.680054pt;}
.y107{bottom:87.520020pt;}
.y27{bottom:88.960083pt;}
.y15c{bottom:89.120118pt;}
.y274{bottom:91.520020pt;}
.y1b7{bottom:92.000000pt;}
.y285{bottom:92.320069pt;}
.yb5{bottom:95.520020pt;}
.y13e{bottom:95.840088pt;}
.y258{bottom:97.120118pt;}
.y188{bottom:97.440064pt;}
.y106{bottom:97.600098pt;}
.y108{bottom:97.760010pt;}
.y10a{bottom:99.520081pt;}
.y89{bottom:103.520081pt;}
.y222{bottom:107.680054pt;}
.y26{bottom:108.800049pt;}
.y1e5{bottom:108.960083pt;}
.y298{bottom:110.080079pt;}
.y284{bottom:110.560059pt;}
.y105{bottom:113.120057pt;}
.yb4{bottom:113.760071pt;}
.y13d{bottom:114.080079pt;}
.y15b{bottom:115.360047pt;}
.y187{bottom:115.680054pt;}
.y273{bottom:117.760071pt;}
.y1b6{bottom:118.240052pt;}
.y88{bottom:121.760071pt;}
.y241{bottom:125.760071pt;}
.y221{bottom:126.080079pt;}
.y1e4{bottom:127.360047pt;}
.y25{bottom:127.840088pt;}
.y283{bottom:128.960083pt;}
.y104{bottom:129.440064pt;}
.y13c{bottom:132.480042pt;}
.y272{bottom:136.160035pt;}
.y297{bottom:139.520081pt;}
.y87{bottom:140.160035pt;}
.y1b5{bottom:141.600037pt;}
.y15a{bottom:141.760071pt;}
.y186{bottom:142.080079pt;}
.y240{bottom:144.000061pt;}
.y103{bottom:145.120057pt;}
.y1e3{bottom:145.600037pt;}
.y100{bottom:147.040039pt;}
.y282{bottom:147.200074pt;}
.y13b{bottom:150.720032pt;}
.y220{bottom:152.320069pt;}
.y271{bottom:154.400086pt;}
.y1b4{bottom:156.160035pt;}
.yfe{bottom:156.960083pt;}
.y101{bottom:157.120057pt;}
.y86{bottom:158.400086pt;}
.y102{bottom:158.880066pt;}
.y257{bottom:160.000061pt;}
.y185{bottom:160.320069pt;}
.y1e2{bottom:164.000061pt;}
.y24{bottom:164.800049pt;}
.y281{bottom:165.600037pt;}
.y1b1{bottom:165.920044pt;}
.y159{bottom:168.000061pt;}
.y296{bottom:168.960083pt;}
.y13a{bottom:169.120057pt;}
.y1b3{bottom:170.400086pt;}
.y21f{bottom:170.720032pt;}
.yfc{bottom:172.480042pt;}
.y85{bottom:176.640076pt;}
.y184{bottom:178.560059pt;}
.y270{bottom:180.640076pt;}
.y280{bottom:183.840088pt;}
.y1b2{bottom:184.960083pt;}
.y158{bottom:186.240052pt;}
.y23{bottom:188.000061pt;}
.y23f{bottom:188.640076pt;}
.yfb{bottom:188.960083pt;}
.y1e1{bottom:190.240052pt;}
.y84{bottom:195.040039pt;}
.y139{bottom:195.360047pt;}
.y183{bottom:196.960083pt;}
.y295{bottom:198.240052pt;}
.y26f{bottom:199.040039pt;}
.y1af{bottom:199.200074pt;}
.y27f{bottom:202.240052pt;}
.yfa{bottom:202.720032pt;}
.y256{bottom:204.480042pt;}
.yf7{bottom:206.400086pt;}
.y23e{bottom:206.880066pt;}
.y1e0{bottom:208.480042pt;}
.y22{bottom:211.200074pt;}
.y157{bottom:212.480042pt;}
.y83{bottom:213.280030pt;}
.y1ae{bottom:213.760071pt;}
.y182{bottom:215.200074pt;}
.yf9{bottom:218.240052pt;}
.yf5{bottom:220.160035pt;}
.y27e{bottom:220.480042pt;}
.yb3{bottom:221.280030pt;}
.y138{bottom:221.600037pt;}
.y255{bottom:222.880066pt;}
.y21e{bottom:223.200074pt;}
.y26e{bottom:225.280030pt;}
.y21{bottom:226.560059pt;}
.y1df{bottom:226.880066pt;}
.y294{bottom:227.520081pt;}
.y1ad{bottom:228.000061pt;}
.yf4{bottom:230.080079pt;}
.yf6{bottom:230.240052pt;}
.y1aa{bottom:230.720032pt;}
.y82{bottom:231.680054pt;}
.yf8{bottom:232.160035pt;}
.y23d{bottom:233.280030pt;}
.y156{bottom:238.720032pt;}
.y137{bottom:239.840088pt;}
.y181{bottom:241.440064pt;}
.y20{bottom:241.760071pt;}
.y1ac{bottom:242.400086pt;}
.y26d{bottom:243.520081pt;}
.y1de{bottom:245.120057pt;}
.yf2{bottom:245.760071pt;}
.yb2{bottom:247.520081pt;}
.yf1{bottom:248.320069pt;}
.y254{bottom:249.120057pt;}
.y81{bottom:249.920044pt;}
.y23c{bottom:251.520081pt;}
.y1ab{bottom:256.800049pt;}
.y1f{bottom:257.120057pt;}
.y136{bottom:258.240052pt;}
.y21d{bottom:259.840088pt;}
.y1dd{bottom:263.520081pt;}
.yf0{bottom:263.840088pt;}
.y180{bottom:264.960083pt;}
.yb1{bottom:265.760071pt;}
.y253{bottom:267.360047pt;}
.y80{bottom:268.160035pt;}
.yec{bottom:269.760071pt;}
.y1a9{bottom:271.200074pt;}
.y1e{bottom:272.160035pt;}
.y155{bottom:275.360047pt;}
.y135{bottom:276.480042pt;}
.yef{bottom:277.760071pt;}
.y21c{bottom:278.080079pt;}
.y17f{bottom:278.720032pt;}
.y1dc{bottom:281.760071pt;}
.y27d{bottom:283.360047pt;}
.yeb{bottom:283.520081pt;}
.yb0{bottom:284.160035pt;}
.y1a8{bottom:285.600037pt;}
.y252{bottom:285.760071pt;}
.y293{bottom:286.080079pt;}
.y7f{bottom:286.560059pt;}
.y1d{bottom:287.520081pt;}
.y26c{bottom:288.160035pt;}
.y17e{bottom:292.320069pt;}
.yee{bottom:293.440064pt;}
.y154{bottom:293.760071pt;}
.y23b{bottom:296.000061pt;}
.y21b{bottom:296.320069pt;}
.ye9{bottom:297.120057pt;}
.y1a7{bottom:300.000061pt;}
.y27c{bottom:301.600037pt;}
.yaf{bottom:302.400086pt;}
.y1c{bottom:302.720032pt;}
.y7e{bottom:304.800049pt;}
.y17d{bottom:306.720032pt;}
.ye8{bottom:307.040039pt;}
.yea{bottom:307.200074pt;}
.y1db{bottom:308.000061pt;}
.yed{bottom:308.960083pt;}
.y1a3{bottom:309.760071pt;}
.y251{bottom:312.000061pt;}
.y1a6{bottom:314.240052pt;}
.y26b{bottom:314.400086pt;}
.y21a{bottom:314.720032pt;}
.y292{bottom:315.360047pt;}
.y1b{bottom:318.080079pt;}
.y153{bottom:320.000061pt;}
.yae{bottom:320.800049pt;}
.y23a{bottom:322.400086pt;}
.ye6{bottom:322.560059pt;}
.y7d{bottom:323.200074pt;}
.y1da{bottom:326.240052pt;}
.y1a5{bottom:328.800049pt;}
.y134{bottom:328.960083pt;}
.y250{bottom:330.240052pt;}
.y17c{bottom:332.640076pt;}
.y219{bottom:332.960083pt;}
.y1a{bottom:333.280030pt;}
.y152{bottom:338.240052pt;}
.yad{bottom:339.040039pt;}
.y239{bottom:340.640076pt;}
.y7c{bottom:341.440064pt;}
.y1a4{bottom:343.040039pt;}
.y1d9{bottom:344.640076pt;}
.y133{bottom:347.360047pt;}
.y19{bottom:348.640076pt;}
.ye5{bottom:354.720032pt;}
.y151{bottom:356.640076pt;}
.yac{bottom:357.440064pt;}
.y1a2{bottom:357.600037pt;}
.y17b{bottom:359.040039pt;}
.y218{bottom:359.360047pt;}
.y7b{bottom:359.840088pt;}
.y1d8{bottom:362.880066pt;}
.y18{bottom:363.680054pt;}
.y132{bottom:365.600037pt;}
.y238{bottom:366.880066pt;}
.ye4{bottom:368.480042pt;}
.y1a1{bottom:372.000061pt;}
.y291{bottom:374.080079pt;}
.y150{bottom:374.880066pt;}
.yab{bottom:375.680054pt;}
.y17a{bottom:377.280030pt;}
.y17{bottom:379.040039pt;}
.y1d6{bottom:381.280030pt;}
.y19e{bottom:381.760071pt;}
.y1d7{bottom:383.680054pt;}
.y131{bottom:384.000061pt;}
.ye3{bottom:384.160035pt;}
.y237{bottom:385.280030pt;}
.y217{bottom:385.440064pt;}
.y7a{bottom:386.080079pt;}
.y1a0{bottom:386.240052pt;}
.y27b{bottom:393.120057pt;}
.yaa{bottom:393.920044pt;}
.y16{bottom:394.240052pt;}
.y179{bottom:395.520081pt;}
.ye2{bottom:397.760071pt;}
.y1d5{bottom:399.520081pt;}
.y19f{bottom:400.800049pt;}
.y14f{bottom:401.120057pt;}
.y130{bottom:402.240052pt;}
.y290{bottom:403.360047pt;}
.ydd{bottom:403.520081pt;}
.y216{bottom:403.680054pt;}
.y79{bottom:404.320069pt;}
.y15{bottom:409.600037pt;}
.y27a{bottom:411.520081pt;}
.ya9{bottom:412.320069pt;}
.ye1{bottom:413.440064pt;}
.y178{bottom:413.920044pt;}
.y19d{bottom:415.040039pt;}
.ydc{bottom:417.440064pt;}
.y24f{bottom:419.520081pt;}
.y12f{bottom:420.640076pt;}
.y26a{bottom:421.920044pt;}
.y215{bottom:422.080079pt;}
.y78{bottom:422.560059pt;}
.y14{bottom:424.800049pt;}
.y1d4{bottom:425.760071pt;}
.yda{bottom:427.200074pt;}
.yde{bottom:427.360047pt;}
.ye0{bottom:429.120057pt;}
.y19c{bottom:429.600037pt;}
.y236{bottom:429.760071pt;}
.ya8{bottom:430.560059pt;}
.y177{bottom:432.160035pt;}
.y28f{bottom:432.640076pt;}
.y24e{bottom:437.760071pt;}
.y12e{bottom:438.880066pt;}
.y269{bottom:440.160035pt;}
.y214{bottom:440.320069pt;}
.y77{bottom:440.960083pt;}
.yd8{bottom:442.720032pt;}
.y19b{bottom:443.840088pt;}
.y1d3{bottom:444.160035pt;}
.yd7{bottom:445.440064pt;}
.y14e{bottom:445.760071pt;}
.y235{bottom:448.160035pt;}
.y13{bottom:448.800049pt;}
.ya7{bottom:448.960083pt;}
.y176{bottom:450.560059pt;}
.yd3{bottom:451.200074pt;}
.y198{bottom:453.600037pt;}
.y12d{bottom:457.120057pt;}
.y19a{bottom:458.240052pt;}
.y213{bottom:458.560059pt;}
.y76{bottom:459.200074pt;}
.yd6{bottom:461.120057pt;}
.y28e{bottom:461.920044pt;}
.y1d2{bottom:462.400086pt;}
.y14d{bottom:464.000061pt;}
.yd2{bottom:464.960083pt;}
.y234{bottom:466.400086pt;}
.ya6{bottom:467.200074pt;}
.y175{bottom:468.800049pt;}
.y199{bottom:472.640076pt;}
.yd5{bottom:474.880066pt;}
.y12{bottom:475.040039pt;}
.y12c{bottom:475.520081pt;}
.y212{bottom:476.960083pt;}
.y75{bottom:477.600037pt;}
.ycf{bottom:478.720032pt;}
.y1d1{bottom:480.800049pt;}
.y14c{bottom:482.400086pt;}
.y268{bottom:484.640076pt;}
.ya5{bottom:485.440064pt;}
.y174{bottom:487.040039pt;}
.ycd{bottom:488.480042pt;}
.yd0{bottom:488.640076pt;}
.yd4{bottom:490.400086pt;}
.y28d{bottom:491.200074pt;}
.y233{bottom:492.640076pt;}
.y11{bottom:493.280030pt;}
.y12b{bottom:493.760071pt;}
.y211{bottom:495.200074pt;}
.y74{bottom:495.840088pt;}
.y1d0{bottom:499.040039pt;}
.y14b{bottom:500.640076pt;}
.y197{bottom:501.440064pt;}
.y267{bottom:503.040039pt;}
.ya4{bottom:503.840088pt;}
.ycc{bottom:504.000061pt;}
.y173{bottom:505.440064pt;}
.y195{bottom:511.360047pt;}
.y10{bottom:511.680054pt;}
.y12a{bottom:512.160035pt;}
.y210{bottom:513.440064pt;}
.y73{bottom:514.080079pt;}
.y196{bottom:515.840088pt;}
.y1ce{bottom:517.280030pt;}
.y14a{bottom:518.880066pt;}
.y1cf{bottom:519.680054pt;}
.y28c{bottom:520.480042pt;}
.y172{bottom:523.680054pt;}
.y24d{bottom:526.880066pt;}
.y266{bottom:529.280030pt;}
.yf{bottom:529.920044pt;}
.ya3{bottom:530.080079pt;}
.y193{bottom:530.240052pt;}
.y129{bottom:530.400086pt;}
.y20f{bottom:531.840088pt;}
.y72{bottom:532.480042pt;}
.y149{bottom:537.280030pt;}
.y191{bottom:540.160035pt;}
.y171{bottom:542.080079pt;}
.y1cd{bottom:543.520081pt;}
.y192{bottom:544.640076pt;}
.y24c{bottom:545.120057pt;}
.y265{bottom:547.520081pt;}
.ye{bottom:548.160035pt;}
.y28b{bottom:549.920044pt;}
.y20e{bottom:550.080079pt;}
.y71{bottom:550.720032pt;}
.y148{bottom:555.520081pt;}
.ya2{bottom:556.320069pt;}
.y128{bottom:556.640076pt;}
.y190{bottom:558.880066pt;}
.y170{bottom:560.320069pt;}
.y1cc{bottom:561.920044pt;}
.y264{bottom:565.920044pt;}
.yd{bottom:566.560059pt;}
.y20d{bottom:568.480042pt;}
.y70{bottom:569.120057pt;}
.y24b{bottom:571.520081pt;}
.y279{bottom:573.920044pt;}
.ycb{bottom:574.720032pt;}
.y16f{bottom:578.560059pt;}
.y28a{bottom:579.200074pt;}
.y1cb{bottom:580.160035pt;}
.y147{bottom:581.760071pt;}
.ya1{bottom:582.560059pt;}
.y127{bottom:582.880066pt;}
.yc{bottom:584.640076pt;}
.y18f{bottom:584.960083pt;}
.y20c{bottom:586.720032pt;}
.y6f{bottom:587.360047pt;}
.y24a{bottom:589.760071pt;}
.y263{bottom:592.160035pt;}
.yca{bottom:592.960083pt;}
.y16e{bottom:596.960083pt;}
.y1ca{bottom:598.560059pt;}
.y232{bottom:600.160035pt;}
.ya0{bottom:600.960083pt;}
.y126{bottom:601.280030pt;}
.yb{bottom:603.040039pt;}
.y20b{bottom:605.120057pt;}
.y6e{bottom:605.760071pt;}
.y146{bottom:608.160035pt;}
.y289{bottom:608.480042pt;}
.y262{bottom:610.400086pt;}
.yc9{bottom:611.200074pt;}
.y16d{bottom:615.200074pt;}
.y1c9{bottom:616.800049pt;}
.y231{bottom:618.400055pt;}
.y9f{bottom:619.200074pt;}
.y125{bottom:619.520050pt;}
.ya{bottom:621.920044pt;}
.y20a{bottom:623.360047pt;}
.y6d{bottom:624.000061pt;}
.yc8{bottom:629.600068pt;}
.y16c{bottom:633.600068pt;}
.y145{bottom:634.400055pt;}
.y230{bottom:636.800049pt;}
.y9e{bottom:637.600068pt;}
.y124{bottom:637.920044pt;}
.y209{bottom:641.600068pt;}
.y6c{bottom:642.240052pt;}
.y1c8{bottom:643.040070pt;}
.y9{bottom:643.200074pt;}
.y278{bottom:644.640046pt;}
.yc7{bottom:647.840058pt;}
.y16b{bottom:651.840058pt;}
.y249{bottom:652.640046pt;}
.y22f{bottom:655.040070pt;}
.y9d{bottom:655.840058pt;}
.y123{bottom:656.160065pt;}
.y208{bottom:660.000061pt;}
.y6b{bottom:660.640046pt;}
.y277{bottom:663.040070pt;}
.y8{bottom:664.640046pt;}
.yc6{bottom:666.240052pt;}
.y1c7{bottom:666.400055pt;}
.y288{bottom:667.200074pt;}
.y16a{bottom:670.080048pt;}
.y261{bottom:673.280060pt;}
.y9c{bottom:674.080048pt;}
.y122{bottom:674.400055pt;}
.y207{bottom:678.240052pt;}
.y6a{bottom:678.880066pt;}
.y1c6{bottom:680.800049pt;}
.y22e{bottom:681.280060pt;}
.yc5{bottom:684.480072pt;}
.y7{bottom:685.920044pt;}
.y144{bottom:686.880066pt;}
.y9b{bottom:692.480072pt;}
.y169{bottom:696.480072pt;}
.y206{bottom:696.640046pt;}
.y248{bottom:697.280060pt;}
.y22d{bottom:699.520050pt;}
.y121{bottom:700.640046pt;}
.yc4{bottom:702.720063pt;}
.y69{bottom:705.120057pt;}
.y1c5{bottom:706.720063pt;}
.y276{bottom:707.520050pt;}
.y205{bottom:714.880066pt;}
.y6{bottom:715.200074pt;}
.y247{bottom:715.520050pt;}
.y260{bottom:717.920044pt;}
.y9a{bottom:718.720063pt;}
.y120{bottom:719.040070pt;}
.yc3{bottom:721.120057pt;}
.y168{bottom:722.720063pt;}
.y287{bottom:725.760071pt;}
.y22c{bottom:725.920044pt;}
.y68{bottom:730.560059pt;}
.y143{bottom:731.360047pt;}
.y1c4{bottom:732.960053pt;}
.y25f{bottom:736.160065pt;}
.y5{bottom:736.480072pt;}
.y99{bottom:736.960053pt;}
.y11f{bottom:737.280060pt;}
.yc2{bottom:739.360047pt;}
.y167{bottom:740.960053pt;}
.y204{bottom:741.120057pt;}
.y246{bottom:741.760071pt;}
.y142{bottom:749.760071pt;}
.y1c3{bottom:751.360047pt;}
.y22b{bottom:752.160065pt;}
.y67{bottom:753.920044pt;}
.y286{bottom:755.200074pt;}
.y98{bottom:755.360047pt;}
.y11e{bottom:755.680054pt;}
.yc1{bottom:757.760071pt;}
.y4{bottom:758.080048pt;}
.y245{bottom:760.000061pt;}
.y25e{bottom:762.400055pt;}
.y203{bottom:764.480072pt;}
.y166{bottom:767.200074pt;}
.y141{bottom:768.000061pt;}
.y1c2{bottom:769.600068pt;}
.y22a{bottom:770.400055pt;}
.y97{bottom:773.600068pt;}
.y11d{bottom:773.920044pt;}
.yc0{bottom:776.000061pt;}
.y66{bottom:777.120057pt;}
.y202{bottom:777.280060pt;}
.y244{bottom:778.400055pt;}
.y25d{bottom:780.800049pt;}
.y54{bottom:783.200074pt;}
.y18e{bottom:784.000061pt;}
.y140{bottom:786.400055pt;}
.y1c1{bottom:788.000061pt;}
.y275{bottom:788.800049pt;}
.y96{bottom:791.840058pt;}
.y11c{bottom:792.320069pt;}
.y65{bottom:792.480072pt;}
.y201{bottom:792.640046pt;}
.y165{bottom:793.600068pt;}
.ybf{bottom:794.400055pt;}
.y229{bottom:796.800049pt;}
.y52{bottom:798.720063pt;}
.y25c{bottom:799.040070pt;}
.y18d{bottom:802.240052pt;}
.y13f{bottom:804.640046pt;}
.y1ff{bottom:805.280060pt;}
.y200{bottom:805.440064pt;}
.y64{bottom:807.680054pt;}
.y95{bottom:810.240052pt;}
.y11b{bottom:810.560059pt;}
.ybe{bottom:812.640046pt;}
.y1c0{bottom:814.240052pt;}
.y228{bottom:815.040070pt;}
.y51{bottom:816.640046pt;}
.y164{bottom:819.840058pt;}
.y18c{bottom:820.640046pt;}
.y1fe{bottom:820.800049pt;}
.y63{bottom:823.040070pt;}
.y25b{bottom:825.440064pt;}
.y94{bottom:828.480072pt;}
.ybd{bottom:830.880066pt;}
.y227{bottom:833.280060pt;}
.y37{bottom:834.880066pt;}
.y1fd{bottom:835.200074pt;}
.y11a{bottom:836.800049pt;}
.y1bf{bottom:837.600068pt;}
.y62{bottom:838.240052pt;}
.y18b{bottom:838.880066pt;}
.y243{bottom:841.280060pt;}
.y25a{bottom:843.680054pt;}
.y163{bottom:846.080048pt;}
.y4f{bottom:846.240052pt;}
.y93{bottom:846.880066pt;}
.ybc{bottom:849.280060pt;}
.y1fb{bottom:849.600068pt;}
.y36{bottom:850.240052pt;}
.y226{bottom:851.680054pt;}
.y1bd{bottom:851.840058pt;}
.y61{bottom:853.440064pt;}
.y119{bottom:855.200074pt;}
.y18a{bottom:857.280060pt;}
.y242{bottom:859.520050pt;}
.y1fa{bottom:862.080048pt;}
.y1fc{bottom:862.240052pt;}
.y4e{bottom:862.560059pt;}
.y92{bottom:865.120057pt;}
.y35{bottom:865.440064pt;}
.ybb{bottom:867.520066pt;}
.y60{bottom:868.640061pt;}
.y225{bottom:869.920060pt;}
.y162{bottom:872.320054pt;}
.y118{bottom:873.440064pt;}
.y189{bottom:875.520066pt;}
.y1f7{bottom:877.600052pt;}
.y4c{bottom:877.760056pt;}
.y1bc{bottom:877.920060pt;}
.y34{bottom:880.800064pt;}
.y91{bottom:883.520066pt;}
.y5f{bottom:884.000061pt;}
.y259{bottom:888.160065pt;}
.y1f6{bottom:890.240052pt;}
.y1f9{bottom:890.400055pt;}
.y117{bottom:891.680054pt;}
.y4a{bottom:893.120057pt;}
.yba{bottom:893.760056pt;}
.y33{bottom:896.000061pt;}
.y224{bottom:896.160065pt;}
.y161{bottom:898.560059pt;}
.y5e{bottom:899.200058pt;}
.y90{bottom:901.760056pt;}
.y1bb{bottom:904.160065pt;}
.y1f3{bottom:905.760056pt;}
.y49{bottom:908.160065pt;}
.y116{bottom:910.080063pt;}
.y32{bottom:911.200058pt;}
.yb9{bottom:912.160065pt;}
.y5d{bottom:914.560059pt;}
.y1f1{bottom:918.240052pt;}
.y1f4{bottom:918.400055pt;}
.y8f{bottom:920.000061pt;}
.y1ba{bottom:922.400055pt;}
.y47{bottom:923.520066pt;}
.y160{bottom:924.800064pt;}
.y31{bottom:926.400055pt;}
.y115{bottom:928.320054pt;}
.y5c{bottom:929.760056pt;}
.yb8{bottom:930.400055pt;}
.y1f0{bottom:933.920060pt;}
.y8e{bottom:938.400055pt;}
.y45{bottom:938.720063pt;}
.y1b9{bottom:940.800064pt;}
.y30{bottom:941.760056pt;}
.y5b{bottom:944.960053pt;}
.y1ed{bottom:946.400055pt;}
.y1ef{bottom:946.560059pt;}
.y114{bottom:946.720063pt;}
.yb7{bottom:948.640061pt;}
.y15f{bottom:951.040055pt;}
.y43{bottom:954.080063pt;}
.y8d{bottom:956.640061pt;}
.y2f{bottom:956.960053pt;}
.y1b8{bottom:959.040055pt;}
.y5a{bottom:960.160065pt;}
.y1ec{bottom:962.080063pt;}
.y113{bottom:964.960053pt;}
.yb6{bottom:967.040055pt;}
.y41{bottom:969.280060pt;}
.y2e{bottom:972.320054pt;}
.y1ea{bottom:974.560059pt;}
.y1eb{bottom:974.720063pt;}
.y8c{bottom:975.040055pt;}
.y59{bottom:975.520066pt;}
.y15e{bottom:977.440064pt;}
.y3f{bottom:984.480057pt;}
.y223{bottom:985.280060pt;}
.y2d{bottom:987.360062pt;}
.y1e8{bottom:990.240052pt;}
.y58{bottom:990.720063pt;}
.y112{bottom:991.200058pt;}
.y8b{bottom:993.280060pt;}
.y3e{bottom:999.680062pt;}
.y2c{bottom:1002.720063pt;}
.y15d{bottom:1003.680062pt;}
.y57{bottom:1006.080056pt;}
.y8a{bottom:1011.520058pt;}
.y111{bottom:1014.560059pt;}
.y3c{bottom:1015.040062pt;}
.y2b{bottom:1017.920060pt;}
.y10e{bottom:1029.120057pt;}
.y56{bottom:1029.920060pt;}
.y3a{bottom:1030.240059pt;}
.y110{bottom:1030.880059pt;}
.y2a{bottom:1033.280060pt;}
.y28{bottom:1044.160057pt;}
.y38{bottom:1045.600060pt;}
.y1{bottom:1067.523278pt;}
.h35{height:13.759949pt;}
.h3a{height:13.759979pt;}
.h36{height:13.760009pt;}
.h33{height:13.760010pt;}
.h32{height:13.919983pt;}
.h39{height:13.920013pt;}
.h3b{height:13.920014pt;}
.h31{height:13.920044pt;}
.h37{height:14.079956pt;}
.h34{height:14.080017pt;}
.h23{height:14.080018pt;}
.h2d{height:14.880004pt;}
.h26{height:14.880005pt;}
.h2e{height:14.880066pt;}
.h2f{height:15.039917pt;}
.h2a{height:15.039978pt;}
.h3c{height:15.039993pt;}
.h3e{height:15.039994pt;}
.h30{height:15.040001pt;}
.h40{height:15.040008pt;}
.h3f{height:15.040009pt;}
.h25{height:15.040039pt;}
.h2b{height:15.040040pt;}
.h2c{height:15.199951pt;}
.h42{height:15.199981pt;}
.h43{height:15.199982pt;}
.h18{height:15.199997pt;}
.h3d{height:15.200004pt;}
.h1c{height:15.200012pt;}
.h41{height:15.359985pt;}
.h13{height:15.359993pt;}
.h17{height:15.360000pt;}
.h10{height:15.360001pt;}
.h16{height:15.519989pt;}
.h14{height:15.519996pt;}
.h12{height:15.519997pt;}
.h19{height:15.520004pt;}
.h1a{height:16.480011pt;}
.he{height:16.800004pt;}
.h21{height:16.959991pt;}
.h1e{height:18.079986pt;}
.h20{height:18.399994pt;}
.hc{height:28.839381pt;}
.h1d{height:33.153430pt;}
.h29{height:34.505680pt;}
.h11{height:36.689822pt;}
.h28{height:39.821420pt;}
.h27{height:39.844734pt;}
.h1b{height:40.124510pt;}
.h24{height:40.940523pt;}
.h4{height:42.011049pt;}
.hf{height:44.069069pt;}
.h9{height:44.094870pt;}
.h45{height:44.204759pt;}
.hd{height:44.327084pt;}
.h15{height:44.404489pt;}
.ha{height:45.307544pt;}
.hb{height:48.847799pt;}
.h1f{height:49.133793pt;}
.h5{height:50.218789pt;}
.h22{height:53.095448pt;}
.h8{height:53.126535pt;}
.h44{height:53.406312pt;}
.h2{height:53.427411pt;}
.h38{height:53.499571pt;}
.h3{height:54.587592pt;}
.h6{height:63.867301pt;}
.h7{height:67.820403pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.wb{width:0.159973pt;}
.w7{width:0.159974pt;}
.wad{width:0.159988pt;}
.w16{width:0.159989pt;}
.w68{width:0.159996pt;}
.w5{width:0.160003pt;}
.w3{width:0.160004pt;}
.w39{width:0.160034pt;}
.w34{width:0.160035pt;}
.w33{width:1.599976pt;}
.w1d{width:1.600006pt;}
.w4c{width:2.239990pt;}
.w47{width:2.239991pt;}
.w37{width:3.359985pt;}
.w53{width:3.519958pt;}
.wc5{width:3.520004pt;}
.wae{width:3.520005pt;}
.wc6{width:3.520019pt;}
.wd5{width:3.520020pt;}
.w2a{width:3.680024pt;}
.wb3{width:3.839966pt;}
.w11{width:4.160003pt;}
.w1a{width:4.160004pt;}
.w9{width:4.160018pt;}
.w31{width:4.160034pt;}
.w3a{width:4.640014pt;}
.w3c{width:4.640015pt;}
.wc{width:4.800003pt;}
.w29{width:4.959991pt;}
.w94{width:4.960022pt;}
.w2e{width:5.599975pt;}
.wd4{width:5.599976pt;}
.w19{width:5.600006pt;}
.w30{width:5.600036pt;}
.w18{width:5.759994pt;}
.w36{width:5.760010pt;}
.w2d{width:5.919983pt;}
.wb4{width:6.079956pt;}
.w22{width:6.080017pt;}
.w32{width:6.399964pt;}
.w1b{width:6.399994pt;}
.w15{width:6.400009pt;}
.w2c{width:6.400024pt;}
.wd{width:6.559998pt;}
.w23{width:7.039978pt;}
.w2f{width:9.760010pt;}
.w21{width:9.919999pt;}
.w91{width:10.719971pt;}
.w8c{width:10.720001pt;}
.wa0{width:11.039978pt;}
.w9e{width:11.359985pt;}
.w8b{width:11.360016pt;}
.w8e{width:11.519989pt;}
.w88{width:11.520020pt;}
.w89{width:11.679992pt;}
.w8a{width:11.679993pt;}
.w8d{width:11.680024pt;}
.w1c{width:12.800003pt;}
.w20{width:12.960022pt;}
.w1f{width:13.279999pt;}
.w6f{width:13.599991pt;}
.wa6{width:14.080017pt;}
.wb2{width:14.239990pt;}
.w92{width:14.400024pt;}
.w99{width:14.559997pt;}
.w95{width:14.720032pt;}
.w8f{width:16.639954pt;}
.w7f{width:17.279968pt;}
.w82{width:17.440002pt;}
.w85{width:17.599976pt;}
.w17{width:17.600006pt;}
.w93{width:18.400025pt;}
.w35{width:19.519959pt;}
.w86{width:19.520019pt;}
.w87{width:19.680024pt;}
.wa4{width:19.839966pt;}
.w90{width:20.159973pt;}
.w96{width:20.160004pt;}
.w83{width:20.320007pt;}
.w80{width:20.479980pt;}
.wba{width:20.640015pt;}
.w9b{width:21.120026pt;}
.w25{width:21.919983pt;}
.wc3{width:21.920013pt;}
.w1e{width:22.880005pt;}
.w26{width:23.039978pt;}
.w5d{width:23.200012pt;}
.w58{width:23.520019pt;}
.w28{width:24.000000pt;}
.we{width:25.439987pt;}
.wb5{width:25.759980pt;}
.wcc{width:25.759995pt;}
.w73{width:25.760009pt;}
.w3b{width:25.760010pt;}
.w76{width:26.079986pt;}
.w27{width:26.080017pt;}
.wc1{width:26.399994pt;}
.wb1{width:26.400024pt;}
.wb7{width:26.400025pt;}
.wa{width:26.559998pt;}
.wb6{width:26.719970pt;}
.w71{width:26.720001pt;}
.wa2{width:26.720002pt;}
.w78{width:26.720031pt;}
.wb0{width:26.720032pt;}
.w9d{width:27.200012pt;}
.w9c{width:27.200013pt;}
.w70{width:27.360001pt;}
.w14{width:27.520004pt;}
.w84{width:28.480011pt;}
.w81{width:28.640015pt;}
.w62{width:28.959961pt;}
.w7e{width:29.120026pt;}
.w6b{width:29.440003pt;}
.wb8{width:29.919998pt;}
.w67{width:29.919999pt;}
.w97{width:30.880005pt;}
.w63{width:31.359986pt;}
.w4d{width:31.520020pt;}
.w5a{width:32.000000pt;}
.w7d{width:32.159973pt;}
.wcf{width:33.760009pt;}
.w8{width:34.080001pt;}
.w9f{width:34.080017pt;}
.wbf{width:34.399994pt;}
.wbb{width:34.880005pt;}
.wa8{width:35.680024pt;}
.w61{width:37.760010pt;}
.wcd{width:39.839997pt;}
.w59{width:40.479981pt;}
.w7c{width:41.279968pt;}
.w48{width:41.440003pt;}
.w57{width:41.760009pt;}
.wa3{width:43.839997pt;}
.w2{width:44.000000pt;}
.wca{width:44.479996pt;}
.w7b{width:44.960022pt;}
.w52{width:45.119995pt;}
.w7a{width:45.759995pt;}
.wbd{width:45.760010pt;}
.w75{width:48.799988pt;}
.w10{width:48.959992pt;}
.w9a{width:49.280030pt;}
.wb9{width:49.440003pt;}
.wa5{width:49.919983pt;}
.w98{width:51.200013pt;}
.w5f{width:53.279999pt;}
.wc9{width:53.440002pt;}
.wf{width:54.239990pt;}
.wc2{width:54.720001pt;}
.w42{width:54.880005pt;}
.w43{width:55.199997pt;}
.w66{width:55.839965pt;}
.w65{width:56.160003pt;}
.wa7{width:56.800019pt;}
.w24{width:59.040009pt;}
.wcb{width:59.199997pt;}
.wac{width:60.000000pt;}
.w50{width:60.960022pt;}
.wbc{width:61.279999pt;}
.wc7{width:61.440003pt;}
.w4e{width:61.919999pt;}
.w51{width:64.000000pt;}
.w45{width:64.799958pt;}
.wd2{width:66.559998pt;}
.w3f{width:68.320008pt;}
.w6c{width:69.119995pt;}
.w79{width:69.919999pt;}
.w69{width:70.399978pt;}
.wd7{width:71.680023pt;}
.w64{width:72.959991pt;}
.wd0{width:75.199982pt;}
.wd3{width:75.839997pt;}
.w6e{width:76.000000pt;}
.wa1{width:76.640015pt;}
.w4{width:78.240005pt;}
.w41{width:80.960022pt;}
.wc0{width:81.119996pt;}
.w40{width:81.600006pt;}
.w4b{width:82.720032pt;}
.w77{width:83.040009pt;}
.wbe{width:83.199982pt;}
.w56{width:83.359985pt;}
.w5c{width:83.519989pt;}
.w54{width:85.119996pt;}
.w12{width:88.800019pt;}
.w72{width:88.959992pt;}
.w5e{width:89.919983pt;}
.w13{width:93.599991pt;}
.w6a{width:93.600006pt;}
.w4a{width:93.920013pt;}
.w3d{width:95.839966pt;}
.w46{width:98.720031pt;}
.waf{width:101.120011pt;}
.w74{width:101.279999pt;}
.wa9{width:101.760010pt;}
.wab{width:103.200013pt;}
.waa{width:107.680024pt;}
.w6d{width:120.960022pt;}
.wd8{width:129.920044pt;}
.w3e{width:132.640015pt;}
.wc8{width:135.200012pt;}
.wd1{width:145.440002pt;}
.wce{width:150.400025pt;}
.wd6{width:152.480042pt;}
.wc4{width:156.960022pt;}
.w4f{width:204.480011pt;}
.w60{width:210.400010pt;}
.w5b{width:212.480011pt;}
.w44{width:213.279984pt;}
.w55{width:220.640015pt;}
.w6{width:236.479981pt;}
.w49{width:247.200012pt;}
.w2b{width:304.160019pt;}
.w38{width:374.879989pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x38{left:1.600006pt;}
.x17{left:43.040001pt;}
.x15{left:77.440002pt;}
.x9{left:78.720001pt;}
.x50{left:84.639999pt;}
.x18{left:87.199997pt;}
.xc2{left:88.639999pt;}
.xb{left:90.879997pt;}
.xc{left:94.239998pt;}
.x8{left:102.559998pt;}
.x13{left:107.040001pt;}
.x90{left:114.400002pt;}
.x19{left:124.000000pt;}
.xa2{left:131.039993pt;}
.x11{left:144.960007pt;}
.x10{left:146.240005pt;}
.x1{left:151.837301pt;}
.x51{left:152.800003pt;}
.xa1{left:154.559998pt;}
.xa{left:158.240005pt;}
.x95{left:160.479996pt;}
.xc4{left:161.600006pt;}
.xb9{left:164.639999pt;}
.xcb{left:165.759995pt;}
.x65{left:183.679993pt;}
.x9f{left:186.240005pt;}
.x67{left:188.320007pt;}
.x7f{left:189.759995pt;}
.x5a{left:192.960007pt;}
.x75{left:196.639999pt;}
.x59{left:197.919998pt;}
.x66{left:199.039993pt;}
.x58{left:200.800003pt;}
.x89{left:202.240005pt;}
.x74{left:205.279999pt;}
.xc5{left:208.800003pt;}
.x8a{left:209.759995pt;}
.x91{left:212.960007pt;}
.x4f{left:216.479996pt;}
.x1a{left:219.360001pt;}
.xd1{left:221.759995pt;}
.x14{left:223.199997pt;}
.x96{left:226.240005pt;}
.x21{left:227.199997pt;}
.x2b{left:231.520004pt;}
.x22{left:233.919998pt;}
.x2a{left:235.199997pt;}
.xcc{left:237.279999pt;}
.x2c{left:238.399994pt;}
.x97{left:240.160004pt;}
.x3{left:241.122119pt;}
.x2f{left:243.679993pt;}
.x2d{left:244.800003pt;}
.x29{left:247.039993pt;}
.xc6{left:248.639999pt;}
.x30{left:250.399994pt;}
.x2e{left:251.360001pt;}
.x1e{left:253.759995pt;}
.x31{left:257.119995pt;}
.x1f{left:258.239990pt;}
.x23{left:260.320007pt;}
.xa3{left:263.359985pt;}
.x52{left:266.720001pt;}
.x16{left:268.480011pt;}
.x8e{left:270.559998pt;}
.xa0{left:272.799988pt;}
.xaa{left:275.200012pt;}
.x24{left:280.799988pt;}
.x5b{left:282.239990pt;}
.x92{left:283.679993pt;}
.x20{left:284.640015pt;}
.x32{left:286.880005pt;}
.x33{left:289.760010pt;}
.xa6{left:292.480011pt;}
.xb6{left:293.440002pt;}
.xae{left:294.559998pt;}
.xb3{left:296.320007pt;}
.x1b{left:297.279999pt;}
.xb4{left:299.200012pt;}
.x1c{left:300.320007pt;}
.xb1{left:302.880005pt;}
.x93{left:305.600006pt;}
.xd{left:308.000000pt;}
.x4{left:311.353269pt;}
.xb0{left:312.640015pt;}
.xaf{left:314.399994pt;}
.x28{left:319.679993pt;}
.x5{left:320.802921pt;}
.x25{left:332.799988pt;}
.xf{left:334.559998pt;}
.x26{left:336.959991pt;}
.xbe{left:338.239990pt;}
.x98{left:339.200012pt;}
.xb2{left:340.160004pt;}
.x34{left:342.079987pt;}
.x8f{left:344.320007pt;}
.x12{left:346.880005pt;}
.x53{left:348.160004pt;}
.xc7{left:351.519989pt;}
.xbc{left:355.040009pt;}
.xc8{left:358.880005pt;}
.xd5{left:362.239990pt;}
.x99{left:366.079987pt;}
.xb5{left:371.359985pt;}
.x35{left:376.000000pt;}
.xc3{left:389.119995pt;}
.x2{left:393.119995pt;}
.xe{left:397.119995pt;}
.x36{left:400.480011pt;}
.xd6{left:401.920013pt;}
.x37{left:405.279999pt;}
.xcd{left:409.440002pt;}
.x39{left:411.359985pt;}
.xd2{left:412.640015pt;}
.x4d{left:417.440002pt;}
.x94{left:420.320007pt;}
.x9a{left:421.760010pt;}
.x3a{left:422.880005pt;}
.x27{left:426.079987pt;}
.x6{left:438.875209pt;}
.xbf{left:441.920013pt;}
.xc9{left:444.959991pt;}
.x6b{left:445.920013pt;}
.x7{left:448.323445pt;}
.x5c{left:450.880005pt;}
.x69{left:455.359985pt;}
.x5d{left:458.079987pt;}
.x80{left:459.359985pt;}
.x84{left:461.440002pt;}
.x6d{left:462.399994pt;}
.x81{left:467.679993pt;}
.x54{left:468.799988pt;}
.x9b{left:470.720001pt;}
.x5f{left:472.320007pt;}
.x76{left:474.079987pt;}
.xce{left:475.679993pt;}
.x68{left:478.880005pt;}
.x6c{left:480.160004pt;}
.x60{left:481.920013pt;}
.x77{left:483.679993pt;}
.x5e{left:485.920013pt;}
.x85{left:489.279999pt;}
.x6a{left:491.040009pt;}
.x8b{left:495.200012pt;}
.xc1{left:496.480011pt;}
.xcf{left:497.440002pt;}
.xca{left:503.839996pt;}
.x3b{left:526.880005pt;}
.x3c{left:533.440002pt;}
.x1d{left:537.440002pt;}
.xa4{left:540.960022pt;}
.x3d{left:542.880005pt;}
.x78{left:544.960022pt;}
.x61{left:546.559998pt;}
.xd0{left:549.119995pt;}
.x55{left:550.080017pt;}
.x4e{left:551.679993pt;}
.xa7{left:552.960022pt;}
.x3e{left:555.679993pt;}
.x6e{left:556.640015pt;}
.xac{left:559.039978pt;}
.x9c{left:560.159973pt;}
.xbd{left:561.119995pt;}
.x3f{left:562.239990pt;}
.xd9{left:563.359985pt;}
.xad{left:564.960022pt;}
.x40{left:566.559998pt;}
.xab{left:567.840027pt;}
.xa8{left:570.880005pt;}
.x41{left:573.280029pt;}
.xb7{left:576.640015pt;}
.x42{left:580.000000pt;}
.x43{left:583.359985pt;}
.x44{left:586.400024pt;}
.xba{left:587.520020pt;}
.x6f{left:588.479980pt;}
.x88{left:590.400024pt;}
.x7e{left:593.760010pt;}
.x7d{left:596.159973pt;}
.x62{left:597.599976pt;}
.xd3{left:600.640015pt;}
.x48{left:603.039978pt;}
.x45{left:605.440002pt;}
.x49{left:606.719971pt;}
.x46{left:610.080017pt;}
.x4a{left:611.679993pt;}
.x47{left:614.400024pt;}
.x86{left:615.359985pt;}
.x87{left:618.400024pt;}
.x56{left:620.960022pt;}
.x73{left:626.559998pt;}
.x9d{left:630.559998pt;}
.x82{left:637.760010pt;}
.x4b{left:641.119995pt;}
.xd7{left:644.479980pt;}
.x4c{left:646.080017pt;}
.xc0{left:650.239990pt;}
.x79{left:652.799988pt;}
.xd4{left:654.239990pt;}
.x7a{left:655.840027pt;}
.x9e{left:657.440002pt;}
.x7b{left:658.880005pt;}
.x83{left:661.280029pt;}
.xb8{left:665.599976pt;}
.x8c{left:667.359985pt;}
.x8d{left:670.400024pt;}
.x70{left:671.520020pt;}
.x71{left:674.400024pt;}
.x57{left:676.159973pt;}
.x72{left:677.440002pt;}
.xa9{left:678.719971pt;}
.xbb{left:682.880005pt;}
.xa5{left:684.640015pt;}
.x63{left:696.479980pt;}
.xda{left:697.599976pt;}
.x64{left:699.520020pt;}
.x7c{left:704.960022pt;}
.xd8{left:708.960022pt;}
}




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