
    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_f928bb23d01bc55ee0061476.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.185000;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_aae538ce30d7941f2550bb8c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.222000;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_7373099a1b86999e23156374.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_2637681787c8656a7fb1c02b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202000;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_19610c2e03ea001848eb839d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.223000;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_1ac663650de5b542e1a48926.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.239000;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_99480436d70cbf0ea9da56cf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.692871;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_f0857f17932a8941b3815f5d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.483000;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_c7e9d0098c53633bf512f469.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;}
.m1{transform:matrix(0.225803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225803,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,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);}
.v8{vertical-align:-84.240004px;}
.v3{vertical-align:-81.360077px;}
.v5{vertical-align:-71.279982px;}
.v6{vertical-align:-36.720013px;}
.v2{vertical-align:-15.120068px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.759996px;}
.v7{vertical-align:33.839951px;}
.v4{vertical-align:71.279982px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.096252px;}
.ls2{letter-spacing:0.327797px;}
.ls0{letter-spacing:0.465867px;}
.ls5{letter-spacing:0.764781px;}
.lsd{letter-spacing:28.392667px;}
.ls7{letter-spacing:151.383195px;}
.lsb{letter-spacing:194.712694px;}
.ls9{letter-spacing:244.983137px;}
.ls8{letter-spacing:255.063096px;}
.ls4{letter-spacing:403.512667px;}
.lse{letter-spacing:440.952703px;}
.ls6{letter-spacing:495.543240px;}
.lsc{letter-spacing:567.672649px;}
.lsa{letter-spacing:582.072703px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(219,65,67),0 0.015em rgb(219,65,67),0.015em 0 rgb(219,65,67),0 -0.015em  rgb(219,65,67);}
.sc3{text-shadow:-0.015em 0 rgb(51,51,51),0 0.015em rgb(51,51,51),0.015em 0 rgb(51,51,51),0 -0.015em  rgb(51,51,51);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(219,65,67);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(51,51,51);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-180.007191px;}
.ws1{word-spacing:-15.875132px;}
.ws0{word-spacing:-15.500719px;}
.ws4{word-spacing:-12.370786px;}
.wsb{word-spacing:-11.981567px;}
.ws5{word-spacing:-11.826493px;}
.wsa{word-spacing:-11.336823px;}
.wsc{word-spacing:-10.564954px;}
.ws6{word-spacing:-9.934234px;}
.ws7{word-spacing:-9.000349px;}
.ws8{word-spacing:-8.644655px;}
.ws3{word-spacing:-8.515045px;}
.ws9{word-spacing:0.000000px;}
._43{margin-left:-12.071209px;}
._3b{margin-left:-9.767383px;}
._3d{margin-left:-6.593305px;}
._9{margin-left:-3.981758px;}
._7{margin-left:-2.408547px;}
._0{margin-left:-1.254287px;}
._1{width:1.123241px;}
._8{width:2.420013px;}
._5{width:3.925397px;}
._6{width:5.722557px;}
._b{width:7.334943px;}
._2{width:9.098289px;}
._3{width:10.731315px;}
._a{width:11.850261px;}
._40{width:13.064198px;}
._1c{width:14.536660px;}
._13{width:15.642619px;}
._12{width:16.854428px;}
._11{width:17.917909px;}
._15{width:18.941789px;}
._e{width:20.767669px;}
._d{width:21.859672px;}
._c{width:23.127991px;}
._16{width:25.028190px;}
._17{width:26.279600px;}
._1b{width:27.502936px;}
._21{width:28.571571px;}
._14{width:29.863181px;}
._1a{width:33.674292px;}
._19{width:35.096348px;}
._39{width:36.251275px;}
._3a{width:40.101986px;}
._36{width:45.790211px;}
._35{width:47.212267px;}
._42{width:53.572286px;}
._44{width:57.600709px;}
._30{width:75.884351px;}
._2b{width:104.829431px;}
._18{width:125.814614px;}
._2f{width:129.239782px;}
._25{width:134.932315px;}
._f{width:135.945392px;}
._34{width:138.081467px;}
._2c{width:140.431880px;}
._41{width:143.508892px;}
._3e{width:149.723458px;}
._27{width:159.417547px;}
._26{width:161.995964px;}
._3f{width:189.340153px;}
._3c{width:198.260584px;}
._29{width:200.927097px;}
._10{width:202.519076px;}
._28{width:221.925241px;}
._24{width:223.546027px;}
._32{width:224.806788px;}
._2d{width:249.361864px;}
._2a{width:253.269450px;}
._2e{width:267.191374px;}
._33{width:276.049147px;}
._38{width:308.492374px;}
._31{width:321.072813px;}
._20{width:341.841395px;}
._23{width:343.236864px;}
._22{width:371.268893px;}
._1f{width:373.680983px;}
._1d{width:489.385703px;}
._1e{width:526.469968px;}
._37{width:820.085744px;}
._4{width:1196.879058px;}
.fc8{color:transparent;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(219,65,67);}
.fc2{color:rgb(1,3,2);}
.fc1{color:rgb(255,0,0);}
.fc7{color:rgb(1,2,5);}
.fc6{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:27.361080px;}
.fsd{font-size:36.001395px;}
.fs9{font-size:38.881485px;}
.fs5{font-size:41.759538px;}
.fse{font-size:41.761620px;}
.fsb{font-size:45.361800px;}
.fs0{font-size:48.241800px;}
.fsf{font-size:50.985391px;}
.fsa{font-size:54.002250px;}
.fs7{font-size:56.882250px;}
.fs2{font-size:59.762250px;}
.fs11{font-size:63.362250px;}
.fs8{font-size:66.242700px;}
.fs1{font-size:74.882700px;}
.fs3{font-size:77.763154px;}
.fs10{font-size:81.363150px;}
.fs6{font-size:95.763600px;}
.fs4{font-size:180.007191px;}
.y0{bottom:0.000000px;}
.yb1{bottom:0.539978px;}
.yb9{bottom:1.259994px;}
.yb3{bottom:1.439964px;}
.yb8{bottom:1.440033px;}
.yb6{bottom:1.440034px;}
.y53{bottom:2.879998px;}
.y51{bottom:2.880065px;}
.yb{bottom:4.679995px;}
.y8{bottom:4.680000px;}
.y19{bottom:14.760132px;}
.y18{bottom:28.620072px;}
.y17{bottom:43.020127px;}
.y16{bottom:43.033969px;}
.y15{bottom:55.096090px;}
.y14{bottom:67.151989px;}
.y13{bottom:79.210999px;}
.yf{bottom:83.340088px;}
.y12{bottom:91.273120px;}
.y11{bottom:103.335366px;}
.y1de{bottom:104.040115px;}
.yc6{bottom:109.980011px;}
.yfa{bottom:110.880066px;}
.y1a3{bottom:111.060036px;}
.y180{bottom:111.960091px;}
.y10{bottom:115.572842px;}
.y1dd{bottom:117.360077px;}
.yc5{bottom:122.040047px;}
.y1a2{bottom:124.380066px;}
.ye{bottom:127.800041px;}
.y1dc{bottom:130.680039px;}
.yf9{bottom:131.940033px;}
.y17f{bottom:133.020058px;}
.yc4{bottom:134.640060px;}
.y1a1{bottom:137.700096px;}
.y152{bottom:143.640060px;}
.yc3{bottom:147.420043px;}
.ya4{bottom:148.320099px;}
.y1db{bottom:148.500068px;}
.y11c{bottom:149.040047px;}
.y1a0{bottom:151.020058px;}
.yf8{bottom:153.180039px;}
.y17e{bottom:154.080093px;}
.yc2{bottom:160.200096px;}
.y151{bottom:164.520058px;}
.y1da{bottom:166.320099px;}
.ya3{bottom:169.380066px;}
.y11b{bottom:170.280052px;}
.yc1{bottom:172.980079px;}
.yf7{bottom:174.240074px;}
.y17d{bottom:174.960091px;}
.y19f{bottom:177.840088px;}
.y1d9{bottom:179.640060px;}
.y150{bottom:185.580093px;}
.yc0{bottom:185.760064px;}
.ya2{bottom:190.440033px;}
.y19e{bottom:191.160049px;}
.y11a{bottom:191.340088px;}
.yf6{bottom:195.300041px;}
.y17c{bottom:196.020058px;}
.y1d8{bottom:197.460091px;}
.ybf{bottom:198.540047px;}
.y19d{bottom:204.480079px;}
.y14f{bottom:206.640060px;}
.y1d7{bottom:210.780052px;}
.ybe{bottom:211.140060px;}
.ya1{bottom:211.680039px;}
.yf5{bottom:216.540047px;}
.y17b{bottom:217.080093px;}
.y50{bottom:221.940033px;}
.y19c{bottom:222.840088px;}
.ybd{bottom:223.920043px;}
.y4f{bottom:224.820099px;}
.y138{bottom:225.360077px;}
.y119{bottom:227.340088px;}
.y14e{bottom:227.520058px;}
.y1d6{bottom:228.600083px;}
.ya0{bottom:232.740074px;}
.ybc{bottom:236.700096px;}
.yf4{bottom:237.600083px;}
.y17a{bottom:237.960091px;}
.y4e{bottom:240.480079px;}
.y1d5{bottom:242.100083px;}
.y137{bottom:246.420043px;}
.y14d{bottom:248.580093px;}
.ybb{bottom:249.480079px;}
.y9f{bottom:253.980079px;}
.y4d{bottom:254.700096px;}
.y19b{bottom:255.060036px;}
.yf3{bottom:258.840088px;}
.y179{bottom:259.020058px;}
.y1d4{bottom:259.920043px;}
.yba{bottom:262.260064px;}
.y118{bottom:263.520058px;}
.y136{bottom:267.480079px;}
.y19a{bottom:268.380066px;}
.y4c{bottom:268.920043px;}
.y14c{bottom:269.640060px;}
.y1d3{bottom:273.240074px;}
.y9e{bottom:275.040047px;}
.yf2{bottom:279.900055px;}
.y178{bottom:280.080093px;}
.y199{bottom:281.700096px;}
.y4b{bottom:283.140060px;}
.y1d2{bottom:286.560036px;}
.yb7{bottom:287.640060px;}
.y135{bottom:288.720085px;}
.y198{bottom:295.020058px;}
.y9d{bottom:296.100083px;}
.y4a{bottom:297.360077px;}
.y117{bottom:299.700096px;}
.y1d1{bottom:299.880066px;}
.yb5{bottom:300.420043px;}
.yf1{bottom:300.960091px;}
.y197{bottom:308.340088px;}
.y134{bottom:309.780052px;}
.y49{bottom:311.580093px;}
.y14b{bottom:312.300041px;}
.yb4{bottom:313.200096px;}
.y9c{bottom:317.340088px;}
.y1d0{bottom:317.700096px;}
.y196{bottom:321.660049px;}
.y177{bottom:322.020058px;}
.yf0{bottom:322.200096px;}
.y48{bottom:325.800041px;}
.yb2{bottom:325.980079px;}
.y133{bottom:331.020058px;}
.y195{bottom:334.980079px;}
.y116{bottom:335.880066px;}
.y9b{bottom:338.400055px;}
.yb0{bottom:338.760064px;}
.y47{bottom:340.020058px;}
.y176{bottom:343.080093px;}
.yef{bottom:343.260064px;}
.y1cf{bottom:348.840088px;}
.y194{bottom:353.340088px;}
.y46{bottom:354.960091px;}
.y14a{bottom:357.300041px;}
.y9a{bottom:359.640060px;}
.y1ce{bottom:362.160049px;}
.y175{bottom:363.960091px;}
.yee{bottom:364.500068px;}
.y115{bottom:371.880066px;}
.y45{bottom:372.600083px;}
.y132{bottom:373.140060px;}
.y1cd{bottom:375.480079px;}
.y99{bottom:380.700096px;}
.y174{bottom:385.020058px;}
.yed{bottom:385.560036px;}
.y44{bottom:386.820099px;}
.y1cc{bottom:388.800041px;}
.y72{bottom:391.500068px;}
.y131{bottom:394.200096px;}
.y193{bottom:398.880066px;}
.y43{bottom:401.040047px;}
.y149{bottom:401.580093px;}
.y98{bottom:401.760064px;}
.y71{bottom:405.720085px;}
.y173{bottom:406.080093px;}
.yec{bottom:406.620072px;}
.y114{bottom:408.240074px;}
.y192{bottom:412.200096px;}
.y42{bottom:415.260064px;}
.y70{bottom:419.040047px;}
.y1cb{bottom:419.940033px;}
.y148{bottom:422.640060px;}
.y97{bottom:423.000068px;}
.y130{bottom:424.260064px;}
.y191{bottom:425.520058px;}
.y172{bottom:426.960091px;}
.yeb{bottom:427.860077px;}
.y113{bottom:429.300041px;}
.y41{bottom:429.480079px;}
.y1ca{bottom:437.760064px;}
.y190{bottom:439.020058px;}
.y6f{bottom:441.180039px;}
.y40{bottom:443.700096px;}
.y96{bottom:444.060036px;}
.y171{bottom:448.020058px;}
.yea{bottom:448.920043px;}
.y112{bottom:450.360077px;}
.y1c9{bottom:451.080093px;}
.y12f{bottom:454.320099px;}
.y3f{bottom:457.920043px;}
.y6e{bottom:462.960091px;}
.y147{bottom:464.580093px;}
.y95{bottom:465.300041px;}
.y18f{bottom:467.280052px;}
.y1c8{bottom:468.900055px;}
.y170{bottom:469.080093px;}
.ye9{bottom:470.160049px;}
.y111{bottom:471.600083px;}
.y3e{bottom:472.140060px;}
.y18e{bottom:480.600083px;}
.y1c7{bottom:482.400055px;}
.y12e{bottom:484.200096px;}
.y6d{bottom:484.740074px;}
.y3d{bottom:486.360077px;}
.y146{bottom:489.060036px;}
.y16f{bottom:489.960091px;}
.ye8{bottom:491.220085px;}
.y110{bottom:492.660049px;}
.y18d{bottom:493.920043px;}
.y1c6{bottom:495.720085px;}
.y3c{bottom:500.580093px;}
.y6c{bottom:506.880066px;}
.y18c{bottom:507.240074px;}
.y94{bottom:507.420043px;}
.y16e{bottom:511.020058px;}
.ye7{bottom:512.460091px;}
.y1c5{bottom:513.540047px;}
.y12d{bottom:514.260064px;}
.y3b{bottom:514.800041px;}
.y10f{bottom:522.900055px;}
.y18b{bottom:525.600083px;}
.y93{bottom:528.660049px;}
.y3a{bottom:529.020058px;}
.y6b{bottom:529.200096px;}
.y145{bottom:531.360077px;}
.y16d{bottom:532.080093px;}
.ye6{bottom:533.520058px;}
.y39{bottom:543.240074px;}
.y12c{bottom:544.320099px;}
.y1c4{bottom:544.680039px;}
.y92{bottom:549.720085px;}
.y6a{bottom:551.880066px;}
.y144{bottom:552.600083px;}
.y16c{bottom:552.960091px;}
.ye5{bottom:554.580093px;}
.y38{bottom:557.460091px;}
.y18a{bottom:559.080093px;}
.y1c3{bottom:562.500068px;}
.y10e{bottom:565.020058px;}
.y91{bottom:570.960091px;}
.y37{bottom:571.680039px;}
.y143{bottom:573.660049px;}
.y16b{bottom:574.020058px;}
.y12b{bottom:574.200096px;}
.y69{bottom:574.740074px;}
.ye4{bottom:575.820099px;}
.y189{bottom:579.960091px;}
.y36{bottom:585.900055px;}
.y10d{bottom:586.260064px;}
.y90{bottom:592.020058px;}
.y1c2{bottom:593.640060px;}
.y142{bottom:594.720085px;}
.y16a{bottom:595.080093px;}
.y68{bottom:596.520058px;}
.ye3{bottom:596.880066px;}
.y188{bottom:599.760064px;}
.y35{bottom:600.120072px;}
.y12a{bottom:604.260064px;}
.y1c1{bottom:606.960091px;}
.y10c{bottom:607.320099px;}
.y8f{bottom:613.080093px;}
.y34{bottom:615.060036px;}
.y67{bottom:615.960091px;}
.ye2{bottom:618.120072px;}
.y1c0{bottom:624.780052px;}
.y187{bottom:626.400055px;}
.y10b{bottom:628.560036px;}
.y33{bottom:632.700096px;}
.y66{bottom:633.240074px;}
.y8e{bottom:634.320099px;}
.y141{bottom:637.020058px;}
.y1bf{bottom:638.100083px;}
.ye1{bottom:639.180039px;}
.y186{bottom:639.720085px;}
.y32{bottom:646.920043px;}
.y10a{bottom:649.620072px;}
.y185{bottom:653.040047px;}
.y8d{bottom:655.380066px;}
.y1be{bottom:655.920043px;}
.y169{bottom:658.080093px;}
.y140{bottom:658.260064px;}
.ye0{bottom:660.240074px;}
.y31{bottom:661.860077px;}
.y65{bottom:666.180039px;}
.y184{bottom:666.360077px;}
.y1bd{bottom:669.240074px;}
.y109{bottom:670.680039px;}
.y8c{bottom:676.620072px;}
.y168{bottom:678.960091px;}
.y13f{bottom:679.320099px;}
.y183{bottom:679.860077px;}
.y30{bottom:680.220085px;}
.ydf{bottom:681.480079px;}
.y1bc{bottom:682.560036px;}
.y129{bottom:685.440033px;}
.y64{bottom:690.840054px;}
.y108{bottom:691.920078px;}
.y182{bottom:693.180073px;}
.y8b{bottom:697.680073px;}
.y2f{bottom:697.860077px;}
.y167{bottom:700.020058px;}
.y63{bottom:700.380066px;}
.yde{bottom:702.540081px;}
.y181{bottom:706.500068px;}
.y128{bottom:706.680073px;}
.y2e{bottom:712.080059px;}
.y107{bottom:712.980079px;}
.y62{bottom:713.700061px;}
.y8a{bottom:718.920078px;}
.y166{bottom:721.080059px;}
.y13e{bottom:721.620072px;}
.ydd{bottom:723.780052px;}
.y2d{bottom:726.300076px;}
.y61{bottom:727.020058px;}
.y127{bottom:727.740074px;}
.y106{bottom:734.220051px;}
.y89{bottom:739.980079px;}
.y60{bottom:740.340054px;}
.y2c{bottom:740.520058px;}
.y165{bottom:741.960056px;}
.y13d{bottom:742.680073px;}
.ydc{bottom:744.840054px;}
.y126{bottom:748.800076px;}
.y1bb{bottom:752.940067px;}
.y2b{bottom:754.740074px;}
.y105{bottom:755.280052px;}
.y5f{bottom:757.440067px;}
.y88{bottom:761.040081px;}
.y164{bottom:763.020058px;}
.y13c{bottom:763.920078px;}
.ydb{bottom:765.900055px;}
.y5e{bottom:766.980079px;}
.y2a{bottom:768.960056px;}
.y125{bottom:770.040081px;}
.y104{bottom:776.340054px;}
.y5d{bottom:780.480079px;}
.y87{bottom:782.280052px;}
.y29{bottom:783.180073px;}
.y163{bottom:784.080059px;}
.y13b{bottom:784.980079px;}
.yda{bottom:787.140060px;}
.y124{bottom:791.100083px;}
.y1ba{bottom:793.260064px;}
.y5c{bottom:793.800076px;}
.y28{bottom:797.400055px;}
.y86{bottom:803.340054px;}
.y162{bottom:804.960056px;}
.y13a{bottom:806.040081px;}
.y5b{bottom:807.120072px;}
.y1b9{bottom:807.480079px;}
.yd9{bottom:808.200061px;}
.y27{bottom:811.620072px;}
.y103{bottom:818.640060px;}
.y5a{bottom:820.440067px;}
.y1b8{bottom:821.700061px;}
.y85{bottom:824.580059px;}
.y26{bottom:825.840054px;}
.y161{bottom:826.020058px;}
.y139{bottom:827.280052px;}
.yd8{bottom:829.440067px;}
.y1b7{bottom:835.920078px;}
.y59{bottom:837.540081px;}
.y102{bottom:839.340054px;}
.y25{bottom:840.060070px;}
.y101{bottom:840.240074px;}
.y84{bottom:845.640060px;}
.y160{bottom:847.080059px;}
.y123{bottom:848.340054px;}
.y1b6{bottom:850.140060px;}
.yd7{bottom:850.500068px;}
.y58{bottom:850.680073px;}
.y24{bottom:854.280052px;}
.y100{bottom:857.880066px;}
.y57{bottom:860.760064px;}
.y83{bottom:866.700061px;}
.y15f{bottom:867.960056px;}
.y23{bottom:868.500068px;}
.y1b5{bottom:869.220051px;}
.y122{bottom:869.580059px;}
.yd6{bottom:871.560070px;}
.y56{bottom:874.080059px;}
.yff{bottom:876.420078px;}
.y22{bottom:882.720051px;}
.y55{bottom:887.400055px;}
.y82{bottom:887.940067px;}
.y15e{bottom:889.020058px;}
.y121{bottom:890.640060px;}
.yd3{bottom:892.440067px;}
.yfe{bottom:894.960056px;}
.y54{bottom:900.720051px;}
.y21{bottom:901.260064px;}
.y1b4{bottom:904.500068px;}
.y81{bottom:909.000068px;}
.y15d{bottom:910.080059px;}
.yd2{bottom:910.440067px;}
.yd5{bottom:910.620072px;}
.y52{bottom:911.700061px;}
.yfd{bottom:922.500068px;}
.y1b3{bottom:922.860077px;}
.yd1{bottom:928.440067px;}
.yd4{bottom:928.620072px;}
.y80{bottom:930.240074px;}
.y15c{bottom:930.960056px;}
.y120{bottom:932.940067px;}
.y20{bottom:935.460056px;}
.y1ec{bottom:936.360077px;}
.yd0{bottom:947.160049px;}
.y7f{bottom:951.300076px;}
.y15b{bottom:952.020058px;}
.y11f{bottom:954.000068px;}
.y1b2{bottom:955.080059px;}
.y1f{bottom:962.640060px;}
.y1eb{bottom:963.000068px;}
.yce{bottom:965.880066px;}
.y1b1{bottom:968.400055px;}
.y7e{bottom:972.360077px;}
.y15a{bottom:973.080059px;}
.y11e{bottom:975.240074px;}
.y1b0{bottom:981.720068px;}
.ycd{bottom:983.880066px;}
.y1ea{bottom:986.040064px;}
.yfc{bottom:990.540064px;}
.y1e{bottom:993.060070px;}
.y7d{bottom:993.600065px;}
.y159{bottom:993.960074px;}
.y1af{bottom:995.040064px;}
.y11d{bottom:996.300058px;}
.ycc{bottom:1001.880066px;}
.ycf{bottom:1002.060070px;}
.y1e9{bottom:1003.860060px;}
.y1ae{bottom:1008.360060px;}
.yaf{bottom:1011.780069px;}
.y1d{bottom:1014.120072px;}
.y7c{bottom:1014.660067px;}
.y158{bottom:1015.020058px;}
.y1e8{bottom:1017.180073px;}
.yfb{bottom:1017.540064px;}
.ycb{bottom:1019.880066px;}
.y1ad{bottom:1026.720068px;}
.y1e7{bottom:1035.000068px;}
.y7b{bottom:1035.900072px;}
.y157{bottom:1036.080059px;}
.yae{bottom:1038.600065px;}
.y1c{bottom:1041.120072px;}
.y1e6{bottom:1048.320065px;}
.y1ac{bottom:1049.040064px;}
.y7a{bottom:1056.960074px;}
.yca{bottom:1058.760064px;}
.yad{bottom:1059.660067px;}
.y1ab{bottom:1066.140060px;}
.y1b{bottom:1070.100065px;}
.y79{bottom:1078.020058px;}
.yc9{bottom:1078.740074px;}
.y1aa{bottom:1079.460074px;}
.yac{bottom:1080.900072px;}
.y1e5{bottom:1083.960074px;}
.y1a9{bottom:1092.960074px;}
.y1e4{bottom:1097.280069px;}
.y1a{bottom:1098.900072px;}
.y156{bottom:1099.080059px;}
.y78{bottom:1099.260064px;}
.yc8{bottom:1101.060070px;}
.yab{bottom:1101.960074px;}
.y1a8{bottom:1106.280069px;}
.y1e3{bottom:1110.600065px;}
.y1a7{bottom:1119.600065px;}
.y155{bottom:1119.960065px;}
.y77{bottom:1120.320065px;}
.yc7{bottom:1123.020066px;}
.yaa{bottom:1123.200061px;}
.y1e2{bottom:1123.920069px;}
.yd{bottom:1131.840063px;}
.y1a6{bottom:1132.920069px;}
.y154{bottom:1141.020066px;}
.y1e1{bottom:1141.740066px;}
.ya9{bottom:1144.260064px;}
.y1a5{bottom:1146.240066px;}
.yc{bottom:1149.660067px;}
.y1e0{bottom:1155.060070px;}
.y76{bottom:1159.560070px;}
.y153{bottom:1162.080068px;}
.y1a4{bottom:1164.600065px;}
.ya8{bottom:1165.320065px;}
.y1df{bottom:1168.380066px;}
.ya{bottom:1173.780069px;}
.y9{bottom:1178.460065px;}
.y4{bottom:1187.280069px;}
.ya7{bottom:1187.640069px;}
.y7{bottom:1196.640065px;}
.y6{bottom:1201.320065px;}
.y75{bottom:1201.500065px;}
.y3{bottom:1201.680064px;}
.ya6{bottom:1202.040064px;}
.y2{bottom:1215.720068px;}
.y74{bottom:1216.080068px;}
.ya5{bottom:1216.620067px;}
.y5{bottom:1223.820065px;}
.y73{bottom:1230.300067px;}
.y1{bottom:1230.480067px;}
.h20{height:11.879997px;}
.h26{height:12.600013px;}
.h23{height:12.779983px;}
.h22{height:12.779984px;}
.h25{height:12.780053px;}
.h13{height:13.319997px;}
.h11{height:14.940033px;}
.h8{height:22.499995px;}
.h6{height:22.500000px;}
.h1b{height:25.137693px;}
.h16{height:26.622331px;}
.h1a{height:27.148693px;}
.h18{height:27.293211px;}
.h17{height:27.293216px;}
.h19{height:27.293350px;}
.hb{height:29.158271px;}
.h4{height:33.684460px;}
.h12{height:39.315115px;}
.h1c{height:40.634056px;}
.h14{height:42.413283px;}
.h15{height:44.137031px;}
.h2{height:45.106083px;}
.h21{height:45.829710px;}
.h1d{height:45.926194px;}
.h3{height:46.891030px;}
.h24{height:48.436121px;}
.h1e{height:48.538092px;}
.h10{height:50.492104px;}
.h27{height:51.302138px;}
.hd{height:54.038138px;}
.h2a{height:56.774138px;}
.hf{height:58.148669px;}
.he{height:61.936925px;}
.h2c{height:62.665265px;}
.h5{height:71.288330px;}
.h7{height:72.860867px;}
.h9{height:76.907760px;}
.h1f{height:77.294993px;}
.h2b{height:79.166345px;}
.hc{height:91.166947px;}
.h29{height:116.389679px;}
.h28{height:117.109692px;}
.ha{height:121.909167px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w26{width:2.700028px;}
.w5{width:5.579991px;}
.w9{width:5.939964px;}
.w1b{width:5.939965px;}
.w12{width:5.939998px;}
.w7{width:5.939999px;}
.w10{width:5.940033px;}
.w1f{width:6.300007px;}
.w28{width:6.300008px;}
.wd{width:6.300040px;}
.wb{width:6.480011px;}
.w2{width:8.100014px;}
.wf{width:15.299973px;}
.w20{width:23.579956px;}
.w23{width:24.840019px;}
.w8{width:25.019989px;}
.w16{width:25.559967px;}
.w24{width:26.819996px;}
.wc{width:29.520057px;}
.w1a{width:30.779983px;}
.w1d{width:34.560001px;}
.w6{width:37.980011px;}
.w1c{width:39.240006px;}
.w17{width:41.579990px;}
.w1e{width:41.759994px;}
.w22{width:43.920009px;}
.wa{width:49.680003px;}
.w4{width:81.360008px;}
.w29{width:84.780018px;}
.w21{width:89.639991px;}
.w15{width:95.759994px;}
.w25{width:96.839984px;}
.w18{width:126.540012px;}
.w19{width:131.219982px;}
.w3{width:137.700028px;}
.we{width:139.680003px;}
.w27{width:161.639991px;}
.w11{width:171.899987px;}
.w13{width:174.420009px;}
.w14{width:189.360008px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:54.000000px;}
.xa{left:79.560001px;}
.x10{left:82.439999px;}
.x13{left:87.659998px;}
.x1{left:89.640000px;}
.x31{left:96.480002px;}
.x7{left:102.959997px;}
.x15{left:106.920001px;}
.x39{left:158.219999px;}
.x3d{left:160.199993px;}
.x14{left:162.180005px;}
.x11{left:163.800007px;}
.x32{left:181.620002px;}
.x12{left:183.240006px;}
.x17{left:191.340002px;}
.x3a{left:200.340002px;}
.x3c{left:202.860008px;}
.x34{left:210.960005px;}
.x18{left:213.300007px;}
.x41{left:233.819996px;}
.x8{left:244.263088px;}
.x3f{left:250.199993px;}
.x1a{left:253.439999px;}
.x33{left:261.719999px;}
.xd{left:266.400003px;}
.x35{left:277.020006px;}
.x2d{left:280.259994px;}
.x29{left:288.000000px;}
.x1b{left:291.060001px;}
.x28{left:292.680005px;}
.x26{left:295.019989px;}
.x2c{left:297.180005px;}
.x1d{left:303.120002px;}
.x3b{left:306.899987px;}
.x40{left:311.399987px;}
.xb{left:318.600013px;}
.x30{left:338.220017px;}
.x2b{left:343.079990px;}
.xe{left:350.100014px;}
.x2e{left:352.980011px;}
.x27{left:379.980011px;}
.x20{left:393.120002px;}
.x2f{left:415.079990px;}
.x23{left:425.339985px;}
.x24{left:427.860008px;}
.x25{left:442.800007px;}
.x36{left:444.600014px;}
.x16{left:470.879998px;}
.x19{left:473.399987px;}
.x37{left:537.660015px;}
.xc{left:552.600014px;}
.x2{left:561.600014px;}
.x3{left:584.820030px;}
.x38{left:604.259994px;}
.x1e{left:624.059967px;}
.x5{left:625.860008px;}
.x2a{left:626.940033px;}
.x21{left:631.080025px;}
.x22{left:646.379998px;}
.x1c{left:651.240006px;}
.x1f{left:653.399987px;}
.x9{left:723.960023px;}
.x3e{left:732.779983px;}
.xf{left:755.279983px;}
.x4{left:803.340019px;}
@media print{
.v8{vertical-align:-74.880004pt;}
.v3{vertical-align:-72.320068pt;}
.v5{vertical-align:-63.359984pt;}
.v6{vertical-align:-32.640012pt;}
.v2{vertical-align:-13.440060pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.119996pt;}
.v7{vertical-align:30.079956pt;}
.v4{vertical-align:63.359984pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.085557pt;}
.ls2{letter-spacing:0.291376pt;}
.ls0{letter-spacing:0.414104pt;}
.ls5{letter-spacing:0.679805pt;}
.lsd{letter-spacing:25.237926pt;}
.ls7{letter-spacing:134.562840pt;}
.lsb{letter-spacing:173.077950pt;}
.ls9{letter-spacing:217.762788pt;}
.ls8{letter-spacing:226.722752pt;}
.ls4{letter-spacing:358.677926pt;}
.lse{letter-spacing:391.957958pt;}
.ls6{letter-spacing:440.482880pt;}
.lsc{letter-spacing:504.597910pt;}
.lsa{letter-spacing:517.397958pt;}
.ws2{word-spacing:-160.006392pt;}
.ws1{word-spacing:-14.111229pt;}
.ws0{word-spacing:-13.778417pt;}
.ws4{word-spacing:-10.996254pt;}
.wsb{word-spacing:-10.650282pt;}
.ws5{word-spacing:-10.512438pt;}
.wsa{word-spacing:-10.077176pt;}
.wsc{word-spacing:-9.391070pt;}
.ws6{word-spacing:-8.830430pt;}
.ws7{word-spacing:-8.000310pt;}
.ws8{word-spacing:-7.684138pt;}
.ws3{word-spacing:-7.568929pt;}
.ws9{word-spacing:0.000000pt;}
._43{margin-left:-10.729963pt;}
._3b{margin-left:-8.682118pt;}
._3d{margin-left:-5.860715pt;}
._9{margin-left:-3.539340pt;}
._7{margin-left:-2.140931pt;}
._0{margin-left:-1.114922pt;}
._1{width:0.998436pt;}
._8{width:2.151122pt;}
._5{width:3.489241pt;}
._6{width:5.086718pt;}
._b{width:6.519949pt;}
._2{width:8.087368pt;}
._3{width:9.538947pt;}
._a{width:10.533565pt;}
._40{width:11.612621pt;}
._1c{width:12.921476pt;}
._13{width:13.904550pt;}
._12{width:14.981714pt;}
._11{width:15.927030pt;}
._15{width:16.837146pt;}
._e{width:18.460150pt;}
._d{width:19.430820pt;}
._c{width:20.558214pt;}
._16{width:22.247280pt;}
._17{width:23.359644pt;}
._1b{width:24.447054pt;}
._21{width:25.396952pt;}
._14{width:26.545050pt;}
._1a{width:29.932704pt;}
._19{width:31.196754pt;}
._39{width:32.223356pt;}
._3a{width:35.646210pt;}
._36{width:40.702410pt;}
._35{width:41.966460pt;}
._42{width:47.619810pt;}
._44{width:51.200630pt;}
._30{width:67.452757pt;}
._2b{width:93.181717pt;}
._18{width:111.835213pt;}
._2f{width:114.879806pt;}
._25{width:119.939835pt;}
._f{width:120.840349pt;}
._34{width:122.739082pt;}
._2c{width:124.828338pt;}
._41{width:127.563459pt;}
._3e{width:133.087518pt;}
._27{width:141.704486pt;}
._26{width:143.996413pt;}
._3f{width:168.302358pt;}
._3c{width:176.231630pt;}
._29{width:178.601864pt;}
._10{width:180.016957pt;}
._28{width:197.266881pt;}
._24{width:198.707579pt;}
._32{width:199.828256pt;}
._2d{width:221.654990pt;}
._2a{width:225.128400pt;}
._2e{width:237.503443pt;}
._33{width:245.377019pt;}
._38{width:274.215444pt;}
._31{width:285.398056pt;}
._20{width:303.859018pt;}
._23{width:305.099435pt;}
._22{width:330.016794pt;}
._1f{width:332.160874pt;}
._1d{width:435.009514pt;}
._1e{width:467.973305pt;}
._37{width:728.965106pt;}
._4{width:1063.892496pt;}
.fsc{font-size:24.320960pt;}
.fsd{font-size:32.001240pt;}
.fs9{font-size:34.561320pt;}
.fs5{font-size:37.119590pt;}
.fse{font-size:37.121440pt;}
.fsb{font-size:40.321600pt;}
.fs0{font-size:42.881600pt;}
.fsf{font-size:45.320347pt;}
.fsa{font-size:48.002000pt;}
.fs7{font-size:50.562000pt;}
.fs2{font-size:53.122000pt;}
.fs11{font-size:56.322000pt;}
.fs8{font-size:58.882400pt;}
.fs1{font-size:66.562400pt;}
.fs3{font-size:69.122804pt;}
.fs10{font-size:72.322800pt;}
.fs6{font-size:85.123200pt;}
.fs4{font-size:160.006392pt;}
.y0{bottom:0.000000pt;}
.yb1{bottom:0.479980pt;}
.yb9{bottom:1.119995pt;}
.yb3{bottom:1.279968pt;}
.yb8{bottom:1.280029pt;}
.yb6{bottom:1.280030pt;}
.y53{bottom:2.559998pt;}
.y51{bottom:2.560058pt;}
.yb{bottom:4.159996pt;}
.y8{bottom:4.160000pt;}
.y19{bottom:13.120118pt;}
.y18{bottom:25.440064pt;}
.y17{bottom:38.240113pt;}
.y16{bottom:38.252417pt;}
.y15{bottom:48.974302pt;}
.y14{bottom:59.690657pt;}
.y13{bottom:70.409777pt;}
.yf{bottom:74.080079pt;}
.y12{bottom:81.131662pt;}
.y11{bottom:91.853659pt;}
.y1de{bottom:92.480103pt;}
.yc6{bottom:97.760010pt;}
.yfa{bottom:98.560059pt;}
.y1a3{bottom:98.720032pt;}
.y180{bottom:99.520081pt;}
.y10{bottom:102.731415pt;}
.y1dd{bottom:104.320069pt;}
.yc5{bottom:108.480042pt;}
.y1a2{bottom:110.560059pt;}
.ye{bottom:113.600037pt;}
.y1dc{bottom:116.160035pt;}
.yf9{bottom:117.280030pt;}
.y17f{bottom:118.240052pt;}
.yc4{bottom:119.680054pt;}
.y1a1{bottom:122.400086pt;}
.y152{bottom:127.680054pt;}
.yc3{bottom:131.040039pt;}
.ya4{bottom:131.840088pt;}
.y1db{bottom:132.000061pt;}
.y11c{bottom:132.480042pt;}
.y1a0{bottom:134.240052pt;}
.yf8{bottom:136.160035pt;}
.y17e{bottom:136.960083pt;}
.yc2{bottom:142.400086pt;}
.y151{bottom:146.240052pt;}
.y1da{bottom:147.840088pt;}
.ya3{bottom:150.560059pt;}
.y11b{bottom:151.360047pt;}
.yc1{bottom:153.760071pt;}
.yf7{bottom:154.880066pt;}
.y17d{bottom:155.520081pt;}
.y19f{bottom:158.080079pt;}
.y1d9{bottom:159.680054pt;}
.y150{bottom:164.960083pt;}
.yc0{bottom:165.120057pt;}
.ya2{bottom:169.280030pt;}
.y19e{bottom:169.920044pt;}
.y11a{bottom:170.080079pt;}
.yf6{bottom:173.600037pt;}
.y17c{bottom:174.240052pt;}
.y1d8{bottom:175.520081pt;}
.ybf{bottom:176.480042pt;}
.y19d{bottom:181.760071pt;}
.y14f{bottom:183.680054pt;}
.y1d7{bottom:187.360047pt;}
.ybe{bottom:187.680054pt;}
.ya1{bottom:188.160035pt;}
.yf5{bottom:192.480042pt;}
.y17b{bottom:192.960083pt;}
.y50{bottom:197.280030pt;}
.y19c{bottom:198.080079pt;}
.ybd{bottom:199.040039pt;}
.y4f{bottom:199.840088pt;}
.y138{bottom:200.320069pt;}
.y119{bottom:202.080079pt;}
.y14e{bottom:202.240052pt;}
.y1d6{bottom:203.200074pt;}
.ya0{bottom:206.880066pt;}
.ybc{bottom:210.400086pt;}
.yf4{bottom:211.200074pt;}
.y17a{bottom:211.520081pt;}
.y4e{bottom:213.760071pt;}
.y1d5{bottom:215.200074pt;}
.y137{bottom:219.040039pt;}
.y14d{bottom:220.960083pt;}
.ybb{bottom:221.760071pt;}
.y9f{bottom:225.760071pt;}
.y4d{bottom:226.400086pt;}
.y19b{bottom:226.720032pt;}
.yf3{bottom:230.080079pt;}
.y179{bottom:230.240052pt;}
.y1d4{bottom:231.040039pt;}
.yba{bottom:233.120057pt;}
.y118{bottom:234.240052pt;}
.y136{bottom:237.760071pt;}
.y19a{bottom:238.560059pt;}
.y4c{bottom:239.040039pt;}
.y14c{bottom:239.680054pt;}
.y1d3{bottom:242.880066pt;}
.y9e{bottom:244.480042pt;}
.yf2{bottom:248.800049pt;}
.y178{bottom:248.960083pt;}
.y199{bottom:250.400086pt;}
.y4b{bottom:251.680054pt;}
.y1d2{bottom:254.720032pt;}
.yb7{bottom:255.680054pt;}
.y135{bottom:256.640076pt;}
.y198{bottom:262.240052pt;}
.y9d{bottom:263.200074pt;}
.y4a{bottom:264.320069pt;}
.y117{bottom:266.400086pt;}
.y1d1{bottom:266.560059pt;}
.yb5{bottom:267.040039pt;}
.yf1{bottom:267.520081pt;}
.y197{bottom:274.080079pt;}
.y134{bottom:275.360047pt;}
.y49{bottom:276.960083pt;}
.y14b{bottom:277.600037pt;}
.yb4{bottom:278.400086pt;}
.y9c{bottom:282.080079pt;}
.y1d0{bottom:282.400086pt;}
.y196{bottom:285.920044pt;}
.y177{bottom:286.240052pt;}
.yf0{bottom:286.400086pt;}
.y48{bottom:289.600037pt;}
.yb2{bottom:289.760071pt;}
.y133{bottom:294.240052pt;}
.y195{bottom:297.760071pt;}
.y116{bottom:298.560059pt;}
.y9b{bottom:300.800049pt;}
.yb0{bottom:301.120057pt;}
.y47{bottom:302.240052pt;}
.y176{bottom:304.960083pt;}
.yef{bottom:305.120057pt;}
.y1cf{bottom:310.080079pt;}
.y194{bottom:314.080079pt;}
.y46{bottom:315.520081pt;}
.y14a{bottom:317.600037pt;}
.y9a{bottom:319.680054pt;}
.y1ce{bottom:321.920044pt;}
.y175{bottom:323.520081pt;}
.yee{bottom:324.000061pt;}
.y115{bottom:330.560059pt;}
.y45{bottom:331.200074pt;}
.y132{bottom:331.680054pt;}
.y1cd{bottom:333.760071pt;}
.y99{bottom:338.400086pt;}
.y174{bottom:342.240052pt;}
.yed{bottom:342.720032pt;}
.y44{bottom:343.840088pt;}
.y1cc{bottom:345.600037pt;}
.y72{bottom:348.000061pt;}
.y131{bottom:350.400086pt;}
.y193{bottom:354.560059pt;}
.y43{bottom:356.480042pt;}
.y149{bottom:356.960083pt;}
.y98{bottom:357.120057pt;}
.y71{bottom:360.640076pt;}
.y173{bottom:360.960083pt;}
.yec{bottom:361.440064pt;}
.y114{bottom:362.880066pt;}
.y192{bottom:366.400086pt;}
.y42{bottom:369.120057pt;}
.y70{bottom:372.480042pt;}
.y1cb{bottom:373.280030pt;}
.y148{bottom:375.680054pt;}
.y97{bottom:376.000061pt;}
.y130{bottom:377.120057pt;}
.y191{bottom:378.240052pt;}
.y172{bottom:379.520081pt;}
.yeb{bottom:380.320069pt;}
.y113{bottom:381.600037pt;}
.y41{bottom:381.760071pt;}
.y1ca{bottom:389.120057pt;}
.y190{bottom:390.240052pt;}
.y6f{bottom:392.160035pt;}
.y40{bottom:394.400086pt;}
.y96{bottom:394.720032pt;}
.y171{bottom:398.240052pt;}
.yea{bottom:399.040039pt;}
.y112{bottom:400.320069pt;}
.y1c9{bottom:400.960083pt;}
.y12f{bottom:403.840088pt;}
.y3f{bottom:407.040039pt;}
.y6e{bottom:411.520081pt;}
.y147{bottom:412.960083pt;}
.y95{bottom:413.600037pt;}
.y18f{bottom:415.360047pt;}
.y1c8{bottom:416.800049pt;}
.y170{bottom:416.960083pt;}
.ye9{bottom:417.920044pt;}
.y111{bottom:419.200074pt;}
.y3e{bottom:419.680054pt;}
.y18e{bottom:427.200074pt;}
.y1c7{bottom:428.800049pt;}
.y12e{bottom:430.400086pt;}
.y6d{bottom:430.880066pt;}
.y3d{bottom:432.320069pt;}
.y146{bottom:434.720032pt;}
.y16f{bottom:435.520081pt;}
.ye8{bottom:436.640076pt;}
.y110{bottom:437.920044pt;}
.y18d{bottom:439.040039pt;}
.y1c6{bottom:440.640076pt;}
.y3c{bottom:444.960083pt;}
.y6c{bottom:450.560059pt;}
.y18c{bottom:450.880066pt;}
.y94{bottom:451.040039pt;}
.y16e{bottom:454.240052pt;}
.ye7{bottom:455.520081pt;}
.y1c5{bottom:456.480042pt;}
.y12d{bottom:457.120057pt;}
.y3b{bottom:457.600037pt;}
.y10f{bottom:464.800049pt;}
.y18b{bottom:467.200074pt;}
.y93{bottom:469.920044pt;}
.y3a{bottom:470.240052pt;}
.y6b{bottom:470.400086pt;}
.y145{bottom:472.320069pt;}
.y16d{bottom:472.960083pt;}
.ye6{bottom:474.240052pt;}
.y39{bottom:482.880066pt;}
.y12c{bottom:483.840088pt;}
.y1c4{bottom:484.160035pt;}
.y92{bottom:488.640076pt;}
.y6a{bottom:490.560059pt;}
.y144{bottom:491.200074pt;}
.y16c{bottom:491.520081pt;}
.ye5{bottom:492.960083pt;}
.y38{bottom:495.520081pt;}
.y18a{bottom:496.960083pt;}
.y1c3{bottom:500.000061pt;}
.y10e{bottom:502.240052pt;}
.y91{bottom:507.520081pt;}
.y37{bottom:508.160035pt;}
.y143{bottom:509.920044pt;}
.y16b{bottom:510.240052pt;}
.y12b{bottom:510.400086pt;}
.y69{bottom:510.880066pt;}
.ye4{bottom:511.840088pt;}
.y189{bottom:515.520081pt;}
.y36{bottom:520.800049pt;}
.y10d{bottom:521.120057pt;}
.y90{bottom:526.240052pt;}
.y1c2{bottom:527.680054pt;}
.y142{bottom:528.640076pt;}
.y16a{bottom:528.960083pt;}
.y68{bottom:530.240052pt;}
.ye3{bottom:530.560059pt;}
.y188{bottom:533.120057pt;}
.y35{bottom:533.440064pt;}
.y12a{bottom:537.120057pt;}
.y1c1{bottom:539.520081pt;}
.y10c{bottom:539.840088pt;}
.y8f{bottom:544.960083pt;}
.y34{bottom:546.720032pt;}
.y67{bottom:547.520081pt;}
.ye2{bottom:549.440064pt;}
.y1c0{bottom:555.360047pt;}
.y187{bottom:556.800049pt;}
.y10b{bottom:558.720032pt;}
.y33{bottom:562.400086pt;}
.y66{bottom:562.880066pt;}
.y8e{bottom:563.840088pt;}
.y141{bottom:566.240052pt;}
.y1bf{bottom:567.200074pt;}
.ye1{bottom:568.160035pt;}
.y186{bottom:568.640076pt;}
.y32{bottom:575.040039pt;}
.y10a{bottom:577.440064pt;}
.y185{bottom:580.480042pt;}
.y8d{bottom:582.560059pt;}
.y1be{bottom:583.040039pt;}
.y169{bottom:584.960083pt;}
.y140{bottom:585.120057pt;}
.ye0{bottom:586.880066pt;}
.y31{bottom:588.320069pt;}
.y65{bottom:592.160035pt;}
.y184{bottom:592.320069pt;}
.y1bd{bottom:594.880066pt;}
.y109{bottom:596.160035pt;}
.y8c{bottom:601.440064pt;}
.y168{bottom:603.520081pt;}
.y13f{bottom:603.840088pt;}
.y183{bottom:604.320069pt;}
.y30{bottom:604.640076pt;}
.ydf{bottom:605.760071pt;}
.y1bc{bottom:606.720032pt;}
.y129{bottom:609.280030pt;}
.y64{bottom:614.080048pt;}
.y108{bottom:615.040070pt;}
.y182{bottom:616.160065pt;}
.y8b{bottom:620.160065pt;}
.y2f{bottom:620.320069pt;}
.y167{bottom:622.240052pt;}
.y63{bottom:622.560059pt;}
.yde{bottom:624.480072pt;}
.y181{bottom:628.000061pt;}
.y128{bottom:628.160065pt;}
.y2e{bottom:632.960053pt;}
.y107{bottom:633.760071pt;}
.y62{bottom:634.400055pt;}
.y8a{bottom:639.040070pt;}
.y166{bottom:640.960053pt;}
.y13e{bottom:641.440064pt;}
.ydd{bottom:643.360047pt;}
.y2d{bottom:645.600068pt;}
.y61{bottom:646.240052pt;}
.y127{bottom:646.880066pt;}
.y106{bottom:652.640046pt;}
.y89{bottom:657.760071pt;}
.y60{bottom:658.080048pt;}
.y2c{bottom:658.240052pt;}
.y165{bottom:659.520050pt;}
.y13d{bottom:660.160065pt;}
.ydc{bottom:662.080048pt;}
.y126{bottom:665.600068pt;}
.y1bb{bottom:669.280060pt;}
.y2b{bottom:670.880066pt;}
.y105{bottom:671.360047pt;}
.y5f{bottom:673.280060pt;}
.y88{bottom:676.480072pt;}
.y164{bottom:678.240052pt;}
.y13c{bottom:679.040070pt;}
.ydb{bottom:680.800049pt;}
.y5e{bottom:681.760071pt;}
.y2a{bottom:683.520050pt;}
.y125{bottom:684.480072pt;}
.y104{bottom:690.080048pt;}
.y5d{bottom:693.760071pt;}
.y87{bottom:695.360047pt;}
.y29{bottom:696.160065pt;}
.y163{bottom:696.960053pt;}
.y13b{bottom:697.760071pt;}
.yda{bottom:699.680054pt;}
.y124{bottom:703.200074pt;}
.y1ba{bottom:705.120057pt;}
.y5c{bottom:705.600068pt;}
.y28{bottom:708.800049pt;}
.y86{bottom:714.080048pt;}
.y162{bottom:715.520050pt;}
.y13a{bottom:716.480072pt;}
.y5b{bottom:717.440064pt;}
.y1b9{bottom:717.760071pt;}
.yd9{bottom:718.400055pt;}
.y27{bottom:721.440064pt;}
.y103{bottom:727.680054pt;}
.y5a{bottom:729.280060pt;}
.y1b8{bottom:730.400055pt;}
.y85{bottom:732.960053pt;}
.y26{bottom:734.080048pt;}
.y161{bottom:734.240052pt;}
.y139{bottom:735.360047pt;}
.yd8{bottom:737.280060pt;}
.y1b7{bottom:743.040070pt;}
.y59{bottom:744.480072pt;}
.y102{bottom:746.080048pt;}
.y25{bottom:746.720063pt;}
.y101{bottom:746.880066pt;}
.y84{bottom:751.680054pt;}
.y160{bottom:752.960053pt;}
.y123{bottom:754.080048pt;}
.y1b6{bottom:755.680054pt;}
.yd7{bottom:756.000061pt;}
.y58{bottom:756.160065pt;}
.y24{bottom:759.360047pt;}
.y100{bottom:762.560059pt;}
.y57{bottom:765.120057pt;}
.y83{bottom:770.400055pt;}
.y15f{bottom:771.520050pt;}
.y23{bottom:772.000061pt;}
.y1b5{bottom:772.640046pt;}
.y122{bottom:772.960053pt;}
.yd6{bottom:774.720063pt;}
.y56{bottom:776.960053pt;}
.yff{bottom:779.040070pt;}
.y22{bottom:784.640046pt;}
.y55{bottom:788.800049pt;}
.y82{bottom:789.280060pt;}
.y15e{bottom:790.240052pt;}
.y121{bottom:791.680054pt;}
.yd3{bottom:793.280060pt;}
.yfe{bottom:795.520050pt;}
.y54{bottom:800.640046pt;}
.y21{bottom:801.120057pt;}
.y1b4{bottom:804.000061pt;}
.y81{bottom:808.000061pt;}
.y15d{bottom:808.960053pt;}
.yd2{bottom:809.280060pt;}
.yd5{bottom:809.440064pt;}
.y52{bottom:810.400055pt;}
.yfd{bottom:820.000061pt;}
.y1b3{bottom:820.320069pt;}
.yd1{bottom:825.280060pt;}
.yd4{bottom:825.440064pt;}
.y80{bottom:826.880066pt;}
.y15c{bottom:827.520050pt;}
.y120{bottom:829.280060pt;}
.y20{bottom:831.520050pt;}
.y1ec{bottom:832.320069pt;}
.yd0{bottom:841.920044pt;}
.y7f{bottom:845.600068pt;}
.y15b{bottom:846.240052pt;}
.y11f{bottom:848.000061pt;}
.y1b2{bottom:848.960053pt;}
.y1f{bottom:855.680054pt;}
.y1eb{bottom:856.000061pt;}
.yce{bottom:858.560059pt;}
.y1b1{bottom:860.800049pt;}
.y7e{bottom:864.320069pt;}
.y15a{bottom:864.960053pt;}
.y11e{bottom:866.880066pt;}
.y1b0{bottom:872.640061pt;}
.ycd{bottom:874.560059pt;}
.y1ea{bottom:876.480057pt;}
.yfc{bottom:880.480057pt;}
.y1e{bottom:882.720063pt;}
.y7d{bottom:883.200058pt;}
.y159{bottom:883.520066pt;}
.y1af{bottom:884.480057pt;}
.y11d{bottom:885.600052pt;}
.ycc{bottom:890.560059pt;}
.ycf{bottom:890.720063pt;}
.y1e9{bottom:892.320054pt;}
.y1ae{bottom:896.320054pt;}
.yaf{bottom:899.360062pt;}
.y1d{bottom:901.440064pt;}
.y7c{bottom:901.920060pt;}
.y158{bottom:902.240052pt;}
.y1e8{bottom:904.160065pt;}
.yfb{bottom:904.480057pt;}
.ycb{bottom:906.560059pt;}
.y1ad{bottom:912.640061pt;}
.y1e7{bottom:920.000061pt;}
.y7b{bottom:920.800064pt;}
.y157{bottom:920.960053pt;}
.yae{bottom:923.200058pt;}
.y1c{bottom:925.440064pt;}
.y1e6{bottom:931.840058pt;}
.y1ac{bottom:932.480057pt;}
.y7a{bottom:939.520066pt;}
.yca{bottom:941.120057pt;}
.yad{bottom:941.920060pt;}
.y1ab{bottom:947.680054pt;}
.y1b{bottom:951.200058pt;}
.y79{bottom:958.240052pt;}
.yc9{bottom:958.880066pt;}
.y1aa{bottom:959.520066pt;}
.yac{bottom:960.800064pt;}
.y1e5{bottom:963.520066pt;}
.y1a9{bottom:971.520066pt;}
.y1e4{bottom:975.360062pt;}
.y1a{bottom:976.800064pt;}
.y156{bottom:976.960053pt;}
.y78{bottom:977.120057pt;}
.yc8{bottom:978.720063pt;}
.yab{bottom:979.520066pt;}
.y1a8{bottom:983.360062pt;}
.y1e3{bottom:987.200058pt;}
.y1a7{bottom:995.200058pt;}
.y155{bottom:995.520058pt;}
.y77{bottom:995.840058pt;}
.yc7{bottom:998.240059pt;}
.yaa{bottom:998.400055pt;}
.y1e2{bottom:999.040062pt;}
.yd{bottom:1006.080056pt;}
.y1a6{bottom:1007.040062pt;}
.y154{bottom:1014.240059pt;}
.y1e1{bottom:1014.880059pt;}
.ya9{bottom:1017.120057pt;}
.y1a5{bottom:1018.880059pt;}
.yc{bottom:1021.920060pt;}
.y1e0{bottom:1026.720063pt;}
.y76{bottom:1030.720063pt;}
.y153{bottom:1032.960061pt;}
.y1a4{bottom:1035.200058pt;}
.ya8{bottom:1035.840058pt;}
.y1df{bottom:1038.560059pt;}
.ya{bottom:1043.360062pt;}
.y9{bottom:1047.520058pt;}
.y4{bottom:1055.360062pt;}
.ya7{bottom:1055.680062pt;}
.y7{bottom:1063.680058pt;}
.y6{bottom:1067.840058pt;}
.y75{bottom:1068.000058pt;}
.y3{bottom:1068.160057pt;}
.ya6{bottom:1068.480057pt;}
.y2{bottom:1080.640061pt;}
.y74{bottom:1080.960061pt;}
.ya5{bottom:1081.440060pt;}
.y5{bottom:1087.840058pt;}
.y73{bottom:1093.600060pt;}
.y1{bottom:1093.760060pt;}
.h20{height:10.559997pt;}
.h26{height:11.200012pt;}
.h23{height:11.359985pt;}
.h22{height:11.359986pt;}
.h25{height:11.360047pt;}
.h13{height:11.839997pt;}
.h11{height:13.280029pt;}
.h8{height:19.999996pt;}
.h6{height:20.000000pt;}
.h1b{height:22.344616pt;}
.h16{height:23.664294pt;}
.h1a{height:24.132172pt;}
.h18{height:24.260632pt;}
.h17{height:24.260636pt;}
.h19{height:24.260756pt;}
.hb{height:25.918463pt;}
.h4{height:29.941742pt;}
.h12{height:34.946769pt;}
.h1c{height:36.119161pt;}
.h14{height:37.700696pt;}
.h15{height:39.232917pt;}
.h2{height:40.094296pt;}
.h21{height:40.737520pt;}
.h1d{height:40.823283pt;}
.h3{height:41.680915pt;}
.h24{height:43.054330pt;}
.h1e{height:43.144971pt;}
.h10{height:44.881870pt;}
.h27{height:45.601900pt;}
.hd{height:48.033900pt;}
.h2a{height:50.465900pt;}
.hf{height:51.687706pt;}
.he{height:55.055044pt;}
.h2c{height:55.702458pt;}
.h5{height:63.367405pt;}
.h7{height:64.765215pt;}
.h9{height:68.362453pt;}
.h1f{height:68.706660pt;}
.h2b{height:70.370084pt;}
.hc{height:81.037286pt;}
.h29{height:103.457492pt;}
.h28{height:104.097504pt;}
.ha{height:108.363704pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w26{width:2.400025pt;}
.w5{width:4.959992pt;}
.w9{width:5.279968pt;}
.w1b{width:5.279969pt;}
.w12{width:5.279998pt;}
.w7{width:5.279999pt;}
.w10{width:5.280029pt;}
.w1f{width:5.600006pt;}
.w28{width:5.600007pt;}
.wd{width:5.600036pt;}
.wb{width:5.760010pt;}
.w2{width:7.200012pt;}
.wf{width:13.599976pt;}
.w20{width:20.959961pt;}
.w23{width:22.080017pt;}
.w8{width:22.239990pt;}
.w16{width:22.719971pt;}
.w24{width:23.839996pt;}
.wc{width:26.240051pt;}
.w1a{width:27.359985pt;}
.w1d{width:30.720001pt;}
.w6{width:33.760010pt;}
.w1c{width:34.880005pt;}
.w17{width:36.959991pt;}
.w1e{width:37.119995pt;}
.w22{width:39.040008pt;}
.wa{width:44.160003pt;}
.w4{width:72.320007pt;}
.w29{width:75.360016pt;}
.w21{width:79.679992pt;}
.w15{width:85.119995pt;}
.w25{width:86.079986pt;}
.w18{width:112.480011pt;}
.w19{width:116.639984pt;}
.w3{width:122.400025pt;}
.we{width:124.160003pt;}
.w27{width:143.679992pt;}
.w11{width:152.799988pt;}
.w13{width:155.040008pt;}
.w14{width:168.320007pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:48.000000pt;}
.xa{left:70.720001pt;}
.x10{left:73.279999pt;}
.x13{left:77.919998pt;}
.x1{left:79.680000pt;}
.x31{left:85.760002pt;}
.x7{left:91.519997pt;}
.x15{left:95.040001pt;}
.x39{left:140.639999pt;}
.x3d{left:142.399994pt;}
.x14{left:144.160004pt;}
.x11{left:145.600006pt;}
.x32{left:161.440002pt;}
.x12{left:162.880005pt;}
.x17{left:170.080002pt;}
.x3a{left:178.080002pt;}
.x3c{left:180.320007pt;}
.x34{left:187.520004pt;}
.x18{left:189.600006pt;}
.x41{left:207.839996pt;}
.x8{left:217.122745pt;}
.x3f{left:222.399994pt;}
.x1a{left:225.279999pt;}
.x33{left:232.639999pt;}
.xd{left:236.800003pt;}
.x35{left:246.240005pt;}
.x2d{left:249.119995pt;}
.x29{left:256.000000pt;}
.x1b{left:258.720001pt;}
.x28{left:260.160004pt;}
.x26{left:262.239990pt;}
.x2c{left:264.160004pt;}
.x1d{left:269.440002pt;}
.x3b{left:272.799988pt;}
.x40{left:276.799988pt;}
.xb{left:283.200012pt;}
.x30{left:300.640015pt;}
.x2b{left:304.959991pt;}
.xe{left:311.200012pt;}
.x2e{left:313.760010pt;}
.x27{left:337.760010pt;}
.x20{left:349.440002pt;}
.x2f{left:368.959991pt;}
.x23{left:378.079987pt;}
.x24{left:380.320007pt;}
.x25{left:393.600006pt;}
.x36{left:395.200012pt;}
.x16{left:418.559998pt;}
.x19{left:420.799988pt;}
.x37{left:477.920013pt;}
.xc{left:491.200012pt;}
.x2{left:499.200012pt;}
.x3{left:519.840027pt;}
.x38{left:537.119995pt;}
.x1e{left:554.719971pt;}
.x5{left:556.320007pt;}
.x2a{left:557.280029pt;}
.x21{left:560.960022pt;}
.x22{left:574.559998pt;}
.x1c{left:578.880005pt;}
.x1f{left:580.799988pt;}
.x9{left:643.520020pt;}
.x3e{left:651.359985pt;}
.xf{left:671.359985pt;}
.x4{left:714.080017pt;}
}




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