
    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_e874f49af8ea387f21201455.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_e21aaf4a55b63dd46e11a4a8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_22fd5187d6b59ab676a1fe36.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.739746;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_4b998e2e3591eefff6e9c2c5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.819824;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_d40c4575af86715ba85bf00e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.897949;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.012094px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-21.060786px;}
.ws1{word-spacing:-18.000676px;}
.ws2{word-spacing:-16.560675px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-1.474584px;}
._1{width:1.664782px;}
._9{width:3.661169px;}
._8{width:5.029220px;}
._11{width:6.036696px;}
._12{width:7.721446px;}
._e{width:8.990494px;}
._2{width:10.104005px;}
._c{width:11.641375px;}
._f{width:13.394753px;}
._d{width:15.373421px;}
._4{width:16.627843px;}
._3{width:19.133809px;}
._15{width:20.160757px;}
._10{width:21.275955px;}
._17{width:22.722197px;}
._16{width:23.919242px;}
._7{width:25.067825px;}
._6{width:26.267140px;}
._5{width:27.328683px;}
._a{width:28.862115px;}
._b{width:30.485832px;}
._1e{width:31.600965px;}
._18{width:32.845890px;}
._19{width:34.743836px;}
._13{width:36.650502px;}
._14{width:37.842202px;}
._1d{width:39.507200px;}
._1c{width:40.576618px;}
._20{width:41.954513px;}
._21{width:47.810358px;}
._1f{width:49.324103px;}
._1a{width:468.737606px;}
._1b{width:501.858850px;}
.fc4{color:transparent;}
.fc3{color:rgb(17,85,204);}
.fc2{color:rgb(17,17,17);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.241800px;}
.fs1{font-size:59.762250px;}
.fs3{font-size:66.242700px;}
.fs0{font-size:72.002705px;}
.fs2{font-size:84.243145px;}
.y0{bottom:0.000000px;}
.y35{bottom:2.879997px;}
.y31{bottom:2.879998px;}
.y3b{bottom:3.599980px;}
.y2f{bottom:3.600013px;}
.y33{bottom:3.600015px;}
.y175{bottom:3.959953px;}
.y112{bottom:3.959954px;}
.y9{bottom:3.959988px;}
.y186{bottom:3.960005px;}
.y10{bottom:3.960021px;}
.yc{bottom:3.960023px;}
.y20{bottom:4.319961px;}
.y1a{bottom:4.319962px;}
.y63{bottom:4.319996px;}
.y65{bottom:4.319997px;}
.y67{bottom:4.320012px;}
.y6c{bottom:4.320014px;}
.y14{bottom:4.320029px;}
.y16{bottom:4.320030px;}
.y27{bottom:4.320099px;}
.y2b{bottom:4.679988px;}
.y7{bottom:4.680003px;}
.y5{bottom:4.680004px;}
.y2{bottom:60.120072px;}
.y28{bottom:65.340088px;}
.y26{bottom:88.740005px;}
.y138{bottom:92.880066px;}
.y96{bottom:94.140060px;}
.y11a{bottom:94.320099px;}
.ye5{bottom:106.200028px;}
.y1b1{bottom:108.720016px;}
.y162{bottom:110.520127px;}
.y25{bottom:111.240074px;}
.ybe{bottom:113.220085px;}
.y95{bottom:116.460091px;}
.y137{bottom:124.020058px;}
.y119{bottom:125.280052px;}
.y24{bottom:133.560036px;}
.ye4{bottom:137.340088px;}
.y4a{bottom:137.880066px;}
.y94{bottom:138.780052px;}
.ybd{bottom:140.040047px;}
.y14e{bottom:141.660049px;}
.y9b{bottom:143.100083px;}
.yc5{bottom:144.360077px;}
.y10e{bottom:148.680039px;}
.y1b0{bottom:148.860077px;}
.y23{bottom:155.880066px;}
.y93{bottom:161.100083px;}
.y183{bottom:165.420043px;}
.y136{bottom:167.040047px;}
.ye3{bottom:168.300041px;}
.ybc{bottom:171.000068px;}
.y141{bottom:171.360077px;}
.y120{bottom:172.620072px;}
.yc3{bottom:175.320099px;}
.y22{bottom:178.200096px;}
.y106{bottom:179.640060px;}
.y92{bottom:183.420043px;}
.y17d{bottom:187.740074px;}
.y1af{bottom:188.820099px;}
.y135{bottom:198.000068px;}
.ye2{bottom:199.440033px;}
.y21{bottom:200.520058px;}
.y49{bottom:200.880066px;}
.ybb{bottom:202.140060px;}
.y161{bottom:203.760064px;}
.y60{bottom:204.840088px;}
.y91{bottom:205.740074px;}
.yba{bottom:206.460091px;}
.y1f{bottom:222.840088px;}
.y17c{bottom:223.920043px;}
.y9a{bottom:228.060036px;}
.y17b{bottom:228.240074px;}
.y90{bottom:228.420043px;}
.y1ae{bottom:228.960091px;}
.y134{bottom:229.140060px;}
.ye1{bottom:230.400055px;}
.y8f{bottom:232.380066px;}
.yb9{bottom:233.100083px;}
.y11f{bottom:234.720085px;}
.y105{bottom:237.420043px;}
.y104{bottom:241.740074px;}
.y1e{bottom:245.160049px;}
.y17a{bottom:246.240074px;}
.y1d{bottom:249.480079px;}
.y8e{bottom:250.560036px;}
.y133{bottom:260.100083px;}
.ye0{bottom:261.540047px;}
.yb8{bottom:264.240074px;}
.y124{bottom:265.860077px;}
.y1c{bottom:267.480079px;}
.y179{bottom:268.560036px;}
.y1ad{bottom:268.920043px;}
.y8d{bottom:272.880066px;}
.y103{bottom:276.300041px;}
.y1b{bottom:289.800041px;}
.y178{bottom:290.880066px;}
.y132{bottom:291.240074px;}
.y118{bottom:292.500068px;}
.y8c{bottom:295.200096px;}
.y144{bottom:295.560036px;}
.y123{bottom:296.820099px;}
.ydf{bottom:304.560036px;}
.y102{bottom:306.360077px;}
.yed{bottom:308.880066px;}
.y1ac{bottom:309.060036px;}
.y10a{bottom:310.320099px;}
.y19{bottom:312.120072px;}
.y177{bottom:313.200096px;}
.y18{bottom:316.440033px;}
.y8b{bottom:317.520058px;}
.y131{bottom:322.200096px;}
.y117{bottom:323.640060px;}
.yb7{bottom:326.340088px;}
.y14d{bottom:327.960091px;}
.yb6{bottom:330.660049px;}
.y17{bottom:334.440033px;}
.yde{bottom:335.520058px;}
.y8a{bottom:339.840088px;}
.y101{bottom:345.060036px;}
.y1a3{bottom:345.420043px;}
.y130{bottom:353.340088px;}
.y176{bottom:353.520058px;}
.y14c{bottom:354.600083px;}
.y15{bottom:356.940033px;}
.yb5{bottom:357.300041px;}
.y182{bottom:357.840088px;}
.yc2{bottom:361.620072px;}
.y89{bottom:362.160049px;}
.y99{bottom:366.480079px;}
.ydd{bottom:366.660049px;}
.ydc{bottom:370.980079px;}
.y174{bottom:376.200096px;}
.y13{bottom:379.260064px;}
.y181{bottom:380.160049px;}
.y1a2{bottom:381.240074px;}
.y12{bottom:383.580093px;}
.y88{bottom:384.480079px;}
.y1ab{bottom:385.560036px;}
.y14b{bottom:385.740074px;}
.y100{bottom:387.900055px;}
.y160{bottom:390.060036px;}
.y12f{bottom:393.120072px;}
.ydb{bottom:397.620072px;}
.y173{bottom:398.160049px;}
.y180{bottom:398.520058px;}
.yb4{bottom:400.320099px;}
.y122{bottom:401.940033px;}
.y17f{bottom:402.480079px;}
.y1aa{bottom:403.560036px;}
.y1a1{bottom:403.920043px;}
.yb3{bottom:404.640060px;}
.y87{bottom:406.800041px;}
.y1a9{bottom:407.880066px;}
.y86{bottom:411.120072px;}
.yff{bottom:414.540047px;}
.y14a{bottom:416.700096px;}
.y11{bottom:417.600083px;}
.y172{bottom:420.480079px;}
.y151{bottom:421.020058px;}
.y15f{bottom:424.620072px;}
.y12e{bottom:424.980079px;}
.y1a0{bottom:425.880066px;}
.yda{bottom:428.760064px;}
.y140{bottom:428.940033px;}
.y85{bottom:429.120072px;}
.y1b4{bottom:430.200096px;}
.yb2{bottom:431.460091px;}
.y121{bottom:433.080093px;}
.y171{bottom:442.800041px;}
.yfe{bottom:445.680039px;}
.y48{bottom:448.740074px;}
.y84{bottom:451.440033px;}
.y15e{bottom:454.500068px;}
.y9f{bottom:455.760064px;}
.y166{bottom:458.460091px;}
.yd9{bottom:459.720085px;}
.yb1{bottom:462.420043px;}
.ye7{bottom:464.040047px;}
.y12d{bottom:465.120072px;}
.y19f{bottom:466.200096px;}
.y19e{bottom:470.520058px;}
.y83{bottom:473.760064px;}
.yf{bottom:476.280052px;}
.yfd{bottom:476.640060px;}
.ye{bottom:480.240074px;}
.y170{bottom:483.120072px;}
.y16f{bottom:487.440033px;}
.y19d{bottom:488.520058px;}
.y116{bottom:490.860077px;}
.y19c{bottom:492.840088px;}
.y15d{bottom:493.200096px;}
.yb0{bottom:493.560036px;}
.y11e{bottom:495.180039px;}
.y82{bottom:496.260064px;}
.yd8{bottom:498.240074px;}
.y13f{bottom:499.500068px;}
.y16e{bottom:505.620072px;}
.yfc{bottom:507.780052px;}
.y19b{bottom:510.840088px;}
.y10d{bottom:512.100083px;}
.y5f{bottom:514.080093px;}
.y1b3{bottom:515.160049px;}
.y81{bottom:518.580093px;}
.y115{bottom:521.820099px;}
.y9e{bottom:522.900055px;}
.yaf{bottom:524.520058px;}
.y16d{bottom:527.940033px;}
.y15c{bottom:531.720085px;}
.y16c{bottom:532.260064px;}
.yd7{bottom:532.620072px;}
.y165{bottom:536.040047px;}
.y12c{bottom:539.100083px;}
.y80{bottom:540.900055px;}
.y47{bottom:542.520058px;}
.y12b{bottom:543.420043px;}
.y7f{bottom:545.220085px;}
.y5e{bottom:545.400055px;}
.y16b{bottom:550.260064px;}
.y17e{bottom:550.620072px;}
.yfb{bottom:550.800041px;}
.y114{bottom:552.960091px;}
.y16a{bottom:554.580093px;}
.y109{bottom:555.120072px;}
.y19a{bottom:555.480079px;}
.yae{bottom:555.660049px;}
.y46{bottom:556.380066px;}
.y154{bottom:557.280052px;}
.y5d{bottom:559.980079px;}
.y15b{bottom:562.860077px;}
.y15a{bottom:567.180039px;}
.yd6{bottom:567.360077px;}
.y169{bottom:572.580093px;}
.y199{bottom:573.480079px;}
.y45{bottom:575.280052px;}
.y168{bottom:576.900055px;}
.y1b2{bottom:577.800041px;}
.y5c{bottom:578.160049px;}
.y7e{bottom:579.420043px;}
.yfa{bottom:581.760064px;}
.y13e{bottom:583.380066px;}
.y149{bottom:583.920043px;}
.yad{bottom:586.620072px;}
.y143{bottom:587.700096px;}
.y44{bottom:589.140060px;}
.y113{bottom:591.480079px;}
.y5b{bottom:592.740074px;}
.y159{bottom:593.820099px;}
.y1a8{bottom:595.800041px;}
.y198{bottom:596.160049px;}
.yd5{bottom:605.880066px;}
.y43{bottom:608.220085px;}
.yec{bottom:610.200096px;}
.y5a{bottom:611.100083px;}
.yf9{bottom:612.900055px;}
.y7d{bottom:613.980079px;}
.y12a{bottom:614.340088px;}
.y148{bottom:615.060036px;}
.yac{bottom:617.760064px;}
.y197{bottom:618.120072px;}
.y13d{bottom:618.660049px;}
.y111{bottom:621.720085px;}
.y42{bottom:621.900055px;}
.y196{bottom:622.440033px;}
.y158{bottom:624.960091px;}
.y59{bottom:625.500068px;}
.y11d{bottom:625.680039px;}
.yd4{bottom:636.840088px;}
.y41{bottom:640.980079px;}
.y58{bottom:643.860077px;}
.y7c{bottom:648.360077px;}
.yab{bottom:648.720085px;}
.y147{bottom:653.580093px;}
.y40{bottom:654.660049px;}
.y157{bottom:655.920043px;}
.y57{bottom:658.260064px;}
.y13c{bottom:658.620072px;}
.y110{bottom:660.420043px;}
.y142{bottom:662.940033px;}
.y7b{bottom:666.180039px;}
.yd3{bottom:667.980079px;}
.y7a{bottom:670.500068px;}
.y3f{bottom:673.740074px;}
.yf8{bottom:675.000068px;}
.y56{bottom:676.620072px;}
.yaa{bottom:679.860077px;}
.y195{bottom:680.940033px;}
.y146{bottom:683.820099px;}
.yc1{bottom:684.180039px;}
.y1a7{bottom:685.260064px;}
.y156{bottom:687.060070px;}
.y3e{bottom:687.420078px;}
.y153{bottom:687.780052px;}
.y129{bottom:689.580059px;}
.y55{bottom:691.020058px;}
.y13b{bottom:693.900055px;}
.yd2{bottom:698.940067px;}
.y11c{bottom:703.260064px;}
.y79{bottom:705.060070px;}
.y3d{bottom:706.500068px;}
.y194{bottom:707.580059px;}
.y3c{bottom:709.380066px;}
.ya9{bottom:710.820065px;}
.yf7{bottom:718.020058px;}
.y3a{bottom:720.180073px;}
.y108{bottom:722.340054px;}
.y145{bottom:722.520058px;}
.y54{bottom:723.780052px;}
.y193{bottom:725.580059px;}
.y1a6{bottom:729.900055px;}
.yd1{bottom:730.080059px;}
.y128{bottom:733.860077px;}
.y13a{bottom:738.180073px;}
.y39{bottom:739.260064px;}
.y78{bottom:739.440067px;}
.ya8{bottom:741.960056px;}
.y53{bottom:742.140060px;}
.yc0{bottom:746.280052px;}
.y192{bottom:747.900055px;}
.yf6{bottom:749.160049px;}
.y38{bottom:752.940067px;}
.y164{bottom:753.480079px;}
.y52{bottom:756.540081px;}
.y77{bottom:757.260064px;}
.yd0{bottom:761.040081px;}
.y150{bottom:765.360077px;}
.y37{bottom:772.020058px;}
.y51{bottom:774.900055px;}
.y76{bottom:779.580059px;}
.yf5{bottom:780.120072px;}
.ya7{bottom:780.300076px;}
.y127{bottom:780.840054px;}
.y75{bottom:783.900055px;}
.y163{bottom:784.440067px;}
.y36{bottom:785.700061px;}
.y191{bottom:788.220051px;}
.y50{bottom:789.300076px;}
.ycf{bottom:792.180073px;}
.y190{bottom:792.540081px;}
.yeb{bottom:796.500068px;}
.y74{bottom:801.900055px;}
.y34{bottom:804.780052px;}
.y4f{bottom:807.660049px;}
.y18f{bottom:810.540081px;}
.yf4{bottom:811.260064px;}
.ya6{bottom:814.680073px;}
.yf3{bottom:815.580059px;}
.y32{bottom:818.460056px;}
.y126{bottom:819.900055px;}
.y4e{bottom:822.060070px;}
.yce{bottom:823.140060px;}
.y73{bottom:824.220051px;}
.y152{bottom:827.460056px;}
.y18e{bottom:837.180073px;}
.y30{bottom:837.540081px;}
.y4d{bottom:840.420078px;}
.y72{bottom:846.540081px;}
.ya5{bottom:849.420078px;}
.y2e{bottom:851.220051px;}
.ycd{bottom:854.280052px;}
.y2d{bottom:854.820065px;}
.y18d{bottom:855.180073px;}
.yea{bottom:858.600083px;}
.y125{bottom:858.780052px;}
.y1a5{bottom:859.500068px;}
.y71{bottom:868.860077px;}
.y98{bottom:869.220051px;}
.y9d{bottom:873.180073px;}
.y18c{bottom:877.500068px;}
.ya4{bottom:879.480079px;}
.ya3{bottom:883.800076px;}
.yf2{bottom:885.240074px;}
.yd{bottom:887.400055px;}
.y10f{bottom:889.560070px;}
.y70{bottom:891.180073px;}
.ycc{bottom:897.300076px;}
.ye9{bottom:901.620072px;}
.y6f{bottom:913.500068px;}
.yf1{bottom:916.380066px;}
.y9c{bottom:917.820065px;}
.ya2{bottom:918.000068px;}
.yb{bottom:921.960056px;}
.y18b{bottom:922.140060px;}
.y4c{bottom:925.920078px;}
.ycb{bottom:928.260064px;}
.y11b{bottom:932.580059px;}
.y6e{bottom:935.820065px;}
.y18a{bottom:940.320065px;}
.y189{bottom:944.640060px;}
.yf0{bottom:947.340054px;}
.y167{bottom:951.660049px;}
.y6d{bottom:958.320065px;}
.yca{bottom:959.400055px;}
.ya{bottom:962.100083px;}
.y188{bottom:962.640060px;}
.ye6{bottom:963.720051px;}
.y4b{bottom:966.060070px;}
.y1a4{bottom:966.960056px;}
.yef{bottom:978.480063px;}
.y6b{bottom:980.640060px;}
.y10c{bottom:982.800058px;}
.yc4{bottom:984.960074px;}
.y187{bottom:989.280069px;}
.yc9{bottom:990.360060px;}
.y8{bottom:993.060070px;}
.y14f{bottom:994.680073px;}
.y6a{bottom:1002.960074px;}
.y97{bottom:1007.280069px;}
.yee{bottom:1009.440067px;}
.y10b{bottom:1013.760064px;}
.yc8{bottom:1021.500068px;}
.y69{bottom:1025.280069px;}
.y139{bottom:1025.820065px;}
.ya1{bottom:1029.600065px;}
.y2c{bottom:1037.160067px;}
.y155{bottom:1040.580059px;}
.y68{bottom:1047.600065px;}
.ybf{bottom:1051.920061px;}
.yc7{bottom:1052.460074px;}
.ye8{bottom:1056.780069px;}
.y2a{bottom:1062.900072px;}
.y29{bottom:1067.580059px;}
.y66{bottom:1069.920061px;}
.y185{bottom:1070.280069px;}
.y184{bottom:1074.240074px;}
.yc6{bottom:1083.600065px;}
.y6{bottom:1087.020058px;}
.y107{bottom:1087.920061px;}
.y64{bottom:1092.240074px;}
.ya0{bottom:1096.560070px;}
.y4{bottom:1111.140060px;}
.y62{bottom:1114.560070px;}
.y3{bottom:1115.820065px;}
.y61{bottom:1118.880066px;}
.y1{bottom:1228.860066px;}
.h16{height:13.679970px;}
.h10{height:13.679971px;}
.h13{height:13.680003px;}
.h15{height:13.680004px;}
.h17{height:13.680038px;}
.h14{height:18.719982px;}
.hf{height:18.720016px;}
.h12{height:18.720017px;}
.h1d{height:20.519955px;}
.h7{height:20.519989px;}
.hc{height:20.519990px;}
.h18{height:20.519998px;}
.h19{height:20.520006px;}
.h1a{height:20.520007px;}
.h1b{height:20.520022px;}
.h9{height:20.520024px;}
.hb{height:20.520057px;}
.hd{height:20.520127px;}
.he{height:23.939999px;}
.h5{height:23.940008px;}
.h6{height:23.940016px;}
.h11{height:43.248020px;}
.h1c{height:49.994065px;}
.h3{height:53.575923px;}
.ha{height:58.835679px;}
.h8{height:63.951621px;}
.h2{height:64.549300px;}
.h4{height:74.823380px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w148{width:0.179970px;}
.w10d{width:0.180004px;}
.w14{width:0.180038px;}
.wb3{width:0.539978px;}
.wdb{width:0.720017px;}
.wd{width:1.620003px;}
.w144{width:1.800007px;}
.wdd{width:1.980011px;}
.w40{width:2.699993px;}
.w17b{width:3.059966px;}
.w179{width:3.240006px;}
.w17e{width:3.419975px;}
.wfb{width:3.420009px;}
.wfc{width:3.599980px;}
.wbd{width:3.779984px;}
.w167{width:5.399987px;}
.w12f{width:5.759994px;}
.wee{width:6.299972px;}
.wa9{width:6.300042px;}
.w109{width:6.480011px;}
.w107{width:7.199958px;}
.w46{width:7.199993px;}
.w66{width:7.560036px;}
.we3{width:7.740006px;}
.wf6{width:9.180005px;}
.w6a{width:9.360008px;}
.w2b{width:9.720016px;}
.w15c{width:10.079990px;}
.wa0{width:11.159981px;}
.w9e{width:11.699958px;}
.w13d{width:12.060001px;}
.wdc{width:12.240006px;}
.w153{width:13.139991px;}
.wf8{width:13.319996px;}
.wa1{width:13.500000px;}
.w13c{width:13.680038px;}
.w3a{width:13.860008px;}
.wd4{width:14.220017px;}
.w97{width:16.379997px;}
.w81{width:16.740006px;}
.w120{width:17.099980px;}
.web{width:17.279983px;}
.wdf{width:18.180038px;}
.w8d{width:19.259994px;}
.w132{width:19.439999px;}
.we0{width:19.620002px;}
.w87{width:19.980011px;}
.w15f{width:20.159981px;}
.w34{width:20.340019px;}
.w126{width:20.519989px;}
.wb2{width:20.879998px;}
.w9b{width:21.599980px;}
.w127{width:23.040012px;}
.w5a{width:23.580025px;}
.w26{width:23.759994px;}
.w44{width:24.300007px;}
.w75{width:24.480011px;}
.w8e{width:25.199958px;}
.w11c{width:26.459988px;}
.w11f{width:27.539978px;}
.w139{width:27.539979px;}
.w7{width:27.540012px;}
.w10b{width:28.079991px;}
.w89{width:28.259994px;}
.wd7{width:28.440034px;}
.w6c{width:29.699958px;}
.wf5{width:30.060001px;}
.w140{width:30.599980px;}
.w12d{width:30.600014px;}
.w54{width:30.779984px;}
.w11a{width:31.139992px;}
.wfe{width:32.039978px;}
.w51{width:32.579990px;}
.w3f{width:33.299972px;}
.w3b{width:33.659981px;}
.w169{width:33.839984px;}
.we1{width:33.840019px;}
.wa5{width:34.019989px;}
.w15b{width:34.379998px;}
.w4b{width:34.920044px;}
.wef{width:35.460004px;}
.w84{width:36.360009px;}
.wf1{width:36.540012px;}
.w174{width:36.899986px;}
.w116{width:37.259994px;}
.w9d{width:39.600013px;}
.w3{width:41.400003px;}
.w125{width:41.760011px;}
.w73{width:42.300007px;}
.w35{width:43.199958px;}
.w118{width:44.279983px;}
.w145{width:44.459988px;}
.wcd{width:44.639991px;}
.w17a{width:45.360008px;}
.w27{width:45.719982px;}
.we7{width:45.899987px;}
.w17c{width:46.079956px;}
.w99{width:46.259994px;}
.w134{width:46.439999px;}
.w157{width:46.620003px;}
.w114{width:47.879997px;}
.we2{width:47.879998px;}
.wad{width:48.960022px;}
.w156{width:49.319962px;}
.w12a{width:49.320014px;}
.w17f{width:49.679970px;}
.wd0{width:49.860008px;}
.w47{width:50.399987px;}
.w165{width:50.759994px;}
.w42{width:51.300007px;}
.w2{width:51.480011px;}
.w15a{width:51.659998px;}
.w124{width:51.840019px;}
.w4d{width:52.199993px;}
.we6{width:52.200028px;}
.w146{width:52.379998px;}
.w62{width:53.279984px;}
.w123{width:53.819962px;}
.w6f{width:53.820014px;}
.we9{width:54.179970px;}
.w15e{width:54.180005px;}
.w67{width:56.159981px;}
.w10e{width:56.340002px;}
.w16b{width:57.599980px;}
.w1d{width:58.500000px;}
.w106{width:59.220016px;}
.w122{width:59.399987px;}
.w164{width:59.939999px;}
.w110{width:60.839984px;}
.wea{width:62.639991px;}
.w17d{width:62.819962px;}
.wde{width:63.180038px;}
.w13a{width:64.980011px;}
.w78{width:66.600014px;}
.w85{width:69.300007px;}
.w136{width:70.379997px;}
.w13f{width:70.379998px;}
.w7a{width:71.640026px;}
.w69{width:71.819962px;}
.w24{width:75.600013px;}
.w12{width:75.960023px;}
.wcf{width:76.500000px;}
.w77{width:76.860008px;}
.w5f{width:79.019989px;}
.wb6{width:79.199958px;}
.w129{width:80.100014px;}
.w49{width:82.439999px;}
.w43{width:82.800007px;}
.w3e{width:83.159981px;}
.wda{width:83.519989px;}
.we{width:83.879998px;}
.w141{width:84.780018px;}
.w159{width:85.680004px;}
.wa4{width:85.860008px;}
.wf3{width:86.400003px;}
.w21{width:87.120002px;}
.w39{width:87.480011px;}
.wc8{width:87.660016px;}
.w108{width:87.840019px;}
.wf4{width:88.379998px;}
.w76{width:88.740006px;}
.w1f{width:90.000000px;}
.wc0{width:91.439999px;}
.w2e{width:91.980011px;}
.w166{width:93.599980px;}
.w151{width:94.319962px;}
.w10c{width:94.320014px;}
.w152{width:96.120002px;}
.w8{width:96.120003px;}
.w10a{width:97.920010px;}
.w10f{width:98.819996px;}
.waf{width:98.819997px;}
.w90{width:99.360008px;}
.w9f{width:100.980011px;}
.w171{width:102.240006px;}
.w1a{width:102.960023px;}
.w150{width:104.220016px;}
.w12b{width:104.580008px;}
.w94{width:104.580025px;}
.wb4{width:105.480011px;}
.wb5{width:105.840019px;}
.w71{width:106.740006px;}
.w137{width:107.280018px;}
.w2d{width:107.819962px;}
.w143{width:108.000000px;}
.w100{width:108.180004px;}
.w161{width:108.360008px;}
.wa{width:108.720000px;}
.w7b{width:109.980011px;}
.w8b{width:110.159981px;}
.w128{width:110.340002px;}
.w176{width:110.699958px;}
.w104{width:110.879997px;}
.wed{width:111.779983px;}
.wba{width:114.300007px;}
.wf{width:114.480011px;}
.w7f{width:114.659981px;}
.w41{width:115.020007px;}
.w5c{width:115.560001px;}
.w155{width:117.000000px;}
.wd2{width:117.180004px;}
.w36{width:117.899987px;}
.w101{width:118.800007px;}
.w45{width:118.980011px;}
.wce{width:119.699958px;}
.w56{width:121.140026px;}
.wb8{width:122.039978px;}
.w2a{width:123.120002px;}
.w131{width:123.300007px;}
.w6{width:123.480011px;}
.w13b{width:124.560001px;}
.w16e{width:124.740006px;}
.w163{width:124.920009px;}
.w2c{width:125.460021px;}
.w113{width:125.640026px;}
.we4{width:126.719982px;}
.w37{width:129.059966px;}
.w158{width:129.600014px;}
.w172{width:130.139991px;}
.wb7{width:130.319962px;}
.w91{width:131.220000px;}
.we8{width:131.759994px;}
.w29{width:133.019989px;}
.w178{width:133.199958px;}
.w14f{width:133.379997px;}
.w117{width:133.379998px;}
.w14e{width:133.559966px;}
.w147{width:134.100013px;}
.wa7{width:134.459988px;}
.wd3{width:135.000000px;}
.w70{width:135.180004px;}
.wd8{width:135.539978px;}
.w5d{width:135.719982px;}
.wac{width:136.439999px;}
.wc2{width:136.800007px;}
.wa2{width:136.980011px;}
.w5{width:139.320014px;}
.w154{width:139.679970px;}
.w14b{width:140.759994px;}
.w72{width:141.120003px;}
.w74{width:141.480011px;}
.wa3{width:142.020007px;}
.wf2{width:142.379998px;}
.w149{width:142.740006px;}
.w64{width:143.280018px;}
.w96{width:143.460022px;}
.wc5{width:143.639992px;}
.wd9{width:144.540012px;}
.w33{width:144.899987px;}
.w18{width:145.080025px;}
.w14d{width:146.159981px;}
.wc6{width:146.160016px;}
.w6d{width:147.600013px;}
.w142{width:149.939999px;}
.w8c{width:150.120002px;}
.w170{width:151.019989px;}
.w7e{width:151.200028px;}
.w4{width:152.640009px;}
.w58{width:152.819997px;}
.w13{width:154.080025px;}
.w4f{width:154.259994px;}
.waa{width:155.879997px;}
.w11e{width:157.319996px;}
.w6e{width:157.860008px;}
.w6b{width:158.039978px;}
.wec{width:158.759994px;}
.w16f{width:159.120002px;}
.wb9{width:159.120003px;}
.w14c{width:160.379997px;}
.w177{width:161.639991px;}
.w173{width:162.539978px;}
.w31{width:163.439964px;}
.w1c{width:163.439999px;}
.w30{width:163.620002px;}
.wbb{width:163.620003px;}
.w8f{width:163.799972px;}
.w14a{width:164.159981px;}
.w175{width:165.059966px;}
.w7d{width:165.420009px;}
.wab{width:167.040012px;}
.w38{width:167.399987px;}
.w32{width:167.579956px;}
.w2f{width:167.939964px;}
.w3d{width:168.120002px;}
.w3c{width:168.299972px;}
.wbe{width:168.300007px;}
.w50{width:168.480011px;}
.w23{width:168.839984px;}
.w57{width:169.920009px;}
.wcb{width:172.799972px;}
.wcc{width:177.299972px;}
.w160{width:177.480011px;}
.w95{width:179.279983px;}
.w63{width:179.459988px;}
.w1e{width:180.180004px;}
.wca{width:181.799972px;}
.w59{width:183.599980px;}
.w20{width:185.580025px;}
.wc1{width:185.939999px;}
.wb{width:186.120003px;}
.w5e{width:187.020024px;}
.wf0{width:188.100006px;}
.w4c{width:189.900021px;}
.w10{width:192.420010px;}
.w16d{width:193.500000px;}
.w19{width:193.680004px;}
.w9{width:195.120003px;}
.wd5{width:196.560001px;}
.w112{width:197.099980px;}
.wd1{width:198.720008px;}
.w16{width:198.900021px;}
.w130{width:199.439999px;}
.w55{width:201.599980px;}
.wc7{width:201.959988px;}
.w16a{width:202.860009px;}
.w102{width:203.939999px;}
.w103{width:204.839984px;}
.w1b{width:206.280018px;}
.w7c{width:206.819997px;}
.w5b{width:207.180005px;}
.wff{width:208.079990px;}
.w80{width:208.080025px;}
.w162{width:208.439999px;}
.w16c{width:211.140026px;}
.w105{width:211.860009px;}
.w93{width:218.159981px;}
.wc9{width:219.420009px;}
.w17{width:223.020024px;}
.wae{width:223.920009px;}
.w60{width:230.939999px;}
.wbf{width:231.300007px;}
.w22{width:235.620003px;}
.w92{width:236.519989px;}
.w48{width:240.300007px;}
.w98{width:244.439999px;}
.w86{width:247.680004px;}
.w13e{width:247.860008px;}
.w8a{width:248.759994px;}
.w83{width:250.379997px;}
.w79{width:251.099980px;}
.w111{width:255.960023px;}
.wb0{width:257.580025px;}
.w11{width:259.200028px;}
.wd6{width:260.100014px;}
.wc4{width:262.080025px;}
.w68{width:266.580025px;}
.w61{width:269.460021px;}
.we5{width:270.539978px;}
.w4e{width:270.540012px;}
.w28{width:271.080025px;}
.wfa{width:271.439999px;}
.w119{width:272.520024px;}
.w115{width:274.860009px;}
.w135{width:276.300007px;}
.w9a{width:276.480011px;}
.wf7{width:278.280018px;}
.w4a{width:281.879997px;}
.wa6{width:282.780018px;}
.w15{width:288.900021px;}
.w52{width:290.160016px;}
.w11b{width:291.600013px;}
.w53{width:292.139992px;}
.w12c{width:292.319962px;}
.w138{width:295.200027px;}
.wc3{width:295.919975px;}
.w11d{width:296.280018px;}
.w133{width:297.540012px;}
.w25{width:298.980011px;}
.w9c{width:301.140026px;}
.wb1{width:301.860008px;}
.w88{width:302.759994px;}
.wf9{width:303.480011px;}
.w121{width:305.640026px;}
.w82{width:306.000000px;}
.w65{width:311.039978px;}
.w15d{width:312.660016px;}
.wa8{width:316.439964px;}
.w12e{width:316.980011px;}
.w168{width:317.340019px;}
.wbc{width:318.960021px;}
.wfd{width:319.140026px;}
.wc{width:322.740006px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x5a{left:-517.680014px;}
.x120{left:-510.660016px;}
.xed{left:-486.180004px;}
.xeb{left:-481.680004px;}
.x37{left:-475.200010px;}
.xbb{left:-463.680004px;}
.x38{left:-461.880015px;}
.xd9{left:-459.180004px;}
.xa6{left:-457.740006px;}
.xc3{left:-453.780018px;}
.x3a{left:-446.040012px;}
.x7f{left:-437.580008px;}
.x5b{left:-431.280018px;}
.x15c{left:-427.140009px;}
.xc2{left:-421.920010px;}
.x58{left:-418.680004px;}
.x142{left:-416.880015px;}
.xb1{left:-411.300007px;}
.xde{left:-408.420010px;}
.x81{left:-405.360009px;}
.x144{left:-378.900003px;}
.xa4{left:-376.380015px;}
.x34{left:-374.040012px;}
.x16d{left:-369.180004px;}
.x35{left:-363.960006px;}
.x16a{left:-359.100013px;}
.x171{left:-356.939999px;}
.x125{left:-352.620003px;}
.x13c{left:-350.640026px;}
.x85{left:-346.860009px;}
.xd4{left:-336.060001px;}
.x138{left:-329.040012px;}
.x143{left:-322.740006px;}
.x121{left:-319.140026px;}
.x170{left:-317.340019px;}
.x16c{left:-312.660016px;}
.xac{left:-306.000000px;}
.xb0{left:-302.759994px;}
.xc5{left:-301.140026px;}
.x157{left:-297.540012px;}
.x141{left:-296.280018px;}
.x140{left:-291.600013px;}
.x7e{left:-290.160016px;}
.x45{left:-288.900021px;}
.xd5{left:-282.780018px;}
.x11f{left:-278.280018px;}
.xc4{left:-276.480011px;}
.x13b{left:-274.860009px;}
.x13f{left:-272.520024px;}
.x5e{left:-271.080025px;}
.x8c{left:-266.580025px;}
.x41{left:-258.840019px;}
.x139{left:-255.960023px;}
.xb2{left:-248.759994px;}
.xaf{left:-247.680004px;}
.xc1{left:-244.439999px;}
.x56{left:-235.620003px;}
.x88{left:-230.939999px;}
.x48{left:-223.020024px;}
.x124{left:-211.860009px;}
.xab{left:-208.080025px;}
.x4e{left:-206.280018px;}
.x123{left:-203.939999px;}
.x173{left:-202.860009px;}
.x47{left:-198.900021px;}
.x2e{left:-194.940008px;}
.x4b{left:-193.680004px;}
.x40{left:-192.420010px;}
.x7a{left:-189.900021px;}
.x87{left:-187.020024px;}
.x30{left:-185.940008px;}
.x52{left:-180.180004px;}
.x7c{left:-168.480011px;}
.xd8{left:-167.040012px;}
.x50{left:-163.439999px;}
.xe2{left:-158.939999px;}
.x43{left:-154.080025px;}
.x14{left:-152.460004px;}
.xaa{left:-151.200028px;}
.xef{left:-146.160016px;}
.x4a{left:-145.080025px;}
.x8a{left:-143.280018px;}
.x97{left:-140.939999px;}
.x15{left:-139.140009px;}
.xce{left:-136.439999px;}
.x94{left:-135.000000px;}
.x13e{left:-133.379998px;}
.xb9{left:-131.040012px;}
.x163{left:-129.420010px;}
.x13a{left:-125.640026px;}
.x16{left:-123.300007px;}
.x83{left:-121.140026px;}
.x72{left:-118.800007px;}
.xff{left:-117.000000px;}
.x86{left:-115.560001px;}
.x3e{left:-114.480011px;}
.x152{left:-110.159998px;}
.x2f{left:-108.540012px;}
.x95{left:-106.560001px;}
.xbf{left:-104.580025px;}
.x4d{left:-102.960023px;}
.xb8{left:-99.180004px;}
.x12a{left:-97.740006px;}
.x2d{left:-95.939999px;}
.x134{left:-94.140009px;}
.xee{left:-91.439999px;}
.x53{left:-90.000000px;}
.xa1{left:-88.560001px;}
.xd3{left:-85.680004px;}
.x3c{left:-83.879998px;}
.x6d{left:-82.620003px;}
.x153{left:-79.920010px;}
.x42{left:-75.960023px;}
.xa8{left:-71.640026px;}
.x15a{left:-70.379998px;}
.xa5{left:-66.600014px;}
.x10d{left:-63.180038px;}
.x51{left:-58.500000px;}
.x136{left:-56.159998px;}
.x89{left:-53.279984px;}
.xf{left:-51.300007px;}
.xda{left:-48.960022px;}
.x111{left:-47.879998px;}
.x160{left:-46.439999px;}
.x10{left:-41.220000px;}
.xad{left:-36.360009px;}
.x79{left:-34.920044px;}
.x110{left:-33.840019px;}
.x80{left:-30.779984px;}
.x107{left:-28.440034px;}
.x2b{left:-27.360008px;}
.x5c{left:-23.759994px;}
.xdd{left:-20.879998px;}
.x10e{left:-18.180038px;}
.xc9{left:-13.319996px;}
.x10b{left:-12.240006px;}
.x8b{left:-7.560036px;}
.xd6{left:-6.300042px;}
.xec{left:-3.779984px;}
.x36{left:-1.620003px;}
.x0{left:0.000000px;}
.xf8{left:1.439998px;}
.xf4{left:124.019998px;}
.xf7{left:126.180005px;}
.x1{left:127.620002px;}
.xf6{left:131.040003px;}
.x115{left:134.640000px;}
.xc{left:136.620002px;}
.x14b{left:155.699993px;}
.xe1{left:159.120002px;}
.xe0{left:163.620002px;}
.x5{left:170.099997px;}
.x117{left:180.360008px;}
.x90{left:181.620002px;}
.x6{left:183.419992px;}
.xc7{left:185.759994px;}
.x8e{left:187.560001px;}
.xb5{left:191.520006px;}
.x15e{left:193.139992px;}
.x7{left:199.259994px;}
.x63{left:203.759994px;}
.xf5{left:205.560001px;}
.x60{left:207.719999px;}
.x147{left:212.400003px;}
.xb{left:214.020006px;}
.x8f{left:216.000000px;}
.x14a{left:218.159998px;}
.xb4{left:223.379998px;}
.x127{left:224.819996px;}
.xa{left:226.620002px;}
.x128{left:228.419992px;}
.x91{left:234.000000px;}
.xc8{left:236.879998px;}
.x61{left:239.939999px;}
.x148{left:242.639992px;}
.x2{left:244.259994px;}
.x129{left:266.400003px;}
.x8d{left:268.919992px;}
.x3{left:271.259994px;}
.x149{left:273.419992px;}
.x15d{left:276.120002px;}
.x8{left:277.199993px;}
.x4{left:281.340002px;}
.x116{left:286.199993px;}
.x114{left:287.280001px;}
.x15f{left:288.360008px;}
.x118{left:292.680005px;}
.x9{left:295.199993px;}
.x62{left:298.439999px;}
.x146{left:299.699993px;}
.x145{left:302.220017px;}
.xc6{left:309.240006px;}
.x126{left:316.259994px;}
.x5f{left:320.040012px;}
.xe{left:322.740006px;}
.x100{left:324.720017px;}
.x11c{left:326.160015px;}
.x165{left:328.139992px;}
.x64{left:329.939999px;}
.x119{left:331.920010px;}
.x14f{left:334.800007px;}
.x11b{left:336.060001px;}
.x9c{left:339.480011px;}
.xa0{left:342.720017px;}
.xba{left:344.339985px;}
.x14d{left:347.939999px;}
.x133{left:349.199993px;}
.xa2{left:351.000000px;}
.x132{left:353.879998px;}
.x6b{left:355.319996px;}
.x1f{left:356.579990px;}
.x12f{left:360.000000px;}
.xca{left:362.699993px;}
.x11a{left:367.199993px;}
.x32{left:368.459988px;}
.x12e{left:370.620002px;}
.x131{left:372.959988px;}
.x33{left:374.399987px;}
.x161{left:376.920010px;}
.x78{left:378.899987px;}
.x167{left:380.339985px;}
.x137{left:382.139992px;}
.x12b{left:383.579990px;}
.x1b{left:386.279983px;}
.x104{left:387.899987px;}
.x12c{left:389.519989px;}
.x9e{left:391.860008px;}
.x14e{left:393.120002px;}
.xa3{left:396.720017px;}
.x9f{left:397.800007px;}
.x92{left:399.600014px;}
.x11{left:401.040012px;}
.xfd{left:406.259994px;}
.x2c{left:409.860008px;}
.x73{left:414.540012px;}
.x21{left:416.339985px;}
.x22{left:422.459988px;}
.xfc{left:425.160015px;}
.x155{left:430.740006px;}
.x98{left:432.720017px;}
.x168{left:434.339985px;}
.x9b{left:437.399987px;}
.x26{left:439.199993px;}
.x11e{left:441.540012px;}
.x166{left:442.620002px;}
.x20{left:446.579990px;}
.x164{left:447.660015px;}
.x105{left:449.459988px;}
.x24{left:451.800007px;}
.x1a{left:453.060001px;}
.x69{left:455.579990px;}
.xcb{left:457.199993px;}
.xfb{left:458.279983px;}
.xd{left:459.360008px;}
.x29{left:465.300007px;}
.xe8{left:466.379998px;}
.x13{left:468.360008px;}
.x154{left:472.680005px;}
.x6a{left:477.000000px;}
.xcd{left:478.439999px;}
.x135{left:480.060001px;}
.x27{left:482.040012px;}
.x99{left:488.160015px;}
.x1d{left:491.399987px;}
.x6f{left:492.660015px;}
.x9a{left:494.279983px;}
.xe9{left:499.319996px;}
.x23{left:500.399987px;}
.x75{left:502.199993px;}
.x162{left:504.720017px;}
.x70{left:506.339985px;}
.xe5{left:508.680005px;}
.x130{left:512.100014px;}
.x169{left:516.240006px;}
.x12d{left:519.839985px;}
.x14c{left:522.180005px;}
.x6e{left:524.339985px;}
.x17{left:527.759994px;}
.x71{left:529.920010px;}
.x19{left:531.000000px;}
.x11d{left:537.300007px;}
.xb7{left:540.899987px;}
.x25{left:542.519989px;}
.xd0{left:546.660015px;}
.xe4{left:554.040012px;}
.x2a{left:555.480011px;}
.xea{left:557.819996px;}
.xb6{left:559.259994px;}
.x18{left:561.600014px;}
.x66{left:563.040012px;}
.x1c{left:569.519989px;}
.x150{left:570.600014px;}
.x96{left:573.839985px;}
.x151{left:575.100014px;}
.x93{left:578.879998px;}
.xd1{left:580.320030px;}
.xf9{left:582.840019px;}
.xe7{left:584.820030px;}
.x28{left:586.980011px;}
.x74{left:592.200027px;}
.x106{left:593.279983px;}
.x65{left:595.080025px;}
.xcf{left:596.519989px;}
.x103{left:597.600014px;}
.x67{left:604.620002px;}
.x9d{left:609.120002px;}
.x68{left:610.559967px;}
.x102{left:611.639992px;}
.x6c{left:614.700027px;}
.xfa{left:617.039978px;}
.xe6{left:618.659981px;}
.x31{left:621.720017px;}
.xd2{left:624.600014px;}
.x101{left:627.299973px;}
.x76{left:631.980011px;}
.xfe{left:633.240006px;}
.x77{left:637.919975px;}
.xcc{left:639.179970px;}
.xe3{left:641.700027px;}
.x12{left:643.860008px;}
.x1e{left:645.299973px;}
.x16f{left:648.720017px;}
.x113{left:651.779983px;}
.x7d{left:654.840019px;}
.xbd{left:657.179970px;}
.x57{left:659.340019px;}
.x10c{left:662.759994px;}
.xae{left:664.740006px;}
.x46{left:665.820030px;}
.xb3{left:670.679970px;}
.x82{left:675.179970px;}
.x59{left:679.139992px;}
.x16e{left:682.379998px;}
.xbc{left:685.080025px;}
.x49{left:688.679970px;}
.xf0{left:690.120002px;}
.x172{left:691.559967px;}
.xf3{left:695.340019px;}
.x13d{left:697.320030px;}
.x109{left:699.480011px;}
.x122{left:704.700027px;}
.x10a{left:708.120002px;}
.x7b{left:717.299973px;}
.xf2{left:721.980011px;}
.xdb{left:724.679970px;}
.x5d{left:728.639992px;}
.x54{left:732.600014px;}
.x3b{left:737.460023px;}
.xc0{left:746.460023px;}
.x16b{left:747.720017px;}
.x15b{left:749.700027px;}
.xd7{left:750.960023px;}
.x39{left:753.299973px;}
.xa7{left:755.639992px;}
.x10f{left:757.259994px;}
.x4c{left:763.379998px;}
.xf1{left:765.179970px;}
.xdf{left:767.519989px;}
.xbe{left:768.960023px;}
.x4f{left:774.539978px;}
.xdc{left:775.799973px;}
.x108{left:777.240006px;}
.x159{left:778.500000px;}
.x112{left:786.960023px;}
.x158{left:788.220017px;}
.x44{left:790.379998px;}
.x84{left:792.899987px;}
.xa9{left:795.600014px;}
.x55{left:798.480011px;}
.x156{left:799.740006px;}
.x3f{left:809.100014px;}
.x3d{left:813.419975px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.010750pt;}
.ws0{word-spacing:-18.720699pt;}
.ws1{word-spacing:-16.000601pt;}
.ws2{word-spacing:-14.720600pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-1.310741pt;}
._1{width:1.479806pt;}
._9{width:3.254372pt;}
._8{width:4.470418pt;}
._11{width:5.365952pt;}
._12{width:6.863508pt;}
._e{width:7.991550pt;}
._2{width:8.981337pt;}
._c{width:10.347889pt;}
._f{width:11.906447pt;}
._d{width:13.665263pt;}
._4{width:14.780305pt;}
._3{width:17.007830pt;}
._15{width:17.920673pt;}
._10{width:18.911960pt;}
._17{width:20.197508pt;}
._16{width:21.261548pt;}
._7{width:22.282511pt;}
._6{width:23.348569pt;}
._5{width:24.292162pt;}
._a{width:25.655214pt;}
._b{width:27.098518pt;}
._1e{width:28.089747pt;}
._18{width:29.196347pt;}
._19{width:30.883410pt;}
._13{width:32.578224pt;}
._14{width:33.637513pt;}
._1d{width:35.117511pt;}
._1c{width:36.068105pt;}
._20{width:37.292901pt;}
._21{width:42.498096pt;}
._1f{width:43.843647pt;}
._1a{width:416.655650pt;}
._1b{width:446.096756pt;}
.fs4{font-size:42.881600pt;}
.fs1{font-size:53.122000pt;}
.fs3{font-size:58.882400pt;}
.fs0{font-size:64.002404pt;}
.fs2{font-size:74.882796pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:2.559997pt;}
.y31{bottom:2.559998pt;}
.y3b{bottom:3.199982pt;}
.y2f{bottom:3.200012pt;}
.y33{bottom:3.200013pt;}
.y175{bottom:3.519958pt;}
.y112{bottom:3.519959pt;}
.y9{bottom:3.519989pt;}
.y186{bottom:3.520004pt;}
.y10{bottom:3.520019pt;}
.yc{bottom:3.520020pt;}
.y20{bottom:3.839965pt;}
.y1a{bottom:3.839966pt;}
.y63{bottom:3.839996pt;}
.y65{bottom:3.839997pt;}
.y67{bottom:3.840011pt;}
.y6c{bottom:3.840012pt;}
.y14{bottom:3.840026pt;}
.y16{bottom:3.840027pt;}
.y27{bottom:3.840088pt;}
.y2b{bottom:4.159989pt;}
.y7{bottom:4.160003pt;}
.y5{bottom:4.160004pt;}
.y2{bottom:53.440064pt;}
.y28{bottom:58.080079pt;}
.y26{bottom:78.880005pt;}
.y138{bottom:82.560059pt;}
.y96{bottom:83.680054pt;}
.y11a{bottom:83.840088pt;}
.ye5{bottom:94.400025pt;}
.y1b1{bottom:96.640015pt;}
.y162{bottom:98.240113pt;}
.y25{bottom:98.880066pt;}
.ybe{bottom:100.640076pt;}
.y95{bottom:103.520081pt;}
.y137{bottom:110.240052pt;}
.y119{bottom:111.360047pt;}
.y24{bottom:118.720032pt;}
.ye4{bottom:122.080079pt;}
.y4a{bottom:122.560059pt;}
.y94{bottom:123.360047pt;}
.ybd{bottom:124.480042pt;}
.y14e{bottom:125.920044pt;}
.y9b{bottom:127.200074pt;}
.yc5{bottom:128.320069pt;}
.y10e{bottom:132.160035pt;}
.y1b0{bottom:132.320069pt;}
.y23{bottom:138.560059pt;}
.y93{bottom:143.200074pt;}
.y183{bottom:147.040039pt;}
.y136{bottom:148.480042pt;}
.ye3{bottom:149.600037pt;}
.ybc{bottom:152.000061pt;}
.y141{bottom:152.320069pt;}
.y120{bottom:153.440064pt;}
.yc3{bottom:155.840088pt;}
.y22{bottom:158.400086pt;}
.y106{bottom:159.680054pt;}
.y92{bottom:163.040039pt;}
.y17d{bottom:166.880066pt;}
.y1af{bottom:167.840088pt;}
.y135{bottom:176.000061pt;}
.ye2{bottom:177.280030pt;}
.y21{bottom:178.240052pt;}
.y49{bottom:178.560059pt;}
.ybb{bottom:179.680054pt;}
.y161{bottom:181.120057pt;}
.y60{bottom:182.080079pt;}
.y91{bottom:182.880066pt;}
.yba{bottom:183.520081pt;}
.y1f{bottom:198.080079pt;}
.y17c{bottom:199.040039pt;}
.y9a{bottom:202.720032pt;}
.y17b{bottom:202.880066pt;}
.y90{bottom:203.040039pt;}
.y1ae{bottom:203.520081pt;}
.y134{bottom:203.680054pt;}
.ye1{bottom:204.800049pt;}
.y8f{bottom:206.560059pt;}
.yb9{bottom:207.200074pt;}
.y11f{bottom:208.640076pt;}
.y105{bottom:211.040039pt;}
.y104{bottom:214.880066pt;}
.y1e{bottom:217.920044pt;}
.y17a{bottom:218.880066pt;}
.y1d{bottom:221.760071pt;}
.y8e{bottom:222.720032pt;}
.y133{bottom:231.200074pt;}
.ye0{bottom:232.480042pt;}
.yb8{bottom:234.880066pt;}
.y124{bottom:236.320069pt;}
.y1c{bottom:237.760071pt;}
.y179{bottom:238.720032pt;}
.y1ad{bottom:239.040039pt;}
.y8d{bottom:242.560059pt;}
.y103{bottom:245.600037pt;}
.y1b{bottom:257.600037pt;}
.y178{bottom:258.560059pt;}
.y132{bottom:258.880066pt;}
.y118{bottom:260.000061pt;}
.y8c{bottom:262.400086pt;}
.y144{bottom:262.720032pt;}
.y123{bottom:263.840088pt;}
.ydf{bottom:270.720032pt;}
.y102{bottom:272.320069pt;}
.yed{bottom:274.560059pt;}
.y1ac{bottom:274.720032pt;}
.y10a{bottom:275.840088pt;}
.y19{bottom:277.440064pt;}
.y177{bottom:278.400086pt;}
.y18{bottom:281.280030pt;}
.y8b{bottom:282.240052pt;}
.y131{bottom:286.400086pt;}
.y117{bottom:287.680054pt;}
.yb7{bottom:290.080079pt;}
.y14d{bottom:291.520081pt;}
.yb6{bottom:293.920044pt;}
.y17{bottom:297.280030pt;}
.yde{bottom:298.240052pt;}
.y8a{bottom:302.080079pt;}
.y101{bottom:306.720032pt;}
.y1a3{bottom:307.040039pt;}
.y130{bottom:314.080079pt;}
.y176{bottom:314.240052pt;}
.y14c{bottom:315.200074pt;}
.y15{bottom:317.280030pt;}
.yb5{bottom:317.600037pt;}
.y182{bottom:318.080079pt;}
.yc2{bottom:321.440064pt;}
.y89{bottom:321.920044pt;}
.y99{bottom:325.760071pt;}
.ydd{bottom:325.920044pt;}
.ydc{bottom:329.760071pt;}
.y174{bottom:334.400086pt;}
.y13{bottom:337.120057pt;}
.y181{bottom:337.920044pt;}
.y1a2{bottom:338.880066pt;}
.y12{bottom:340.960083pt;}
.y88{bottom:341.760071pt;}
.y1ab{bottom:342.720032pt;}
.y14b{bottom:342.880066pt;}
.y100{bottom:344.800049pt;}
.y160{bottom:346.720032pt;}
.y12f{bottom:349.440064pt;}
.ydb{bottom:353.440064pt;}
.y173{bottom:353.920044pt;}
.y180{bottom:354.240052pt;}
.yb4{bottom:355.840088pt;}
.y122{bottom:357.280030pt;}
.y17f{bottom:357.760071pt;}
.y1aa{bottom:358.720032pt;}
.y1a1{bottom:359.040039pt;}
.yb3{bottom:359.680054pt;}
.y87{bottom:361.600037pt;}
.y1a9{bottom:362.560059pt;}
.y86{bottom:365.440064pt;}
.yff{bottom:368.480042pt;}
.y14a{bottom:370.400086pt;}
.y11{bottom:371.200074pt;}
.y172{bottom:373.760071pt;}
.y151{bottom:374.240052pt;}
.y15f{bottom:377.440064pt;}
.y12e{bottom:377.760071pt;}
.y1a0{bottom:378.560059pt;}
.yda{bottom:381.120057pt;}
.y140{bottom:381.280030pt;}
.y85{bottom:381.440064pt;}
.y1b4{bottom:382.400086pt;}
.yb2{bottom:383.520081pt;}
.y121{bottom:384.960083pt;}
.y171{bottom:393.600037pt;}
.yfe{bottom:396.160035pt;}
.y48{bottom:398.880066pt;}
.y84{bottom:401.280030pt;}
.y15e{bottom:404.000061pt;}
.y9f{bottom:405.120057pt;}
.y166{bottom:407.520081pt;}
.yd9{bottom:408.640076pt;}
.yb1{bottom:411.040039pt;}
.ye7{bottom:412.480042pt;}
.y12d{bottom:413.440064pt;}
.y19f{bottom:414.400086pt;}
.y19e{bottom:418.240052pt;}
.y83{bottom:421.120057pt;}
.yf{bottom:423.360047pt;}
.yfd{bottom:423.680054pt;}
.ye{bottom:426.880066pt;}
.y170{bottom:429.440064pt;}
.y16f{bottom:433.280030pt;}
.y19d{bottom:434.240052pt;}
.y116{bottom:436.320069pt;}
.y19c{bottom:438.080079pt;}
.y15d{bottom:438.400086pt;}
.yb0{bottom:438.720032pt;}
.y11e{bottom:440.160035pt;}
.y82{bottom:441.120057pt;}
.yd8{bottom:442.880066pt;}
.y13f{bottom:444.000061pt;}
.y16e{bottom:449.440064pt;}
.yfc{bottom:451.360047pt;}
.y19b{bottom:454.080079pt;}
.y10d{bottom:455.200074pt;}
.y5f{bottom:456.960083pt;}
.y1b3{bottom:457.920044pt;}
.y81{bottom:460.960083pt;}
.y115{bottom:463.840088pt;}
.y9e{bottom:464.800049pt;}
.yaf{bottom:466.240052pt;}
.y16d{bottom:469.280030pt;}
.y15c{bottom:472.640076pt;}
.y16c{bottom:473.120057pt;}
.yd7{bottom:473.440064pt;}
.y165{bottom:476.480042pt;}
.y12c{bottom:479.200074pt;}
.y80{bottom:480.800049pt;}
.y47{bottom:482.240052pt;}
.y12b{bottom:483.040039pt;}
.y7f{bottom:484.640076pt;}
.y5e{bottom:484.800049pt;}
.y16b{bottom:489.120057pt;}
.y17e{bottom:489.440064pt;}
.yfb{bottom:489.600037pt;}
.y114{bottom:491.520081pt;}
.y16a{bottom:492.960083pt;}
.y109{bottom:493.440064pt;}
.y19a{bottom:493.760071pt;}
.yae{bottom:493.920044pt;}
.y46{bottom:494.560059pt;}
.y154{bottom:495.360047pt;}
.y5d{bottom:497.760071pt;}
.y15b{bottom:500.320069pt;}
.y15a{bottom:504.160035pt;}
.yd6{bottom:504.320069pt;}
.y169{bottom:508.960083pt;}
.y199{bottom:509.760071pt;}
.y45{bottom:511.360047pt;}
.y168{bottom:512.800049pt;}
.y1b2{bottom:513.600037pt;}
.y5c{bottom:513.920044pt;}
.y7e{bottom:515.040039pt;}
.yfa{bottom:517.120057pt;}
.y13e{bottom:518.560059pt;}
.y149{bottom:519.040039pt;}
.yad{bottom:521.440064pt;}
.y143{bottom:522.400086pt;}
.y44{bottom:523.680054pt;}
.y113{bottom:525.760071pt;}
.y5b{bottom:526.880066pt;}
.y159{bottom:527.840088pt;}
.y1a8{bottom:529.600037pt;}
.y198{bottom:529.920044pt;}
.yd5{bottom:538.560059pt;}
.y43{bottom:540.640076pt;}
.yec{bottom:542.400086pt;}
.y5a{bottom:543.200074pt;}
.yf9{bottom:544.800049pt;}
.y7d{bottom:545.760071pt;}
.y12a{bottom:546.080079pt;}
.y148{bottom:546.720032pt;}
.yac{bottom:549.120057pt;}
.y197{bottom:549.440064pt;}
.y13d{bottom:549.920044pt;}
.y111{bottom:552.640076pt;}
.y42{bottom:552.800049pt;}
.y196{bottom:553.280030pt;}
.y158{bottom:555.520081pt;}
.y59{bottom:556.000061pt;}
.y11d{bottom:556.160035pt;}
.yd4{bottom:566.080079pt;}
.y41{bottom:569.760071pt;}
.y58{bottom:572.320069pt;}
.y7c{bottom:576.320069pt;}
.yab{bottom:576.640076pt;}
.y147{bottom:580.960083pt;}
.y40{bottom:581.920044pt;}
.y157{bottom:583.040039pt;}
.y57{bottom:585.120057pt;}
.y13c{bottom:585.440064pt;}
.y110{bottom:587.040039pt;}
.y142{bottom:589.280030pt;}
.y7b{bottom:592.160035pt;}
.yd3{bottom:593.760071pt;}
.y7a{bottom:596.000061pt;}
.y3f{bottom:598.880066pt;}
.yf8{bottom:600.000061pt;}
.y56{bottom:601.440064pt;}
.yaa{bottom:604.320069pt;}
.y195{bottom:605.280030pt;}
.y146{bottom:607.840088pt;}
.yc1{bottom:608.160035pt;}
.y1a7{bottom:609.120057pt;}
.y156{bottom:610.720063pt;}
.y3e{bottom:611.040070pt;}
.y153{bottom:611.360047pt;}
.y129{bottom:612.960053pt;}
.y55{bottom:614.240052pt;}
.y13b{bottom:616.800049pt;}
.yd2{bottom:621.280060pt;}
.y11c{bottom:625.120057pt;}
.y79{bottom:626.720063pt;}
.y3d{bottom:628.000061pt;}
.y194{bottom:628.960053pt;}
.y3c{bottom:630.560059pt;}
.ya9{bottom:631.840058pt;}
.yf7{bottom:638.240052pt;}
.y3a{bottom:640.160065pt;}
.y108{bottom:642.080048pt;}
.y145{bottom:642.240052pt;}
.y54{bottom:643.360047pt;}
.y193{bottom:644.960053pt;}
.y1a6{bottom:648.800049pt;}
.yd1{bottom:648.960053pt;}
.y128{bottom:652.320069pt;}
.y13a{bottom:656.160065pt;}
.y39{bottom:657.120057pt;}
.y78{bottom:657.280060pt;}
.ya8{bottom:659.520050pt;}
.y53{bottom:659.680054pt;}
.yc0{bottom:663.360047pt;}
.y192{bottom:664.800049pt;}
.yf6{bottom:665.920044pt;}
.y38{bottom:669.280060pt;}
.y164{bottom:669.760071pt;}
.y52{bottom:672.480072pt;}
.y77{bottom:673.120057pt;}
.yd0{bottom:676.480072pt;}
.y150{bottom:680.320069pt;}
.y37{bottom:686.240052pt;}
.y51{bottom:688.800049pt;}
.y76{bottom:692.960053pt;}
.yf5{bottom:693.440064pt;}
.ya7{bottom:693.600068pt;}
.y127{bottom:694.080048pt;}
.y75{bottom:696.800049pt;}
.y163{bottom:697.280060pt;}
.y36{bottom:698.400055pt;}
.y191{bottom:700.640046pt;}
.y50{bottom:701.600068pt;}
.ycf{bottom:704.160065pt;}
.y190{bottom:704.480072pt;}
.yeb{bottom:708.000061pt;}
.y74{bottom:712.800049pt;}
.y34{bottom:715.360047pt;}
.y4f{bottom:717.920044pt;}
.y18f{bottom:720.480072pt;}
.yf4{bottom:721.120057pt;}
.ya6{bottom:724.160065pt;}
.yf3{bottom:724.960053pt;}
.y32{bottom:727.520050pt;}
.y126{bottom:728.800049pt;}
.y4e{bottom:730.720063pt;}
.yce{bottom:731.680054pt;}
.y73{bottom:732.640046pt;}
.y152{bottom:735.520050pt;}
.y18e{bottom:744.160065pt;}
.y30{bottom:744.480072pt;}
.y4d{bottom:747.040070pt;}
.y72{bottom:752.480072pt;}
.ya5{bottom:755.040070pt;}
.y2e{bottom:756.640046pt;}
.ycd{bottom:759.360047pt;}
.y2d{bottom:759.840058pt;}
.y18d{bottom:760.160065pt;}
.yea{bottom:763.200074pt;}
.y125{bottom:763.360047pt;}
.y1a5{bottom:764.000061pt;}
.y71{bottom:772.320069pt;}
.y98{bottom:772.640046pt;}
.y9d{bottom:776.160065pt;}
.y18c{bottom:780.000061pt;}
.ya4{bottom:781.760071pt;}
.ya3{bottom:785.600068pt;}
.yf2{bottom:786.880066pt;}
.yd{bottom:788.800049pt;}
.y10f{bottom:790.720063pt;}
.y70{bottom:792.160065pt;}
.ycc{bottom:797.600068pt;}
.ye9{bottom:801.440064pt;}
.y6f{bottom:812.000061pt;}
.yf1{bottom:814.560059pt;}
.y9c{bottom:815.840058pt;}
.ya2{bottom:816.000061pt;}
.yb{bottom:819.520050pt;}
.y18b{bottom:819.680054pt;}
.y4c{bottom:823.040070pt;}
.ycb{bottom:825.120057pt;}
.y11b{bottom:828.960053pt;}
.y6e{bottom:831.840058pt;}
.y18a{bottom:835.840058pt;}
.y189{bottom:839.680054pt;}
.yf0{bottom:842.080048pt;}
.y167{bottom:845.920044pt;}
.y6d{bottom:851.840058pt;}
.yca{bottom:852.800049pt;}
.ya{bottom:855.200074pt;}
.y188{bottom:855.680054pt;}
.ye6{bottom:856.640046pt;}
.y4b{bottom:858.720063pt;}
.y1a4{bottom:859.520050pt;}
.yef{bottom:869.760056pt;}
.y6b{bottom:871.680054pt;}
.y10c{bottom:873.600052pt;}
.yc4{bottom:875.520066pt;}
.y187{bottom:879.360062pt;}
.yc9{bottom:880.320054pt;}
.y8{bottom:882.720063pt;}
.y14f{bottom:884.160065pt;}
.y6a{bottom:891.520066pt;}
.y97{bottom:895.360062pt;}
.yee{bottom:897.280060pt;}
.y10b{bottom:901.120057pt;}
.yc8{bottom:908.000061pt;}
.y69{bottom:911.360062pt;}
.y139{bottom:911.840058pt;}
.ya1{bottom:915.200058pt;}
.y2c{bottom:921.920060pt;}
.y155{bottom:924.960053pt;}
.y68{bottom:931.200058pt;}
.ybf{bottom:935.040055pt;}
.yc7{bottom:935.520066pt;}
.ye8{bottom:939.360062pt;}
.y2a{bottom:944.800064pt;}
.y29{bottom:948.960053pt;}
.y66{bottom:951.040055pt;}
.y185{bottom:951.360062pt;}
.y184{bottom:954.880066pt;}
.yc6{bottom:963.200058pt;}
.y6{bottom:966.240052pt;}
.y107{bottom:967.040055pt;}
.y64{bottom:970.880066pt;}
.ya0{bottom:974.720063pt;}
.y4{bottom:987.680054pt;}
.y62{bottom:990.720063pt;}
.y3{bottom:991.840058pt;}
.y61{bottom:994.560059pt;}
.y1{bottom:1092.320059pt;}
.h16{height:12.159973pt;}
.h10{height:12.159974pt;}
.h13{height:12.160003pt;}
.h15{height:12.160004pt;}
.h17{height:12.160034pt;}
.h14{height:16.639984pt;}
.hf{height:16.640014pt;}
.h12{height:16.640015pt;}
.h1d{height:18.239960pt;}
.h7{height:18.239990pt;}
.hc{height:18.239991pt;}
.h18{height:18.239998pt;}
.h19{height:18.240005pt;}
.h1a{height:18.240006pt;}
.h1b{height:18.240020pt;}
.h9{height:18.240021pt;}
.hb{height:18.240051pt;}
.hd{height:18.240113pt;}
.he{height:21.279999pt;}
.h5{height:21.280007pt;}
.h6{height:21.280014pt;}
.h11{height:38.442684pt;}
.h1c{height:44.439169pt;}
.h3{height:47.623043pt;}
.ha{height:52.298382pt;}
.h8{height:56.845885pt;}
.h2{height:57.377155pt;}
.h4{height:66.509671pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w148{width:0.159973pt;}
.w10d{width:0.160004pt;}
.w14{width:0.160034pt;}
.wb3{width:0.479980pt;}
.wdb{width:0.640015pt;}
.wd{width:1.440003pt;}
.w144{width:1.600006pt;}
.wdd{width:1.760010pt;}
.w40{width:2.399994pt;}
.w17b{width:2.719970pt;}
.w179{width:2.880005pt;}
.w17e{width:3.039978pt;}
.wfb{width:3.040008pt;}
.wfc{width:3.199982pt;}
.wbd{width:3.359986pt;}
.w167{width:4.799988pt;}
.w12f{width:5.119995pt;}
.wee{width:5.599975pt;}
.wa9{width:5.600037pt;}
.w109{width:5.760010pt;}
.w107{width:6.399963pt;}
.w46{width:6.399994pt;}
.w66{width:6.720032pt;}
.we3{width:6.880005pt;}
.wf6{width:8.160004pt;}
.w6a{width:8.320007pt;}
.w2b{width:8.640014pt;}
.w15c{width:8.959991pt;}
.wa0{width:9.919983pt;}
.w9e{width:10.399963pt;}
.w13d{width:10.720001pt;}
.wdc{width:10.880005pt;}
.w153{width:11.679992pt;}
.wf8{width:11.839996pt;}
.wa1{width:12.000000pt;}
.w13c{width:12.160034pt;}
.w3a{width:12.320007pt;}
.wd4{width:12.640015pt;}
.w97{width:14.559997pt;}
.w81{width:14.880005pt;}
.w120{width:15.199982pt;}
.web{width:15.359985pt;}
.wdf{width:16.160034pt;}
.w8d{width:17.119995pt;}
.w132{width:17.279999pt;}
.we0{width:17.440002pt;}
.w87{width:17.760010pt;}
.w15f{width:17.919983pt;}
.w34{width:18.080017pt;}
.w126{width:18.239990pt;}
.wb2{width:18.559998pt;}
.w9b{width:19.199982pt;}
.w127{width:20.480011pt;}
.w5a{width:20.960022pt;}
.w26{width:21.119995pt;}
.w44{width:21.600006pt;}
.w75{width:21.760010pt;}
.w8e{width:22.399963pt;}
.w11c{width:23.519989pt;}
.w11f{width:24.479980pt;}
.w139{width:24.479981pt;}
.w7{width:24.480011pt;}
.w10b{width:24.959992pt;}
.w89{width:25.119995pt;}
.wd7{width:25.280030pt;}
.w6c{width:26.399963pt;}
.wf5{width:26.720001pt;}
.w140{width:27.199982pt;}
.w12d{width:27.200012pt;}
.w54{width:27.359986pt;}
.w11a{width:27.679993pt;}
.wfe{width:28.479980pt;}
.w51{width:28.959991pt;}
.w3f{width:29.599975pt;}
.w3b{width:29.919983pt;}
.w169{width:30.079986pt;}
.we1{width:30.080017pt;}
.wa5{width:30.239990pt;}
.w15b{width:30.559998pt;}
.w4b{width:31.040039pt;}
.wef{width:31.520004pt;}
.w84{width:32.320008pt;}
.wf1{width:32.480011pt;}
.w174{width:32.799988pt;}
.w116{width:33.119995pt;}
.w9d{width:35.200012pt;}
.w3{width:36.800003pt;}
.w125{width:37.120010pt;}
.w73{width:37.600006pt;}
.w35{width:38.399963pt;}
.w118{width:39.359985pt;}
.w145{width:39.519989pt;}
.wcd{width:39.679992pt;}
.w17a{width:40.320007pt;}
.w27{width:40.639984pt;}
.we7{width:40.799988pt;}
.w17c{width:40.959961pt;}
.w99{width:41.119995pt;}
.w134{width:41.279999pt;}
.w157{width:41.440003pt;}
.w114{width:42.559997pt;}
.we2{width:42.559998pt;}
.wad{width:43.520020pt;}
.w156{width:43.839966pt;}
.w12a{width:43.840012pt;}
.w17f{width:44.159973pt;}
.wd0{width:44.320007pt;}
.w47{width:44.799988pt;}
.w165{width:45.119995pt;}
.w42{width:45.600006pt;}
.w2{width:45.760010pt;}
.w15a{width:45.919998pt;}
.w124{width:46.080017pt;}
.w4d{width:46.399994pt;}
.we6{width:46.400025pt;}
.w146{width:46.559998pt;}
.w62{width:47.359986pt;}
.w123{width:47.839966pt;}
.w6f{width:47.840012pt;}
.we9{width:48.159973pt;}
.w15e{width:48.160004pt;}
.w67{width:49.919983pt;}
.w10e{width:50.080002pt;}
.w16b{width:51.199982pt;}
.w1d{width:52.000000pt;}
.w106{width:52.640014pt;}
.w122{width:52.799988pt;}
.w164{width:53.279999pt;}
.w110{width:54.079986pt;}
.wea{width:55.679992pt;}
.w17d{width:55.839966pt;}
.wde{width:56.160034pt;}
.w13a{width:57.760010pt;}
.w78{width:59.200012pt;}
.w85{width:61.600006pt;}
.w136{width:62.559997pt;}
.w13f{width:62.559998pt;}
.w7a{width:63.680023pt;}
.w69{width:63.839966pt;}
.w24{width:67.200012pt;}
.w12{width:67.520020pt;}
.wcf{width:68.000000pt;}
.w77{width:68.320007pt;}
.w5f{width:70.239990pt;}
.wb6{width:70.399963pt;}
.w129{width:71.200012pt;}
.w49{width:73.279999pt;}
.w43{width:73.600006pt;}
.w3e{width:73.919983pt;}
.wda{width:74.239990pt;}
.we{width:74.559998pt;}
.w141{width:75.360016pt;}
.w159{width:76.160004pt;}
.wa4{width:76.320007pt;}
.wf3{width:76.800003pt;}
.w21{width:77.440002pt;}
.w39{width:77.760010pt;}
.wc8{width:77.920014pt;}
.w108{width:78.080017pt;}
.wf4{width:78.559998pt;}
.w76{width:78.880005pt;}
.w1f{width:80.000000pt;}
.wc0{width:81.279999pt;}
.w2e{width:81.760010pt;}
.w166{width:83.199982pt;}
.w151{width:83.839966pt;}
.w10c{width:83.840012pt;}
.w152{width:85.440002pt;}
.w8{width:85.440003pt;}
.w10a{width:87.040009pt;}
.w10f{width:87.839996pt;}
.waf{width:87.839997pt;}
.w90{width:88.320007pt;}
.w9f{width:89.760010pt;}
.w171{width:90.880005pt;}
.w1a{width:91.520020pt;}
.w150{width:92.640014pt;}
.w12b{width:92.960007pt;}
.w94{width:92.960022pt;}
.wb4{width:93.760010pt;}
.wb5{width:94.080017pt;}
.w71{width:94.880005pt;}
.w137{width:95.360016pt;}
.w2d{width:95.839966pt;}
.w143{width:96.000000pt;}
.w100{width:96.160004pt;}
.w161{width:96.320007pt;}
.wa{width:96.640000pt;}
.w7b{width:97.760010pt;}
.w8b{width:97.919983pt;}
.w128{width:98.080002pt;}
.w176{width:98.399963pt;}
.w104{width:98.559997pt;}
.wed{width:99.359985pt;}
.wba{width:101.600006pt;}
.wf{width:101.760010pt;}
.w7f{width:101.919983pt;}
.w41{width:102.240006pt;}
.w5c{width:102.720001pt;}
.w155{width:104.000000pt;}
.wd2{width:104.160004pt;}
.w36{width:104.799988pt;}
.w101{width:105.600006pt;}
.w45{width:105.760010pt;}
.wce{width:106.399963pt;}
.w56{width:107.680023pt;}
.wb8{width:108.479980pt;}
.w2a{width:109.440002pt;}
.w131{width:109.600006pt;}
.w6{width:109.760010pt;}
.w13b{width:110.720001pt;}
.w16e{width:110.880005pt;}
.w163{width:111.040008pt;}
.w2c{width:111.520019pt;}
.w113{width:111.680023pt;}
.we4{width:112.639984pt;}
.w37{width:114.719970pt;}
.w158{width:115.200012pt;}
.w172{width:115.679992pt;}
.wb7{width:115.839966pt;}
.w91{width:116.640000pt;}
.we8{width:117.119995pt;}
.w29{width:118.239990pt;}
.w178{width:118.399963pt;}
.w14f{width:118.559997pt;}
.w117{width:118.559998pt;}
.w14e{width:118.719970pt;}
.w147{width:119.200012pt;}
.wa7{width:119.519989pt;}
.wd3{width:120.000000pt;}
.w70{width:120.160004pt;}
.wd8{width:120.479980pt;}
.w5d{width:120.639984pt;}
.wac{width:121.279999pt;}
.wc2{width:121.600006pt;}
.wa2{width:121.760010pt;}
.w5{width:123.840012pt;}
.w154{width:124.159973pt;}
.w14b{width:125.119995pt;}
.w72{width:125.440003pt;}
.w74{width:125.760010pt;}
.wa3{width:126.240006pt;}
.wf2{width:126.559998pt;}
.w149{width:126.880005pt;}
.w64{width:127.360016pt;}
.w96{width:127.520020pt;}
.wc5{width:127.679993pt;}
.wd9{width:128.480011pt;}
.w33{width:128.799988pt;}
.w18{width:128.960022pt;}
.w14d{width:129.919983pt;}
.wc6{width:129.920014pt;}
.w6d{width:131.200012pt;}
.w142{width:133.279999pt;}
.w8c{width:133.440002pt;}
.w170{width:134.239990pt;}
.w7e{width:134.400025pt;}
.w4{width:135.680008pt;}
.w58{width:135.839997pt;}
.w13{width:136.960022pt;}
.w4f{width:137.119995pt;}
.waa{width:138.559997pt;}
.w11e{width:139.839996pt;}
.w6e{width:140.320007pt;}
.w6b{width:140.479980pt;}
.wec{width:141.119995pt;}
.w16f{width:141.440002pt;}
.wb9{width:141.440003pt;}
.w14c{width:142.559997pt;}
.w177{width:143.679992pt;}
.w173{width:144.479980pt;}
.w31{width:145.279968pt;}
.w1c{width:145.279999pt;}
.w30{width:145.440002pt;}
.wbb{width:145.440003pt;}
.w8f{width:145.599975pt;}
.w14a{width:145.919983pt;}
.w175{width:146.719970pt;}
.w7d{width:147.040008pt;}
.wab{width:148.480011pt;}
.w38{width:148.799988pt;}
.w32{width:148.959961pt;}
.w2f{width:149.279968pt;}
.w3d{width:149.440002pt;}
.w3c{width:149.599975pt;}
.wbe{width:149.600006pt;}
.w50{width:149.760010pt;}
.w23{width:150.079986pt;}
.w57{width:151.040008pt;}
.wcb{width:153.599975pt;}
.wcc{width:157.599975pt;}
.w160{width:157.760010pt;}
.w95{width:159.359985pt;}
.w63{width:159.519989pt;}
.w1e{width:160.160004pt;}
.wca{width:161.599975pt;}
.w59{width:163.199982pt;}
.w20{width:164.960022pt;}
.wc1{width:165.279999pt;}
.wb{width:165.440003pt;}
.w5e{width:166.240021pt;}
.wf0{width:167.200005pt;}
.w4c{width:168.800019pt;}
.w10{width:171.040009pt;}
.w16d{width:172.000000pt;}
.w19{width:172.160004pt;}
.w9{width:173.440003pt;}
.wd5{width:174.720001pt;}
.w112{width:175.199982pt;}
.wd1{width:176.640007pt;}
.w16{width:176.800019pt;}
.w130{width:177.279999pt;}
.w55{width:179.199982pt;}
.wc7{width:179.519989pt;}
.w16a{width:180.320008pt;}
.w102{width:181.279999pt;}
.w103{width:182.079986pt;}
.w1b{width:183.360016pt;}
.w7c{width:183.839997pt;}
.w5b{width:184.160004pt;}
.wff{width:184.959991pt;}
.w80{width:184.960022pt;}
.w162{width:185.279999pt;}
.w16c{width:187.680023pt;}
.w105{width:188.320008pt;}
.w93{width:193.919983pt;}
.wc9{width:195.040008pt;}
.w17{width:198.240021pt;}
.wae{width:199.040008pt;}
.w60{width:205.279999pt;}
.wbf{width:205.600006pt;}
.w22{width:209.440003pt;}
.w92{width:210.239990pt;}
.w48{width:213.600006pt;}
.w98{width:217.279999pt;}
.w86{width:220.160004pt;}
.w13e{width:220.320007pt;}
.w8a{width:221.119995pt;}
.w83{width:222.559997pt;}
.w79{width:223.199982pt;}
.w111{width:227.520020pt;}
.wb0{width:228.960022pt;}
.w11{width:230.400025pt;}
.wd6{width:231.200012pt;}
.wc4{width:232.960022pt;}
.w68{width:236.960022pt;}
.w61{width:239.520019pt;}
.we5{width:240.479980pt;}
.w4e{width:240.480011pt;}
.w28{width:240.960022pt;}
.wfa{width:241.279999pt;}
.w119{width:242.240021pt;}
.w115{width:244.320008pt;}
.w135{width:245.600006pt;}
.w9a{width:245.760010pt;}
.wf7{width:247.360016pt;}
.w4a{width:250.559997pt;}
.wa6{width:251.360016pt;}
.w15{width:256.800019pt;}
.w52{width:257.920014pt;}
.w11b{width:259.200012pt;}
.w53{width:259.679993pt;}
.w12c{width:259.839966pt;}
.w138{width:262.400024pt;}
.wc3{width:263.039978pt;}
.w11d{width:263.360016pt;}
.w133{width:264.480011pt;}
.w25{width:265.760010pt;}
.w9c{width:267.680023pt;}
.wb1{width:268.320007pt;}
.w88{width:269.119995pt;}
.wf9{width:269.760010pt;}
.w121{width:271.680023pt;}
.w82{width:272.000000pt;}
.w65{width:276.479980pt;}
.w15d{width:277.920014pt;}
.wa8{width:281.279968pt;}
.w12e{width:281.760010pt;}
.w168{width:282.080017pt;}
.wbc{width:283.520019pt;}
.wfd{width:283.680023pt;}
.wc{width:286.880005pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x5a{left:-460.160012pt;}
.x120{left:-453.920014pt;}
.xed{left:-432.160004pt;}
.xeb{left:-428.160004pt;}
.x37{left:-422.400009pt;}
.xbb{left:-412.160004pt;}
.x38{left:-410.560013pt;}
.xd9{left:-408.160004pt;}
.xa6{left:-406.880005pt;}
.xc3{left:-403.360016pt;}
.x3a{left:-396.480011pt;}
.x7f{left:-388.960007pt;}
.x5b{left:-383.360016pt;}
.x15c{left:-379.680008pt;}
.xc2{left:-375.040009pt;}
.x58{left:-372.160004pt;}
.x142{left:-370.560013pt;}
.xb1{left:-365.600006pt;}
.xde{left:-363.040009pt;}
.x81{left:-360.320008pt;}
.x144{left:-336.800003pt;}
.xa4{left:-334.560013pt;}
.x34{left:-332.480011pt;}
.x16d{left:-328.160004pt;}
.x35{left:-323.520005pt;}
.x16a{left:-319.200012pt;}
.x171{left:-317.279999pt;}
.x125{left:-313.440003pt;}
.x13c{left:-311.680023pt;}
.x85{left:-308.320008pt;}
.xd4{left:-298.720001pt;}
.x138{left:-292.480011pt;}
.x143{left:-286.880005pt;}
.x121{left:-283.680023pt;}
.x170{left:-282.080017pt;}
.x16c{left:-277.920014pt;}
.xac{left:-272.000000pt;}
.xb0{left:-269.119995pt;}
.xc5{left:-267.680023pt;}
.x157{left:-264.480011pt;}
.x141{left:-263.360016pt;}
.x140{left:-259.200012pt;}
.x7e{left:-257.920014pt;}
.x45{left:-256.800019pt;}
.xd5{left:-251.360016pt;}
.x11f{left:-247.360016pt;}
.xc4{left:-245.760010pt;}
.x13b{left:-244.320008pt;}
.x13f{left:-242.240021pt;}
.x5e{left:-240.960022pt;}
.x8c{left:-236.960022pt;}
.x41{left:-230.080017pt;}
.x139{left:-227.520020pt;}
.xb2{left:-221.119995pt;}
.xaf{left:-220.160004pt;}
.xc1{left:-217.279999pt;}
.x56{left:-209.440003pt;}
.x88{left:-205.279999pt;}
.x48{left:-198.240021pt;}
.x124{left:-188.320008pt;}
.xab{left:-184.960022pt;}
.x4e{left:-183.360016pt;}
.x123{left:-181.279999pt;}
.x173{left:-180.320008pt;}
.x47{left:-176.800019pt;}
.x2e{left:-173.280007pt;}
.x4b{left:-172.160004pt;}
.x40{left:-171.040009pt;}
.x7a{left:-168.800019pt;}
.x87{left:-166.240021pt;}
.x30{left:-165.280007pt;}
.x52{left:-160.160004pt;}
.x7c{left:-149.760010pt;}
.xd8{left:-148.480011pt;}
.x50{left:-145.279999pt;}
.xe2{left:-141.279999pt;}
.x43{left:-136.960022pt;}
.x14{left:-135.520004pt;}
.xaa{left:-134.400025pt;}
.xef{left:-129.920014pt;}
.x4a{left:-128.960022pt;}
.x8a{left:-127.360016pt;}
.x97{left:-125.279999pt;}
.x15{left:-123.680008pt;}
.xce{left:-121.279999pt;}
.x94{left:-120.000000pt;}
.x13e{left:-118.559998pt;}
.xb9{left:-116.480011pt;}
.x163{left:-115.040009pt;}
.x13a{left:-111.680023pt;}
.x16{left:-109.600006pt;}
.x83{left:-107.680023pt;}
.x72{left:-105.600006pt;}
.xff{left:-104.000000pt;}
.x86{left:-102.720001pt;}
.x3e{left:-101.760010pt;}
.x152{left:-97.919998pt;}
.x2f{left:-96.480011pt;}
.x95{left:-94.720001pt;}
.xbf{left:-92.960022pt;}
.x4d{left:-91.520020pt;}
.xb8{left:-88.160004pt;}
.x12a{left:-86.880005pt;}
.x2d{left:-85.279999pt;}
.x134{left:-83.680008pt;}
.xee{left:-81.279999pt;}
.x53{left:-80.000000pt;}
.xa1{left:-78.720001pt;}
.xd3{left:-76.160004pt;}
.x3c{left:-74.559998pt;}
.x6d{left:-73.440003pt;}
.x153{left:-71.040009pt;}
.x42{left:-67.520020pt;}
.xa8{left:-63.680023pt;}
.x15a{left:-62.559998pt;}
.xa5{left:-59.200012pt;}
.x10d{left:-56.160034pt;}
.x51{left:-52.000000pt;}
.x136{left:-49.919998pt;}
.x89{left:-47.359986pt;}
.xf{left:-45.600006pt;}
.xda{left:-43.520020pt;}
.x111{left:-42.559998pt;}
.x160{left:-41.279999pt;}
.x10{left:-36.640000pt;}
.xad{left:-32.320008pt;}
.x79{left:-31.040039pt;}
.x110{left:-30.080017pt;}
.x80{left:-27.359986pt;}
.x107{left:-25.280030pt;}
.x2b{left:-24.320007pt;}
.x5c{left:-21.119995pt;}
.xdd{left:-18.559998pt;}
.x10e{left:-16.160034pt;}
.xc9{left:-11.839996pt;}
.x10b{left:-10.880005pt;}
.x8b{left:-6.720032pt;}
.xd6{left:-5.600037pt;}
.xec{left:-3.359986pt;}
.x36{left:-1.440003pt;}
.x0{left:0.000000pt;}
.xf8{left:1.279998pt;}
.xf4{left:110.239998pt;}
.xf7{left:112.160004pt;}
.x1{left:113.440002pt;}
.xf6{left:116.480003pt;}
.x115{left:119.680000pt;}
.xc{left:121.440002pt;}
.x14b{left:138.399994pt;}
.xe1{left:141.440002pt;}
.xe0{left:145.440002pt;}
.x5{left:151.199997pt;}
.x117{left:160.320007pt;}
.x90{left:161.440002pt;}
.x6{left:163.039993pt;}
.xc7{left:165.119995pt;}
.x8e{left:166.720001pt;}
.xb5{left:170.240005pt;}
.x15e{left:171.679993pt;}
.x7{left:177.119995pt;}
.x63{left:181.119995pt;}
.xf5{left:182.720001pt;}
.x60{left:184.639999pt;}
.x147{left:188.800003pt;}
.xb{left:190.240005pt;}
.x8f{left:192.000000pt;}
.x14a{left:193.919998pt;}
.xb4{left:198.559998pt;}
.x127{left:199.839996pt;}
.xa{left:201.440002pt;}
.x128{left:203.039993pt;}
.x91{left:208.000000pt;}
.xc8{left:210.559998pt;}
.x61{left:213.279999pt;}
.x148{left:215.679993pt;}
.x2{left:217.119995pt;}
.x129{left:236.800003pt;}
.x8d{left:239.039993pt;}
.x3{left:241.119995pt;}
.x149{left:243.039993pt;}
.x15d{left:245.440002pt;}
.x8{left:246.399994pt;}
.x4{left:250.080002pt;}
.x116{left:254.399994pt;}
.x114{left:255.360001pt;}
.x15f{left:256.320007pt;}
.x118{left:260.160004pt;}
.x9{left:262.399994pt;}
.x62{left:265.279999pt;}
.x146{left:266.399994pt;}
.x145{left:268.640015pt;}
.xc6{left:274.880005pt;}
.x126{left:281.119995pt;}
.x5f{left:284.480011pt;}
.xe{left:286.880005pt;}
.x100{left:288.640015pt;}
.x11c{left:289.920013pt;}
.x165{left:291.679993pt;}
.x64{left:293.279999pt;}
.x119{left:295.040009pt;}
.x14f{left:297.600006pt;}
.x11b{left:298.720001pt;}
.x9c{left:301.760010pt;}
.xa0{left:304.640015pt;}
.xba{left:306.079987pt;}
.x14d{left:309.279999pt;}
.x133{left:310.399994pt;}
.xa2{left:312.000000pt;}
.x132{left:314.559998pt;}
.x6b{left:315.839996pt;}
.x1f{left:316.959991pt;}
.x12f{left:320.000000pt;}
.xca{left:322.399994pt;}
.x11a{left:326.399994pt;}
.x32{left:327.519989pt;}
.x12e{left:329.440002pt;}
.x131{left:331.519989pt;}
.x33{left:332.799988pt;}
.x161{left:335.040009pt;}
.x78{left:336.799988pt;}
.x167{left:338.079987pt;}
.x137{left:339.679993pt;}
.x12b{left:340.959991pt;}
.x1b{left:343.359985pt;}
.x104{left:344.799988pt;}
.x12c{left:346.239990pt;}
.x9e{left:348.320007pt;}
.x14e{left:349.440002pt;}
.xa3{left:352.640015pt;}
.x9f{left:353.600006pt;}
.x92{left:355.200012pt;}
.x11{left:356.480011pt;}
.xfd{left:361.119995pt;}
.x2c{left:364.320007pt;}
.x73{left:368.480011pt;}
.x21{left:370.079987pt;}
.x22{left:375.519989pt;}
.xfc{left:377.920013pt;}
.x155{left:382.880005pt;}
.x98{left:384.640015pt;}
.x168{left:386.079987pt;}
.x9b{left:388.799988pt;}
.x26{left:390.399994pt;}
.x11e{left:392.480011pt;}
.x166{left:393.440002pt;}
.x20{left:396.959991pt;}
.x164{left:397.920013pt;}
.x105{left:399.519989pt;}
.x24{left:401.600006pt;}
.x1a{left:402.720001pt;}
.x69{left:404.959991pt;}
.xcb{left:406.399994pt;}
.xfb{left:407.359985pt;}
.xd{left:408.320007pt;}
.x29{left:413.600006pt;}
.xe8{left:414.559998pt;}
.x13{left:416.320007pt;}
.x154{left:420.160004pt;}
.x6a{left:424.000000pt;}
.xcd{left:425.279999pt;}
.x135{left:426.720001pt;}
.x27{left:428.480011pt;}
.x99{left:433.920013pt;}
.x1d{left:436.799988pt;}
.x6f{left:437.920013pt;}
.x9a{left:439.359985pt;}
.xe9{left:443.839996pt;}
.x23{left:444.799988pt;}
.x75{left:446.399994pt;}
.x162{left:448.640015pt;}
.x70{left:450.079987pt;}
.xe5{left:452.160004pt;}
.x130{left:455.200012pt;}
.x169{left:458.880005pt;}
.x12d{left:462.079987pt;}
.x14c{left:464.160004pt;}
.x6e{left:466.079987pt;}
.x17{left:469.119995pt;}
.x71{left:471.040009pt;}
.x19{left:472.000000pt;}
.x11d{left:477.600006pt;}
.xb7{left:480.799988pt;}
.x25{left:482.239990pt;}
.xd0{left:485.920013pt;}
.xe4{left:492.480011pt;}
.x2a{left:493.760010pt;}
.xea{left:495.839996pt;}
.xb6{left:497.119995pt;}
.x18{left:499.200012pt;}
.x66{left:500.480011pt;}
.x1c{left:506.239990pt;}
.x150{left:507.200012pt;}
.x96{left:510.079987pt;}
.x151{left:511.200012pt;}
.x93{left:514.559998pt;}
.xd1{left:515.840027pt;}
.xf9{left:518.080017pt;}
.xe7{left:519.840027pt;}
.x28{left:521.760010pt;}
.x74{left:526.400024pt;}
.x106{left:527.359985pt;}
.x65{left:528.960022pt;}
.xcf{left:530.239990pt;}
.x103{left:531.200012pt;}
.x67{left:537.440002pt;}
.x9d{left:541.440002pt;}
.x68{left:542.719971pt;}
.x102{left:543.679993pt;}
.x6c{left:546.400024pt;}
.xfa{left:548.479980pt;}
.xe6{left:549.919983pt;}
.x31{left:552.640015pt;}
.xd2{left:555.200012pt;}
.x101{left:557.599976pt;}
.x76{left:561.760010pt;}
.xfe{left:562.880005pt;}
.x77{left:567.039978pt;}
.xcc{left:568.159973pt;}
.xe3{left:570.400024pt;}
.x12{left:572.320007pt;}
.x1e{left:573.599976pt;}
.x16f{left:576.640015pt;}
.x113{left:579.359985pt;}
.x7d{left:582.080017pt;}
.xbd{left:584.159973pt;}
.x57{left:586.080017pt;}
.x10c{left:589.119995pt;}
.xae{left:590.880005pt;}
.x46{left:591.840027pt;}
.xb3{left:596.159973pt;}
.x82{left:600.159973pt;}
.x59{left:603.679993pt;}
.x16e{left:606.559998pt;}
.xbc{left:608.960022pt;}
.x49{left:612.159973pt;}
.xf0{left:613.440002pt;}
.x172{left:614.719971pt;}
.xf3{left:618.080017pt;}
.x13d{left:619.840027pt;}
.x109{left:621.760010pt;}
.x122{left:626.400024pt;}
.x10a{left:629.440002pt;}
.x7b{left:637.599976pt;}
.xf2{left:641.760010pt;}
.xdb{left:644.159973pt;}
.x5d{left:647.679993pt;}
.x54{left:651.200012pt;}
.x3b{left:655.520020pt;}
.xc0{left:663.520020pt;}
.x16b{left:664.640015pt;}
.x15b{left:666.400024pt;}
.xd7{left:667.520020pt;}
.x39{left:669.599976pt;}
.xa7{left:671.679993pt;}
.x10f{left:673.119995pt;}
.x4c{left:678.559998pt;}
.xf1{left:680.159973pt;}
.xdf{left:682.239990pt;}
.xbe{left:683.520020pt;}
.x4f{left:688.479980pt;}
.xdc{left:689.599976pt;}
.x108{left:690.880005pt;}
.x159{left:692.000000pt;}
.x112{left:699.520020pt;}
.x158{left:700.640015pt;}
.x44{left:702.559998pt;}
.x84{left:704.799988pt;}
.xa9{left:707.200012pt;}
.x55{left:709.760010pt;}
.x156{left:710.880005pt;}
.x3f{left:719.200012pt;}
.x3d{left:723.039978pt;}
}




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