
    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_01fb9b9c85eed9132f807ca9.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_68005522c1ab2cbfcf624d36.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_3e6cbb97b1a69b750ed5949b.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_fcbdb2221cfacf685fb5543c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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;}
.ls2{letter-spacing:0.719202px;}
.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:0.000000px;}
._0{margin-left:-20.639283px;}
._25{margin-left:-2.535723px;}
._1{margin-left:-1.403833px;}
._2{width:1.690095px;}
._6{width:3.243497px;}
._7{width:4.400322px;}
._8{width:5.832782px;}
._9{width:7.503188px;}
._a{width:8.892615px;}
._14{width:9.933279px;}
._15{width:11.624499px;}
._c{width:12.832233px;}
._b{width:14.054872px;}
._17{width:15.060158px;}
._5{width:16.083042px;}
._19{width:19.290818px;}
._d{width:20.342733px;}
._e{width:21.600811px;}
._12{width:23.309188px;}
._1e{width:24.405666px;}
._1f{width:25.671495px;}
._18{width:26.702034px;}
._1a{width:27.807950px;}
._3{width:28.813176px;}
._4{width:29.969218px;}
._20{width:31.146050px;}
._21{width:32.459377px;}
._13{width:34.024995px;}
._11{width:35.342359px;}
._16{width:36.865385px;}
._1d{width:38.186184px;}
._10{width:39.409668px;}
._f{width:41.244893px;}
._1c{width:45.434269px;}
._1b{width:46.835791px;}
._22{width:52.781357px;}
._23{width:54.002591px;}
._24{width:194.407302px;}
.fc5{color:rgb(60,64,67);}
.fc4{color:transparent;}
.fc3{color:rgb(17,85,204);}
.fc6{color:rgb(33,33,33);}
.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;}
.fs5{font-size:77.763154px;}
.fs2{font-size:84.243145px;}
.y0{bottom:0.000000px;}
.y37{bottom:2.879997px;}
.y2e{bottom:2.879998px;}
.y2c{bottom:2.880031px;}
.y32{bottom:3.599979px;}
.y3a{bottom:3.599980px;}
.y2a{bottom:3.600013px;}
.y44{bottom:3.600015px;}
.ye7{bottom:3.959953px;}
.y172{bottom:3.959954px;}
.y9{bottom:3.959988px;}
.y1ac{bottom:3.960005px;}
.yb{bottom:3.960021px;}
.y79{bottom:3.960023px;}
.y7e{bottom:4.319961px;}
.y14{bottom:4.319962px;}
.y62{bottom:4.319996px;}
.y64{bottom:4.319997px;}
.y66{bottom:4.320012px;}
.y19{bottom:4.320029px;}
.y12{bottom:4.320030px;}
.y25{bottom:4.320099px;}
.y7{bottom:4.680003px;}
.y5{bottom:4.680004px;}
.y2{bottom:60.120072px;}
.y26{bottom:65.340088px;}
.y129{bottom:85.140060px;}
.y161{bottom:85.500000px;}
.y93{bottom:90.720016px;}
.y24{bottom:96.480011px;}
.y5f{bottom:100.800110px;}
.y10d{bottom:104.220016px;}
.y17c{bottom:105.120072px;}
.y185{bottom:109.440033px;}
.y11c{bottom:116.100083px;}
.y160{bottom:116.640060px;}
.y23{bottom:118.800041px;}
.y11e{bottom:120.420043px;}
.y165{bottom:120.960091px;}
.yd4{bottom:121.500068px;}
.y92{bottom:121.860077px;}
.y141{bottom:123.120072px;}
.y144{bottom:127.440033px;}
.y17b{bottom:131.760064px;}
.y10c{bottom:135.180039px;}
.y14d{bottom:139.500068px;}
.y22{bottom:141.120072px;}
.yf5{bottom:147.060036px;}
.ybb{bottom:147.240074px;}
.y15f{bottom:147.600083px;}
.yd3{bottom:148.320099px;}
.yc5{bottom:151.560036px;}
.y140{bottom:154.260064px;}
.y1aa{bottom:154.800041px;}
.y91{bottom:160.560036px;}
.y128{bottom:163.440033px;}
.y21{bottom:163.620072px;}
.y10b{bottom:166.320099px;}
.y17a{bottom:167.760064px;}
.y112{bottom:170.640060px;}
.y179{bottom:172.080093px;}
.yf4{bottom:173.700096px;}
.yba{bottom:178.200096px;}
.yd2{bottom:179.280052px;}
.yb9{bottom:182.520058px;}
.y13f{bottom:185.220085px;}
.y20{bottom:185.940033px;}
.y1a9{bottom:189.180039px;}
.y142{bottom:189.540047px;}
.y178{bottom:190.080093px;}
.y49{bottom:190.260064px;}
.y15e{bottom:190.620072px;}
.y177{bottom:194.400055px;}
.y90{bottom:194.580093px;}
.y15d{bottom:194.940033px;}
.y10a{bottom:197.280052px;}
.y109{bottom:201.600083px;}
.yf3{bottom:204.840088px;}
.y1f{bottom:208.260064px;}
.yb8{bottom:209.340088px;}
.yd1{bottom:210.240074px;}
.y176{bottom:212.400055px;}
.y48{bottom:212.580093px;}
.y181{bottom:212.760064px;}
.y11d{bottom:213.660049px;}
.yd9{bottom:214.560036px;}
.y13e{bottom:216.360077px;}
.y180{bottom:216.720085px;}
.y127{bottom:221.220085px;}
.y15c{bottom:221.760064px;}
.y1a8{bottom:223.380066px;}
.y164{bottom:226.080093px;}
.y8f{bottom:229.320099px;}
.y1e{bottom:230.580093px;}
.y175{bottom:234.720085px;}
.yf2{bottom:235.800041px;}
.y17f{bottom:239.040047px;}
.yfc{bottom:240.120072px;}
.yb7{bottom:240.300041px;}
.yd0{bottom:241.380066px;}
.y110{bottom:244.620072px;}
.yd6{bottom:245.700096px;}
.y13d{bottom:247.320099px;}
.y126{bottom:252.360077px;}
.y15b{bottom:252.720085px;}
.y1d{bottom:252.900055px;}
.y5e{bottom:257.220085px;}
.y1a7{bottom:257.760064px;}
.y8e{bottom:259.380066px;}
.y8d{bottom:263.700096px;}
.yf1{bottom:266.940033px;}
.yb6{bottom:271.440033px;}
.ycf{bottom:272.340088px;}
.y174{bottom:275.040047px;}
.y1c{bottom:275.220085px;}
.yb5{bottom:275.760064px;}
.y13c{bottom:278.460091px;}
.y173{bottom:279.360077px;}
.y125{bottom:283.320099px;}
.y15a{bottom:283.860077px;}
.y159{bottom:288.180039px;}
.y1a6{bottom:292.140060px;}
.y1b{bottom:297.540047px;}
.y171{bottom:297.720085px;}
.y8c{bottom:297.900055px;}
.y170{bottom:301.680039px;}
.yb4{bottom:302.400055px;}
.yce{bottom:303.480079px;}
.y14c{bottom:306.720085px;}
.yd8{bottom:307.800041px;}
.y13b{bottom:309.420043px;}
.y13a{bottom:313.740074px;}
.y124{bottom:314.460091px;}
.y158{bottom:314.820099px;}
.y12a{bottom:318.780052px;}
.y16f{bottom:319.680039px;}
.y1a{bottom:319.860077px;}
.y47{bottom:324.180039px;}
.y1a5{bottom:326.520058px;}
.yf0{bottom:329.040047px;}
.yef{bottom:333.360077px;}
.yb3{bottom:333.540047px;}
.y8b{bottom:333.900055px;}
.ycd{bottom:334.440033px;}
.y98{bottom:338.220085px;}
.y18{bottom:342.180039px;}
.y123{bottom:345.420043px;}
.y157{bottom:345.960091px;}
.y139{bottom:352.440033px;}
.y8a{bottom:356.220085px;}
.y138{bottom:356.760064px;}
.yee{bottom:360.000068px;}
.y97{bottom:360.540047px;}
.y1a4{bottom:360.900055px;}
.y16e{bottom:364.320099px;}
.y17{bottom:364.500068px;}
.ycc{bottom:365.580093px;}
.y16{bottom:368.820099px;}
.ycb{bottom:369.900055px;}
.y122{bottom:376.560036px;}
.y156{bottom:376.920043px;}
.y89{bottom:378.540047px;}
.yb2{bottom:380.880066px;}
.y155{bottom:381.240074px;}
.y16d{bottom:382.320099px;}
.y137{bottom:383.580093px;}
.y16c{bottom:386.640060px;}
.y15{bottom:386.820099px;}
.yed{bottom:391.140060px;}
.y1a3{bottom:395.100083px;}
.y108{bottom:395.640060px;}
.y107{bottom:399.960091px;}
.y88{bottom:400.860077px;}
.y16b{bottom:404.820099px;}
.yb1{bottom:407.520058px;}
.y17e{bottom:409.140060px;}
.y13{bottom:409.320099px;}
.ybf{bottom:411.840088px;}
.y136{bottom:414.540047px;}
.y154{bottom:415.800041px;}
.yca{bottom:418.500068px;}
.yec{bottom:422.100083px;}
.y87{bottom:423.180039px;}
.yfb{bottom:426.420043px;}
.y106{bottom:426.600083px;}
.y1a2{bottom:429.480079px;}
.y105{bottom:430.560036px;}
.y11{bottom:431.640060px;}
.y10{bottom:435.960091px;}
.yb0{bottom:438.660049px;}
.y11b{bottom:442.980079px;}
.y16a{bottom:445.140060px;}
.y86{bottom:445.500068px;}
.y135{bottom:445.680039px;}
.y153{bottom:445.860077px;}
.y169{bottom:449.460091px;}
.y163{bottom:449.820099px;}
.yeb{bottom:453.240074px;}
.y14a{bottom:457.740074px;}
.yc9{bottom:462.060036px;}
.y1a1{bottom:463.860077px;}
.y168{bottom:467.460091px;}
.y85{bottom:467.820099px;}
.y96{bottom:468.180039px;}
.yaf{bottom:469.620072px;}
.yf{bottom:469.980079px;}
.y184{bottom:471.780052px;}
.y9b{bottom:472.140060px;}
.y104{bottom:473.580093px;}
.ybe{bottom:473.940033px;}
.y134{bottom:476.640060px;}
.yea{bottom:484.200096px;}
.ye9{bottom:488.520058px;}
.y149{bottom:488.700096px;}
.y167{bottom:489.780052px;}
.y84{bottom:490.140060px;}
.y152{bottom:492.660049px;}
.y17d{bottom:494.100083px;}
.y9a{bottom:494.460091px;}
.yae{bottom:500.760064px;}
.y46{bottom:501.300041px;}
.y1a0{bottom:504.000068px;}
.yc4{bottom:505.080093px;}
.y133{bottom:507.780052px;}
.y83{bottom:512.460091px;}
.y103{bottom:512.640060px;}
.y10f{bottom:516.960091px;}
.y148{bottom:519.840088px;}
.ye8{bottom:523.080093px;}
.ye{bottom:527.040047px;}
.yd{bottom:531.000068px;}
.yad{bottom:531.720085px;}
.y82{bottom:534.780052px;}
.y162{bottom:536.040047px;}
.y132{bottom:538.740074px;}
.y81{bottom:539.100083px;}
.ye6{bottom:539.460091px;}
.y166{bottom:542.700096px;}
.y131{bottom:543.060036px;}
.ye5{bottom:543.420043px;}
.y102{bottom:543.780052px;}
.y19f{bottom:544.860077px;}
.y147{bottom:550.800041px;}
.y5d{bottom:551.700096px;}
.y146{bottom:554.760064px;}
.y80{bottom:557.280052px;}
.y7f{bottom:561.600083px;}
.yac{bottom:562.860077px;}
.y45{bottom:566.820099px;}
.yc8{bottom:567.180039px;}
.y5c{bottom:569.700096px;}
.y101{bottom:574.740074px;}
.ye4{bottom:578.160049px;}
.y7d{bottom:579.600083px;}
.y43{bottom:580.500068px;}
.y130{bottom:581.760064px;}
.y5b{bottom:584.100083px;}
.y143{bottom:586.080093px;}
.y19e{bottom:586.440033px;}
.yab{bottom:593.820099px;}
.ybd{bottom:598.140060px;}
.y42{bottom:599.580093px;}
.y7c{bottom:601.920043px;}
.y5a{bottom:602.460091px;}
.y100{bottom:605.880066px;}
.ye3{bottom:608.040047px;}
.yf6{bottom:612.000068px;}
.y12f{bottom:612.900055px;}
.y41{bottom:613.260064px;}
.y59{bottom:616.860077px;}
.y19d{bottom:622.620072px;}
.y7b{bottom:624.240074px;}
.y11a{bottom:624.960091px;}
.y19c{bottom:626.940033px;}
.y183{bottom:629.280052px;}
.y40{bottom:632.340088px;}
.y58{bottom:635.220085px;}
.yaa{bottom:636.840088px;}
.yc3{bottom:641.160049px;}
.y12e{bottom:643.860077px;}
.y19b{bottom:644.940033px;}
.y1b5{bottom:645.300041px;}
.y3f{bottom:646.020058px;}
.y7a{bottom:646.560036px;}
.y1b4{bottom:649.260064px;}
.y57{bottom:649.620072px;}
.y119{bottom:655.920043px;}
.y118{bottom:660.240074px;}
.ye2{bottom:661.320099px;}
.y3e{bottom:665.100083px;}
.y19a{bottom:667.260064px;}
.y3d{bottom:667.980079px;}
.y95{bottom:668.880066px;}
.y78{bottom:669.240074px;}
.y1b8{bottom:671.580093px;}
.y77{bottom:673.200096px;}
.y12d{bottom:675.000068px;}
.y3c{bottom:678.780052px;}
.y56{bottom:682.380066px;}
.y117{bottom:687.060070px;}
.y199{bottom:689.580059px;}
.y121{bottom:691.020058px;}
.y76{bottom:691.200061px;}
.y151{bottom:691.380066px;}
.y1b7{bottom:693.900055px;}
.y3b{bottom:697.860077px;}
.ya9{bottom:698.940067px;}
.y55{bottom:700.740074px;}
.yc7{bottom:703.260064px;}
.ye1{bottom:705.960056px;}
.yfa{bottom:710.280052px;}
.y39{bottom:711.540081px;}
.y75{bottom:713.520058px;}
.y38{bottom:715.140060px;}
.y116{bottom:718.020058px;}
.y115{bottom:722.340054px;}
.y198{bottom:729.900055px;}
.ya8{bottom:730.080059px;}
.y36{bottom:730.620072px;}
.y54{bottom:733.500068px;}
.y1b6{bottom:734.220051px;}
.y111{bottom:734.400055px;}
.y74{bottom:735.840054px;}
.ye0{bottom:737.100083px;}
.y99{bottom:740.160049px;}
.y35{bottom:744.300076px;}
.y34{bottom:747.900055px;}
.y114{bottom:749.160049px;}
.y12c{bottom:749.520058px;}
.y197{bottom:752.220051px;}
.y113{bottom:753.120072px;}
.y12b{bottom:753.480079px;}
.y1b3{bottom:756.540081px;}
.y73{bottom:758.160049px;}
.ya7{bottom:761.040081px;}
.y33{bottom:763.380066px;}
.y145{bottom:765.360077px;}
.y53{bottom:766.260064px;}
.ydf{bottom:768.060070px;}
.y196{bottom:774.540081px;}
.y31{bottom:777.060070px;}
.y120{bottom:777.420078px;}
.y52{bottom:780.660049px;}
.y72{bottom:784.980079px;}
.ya6{bottom:792.180073px;}
.y30{bottom:796.140060px;}
.yd7{bottom:796.500068px;}
.y51{bottom:799.020058px;}
.yde{bottom:799.200061px;}
.yf9{bottom:803.520058px;}
.y11f{bottom:804.060070px;}
.y2f{bottom:809.820065px;}
.y50{bottom:813.420078px;}
.y195{bottom:814.860077px;}
.y194{bottom:819.180073px;}
.ya5{bottom:823.140060px;}
.y71{bottom:825.120072px;}
.yc2{bottom:827.460056px;}
.y2d{bottom:828.900055px;}
.y4f{bottom:831.780052px;}
.yff{bottom:835.200061px;}
.y1b2{bottom:837.180073px;}
.y193{bottom:837.540081px;}
.y10e{bottom:839.520058px;}
.y192{bottom:841.500068px;}
.y4e{bottom:846.360077px;}
.ydd{bottom:848.160049px;}
.yf8{bottom:852.480079px;}
.ya4{bottom:854.280052px;}
.yd5{bottom:858.600083px;}
.y191{bottom:859.500068px;}
.y70{bottom:859.680073px;}
.y2b{bottom:861.660049px;}
.y190{bottom:863.820065px;}
.y4d{bottom:864.540081px;}
.yfe{bottom:866.160049px;}
.y14b{bottom:870.480079px;}
.y29{bottom:875.520058px;}
.y4c{bottom:879.120072px;}
.ydc{bottom:879.300076px;}
.y150{bottom:885.240074px;}
.y182{bottom:889.560070px;}
.y6f{bottom:894.060070px;}
.yfd{bottom:897.300076px;}
.y18f{bottom:899.820065px;}
.ya3{bottom:901.620072px;}
.y18e{bottom:904.140060px;}
.ydb{bottom:910.260064px;}
.yc{bottom:911.520058px;}
.y6e{bottom:911.880066px;}
.yf7{bottom:914.580059px;}
.y6d{bottom:916.200061px;}
.y14f{bottom:916.380066px;}
.y14e{bottom:920.700061px;}
.y1b1{bottom:922.320065px;}
.y18d{bottom:922.680073px;}
.y1b0{bottom:926.640060px;}
.ya2{bottom:928.260064px;}
.yc1{bottom:932.580059px;}
.yda{bottom:941.400055px;}
.y18c{bottom:944.640060px;}
.y1af{bottom:945.000068px;}
.ya{bottom:946.080059px;}
.y1ae{bottom:948.960056px;}
.y4b{bottom:950.040081px;}
.y6c{bottom:950.760064px;}
.ya1{bottom:959.400055px;}
.yc6{bottom:963.720051px;}
.y18b{bottom:966.960056px;}
.y1ad{bottom:971.280053px;}
.y6b{bottom:985.140060px;}
.y18a{bottom:989.280069px;}
.y28{bottom:990.180073px;}
.ya0{bottom:990.360060px;}
.yc0{bottom:994.680073px;}
.y6a{bottom:1002.960074px;}
.y69{bottom:1007.280069px;}
.y8{bottom:1017.180073px;}
.y9f{bottom:1021.500068px;}
.y68{bottom:1025.280069px;}
.ybc{bottom:1025.820065px;}
.y189{bottom:1029.600065px;}
.y188{bottom:1033.920061px;}
.y67{bottom:1047.600065px;}
.y187{bottom:1051.920061px;}
.y1ab{bottom:1052.280069px;}
.y9e{bottom:1052.460074px;}
.y186{bottom:1056.240074px;}
.y27{bottom:1061.280069px;}
.y65{bottom:1069.920061px;}
.y9d{bottom:1083.600065px;}
.y6{bottom:1087.020058px;}
.y9c{bottom:1087.920061px;}
.y4a{bottom:1091.700061px;}
.y63{bottom:1092.240074px;}
.y94{bottom:1096.560070px;}
.y4{bottom:1111.140060px;}
.y61{bottom:1114.560070px;}
.y3{bottom:1115.820065px;}
.y60{bottom:1118.880066px;}
.y1{bottom:1228.860066px;}
.h13{height:13.679970px;}
.h14{height:13.679971px;}
.h12{height:13.680003px;}
.he{height:13.680004px;}
.h10{height:18.719982px;}
.h11{height:18.719983px;}
.hd{height:18.720016px;}
.h15{height:18.720017px;}
.h7{height:20.519989px;}
.hb{height:20.519990px;}
.h17{height:20.519998px;}
.h18{height:20.520006px;}
.h19{height:20.520007px;}
.h1a{height:20.520022px;}
.h9{height:20.520024px;}
.hc{height:20.520057px;}
.h1c{height:20.520127px;}
.h5{height:23.940008px;}
.h6{height:23.940016px;}
.hf{height:43.248020px;}
.h3{height:53.575923px;}
.ha{height:58.835679px;}
.h1b{height:59.345979px;}
.h16{height:59.385546px;}
.h8{height:63.951621px;}
.h2{height:64.549300px;}
.h1d{height:69.713453px;}
.h4{height:74.823380px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w123{width:0.180004px;}
.wdd{width:0.360008px;}
.w6d{width:0.719982px;}
.w150{width:2.159981px;}
.w7e{width:2.519989px;}
.w138{width:2.879998px;}
.w134{width:3.240006px;}
.w9f{width:3.960021px;}
.w4f{width:3.960022px;}
.w142{width:4.139992px;}
.w16d{width:4.320030px;}
.w144{width:4.500000px;}
.wdf{width:4.860008px;}
.wde{width:5.399986px;}
.w148{width:6.120002px;}
.w13d{width:6.840019px;}
.w41{width:7.379998px;}
.w92{width:7.740006px;}
.w169{width:8.099980px;}
.w174{width:8.279983px;}
.w17{width:8.279984px;}
.w132{width:9.000000px;}
.w74{width:10.620002px;}
.w14b{width:10.980011px;}
.we7{width:12.060036px;}
.w3{width:12.600013px;}
.wef{width:13.680038px;}
.w36{width:13.860008px;}
.w103{width:14.580025px;}
.w17d{width:15.659981px;}
.w69{width:16.019989px;}
.wc1{width:16.200028px;}
.w10b{width:18.899986px;}
.w17e{width:19.439964px;}
.w48{width:20.519989px;}
.we8{width:20.879997px;}
.w140{width:21.420009px;}
.w12b{width:21.779984px;}
.w3c{width:21.960022px;}
.w8b{width:23.759994px;}
.w114{width:24.659981px;}
.w8f{width:24.660016px;}
.w1a{width:25.019989px;}
.we{width:25.740006px;}
.wec{width:25.920009px;}
.w15b{width:26.279984px;}
.w13f{width:27.000000px;}
.w5b{width:27.360008px;}
.w118{width:27.539978px;}
.w6{width:27.540012px;}
.wb6{width:28.079991px;}
.w22{width:28.439999px;}
.w166{width:28.620002px;}
.w72{width:28.980011px;}
.w76{width:31.679970px;}
.w128{width:31.680004px;}
.w115{width:32.399987px;}
.we9{width:32.939999px;}
.w82{width:33.480011px;}
.wf6{width:34.740006px;}
.w124{width:35.100014px;}
.w5c{width:35.640009px;}
.w14{width:35.820030px;}
.w2b{width:36.000000px;}
.w12{width:36.180038px;}
.w16e{width:37.079990px;}
.w51{width:37.080025px;}
.w164{width:37.439999px;}
.w20{width:37.800007px;}
.w155{width:37.980011px;}
.we4{width:38.519989px;}
.w157{width:40.320014px;}
.w167{width:41.039978px;}
.w16{width:41.039979px;}
.w4c{width:41.219982px;}
.w56{width:41.220016px;}
.wb{width:41.759994px;}
.w145{width:41.939964px;}
.w12c{width:42.120002px;}
.wf1{width:42.839984px;}
.w5e{width:43.379998px;}
.w10d{width:43.740006px;}
.w120{width:44.280001px;}
.w13a{width:45.539978px;}
.wfa{width:46.800042px;}
.w3e{width:46.980011px;}
.w136{width:47.519989px;}
.wd2{width:48.779983px;}
.wb9{width:48.779984px;}
.we3{width:48.780001px;}
.w9b{width:49.679970px;}
.w96{width:51.300007px;}
.w8d{width:52.199958px;}
.w93{width:52.379997px;}
.w129{width:52.740006px;}
.wbc{width:53.459988px;}
.w171{width:53.460022px;}
.w73{width:53.639991px;}
.wc8{width:53.819962px;}
.w104{width:54.180005px;}
.w172{width:54.720016px;}
.w5a{width:54.900003px;}
.wea{width:55.620002px;}
.w98{width:55.800007px;}
.w16b{width:56.340019px;}
.wcd{width:56.700028px;}
.w11c{width:57.240006px;}
.wc5{width:57.600013px;}
.w9d{width:59.939964px;}
.w3a{width:60.120002px;}
.w84{width:60.300042px;}
.w112{width:60.480011px;}
.w10f{width:60.840002px;}
.w12f{width:61.560036px;}
.wb1{width:63.000000px;}
.wb4{width:63.900003px;}
.w133{width:64.079990px;}
.w17b{width:64.439964px;}
.w10{width:65.340019px;}
.w59{width:66.240006px;}
.wc3{width:66.420044px;}
.w5{width:67.500000px;}
.w1c{width:68.399987px;}
.w80{width:69.300042px;}
.w2{width:69.659998px;}
.w158{width:69.840002px;}
.w70{width:71.279983px;}
.we0{width:71.820014px;}
.w111{width:72.540012px;}
.wa3{width:73.259994px;}
.wac{width:73.439999px;}
.w2d{width:73.799972px;}
.w177{width:74.159981px;}
.w68{width:74.340019px;}
.wc6{width:76.860008px;}
.w31{width:77.039978px;}
.wb0{width:77.219982px;}
.w121{width:78.120003px;}
.w179{width:79.740006px;}
.w15a{width:80.100014px;}
.w14a{width:80.819962px;}
.w42{width:81.180004px;}
.w162{width:82.259994px;}
.w3f{width:82.620003px;}
.w18{width:83.879998px;}
.w65{width:84.599980px;}
.w9{width:84.600014px;}
.wd1{width:84.779983px;}
.wbf{width:84.960023px;}
.w63{width:86.039978px;}
.w147{width:86.399987px;}
.wd5{width:86.400021px;}
.w40{width:86.760011px;}
.w1e{width:87.120002px;}
.w7c{width:87.120003px;}
.w8e{width:88.920010px;}
.w29{width:89.100013px;}
.w49{width:89.280018px;}
.w7{width:91.439999px;}
.w10c{width:92.879997px;}
.wd7{width:94.500000px;}
.w95{width:95.039978px;}
.wa8{width:97.019989px;}
.wd9{width:97.020024px;}
.w61{width:98.819996px;}
.w11a{width:99.180004px;}
.w176{width:99.360008px;}
.w52{width:102.420009px;}
.wcb{width:102.960004px;}
.w17a{width:103.679970px;}
.w14e{width:105.299972px;}
.w9c{width:105.480011px;}
.w7a{width:106.560001px;}
.w23{width:106.740006px;}
.wa6{width:106.920009px;}
.w153{width:107.460021px;}
.w143{width:107.640026px;}
.w45{width:108.000000px;}
.w154{width:108.179970px;}
.w156{width:108.360008px;}
.w4a{width:109.439999px;}
.wdb{width:109.620003px;}
.w9a{width:109.799972px;}
.w60{width:111.420010px;}
.w46{width:111.959988px;}
.wdc{width:111.960021px;}
.w14c{width:112.139991px;}
.w15f{width:115.019989px;}
.w125{width:115.020007px;}
.wfc{width:115.740006px;}
.wb7{width:116.100014px;}
.w87{width:116.279983px;}
.w17c{width:117.179970px;}
.wb2{width:118.079956px;}
.w8a{width:118.620003px;}
.w152{width:119.699958px;}
.w6f{width:120.059966px;}
.w58{width:120.419975px;}
.w170{width:120.420009px;}
.w10e{width:120.780001px;}
.w75{width:121.319962px;}
.wd0{width:121.500000px;}
.w10a{width:121.679970px;}
.w8c{width:122.579956px;}
.w161{width:122.579990px;}
.w175{width:122.759994px;}
.w122{width:123.120003px;}
.wb5{width:123.300007px;}
.w25{width:123.480011px;}
.w7d{width:124.920009px;}
.w149{width:125.279983px;}
.wfd{width:125.639992px;}
.wae{width:125.640026px;}
.w168{width:126.360009px;}
.w135{width:127.079990px;}
.w11e{width:127.259994px;}
.w15c{width:128.159981px;}
.w6c{width:128.340019px;}
.w165{width:130.860009px;}
.w127{width:131.220000px;}
.w102{width:132.120002px;}
.w3d{width:132.120003px;}
.wc7{width:132.299972px;}
.w39{width:133.199958px;}
.w105{width:133.200028px;}
.wbb{width:133.379998px;}
.w110{width:134.100014px;}
.w85{width:134.459988px;}
.w101{width:135.540012px;}
.wa1{width:137.520007px;}
.wf7{width:138.240006px;}
.w173{width:139.500000px;}
.w43{width:141.120003px;}
.w79{width:141.480011px;}
.w33{width:142.019989px;}
.wa0{width:142.020007px;}
.w106{width:142.560001px;}
.w35{width:142.740006px;}
.w30{width:144.899987px;}
.wf5{width:145.079956px;}
.w13e{width:145.079990px;}
.w14d{width:145.259994px;}
.w14f{width:145.620002px;}
.w15{width:145.620003px;}
.waa{width:145.800007px;}
.w7b{width:146.159998px;}
.w11f{width:146.699958px;}
.wd{width:147.240006px;}
.w151{width:149.039978px;}
.wf3{width:149.399987px;}
.w146{width:149.579956px;}
.wd4{width:150.120002px;}
.w126{width:150.120003px;}
.wa4{width:150.300007px;}
.waf{width:151.560001px;}
.w2f{width:153.000000px;}
.wc9{width:155.159981px;}
.wb3{width:155.519989px;}
.w15e{width:155.700028px;}
.w32{width:155.879997px;}
.w26{width:156.420009px;}
.wf8{width:156.420010px;}
.w28{width:156.600013px;}
.wf{width:156.960022px;}
.w11d{width:157.500000px;}
.w71{width:157.679970px;}
.w55{width:157.860008px;}
.w3b{width:159.299972px;}
.w2a{width:161.100013px;}
.wca{width:162.180005px;}
.w34{width:163.439964px;}
.w2e{width:163.620002px;}
.w77{width:164.159998px;}
.w178{width:165.779983px;}
.w27{width:166.319997px;}
.w117{width:166.500000px;}
.w15d{width:167.039978px;}
.w2c{width:167.759994px;}
.w57{width:167.939964px;}
.w37{width:168.120002px;}
.w38{width:168.299972px;}
.w16c{width:169.379997px;}
.w139{width:171.000000px;}
.w78{width:171.180005px;}
.w11{width:171.900021px;}
.wa5{width:172.439999px;}
.w9e{width:172.799972px;}
.wf4{width:173.340019px;}
.w159{width:176.040012px;}
.w21{width:176.400021px;}
.wa9{width:176.939999px;}
.we2{width:177.120003px;}
.wbd{width:179.459988px;}
.w107{width:180.180004px;}
.w108{width:181.620002px;}
.w13{width:183.240006px;}
.w1b{width:185.580025px;}
.we1{width:186.120003px;}
.w100{width:187.199993px;}
.w4{width:187.920010px;}
.w6b{width:188.459988px;}
.wba{width:189.360008px;}
.wff{width:189.899987px;}
.w54{width:190.079990px;}
.w11b{width:191.160016px;}
.w24{width:192.779983px;}
.w8{width:195.120003px;}
.wab{width:196.379997px;}
.wad{width:197.099980px;}
.wfe{width:197.100013px;}
.w113{width:197.819996px;}
.w89{width:198.180005px;}
.w90{width:199.259994px;}
.wce{width:199.439999px;}
.w88{width:200.520024px;}
.wcf{width:201.240006px;}
.w44{width:201.599980px;}
.wc{width:204.120003px;}
.wbe{width:206.279983px;}
.wfb{width:207.000000px;}
.w160{width:207.720017px;}
.w47{width:210.780018px;}
.w5f{width:211.319996px;}
.wda{width:213.120002px;}
.w53{width:213.120003px;}
.w4b{width:213.300007px;}
.wa7{width:215.819997px;}
.w119{width:217.620002px;}
.w1d{width:217.620003px;}
.w97{width:221.579990px;}
.w62{width:223.920010px;}
.wd8{width:227.519989px;}
.wd6{width:228.240006px;}
.w64{width:231.660016px;}
.w163{width:234.360008px;}
.w137{width:234.720017px;}
.w130{width:235.259994px;}
.w1f{width:235.620003px;}
.w141{width:237.600013px;}
.w66{width:238.140026px;}
.wc4{width:238.860008px;}
.w67{width:242.459988px;}
.w5d{width:243.000000px;}
.w7f{width:247.500000px;}
.wa2{width:249.480011px;}
.w86{width:253.259994px;}
.wf0{width:255.240006px;}
.wc2{width:256.319962px;}
.wcc{width:258.480011px;}
.w99{width:260.819997px;}
.w12e{width:261.179970px;}
.w83{width:262.439964px;}
.w16a{width:266.399987px;}
.web{width:267.120003px;}
.wd3{width:268.020024px;}
.wf9{width:269.460021px;}
.w94{width:270.360009px;}
.wb8{width:273.960021px;}
.wf2{width:273.960023px;}
.w4d{width:275.580025px;}
.w13b{width:277.200028px;}
.w12d{width:280.620003px;}
.w81{width:283.500000px;}
.we5{width:284.220017px;}
.w50{width:285.659981px;}
.w16f{width:285.660016px;}
.w19{width:288.900021px;}
.w116{width:290.340019px;}
.w12a{width:295.019989px;}
.wed{width:296.819997px;}
.w6a{width:300.060001px;}
.wee{width:303.120002px;}
.we6{width:304.740006px;}
.wc0{width:306.539978px;}
.w91{width:309.059967px;}
.w131{width:309.240006px;}
.w13c{width:315.899987px;}
.w4e{width:318.779983px;}
.w109{width:320.220017px;}
.w6e{width:322.020024px;}
.wa{width:322.740006px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x52{left:-517.680014px;}
.x34{left:-510.480011px;}
.x138{left:-499.680004px;}
.xb5{left:-486.720017px;}
.x104{left:-484.740006px;}
.x125{left:-478.980011px;}
.xba{left:-468.720017px;}
.x85{left:-463.680004px;}
.xe0{left:-460.080008px;}
.x135{left:-456.660016px;}
.x7a{left:-454.680004px;}
.xf1{left:-445.860009px;}
.xf3{left:-438.660016px;}
.xb4{left:-430.560019px;}
.x84{left:-429.300007px;}
.x107{left:-425.520007px;}
.x51{left:-414.000017px;}
.xd0{left:-411.480011px;}
.x53{left:-407.160016px;}
.x7c{left:-405.180004px;}
.x156{left:-400.680004px;}
.x118{left:-394.380015px;}
.x31{left:-392.220017px;}
.x35{left:-390.060019px;}
.xf0{left:-386.460006px;}
.x134{left:-383.400003px;}
.x95{left:-377.460006px;}
.x15c{left:-375.300007px;}
.x7b{left:-369.540012px;}
.x132{left:-366.300007px;}
.x173{left:-362.880015px;}
.x77{left:-344.520024px;}
.x32{left:-335.160016px;}
.x80{left:-329.939999px;}
.xa3{left:-322.020024px;}
.xa1{left:-300.060001px;}
.x11a{left:-296.819997px;}
.x133{left:-290.340019px;}
.x4b{left:-288.900021px;}
.x174{left:-285.660016px;}
.x117{left:-284.220017px;}
.x152{left:-280.620003px;}
.x158{left:-277.200028px;}
.x81{left:-275.580025px;}
.x11c{left:-273.960023px;}
.xcc{left:-270.360009px;}
.x105{left:-268.020024px;}
.xd1{left:-260.819997px;}
.x15a{left:-255.240006px;}
.x119{left:-249.480011px;}
.x9e{left:-238.140026px;}
.x4f{left:-235.620003px;}
.x9d{left:-231.660016px;}
.x9b{left:-223.920010px;}
.x4e{left:-217.620003px;}
.xdd{left:-215.819997px;}
.x7f{left:-213.300007px;}
.x79{left:-210.780018px;}
.x170{left:-207.720017px;}
.x39{left:-204.120003px;}
.xbb{left:-200.520024px;}
.xcb{left:-199.259994px;}
.x124{left:-197.100013px;}
.x28{left:-194.940008px;}
.x137{left:-191.160016px;}
.x10{left:-187.740006px;}
.x4c{left:-185.580025px;}
.x46{left:-183.240006px;}
.x128{left:-180.180004px;}
.x54{left:-176.400021px;}
.x11d{left:-173.340019px;}
.x43{left:-171.900021px;}
.x59{left:-166.319997px;}
.xa9{left:-163.980011px;}
.xfa{left:-162.000000px;}
.x40{left:-156.960022px;}
.x16e{left:-155.700028px;}
.x14c{left:-149.939999px;}
.x3c{left:-147.240006px;}
.x48{left:-145.620003px;}
.x76{left:-140.939999px;}
.xd9{left:-137.340002px;}
.x127{left:-135.540012px;}
.xf2{left:-133.379998px;}
.x68{left:-131.939999px;}
.x172{left:-130.860009px;}
.xa2{left:-128.340019px;}
.xe1{left:-125.640026px;}
.x58{left:-123.480011px;}
.x103{left:-121.500000px;}
.xbd{left:-118.620003px;}
.xeb{left:-115.920010px;}
.x14a{left:-114.840002px;}
.x9a{left:-111.420010px;}
.x10b{left:-109.620003px;}
.x78{left:-108.000000px;}
.x57{left:-106.740006px;}
.xfd{left:-102.780001px;}
.x136{left:-99.180004px;}
.x10a{left:-97.020024px;}
.x109{left:-94.500000px;}
.x27{left:-91.260011px;}
.x7e{left:-89.280018px;}
.x6b{left:-86.580008px;}
.x29{left:-84.420010px;}
.x6a{left:-82.439999px;}
.x70{left:-81.000000px;}
.x16c{left:-79.920010px;}
.x144{left:-77.939999px;}
.xa0{left:-74.340019px;}
.xdb{left:-73.259994px;}
.x112{left:-71.640009px;}
.xd{left:-69.480011px;}
.x4d{left:-68.399987px;}
.x12{left:-67.320014px;}
.x42{left:-65.340019px;}
.xe6{left:-63.720000px;}
.x153{left:-61.560036px;}
.xb9{left:-60.300042px;}
.x102{left:-56.700028px;}
.x88{left:-54.720000px;}
.x151{left:-52.560001px;}
.xef{left:-48.779984px;}
.x69{left:-46.800007px;}
.x96{left:-43.379998px;}
.x37{left:-41.759994px;}
.x167{left:-40.140009px;}
.x163{left:-37.800007px;}
.x45{left:-36.180038px;}
.x147{left:-34.920010px;}
.xb7{left:-33.480011px;}
.x150{left:-31.500000px;}
.x25{left:-27.360008px;}
.x3e{left:-25.740006px;}
.xc8{left:-24.480011px;}
.x64{left:-21.780018px;}
.xf4{left:-16.200028px;}
.x11b{left:-13.680038px;}
.xe{left:-12.420010px;}
.x49{left:-8.279984px;}
.x6f{left:-7.199993px;}
.x83{left:-3.960022px;}
.xb6{left:-2.519989px;}
.x0{left:0.000000px;}
.x1{left:127.620002px;}
.x5{left:134.819996px;}
.x10d{left:136.620002px;}
.x10e{left:145.620002px;}
.x15f{left:146.699993px;}
.xa7{left:151.560001px;}
.xbf{left:154.620002px;}
.xa6{left:158.580008px;}
.xf6{left:160.560001px;}
.x11f{left:166.319996px;}
.x13d{left:172.620002px;}
.xa8{left:176.580008px;}
.x63{left:181.620002px;}
.xd3{left:185.219999px;}
.x12d{left:188.639992px;}
.x5c{left:190.620002px;}
.xe3{left:199.439999px;}
.x12b{left:201.960005px;}
.xe4{left:206.639992px;}
.x13c{left:207.719999px;}
.xa5{left:214.740006px;}
.x62{left:216.000000px;}
.xf7{left:219.780001px;}
.x2{left:220.860008px;}
.x9{left:231.300007px;}
.xc0{left:233.819996px;}
.x5f{left:235.979994px;}
.xa{left:238.139992px;}
.x5e{left:240.120002px;}
.x61{left:241.560001px;}
.x160{left:242.639992px;}
.x13b{left:244.620002px;}
.x10c{left:250.919992px;}
.x3{left:253.080008px;}
.x6{left:255.240006px;}
.xe2{left:258.840002px;}
.x12c{left:261.900003px;}
.x86{left:267.840002px;}
.x13f{left:270.000000px;}
.x10f{left:273.960005px;}
.x5d{left:275.759994px;}
.x7{left:277.199993px;}
.x12a{left:279.000000px;}
.x15e{left:282.419992px;}
.x15d{left:284.759994px;}
.x87{left:287.099997px;}
.x13e{left:291.060001px;}
.x8{left:295.199993px;}
.xc1{left:298.079990px;}
.x5b{left:300.779983px;}
.x4{left:310.139992px;}
.x60{left:315.360008px;}
.xc{left:322.740006px;}
.x14f{left:326.879998px;}
.x168{left:330.839985px;}
.x91{left:338.759994px;}
.x6c{left:343.259994px;}
.x92{left:345.420010px;}
.x12e{left:347.399987px;}
.x113{left:348.660015px;}
.x14d{left:349.740006px;}
.x2b{left:351.180005px;}
.x12f{left:355.139992px;}
.x21{left:356.579990px;}
.x2a{left:360.540012px;}
.x71{left:363.959988px;}
.x115{left:365.579990px;}
.x149{left:368.279983px;}
.x72{left:369.899987px;}
.xfb{left:371.519989px;}
.xc6{left:374.040012px;}
.xc4{left:375.120002px;}
.xe7{left:376.199993px;}
.xfc{left:377.459988px;}
.xc9{left:378.540012px;}
.x11{left:380.699993px;}
.xca{left:384.660015px;}
.x145{left:386.819996px;}
.x14e{left:390.240006px;}
.xd8{left:396.180005px;}
.xda{left:399.779983px;}
.x8f{left:407.339985px;}
.x8d{left:408.779983px;}
.x26{left:409.860008px;}
.x8e{left:413.819996px;}
.xc5{left:417.779983px;}
.xd6{left:419.759994px;}
.x8c{left:421.560001px;}
.x74{left:425.160015px;}
.x24{left:427.860008px;}
.xd5{left:429.660015px;}
.x6e{left:432.180005px;}
.x67{left:434.699993px;}
.x165{left:437.759994px;}
.xb0{left:439.019989px;}
.x14{left:441.360008px;}
.x16b{left:443.160015px;}
.xb1{left:444.959988px;}
.xc2{left:446.220017px;}
.xaa{left:447.660015px;}
.x146{left:449.819996px;}
.x162{left:450.899987px;}
.xb{left:454.860008px;}
.xae{left:457.199993px;}
.x22{left:459.899987px;}
.x1c{left:462.240006px;}
.x1e{left:465.120002px;}
.xf{left:468.360008px;}
.x116{left:472.139992px;}
.x19{left:473.579990px;}
.x2f{left:479.160015px;}
.x161{left:480.600014px;}
.x17{left:488.519989px;}
.x164{left:489.779983px;}
.x169{left:492.120002px;}
.x148{left:493.740006px;}
.x15{left:498.240006px;}
.x1d{left:499.860008px;}
.xe8{left:502.199993px;}
.x123{left:504.360008px;}
.x122{left:509.939999px;}
.x93{left:511.199993px;}
.x75{left:512.819996px;}
.x2d{left:515.339985px;}
.x94{left:517.139992px;}
.xd7{left:519.120002px;}
.xb2{left:520.920010px;}
.x2e{left:522.000000px;}
.x65{left:524.160015px;}
.xb3{left:526.860008px;}
.xe9{left:529.019989px;}
.x8b{left:534.060001px;}
.x101{left:535.860008px;}
.x66{left:537.480011px;}
.x2c{left:538.740006px;}
.x130{left:540.180005px;}
.xc7{left:544.319996px;}
.x131{left:546.300007px;}
.x100{left:548.459988px;}
.xff{left:550.980011px;}
.x6d{left:556.199993px;}
.x143{left:558.000000px;}
.xfe{left:559.079990px;}
.xea{left:560.519989px;}
.x20{left:561.600014px;}
.x166{left:563.220017px;}
.x89{left:565.740006px;}
.x90{left:571.139992px;}
.xd4{left:572.220017px;}
.xaf{left:576.000000px;}
.x23{left:577.080025px;}
.xed{left:579.059967px;}
.x18{left:580.139992px;}
.xf8{left:581.220017px;}
.x142{left:583.919975px;}
.xad{left:585.179970px;}
.xf9{left:588.779983px;}
.x120{left:592.019989px;}
.xe5{left:596.700027px;}
.x121{left:598.679970px;}
.x8a{left:602.100014px;}
.x13{left:603.720017px;}
.x1a{left:606.240006px;}
.x1b{left:609.299973px;}
.xac{left:612.000000px;}
.x16a{left:613.080025px;}
.x140{left:617.759994px;}
.x16{left:619.740006px;}
.x141{left:623.700027px;}
.x114{left:625.860008px;}
.x110{left:627.480011px;}
.xec{left:629.279983px;}
.xc3{left:631.799973px;}
.x111{left:633.419975px;}
.x1f{left:637.200027px;}
.x14b{left:638.639992px;}
.x73{left:641.519989px;}
.xab{left:642.960023px;}
.x30{left:645.480011px;}
.x159{left:647.639992px;}
.xd2{left:649.259994px;}
.x108{left:650.879998px;}
.x171{left:653.759994px;}
.x9f{left:656.100014px;}
.x50{left:659.340019px;}
.xdf{left:661.500000px;}
.x126{left:664.379998px;}
.xb8{left:669.240006px;}
.x99{left:674.460023px;}
.xa4{left:677.159981px;}
.x11e{left:680.220017px;}
.x36{left:681.480011px;}
.x7d{left:686.700027px;}
.xce{left:695.159981px;}
.xbe{left:697.679970px;}
.x9c{left:699.120002px;}
.x16d{left:700.200027px;}
.xee{left:703.080025px;}
.x56{left:705.600014px;}
.xdc{left:708.480011px;}
.x175{left:709.919975px;}
.x3b{left:712.440033px;}
.x97{left:716.580025px;}
.x3a{left:719.279983px;}
.x44{left:722.519989px;}
.x155{left:731.879998px;}
.x33{left:734.580025px;}
.x129{left:738.360008px;}
.xcf{left:750.960023px;}
.x15b{left:752.940033px;}
.xcd{left:755.279983px;}
.x106{left:757.440033px;}
.x176{left:762.480011px;}
.xde{left:763.559967px;}
.x82{left:765.899987px;}
.xbc{left:768.059967px;}
.x157{left:770.759994px;}
.x139{left:772.740006px;}
.xf5{left:777.600014px;}
.x55{left:778.679970px;}
.x16f{left:784.980011px;}
.x4a{left:787.500000px;}
.x41{left:790.379998px;}
.x13a{left:792.179970px;}
.x154{left:794.879998px;}
.x3f{left:798.480011px;}
.x47{left:801.360008px;}
.x98{left:803.159981px;}
.x5a{left:804.779983px;}
.x3d{left:809.100014px;}
.x38{left:813.240006px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.010750pt;}
.ls2{letter-spacing:0.639291pt;}
.ws0{word-spacing:-18.720699pt;}
.ws1{word-spacing:-16.000601pt;}
.ws2{word-spacing:0.000000pt;}
._0{margin-left:-18.346029pt;}
._25{margin-left:-2.253976pt;}
._1{margin-left:-1.247852pt;}
._2{width:1.502307pt;}
._6{width:2.883108pt;}
._7{width:3.911397pt;}
._8{width:5.184695pt;}
._9{width:6.669500pt;}
._a{width:7.904547pt;}
._14{width:8.829581pt;}
._15{width:10.332888pt;}
._c{width:11.406429pt;}
._b{width:12.493219pt;}
._17{width:13.386807pt;}
._5{width:14.296037pt;}
._19{width:17.147394pt;}
._d{width:18.082429pt;}
._e{width:19.200721pt;}
._12{width:20.719278pt;}
._1e{width:21.693925pt;}
._1f{width:22.819107pt;}
._18{width:23.735142pt;}
._1a{width:24.718178pt;}
._3{width:25.611712pt;}
._4{width:26.639305pt;}
._20{width:27.685377pt;}
._21{width:28.852779pt;}
._13{width:30.244440pt;}
._11{width:31.415430pt;}
._16{width:32.769231pt;}
._1d{width:33.943275pt;}
._10{width:35.030816pt;}
._f{width:36.662127pt;}
._1c{width:40.386017pt;}
._1b{width:41.631814pt;}
._22{width:46.916762pt;}
._23{width:48.002303pt;}
._24{width:172.806491pt;}
.fs4{font-size:42.881600pt;}
.fs1{font-size:53.122000pt;}
.fs3{font-size:58.882400pt;}
.fs0{font-size:64.002404pt;}
.fs5{font-size:69.122804pt;}
.fs2{font-size:74.882796pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:2.559997pt;}
.y2e{bottom:2.559998pt;}
.y2c{bottom:2.560028pt;}
.y32{bottom:3.199981pt;}
.y3a{bottom:3.199982pt;}
.y2a{bottom:3.200012pt;}
.y44{bottom:3.200013pt;}
.ye7{bottom:3.519958pt;}
.y172{bottom:3.519959pt;}
.y9{bottom:3.519989pt;}
.y1ac{bottom:3.520004pt;}
.yb{bottom:3.520019pt;}
.y79{bottom:3.520020pt;}
.y7e{bottom:3.839965pt;}
.y14{bottom:3.839966pt;}
.y62{bottom:3.839996pt;}
.y64{bottom:3.839997pt;}
.y66{bottom:3.840011pt;}
.y19{bottom:3.840026pt;}
.y12{bottom:3.840027pt;}
.y25{bottom:3.840088pt;}
.y7{bottom:4.160003pt;}
.y5{bottom:4.160004pt;}
.y2{bottom:53.440064pt;}
.y26{bottom:58.080079pt;}
.y129{bottom:75.680054pt;}
.y161{bottom:76.000000pt;}
.y93{bottom:80.640015pt;}
.y24{bottom:85.760010pt;}
.y5f{bottom:89.600098pt;}
.y10d{bottom:92.640015pt;}
.y17c{bottom:93.440064pt;}
.y185{bottom:97.280030pt;}
.y11c{bottom:103.200074pt;}
.y160{bottom:103.680054pt;}
.y23{bottom:105.600037pt;}
.y11e{bottom:107.040039pt;}
.y165{bottom:107.520081pt;}
.yd4{bottom:108.000061pt;}
.y92{bottom:108.320069pt;}
.y141{bottom:109.440064pt;}
.y144{bottom:113.280030pt;}
.y17b{bottom:117.120057pt;}
.y10c{bottom:120.160035pt;}
.y14d{bottom:124.000061pt;}
.y22{bottom:125.440064pt;}
.yf5{bottom:130.720032pt;}
.ybb{bottom:130.880066pt;}
.y15f{bottom:131.200074pt;}
.yd3{bottom:131.840088pt;}
.yc5{bottom:134.720032pt;}
.y140{bottom:137.120057pt;}
.y1aa{bottom:137.600037pt;}
.y91{bottom:142.720032pt;}
.y128{bottom:145.280030pt;}
.y21{bottom:145.440064pt;}
.y10b{bottom:147.840088pt;}
.y17a{bottom:149.120057pt;}
.y112{bottom:151.680054pt;}
.y179{bottom:152.960083pt;}
.yf4{bottom:154.400086pt;}
.yba{bottom:158.400086pt;}
.yd2{bottom:159.360047pt;}
.yb9{bottom:162.240052pt;}
.y13f{bottom:164.640076pt;}
.y20{bottom:165.280030pt;}
.y1a9{bottom:168.160035pt;}
.y142{bottom:168.480042pt;}
.y178{bottom:168.960083pt;}
.y49{bottom:169.120057pt;}
.y15e{bottom:169.440064pt;}
.y177{bottom:172.800049pt;}
.y90{bottom:172.960083pt;}
.y15d{bottom:173.280030pt;}
.y10a{bottom:175.360047pt;}
.y109{bottom:179.200074pt;}
.yf3{bottom:182.080079pt;}
.y1f{bottom:185.120057pt;}
.yb8{bottom:186.080079pt;}
.yd1{bottom:186.880066pt;}
.y176{bottom:188.800049pt;}
.y48{bottom:188.960083pt;}
.y181{bottom:189.120057pt;}
.y11d{bottom:189.920044pt;}
.yd9{bottom:190.720032pt;}
.y13e{bottom:192.320069pt;}
.y180{bottom:192.640076pt;}
.y127{bottom:196.640076pt;}
.y15c{bottom:197.120057pt;}
.y1a8{bottom:198.560059pt;}
.y164{bottom:200.960083pt;}
.y8f{bottom:203.840088pt;}
.y1e{bottom:204.960083pt;}
.y175{bottom:208.640076pt;}
.yf2{bottom:209.600037pt;}
.y17f{bottom:212.480042pt;}
.yfc{bottom:213.440064pt;}
.yb7{bottom:213.600037pt;}
.yd0{bottom:214.560059pt;}
.y110{bottom:217.440064pt;}
.yd6{bottom:218.400086pt;}
.y13d{bottom:219.840088pt;}
.y126{bottom:224.320069pt;}
.y15b{bottom:224.640076pt;}
.y1d{bottom:224.800049pt;}
.y5e{bottom:228.640076pt;}
.y1a7{bottom:229.120057pt;}
.y8e{bottom:230.560059pt;}
.y8d{bottom:234.400086pt;}
.yf1{bottom:237.280030pt;}
.yb6{bottom:241.280030pt;}
.ycf{bottom:242.080079pt;}
.y174{bottom:244.480042pt;}
.y1c{bottom:244.640076pt;}
.yb5{bottom:245.120057pt;}
.y13c{bottom:247.520081pt;}
.y173{bottom:248.320069pt;}
.y125{bottom:251.840088pt;}
.y15a{bottom:252.320069pt;}
.y159{bottom:256.160035pt;}
.y1a6{bottom:259.680054pt;}
.y1b{bottom:264.480042pt;}
.y171{bottom:264.640076pt;}
.y8c{bottom:264.800049pt;}
.y170{bottom:268.160035pt;}
.yb4{bottom:268.800049pt;}
.yce{bottom:269.760071pt;}
.y14c{bottom:272.640076pt;}
.yd8{bottom:273.600037pt;}
.y13b{bottom:275.040039pt;}
.y13a{bottom:278.880066pt;}
.y124{bottom:279.520081pt;}
.y158{bottom:279.840088pt;}
.y12a{bottom:283.360047pt;}
.y16f{bottom:284.160035pt;}
.y1a{bottom:284.320069pt;}
.y47{bottom:288.160035pt;}
.y1a5{bottom:290.240052pt;}
.yf0{bottom:292.480042pt;}
.yef{bottom:296.320069pt;}
.yb3{bottom:296.480042pt;}
.y8b{bottom:296.800049pt;}
.ycd{bottom:297.280030pt;}
.y98{bottom:300.640076pt;}
.y18{bottom:304.160035pt;}
.y123{bottom:307.040039pt;}
.y157{bottom:307.520081pt;}
.y139{bottom:313.280030pt;}
.y8a{bottom:316.640076pt;}
.y138{bottom:317.120057pt;}
.yee{bottom:320.000061pt;}
.y97{bottom:320.480042pt;}
.y1a4{bottom:320.800049pt;}
.y16e{bottom:323.840088pt;}
.y17{bottom:324.000061pt;}
.ycc{bottom:324.960083pt;}
.y16{bottom:327.840088pt;}
.ycb{bottom:328.800049pt;}
.y122{bottom:334.720032pt;}
.y156{bottom:335.040039pt;}
.y89{bottom:336.480042pt;}
.yb2{bottom:338.560059pt;}
.y155{bottom:338.880066pt;}
.y16d{bottom:339.840088pt;}
.y137{bottom:340.960083pt;}
.y16c{bottom:343.680054pt;}
.y15{bottom:343.840088pt;}
.yed{bottom:347.680054pt;}
.y1a3{bottom:351.200074pt;}
.y108{bottom:351.680054pt;}
.y107{bottom:355.520081pt;}
.y88{bottom:356.320069pt;}
.y16b{bottom:359.840088pt;}
.yb1{bottom:362.240052pt;}
.y17e{bottom:363.680054pt;}
.y13{bottom:363.840088pt;}
.ybf{bottom:366.080079pt;}
.y136{bottom:368.480042pt;}
.y154{bottom:369.600037pt;}
.yca{bottom:372.000061pt;}
.yec{bottom:375.200074pt;}
.y87{bottom:376.160035pt;}
.yfb{bottom:379.040039pt;}
.y106{bottom:379.200074pt;}
.y1a2{bottom:381.760071pt;}
.y105{bottom:382.720032pt;}
.y11{bottom:383.680054pt;}
.y10{bottom:387.520081pt;}
.yb0{bottom:389.920044pt;}
.y11b{bottom:393.760071pt;}
.y16a{bottom:395.680054pt;}
.y86{bottom:396.000061pt;}
.y135{bottom:396.160035pt;}
.y153{bottom:396.320069pt;}
.y169{bottom:399.520081pt;}
.y163{bottom:399.840088pt;}
.yeb{bottom:402.880066pt;}
.y14a{bottom:406.880066pt;}
.yc9{bottom:410.720032pt;}
.y1a1{bottom:412.320069pt;}
.y168{bottom:415.520081pt;}
.y85{bottom:415.840088pt;}
.y96{bottom:416.160035pt;}
.yaf{bottom:417.440064pt;}
.yf{bottom:417.760071pt;}
.y184{bottom:419.360047pt;}
.y9b{bottom:419.680054pt;}
.y104{bottom:420.960083pt;}
.ybe{bottom:421.280030pt;}
.y134{bottom:423.680054pt;}
.yea{bottom:430.400086pt;}
.ye9{bottom:434.240052pt;}
.y149{bottom:434.400086pt;}
.y167{bottom:435.360047pt;}
.y84{bottom:435.680054pt;}
.y152{bottom:437.920044pt;}
.y17d{bottom:439.200074pt;}
.y9a{bottom:439.520081pt;}
.yae{bottom:445.120057pt;}
.y46{bottom:445.600037pt;}
.y1a0{bottom:448.000061pt;}
.yc4{bottom:448.960083pt;}
.y133{bottom:451.360047pt;}
.y83{bottom:455.520081pt;}
.y103{bottom:455.680054pt;}
.y10f{bottom:459.520081pt;}
.y148{bottom:462.080079pt;}
.ye8{bottom:464.960083pt;}
.ye{bottom:468.480042pt;}
.yd{bottom:472.000061pt;}
.yad{bottom:472.640076pt;}
.y82{bottom:475.360047pt;}
.y162{bottom:476.480042pt;}
.y132{bottom:478.880066pt;}
.y81{bottom:479.200074pt;}
.ye6{bottom:479.520081pt;}
.y166{bottom:482.400086pt;}
.y131{bottom:482.720032pt;}
.ye5{bottom:483.040039pt;}
.y102{bottom:483.360047pt;}
.y19f{bottom:484.320069pt;}
.y147{bottom:489.600037pt;}
.y5d{bottom:490.400086pt;}
.y146{bottom:493.120057pt;}
.y80{bottom:495.360047pt;}
.y7f{bottom:499.200074pt;}
.yac{bottom:500.320069pt;}
.y45{bottom:503.840088pt;}
.yc8{bottom:504.160035pt;}
.y5c{bottom:506.400086pt;}
.y101{bottom:510.880066pt;}
.ye4{bottom:513.920044pt;}
.y7d{bottom:515.200074pt;}
.y43{bottom:516.000061pt;}
.y130{bottom:517.120057pt;}
.y5b{bottom:519.200074pt;}
.y143{bottom:520.960083pt;}
.y19e{bottom:521.280030pt;}
.yab{bottom:527.840088pt;}
.ybd{bottom:531.680054pt;}
.y42{bottom:532.960083pt;}
.y7c{bottom:535.040039pt;}
.y5a{bottom:535.520081pt;}
.y100{bottom:538.560059pt;}
.ye3{bottom:540.480042pt;}
.yf6{bottom:544.000061pt;}
.y12f{bottom:544.800049pt;}
.y41{bottom:545.120057pt;}
.y59{bottom:548.320069pt;}
.y19d{bottom:553.440064pt;}
.y7b{bottom:554.880066pt;}
.y11a{bottom:555.520081pt;}
.y19c{bottom:557.280030pt;}
.y183{bottom:559.360047pt;}
.y40{bottom:562.080079pt;}
.y58{bottom:564.640076pt;}
.yaa{bottom:566.080079pt;}
.yc3{bottom:569.920044pt;}
.y12e{bottom:572.320069pt;}
.y19b{bottom:573.280030pt;}
.y1b5{bottom:573.600037pt;}
.y3f{bottom:574.240052pt;}
.y7a{bottom:574.720032pt;}
.y1b4{bottom:577.120057pt;}
.y57{bottom:577.440064pt;}
.y119{bottom:583.040039pt;}
.y118{bottom:586.880066pt;}
.ye2{bottom:587.840088pt;}
.y3e{bottom:591.200074pt;}
.y19a{bottom:593.120057pt;}
.y3d{bottom:593.760071pt;}
.y95{bottom:594.560059pt;}
.y78{bottom:594.880066pt;}
.y1b8{bottom:596.960083pt;}
.y77{bottom:598.400086pt;}
.y12d{bottom:600.000061pt;}
.y3c{bottom:603.360047pt;}
.y56{bottom:606.560059pt;}
.y117{bottom:610.720063pt;}
.y199{bottom:612.960053pt;}
.y121{bottom:614.240052pt;}
.y76{bottom:614.400055pt;}
.y151{bottom:614.560059pt;}
.y1b7{bottom:616.800049pt;}
.y3b{bottom:620.320069pt;}
.ya9{bottom:621.280060pt;}
.y55{bottom:622.880066pt;}
.yc7{bottom:625.120057pt;}
.ye1{bottom:627.520050pt;}
.yfa{bottom:631.360047pt;}
.y39{bottom:632.480072pt;}
.y75{bottom:634.240052pt;}
.y38{bottom:635.680054pt;}
.y116{bottom:638.240052pt;}
.y115{bottom:642.080048pt;}
.y198{bottom:648.800049pt;}
.ya8{bottom:648.960053pt;}
.y36{bottom:649.440064pt;}
.y54{bottom:652.000061pt;}
.y1b6{bottom:652.640046pt;}
.y111{bottom:652.800049pt;}
.y74{bottom:654.080048pt;}
.ye0{bottom:655.200074pt;}
.y99{bottom:657.920044pt;}
.y35{bottom:661.600068pt;}
.y34{bottom:664.800049pt;}
.y114{bottom:665.920044pt;}
.y12c{bottom:666.240052pt;}
.y197{bottom:668.640046pt;}
.y113{bottom:669.440064pt;}
.y12b{bottom:669.760071pt;}
.y1b3{bottom:672.480072pt;}
.y73{bottom:673.920044pt;}
.ya7{bottom:676.480072pt;}
.y33{bottom:678.560059pt;}
.y145{bottom:680.320069pt;}
.y53{bottom:681.120057pt;}
.ydf{bottom:682.720063pt;}
.y196{bottom:688.480072pt;}
.y31{bottom:690.720063pt;}
.y120{bottom:691.040070pt;}
.y52{bottom:693.920044pt;}
.y72{bottom:697.760071pt;}
.ya6{bottom:704.160065pt;}
.y30{bottom:707.680054pt;}
.yd7{bottom:708.000061pt;}
.y51{bottom:710.240052pt;}
.yde{bottom:710.400055pt;}
.yf9{bottom:714.240052pt;}
.y11f{bottom:714.720063pt;}
.y2f{bottom:719.840058pt;}
.y50{bottom:723.040070pt;}
.y195{bottom:724.320069pt;}
.y194{bottom:728.160065pt;}
.ya5{bottom:731.680054pt;}
.y71{bottom:733.440064pt;}
.yc2{bottom:735.520050pt;}
.y2d{bottom:736.800049pt;}
.y4f{bottom:739.360047pt;}
.yff{bottom:742.400055pt;}
.y1b2{bottom:744.160065pt;}
.y193{bottom:744.480072pt;}
.y10e{bottom:746.240052pt;}
.y192{bottom:748.000061pt;}
.y4e{bottom:752.320069pt;}
.ydd{bottom:753.920044pt;}
.yf8{bottom:757.760071pt;}
.ya4{bottom:759.360047pt;}
.yd5{bottom:763.200074pt;}
.y191{bottom:764.000061pt;}
.y70{bottom:764.160065pt;}
.y2b{bottom:765.920044pt;}
.y190{bottom:767.840058pt;}
.y4d{bottom:768.480072pt;}
.yfe{bottom:769.920044pt;}
.y14b{bottom:773.760071pt;}
.y29{bottom:778.240052pt;}
.y4c{bottom:781.440064pt;}
.ydc{bottom:781.600068pt;}
.y150{bottom:786.880066pt;}
.y182{bottom:790.720063pt;}
.y6f{bottom:794.720063pt;}
.yfd{bottom:797.600068pt;}
.y18f{bottom:799.840058pt;}
.ya3{bottom:801.440064pt;}
.y18e{bottom:803.680054pt;}
.ydb{bottom:809.120057pt;}
.yc{bottom:810.240052pt;}
.y6e{bottom:810.560059pt;}
.yf7{bottom:812.960053pt;}
.y6d{bottom:814.400055pt;}
.y14f{bottom:814.560059pt;}
.y14e{bottom:818.400055pt;}
.y1b1{bottom:819.840058pt;}
.y18d{bottom:820.160065pt;}
.y1b0{bottom:823.680054pt;}
.ya2{bottom:825.120057pt;}
.yc1{bottom:828.960053pt;}
.yda{bottom:836.800049pt;}
.y18c{bottom:839.680054pt;}
.y1af{bottom:840.000061pt;}
.ya{bottom:840.960053pt;}
.y1ae{bottom:843.520050pt;}
.y4b{bottom:844.480072pt;}
.y6c{bottom:845.120057pt;}
.ya1{bottom:852.800049pt;}
.yc6{bottom:856.640046pt;}
.y18b{bottom:859.520050pt;}
.y1ad{bottom:863.360047pt;}
.y6b{bottom:875.680054pt;}
.y18a{bottom:879.360062pt;}
.y28{bottom:880.160065pt;}
.ya0{bottom:880.320054pt;}
.yc0{bottom:884.160065pt;}
.y6a{bottom:891.520066pt;}
.y69{bottom:895.360062pt;}
.y8{bottom:904.160065pt;}
.y9f{bottom:908.000061pt;}
.y68{bottom:911.360062pt;}
.ybc{bottom:911.840058pt;}
.y189{bottom:915.200058pt;}
.y188{bottom:919.040055pt;}
.y67{bottom:931.200058pt;}
.y187{bottom:935.040055pt;}
.y1ab{bottom:935.360062pt;}
.y9e{bottom:935.520066pt;}
.y186{bottom:938.880066pt;}
.y27{bottom:943.360062pt;}
.y65{bottom:951.040055pt;}
.y9d{bottom:963.200058pt;}
.y6{bottom:966.240052pt;}
.y9c{bottom:967.040055pt;}
.y4a{bottom:970.400055pt;}
.y63{bottom:970.880066pt;}
.y94{bottom:974.720063pt;}
.y4{bottom:987.680054pt;}
.y61{bottom:990.720063pt;}
.y3{bottom:991.840058pt;}
.y60{bottom:994.560059pt;}
.y1{bottom:1092.320059pt;}
.h13{height:12.159973pt;}
.h14{height:12.159974pt;}
.h12{height:12.160003pt;}
.he{height:12.160004pt;}
.h10{height:16.639984pt;}
.h11{height:16.639985pt;}
.hd{height:16.640014pt;}
.h15{height:16.640015pt;}
.h7{height:18.239990pt;}
.hb{height:18.239991pt;}
.h17{height:18.239998pt;}
.h18{height:18.240005pt;}
.h19{height:18.240006pt;}
.h1a{height:18.240020pt;}
.h9{height:18.240021pt;}
.hc{height:18.240051pt;}
.h1c{height:18.240113pt;}
.h5{height:21.280007pt;}
.h6{height:21.280014pt;}
.hf{height:38.442684pt;}
.h3{height:47.623043pt;}
.ha{height:52.298382pt;}
.h1b{height:52.751981pt;}
.h16{height:52.787152pt;}
.h8{height:56.845885pt;}
.h2{height:57.377155pt;}
.h1d{height:61.967514pt;}
.h4{height:66.509671pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w123{width:0.160004pt;}
.wdd{width:0.320007pt;}
.w6d{width:0.639984pt;}
.w150{width:1.919983pt;}
.w7e{width:2.239990pt;}
.w138{width:2.559998pt;}
.w134{width:2.880005pt;}
.w9f{width:3.520019pt;}
.w4f{width:3.520020pt;}
.w142{width:3.679993pt;}
.w16d{width:3.840027pt;}
.w144{width:4.000000pt;}
.wdf{width:4.320007pt;}
.wde{width:4.799988pt;}
.w148{width:5.440002pt;}
.w13d{width:6.080017pt;}
.w41{width:6.559998pt;}
.w92{width:6.880005pt;}
.w169{width:7.199982pt;}
.w174{width:7.359985pt;}
.w17{width:7.359986pt;}
.w132{width:8.000000pt;}
.w74{width:9.440002pt;}
.w14b{width:9.760010pt;}
.we7{width:10.720032pt;}
.w3{width:11.200012pt;}
.wef{width:12.160034pt;}
.w36{width:12.320007pt;}
.w103{width:12.960022pt;}
.w17d{width:13.919983pt;}
.w69{width:14.239990pt;}
.wc1{width:14.400025pt;}
.w10b{width:16.799988pt;}
.w17e{width:17.279968pt;}
.w48{width:18.239990pt;}
.we8{width:18.559997pt;}
.w140{width:19.040008pt;}
.w12b{width:19.359986pt;}
.w3c{width:19.520020pt;}
.w8b{width:21.119995pt;}
.w114{width:21.919983pt;}
.w8f{width:21.920014pt;}
.w1a{width:22.239990pt;}
.we{width:22.880005pt;}
.wec{width:23.040008pt;}
.w15b{width:23.359986pt;}
.w13f{width:24.000000pt;}
.w5b{width:24.320007pt;}
.w118{width:24.479980pt;}
.w6{width:24.480011pt;}
.wb6{width:24.959992pt;}
.w22{width:25.279999pt;}
.w166{width:25.440002pt;}
.w72{width:25.760010pt;}
.w76{width:28.159973pt;}
.w128{width:28.160004pt;}
.w115{width:28.799988pt;}
.we9{width:29.279999pt;}
.w82{width:29.760010pt;}
.wf6{width:30.880005pt;}
.w124{width:31.200012pt;}
.w5c{width:31.680008pt;}
.w14{width:31.840027pt;}
.w2b{width:32.000000pt;}
.w12{width:32.160034pt;}
.w16e{width:32.959991pt;}
.w51{width:32.960022pt;}
.w164{width:33.279999pt;}
.w20{width:33.600006pt;}
.w155{width:33.760010pt;}
.we4{width:34.239990pt;}
.w157{width:35.840012pt;}
.w167{width:36.479980pt;}
.w16{width:36.479981pt;}
.w4c{width:36.639984pt;}
.w56{width:36.640014pt;}
.wb{width:37.119995pt;}
.w145{width:37.279968pt;}
.w12c{width:37.440002pt;}
.wf1{width:38.079986pt;}
.w5e{width:38.559998pt;}
.w10d{width:38.880005pt;}
.w120{width:39.360001pt;}
.w13a{width:40.479980pt;}
.wfa{width:41.600037pt;}
.w3e{width:41.760010pt;}
.w136{width:42.239990pt;}
.wd2{width:43.359985pt;}
.wb9{width:43.359986pt;}
.we3{width:43.360001pt;}
.w9b{width:44.159973pt;}
.w96{width:45.600006pt;}
.w8d{width:46.399963pt;}
.w93{width:46.559997pt;}
.w129{width:46.880005pt;}
.wbc{width:47.519989pt;}
.w171{width:47.520020pt;}
.w73{width:47.679992pt;}
.wc8{width:47.839966pt;}
.w104{width:48.160004pt;}
.w172{width:48.640014pt;}
.w5a{width:48.800003pt;}
.wea{width:49.440002pt;}
.w98{width:49.600006pt;}
.w16b{width:50.080017pt;}
.wcd{width:50.400025pt;}
.w11c{width:50.880005pt;}
.wc5{width:51.200012pt;}
.w9d{width:53.279968pt;}
.w3a{width:53.440002pt;}
.w84{width:53.600037pt;}
.w112{width:53.760010pt;}
.w10f{width:54.080002pt;}
.w12f{width:54.720032pt;}
.wb1{width:56.000000pt;}
.wb4{width:56.800003pt;}
.w133{width:56.959991pt;}
.w17b{width:57.279968pt;}
.w10{width:58.080017pt;}
.w59{width:58.880005pt;}
.wc3{width:59.040039pt;}
.w5{width:60.000000pt;}
.w1c{width:60.799988pt;}
.w80{width:61.600037pt;}
.w2{width:61.919998pt;}
.w158{width:62.080002pt;}
.w70{width:63.359985pt;}
.we0{width:63.840012pt;}
.w111{width:64.480011pt;}
.wa3{width:65.119995pt;}
.wac{width:65.279999pt;}
.w2d{width:65.599975pt;}
.w177{width:65.919983pt;}
.w68{width:66.080017pt;}
.wc6{width:68.320007pt;}
.w31{width:68.479980pt;}
.wb0{width:68.639984pt;}
.w121{width:69.440003pt;}
.w179{width:70.880005pt;}
.w15a{width:71.200012pt;}
.w14a{width:71.839966pt;}
.w42{width:72.160004pt;}
.w162{width:73.119995pt;}
.w3f{width:73.440003pt;}
.w18{width:74.559998pt;}
.w65{width:75.199982pt;}
.w9{width:75.200012pt;}
.wd1{width:75.359985pt;}
.wbf{width:75.520020pt;}
.w63{width:76.479980pt;}
.w147{width:76.799988pt;}
.wd5{width:76.800019pt;}
.w40{width:77.120010pt;}
.w1e{width:77.440002pt;}
.w7c{width:77.440003pt;}
.w8e{width:79.040009pt;}
.w29{width:79.200012pt;}
.w49{width:79.360016pt;}
.w7{width:81.279999pt;}
.w10c{width:82.559997pt;}
.wd7{width:84.000000pt;}
.w95{width:84.479980pt;}
.wa8{width:86.239990pt;}
.wd9{width:86.240021pt;}
.w61{width:87.839996pt;}
.w11a{width:88.160004pt;}
.w176{width:88.320007pt;}
.w52{width:91.040008pt;}
.wcb{width:91.520004pt;}
.w17a{width:92.159973pt;}
.w14e{width:93.599975pt;}
.w9c{width:93.760010pt;}
.w7a{width:94.720001pt;}
.w23{width:94.880005pt;}
.wa6{width:95.040008pt;}
.w153{width:95.520019pt;}
.w143{width:95.680023pt;}
.w45{width:96.000000pt;}
.w154{width:96.159973pt;}
.w156{width:96.320007pt;}
.w4a{width:97.279999pt;}
.wdb{width:97.440003pt;}
.w9a{width:97.599975pt;}
.w60{width:99.040009pt;}
.w46{width:99.519989pt;}
.wdc{width:99.520019pt;}
.w14c{width:99.679992pt;}
.w15f{width:102.239990pt;}
.w125{width:102.240006pt;}
.wfc{width:102.880005pt;}
.wb7{width:103.200012pt;}
.w87{width:103.359985pt;}
.w17c{width:104.159973pt;}
.wb2{width:104.959961pt;}
.w8a{width:105.440003pt;}
.w152{width:106.399963pt;}
.w6f{width:106.719970pt;}
.w58{width:107.039978pt;}
.w170{width:107.040008pt;}
.w10e{width:107.360001pt;}
.w75{width:107.839966pt;}
.wd0{width:108.000000pt;}
.w10a{width:108.159973pt;}
.w8c{width:108.959961pt;}
.w161{width:108.959991pt;}
.w175{width:109.119995pt;}
.w122{width:109.440003pt;}
.wb5{width:109.600006pt;}
.w25{width:109.760010pt;}
.w7d{width:111.040008pt;}
.w149{width:111.359985pt;}
.wfd{width:111.679993pt;}
.wae{width:111.680023pt;}
.w168{width:112.320008pt;}
.w135{width:112.959991pt;}
.w11e{width:113.119995pt;}
.w15c{width:113.919983pt;}
.w6c{width:114.080017pt;}
.w165{width:116.320008pt;}
.w127{width:116.640000pt;}
.w102{width:117.440002pt;}
.w3d{width:117.440003pt;}
.wc7{width:117.599975pt;}
.w39{width:118.399963pt;}
.w105{width:118.400025pt;}
.wbb{width:118.559998pt;}
.w110{width:119.200012pt;}
.w85{width:119.519989pt;}
.w101{width:120.480011pt;}
.wa1{width:122.240006pt;}
.wf7{width:122.880005pt;}
.w173{width:124.000000pt;}
.w43{width:125.440003pt;}
.w79{width:125.760010pt;}
.w33{width:126.239990pt;}
.wa0{width:126.240006pt;}
.w106{width:126.720001pt;}
.w35{width:126.880005pt;}
.w30{width:128.799988pt;}
.wf5{width:128.959961pt;}
.w13e{width:128.959991pt;}
.w14d{width:129.119995pt;}
.w14f{width:129.440002pt;}
.w15{width:129.440003pt;}
.waa{width:129.600006pt;}
.w7b{width:129.919998pt;}
.w11f{width:130.399963pt;}
.wd{width:130.880005pt;}
.w151{width:132.479980pt;}
.wf3{width:132.799988pt;}
.w146{width:132.959961pt;}
.wd4{width:133.440002pt;}
.w126{width:133.440003pt;}
.wa4{width:133.600006pt;}
.waf{width:134.720001pt;}
.w2f{width:136.000000pt;}
.wc9{width:137.919983pt;}
.wb3{width:138.239990pt;}
.w15e{width:138.400025pt;}
.w32{width:138.559997pt;}
.w26{width:139.040008pt;}
.wf8{width:139.040009pt;}
.w28{width:139.200012pt;}
.wf{width:139.520020pt;}
.w11d{width:140.000000pt;}
.w71{width:140.159973pt;}
.w55{width:140.320007pt;}
.w3b{width:141.599975pt;}
.w2a{width:143.200012pt;}
.wca{width:144.160004pt;}
.w34{width:145.279968pt;}
.w2e{width:145.440002pt;}
.w77{width:145.919998pt;}
.w178{width:147.359985pt;}
.w27{width:147.839997pt;}
.w117{width:148.000000pt;}
.w15d{width:148.479980pt;}
.w2c{width:149.119995pt;}
.w57{width:149.279968pt;}
.w37{width:149.440002pt;}
.w38{width:149.599975pt;}
.w16c{width:150.559997pt;}
.w139{width:152.000000pt;}
.w78{width:152.160004pt;}
.w11{width:152.800019pt;}
.wa5{width:153.279999pt;}
.w9e{width:153.599975pt;}
.wf4{width:154.080017pt;}
.w159{width:156.480011pt;}
.w21{width:156.800019pt;}
.wa9{width:157.279999pt;}
.we2{width:157.440003pt;}
.wbd{width:159.519989pt;}
.w107{width:160.160004pt;}
.w108{width:161.440002pt;}
.w13{width:162.880005pt;}
.w1b{width:164.960022pt;}
.we1{width:165.440003pt;}
.w100{width:166.399994pt;}
.w4{width:167.040009pt;}
.w6b{width:167.519989pt;}
.wba{width:168.320007pt;}
.wff{width:168.799988pt;}
.w54{width:168.959991pt;}
.w11b{width:169.920014pt;}
.w24{width:171.359985pt;}
.w8{width:173.440003pt;}
.wab{width:174.559997pt;}
.wad{width:175.199982pt;}
.wfe{width:175.200012pt;}
.w113{width:175.839996pt;}
.w89{width:176.160004pt;}
.w90{width:177.119995pt;}
.wce{width:177.279999pt;}
.w88{width:178.240021pt;}
.wcf{width:178.880005pt;}
.w44{width:179.199982pt;}
.wc{width:181.440003pt;}
.wbe{width:183.359985pt;}
.wfb{width:184.000000pt;}
.w160{width:184.640015pt;}
.w47{width:187.360016pt;}
.w5f{width:187.839996pt;}
.wda{width:189.440002pt;}
.w53{width:189.440003pt;}
.w4b{width:189.600006pt;}
.wa7{width:191.839997pt;}
.w119{width:193.440002pt;}
.w1d{width:193.440003pt;}
.w97{width:196.959991pt;}
.w62{width:199.040009pt;}
.wd8{width:202.239990pt;}
.wd6{width:202.880005pt;}
.w64{width:205.920014pt;}
.w163{width:208.320007pt;}
.w137{width:208.640015pt;}
.w130{width:209.119995pt;}
.w1f{width:209.440003pt;}
.w141{width:211.200012pt;}
.w66{width:211.680023pt;}
.wc4{width:212.320007pt;}
.w67{width:215.519989pt;}
.w5d{width:216.000000pt;}
.w7f{width:220.000000pt;}
.wa2{width:221.760010pt;}
.w86{width:225.119995pt;}
.wf0{width:226.880005pt;}
.wc2{width:227.839966pt;}
.wcc{width:229.760010pt;}
.w99{width:231.839997pt;}
.w12e{width:232.159973pt;}
.w83{width:233.279968pt;}
.w16a{width:236.799988pt;}
.web{width:237.440003pt;}
.wd3{width:238.240021pt;}
.wf9{width:239.520019pt;}
.w94{width:240.320008pt;}
.wb8{width:243.520019pt;}
.wf2{width:243.520020pt;}
.w4d{width:244.960022pt;}
.w13b{width:246.400025pt;}
.w12d{width:249.440003pt;}
.w81{width:252.000000pt;}
.we5{width:252.640015pt;}
.w50{width:253.919983pt;}
.w16f{width:253.920014pt;}
.w19{width:256.800019pt;}
.w116{width:258.080017pt;}
.w12a{width:262.239990pt;}
.wed{width:263.839997pt;}
.w6a{width:266.720001pt;}
.wee{width:269.440002pt;}
.we6{width:270.880005pt;}
.wc0{width:272.479980pt;}
.w91{width:274.719971pt;}
.w131{width:274.880005pt;}
.w13c{width:280.799988pt;}
.w4e{width:283.359985pt;}
.w109{width:284.640015pt;}
.w6e{width:286.240021pt;}
.wa{width:286.880005pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x52{left:-460.160012pt;}
.x34{left:-453.760010pt;}
.x138{left:-444.160004pt;}
.xb5{left:-432.640015pt;}
.x104{left:-430.880005pt;}
.x125{left:-425.760010pt;}
.xba{left:-416.640015pt;}
.x85{left:-412.160004pt;}
.xe0{left:-408.960007pt;}
.x135{left:-405.920014pt;}
.x7a{left:-404.160004pt;}
.xf1{left:-396.320008pt;}
.xf3{left:-389.920014pt;}
.xb4{left:-382.720017pt;}
.x84{left:-381.600006pt;}
.x107{left:-378.240006pt;}
.x51{left:-368.000015pt;}
.xd0{left:-365.760010pt;}
.x53{left:-361.920014pt;}
.x7c{left:-360.160004pt;}
.x156{left:-356.160004pt;}
.x118{left:-350.560013pt;}
.x31{left:-348.640015pt;}
.x35{left:-346.720017pt;}
.xf0{left:-343.520005pt;}
.x134{left:-340.800003pt;}
.x95{left:-335.520005pt;}
.x15c{left:-333.600006pt;}
.x7b{left:-328.480011pt;}
.x132{left:-325.600006pt;}
.x173{left:-322.560013pt;}
.x77{left:-306.240021pt;}
.x32{left:-297.920014pt;}
.x80{left:-293.279999pt;}
.xa3{left:-286.240021pt;}
.xa1{left:-266.720001pt;}
.x11a{left:-263.839997pt;}
.x133{left:-258.080017pt;}
.x4b{left:-256.800019pt;}
.x174{left:-253.920014pt;}
.x117{left:-252.640015pt;}
.x152{left:-249.440003pt;}
.x158{left:-246.400025pt;}
.x81{left:-244.960022pt;}
.x11c{left:-243.520020pt;}
.xcc{left:-240.320008pt;}
.x105{left:-238.240021pt;}
.xd1{left:-231.839997pt;}
.x15a{left:-226.880005pt;}
.x119{left:-221.760010pt;}
.x9e{left:-211.680023pt;}
.x4f{left:-209.440003pt;}
.x9d{left:-205.920014pt;}
.x9b{left:-199.040009pt;}
.x4e{left:-193.440003pt;}
.xdd{left:-191.839997pt;}
.x7f{left:-189.600006pt;}
.x79{left:-187.360016pt;}
.x170{left:-184.640015pt;}
.x39{left:-181.440003pt;}
.xbb{left:-178.240021pt;}
.xcb{left:-177.119995pt;}
.x124{left:-175.200012pt;}
.x28{left:-173.280007pt;}
.x137{left:-169.920014pt;}
.x10{left:-166.880005pt;}
.x4c{left:-164.960022pt;}
.x46{left:-162.880005pt;}
.x128{left:-160.160004pt;}
.x54{left:-156.800019pt;}
.x11d{left:-154.080017pt;}
.x43{left:-152.800019pt;}
.x59{left:-147.839997pt;}
.xa9{left:-145.760010pt;}
.xfa{left:-144.000000pt;}
.x40{left:-139.520020pt;}
.x16e{left:-138.400025pt;}
.x14c{left:-133.279999pt;}
.x3c{left:-130.880005pt;}
.x48{left:-129.440003pt;}
.x76{left:-125.279999pt;}
.xd9{left:-122.080002pt;}
.x127{left:-120.480011pt;}
.xf2{left:-118.559998pt;}
.x68{left:-117.279999pt;}
.x172{left:-116.320008pt;}
.xa2{left:-114.080017pt;}
.xe1{left:-111.680023pt;}
.x58{left:-109.760010pt;}
.x103{left:-108.000000pt;}
.xbd{left:-105.440003pt;}
.xeb{left:-103.040009pt;}
.x14a{left:-102.080002pt;}
.x9a{left:-99.040009pt;}
.x10b{left:-97.440003pt;}
.x78{left:-96.000000pt;}
.x57{left:-94.880005pt;}
.xfd{left:-91.360001pt;}
.x136{left:-88.160004pt;}
.x10a{left:-86.240021pt;}
.x109{left:-84.000000pt;}
.x27{left:-81.120010pt;}
.x7e{left:-79.360016pt;}
.x6b{left:-76.960007pt;}
.x29{left:-75.040009pt;}
.x6a{left:-73.279999pt;}
.x70{left:-72.000000pt;}
.x16c{left:-71.040009pt;}
.x144{left:-69.279999pt;}
.xa0{left:-66.080017pt;}
.xdb{left:-65.119995pt;}
.x112{left:-63.680008pt;}
.xd{left:-61.760010pt;}
.x4d{left:-60.799988pt;}
.x12{left:-59.840012pt;}
.x42{left:-58.080017pt;}
.xe6{left:-56.640000pt;}
.x153{left:-54.720032pt;}
.xb9{left:-53.600037pt;}
.x102{left:-50.400025pt;}
.x88{left:-48.640000pt;}
.x151{left:-46.720001pt;}
.xef{left:-43.359986pt;}
.x69{left:-41.600006pt;}
.x96{left:-38.559998pt;}
.x37{left:-37.119995pt;}
.x167{left:-35.680008pt;}
.x163{left:-33.600006pt;}
.x45{left:-32.160034pt;}
.x147{left:-31.040009pt;}
.xb7{left:-29.760010pt;}
.x150{left:-28.000000pt;}
.x25{left:-24.320007pt;}
.x3e{left:-22.880005pt;}
.xc8{left:-21.760010pt;}
.x64{left:-19.360016pt;}
.xf4{left:-14.400025pt;}
.x11b{left:-12.160034pt;}
.xe{left:-11.040009pt;}
.x49{left:-7.359986pt;}
.x6f{left:-6.399994pt;}
.x83{left:-3.520020pt;}
.xb6{left:-2.239990pt;}
.x0{left:0.000000pt;}
.x1{left:113.440002pt;}
.x5{left:119.839996pt;}
.x10d{left:121.440002pt;}
.x10e{left:129.440002pt;}
.x15f{left:130.399994pt;}
.xa7{left:134.720001pt;}
.xbf{left:137.440002pt;}
.xa6{left:140.960007pt;}
.xf6{left:142.720001pt;}
.x11f{left:147.839996pt;}
.x13d{left:153.440002pt;}
.xa8{left:156.960007pt;}
.x63{left:161.440002pt;}
.xd3{left:164.639999pt;}
.x12d{left:167.679993pt;}
.x5c{left:169.440002pt;}
.xe3{left:177.279999pt;}
.x12b{left:179.520004pt;}
.xe4{left:183.679993pt;}
.x13c{left:184.639999pt;}
.xa5{left:190.880005pt;}
.x62{left:192.000000pt;}
.xf7{left:195.360001pt;}
.x2{left:196.320007pt;}
.x9{left:205.600006pt;}
.xc0{left:207.839996pt;}
.x5f{left:209.759995pt;}
.xa{left:211.679993pt;}
.x5e{left:213.440002pt;}
.x61{left:214.720001pt;}
.x160{left:215.679993pt;}
.x13b{left:217.440002pt;}
.x10c{left:223.039993pt;}
.x3{left:224.960007pt;}
.x6{left:226.880005pt;}
.xe2{left:230.080002pt;}
.x12c{left:232.800003pt;}
.x86{left:238.080002pt;}
.x13f{left:240.000000pt;}
.x10f{left:243.520004pt;}
.x5d{left:245.119995pt;}
.x7{left:246.399994pt;}
.x12a{left:248.000000pt;}
.x15e{left:251.039993pt;}
.x15d{left:253.119995pt;}
.x87{left:255.199997pt;}
.x13e{left:258.720001pt;}
.x8{left:262.399994pt;}
.xc1{left:264.959991pt;}
.x5b{left:267.359985pt;}
.x4{left:275.679993pt;}
.x60{left:280.320007pt;}
.xc{left:286.880005pt;}
.x14f{left:290.559998pt;}
.x168{left:294.079987pt;}
.x91{left:301.119995pt;}
.x6c{left:305.119995pt;}
.x92{left:307.040009pt;}
.x12e{left:308.799988pt;}
.x113{left:309.920013pt;}
.x14d{left:310.880005pt;}
.x2b{left:312.160004pt;}
.x12f{left:315.679993pt;}
.x21{left:316.959991pt;}
.x2a{left:320.480011pt;}
.x71{left:323.519989pt;}
.x115{left:324.959991pt;}
.x149{left:327.359985pt;}
.x72{left:328.799988pt;}
.xfb{left:330.239990pt;}
.xc6{left:332.480011pt;}
.xc4{left:333.440002pt;}
.xe7{left:334.399994pt;}
.xfc{left:335.519989pt;}
.xc9{left:336.480011pt;}
.x11{left:338.399994pt;}
.xca{left:341.920013pt;}
.x145{left:343.839996pt;}
.x14e{left:346.880005pt;}
.xd8{left:352.160004pt;}
.xda{left:355.359985pt;}
.x8f{left:362.079987pt;}
.x8d{left:363.359985pt;}
.x26{left:364.320007pt;}
.x8e{left:367.839996pt;}
.xc5{left:371.359985pt;}
.xd6{left:373.119995pt;}
.x8c{left:374.720001pt;}
.x74{left:377.920013pt;}
.x24{left:380.320007pt;}
.xd5{left:381.920013pt;}
.x6e{left:384.160004pt;}
.x67{left:386.399994pt;}
.x165{left:389.119995pt;}
.xb0{left:390.239990pt;}
.x14{left:392.320007pt;}
.x16b{left:393.920013pt;}
.xb1{left:395.519989pt;}
.xc2{left:396.640015pt;}
.xaa{left:397.920013pt;}
.x146{left:399.839996pt;}
.x162{left:400.799988pt;}
.xb{left:404.320007pt;}
.xae{left:406.399994pt;}
.x22{left:408.799988pt;}
.x1c{left:410.880005pt;}
.x1e{left:413.440002pt;}
.xf{left:416.320007pt;}
.x116{left:419.679993pt;}
.x19{left:420.959991pt;}
.x2f{left:425.920013pt;}
.x161{left:427.200012pt;}
.x17{left:434.239990pt;}
.x164{left:435.359985pt;}
.x169{left:437.440002pt;}
.x148{left:438.880005pt;}
.x15{left:442.880005pt;}
.x1d{left:444.320007pt;}
.xe8{left:446.399994pt;}
.x123{left:448.320007pt;}
.x122{left:453.279999pt;}
.x93{left:454.399994pt;}
.x75{left:455.839996pt;}
.x2d{left:458.079987pt;}
.x94{left:459.679993pt;}
.xd7{left:461.440002pt;}
.xb2{left:463.040009pt;}
.x2e{left:464.000000pt;}
.x65{left:465.920013pt;}
.xb3{left:468.320007pt;}
.xe9{left:470.239990pt;}
.x8b{left:474.720001pt;}
.x101{left:476.320007pt;}
.x66{left:477.760010pt;}
.x2c{left:478.880005pt;}
.x130{left:480.160004pt;}
.xc7{left:483.839996pt;}
.x131{left:485.600006pt;}
.x100{left:487.519989pt;}
.xff{left:489.760010pt;}
.x6d{left:494.399994pt;}
.x143{left:496.000000pt;}
.xfe{left:496.959991pt;}
.xea{left:498.239990pt;}
.x20{left:499.200012pt;}
.x166{left:500.640015pt;}
.x89{left:502.880005pt;}
.x90{left:507.679993pt;}
.xd4{left:508.640015pt;}
.xaf{left:512.000000pt;}
.x23{left:512.960022pt;}
.xed{left:514.719971pt;}
.x18{left:515.679993pt;}
.xf8{left:516.640015pt;}
.x142{left:519.039978pt;}
.xad{left:520.159973pt;}
.xf9{left:523.359985pt;}
.x120{left:526.239990pt;}
.xe5{left:530.400024pt;}
.x121{left:532.159973pt;}
.x8a{left:535.200012pt;}
.x13{left:536.640015pt;}
.x1a{left:538.880005pt;}
.x1b{left:541.599976pt;}
.xac{left:544.000000pt;}
.x16a{left:544.960022pt;}
.x140{left:549.119995pt;}
.x16{left:550.880005pt;}
.x141{left:554.400024pt;}
.x114{left:556.320007pt;}
.x110{left:557.760010pt;}
.xec{left:559.359985pt;}
.xc3{left:561.599976pt;}
.x111{left:563.039978pt;}
.x1f{left:566.400024pt;}
.x14b{left:567.679993pt;}
.x73{left:570.239990pt;}
.xab{left:571.520020pt;}
.x30{left:573.760010pt;}
.x159{left:575.679993pt;}
.xd2{left:577.119995pt;}
.x108{left:578.559998pt;}
.x171{left:581.119995pt;}
.x9f{left:583.200012pt;}
.x50{left:586.080017pt;}
.xdf{left:588.000000pt;}
.x126{left:590.559998pt;}
.xb8{left:594.880005pt;}
.x99{left:599.520020pt;}
.xa4{left:601.919983pt;}
.x11e{left:604.640015pt;}
.x36{left:605.760010pt;}
.x7d{left:610.400024pt;}
.xce{left:617.919983pt;}
.xbe{left:620.159973pt;}
.x9c{left:621.440002pt;}
.x16d{left:622.400024pt;}
.xee{left:624.960022pt;}
.x56{left:627.200012pt;}
.xdc{left:629.760010pt;}
.x175{left:631.039978pt;}
.x3b{left:633.280029pt;}
.x97{left:636.960022pt;}
.x3a{left:639.359985pt;}
.x44{left:642.239990pt;}
.x155{left:650.559998pt;}
.x33{left:652.960022pt;}
.x129{left:656.320007pt;}
.xcf{left:667.520020pt;}
.x15b{left:669.280029pt;}
.xcd{left:671.359985pt;}
.x106{left:673.280029pt;}
.x176{left:677.760010pt;}
.xde{left:678.719971pt;}
.x82{left:680.799988pt;}
.xbc{left:682.719971pt;}
.x157{left:685.119995pt;}
.x139{left:686.880005pt;}
.xf5{left:691.200012pt;}
.x55{left:692.159973pt;}
.x16f{left:697.760010pt;}
.x4a{left:700.000000pt;}
.x41{left:702.559998pt;}
.x13a{left:704.159973pt;}
.x154{left:706.559998pt;}
.x3f{left:709.760010pt;}
.x47{left:712.320007pt;}
.x98{left:713.919983pt;}
.x5a{left:715.359985pt;}
.x3d{left:719.200012pt;}
.x38{left:722.880005pt;}
}




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