
    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_8245812c1849318c21282eea.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_9b669d119daa99bfb681e0ef.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_971540f11bf6363e976f9a67.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ba65c06b0c436f7e92ecd2e1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_b7c067691e984f71ac447edb.woff2')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_3452489c5a2f0d86f4b5a36d.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f93f77578d2a865c996b823c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_64b1ff8dcefdfe1352f721b3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.003418;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_de9236f60fde9fc753fd8e65.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v3{vertical-align:-33.120072px;}
.v2{vertical-align:-30.239870px;}
.v4{vertical-align:-9.360077px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120072px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000563px;}
.ls0{letter-spacing:0.004916px;}
.ls16{letter-spacing:0.035361px;}
.ls8{letter-spacing:0.061034px;}
.lsc{letter-spacing:0.149150px;}
.lsa{letter-spacing:0.149154px;}
.lsf{letter-spacing:0.300749px;}
.ls6{letter-spacing:0.359109px;}
.ls5{letter-spacing:0.359114px;}
.ls1{letter-spacing:0.680802px;}
.lsd{letter-spacing:3.779636px;}
.ls3{letter-spacing:64.295219px;}
.ls17{letter-spacing:64.295224px;}
.ls13{letter-spacing:108.215233px;}
.lsb{letter-spacing:372.959346px;}
.ls18{letter-spacing:537.839409px;}
.ls9{letter-spacing:607.679292px;}
.ls10{letter-spacing:609.269154px;}
.ls7{letter-spacing:664.709123px;}
.ls11{letter-spacing:803.669208px;}
.ls12{letter-spacing:897.989033px;}
.ls14{letter-spacing:898.559432px;}
.lse{letter-spacing:1029.029082px;}
.ls15{letter-spacing:1329.119396px;}
.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;}
}
.ws3{word-spacing:-72.002705px;}
.ws15{word-spacing:-66.242700px;}
.ws1{word-spacing:-23.940900px;}
.ws0{word-spacing:-21.060786px;}
.ws7{word-spacing:-18.061710px;}
.ws4{word-spacing:-18.000676px;}
.ws9{word-spacing:-14.970850px;}
.ws8{word-spacing:-12.204509px;}
.wsa{word-spacing:-12.060450px;}
.ws1b{word-spacing:-10.902647px;}
.ws5{word-spacing:-9.438126px;}
.ws1e{word-spacing:-2.464704px;}
.wsc{word-spacing:-1.024533px;}
.ws2{word-spacing:0.000000px;}
.ws24{word-spacing:1.135377px;}
.ws26{word-spacing:2.575273px;}
.ws23{word-spacing:4.735318px;}
.ws13{word-spacing:11.215332px;}
.ws11{word-spacing:14.502214px;}
.wsd{word-spacing:14.614785px;}
.wse{word-spacing:28.277694px;}
.ws1a{word-spacing:28.731762px;}
.ws12{word-spacing:45.648042px;}
.ws18{word-spacing:46.145743px;}
.ws14{word-spacing:46.278031px;}
.ws6{word-spacing:47.238507px;}
.ws1c{word-spacing:47.552143px;}
.ws21{word-spacing:47.665715px;}
.ws20{word-spacing:48.245583px;}
.ws22{word-spacing:48.410574px;}
.ws25{word-spacing:318.330435px;}
.ws16{word-spacing:372.665851px;}
.ws2a{word-spacing:496.546149px;}
.ws2b{word-spacing:511.910931px;}
.ws29{word-spacing:536.304743px;}
.wsf{word-spacing:584.062988px;}
.ws1f{word-spacing:631.114535px;}
.ws17{word-spacing:1148.461334px;}
.ws27{word-spacing:1165.399682px;}
.ws19{word-spacing:1315.505784px;}
.wsb{word-spacing:1409.651567px;}
.ws28{word-spacing:1456.697645px;}
.ws1d{word-spacing:2095.769293px;}
.ws10{word-spacing:2415.017470px;}
._1b{margin-left:-11.874521px;}
._4b{margin-left:-8.792683px;}
._58{margin-left:-2.944320px;}
._0{margin-left:-1.349436px;}
._1{width:1.040217px;}
._8{width:2.283819px;}
._3{width:3.706816px;}
._10{width:5.180537px;}
._11{width:6.240062px;}
._12{width:8.083430px;}
._24{width:9.125383px;}
._18{width:10.141412px;}
._23{width:11.344031px;}
._15{width:12.447186px;}
._16{width:13.595854px;}
._1f{width:14.601973px;}
._20{width:16.239704px;}
._17{width:19.501764px;}
._1a{width:21.013258px;}
._2a{width:22.084579px;}
._14{width:23.309354px;}
._13{width:24.413979px;}
._25{width:25.433498px;}
._32{width:26.739889px;}
._31{width:28.297063px;}
._52{width:29.548110px;}
._1e{width:31.230610px;}
._1d{width:32.413311px;}
._47{width:34.193104px;}
._2e{width:35.844478px;}
._44{width:36.936599px;}
._2b{width:37.988295px;}
._2f{width:40.005564px;}
._21{width:41.739630px;}
._22{width:43.183225px;}
._19{width:44.706972px;}
._3f{width:46.340220px;}
._43{width:47.787512px;}
._35{width:49.075907px;}
._53{width:50.965735px;}
._c{width:52.544736px;}
._3d{width:58.119002px;}
._4f{width:59.161527px;}
._e{width:60.685991px;}
._b{width:64.379401px;}
._d{width:66.999598px;}
._45{width:68.493103px;}
._a{width:69.809546px;}
._9{width:85.682656px;}
._4{width:88.563327px;}
._7{width:93.827988px;}
._6{width:96.517996px;}
._5{width:105.356115px;}
._26{width:123.924192px;}
._38{width:125.421425px;}
._50{width:141.071158px;}
._96{width:154.267100px;}
._9e{width:155.824955px;}
._98{width:156.889135px;}
._92{width:159.920761px;}
._9d{width:168.970736px;}
._8f{width:171.903406px;}
._28{width:183.755361px;}
._f{width:194.399310px;}
._91{width:200.068593px;}
._95{width:201.186138px;}
._57{width:208.840023px;}
._9a{width:209.968597px;}
._4a{width:221.543018px;}
._71{width:223.036061px;}
._5b{width:242.018396px;}
._41{width:243.242013px;}
._30{width:245.736107px;}
._7b{width:256.727864px;}
._6c{width:259.844553px;}
._4e{width:261.191383px;}
._97{width:263.069176px;}
._7c{width:267.550841px;}
._27{width:274.048786px;}
._5e{width:296.694595px;}
._94{width:304.109221px;}
._5f{width:305.252483px;}
._72{width:312.530808px;}
._99{width:314.909194px;}
._73{width:335.416345px;}
._5d{width:343.869106px;}
._6e{width:368.794260px;}
._85{width:372.743252px;}
._42{width:379.664921px;}
._8e{width:381.997019px;}
._7f{width:401.488337px;}
._60{width:406.872856px;}
._64{width:410.820985px;}
._8a{width:476.422879px;}
._3e{width:481.465572px;}
._69{width:489.245633px;}
._78{width:498.202046px;}
._2d{width:523.459662px;}
._6a{width:541.210483px;}
._89{width:545.822988px;}
._3c{width:550.671226px;}
._75{width:605.028812px;}
._29{width:608.623259px;}
._66{width:610.019516px;}
._55{width:614.426847px;}
._76{width:615.532667px;}
._87{width:636.705457px;}
._59{width:678.102183px;}
._36{width:721.166219px;}
._9b{width:778.428150px;}
._74{width:782.663874px;}
._40{width:798.041872px;}
._34{width:803.939894px;}
._8b{width:834.488730px;}
._4c{width:843.502416px;}
._2c{width:846.031778px;}
._61{width:871.202261px;}
._82{width:886.823072px;}
._7d{width:900.463358px;}
._9c{width:912.621005px;}
._84{width:923.215081px;}
._2{width:937.167304px;}
._5c{width:954.227316px;}
._5a{width:956.667500px;}
._51{width:961.917372px;}
._79{width:970.691578px;}
._68{width:991.388550px;}
._56{width:995.028635px;}
._7a{width:1009.604186px;}
._6b{width:1025.022057px;}
._48{width:1038.743117px;}
._33{width:1060.739466px;}
._81{width:1068.983122px;}
._49{width:1076.183149px;}
._8d{width:1093.500826px;}
._4d{width:1094.579552px;}
._46{width:1110.552694px;}
._62{width:1129.453940px;}
._6f{width:1144.392645px;}
._63{width:1154.712895px;}
._83{width:1164.023234px;}
._77{width:1181.456221px;}
._88{width:1203.130486px;}
._65{width:1231.615684px;}
._70{width:1271.801412px;}
._37{width:1318.280108px;}
._90{width:1405.709235px;}
._8c{width:1426.400020px;}
._7e{width:1433.490056px;}
._6d{width:1453.241344px;}
._67{width:1504.372051px;}
._86{width:1528.343131px;}
._39{width:1592.355564px;}
._93{width:1677.869149px;}
._3b{width:1701.961344px;}
._80{width:1881.495920px;}
._1c{width:1993.577671px;}
._54{width:2101.576753px;}
._3a{width:2196.540441px;}
._9f{width:2531.615090px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.761620px;}
.fs6{font-size:48.241800px;}
.fs5{font-size:54.002250px;}
.fs8{font-size:59.762250px;}
.fs0{font-size:66.242700px;}
.fs1{font-size:72.002705px;}
.fs2{font-size:84.243145px;}
.fs4{font-size:95.763600px;}
.fs3{font-size:156.245841px;}
.y0{bottom:0.000000px;}
.y3d{bottom:4.319961px;}
.y38{bottom:4.319962px;}
.y21{bottom:4.319996px;}
.y27{bottom:4.320029px;}
.y32{bottom:4.320030px;}
.y51{bottom:57.600083px;}
.y50{bottom:76.860077px;}
.y1d6{bottom:77.760132px;}
.yb5{bottom:115.560036px;}
.ya1{bottom:117.360077px;}
.y15{bottom:118.620072px;}
.yd2{bottom:123.120072px;}
.y153{bottom:123.660049px;}
.y1d4{bottom:124.200096px;}
.y1bc{bottom:126.180039px;}
.y129{bottom:130.320099px;}
.y133{bottom:132.480079px;}
.y77{bottom:137.880066px;}
.yb4{bottom:138.780052px;}
.ya0{bottom:141.120072px;}
.y14{bottom:146.340088px;}
.y152{bottom:147.420043px;}
.y1d3{bottom:147.960091px;}
.y18f{bottom:149.940033px;}
.y128{bottom:153.720085px;}
.y132{bottom:156.240074px;}
.y13c{bottom:161.280052px;}
.y148{bottom:161.820099px;}
.y9f{bottom:165.060036px;}
.y76{bottom:168.480079px;}
.yb3{bottom:169.380066px;}
.y151{bottom:171.180039px;}
.y18e{bottom:173.880066px;}
.y13{bottom:174.060036px;}
.yd1{bottom:176.760064px;}
.y127{bottom:176.940033px;}
.y131{bottom:180.000068px;}
.y12e{bottom:184.500068px;}
.y1af{bottom:185.040047px;}
.y1d2{bottom:186.840088px;}
.y9e{bottom:188.820099px;}
.y75{bottom:191.340088px;}
.y149{bottom:191.700096px;}
.y4d{bottom:192.420043px;}
.yb2{bottom:192.600083px;}
.y150{bottom:194.940033px;}
.y1bb{bottom:197.640060px;}
.y1ac{bottom:199.260064px;}
.y14c{bottom:199.800041px;}
.y12c{bottom:199.980079px;}
.y12{bottom:201.780052px;}
.yd0{bottom:203.760064px;}
.y158{bottom:206.460091px;}
.y126{bottom:207.540047px;}
.y147{bottom:208.260064px;}
.y111{bottom:212.040047px;}
.y9d{bottom:212.580093px;}
.y141{bottom:214.920043px;}
.y74{bottom:215.280052px;}
.y1b8{bottom:215.820099px;}
.y174{bottom:218.880066px;}
.y18d{bottom:221.400055px;}
.yb1{bottom:223.020058px;}
.y13b{bottom:223.200096px;}
.y1d1{bottom:225.720085px;}
.ycf{bottom:227.520058px;}
.y11{bottom:229.680039px;}
.y1ab{bottom:229.860077px;}
.y157{bottom:230.220085px;}
.y12b{bottom:230.760064px;}
.y146{bottom:231.300041px;}
.y110{bottom:235.980079px;}
.y9c{bottom:236.340088px;}
.y125{bottom:237.960091px;}
.y1ae{bottom:238.860077px;}
.y73{bottom:239.040047px;}
.y173{bottom:242.640060px;}
.y18c{bottom:245.160049px;}
.y1b7{bottom:246.240074px;}
.y13a{bottom:246.420043px;}
.yce{bottom:251.460091px;}
.yee{bottom:253.980079px;}
.y4c{bottom:257.040047px;}
.y10{bottom:257.400055px;}
.y10f{bottom:259.740074px;}
.y9b{bottom:260.280052px;}
.y12a{bottom:261.180039px;}
.y4b{bottom:261.360077px;}
.y145{bottom:262.080093px;}
.y72{bottom:262.800041px;}
.y1d0{bottom:264.420043px;}
.y16c{bottom:265.680039px;}
.y14b{bottom:266.400055px;}
.y18b{bottom:269.100083px;}
.y1ad{bottom:269.280052px;}
.y139{bottom:269.460091px;}
.y124{bottom:275.220085px;}
.y171{bottom:277.020058px;}
.yed{bottom:277.740074px;}
.y10e{bottom:283.500068px;}
.y9a{bottom:284.040047px;}
.y17d{bottom:284.400055px;}
.yf{bottom:285.120072px;}
.y71{bottom:286.560036px;}
.y4a{bottom:286.740074px;}
.y1cf{bottom:288.180039px;}
.y16b{bottom:289.440033px;}
.y14f{bottom:290.160049px;}
.y144{bottom:292.500068px;}
.y138{bottom:292.680039px;}
.y18a{bottom:292.860077px;}
.y172{bottom:298.440033px;}
.ycd{bottom:298.980079px;}
.y180{bottom:300.240074px;}
.yec{bottom:301.680039px;}
.y10d{bottom:307.260064px;}
.y170{bottom:307.440033px;}
.y99{bottom:307.800041px;}
.y70{bottom:310.500068px;}
.ye{bottom:313.020058px;}
.y16a{bottom:313.200096px;}
.y130{bottom:314.100083px;}
.y178{bottom:315.900055px;}
.y49{bottom:316.440033px;}
.y189{bottom:316.620072px;}
.y48{bottom:320.760064px;}
.ycc{bottom:322.740074px;}
.y137{bottom:323.460091px;}
.yeb{bottom:325.440033px;}
.y1ce{bottom:327.060036px;}
.y17f{bottom:330.660049px;}
.y10c{bottom:331.200096px;}
.y98{bottom:331.560036px;}
.y6f{bottom:334.260064px;}
.y169{bottom:336.960091px;}
.y12f{bottom:337.860077px;}
.y177{bottom:338.940033px;}
.y188{bottom:340.380066px;}
.y47{bottom:346.140060px;}
.y123{bottom:346.680039px;}
.yea{bottom:349.200096px;}
.y1cd{bottom:350.820099px;}
.y136{bottom:353.880066px;}
.ycb{bottom:354.960091px;}
.y97{bottom:355.500068px;}
.yd{bottom:355.680039px;}
.y16f{bottom:357.480079px;}
.y6e{bottom:358.020058px;}
.y168{bottom:360.900055px;}
.y12d{bottom:361.620072px;}
.y1b3{bottom:363.780052px;}
.y187{bottom:364.320099px;}
.y176{bottom:369.720085px;}
.yca{bottom:370.440033px;}
.ye9{bottom:372.960091px;}
.y46{bottom:375.840088px;}
.y10b{bottom:378.720085px;}
.y96{bottom:379.260064px;}
.y45{bottom:380.160049px;}
.y6d{bottom:381.780052px;}
.y167{bottom:384.660049px;}
.y122{bottom:385.380066px;}
.y186{bottom:388.080093px;}
.y1cc{bottom:389.700096px;}
.y196{bottom:392.940033px;}
.yb0{bottom:394.200096px;}
.ye8{bottom:396.900055px;}
.y175{bottom:400.140060px;}
.y10a{bottom:402.480079px;}
.y95{bottom:403.020058px;}
.y44{bottom:405.540047px;}
.y6c{bottom:405.720085px;}
.y195{bottom:408.420043px;}
.y121{bottom:409.320099px;}
.y43{bottom:409.860077px;}
.y185{bottom:411.840088px;}
.y1cb{bottom:413.460091px;}
.y182{bottom:417.600083px;}
.yaf{bottom:417.960091px;}
.ye7{bottom:420.660049px;}
.y135{bottom:426.240074px;}
.y94{bottom:426.780052px;}
.y6b{bottom:429.480079px;}
.y194{bottom:431.640060px;}
.y166{bottom:432.180039px;}
.y120{bottom:433.080093px;}
.y42{bottom:435.240074px;}
.y17b{bottom:435.600083px;}
.y41{bottom:439.560036px;}
.y1e4{bottom:439.920043px;}
.y109{bottom:441.360077px;}
.yae{bottom:441.900055px;}
.y1a9{bottom:443.880066px;}
.ye6{bottom:444.420043px;}
.yc{bottom:446.400055px;}
.y1b6{bottom:450.180039px;}
.y93{bottom:450.720085px;}
.y1ca{bottom:452.340088px;}
.y193{bottom:454.860077px;}
.y11f{bottom:456.840088px;}
.y17a{bottom:459.360077px;}
.y40{bottom:464.940033px;}
.y108{bottom:465.120072px;}
.yad{bottom:465.660049px;}
.y6a{bottom:468.180039px;}
.y3f{bottom:469.260064px;}
.y165{bottom:471.060036px;}
.y134{bottom:473.940033px;}
.y92{bottom:474.480079px;}
.y1e3{bottom:478.620072px;}
.y11e{bottom:480.600083px;}
.y16e{bottom:483.300041px;}
.y192{bottom:485.460091px;}
.y107{bottom:488.880066px;}
.yac{bottom:489.420043px;}
.y1c9{bottom:491.040047px;}
.y69{bottom:492.120072px;}
.yb{bottom:493.200096px;}
.y3e{bottom:494.640060px;}
.y164{bottom:494.820099px;}
.y91{bottom:498.240074px;}
.y11d{bottom:504.360077px;}
.ye5{bottom:507.060036px;}
.y106{bottom:512.820099px;}
.yab{bottom:513.180039px;}
.y68{bottom:515.880066px;}
.y1e2{bottom:517.500068px;}
.y163{bottom:518.580093px;}
.y14e{bottom:519.480079px;}
.y90{bottom:522.000068px;}
.y3c{bottom:524.340088px;}
.y154{bottom:527.760064px;}
.y11c{bottom:528.300041px;}
.y3b{bottom:528.660049px;}
.y1c8{bottom:529.920043px;}
.ye4{bottom:530.820099px;}
.y105{bottom:536.580093px;}
.yaa{bottom:537.120072px;}
.ya{bottom:539.460091px;}
.y67{bottom:539.640060px;}
.y162{bottom:542.520058px;}
.y140{bottom:543.240074px;}
.y8f{bottom:545.940033px;}
.y11b{bottom:552.060036px;}
.y1c7{bottom:553.680039px;}
.y3a{bottom:554.040047px;}
.ye3{bottom:554.580093px;}
.y1e1{bottom:556.200096px;}
.y39{bottom:558.360077px;}
.y104{bottom:560.340088px;}
.ya9{bottom:560.880066px;}
.y66{bottom:563.400055px;}
.y13f{bottom:567.000068px;}
.y8e{bottom:569.700096px;}
.yc9{bottom:575.820099px;}
.y9{bottom:576.900055px;}
.ye2{bottom:578.520058px;}
.y37{bottom:583.740074px;}
.y103{bottom:584.100083px;}
.y161{bottom:584.280052px;}
.ya8{bottom:584.640060px;}
.y65{bottom:587.340088px;}
.y36{bottom:588.060036px;}
.y14d{bottom:590.940033px;}
.y1c6{bottom:592.560036px;}
.y8d{bottom:593.460091px;}
.y1e0{bottom:595.080093px;}
.y13e{bottom:599.220085px;}
.yc8{bottom:599.580093px;}
.ye1{bottom:602.280052px;}
.y1b5{bottom:607.860077px;}
.y102{bottom:608.040047px;}
.ya7{bottom:608.400055px;}
.y16d{bottom:610.560036px;}
.y64{bottom:611.100083px;}
.y35{bottom:613.440033px;}
.y13d{bottom:614.700096px;}
.y1c5{bottom:616.320099px;}
.y184{bottom:617.220085px;}
.y34{bottom:617.760064px;}
.yc7{bottom:623.520058px;}
.ye0{bottom:626.040047px;}
.y8{bottom:628.560036px;}
.y101{bottom:631.800041px;}
.y8c{bottom:632.340088px;}
.y1df{bottom:633.960091px;}
.y63{bottom:634.860077px;}
.y11a{bottom:638.460091px;}
.y1b9{bottom:640.800041px;}
.y1a5{bottom:640.980079px;}
.y33{bottom:643.140060px;}
.yc6{bottom:647.280052px;}
.ydf{bottom:649.800041px;}
.y1c4{bottom:655.020058px;}
.y1a6{bottom:655.560036px;}
.y160{bottom:655.740074px;}
.y8b{bottom:656.100083px;}
.y62{bottom:658.800041px;}
.y119{bottom:662.400055px;}
.y1b4{bottom:664.560036px;}
.y1a4{bottom:665.100083px;}
.y100{bottom:670.680039px;}
.yc5{bottom:671.220085px;}
.y1de{bottom:672.840088px;}
.y31{bottom:673.020058px;}
.yde{bottom:673.920043px;}
.y30{bottom:677.340088px;}
.y15f{bottom:679.680039px;}
.y8a{bottom:680.040047px;}
.y7{bottom:680.220085px;}
.y61{bottom:682.740074px;}
.y118{bottom:686.160049px;}
.y1a3{bottom:688.860077px;}
.y1c3{bottom:694.080059px;}
.y181{bottom:694.440067px;}
.yc4{bottom:694.980079px;}
.ydd{bottom:697.680073px;}
.y2f{bottom:702.720051px;}
.yff{bottom:702.900055px;}
.y143{bottom:703.260064px;}
.y15e{bottom:703.440067px;}
.y89{bottom:703.800076px;}
.y2e{bottom:707.040081px;}
.y117{bottom:710.100083px;}
.y1dd{bottom:711.720051px;}
.y1a2{bottom:712.620072px;}
.y1c2{bottom:717.840054px;}
.yfe{bottom:718.380066px;}
.yc3{bottom:718.920078px;}
.y60{bottom:721.440067px;}
.y15d{bottom:727.200061px;}
.y88{bottom:727.740074px;}
.y156{bottom:729.720051px;}
.y2d{bottom:732.420078px;}
.y116{bottom:733.860077px;}
.y1a1{bottom:736.380066px;}
.y2c{bottom:736.740074px;}
.y6{bottom:740.340054px;}
.yc2{bottom:742.680073px;}
.y5f{bottom:745.200061px;}
.y1dc{bottom:750.420078px;}
.y87{bottom:751.500068px;}
.y1c1{bottom:756.720051px;}
.yfd{bottom:757.080059px;}
.y115{bottom:757.620072px;}
.y15c{bottom:759.420078px;}
.y1a0{bottom:760.320065px;}
.y2b{bottom:762.120072px;}
.y17c{bottom:765.900055px;}
.y2a{bottom:766.440067px;}
.y5e{bottom:769.140060px;}
.y191{bottom:774.720051px;}
.y15b{bottom:774.900055px;}
.y86{bottom:775.260064px;}
.y1c0{bottom:780.480079px;}
.y114{bottom:781.380066px;}
.y5{bottom:783.180073px;}
.y19f{bottom:784.080059px;}
.y1db{bottom:789.300076px;}
.y1aa{bottom:789.660049px;}
.yc1{bottom:790.200061px;}
.y29{bottom:791.820065px;}
.y5d{bottom:792.900055px;}
.yfc{bottom:795.960056px;}
.ya6{bottom:798.480079px;}
.y15a{bottom:798.660049px;}
.y85{bottom:799.020058px;}
.y113{bottom:805.320065px;}
.y1a8{bottom:807.840054px;}
.y1d{bottom:810.900055px;}
.ya5{bottom:814.140060px;}
.y5c{bottom:816.660049px;}
.y1bf{bottom:819.360077px;}
.y28{bottom:821.520058px;}
.y14a{bottom:822.780052px;}
.y4{bottom:825.840054px;}
.y1da{bottom:828.000068px;}
.yc0{bottom:829.080059px;}
.y1b2{bottom:831.060070px;}
.y1a7{bottom:831.600083px;}
.yfb{bottom:834.840054px;}
.y112{bottom:837.360077px;}
.y84{bottom:837.900055px;}
.ydc{bottom:839.880066px;}
.y5b{bottom:840.420078px;}
.ya4{bottom:846.180073px;}
.y19e{bottom:846.720051px;}
.y26{bottom:851.220051px;}
.y1c{bottom:852.660049px;}
.ybf{bottom:852.840054px;}
.ydb{bottom:855.540081px;}
.y1be{bottom:858.060070px;}
.yfa{bottom:858.600083px;}
.y83{bottom:861.660049px;}
.y5a{bottom:864.360077px;}
.y1d9{bottom:866.880066px;}
.y3{bottom:867.420078px;}
.y19d{bottom:870.480079px;}
.y1d5{bottom:873.180073px;}
.ybe{bottom:876.600083px;}
.yda{bottom:879.300076px;}
.y25{bottom:880.920078px;}
.yf9{bottom:882.360077px;}
.y24{bottom:885.240074px;}
.y82{bottom:885.420078px;}
.y59{bottom:888.120072px;}
.y1b1{bottom:893.700061px;}
.y19c{bottom:894.240074px;}
.y1bd{bottom:896.940067px;}
.y1b{bottom:899.460056px;}
.ybd{bottom:900.540081px;}
.yd9{bottom:903.060070px;}
.y1d8{bottom:905.760064px;}
.y2{bottom:906.120072px;}
.y81{bottom:909.360077px;}
.y23{bottom:910.620072px;}
.y58{bottom:911.880066px;}
.y22{bottom:914.940067px;}
.y19b{bottom:918.000068px;}
.ybc{bottom:924.300076px;}
.yd8{bottom:926.820065px;}
.yf8{bottom:930.060070px;}
.y80{bottom:933.120072px;}
.y57{bottom:935.640060px;}
.y20{bottom:940.320065px;}
.y19a{bottom:941.940067px;}
.y1d7{bottom:944.460056px;}
.y1f{bottom:944.640060px;}
.y1a{bottom:946.080059px;}
.ybb{bottom:948.060070px;}
.yd7{bottom:950.760064px;}
.yf7{bottom:953.820065px;}
.y183{bottom:956.340054px;}
.y7f{bottom:956.880066px;}
.y56{bottom:959.400055px;}
.y199{bottom:965.700061px;}
.yba{bottom:971.820065px;}
.yd6{bottom:974.520058px;}
.yf6{bottom:977.580059px;}
.y1{bottom:979.380066px;}
.y7e{bottom:980.640060px;}
.y55{bottom:983.340070px;}
.y1b0{bottom:988.920061px;}
.y198{bottom:989.460074px;}
.y19{bottom:992.880066px;}
.yb9{bottom:995.760064px;}
.yd5{bottom:998.280069px;}
.y179{bottom:1004.040064px;}
.y7d{bottom:1004.400072px;}
.y155{bottom:1013.220068px;}
.yf5{bottom:1016.100065px;}
.yb8{bottom:1019.520058px;}
.y54{bottom:1022.040064px;}
.y142{bottom:1027.800058px;}
.y7c{bottom:1028.340070px;}
.y159{bottom:1037.160067px;}
.y18{bottom:1039.680073px;}
.yb7{bottom:1043.280069px;}
.y7b{bottom:1052.100065px;}
.yf4{bottom:1055.160067px;}
.y190{bottom:1060.380066px;}
.y1e{bottom:1060.560070px;}
.y1ba{bottom:1060.920061px;}
.yb6{bottom:1067.040064px;}
.ya3{bottom:1075.860060px;}
.yf3{bottom:1078.560070px;}
.y17{bottom:1086.300058px;}
.y7a{bottom:1090.980063px;}
.y53{bottom:1099.260064px;}
.ya2{bottom:1099.620072px;}
.yd3{bottom:1099.800058px;}
.y197{bottom:1114.380066px;}
.y79{bottom:1114.740074px;}
.yf2{bottom:1117.440067px;}
.y16{bottom:1133.100065px;}
.yd4{bottom:1138.140069px;}
.yf1{bottom:1138.320065px;}
.y52{bottom:1138.500068px;}
.y17e{bottom:1146.780069px;}
.y78{bottom:1167.660067px;}
.yf0{bottom:1180.440067px;}
.y4f{bottom:1186.740066px;}
.yef{bottom:1200.600065px;}
.y4e{bottom:1203.300067px;}
.h9{height:20.519989px;}
.hc{height:20.519990px;}
.ha{height:20.520022px;}
.hb{height:20.520057px;}
.hf{height:41.537314px;}
.h10{height:43.248020px;}
.h1d{height:44.536035px;}
.hd{height:53.712199px;}
.h11{height:54.630820px;}
.h15{height:59.345979px;}
.h8{height:63.951621px;}
.h3{height:64.549300px;}
.h2{height:65.886904px;}
.h19{height:72.881729px;}
.h1a{height:72.881796px;}
.h18{height:72.881864px;}
.h4{height:75.522664px;}
.h13{height:76.367952px;}
.h14{height:76.367957px;}
.h1c{height:76.367988px;}
.h12{height:76.368020px;}
.h16{height:76.368024px;}
.h17{height:76.368087px;}
.he{height:76.368092px;}
.h1b{height:76.368227px;}
.h6{height:85.055658px;}
.h7{height:85.850571px;}
.h5{height:138.774993px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w3{width:8.100013px;}
.w2{width:8.279983px;}
.w4{width:8.639992px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:80.819996px;}
.x2e{left:88.920001px;}
.x40{left:90.000000px;}
.x5f{left:91.620002px;}
.x5{left:102.420001px;}
.xe{left:107.819996px;}
.x58{left:115.920001px;}
.x7c{left:117.900003px;}
.x7f{left:118.980002px;}
.x23{left:120.959997px;}
.x82{left:130.860000px;}
.x17{left:134.099997px;}
.x4{left:138.060001px;}
.x8d{left:142.019998px;}
.xa1{left:143.099997px;}
.xa0{left:146.879998px;}
.x3{left:152.280001px;}
.x4d{left:153.719999px;}
.x67{left:156.599997px;}
.x72{left:161.099997px;}
.x51{left:163.979994px;}
.x6e{left:166.860008px;}
.x46{left:171.900003px;}
.x9d{left:172.979994px;}
.x77{left:176.039996px;}
.x69{left:188.280001px;}
.x6f{left:197.639992px;}
.x97{left:201.060001px;}
.x25{left:205.379998px;}
.xa2{left:225.180005px;}
.x35{left:226.259994px;}
.x4a{left:230.039996px;}
.x92{left:235.259994px;}
.x36{left:241.199993px;}
.x73{left:246.599997px;}
.x33{left:247.860008px;}
.x9{left:250.740006px;}
.x6{left:252.539996px;}
.x52{left:257.759994px;}
.x91{left:260.460005px;}
.x37{left:262.080008px;}
.x29{left:268.560001px;}
.x24{left:270.719999px;}
.x47{left:273.599997px;}
.x4e{left:277.020006px;}
.x65{left:281.520006px;}
.x32{left:283.500000px;}
.xb{left:287.639992px;}
.xa4{left:289.439999px;}
.x93{left:294.480011px;}
.x7{left:297.000000px;}
.x5d{left:299.699993px;}
.x55{left:303.660015px;}
.x20{left:306.360008px;}
.x9e{left:308.879998px;}
.x8c{left:313.019989px;}
.x8{left:315.540012px;}
.x30{left:320.939999px;}
.x83{left:326.519989px;}
.x81{left:328.139992px;}
.xa{left:334.439999px;}
.x59{left:336.420010px;}
.x6d{left:339.839985px;}
.x7b{left:342.000000px;}
.x9a{left:343.800007px;}
.xa5{left:351.540012px;}
.x1a{left:354.420010px;}
.x22{left:360.180005px;}
.x1{left:365.040012px;}
.x1b{left:368.459988px;}
.x88{left:376.920010px;}
.x44{left:378.360008px;}
.x2d{left:379.620002px;}
.x71{left:380.699993px;}
.x1f{left:384.120002px;}
.x8a{left:385.740006px;}
.x6a{left:390.240006px;}
.x4f{left:391.680005px;}
.x39{left:393.300007px;}
.x94{left:394.920010px;}
.x16{left:396.360008px;}
.x45{left:399.779983px;}
.x43{left:403.740006px;}
.x21{left:407.160015px;}
.x5c{left:419.759994px;}
.x12{left:423.360008px;}
.x34{left:426.060001px;}
.xa3{left:427.319996px;}
.x62{left:430.019989px;}
.x7a{left:433.079990px;}
.x3e{left:438.839985px;}
.x2{left:446.399987px;}
.x8f{left:451.800007px;}
.x2a{left:454.319996px;}
.x74{left:466.560001px;}
.x75{left:467.819996px;}
.x64{left:484.560001px;}
.x87{left:491.399987px;}
.x5e{left:507.959988px;}
.x49{left:509.579990px;}
.x6c{left:512.639992px;}
.x89{left:513.899987px;}
.x28{left:516.420010px;}
.x31{left:524.879998px;}
.x42{left:536.759994px;}
.x54{left:538.920010px;}
.x90{left:552.779983px;}
.x61{left:558.899987px;}
.x1c{left:586.620002px;}
.x3f{left:594.720017px;}
.x8e{left:599.220017px;}
.x63{left:601.200027px;}
.x6b{left:603.360008px;}
.x79{left:609.120002px;}
.x19{left:612.000000px;}
.x96{left:623.340019px;}
.x26{left:624.960023px;}
.x80{left:633.419975px;}
.x8b{left:636.299973px;}
.x53{left:648.000000px;}
.x4b{left:649.799973px;}
.x57{left:652.139992px;}
.x41{left:653.580025px;}
.x95{left:656.279983px;}
.x68{left:663.840019px;}
.x66{left:666.000000px;}
.x56{left:669.779983px;}
.x14{left:672.480011px;}
.x98{left:675.360008px;}
.x99{left:676.980011px;}
.x7e{left:683.279983px;}
.x48{left:685.799973px;}
.x13{left:698.039978px;}
.x38{left:700.559967px;}
.x85{left:705.059967px;}
.x4c{left:716.220017px;}
.x78{left:721.980011px;}
.x2c{left:725.580025px;}
.x86{left:727.919975px;}
.x3c{left:731.159981px;}
.x9c{left:734.039978px;}
.x3a{left:735.659981px;}
.x9b{left:736.740006px;}
.x3b{left:739.440033px;}
.x18{left:742.320030px;}
.x50{left:743.759994px;}
.x84{left:749.700027px;}
.x60{left:756.720017px;}
.x9f{left:761.580025px;}
.x2b{left:765.179970px;}
.x5b{left:770.039978px;}
.xf{left:772.559967px;}
.x3d{left:774.899987px;}
.x1d{left:775.980011px;}
.x2f{left:781.740006px;}
.x7d{left:783.179970px;}
.x76{left:785.159981px;}
.x11{left:788.580025px;}
.x70{left:792.360008px;}
.x27{left:795.419975px;}
.x10{left:797.580025px;}
.x5a{left:799.019989px;}
.x15{left:803.879998px;}
.xd{left:806.580025px;}
.x1e{left:812.159981px;}
@media print{
.v3{vertical-align:-29.440064pt;}
.v2{vertical-align:-26.879884pt;}
.v4{vertical-align:-8.320068pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440064pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000500pt;}
.ls0{letter-spacing:0.004370pt;}
.ls16{letter-spacing:0.031432pt;}
.ls8{letter-spacing:0.054252pt;}
.lsc{letter-spacing:0.132578pt;}
.lsa{letter-spacing:0.132582pt;}
.lsf{letter-spacing:0.267332pt;}
.ls6{letter-spacing:0.319208pt;}
.ls5{letter-spacing:0.319212pt;}
.ls1{letter-spacing:0.605157pt;}
.lsd{letter-spacing:3.359676pt;}
.ls3{letter-spacing:57.151306pt;}
.ls17{letter-spacing:57.151310pt;}
.ls13{letter-spacing:96.191318pt;}
.lsb{letter-spacing:331.519419pt;}
.ls18{letter-spacing:478.079475pt;}
.ls9{letter-spacing:540.159371pt;}
.ls10{letter-spacing:541.572582pt;}
.ls7{letter-spacing:590.852554pt;}
.ls11{letter-spacing:714.372630pt;}
.ls12{letter-spacing:798.212474pt;}
.ls14{letter-spacing:798.719495pt;}
.lse{letter-spacing:914.692518pt;}
.ls15{letter-spacing:1181.439463pt;}
.ws3{word-spacing:-64.002404pt;}
.ws15{word-spacing:-58.882400pt;}
.ws1{word-spacing:-21.280800pt;}
.ws0{word-spacing:-18.720699pt;}
.ws7{word-spacing:-16.054853pt;}
.ws4{word-spacing:-16.000601pt;}
.ws9{word-spacing:-13.307422pt;}
.ws8{word-spacing:-10.848452pt;}
.wsa{word-spacing:-10.720400pt;}
.ws1b{word-spacing:-9.691242pt;}
.ws5{word-spacing:-8.389445pt;}
.ws1e{word-spacing:-2.190848pt;}
.wsc{word-spacing:-0.910696pt;}
.ws2{word-spacing:0.000000pt;}
.ws24{word-spacing:1.009224pt;}
.ws26{word-spacing:2.289132pt;}
.ws23{word-spacing:4.209172pt;}
.ws13{word-spacing:9.969184pt;}
.ws11{word-spacing:12.890856pt;}
.wsd{word-spacing:12.990920pt;}
.wse{word-spacing:25.135728pt;}
.ws1a{word-spacing:25.539344pt;}
.ws12{word-spacing:40.576037pt;}
.ws18{word-spacing:41.018439pt;}
.ws14{word-spacing:41.136028pt;}
.ws6{word-spacing:41.989784pt;}
.ws1c{word-spacing:42.268571pt;}
.ws21{word-spacing:42.369524pt;}
.ws20{word-spacing:42.884962pt;}
.ws22{word-spacing:43.031621pt;}
.ws25{word-spacing:282.960387pt;}
.ws16{word-spacing:331.258535pt;}
.ws2a{word-spacing:441.374355pt;}
.ws2b{word-spacing:455.031939pt;}
.ws29{word-spacing:476.715327pt;}
.wsf{word-spacing:519.167101pt;}
.ws1f{word-spacing:560.990698pt;}
.ws17{word-spacing:1020.854519pt;}
.ws27{word-spacing:1035.910828pt;}
.ws19{word-spacing:1169.338475pt;}
.wsb{word-spacing:1253.023616pt;}
.ws28{word-spacing:1294.842351pt;}
.ws1d{word-spacing:1862.906038pt;}
.ws10{word-spacing:2146.682195pt;}
._1b{margin-left:-10.555130pt;}
._4b{margin-left:-7.815718pt;}
._58{margin-left:-2.617173pt;}
._0{margin-left:-1.199499pt;}
._1{width:0.924638pt;}
._8{width:2.030061pt;}
._3{width:3.294948pt;}
._10{width:4.604922pt;}
._11{width:5.546722pt;}
._12{width:7.185271pt;}
._24{width:8.111452pt;}
._18{width:9.014589pt;}
._23{width:10.083583pt;}
._15{width:11.064166pt;}
._16{width:12.085204pt;}
._1f{width:12.979531pt;}
._20{width:14.435292pt;}
._17{width:17.334901pt;}
._1a{width:18.678452pt;}
._2a{width:19.630737pt;}
._14{width:20.719426pt;}
._13{width:21.701315pt;}
._25{width:22.607554pt;}
._32{width:23.768790pt;}
._31{width:25.152945pt;}
._52{width:26.264986pt;}
._1e{width:27.760543pt;}
._1d{width:28.811832pt;}
._47{width:30.393871pt;}
._2e{width:31.861758pt;}
._44{width:32.832532pt;}
._2b{width:33.767373pt;}
._2f{width:35.560501pt;}
._21{width:37.101894pt;}
._22{width:38.385089pt;}
._19{width:39.739531pt;}
._3f{width:41.191307pt;}
._43{width:42.477788pt;}
._35{width:43.623029pt;}
._53{width:45.302876pt;}
._c{width:46.706432pt;}
._3d{width:51.661335pt;}
._4f{width:52.588024pt;}
._e{width:53.943103pt;}
._b{width:57.226134pt;}
._d{width:59.555198pt;}
._45{width:60.882758pt;}
._a{width:62.052930pt;}
._9{width:76.162361pt;}
._4{width:78.722957pt;}
._7{width:83.402656pt;}
._6{width:85.793774pt;}
._5{width:93.649880pt;}
._26{width:110.154838pt;}
._38{width:111.485712pt;}
._50{width:125.396585pt;}
._96{width:137.126311pt;}
._9e{width:138.511071pt;}
._98{width:139.457009pt;}
._92{width:142.151787pt;}
._9d{width:150.196210pt;}
._8f{width:152.803028pt;}
._28{width:163.338098pt;}
._f{width:172.799387pt;}
._91{width:177.838749pt;}
._95{width:178.832122pt;}
._57{width:185.635576pt;}
._9a{width:186.638753pt;}
._4a{width:196.927127pt;}
._71{width:198.254277pt;}
._5b{width:215.127463pt;}
._41{width:216.215122pt;}
._30{width:218.432095pt;}
._7b{width:228.202546pt;}
._6c{width:230.972936pt;}
._4e{width:232.170118pt;}
._97{width:233.839268pt;}
._7c{width:237.822970pt;}
._27{width:243.598921pt;}
._5e{width:263.728529pt;}
._94{width:270.319308pt;}
._5f{width:271.335541pt;}
._72{width:277.805163pt;}
._99{width:279.919284pt;}
._73{width:298.147862pt;}
._5d{width:305.661427pt;}
._6e{width:327.817120pt;}
._85{width:331.327335pt;}
._42{width:337.479930pt;}
._8e{width:339.552906pt;}
._7f{width:356.878522pt;}
._60{width:361.664761pt;}
._64{width:365.174209pt;}
._8a{width:423.487003pt;}
._3e{width:427.969398pt;}
._69{width:434.885007pt;}
._78{width:442.846264pt;}
._2d{width:465.297477pt;}
._6a{width:481.075985pt;}
._89{width:485.175989pt;}
._3c{width:489.485534pt;}
._75{width:537.803389pt;}
._29{width:540.998453pt;}
._66{width:542.239570pt;}
._55{width:546.157197pt;}
._76{width:547.140148pt;}
._87{width:565.960406pt;}
._59{width:602.757496pt;}
._36{width:641.036639pt;}
._9b{width:691.936133pt;}
._74{width:695.701221pt;}
._40{width:709.370553pt;}
._34{width:714.613239pt;}
._8b{width:741.767760pt;}
._4c{width:749.779925pt;}
._2c{width:752.028247pt;}
._61{width:774.402010pt;}
._82{width:788.287175pt;}
._7d{width:800.411874pt;}
._9c{width:811.218671pt;}
._84{width:820.635628pt;}
._2{width:833.037604pt;}
._5c{width:848.202058pt;}
._5a{width:850.371111pt;}
._51{width:855.037664pt;}
._79{width:862.836958pt;}
._68{width:881.234266pt;}
._56{width:884.469898pt;}
._7a{width:897.425943pt;}
._6b{width:911.130717pt;}
._48{width:923.327215pt;}
._33{width:942.879526pt;}
._81{width:950.207219pt;}
._49{width:956.607243pt;}
._8d{width:972.000734pt;}
._4d{width:972.959602pt;}
._46{width:987.157950pt;}
._62{width:1003.959058pt;}
._6f{width:1017.237906pt;}
._63{width:1026.411462pt;}
._83{width:1034.687319pt;}
._77{width:1050.183308pt;}
._88{width:1069.449321pt;}
._65{width:1094.769497pt;}
._70{width:1130.490144pt;}
._37{width:1171.804540pt;}
._90{width:1249.519320pt;}
._8c{width:1267.911129pt;}
._7e{width:1274.213383pt;}
._6d{width:1291.770084pt;}
._67{width:1337.219601pt;}
._86{width:1358.527227pt;}
._39{width:1415.427168pt;}
._93{width:1491.439244pt;}
._3b{width:1512.854528pt;}
._80{width:1672.440818pt;}
._1c{width:1772.069041pt;}
._54{width:1868.068225pt;}
._3a{width:1952.480392pt;}
._9f{width:2250.324525pt;}
.fs7{font-size:37.121440pt;}
.fs6{font-size:42.881600pt;}
.fs5{font-size:48.002000pt;}
.fs8{font-size:53.122000pt;}
.fs0{font-size:58.882400pt;}
.fs1{font-size:64.002404pt;}
.fs2{font-size:74.882796pt;}
.fs4{font-size:85.123200pt;}
.fs3{font-size:138.885192pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:3.839965pt;}
.y38{bottom:3.839966pt;}
.y21{bottom:3.839996pt;}
.y27{bottom:3.840026pt;}
.y32{bottom:3.840027pt;}
.y51{bottom:51.200074pt;}
.y50{bottom:68.320069pt;}
.y1d6{bottom:69.120118pt;}
.yb5{bottom:102.720032pt;}
.ya1{bottom:104.320069pt;}
.y15{bottom:105.440064pt;}
.yd2{bottom:109.440064pt;}
.y153{bottom:109.920044pt;}
.y1d4{bottom:110.400086pt;}
.y1bc{bottom:112.160035pt;}
.y129{bottom:115.840088pt;}
.y133{bottom:117.760071pt;}
.y77{bottom:122.560059pt;}
.yb4{bottom:123.360047pt;}
.ya0{bottom:125.440064pt;}
.y14{bottom:130.080079pt;}
.y152{bottom:131.040039pt;}
.y1d3{bottom:131.520081pt;}
.y18f{bottom:133.280030pt;}
.y128{bottom:136.640076pt;}
.y132{bottom:138.880066pt;}
.y13c{bottom:143.360047pt;}
.y148{bottom:143.840088pt;}
.y9f{bottom:146.720032pt;}
.y76{bottom:149.760071pt;}
.yb3{bottom:150.560059pt;}
.y151{bottom:152.160035pt;}
.y18e{bottom:154.560059pt;}
.y13{bottom:154.720032pt;}
.yd1{bottom:157.120057pt;}
.y127{bottom:157.280030pt;}
.y131{bottom:160.000061pt;}
.y12e{bottom:164.000061pt;}
.y1af{bottom:164.480042pt;}
.y1d2{bottom:166.080079pt;}
.y9e{bottom:167.840088pt;}
.y75{bottom:170.080079pt;}
.y149{bottom:170.400086pt;}
.y4d{bottom:171.040039pt;}
.yb2{bottom:171.200074pt;}
.y150{bottom:173.280030pt;}
.y1bb{bottom:175.680054pt;}
.y1ac{bottom:177.120057pt;}
.y14c{bottom:177.600037pt;}
.y12c{bottom:177.760071pt;}
.y12{bottom:179.360047pt;}
.yd0{bottom:181.120057pt;}
.y158{bottom:183.520081pt;}
.y126{bottom:184.480042pt;}
.y147{bottom:185.120057pt;}
.y111{bottom:188.480042pt;}
.y9d{bottom:188.960083pt;}
.y141{bottom:191.040039pt;}
.y74{bottom:191.360047pt;}
.y1b8{bottom:191.840088pt;}
.y174{bottom:194.560059pt;}
.y18d{bottom:196.800049pt;}
.yb1{bottom:198.240052pt;}
.y13b{bottom:198.400086pt;}
.y1d1{bottom:200.640076pt;}
.ycf{bottom:202.240052pt;}
.y11{bottom:204.160035pt;}
.y1ab{bottom:204.320069pt;}
.y157{bottom:204.640076pt;}
.y12b{bottom:205.120057pt;}
.y146{bottom:205.600037pt;}
.y110{bottom:209.760071pt;}
.y9c{bottom:210.080079pt;}
.y125{bottom:211.520081pt;}
.y1ae{bottom:212.320069pt;}
.y73{bottom:212.480042pt;}
.y173{bottom:215.680054pt;}
.y18c{bottom:217.920044pt;}
.y1b7{bottom:218.880066pt;}
.y13a{bottom:219.040039pt;}
.yce{bottom:223.520081pt;}
.yee{bottom:225.760071pt;}
.y4c{bottom:228.480042pt;}
.y10{bottom:228.800049pt;}
.y10f{bottom:230.880066pt;}
.y9b{bottom:231.360047pt;}
.y12a{bottom:232.160035pt;}
.y4b{bottom:232.320069pt;}
.y145{bottom:232.960083pt;}
.y72{bottom:233.600037pt;}
.y1d0{bottom:235.040039pt;}
.y16c{bottom:236.160035pt;}
.y14b{bottom:236.800049pt;}
.y18b{bottom:239.200074pt;}
.y1ad{bottom:239.360047pt;}
.y139{bottom:239.520081pt;}
.y124{bottom:244.640076pt;}
.y171{bottom:246.240052pt;}
.yed{bottom:246.880066pt;}
.y10e{bottom:252.000061pt;}
.y9a{bottom:252.480042pt;}
.y17d{bottom:252.800049pt;}
.yf{bottom:253.440064pt;}
.y71{bottom:254.720032pt;}
.y4a{bottom:254.880066pt;}
.y1cf{bottom:256.160035pt;}
.y16b{bottom:257.280030pt;}
.y14f{bottom:257.920044pt;}
.y144{bottom:260.000061pt;}
.y138{bottom:260.160035pt;}
.y18a{bottom:260.320069pt;}
.y172{bottom:265.280030pt;}
.ycd{bottom:265.760071pt;}
.y180{bottom:266.880066pt;}
.yec{bottom:268.160035pt;}
.y10d{bottom:273.120057pt;}
.y170{bottom:273.280030pt;}
.y99{bottom:273.600037pt;}
.y70{bottom:276.000061pt;}
.ye{bottom:278.240052pt;}
.y16a{bottom:278.400086pt;}
.y130{bottom:279.200074pt;}
.y178{bottom:280.800049pt;}
.y49{bottom:281.280030pt;}
.y189{bottom:281.440064pt;}
.y48{bottom:285.120057pt;}
.ycc{bottom:286.880066pt;}
.y137{bottom:287.520081pt;}
.yeb{bottom:289.280030pt;}
.y1ce{bottom:290.720032pt;}
.y17f{bottom:293.920044pt;}
.y10c{bottom:294.400086pt;}
.y98{bottom:294.720032pt;}
.y6f{bottom:297.120057pt;}
.y169{bottom:299.520081pt;}
.y12f{bottom:300.320069pt;}
.y177{bottom:301.280030pt;}
.y188{bottom:302.560059pt;}
.y47{bottom:307.680054pt;}
.y123{bottom:308.160035pt;}
.yea{bottom:310.400086pt;}
.y1cd{bottom:311.840088pt;}
.y136{bottom:314.560059pt;}
.ycb{bottom:315.520081pt;}
.y97{bottom:316.000061pt;}
.yd{bottom:316.160035pt;}
.y16f{bottom:317.760071pt;}
.y6e{bottom:318.240052pt;}
.y168{bottom:320.800049pt;}
.y12d{bottom:321.440064pt;}
.y1b3{bottom:323.360047pt;}
.y187{bottom:323.840088pt;}
.y176{bottom:328.640076pt;}
.yca{bottom:329.280030pt;}
.ye9{bottom:331.520081pt;}
.y46{bottom:334.080079pt;}
.y10b{bottom:336.640076pt;}
.y96{bottom:337.120057pt;}
.y45{bottom:337.920044pt;}
.y6d{bottom:339.360047pt;}
.y167{bottom:341.920044pt;}
.y122{bottom:342.560059pt;}
.y186{bottom:344.960083pt;}
.y1cc{bottom:346.400086pt;}
.y196{bottom:349.280030pt;}
.yb0{bottom:350.400086pt;}
.ye8{bottom:352.800049pt;}
.y175{bottom:355.680054pt;}
.y10a{bottom:357.760071pt;}
.y95{bottom:358.240052pt;}
.y44{bottom:360.480042pt;}
.y6c{bottom:360.640076pt;}
.y195{bottom:363.040039pt;}
.y121{bottom:363.840088pt;}
.y43{bottom:364.320069pt;}
.y185{bottom:366.080079pt;}
.y1cb{bottom:367.520081pt;}
.y182{bottom:371.200074pt;}
.yaf{bottom:371.520081pt;}
.ye7{bottom:373.920044pt;}
.y135{bottom:378.880066pt;}
.y94{bottom:379.360047pt;}
.y6b{bottom:381.760071pt;}
.y194{bottom:383.680054pt;}
.y166{bottom:384.160035pt;}
.y120{bottom:384.960083pt;}
.y42{bottom:386.880066pt;}
.y17b{bottom:387.200074pt;}
.y41{bottom:390.720032pt;}
.y1e4{bottom:391.040039pt;}
.y109{bottom:392.320069pt;}
.yae{bottom:392.800049pt;}
.y1a9{bottom:394.560059pt;}
.ye6{bottom:395.040039pt;}
.yc{bottom:396.800049pt;}
.y1b6{bottom:400.160035pt;}
.y93{bottom:400.640076pt;}
.y1ca{bottom:402.080079pt;}
.y193{bottom:404.320069pt;}
.y11f{bottom:406.080079pt;}
.y17a{bottom:408.320069pt;}
.y40{bottom:413.280030pt;}
.y108{bottom:413.440064pt;}
.yad{bottom:413.920044pt;}
.y6a{bottom:416.160035pt;}
.y3f{bottom:417.120057pt;}
.y165{bottom:418.720032pt;}
.y134{bottom:421.280030pt;}
.y92{bottom:421.760071pt;}
.y1e3{bottom:425.440064pt;}
.y11e{bottom:427.200074pt;}
.y16e{bottom:429.600037pt;}
.y192{bottom:431.520081pt;}
.y107{bottom:434.560059pt;}
.yac{bottom:435.040039pt;}
.y1c9{bottom:436.480042pt;}
.y69{bottom:437.440064pt;}
.yb{bottom:438.400086pt;}
.y3e{bottom:439.680054pt;}
.y164{bottom:439.840088pt;}
.y91{bottom:442.880066pt;}
.y11d{bottom:448.320069pt;}
.ye5{bottom:450.720032pt;}
.y106{bottom:455.840088pt;}
.yab{bottom:456.160035pt;}
.y68{bottom:458.560059pt;}
.y1e2{bottom:460.000061pt;}
.y163{bottom:460.960083pt;}
.y14e{bottom:461.760071pt;}
.y90{bottom:464.000061pt;}
.y3c{bottom:466.080079pt;}
.y154{bottom:469.120057pt;}
.y11c{bottom:469.600037pt;}
.y3b{bottom:469.920044pt;}
.y1c8{bottom:471.040039pt;}
.ye4{bottom:471.840088pt;}
.y105{bottom:476.960083pt;}
.yaa{bottom:477.440064pt;}
.ya{bottom:479.520081pt;}
.y67{bottom:479.680054pt;}
.y162{bottom:482.240052pt;}
.y140{bottom:482.880066pt;}
.y8f{bottom:485.280030pt;}
.y11b{bottom:490.720032pt;}
.y1c7{bottom:492.160035pt;}
.y3a{bottom:492.480042pt;}
.ye3{bottom:492.960083pt;}
.y1e1{bottom:494.400086pt;}
.y39{bottom:496.320069pt;}
.y104{bottom:498.080079pt;}
.ya9{bottom:498.560059pt;}
.y66{bottom:500.800049pt;}
.y13f{bottom:504.000061pt;}
.y8e{bottom:506.400086pt;}
.yc9{bottom:511.840088pt;}
.y9{bottom:512.800049pt;}
.ye2{bottom:514.240052pt;}
.y37{bottom:518.880066pt;}
.y103{bottom:519.200074pt;}
.y161{bottom:519.360047pt;}
.ya8{bottom:519.680054pt;}
.y65{bottom:522.080079pt;}
.y36{bottom:522.720032pt;}
.y14d{bottom:525.280030pt;}
.y1c6{bottom:526.720032pt;}
.y8d{bottom:527.520081pt;}
.y1e0{bottom:528.960083pt;}
.y13e{bottom:532.640076pt;}
.yc8{bottom:532.960083pt;}
.ye1{bottom:535.360047pt;}
.y1b5{bottom:540.320069pt;}
.y102{bottom:540.480042pt;}
.ya7{bottom:540.800049pt;}
.y16d{bottom:542.720032pt;}
.y64{bottom:543.200074pt;}
.y35{bottom:545.280030pt;}
.y13d{bottom:546.400086pt;}
.y1c5{bottom:547.840088pt;}
.y184{bottom:548.640076pt;}
.y34{bottom:549.120057pt;}
.yc7{bottom:554.240052pt;}
.ye0{bottom:556.480042pt;}
.y8{bottom:558.720032pt;}
.y101{bottom:561.600037pt;}
.y8c{bottom:562.080079pt;}
.y1df{bottom:563.520081pt;}
.y63{bottom:564.320069pt;}
.y11a{bottom:567.520081pt;}
.y1b9{bottom:569.600037pt;}
.y1a5{bottom:569.760071pt;}
.y33{bottom:571.680054pt;}
.yc6{bottom:575.360047pt;}
.ydf{bottom:577.600037pt;}
.y1c4{bottom:582.240052pt;}
.y1a6{bottom:582.720032pt;}
.y160{bottom:582.880066pt;}
.y8b{bottom:583.200074pt;}
.y62{bottom:585.600037pt;}
.y119{bottom:588.800049pt;}
.y1b4{bottom:590.720032pt;}
.y1a4{bottom:591.200074pt;}
.y100{bottom:596.160035pt;}
.yc5{bottom:596.640076pt;}
.y1de{bottom:598.080079pt;}
.y31{bottom:598.240052pt;}
.yde{bottom:599.040039pt;}
.y30{bottom:602.080079pt;}
.y15f{bottom:604.160035pt;}
.y8a{bottom:604.480042pt;}
.y7{bottom:604.640076pt;}
.y61{bottom:606.880066pt;}
.y118{bottom:609.920044pt;}
.y1a3{bottom:612.320069pt;}
.y1c3{bottom:616.960053pt;}
.y181{bottom:617.280060pt;}
.yc4{bottom:617.760071pt;}
.ydd{bottom:620.160065pt;}
.y2f{bottom:624.640046pt;}
.yff{bottom:624.800049pt;}
.y143{bottom:625.120057pt;}
.y15e{bottom:625.280060pt;}
.y89{bottom:625.600068pt;}
.y2e{bottom:628.480072pt;}
.y117{bottom:631.200074pt;}
.y1dd{bottom:632.640046pt;}
.y1a2{bottom:633.440064pt;}
.y1c2{bottom:638.080048pt;}
.yfe{bottom:638.560059pt;}
.yc3{bottom:639.040070pt;}
.y60{bottom:641.280060pt;}
.y15d{bottom:646.400055pt;}
.y88{bottom:646.880066pt;}
.y156{bottom:648.640046pt;}
.y2d{bottom:651.040070pt;}
.y116{bottom:652.320069pt;}
.y1a1{bottom:654.560059pt;}
.y2c{bottom:654.880066pt;}
.y6{bottom:658.080048pt;}
.yc2{bottom:660.160065pt;}
.y5f{bottom:662.400055pt;}
.y1dc{bottom:667.040070pt;}
.y87{bottom:668.000061pt;}
.y1c1{bottom:672.640046pt;}
.yfd{bottom:672.960053pt;}
.y115{bottom:673.440064pt;}
.y15c{bottom:675.040070pt;}
.y1a0{bottom:675.840058pt;}
.y2b{bottom:677.440064pt;}
.y17c{bottom:680.800049pt;}
.y2a{bottom:681.280060pt;}
.y5e{bottom:683.680054pt;}
.y191{bottom:688.640046pt;}
.y15b{bottom:688.800049pt;}
.y86{bottom:689.120057pt;}
.y1c0{bottom:693.760071pt;}
.y114{bottom:694.560059pt;}
.y5{bottom:696.160065pt;}
.y19f{bottom:696.960053pt;}
.y1db{bottom:701.600068pt;}
.y1aa{bottom:701.920044pt;}
.yc1{bottom:702.400055pt;}
.y29{bottom:703.840058pt;}
.y5d{bottom:704.800049pt;}
.yfc{bottom:707.520050pt;}
.ya6{bottom:709.760071pt;}
.y15a{bottom:709.920044pt;}
.y85{bottom:710.240052pt;}
.y113{bottom:715.840058pt;}
.y1a8{bottom:718.080048pt;}
.y1d{bottom:720.800049pt;}
.ya5{bottom:723.680054pt;}
.y5c{bottom:725.920044pt;}
.y1bf{bottom:728.320069pt;}
.y28{bottom:730.240052pt;}
.y14a{bottom:731.360047pt;}
.y4{bottom:734.080048pt;}
.y1da{bottom:736.000061pt;}
.yc0{bottom:736.960053pt;}
.y1b2{bottom:738.720063pt;}
.y1a7{bottom:739.200074pt;}
.yfb{bottom:742.080048pt;}
.y112{bottom:744.320069pt;}
.y84{bottom:744.800049pt;}
.ydc{bottom:746.560059pt;}
.y5b{bottom:747.040070pt;}
.ya4{bottom:752.160065pt;}
.y19e{bottom:752.640046pt;}
.y26{bottom:756.640046pt;}
.y1c{bottom:757.920044pt;}
.ybf{bottom:758.080048pt;}
.ydb{bottom:760.480072pt;}
.y1be{bottom:762.720063pt;}
.yfa{bottom:763.200074pt;}
.y83{bottom:765.920044pt;}
.y5a{bottom:768.320069pt;}
.y1d9{bottom:770.560059pt;}
.y3{bottom:771.040070pt;}
.y19d{bottom:773.760071pt;}
.y1d5{bottom:776.160065pt;}
.ybe{bottom:779.200074pt;}
.yda{bottom:781.600068pt;}
.y25{bottom:783.040070pt;}
.yf9{bottom:784.320069pt;}
.y24{bottom:786.880066pt;}
.y82{bottom:787.040070pt;}
.y59{bottom:789.440064pt;}
.y1b1{bottom:794.400055pt;}
.y19c{bottom:794.880066pt;}
.y1bd{bottom:797.280060pt;}
.y1b{bottom:799.520050pt;}
.ybd{bottom:800.480072pt;}
.yd9{bottom:802.720063pt;}
.y1d8{bottom:805.120057pt;}
.y2{bottom:805.440064pt;}
.y81{bottom:808.320069pt;}
.y23{bottom:809.440064pt;}
.y58{bottom:810.560059pt;}
.y22{bottom:813.280060pt;}
.y19b{bottom:816.000061pt;}
.ybc{bottom:821.600068pt;}
.yd8{bottom:823.840058pt;}
.yf8{bottom:826.720063pt;}
.y80{bottom:829.440064pt;}
.y57{bottom:831.680054pt;}
.y20{bottom:835.840058pt;}
.y19a{bottom:837.280060pt;}
.y1d7{bottom:839.520050pt;}
.y1f{bottom:839.680054pt;}
.y1a{bottom:840.960053pt;}
.ybb{bottom:842.720063pt;}
.yd7{bottom:845.120057pt;}
.yf7{bottom:847.840058pt;}
.y183{bottom:850.080048pt;}
.y7f{bottom:850.560059pt;}
.y56{bottom:852.800049pt;}
.y199{bottom:858.400055pt;}
.yba{bottom:863.840058pt;}
.yd6{bottom:866.240052pt;}
.yf6{bottom:868.960053pt;}
.y1{bottom:870.560059pt;}
.y7e{bottom:871.680054pt;}
.y55{bottom:874.080063pt;}
.y1b0{bottom:879.040055pt;}
.y198{bottom:879.520066pt;}
.y19{bottom:882.560059pt;}
.yb9{bottom:885.120057pt;}
.yd5{bottom:887.360062pt;}
.y179{bottom:892.480057pt;}
.y7d{bottom:892.800064pt;}
.y155{bottom:900.640061pt;}
.yf5{bottom:903.200058pt;}
.yb8{bottom:906.240052pt;}
.y54{bottom:908.480057pt;}
.y142{bottom:913.600052pt;}
.y7c{bottom:914.080063pt;}
.y159{bottom:921.920060pt;}
.y18{bottom:924.160065pt;}
.yb7{bottom:927.360062pt;}
.y7b{bottom:935.200058pt;}
.yf4{bottom:937.920060pt;}
.y190{bottom:942.560059pt;}
.y1e{bottom:942.720063pt;}
.y1ba{bottom:943.040055pt;}
.yb6{bottom:948.480057pt;}
.ya3{bottom:956.320054pt;}
.yf3{bottom:958.720063pt;}
.y17{bottom:965.600052pt;}
.y7a{bottom:969.760056pt;}
.y53{bottom:977.120057pt;}
.ya2{bottom:977.440064pt;}
.yd3{bottom:977.600052pt;}
.y197{bottom:990.560059pt;}
.y79{bottom:990.880066pt;}
.yf2{bottom:993.280060pt;}
.y16{bottom:1007.200058pt;}
.yd4{bottom:1011.680062pt;}
.yf1{bottom:1011.840058pt;}
.y52{bottom:1012.000061pt;}
.y17e{bottom:1019.360062pt;}
.y78{bottom:1037.920060pt;}
.yf0{bottom:1049.280060pt;}
.y4f{bottom:1054.880059pt;}
.yef{bottom:1067.200058pt;}
.y4e{bottom:1069.600060pt;}
.h9{height:18.239990pt;}
.hc{height:18.239991pt;}
.ha{height:18.240020pt;}
.hb{height:18.240051pt;}
.hf{height:36.922057pt;}
.h10{height:38.442684pt;}
.h1d{height:39.587587pt;}
.hd{height:47.744177pt;}
.h11{height:48.560729pt;}
.h15{height:52.751981pt;}
.h8{height:56.845885pt;}
.h3{height:57.377155pt;}
.h2{height:58.566137pt;}
.h19{height:64.783759pt;}
.h1a{height:64.783819pt;}
.h18{height:64.783879pt;}
.h4{height:67.131257pt;}
.h13{height:67.882624pt;}
.h14{height:67.882628pt;}
.h1c{height:67.882656pt;}
.h12{height:67.882684pt;}
.h16{height:67.882688pt;}
.h17{height:67.882744pt;}
.he{height:67.882748pt;}
.h1b{height:67.882868pt;}
.h6{height:75.605030pt;}
.h7{height:76.311619pt;}
.h5{height:123.355549pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w3{width:7.200012pt;}
.w2{width:7.359985pt;}
.w4{width:7.679993pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:71.839996pt;}
.x2e{left:79.040001pt;}
.x40{left:80.000000pt;}
.x5f{left:81.440002pt;}
.x5{left:91.040001pt;}
.xe{left:95.839996pt;}
.x58{left:103.040001pt;}
.x7c{left:104.800003pt;}
.x7f{left:105.760002pt;}
.x23{left:107.519997pt;}
.x82{left:116.320000pt;}
.x17{left:119.199997pt;}
.x4{left:122.720001pt;}
.x8d{left:126.239998pt;}
.xa1{left:127.199997pt;}
.xa0{left:130.559998pt;}
.x3{left:135.360001pt;}
.x4d{left:136.639999pt;}
.x67{left:139.199997pt;}
.x72{left:143.199997pt;}
.x51{left:145.759995pt;}
.x6e{left:148.320007pt;}
.x46{left:152.800003pt;}
.x9d{left:153.759995pt;}
.x77{left:156.479996pt;}
.x69{left:167.360001pt;}
.x6f{left:175.679993pt;}
.x97{left:178.720001pt;}
.x25{left:182.559998pt;}
.xa2{left:200.160004pt;}
.x35{left:201.119995pt;}
.x4a{left:204.479996pt;}
.x92{left:209.119995pt;}
.x36{left:214.399994pt;}
.x73{left:219.199997pt;}
.x33{left:220.320007pt;}
.x9{left:222.880005pt;}
.x6{left:224.479996pt;}
.x52{left:229.119995pt;}
.x91{left:231.520004pt;}
.x37{left:232.960007pt;}
.x29{left:238.720001pt;}
.x24{left:240.639999pt;}
.x47{left:243.199997pt;}
.x4e{left:246.240005pt;}
.x65{left:250.240005pt;}
.x32{left:252.000000pt;}
.xb{left:255.679993pt;}
.xa4{left:257.279999pt;}
.x93{left:261.760010pt;}
.x7{left:264.000000pt;}
.x5d{left:266.399994pt;}
.x55{left:269.920013pt;}
.x20{left:272.320007pt;}
.x9e{left:274.559998pt;}
.x8c{left:278.239990pt;}
.x8{left:280.480011pt;}
.x30{left:285.279999pt;}
.x83{left:290.239990pt;}
.x81{left:291.679993pt;}
.xa{left:297.279999pt;}
.x59{left:299.040009pt;}
.x6d{left:302.079987pt;}
.x7b{left:304.000000pt;}
.x9a{left:305.600006pt;}
.xa5{left:312.480011pt;}
.x1a{left:315.040009pt;}
.x22{left:320.160004pt;}
.x1{left:324.480011pt;}
.x1b{left:327.519989pt;}
.x88{left:335.040009pt;}
.x44{left:336.320007pt;}
.x2d{left:337.440002pt;}
.x71{left:338.399994pt;}
.x1f{left:341.440002pt;}
.x8a{left:342.880005pt;}
.x6a{left:346.880005pt;}
.x4f{left:348.160004pt;}
.x39{left:349.600006pt;}
.x94{left:351.040009pt;}
.x16{left:352.320007pt;}
.x45{left:355.359985pt;}
.x43{left:358.880005pt;}
.x21{left:361.920013pt;}
.x5c{left:373.119995pt;}
.x12{left:376.320007pt;}
.x34{left:378.720001pt;}
.xa3{left:379.839996pt;}
.x62{left:382.239990pt;}
.x7a{left:384.959991pt;}
.x3e{left:390.079987pt;}
.x2{left:396.799988pt;}
.x8f{left:401.600006pt;}
.x2a{left:403.839996pt;}
.x74{left:414.720001pt;}
.x75{left:415.839996pt;}
.x64{left:430.720001pt;}
.x87{left:436.799988pt;}
.x5e{left:451.519989pt;}
.x49{left:452.959991pt;}
.x6c{left:455.679993pt;}
.x89{left:456.799988pt;}
.x28{left:459.040009pt;}
.x31{left:466.559998pt;}
.x42{left:477.119995pt;}
.x54{left:479.040009pt;}
.x90{left:491.359985pt;}
.x61{left:496.799988pt;}
.x1c{left:521.440002pt;}
.x3f{left:528.640015pt;}
.x8e{left:532.640015pt;}
.x63{left:534.400024pt;}
.x6b{left:536.320007pt;}
.x79{left:541.440002pt;}
.x19{left:544.000000pt;}
.x96{left:554.080017pt;}
.x26{left:555.520020pt;}
.x80{left:563.039978pt;}
.x8b{left:565.599976pt;}
.x53{left:576.000000pt;}
.x4b{left:577.599976pt;}
.x57{left:579.679993pt;}
.x41{left:580.960022pt;}
.x95{left:583.359985pt;}
.x68{left:590.080017pt;}
.x66{left:592.000000pt;}
.x56{left:595.359985pt;}
.x14{left:597.760010pt;}
.x98{left:600.320007pt;}
.x99{left:601.760010pt;}
.x7e{left:607.359985pt;}
.x48{left:609.599976pt;}
.x13{left:620.479980pt;}
.x38{left:622.719971pt;}
.x85{left:626.719971pt;}
.x4c{left:636.640015pt;}
.x78{left:641.760010pt;}
.x2c{left:644.960022pt;}
.x86{left:647.039978pt;}
.x3c{left:649.919983pt;}
.x9c{left:652.479980pt;}
.x3a{left:653.919983pt;}
.x9b{left:654.880005pt;}
.x3b{left:657.280029pt;}
.x18{left:659.840027pt;}
.x50{left:661.119995pt;}
.x84{left:666.400024pt;}
.x60{left:672.640015pt;}
.x9f{left:676.960022pt;}
.x2b{left:680.159973pt;}
.x5b{left:684.479980pt;}
.xf{left:686.719971pt;}
.x3d{left:688.799988pt;}
.x1d{left:689.760010pt;}
.x2f{left:694.880005pt;}
.x7d{left:696.159973pt;}
.x76{left:697.919983pt;}
.x11{left:700.960022pt;}
.x70{left:704.320007pt;}
.x27{left:707.039978pt;}
.x10{left:708.960022pt;}
.x5a{left:710.239990pt;}
.x15{left:714.559998pt;}
.xd{left:716.960022pt;}
.x1e{left:721.919983pt;}
}




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