
    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_0515d41e8a769aa9c8a944a8.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e95c934cd262d36c2d49a07d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_94b7125152a6f2ed897a2cbe.woff')format("woff");}.ff3{font-family:ff3;line-height:0.962402;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_f51559ee2a0127cbd613f288.woff')format("woff");}.ff4{font-family:ff4;line-height:1.194336;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_0aac026b114c08db047507e0.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0dc80ec9b13b6806cae6b246.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e3dde1e255cc7d1d18694a4b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_06b80b0220ee8a25fccadd3b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_7af24cd736e36fc63e2f283e.woff')format("woff");}.ff9{font-family:ff9;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_bf30e3c59ca0af6ecacb98ce.woff')format("woff");}.ffa{font-family:ffa;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a3c7636975e4740ea8a69936.woff')format("woff");}.ffb{font-family:ffb;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v5{vertical-align:-23.759996px;}
.v6{vertical-align:-20.880063px;}
.v7{vertical-align:-12.240139px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.880063px;}
.v3{vertical-align:5.759991px;}
.v2{vertical-align:15.840018px;}
.v4{vertical-align:23.759995px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000306px;}
.lsf{letter-spacing:0.004916px;}
.ls7{letter-spacing:0.005369px;}
.ls3{letter-spacing:0.005825px;}
.lsc{letter-spacing:0.026379px;}
.ls1c{letter-spacing:0.055375px;}
.lsb{letter-spacing:0.122634px;}
.ls10{letter-spacing:0.149118px;}
.ls13{letter-spacing:0.149150px;}
.ls17{letter-spacing:0.173700px;}
.ls12{letter-spacing:0.173736px;}
.ls1{letter-spacing:0.893511px;}
.ls11{letter-spacing:0.893754px;}
.ls1b{letter-spacing:0.894528px;}
.ls18{letter-spacing:2.309132px;}
.ls16{letter-spacing:4.469150px;}
.ls15{letter-spacing:13.829123px;}
.ls19{letter-spacing:38.530772px;}
.ls14{letter-spacing:39.250786px;}
.lse{letter-spacing:39.304640px;}
.ls1a{letter-spacing:50.050759px;}
.ls6{letter-spacing:59.410768px;}
.lsd{letter-spacing:64.085852px;}
.ls1d{letter-spacing:69.490795px;}
.ls2{letter-spacing:81.502063px;}
.ls9{letter-spacing:86.549172px;}
.lsa{letter-spacing:106.709186px;}
.ls4{letter-spacing:662.249523px;}
.ls5{letter-spacing:968.687407px;}
.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;}
}
.ws2{word-spacing:-66.242700px;}
.ws4{word-spacing:-59.762250px;}
.ws1{word-spacing:-14.970850px;}
.ws8{word-spacing:-14.969630px;}
.ws3{word-spacing:-13.506269px;}
.ws5{word-spacing:-9.438126px;}
.ws6{word-spacing:-8.787216px;}
.ws7{word-spacing:-6.834504px;}
.ws0{word-spacing:0.000000px;}
._17{margin-left:-13.194002px;}
._34{margin-left:-11.824209px;}
._15{margin-left:-10.144988px;}
._9{margin-left:-6.890559px;}
._16{margin-left:-5.585095px;}
._7{margin-left:-4.158163px;}
._20{margin-left:-2.501588px;}
._2{margin-left:-1.378317px;}
._1{width:1.446242px;}
._5{width:2.987837px;}
._6{width:4.012515px;}
._8{width:5.068888px;}
._30{width:6.311512px;}
._4{width:7.397434px;}
._1e{width:8.876781px;}
._31{width:9.921159px;}
._1c{width:10.948967px;}
._1d{width:12.481400px;}
._39{width:13.627112px;}
._32{width:16.023229px;}
._33{width:17.162025px;}
._41{width:18.296478px;}
._1b{width:19.853920px;}
._36{width:20.891679px;}
._37{width:22.503887px;}
._42{width:25.002511px;}
._48{width:26.755988px;}
._53{width:28.541808px;}
._3a{width:30.140946px;}
._4b{width:31.445895px;}
._38{width:32.518985px;}
._1f{width:33.929491px;}
._4e{width:38.183597px;}
._0{width:39.379711px;}
._3{width:40.741997px;}
._47{width:42.111916px;}
._35{width:43.502047px;}
._46{width:44.732947px;}
._3e{width:50.972723px;}
._3c{width:55.253398px;}
._3b{width:57.275353px;}
._5a{width:58.325577px;}
._59{width:59.395453px;}
._3d{width:61.426649px;}
._43{width:65.790975px;}
._5b{width:69.540109px;}
._55{width:71.070553px;}
._54{width:72.189601px;}
._3f{width:75.742835px;}
._40{width:77.198622px;}
._45{width:86.903608px;}
._44{width:88.388243px;}
._12{width:96.720164px;}
._58{width:103.047151px;}
._52{width:104.718066px;}
._51{width:105.970624px;}
._5c{width:110.060260px;}
._49{width:116.146847px;}
._1a{width:117.298377px;}
._5d{width:127.166560px;}
._14{width:146.006205px;}
._19{width:150.817183px;}
._b{width:152.101710px;}
._56{width:168.087757px;}
._57{width:169.512894px;}
._18{width:189.674429px;}
._e{width:201.458231px;}
._10{width:204.306598px;}
._d{width:218.286997px;}
._4f{width:274.636923px;}
._5e{width:276.954260px;}
._4d{width:300.823684px;}
._50{width:311.729811px;}
._4c{width:339.609763px;}
._4a{width:374.347087px;}
._a{width:436.030702px;}
._c{width:500.286121px;}
._f{width:577.936927px;}
._11{width:674.130441px;}
._21{width:780.696535px;}
._13{width:848.911931px;}
._2d{width:1237.432267px;}
._24{width:1258.053671px;}
._28{width:1287.326475px;}
._23{width:1299.463898px;}
._22{width:1302.917833px;}
._25{width:1305.616605px;}
._27{width:1307.568537px;}
._2b{width:1319.962649px;}
._26{width:1335.363301px;}
._2f{width:1339.626122px;}
._29{width:1343.142678px;}
._2a{width:1346.364505px;}
._2c{width:1360.922115px;}
._2e{width:1362.922075px;}
.fc9{color:rgb(119,29,135);}
.fc7{color:rgb(0,0,255);}
.fc6{color:rgb(61,0,135);}
.fc4{color:rgb(30,73,125);}
.fc3{color:rgb(160,39,181);}
.fc8{color:rgb(249,116,31);}
.fc5{color:transparent;}
.fc1{color:rgb(255,0,186);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:30.241170px;}
.fsc{font-size:38.881485px;}
.fsa{font-size:41.761620px;}
.fsb{font-size:45.361800px;}
.fs8{font-size:48.241800px;}
.fsf{font-size:59.757750px;}
.fs0{font-size:59.762250px;}
.fs10{font-size:66.237300px;}
.fs1{font-size:66.242700px;}
.fse{font-size:69.122700px;}
.fs7{font-size:72.002705px;}
.fs11{font-size:84.236846px;}
.fs4{font-size:84.243145px;}
.fs6{font-size:90.003596px;}
.fs9{font-size:95.763600px;}
.fs2{font-size:108.004050px;}
.fs5{font-size:216.008550px;}
.fs3{font-size:288.011259px;}
.y0{bottom:0.000000px;}
.y3d{bottom:3.779984px;}
.y43{bottom:3.780001px;}
.y2{bottom:3.959997px;}
.y40{bottom:3.960021px;}
.y50{bottom:4.500000px;}
.y18c{bottom:45.899986px;}
.y6{bottom:45.900055px;}
.y1a{bottom:46.440033px;}
.y18b{bottom:69.300041px;}
.y5{bottom:69.300110px;}
.y1af{bottom:71.100013px;}
.y19{bottom:71.100083px;}
.y112{bottom:94.320099px;}
.y3f{bottom:96.840088px;}
.y1ad{bottom:97.379997px;}
.y166{bottom:104.040115px;}
.y41{bottom:104.760132px;}
.y111{bottom:115.380066px;}
.y1ac{bottom:117.360008px;}
.y165{bottom:124.200096px;}
.y3c{bottom:126.000068px;}
.y110{bottom:132.120072px;}
.y1ab{bottom:133.019988px;}
.y3e{bottom:133.740074px;}
.ydf{bottom:134.100083px;}
.y1cf{bottom:135.899986px;}
.y10f{bottom:143.100083px;}
.y164{bottom:144.360077px;}
.yde{bottom:150.840088px;}
.y1ce{bottom:156.060035px;}
.y1aa{bottom:158.399986px;}
.y3b{bottom:163.980079px;}
.y163{bottom:164.520058px;}
.y10e{bottom:165.240074px;}
.ydd{bottom:167.580093px;}
.y1cd{bottom:171.720016px;}
.y139{bottom:178.560036px;}
.y10d{bottom:181.440033px;}
.ydc{bottom:182.700096px;}
.y162{bottom:184.680039px;}
.y3a{bottom:193.140060px;}
.y1cc{bottom:197.100013px;}
.y1a9{bottom:198.720016px;}
.y138{bottom:198.720085px;}
.y10c{bottom:199.440033px;}
.ydb{bottom:202.500068px;}
.y161{bottom:204.840088px;}
.y1f7{bottom:212.220085px;}
.y1cb{bottom:212.759994px;}
.y10b{bottom:212.940033px;}
.y39{bottom:213.300041px;}
.y1a8{bottom:214.379997px;}
.yda{bottom:218.700096px;}
.y137{bottom:218.880066px;}
.y160{bottom:225.000068px;}
.y10a{bottom:230.940033px;}
.y38{bottom:233.460091px;}
.y1a7{bottom:235.259994px;}
.yd9{bottom:236.700096px;}
.y1f6{bottom:236.880066px;}
.y1ca{bottom:238.139991px;}
.y136{bottom:239.040047px;}
.y15f{bottom:245.880066px;}
.y109{bottom:251.640060px;}
.y37{bottom:253.620072px;}
.y1c9{bottom:253.800041px;}
.yd8{bottom:257.400055px;}
.y135{bottom:259.200096px;}
.y1a6{bottom:260.639991px;}
.y1f5{bottom:261.540047px;}
.y67{bottom:265.320099px;}
.y15e{bottom:266.040047px;}
.yd7{bottom:270.900055px;}
.y31{bottom:272.520058px;}
.y36{bottom:273.780052px;}
.y1c8{bottom:274.680037px;}
.y134{bottom:279.360077px;}
.y1a5{bottom:280.800041px;}
.y108{bottom:283.320099px;}
.y66{bottom:285.300041px;}
.y15d{bottom:286.200096px;}
.y187{bottom:288.000068px;}
.yd6{bottom:288.900055px;}
.y35{bottom:293.940033px;}
.y107{bottom:298.800041px;}
.y133{bottom:299.520058px;}
.y1c7{bottom:300.060035px;}
.y1a4{bottom:300.960022px;}
.y65{bottom:305.460091px;}
.y15c{bottom:306.360077px;}
.y186{bottom:307.980079px;}
.yd5{bottom:310.500068px;}
.y1f4{bottom:310.860077px;}
.y34{bottom:313.920043px;}
.y1a3{bottom:316.620003px;}
.y132{bottom:319.680039px;}
.y1c6{bottom:320.220016px;}
.y64{bottom:325.620072px;}
.y15b{bottom:326.520058px;}
.y185{bottom:328.140060px;}
.y106{bottom:333.360077px;}
.yd4{bottom:333.720085px;}
.y33{bottom:334.080093px;}
.y1f3{bottom:335.340088px;}
.y1c5{bottom:335.700027px;}
.y131{bottom:339.840088px;}
.y1a2{bottom:341.999999px;}
.y95{bottom:343.980079px;}
.y63{bottom:345.780052px;}
.y15a{bottom:346.680039px;}
.y184{bottom:348.300041px;}
.y105{bottom:353.520058px;}
.y32{bottom:354.240074px;}
.y130{bottom:359.820099px;}
.y1f2{bottom:360.000068px;}
.y1c4{bottom:361.259994px;}
.y1a1{bottom:362.160015px;}
.y62{bottom:365.940033px;}
.y159{bottom:366.840088px;}
.y94{bottom:368.640060px;}
.y183{bottom:369.360077px;}
.y104{bottom:373.680039px;}
.yd3{bottom:379.260064px;}
.y12f{bottom:379.980079px;}
.y1c3{bottom:381.240005px;}
.y1a0{bottom:382.319996px;}
.y61{bottom:386.100083px;}
.y30{bottom:386.460091px;}
.y158{bottom:387.000068px;}
.y1f1{bottom:387.720085px;}
.yb0{bottom:390.420043px;}
.y93{bottom:393.300041px;}
.y103{bottom:393.840088px;}
.yd2{bottom:399.240074px;}
.y12e{bottom:400.140060px;}
.y1c2{bottom:401.400021px;}
.y19f{bottom:402.480010px;}
.y60{bottom:407.160049px;}
.y157{bottom:407.880066px;}
.y182{bottom:411.480079px;}
.y92{bottom:413.460091px;}
.y102{bottom:414.000068px;}
.yaf{bottom:415.080093px;}
.y1c1{bottom:417.060000px;}
.y19e{bottom:418.140025px;}
.yd1{bottom:419.400055px;}
.y12d{bottom:420.300041px;}
.y2f{bottom:423.900055px;}
.y5f{bottom:427.320099px;}
.y156{bottom:428.940033px;}
.y181{bottom:432.360077px;}
.y91{bottom:433.440033px;}
.y1f0{bottom:433.800041px;}
.y101{bottom:434.160049px;}
.yd0{bottom:439.560036px;}
.y12c{bottom:440.460091px;}
.y1c0{bottom:442.439998px;}
.y19d{bottom:443.520023px;}
.yae{bottom:445.320099px;}
.y5e{bottom:447.480079px;}
.y180{bottom:453.420043px;}
.y90{bottom:453.600083px;}
.y1ef{bottom:453.960091px;}
.y100{bottom:454.320099px;}
.y2e{bottom:458.460091px;}
.ycf{bottom:459.720085px;}
.y12b{bottom:460.620072px;}
.y1bf{bottom:462.600013px;}
.y19c{bottom:463.680004px;}
.y5d{bottom:468.360077px;}
.y155{bottom:469.440033px;}
.y1ee{bottom:469.620072px;}
.yff{bottom:474.300041px;}
.y17f{bottom:474.480079px;}
.yad{bottom:475.560036px;}
.y8f{bottom:478.260064px;}
.y2d{bottom:478.620072px;}
.yce{bottom:479.880066px;}
.y12a{bottom:480.780052px;}
.y1be{bottom:482.759994px;}
.y19b{bottom:483.660015px;}
.y5c{bottom:488.520058px;}
.yfe{bottom:494.460091px;}
.y17e{bottom:494.640060px;}
.y1ed{bottom:495.000068px;}
.y1bd{bottom:498.420009px;}
.y2c{bottom:498.780052px;}
.ycd{bottom:500.040047px;}
.y8e{bottom:502.920043px;}
.y19a{bottom:503.819996px;}
.yac{bottom:505.800041px;}
.y5b{bottom:508.680039px;}
.yfd{bottom:514.620072px;}
.y17d{bottom:514.800041px;}
.y1ec{bottom:515.160049px;}
.y27{bottom:517.680039px;}
.y2b{bottom:518.940033px;}
.y199{bottom:519.480010px;}
.y129{bottom:520.020058px;}
.ycc{bottom:520.200096px;}
.y154{bottom:523.440033px;}
.y1bc{bottom:523.800006px;}
.y8d{bottom:527.580093px;}
.y5a{bottom:529.740074px;}
.y1eb{bottom:530.820099px;}
.yfc{bottom:534.780052px;}
.y17c{bottom:534.960091px;}
.yab{bottom:536.220085px;}
.y2a{bottom:539.100083px;}
.ycb{bottom:540.360077px;}
.y1bb{bottom:543.960022px;}
.y153{bottom:544.500068px;}
.y198{bottom:544.860008px;}
.y8c{bottom:547.740074px;}
.y59{bottom:550.800041px;}
.yfb{bottom:554.940033px;}
.y1ea{bottom:556.200096px;}
.y29{bottom:559.260064px;}
.y152{bottom:559.980079px;}
.yca{bottom:560.520058px;}
.y1ba{bottom:564.120003px;}
.y197{bottom:565.020023px;}
.yaa{bottom:566.460091px;}
.y58{bottom:570.960091px;}
.y128{bottom:571.500068px;}
.y8b{bottom:572.400055px;}
.yfa{bottom:575.100083px;}
.y1e9{bottom:576.360077px;}
.y28{bottom:579.420043px;}
.y1b9{bottom:579.780017px;}
.yc9{bottom:580.680039px;}
.y151{bottom:581.040047px;}
.y196{bottom:585.180004px;}
.y57{bottom:590.940033px;}
.y127{bottom:591.660049px;}
.yf9{bottom:595.260064px;}
.y1e8{bottom:596.520058px;}
.ya9{bottom:596.700096px;}
.y8a{bottom:597.060036px;}
.yc8{bottom:600.660049px;}
.y1b8{bottom:605.160015px;}
.y195{bottom:605.340018px;}
.y150{bottom:606.420043px;}
.y56{bottom:611.100083px;}
.y26{bottom:611.460091px;}
.y126{bottom:611.820099px;}
.yf8{bottom:615.420043px;}
.y1e7{bottom:616.680039px;}
.y89{bottom:617.220085px;}
.yc7{bottom:620.820099px;}
.y14f{bottom:621.900055px;}
.y1b7{bottom:625.320013px;}
.y194{bottom:625.500016px;}
.ya8{bottom:626.940033px;}
.y125{bottom:631.980079px;}
.yf7{bottom:635.580093px;}
.y1e6{bottom:636.660049px;}
.y88{bottom:637.380066px;}
.yc6{bottom:640.980079px;}
.y193{bottom:641.160015px;}
.y1b6{bottom:645.480010px;}
.y14e{bottom:647.460091px;}
.y25{bottom:649.080093px;}
.y55{bottom:651.780052px;}
.y124{bottom:652.140060px;}
.yf6{bottom:655.740074px;}
.y17b{bottom:656.640060px;}
.y1e5{bottom:656.820099px;}
.ya7{bottom:657.180039px;}
.y87{bottom:657.360077px;}
.yc5{bottom:661.140060px;}
.y192{bottom:662.040012px;}
.y14d{bottom:662.940033px;}
.y1b5{bottom:665.640008px;}
.y123{bottom:672.300041px;}
.yf5{bottom:675.720085px;}
.y17a{bottom:676.800041px;}
.y1e4{bottom:676.980079px;}
.ya6{bottom:677.340088px;}
.yc4{bottom:681.300041px;}
.y86{bottom:682.020058px;}
.y1b4{bottom:685.620003px;}
.y24{bottom:686.520058px;}
.y191{bottom:687.420009px;}
.y14c{bottom:688.320065px;}
.y122{bottom:692.460056px;}
.yf4{bottom:695.880066px;}
.y179{bottom:696.960056px;}
.y1e3{bottom:697.140060px;}
.yc3{bottom:701.460056px;}
.y54{bottom:704.520058px;}
.y1b3{bottom:705.780017px;}
.y85{bottom:706.680073px;}
.y190{bottom:707.580007px;}
.ya5{bottom:707.580059px;}
.y14b{bottom:708.480079px;}
.y121{bottom:712.440067px;}
.y1e2{bottom:712.800076px;}
.yf3{bottom:716.040081px;}
.y178{bottom:717.120072px;}
.y23{bottom:721.080059px;}
.y1b2{bottom:721.440015px;}
.yc2{bottom:721.620072px;}
.y53{bottom:723.600083px;}
.y14a{bottom:724.140060px;}
.y18f{bottom:727.740005px;}
.ya4{bottom:727.740074px;}
.y84{bottom:731.340054px;}
.y120{bottom:735.660049px;}
.yf2{bottom:736.200061px;}
.y15{bottom:736.920078px;}
.y177{bottom:737.100083px;}
.y1e1{bottom:738.180073px;}
.yc1{bottom:741.780052px;}
.y22{bottom:745.740074px;}
.y1b1{bottom:746.820013px;}
.y18e{bottom:747.900003px;}
.ya3{bottom:747.900055px;}
.y149{bottom:749.520058px;}
.y83{bottom:756.000068px;}
.y52{bottom:756.360077px;}
.y176{bottom:757.260064px;}
.y1e0{bottom:758.340054px;}
.y11f{bottom:759.780052px;}
.yc0{bottom:761.940067px;}
.y1b0{bottom:762.480010px;}
.y18d{bottom:763.380014px;}
.y75{bottom:763.920078px;}
.y148{bottom:769.680073px;}
.y14{bottom:769.860077px;}
.y21{bottom:770.400055px;}
.ya2{bottom:773.640060px;}
.y1df{bottom:774.000068px;}
.yf1{bottom:776.520058px;}
.y175{bottom:777.420078px;}
.ya1{bottom:778.140060px;}
.y82{bottom:780.660049px;}
.ybf{bottom:782.100083px;}
.y51{bottom:782.460056px;}
.y11e{bottom:782.820065px;}
.y147{bottom:785.340054px;}
.y74{bottom:788.580059px;}
.y18a{bottom:792.720007px;}
.y20{bottom:795.060070px;}
.yf0{bottom:796.680073px;}
.y174{bottom:797.580059px;}
.y4f{bottom:798.120072px;}
.y1de{bottom:799.380066px;}
.ybe{bottom:802.080059px;}
.y13{bottom:802.800076px;}
.y81{bottom:805.320065px;}
.y11d{bottom:806.940067px;}
.ya0{bottom:808.380066px;}
.y146{bottom:810.720051px;}
.y1ae{bottom:814.500008px;}
.y188{bottom:816.120010px;}
.yef{bottom:816.840054px;}
.y73{bottom:817.020058px;}
.y173{bottom:817.740074px;}
.y1dd{bottom:819.540081px;}
.y189{bottom:820.080007px;}
.y1f{bottom:820.080059px;}
.ybd{bottom:822.240074px;}
.y80{bottom:825.480079px;}
.y9f{bottom:828.540081px;}
.y11c{bottom:830.880066px;}
.y4e{bottom:831.060070px;}
.yee{bottom:837.000068px;}
.y172{bottom:837.900055px;}
.y1dc{bottom:839.700061px;}
.ybc{bottom:842.400055px;}
.y72{bottom:844.380066px;}
.y145{bottom:846.540081px;}
.y7f{bottom:850.140060px;}
.y11b{bottom:855.000068px;}
.y1db{bottom:855.360077px;}
.y17{bottom:856.440067px;}
.yed{bottom:857.160049px;}
.y171{bottom:858.060070px;}
.y9e{bottom:858.780052px;}
.ybb{bottom:862.560070px;}
.y12{bottom:863.100083px;}
.y4d{bottom:867.420078px;}
.y71{bottom:871.740074px;}
.y144{bottom:871.920078px;}
.y7e{bottom:874.620072px;}
.yec{bottom:877.140060px;}
.y170{bottom:878.220051px;}
.y9d{bottom:878.940067px;}
.y1da{bottom:880.740074px;}
.yba{bottom:882.720051px;}
.y143{bottom:887.580059px;}
.y11{bottom:887.760064px;}
.y4c{bottom:892.080059px;}
.y1e{bottom:892.440067px;}
.yeb{bottom:897.300076px;}
.y16f{bottom:898.380066px;}
.y70{bottom:898.920078px;}
.y11a{bottom:899.100083px;}
.y7d{bottom:899.280052px;}
.y1d9{bottom:900.900055px;}
.yb9{bottom:902.880066px;}
.y9c{bottom:909.180073px;}
.y10{bottom:912.240074px;}
.y142{bottom:912.960056px;}
.y4b{bottom:916.740074px;}
.yea{bottom:917.460056px;}
.y16e{bottom:918.540081px;}
.y119{bottom:919.260064px;}
.y1d8{bottom:921.060070px;}
.y6f{bottom:921.780052px;}
.yb8{bottom:923.040081px;}
.y7c{bottom:923.940067px;}
.y1d{bottom:924.120072px;}
.y141{bottom:933.120072px;}
.y16{bottom:934.020058px;}
.y1d7{bottom:936.540081px;}
.yf{bottom:936.900055px;}
.ye9{bottom:937.620072px;}
.y16d{bottom:938.520058px;}
.y118{bottom:939.420078px;}
.y9b{bottom:939.600083px;}
.y4a{bottom:941.400055px;}
.yb7{bottom:943.200061px;}
.y7b{bottom:948.600083px;}
.y140{bottom:948.780053px;}
.y6e{bottom:949.140060px;}
.ye8{bottom:957.780053px;}
.y16c{bottom:958.680073px;}
.y117{bottom:959.580059px;}
.ye{bottom:961.560070px;}
.y1d6{bottom:962.100083px;}
.yb6{bottom:963.360077px;}
.y49{bottom:969.300076px;}
.y9a{bottom:969.840054px;}
.y7a{bottom:973.260064px;}
.y13f{bottom:974.160049px;}
.y6d{bottom:976.500068px;}
.ye7{bottom:977.940067px;}
.y16b{bottom:978.840070px;}
.y116{bottom:979.740074px;}
.y1d5{bottom:982.080059px;}
.yb5{bottom:983.520058px;}
.yd{bottom:986.220068px;}
.y13e{bottom:989.820065px;}
.y79{bottom:997.920061px;}
.ye6{bottom:998.100065px;}
.y16a{bottom:999.000068px;}
.y115{bottom:999.900072px;}
.y99{bottom:1000.080059px;}
.y1d4{bottom:1002.240074px;}
.yb4{bottom:1003.500068px;}
.y6c{bottom:1003.680073px;}
.y48{bottom:1007.640060px;}
.y13d{bottom:1010.700061px;}
.yc{bottom:1010.880066px;}
.y1d3{bottom:1017.900072px;}
.ye5{bottom:1018.440067px;}
.y169{bottom:1019.160067px;}
.y114{bottom:1020.060070px;}
.y1c{bottom:1022.580059px;}
.yb3{bottom:1023.660067px;}
.y98{bottom:1030.320065px;}
.y6b{bottom:1031.040064px;}
.yb{bottom:1035.540064px;}
.y13c{bottom:1036.080059px;}
.y1d2{bottom:1038.780069px;}
.y168{bottom:1039.320065px;}
.ye4{bottom:1039.500068px;}
.y113{bottom:1040.220068px;}
.y47{bottom:1041.840070px;}
.yb2{bottom:1043.820065px;}
.y78{bottom:1047.240074px;}
.y13b{bottom:1056.240074px;}
.y6a{bottom:1058.400072px;}
.y167{bottom:1059.480063px;}
.ya{bottom:1060.200061px;}
.ye3{bottom:1060.380066px;}
.y97{bottom:1060.560070px;}
.y1d1{bottom:1064.160067px;}
.y46{bottom:1066.320065px;}
.y77{bottom:1071.900072px;}
.y13a{bottom:1076.400072px;}
.ye2{bottom:1080.540064px;}
.yb1{bottom:1083.240074px;}
.y9{bottom:1084.860060px;}
.y69{bottom:1089.360060px;}
.y96{bottom:1090.800058px;}
.y76{bottom:1096.560070px;}
.y45{bottom:1099.080059px;}
.ye1{bottom:1100.520058px;}
.y1d0{bottom:1104.840070px;}
.y8{bottom:1109.520058px;}
.ye0{bottom:1120.680064px;}
.y42{bottom:1124.280069px;}
.y44{bottom:1132.020066px;}
.y7{bottom:1134.180064px;}
.y68{bottom:1137.060070px;}
.y1b{bottom:1140.840063px;}
.y4{bottom:1162.620063px;}
.y18{bottom:1184.400064px;}
.y1{bottom:1186.020066px;}
.y3{bottom:1189.980063px;}
.h2{height:18.180000px;}
.h31{height:19.979943px;}
.h2f{height:19.979978px;}
.h28{height:19.980011px;}
.h32{height:20.159980px;}
.h17{height:20.159981px;}
.h24{height:20.159998px;}
.h23{height:20.159999px;}
.h25{height:20.160015px;}
.h26{height:20.160016px;}
.h27{height:20.160050px;}
.h1b{height:20.340019px;}
.h14{height:21.599997px;}
.h12{height:21.600015px;}
.h13{height:21.779983px;}
.h20{height:32.878018px;}
.h1f{height:38.672649px;}
.h1c{height:42.126774px;}
.h22{height:42.127044px;}
.h1d{height:42.127048px;}
.h1e{height:45.118158px;}
.h18{height:49.396023px;}
.h29{height:50.231891px;}
.h2c{height:59.436786px;}
.h3{height:59.441261px;}
.h19{height:63.346897px;}
.hf{height:63.525714px;}
.h2d{height:65.881533px;}
.h4{height:65.886904px;}
.h2e{height:67.822079px;}
.h5{height:67.827608px;}
.h21{height:68.751435px;}
.hb{height:71.615971px;}
.ha{height:73.725425px;}
.h11{height:73.775881px;}
.hd{height:73.775886px;}
.he{height:74.495764px;}
.hc{height:74.496034px;}
.h10{height:74.496039px;}
.h16{height:77.375962px;}
.h1a{height:80.707018px;}
.h30{height:86.252278px;}
.h8{height:86.258729px;}
.h15{height:87.455989px;}
.h9{height:92.157002px;}
.h6{height:107.423950px;}
.h7{height:294.902153px;}
.h2a{height:892.980015px;}
.h2b{height:893.250000px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w19{width:3.419992px;}
.w13{width:3.600014px;}
.w8{width:3.779983px;}
.w28{width:3.780001px;}
.w3c{width:4.139992px;}
.wa{width:4.500000px;}
.w50{width:4.859939px;}
.w24{width:4.860008px;}
.w5d{width:5.039978px;}
.w57{width:5.039994px;}
.w12{width:5.039995px;}
.w48{width:5.040011px;}
.w2{width:7.020006px;}
.w1b{width:7.740006px;}
.w41{width:8.099945px;}
.w39{width:8.279983px;}
.w10{width:8.279984px;}
.w30{width:8.280000px;}
.wc{width:8.280001px;}
.w2b{width:8.280017px;}
.we{width:8.280018px;}
.w40{width:8.280053px;}
.w3f{width:8.459953px;}
.w3e{width:8.459988px;}
.w18{width:8.460005px;}
.w1e{width:8.460021px;}
.w4f{width:8.460022px;}
.w43{width:8.819961px;}
.w3d{width:8.819996px;}
.w42{width:8.819997px;}
.w46{width:9.000000px;}
.w4{width:9.180003px;}
.w33{width:9.899986px;}
.w44{width:10.079956px;}
.w3a{width:11.339985px;}
.w3b{width:14.039978px;}
.w22{width:16.740006px;}
.w4a{width:22.679970px;}
.w27{width:25.020006px;}
.w25{width:28.979976px;}
.w14{width:31.860008px;}
.wd{width:32.579990px;}
.w1a{width:38.340002px;}
.w4c{width:40.139992px;}
.w5f{width:43.560036px;}
.w21{width:46.259994px;}
.w1c{width:49.140000px;}
.w38{width:50.040012px;}
.w29{width:60.299990px;}
.w2f{width:62.640009px;}
.w15{width:63.000000px;}
.w55{width:63.540047px;}
.w64{width:63.899986px;}
.w3{width:68.039996px;}
.w60{width:68.580025px;}
.w20{width:69.300007px;}
.wf{width:70.740006px;}
.w51{width:72.900055px;}
.w4e{width:75.779983px;}
.w49{width:76.499983px;}
.w56{width:80.099997px;}
.w65{width:80.460022px;}
.w54{width:90.000000px;}
.wb{width:94.319996px;}
.w5{width:98.639992px;}
.w5a{width:106.560036px;}
.w5b{width:108.000000px;}
.w31{width:118.620002px;}
.w32{width:120.780018px;}
.w6{width:121.680005px;}
.w2a{width:124.560001px;}
.w61{width:128.340002px;}
.w9{width:133.200028px;}
.w62{width:138.060001px;}
.w63{width:143.639992px;}
.w36{width:147.420009px;}
.w47{width:151.379998px;}
.w4b{width:152.280001px;}
.w52{width:157.499982px;}
.w59{width:161.820030px;}
.w45{width:163.080008px;}
.w1d{width:167.399996px;}
.w17{width:174.599997px;}
.w11{width:175.500000px;}
.w5e{width:187.199993px;}
.w35{width:191.339951px;}
.w26{width:199.080025px;}
.w1f{width:216.539996px;}
.w34{width:217.620002px;}
.w23{width:219.599997px;}
.w5c{width:222.840002px;}
.w16{width:228.060001px;}
.w2c{width:228.060018px;}
.w37{width:232.919992px;}
.w53{width:257.760029px;}
.w58{width:329.939982px;}
.w4d{width:415.079973px;}
.w7{width:440.099997px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.w2d{width:1262.880060px;}
.w2e{width:1263.000000px;}
.x0{left:0.000000px;}
.x5{left:11.340000px;}
.xd{left:79.739997px;}
.x1{left:84.959997px;}
.x1d{left:86.219999px;}
.x14{left:93.060001px;}
.xf{left:94.500000px;}
.x8{left:108.719999px;}
.x1b{left:111.959997px;}
.x35{left:118.620002px;}
.x1c{left:120.599997px;}
.x36{left:122.400003px;}
.x50{left:128.879998px;}
.x1a{left:138.959997px;}
.x31{left:142.739997px;}
.x15{left:151.379998px;}
.x21{left:158.580008px;}
.x16{left:159.659998px;}
.x10{left:162.539996px;}
.x9{left:164.699993px;}
.x1f{left:165.960005px;}
.x4d{left:167.580008px;}
.x37{left:182.699993px;}
.x4{left:192.960005px;}
.x59{left:194.580008px;}
.x13{left:216.180005px;}
.x39{left:219.960005px;}
.x57{left:247.680005px;}
.xe{left:249.840002px;}
.x22{left:252.900003px;}
.x40{left:268.020006px;}
.x27{left:269.099997px;}
.x4b{left:271.979994px;}
.x28{left:274.139992px;}
.x2e{left:276.300007px;}
.x29{left:277.740006px;}
.x2f{left:279.719999px;}
.x4a{left:283.680005px;}
.x7{left:285.840002px;}
.x19{left:291.420010px;}
.x60{left:295.920010px;}
.x12{left:298.800007px;}
.x11{left:300.240006px;}
.xb{left:305.639992px;}
.x2a{left:309.600013px;}
.x34{left:313.199993px;}
.x30{left:318.060001px;}
.xc{left:321.480011px;}
.x54{left:325.079990px;}
.x2b{left:334.259994px;}
.x3b{left:365.939999px;}
.x45{left:374.759994px;}
.x33{left:380.519989px;}
.xa{left:384.480011px;}
.x5b{left:390.420010px;}
.x5c{left:395.459988px;}
.x2c{left:397.259994px;}
.x32{left:403.560001px;}
.x41{left:415.980011px;}
.x23{left:430.199993px;}
.x61{left:433.980011px;}
.x62{left:439.019989px;}
.x2{left:446.399987px;}
.x38{left:458.819996px;}
.x24{left:462.779983px;}
.x3c{left:497.160015px;}
.x46{left:505.620002px;}
.x42{left:508.319996px;}
.x2d{left:574.920010px;}
.x6{left:592.200027px;}
.x4e{left:595.259994px;}
.x17{left:599.759994px;}
.x18{left:603.539978px;}
.x3d{left:617.940033px;}
.x4f{left:635.399987px;}
.x5d{left:638.820030px;}
.x5e{left:643.860008px;}
.x25{left:651.779983px;}
.x63{left:659.159981px;}
.x64{left:667.259994px;}
.x51{left:671.039978px;}
.x52{left:679.320030px;}
.x53{left:684.179970px;}
.x55{left:685.259994px;}
.x56{left:693.539978px;}
.x58{left:701.820030px;}
.x5a{left:703.259994px;}
.x5f{left:712.440033px;}
.x26{left:722.519989px;}
.x65{left:751.500000px;}
.x3e{left:756.720017px;}
.x47{left:765.179970px;}
.x43{left:770.759994px;}
.x4c{left:779.399987px;}
.x20{left:791.100014px;}
.x3{left:799.559967px;}
.x1e{left:802.259994px;}
.x66{left:807.840019px;}
.x3f{left:986.940033px;}
.x44{left:991.080025px;}
.x48{left:995.039978px;}
.x49{left:997.019989px;}
.x3a{left:1139.759994px;}
@media print{
.v5{vertical-align:-21.119996pt;}
.v6{vertical-align:-18.560056pt;}
.v7{vertical-align:-10.880124pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.560056pt;}
.v3{vertical-align:5.119992pt;}
.v2{vertical-align:14.080016pt;}
.v4{vertical-align:21.119996pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000272pt;}
.lsf{letter-spacing:0.004370pt;}
.ls7{letter-spacing:0.004773pt;}
.ls3{letter-spacing:0.005178pt;}
.lsc{letter-spacing:0.023448pt;}
.ls1c{letter-spacing:0.049222pt;}
.lsb{letter-spacing:0.109008pt;}
.ls10{letter-spacing:0.132550pt;}
.ls13{letter-spacing:0.132578pt;}
.ls17{letter-spacing:0.154400pt;}
.ls12{letter-spacing:0.154432pt;}
.ls1{letter-spacing:0.794232pt;}
.ls11{letter-spacing:0.794448pt;}
.ls1b{letter-spacing:0.795136pt;}
.ls18{letter-spacing:2.052562pt;}
.ls16{letter-spacing:3.972578pt;}
.ls15{letter-spacing:12.292554pt;}
.ls19{letter-spacing:34.249575pt;}
.ls14{letter-spacing:34.889587pt;}
.lse{letter-spacing:34.937458pt;}
.ls1a{letter-spacing:44.489563pt;}
.ls6{letter-spacing:52.809571pt;}
.lsd{letter-spacing:56.965202pt;}
.ls1d{letter-spacing:61.769595pt;}
.ls2{letter-spacing:72.446278pt;}
.ls9{letter-spacing:76.932598pt;}
.lsa{letter-spacing:94.852610pt;}
.ls4{letter-spacing:588.666242pt;}
.ls5{letter-spacing:861.055473pt;}
.ws2{word-spacing:-58.882400pt;}
.ws4{word-spacing:-53.122000pt;}
.ws1{word-spacing:-13.307422pt;}
.ws8{word-spacing:-13.306338pt;}
.ws3{word-spacing:-12.005572pt;}
.ws5{word-spacing:-8.389445pt;}
.ws6{word-spacing:-7.810858pt;}
.ws7{word-spacing:-6.075115pt;}
.ws0{word-spacing:0.000000pt;}
._17{margin-left:-11.728001pt;}
._34{margin-left:-10.510408pt;}
._15{margin-left:-9.017767pt;}
._9{margin-left:-6.124941pt;}
._16{margin-left:-4.964529pt;}
._7{margin-left:-3.696144pt;}
._20{margin-left:-2.223633pt;}
._2{margin-left:-1.225171pt;}
._1{width:1.285548pt;}
._5{width:2.655855pt;}
._6{width:3.566680pt;}
._8{width:4.505678pt;}
._30{width:5.610233pt;}
._4{width:6.575497pt;}
._1e{width:7.890472pt;}
._31{width:8.818808pt;}
._1c{width:9.732415pt;}
._1d{width:11.094577pt;}
._39{width:12.112989pt;}
._32{width:14.242871pt;}
._33{width:15.255134pt;}
._41{width:16.263536pt;}
._1b{width:17.647929pt;}
._36{width:18.570382pt;}
._37{width:20.003455pt;}
._42{width:22.224454pt;}
._48{width:23.783101pt;}
._53{width:25.370496pt;}
._3a{width:26.791952pt;}
._4b{width:27.951907pt;}
._38{width:28.905765pt;}
._1f{width:30.159548pt;}
._4e{width:33.940976pt;}
._0{width:35.004188pt;}
._3{width:36.215108pt;}
._47{width:37.432814pt;}
._35{width:38.668486pt;}
._46{width:39.762619pt;}
._3e{width:45.309087pt;}
._3c{width:49.114132pt;}
._3b{width:50.911425pt;}
._5a{width:51.844957pt;}
._59{width:52.795958pt;}
._3d{width:54.601466pt;}
._43{width:58.480866pt;}
._5b{width:61.813430pt;}
._55{width:63.173825pt;}
._54{width:64.168534pt;}
._3f{width:67.326964pt;}
._40{width:68.620997pt;}
._45{width:77.247652pt;}
._44{width:78.567327pt;}
._12{width:85.973479pt;}
._58{width:91.597467pt;}
._52{width:93.082726pt;}
._51{width:94.196110pt;}
._5c{width:97.831342pt;}
._49{width:103.241642pt;}
._1a{width:104.265224pt;}
._5d{width:113.036942pt;}
._14{width:129.783293pt;}
._19{width:134.059718pt;}
._b{width:135.201520pt;}
._56{width:149.411340pt;}
._57{width:150.678128pt;}
._18{width:168.599493pt;}
._e{width:179.073983pt;}
._10{width:181.605865pt;}
._d{width:194.032886pt;}
._4f{width:244.121709pt;}
._5e{width:246.181564pt;}
._4d{width:267.398830pt;}
._50{width:277.093165pt;}
._4c{width:301.875345pt;}
._4a{width:332.752966pt;}
._a{width:387.582846pt;}
._c{width:444.698774pt;}
._f{width:513.721713pt;}
._11{width:599.227059pt;}
._21{width:693.952475pt;}
._13{width:754.588384pt;}
._2d{width:1099.939793pt;}
._24{width:1118.269930pt;}
._28{width:1144.290200pt;}
._23{width:1155.079020pt;}
._22{width:1158.149185pt;}
._25{width:1160.548094pt;}
._27{width:1162.283144pt;}
._2b{width:1173.300133pt;}
._26{width:1186.989601pt;}
._2f{width:1190.778775pt;}
._29{width:1193.904603pt;}
._2a{width:1196.768449pt;}
._2c{width:1209.708547pt;}
._2e{width:1211.486289pt;}
.fsd{font-size:26.881040pt;}
.fsc{font-size:34.561320pt;}
.fsa{font-size:37.121440pt;}
.fsb{font-size:40.321600pt;}
.fs8{font-size:42.881600pt;}
.fsf{font-size:53.118000pt;}
.fs0{font-size:53.122000pt;}
.fs10{font-size:58.877600pt;}
.fs1{font-size:58.882400pt;}
.fse{font-size:61.442400pt;}
.fs7{font-size:64.002404pt;}
.fs11{font-size:74.877196pt;}
.fs4{font-size:74.882796pt;}
.fs6{font-size:80.003196pt;}
.fs9{font-size:85.123200pt;}
.fs2{font-size:96.003600pt;}
.fs5{font-size:192.007600pt;}
.fs3{font-size:256.010008pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:3.359986pt;}
.y43{bottom:3.360001pt;}
.y2{bottom:3.519997pt;}
.y40{bottom:3.520019pt;}
.y50{bottom:4.000000pt;}
.y18c{bottom:40.799987pt;}
.y6{bottom:40.800049pt;}
.y1a{bottom:41.280030pt;}
.y18b{bottom:61.600036pt;}
.y5{bottom:61.600098pt;}
.y1af{bottom:63.200011pt;}
.y19{bottom:63.200074pt;}
.y112{bottom:83.840088pt;}
.y3f{bottom:86.080079pt;}
.y1ad{bottom:86.559997pt;}
.y166{bottom:92.480103pt;}
.y41{bottom:93.120118pt;}
.y111{bottom:102.560059pt;}
.y1ac{bottom:104.320007pt;}
.y165{bottom:110.400086pt;}
.y3c{bottom:112.000061pt;}
.y110{bottom:117.440064pt;}
.y1ab{bottom:118.239989pt;}
.y3e{bottom:118.880066pt;}
.ydf{bottom:119.200074pt;}
.y1cf{bottom:120.799987pt;}
.y10f{bottom:127.200074pt;}
.y164{bottom:128.320069pt;}
.yde{bottom:134.080079pt;}
.y1ce{bottom:138.720031pt;}
.y1aa{bottom:140.799987pt;}
.y3b{bottom:145.760071pt;}
.y163{bottom:146.240052pt;}
.y10e{bottom:146.880066pt;}
.ydd{bottom:148.960083pt;}
.y1cd{bottom:152.640014pt;}
.y139{bottom:158.720032pt;}
.y10d{bottom:161.280030pt;}
.ydc{bottom:162.400086pt;}
.y162{bottom:164.160035pt;}
.y3a{bottom:171.680054pt;}
.y1cc{bottom:175.200011pt;}
.y1a9{bottom:176.640014pt;}
.y138{bottom:176.640076pt;}
.y10c{bottom:177.280030pt;}
.ydb{bottom:180.000061pt;}
.y161{bottom:182.080079pt;}
.y1f7{bottom:188.640076pt;}
.y1cb{bottom:189.119994pt;}
.y10b{bottom:189.280030pt;}
.y39{bottom:189.600037pt;}
.y1a8{bottom:190.559997pt;}
.yda{bottom:194.400086pt;}
.y137{bottom:194.560059pt;}
.y160{bottom:200.000061pt;}
.y10a{bottom:205.280030pt;}
.y38{bottom:207.520081pt;}
.y1a7{bottom:209.119994pt;}
.yd9{bottom:210.400086pt;}
.y1f6{bottom:210.560059pt;}
.y1ca{bottom:211.679992pt;}
.y136{bottom:212.480042pt;}
.y15f{bottom:218.560059pt;}
.y109{bottom:223.680054pt;}
.y37{bottom:225.440064pt;}
.y1c9{bottom:225.600036pt;}
.yd8{bottom:228.800049pt;}
.y135{bottom:230.400086pt;}
.y1a6{bottom:231.679992pt;}
.y1f5{bottom:232.480042pt;}
.y67{bottom:235.840088pt;}
.y15e{bottom:236.480042pt;}
.yd7{bottom:240.800049pt;}
.y31{bottom:242.240052pt;}
.y36{bottom:243.360047pt;}
.y1c8{bottom:244.160033pt;}
.y134{bottom:248.320069pt;}
.y1a5{bottom:249.600036pt;}
.y108{bottom:251.840088pt;}
.y66{bottom:253.600037pt;}
.y15d{bottom:254.400086pt;}
.y187{bottom:256.000061pt;}
.yd6{bottom:256.800049pt;}
.y35{bottom:261.280030pt;}
.y107{bottom:265.600037pt;}
.y133{bottom:266.240052pt;}
.y1c7{bottom:266.720031pt;}
.y1a4{bottom:267.520019pt;}
.y65{bottom:271.520081pt;}
.y15c{bottom:272.320069pt;}
.y186{bottom:273.760071pt;}
.yd5{bottom:276.000061pt;}
.y1f4{bottom:276.320069pt;}
.y34{bottom:279.040039pt;}
.y1a3{bottom:281.440002pt;}
.y132{bottom:284.160035pt;}
.y1c6{bottom:284.640014pt;}
.y64{bottom:289.440064pt;}
.y15b{bottom:290.240052pt;}
.y185{bottom:291.680054pt;}
.y106{bottom:296.320069pt;}
.yd4{bottom:296.640076pt;}
.y33{bottom:296.960083pt;}
.y1f3{bottom:298.080079pt;}
.y1c5{bottom:298.400024pt;}
.y131{bottom:302.080079pt;}
.y1a2{bottom:303.999999pt;}
.y95{bottom:305.760071pt;}
.y63{bottom:307.360047pt;}
.y15a{bottom:308.160035pt;}
.y184{bottom:309.600037pt;}
.y105{bottom:314.240052pt;}
.y32{bottom:314.880066pt;}
.y130{bottom:319.840088pt;}
.y1f2{bottom:320.000061pt;}
.y1c4{bottom:321.119994pt;}
.y1a1{bottom:321.920013pt;}
.y62{bottom:325.280030pt;}
.y159{bottom:326.080079pt;}
.y94{bottom:327.680054pt;}
.y183{bottom:328.320069pt;}
.y104{bottom:332.160035pt;}
.yd3{bottom:337.120057pt;}
.y12f{bottom:337.760071pt;}
.y1c3{bottom:338.880004pt;}
.y1a0{bottom:339.839996pt;}
.y61{bottom:343.200074pt;}
.y30{bottom:343.520081pt;}
.y158{bottom:344.000061pt;}
.y1f1{bottom:344.640076pt;}
.yb0{bottom:347.040039pt;}
.y93{bottom:349.600037pt;}
.y103{bottom:350.080079pt;}
.yd2{bottom:354.880066pt;}
.y12e{bottom:355.680054pt;}
.y1c2{bottom:356.800018pt;}
.y19f{bottom:357.760009pt;}
.y60{bottom:361.920044pt;}
.y157{bottom:362.560059pt;}
.y182{bottom:365.760071pt;}
.y92{bottom:367.520081pt;}
.y102{bottom:368.000061pt;}
.yaf{bottom:368.960083pt;}
.y1c1{bottom:370.720000pt;}
.y19e{bottom:371.680022pt;}
.yd1{bottom:372.800049pt;}
.y12d{bottom:373.600037pt;}
.y2f{bottom:376.800049pt;}
.y5f{bottom:379.840088pt;}
.y156{bottom:381.280030pt;}
.y181{bottom:384.320069pt;}
.y91{bottom:385.280030pt;}
.y1f0{bottom:385.600037pt;}
.y101{bottom:385.920044pt;}
.yd0{bottom:390.720032pt;}
.y12c{bottom:391.520081pt;}
.y1c0{bottom:393.279998pt;}
.y19d{bottom:394.240020pt;}
.yae{bottom:395.840088pt;}
.y5e{bottom:397.760071pt;}
.y180{bottom:403.040039pt;}
.y90{bottom:403.200074pt;}
.y1ef{bottom:403.520081pt;}
.y100{bottom:403.840088pt;}
.y2e{bottom:407.520081pt;}
.ycf{bottom:408.640076pt;}
.y12b{bottom:409.440064pt;}
.y1bf{bottom:411.200011pt;}
.y19c{bottom:412.160003pt;}
.y5d{bottom:416.320069pt;}
.y155{bottom:417.280030pt;}
.y1ee{bottom:417.440064pt;}
.yff{bottom:421.600037pt;}
.y17f{bottom:421.760071pt;}
.yad{bottom:422.720032pt;}
.y8f{bottom:425.120057pt;}
.y2d{bottom:425.440064pt;}
.yce{bottom:426.560059pt;}
.y12a{bottom:427.360047pt;}
.y1be{bottom:429.119994pt;}
.y19b{bottom:429.920013pt;}
.y5c{bottom:434.240052pt;}
.yfe{bottom:439.520081pt;}
.y17e{bottom:439.680054pt;}
.y1ed{bottom:440.000061pt;}
.y1bd{bottom:443.040008pt;}
.y2c{bottom:443.360047pt;}
.ycd{bottom:444.480042pt;}
.y8e{bottom:447.040039pt;}
.y19a{bottom:447.839996pt;}
.yac{bottom:449.600037pt;}
.y5b{bottom:452.160035pt;}
.yfd{bottom:457.440064pt;}
.y17d{bottom:457.600037pt;}
.y1ec{bottom:457.920044pt;}
.y27{bottom:460.160035pt;}
.y2b{bottom:461.280030pt;}
.y199{bottom:461.760009pt;}
.y129{bottom:462.240052pt;}
.ycc{bottom:462.400086pt;}
.y154{bottom:465.280030pt;}
.y1bc{bottom:465.600005pt;}
.y8d{bottom:468.960083pt;}
.y5a{bottom:470.880066pt;}
.y1eb{bottom:471.840088pt;}
.yfc{bottom:475.360047pt;}
.y17c{bottom:475.520081pt;}
.yab{bottom:476.640076pt;}
.y2a{bottom:479.200074pt;}
.ycb{bottom:480.320069pt;}
.y1bb{bottom:483.520019pt;}
.y153{bottom:484.000061pt;}
.y198{bottom:484.320007pt;}
.y8c{bottom:486.880066pt;}
.y59{bottom:489.600037pt;}
.yfb{bottom:493.280030pt;}
.y1ea{bottom:494.400086pt;}
.y29{bottom:497.120057pt;}
.y152{bottom:497.760071pt;}
.yca{bottom:498.240052pt;}
.y1ba{bottom:501.440002pt;}
.y197{bottom:502.240020pt;}
.yaa{bottom:503.520081pt;}
.y58{bottom:507.520081pt;}
.y128{bottom:508.000061pt;}
.y8b{bottom:508.800049pt;}
.yfa{bottom:511.200074pt;}
.y1e9{bottom:512.320069pt;}
.y28{bottom:515.040039pt;}
.y1b9{bottom:515.360015pt;}
.yc9{bottom:516.160035pt;}
.y151{bottom:516.480042pt;}
.y196{bottom:520.160003pt;}
.y57{bottom:525.280030pt;}
.y127{bottom:525.920044pt;}
.yf9{bottom:529.120057pt;}
.y1e8{bottom:530.240052pt;}
.ya9{bottom:530.400086pt;}
.y8a{bottom:530.720032pt;}
.yc8{bottom:533.920044pt;}
.y1b8{bottom:537.920013pt;}
.y195{bottom:538.080016pt;}
.y150{bottom:539.040039pt;}
.y56{bottom:543.200074pt;}
.y26{bottom:543.520081pt;}
.y126{bottom:543.840088pt;}
.yf8{bottom:547.040039pt;}
.y1e7{bottom:548.160035pt;}
.y89{bottom:548.640076pt;}
.yc7{bottom:551.840088pt;}
.y14f{bottom:552.800049pt;}
.y1b7{bottom:555.840011pt;}
.y194{bottom:556.000014pt;}
.ya8{bottom:557.280030pt;}
.y125{bottom:561.760071pt;}
.yf7{bottom:564.960083pt;}
.y1e6{bottom:565.920044pt;}
.y88{bottom:566.560059pt;}
.yc6{bottom:569.760071pt;}
.y193{bottom:569.920013pt;}
.y1b6{bottom:573.760009pt;}
.y14e{bottom:575.520081pt;}
.y25{bottom:576.960083pt;}
.y55{bottom:579.360047pt;}
.y124{bottom:579.680054pt;}
.yf6{bottom:582.880066pt;}
.y17b{bottom:583.680054pt;}
.y1e5{bottom:583.840088pt;}
.ya7{bottom:584.160035pt;}
.y87{bottom:584.320069pt;}
.yc5{bottom:587.680054pt;}
.y192{bottom:588.480010pt;}
.y14d{bottom:589.280030pt;}
.y1b5{bottom:591.680007pt;}
.y123{bottom:597.600037pt;}
.yf5{bottom:600.640076pt;}
.y17a{bottom:601.600037pt;}
.y1e4{bottom:601.760071pt;}
.ya6{bottom:602.080079pt;}
.yc4{bottom:605.600037pt;}
.y86{bottom:606.240052pt;}
.y1b4{bottom:609.440002pt;}
.y24{bottom:610.240052pt;}
.y191{bottom:611.040008pt;}
.y14c{bottom:611.840058pt;}
.y122{bottom:615.520050pt;}
.yf4{bottom:618.560059pt;}
.y179{bottom:619.520050pt;}
.y1e3{bottom:619.680054pt;}
.yc3{bottom:623.520050pt;}
.y54{bottom:626.240052pt;}
.y1b3{bottom:627.360015pt;}
.y85{bottom:628.160065pt;}
.y190{bottom:628.960006pt;}
.ya5{bottom:628.960053pt;}
.y14b{bottom:629.760071pt;}
.y121{bottom:633.280060pt;}
.y1e2{bottom:633.600068pt;}
.yf3{bottom:636.480072pt;}
.y178{bottom:637.440064pt;}
.y23{bottom:640.960053pt;}
.y1b2{bottom:641.280013pt;}
.yc2{bottom:641.440064pt;}
.y53{bottom:643.200074pt;}
.y14a{bottom:643.680054pt;}
.y18f{bottom:646.880004pt;}
.ya4{bottom:646.880066pt;}
.y84{bottom:650.080048pt;}
.y120{bottom:653.920044pt;}
.yf2{bottom:654.400055pt;}
.y15{bottom:655.040070pt;}
.y177{bottom:655.200074pt;}
.y1e1{bottom:656.160065pt;}
.yc1{bottom:659.360047pt;}
.y22{bottom:662.880066pt;}
.y1b1{bottom:663.840011pt;}
.y18e{bottom:664.800002pt;}
.ya3{bottom:664.800049pt;}
.y149{bottom:666.240052pt;}
.y83{bottom:672.000061pt;}
.y52{bottom:672.320069pt;}
.y176{bottom:673.120057pt;}
.y1e0{bottom:674.080048pt;}
.y11f{bottom:675.360047pt;}
.yc0{bottom:677.280060pt;}
.y1b0{bottom:677.760009pt;}
.y18d{bottom:678.560012pt;}
.y75{bottom:679.040070pt;}
.y148{bottom:684.160065pt;}
.y14{bottom:684.320069pt;}
.y21{bottom:684.800049pt;}
.ya2{bottom:687.680054pt;}
.y1df{bottom:688.000061pt;}
.yf1{bottom:690.240052pt;}
.y175{bottom:691.040070pt;}
.ya1{bottom:691.680054pt;}
.y82{bottom:693.920044pt;}
.ybf{bottom:695.200074pt;}
.y51{bottom:695.520050pt;}
.y11e{bottom:695.840058pt;}
.y147{bottom:698.080048pt;}
.y74{bottom:700.960053pt;}
.y18a{bottom:704.640006pt;}
.y20{bottom:706.720063pt;}
.yf0{bottom:708.160065pt;}
.y174{bottom:708.960053pt;}
.y4f{bottom:709.440064pt;}
.y1de{bottom:710.560059pt;}
.ybe{bottom:712.960053pt;}
.y13{bottom:713.600068pt;}
.y81{bottom:715.840058pt;}
.y11d{bottom:717.280060pt;}
.ya0{bottom:718.560059pt;}
.y146{bottom:720.640046pt;}
.y1ae{bottom:724.000007pt;}
.y188{bottom:725.440009pt;}
.yef{bottom:726.080048pt;}
.y73{bottom:726.240052pt;}
.y173{bottom:726.880066pt;}
.y1dd{bottom:728.480072pt;}
.y189{bottom:728.960006pt;}
.y1f{bottom:728.960053pt;}
.ybd{bottom:730.880066pt;}
.y80{bottom:733.760071pt;}
.y9f{bottom:736.480072pt;}
.y11c{bottom:738.560059pt;}
.y4e{bottom:738.720063pt;}
.yee{bottom:744.000061pt;}
.y172{bottom:744.800049pt;}
.y1dc{bottom:746.400055pt;}
.ybc{bottom:748.800049pt;}
.y72{bottom:750.560059pt;}
.y145{bottom:752.480072pt;}
.y7f{bottom:755.680054pt;}
.y11b{bottom:760.000061pt;}
.y1db{bottom:760.320069pt;}
.y17{bottom:761.280060pt;}
.yed{bottom:761.920044pt;}
.y171{bottom:762.720063pt;}
.y9e{bottom:763.360047pt;}
.ybb{bottom:766.720063pt;}
.y12{bottom:767.200074pt;}
.y4d{bottom:771.040070pt;}
.y71{bottom:774.880066pt;}
.y144{bottom:775.040070pt;}
.y7e{bottom:777.440064pt;}
.yec{bottom:779.680054pt;}
.y170{bottom:780.640046pt;}
.y9d{bottom:781.280060pt;}
.y1da{bottom:782.880066pt;}
.yba{bottom:784.640046pt;}
.y143{bottom:788.960053pt;}
.y11{bottom:789.120057pt;}
.y4c{bottom:792.960053pt;}
.y1e{bottom:793.280060pt;}
.yeb{bottom:797.600068pt;}
.y16f{bottom:798.560059pt;}
.y70{bottom:799.040070pt;}
.y11a{bottom:799.200074pt;}
.y7d{bottom:799.360047pt;}
.y1d9{bottom:800.800049pt;}
.yb9{bottom:802.560059pt;}
.y9c{bottom:808.160065pt;}
.y10{bottom:810.880066pt;}
.y142{bottom:811.520050pt;}
.y4b{bottom:814.880066pt;}
.yea{bottom:815.520050pt;}
.y16e{bottom:816.480072pt;}
.y119{bottom:817.120057pt;}
.y1d8{bottom:818.720063pt;}
.y6f{bottom:819.360047pt;}
.yb8{bottom:820.480072pt;}
.y7c{bottom:821.280060pt;}
.y1d{bottom:821.440064pt;}
.y141{bottom:829.440064pt;}
.y16{bottom:830.240052pt;}
.y1d7{bottom:832.480072pt;}
.yf{bottom:832.800049pt;}
.ye9{bottom:833.440064pt;}
.y16d{bottom:834.240052pt;}
.y118{bottom:835.040070pt;}
.y9b{bottom:835.200074pt;}
.y4a{bottom:836.800049pt;}
.yb7{bottom:838.400055pt;}
.y7b{bottom:843.200074pt;}
.y140{bottom:843.360047pt;}
.y6e{bottom:843.680054pt;}
.ye8{bottom:851.360047pt;}
.y16c{bottom:852.160065pt;}
.y117{bottom:852.960053pt;}
.ye{bottom:854.720063pt;}
.y1d6{bottom:855.200074pt;}
.yb6{bottom:856.320069pt;}
.y49{bottom:861.600068pt;}
.y9a{bottom:862.080048pt;}
.y7a{bottom:865.120057pt;}
.y13f{bottom:865.920044pt;}
.y6d{bottom:868.000061pt;}
.ye7{bottom:869.280060pt;}
.y16b{bottom:870.080063pt;}
.y116{bottom:870.880066pt;}
.y1d5{bottom:872.960053pt;}
.yb5{bottom:874.240052pt;}
.yd{bottom:876.640061pt;}
.y13e{bottom:879.840058pt;}
.y79{bottom:887.040055pt;}
.ye6{bottom:887.200058pt;}
.y16a{bottom:888.000061pt;}
.y115{bottom:888.800064pt;}
.y99{bottom:888.960053pt;}
.y1d4{bottom:890.880066pt;}
.yb4{bottom:892.000061pt;}
.y6c{bottom:892.160065pt;}
.y48{bottom:895.680054pt;}
.y13d{bottom:898.400055pt;}
.yc{bottom:898.560059pt;}
.y1d3{bottom:904.800064pt;}
.ye5{bottom:905.280060pt;}
.y169{bottom:905.920060pt;}
.y114{bottom:906.720063pt;}
.y1c{bottom:908.960053pt;}
.yb3{bottom:909.920060pt;}
.y98{bottom:915.840058pt;}
.y6b{bottom:916.480057pt;}
.yb{bottom:920.480057pt;}
.y13c{bottom:920.960053pt;}
.y1d2{bottom:923.360062pt;}
.y168{bottom:923.840058pt;}
.ye4{bottom:924.000061pt;}
.y113{bottom:924.640061pt;}
.y47{bottom:926.080063pt;}
.yb2{bottom:927.840058pt;}
.y78{bottom:930.880066pt;}
.y13b{bottom:938.880066pt;}
.y6a{bottom:940.800064pt;}
.y167{bottom:941.760056pt;}
.ya{bottom:942.400055pt;}
.ye3{bottom:942.560059pt;}
.y97{bottom:942.720063pt;}
.y1d1{bottom:945.920060pt;}
.y46{bottom:947.840058pt;}
.y77{bottom:952.800064pt;}
.y13a{bottom:956.800064pt;}
.ye2{bottom:960.480057pt;}
.yb1{bottom:962.880066pt;}
.y9{bottom:964.320054pt;}
.y69{bottom:968.320054pt;}
.y96{bottom:969.600052pt;}
.y76{bottom:974.720063pt;}
.y45{bottom:976.960053pt;}
.ye1{bottom:978.240052pt;}
.y1d0{bottom:982.080063pt;}
.y8{bottom:986.240052pt;}
.ye0{bottom:996.160057pt;}
.y42{bottom:999.360062pt;}
.y44{bottom:1006.240059pt;}
.y7{bottom:1008.160057pt;}
.y68{bottom:1010.720063pt;}
.y1b{bottom:1014.080056pt;}
.y4{bottom:1033.440056pt;}
.y18{bottom:1052.800057pt;}
.y1{bottom:1054.240059pt;}
.y3{bottom:1057.760056pt;}
.h2{height:16.160000pt;}
.h31{height:17.759949pt;}
.h2f{height:17.759980pt;}
.h28{height:17.760010pt;}
.h32{height:17.919982pt;}
.h17{height:17.919983pt;}
.h24{height:17.919998pt;}
.h23{height:17.919999pt;}
.h25{height:17.920013pt;}
.h26{height:17.920014pt;}
.h27{height:17.920044pt;}
.h1b{height:18.080017pt;}
.h14{height:19.199997pt;}
.h12{height:19.200013pt;}
.h13{height:19.359985pt;}
.h20{height:29.224905pt;}
.h1f{height:34.375688pt;}
.h1c{height:37.446021pt;}
.h22{height:37.446261pt;}
.h1d{height:37.446265pt;}
.h1e{height:40.105029pt;}
.h18{height:43.907576pt;}
.h29{height:44.650570pt;}
.h2c{height:52.832698pt;}
.h3{height:52.836677pt;}
.h19{height:56.308352pt;}
.hf{height:56.467302pt;}
.h2d{height:58.561363pt;}
.h4{height:58.566137pt;}
.h2e{height:60.286293pt;}
.h5{height:60.291207pt;}
.h21{height:61.112387pt;}
.hb{height:63.658641pt;}
.ha{height:65.533712pt;}
.h11{height:65.578561pt;}
.hd{height:65.578565pt;}
.he{height:66.218457pt;}
.hc{height:66.218697pt;}
.h10{height:66.218701pt;}
.h16{height:68.778633pt;}
.h1a{height:71.739572pt;}
.h30{height:76.668691pt;}
.h8{height:76.674425pt;}
.h15{height:77.738657pt;}
.h9{height:81.917335pt;}
.h6{height:95.487956pt;}
.h7{height:262.135247pt;}
.h2a{height:793.760013pt;}
.h2b{height:794.000000pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w19{width:3.039993pt;}
.w13{width:3.200012pt;}
.w8{width:3.359985pt;}
.w28{width:3.360001pt;}
.w3c{width:3.679993pt;}
.wa{width:4.000000pt;}
.w50{width:4.319946pt;}
.w24{width:4.320007pt;}
.w5d{width:4.479980pt;}
.w57{width:4.479995pt;}
.w12{width:4.479996pt;}
.w48{width:4.480010pt;}
.w2{width:6.240005pt;}
.w1b{width:6.880005pt;}
.w41{width:7.199951pt;}
.w39{width:7.359985pt;}
.w10{width:7.359986pt;}
.w30{width:7.360000pt;}
.wc{width:7.360001pt;}
.w2b{width:7.360015pt;}
.we{width:7.360016pt;}
.w40{width:7.360047pt;}
.w3f{width:7.519958pt;}
.w3e{width:7.519989pt;}
.w18{width:7.520004pt;}
.w1e{width:7.520019pt;}
.w4f{width:7.520020pt;}
.w43{width:7.839965pt;}
.w3d{width:7.839996pt;}
.w42{width:7.839997pt;}
.w46{width:8.000000pt;}
.w4{width:8.160003pt;}
.w33{width:8.799988pt;}
.w44{width:8.959961pt;}
.w3a{width:10.079987pt;}
.w3b{width:12.479980pt;}
.w22{width:14.880005pt;}
.w4a{width:20.159973pt;}
.w27{width:22.240005pt;}
.w25{width:25.759979pt;}
.w14{width:28.320007pt;}
.wd{width:28.959991pt;}
.w1a{width:34.080002pt;}
.w4c{width:35.679993pt;}
.w5f{width:38.720032pt;}
.w21{width:41.119995pt;}
.w1c{width:43.680000pt;}
.w38{width:44.480011pt;}
.w29{width:53.599991pt;}
.w2f{width:55.680008pt;}
.w15{width:56.000000pt;}
.w55{width:56.480042pt;}
.w64{width:56.799988pt;}
.w3{width:60.479996pt;}
.w60{width:60.960022pt;}
.w20{width:61.600006pt;}
.wf{width:62.880005pt;}
.w51{width:64.800049pt;}
.w4e{width:67.359985pt;}
.w49{width:67.999985pt;}
.w56{width:71.199997pt;}
.w65{width:71.520020pt;}
.w54{width:80.000000pt;}
.wb{width:83.839996pt;}
.w5{width:87.679993pt;}
.w5a{width:94.720032pt;}
.w5b{width:96.000000pt;}
.w31{width:105.440002pt;}
.w32{width:107.360016pt;}
.w6{width:108.160004pt;}
.w2a{width:110.720001pt;}
.w61{width:114.080002pt;}
.w9{width:118.400025pt;}
.w62{width:122.720001pt;}
.w63{width:127.679993pt;}
.w36{width:131.040008pt;}
.w47{width:134.559998pt;}
.w4b{width:135.360001pt;}
.w52{width:139.999984pt;}
.w59{width:143.840027pt;}
.w45{width:144.960007pt;}
.w1d{width:148.799996pt;}
.w17{width:155.199997pt;}
.w11{width:156.000000pt;}
.w5e{width:166.399994pt;}
.w35{width:170.079956pt;}
.w26{width:176.960022pt;}
.w1f{width:192.479996pt;}
.w34{width:193.440002pt;}
.w23{width:195.199997pt;}
.w5c{width:198.080002pt;}
.w16{width:202.720001pt;}
.w2c{width:202.720016pt;}
.w37{width:207.039993pt;}
.w53{width:229.120026pt;}
.w58{width:293.279984pt;}
.w4d{width:368.959976pt;}
.w7{width:391.199997pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.w2d{width:1122.560053pt;}
.w2e{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x5{left:10.080000pt;}
.xd{left:70.879997pt;}
.x1{left:75.519997pt;}
.x1d{left:76.639999pt;}
.x14{left:82.720001pt;}
.xf{left:84.000000pt;}
.x8{left:96.639999pt;}
.x1b{left:99.519997pt;}
.x35{left:105.440002pt;}
.x1c{left:107.199997pt;}
.x36{left:108.800003pt;}
.x50{left:114.559998pt;}
.x1a{left:123.519997pt;}
.x31{left:126.879997pt;}
.x15{left:134.559998pt;}
.x21{left:140.960007pt;}
.x16{left:141.919998pt;}
.x10{left:144.479996pt;}
.x9{left:146.399994pt;}
.x1f{left:147.520004pt;}
.x4d{left:148.960007pt;}
.x37{left:162.399994pt;}
.x4{left:171.520004pt;}
.x59{left:172.960007pt;}
.x13{left:192.160004pt;}
.x39{left:195.520004pt;}
.x57{left:220.160004pt;}
.xe{left:222.080002pt;}
.x22{left:224.800003pt;}
.x40{left:238.240005pt;}
.x27{left:239.199997pt;}
.x4b{left:241.759995pt;}
.x28{left:243.679993pt;}
.x2e{left:245.600006pt;}
.x29{left:246.880005pt;}
.x2f{left:248.639999pt;}
.x4a{left:252.160004pt;}
.x7{left:254.080002pt;}
.x19{left:259.040009pt;}
.x60{left:263.040009pt;}
.x12{left:265.600006pt;}
.x11{left:266.880005pt;}
.xb{left:271.679993pt;}
.x2a{left:275.200012pt;}
.x34{left:278.399994pt;}
.x30{left:282.720001pt;}
.xc{left:285.760010pt;}
.x54{left:288.959991pt;}
.x2b{left:297.119995pt;}
.x3b{left:325.279999pt;}
.x45{left:333.119995pt;}
.x33{left:338.239990pt;}
.xa{left:341.760010pt;}
.x5b{left:347.040009pt;}
.x5c{left:351.519989pt;}
.x2c{left:353.119995pt;}
.x32{left:358.720001pt;}
.x41{left:369.760010pt;}
.x23{left:382.399994pt;}
.x61{left:385.760010pt;}
.x62{left:390.239990pt;}
.x2{left:396.799988pt;}
.x38{left:407.839996pt;}
.x24{left:411.359985pt;}
.x3c{left:441.920013pt;}
.x46{left:449.440002pt;}
.x42{left:451.839996pt;}
.x2d{left:511.040009pt;}
.x6{left:526.400024pt;}
.x4e{left:529.119995pt;}
.x17{left:533.119995pt;}
.x18{left:536.479980pt;}
.x3d{left:549.280029pt;}
.x4f{left:564.799988pt;}
.x5d{left:567.840027pt;}
.x5e{left:572.320007pt;}
.x25{left:579.359985pt;}
.x63{left:585.919983pt;}
.x64{left:593.119995pt;}
.x51{left:596.479980pt;}
.x52{left:603.840027pt;}
.x53{left:608.159973pt;}
.x55{left:609.119995pt;}
.x56{left:616.479980pt;}
.x58{left:623.840027pt;}
.x5a{left:625.119995pt;}
.x5f{left:633.280029pt;}
.x26{left:642.239990pt;}
.x65{left:668.000000pt;}
.x3e{left:672.640015pt;}
.x47{left:680.159973pt;}
.x43{left:685.119995pt;}
.x4c{left:692.799988pt;}
.x20{left:703.200012pt;}
.x3{left:710.719971pt;}
.x1e{left:713.119995pt;}
.x66{left:718.080017pt;}
.x3f{left:877.280029pt;}
.x44{left:880.960022pt;}
.x48{left:884.479980pt;}
.x49{left:886.239990pt;}
.x3a{left:1013.119995pt;}
}




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