
    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_ad1af16ea391ea72919ca4f1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_3413d123bb34c33be70131b5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_0816634474a804ba23c7fa1e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_6e849427306e2dcd8c7e56fa.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_5ac438bdfd5870cdb0110a24.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_b71b5449c2faf6f51bd76550.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_127bd6c501ff145808d9b68f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_62ca636d66d0c5ef2e0059f6.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e5d7a376fed71fb64e836ee5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921387;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:ffc;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-1.080000px;}
.ls1c{letter-spacing:-0.774000px;}
.ls15{letter-spacing:-0.566400px;}
.ls17{letter-spacing:-0.540000px;}
.ls3{letter-spacing:-0.531600px;}
.ls2{letter-spacing:-0.460200px;}
.ls4{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.259800px;}
.ls19{letter-spacing:-0.253200px;}
.lsc{letter-spacing:-0.220800px;}
.ls1a{letter-spacing:-0.206400px;}
.lse{letter-spacing:-0.108000px;}
.ls13{letter-spacing:-0.106800px;}
.ls5{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.027360px;}
.lsf{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.106800px;}
.ls11{letter-spacing:0.153360px;}
.ls16{letter-spacing:0.153600px;}
.ls12{letter-spacing:0.174240px;}
.lsa{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.197280px;}
.ls18{letter-spacing:0.206400px;}
.ls14{letter-spacing:0.259800px;}
.ls1b{letter-spacing:0.259920px;}
.ls10{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.ls7{letter-spacing:46.827360px;}
.ls1d{letter-spacing:330.840000px;}
.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;}
}
.wse{word-spacing:-34.423200px;}
.wsc{word-spacing:-30.780000px;}
.ws6{word-spacing:-15.300000px;}
.ws17{word-spacing:-15.238800px;}
.ws10{word-spacing:-15.199800px;}
.ws14{word-spacing:-15.146400px;}
.ws12{word-spacing:-15.093600px;}
.ws9{word-spacing:-15.046800px;}
.wsd{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.wsf{word-spacing:-14.833200px;}
.ws16{word-spacing:-14.733600px;}
.ws15{word-spacing:-14.686800px;}
.wsa{word-spacing:-14.680200px;}
.ws13{word-spacing:-14.580000px;}
.ws1{word-spacing:-14.479800px;}
.ws11{word-spacing:-14.373600px;}
.ws8{word-spacing:-14.247360px;}
.ws18{word-spacing:-14.166000px;}
.wsb{word-spacing:-13.392000px;}
.ws3{word-spacing:-12.420000px;}
.ws2{word-spacing:-12.060000px;}
.ws4{word-spacing:-11.700000px;}
.ws0{word-spacing:0.000000px;}
._c{margin-left:-3.884400px;}
._6{margin-left:-2.091600px;}
._3{margin-left:-1.013040px;}
._0{width:1.135440px;}
._2{width:2.435520px;}
._7{width:3.853680px;}
._a{width:4.953840px;}
._5{width:6.579840px;}
._4{width:7.828560px;}
._8{width:9.083520px;}
._b{width:10.697040px;}
._14{width:12.310560px;}
._15{width:13.625280px;}
._10{width:15.955920px;}
._e{width:16.971840px;}
._18{width:18.406080px;}
._19{width:19.467360px;}
._1b{width:20.930400px;}
._16{width:22.111200px;}
._13{width:23.306400px;}
._9{width:24.621120px;}
._d{width:26.174880px;}
._17{width:27.310320px;}
._1a{width:29.103120px;}
._1c{width:30.895920px;}
._1d{width:31.911840px;}
._11{width:33.824160px;}
._12{width:34.840080px;}
._21{width:36.154800px;}
._28{width:39.264000px;}
._26{width:43.505280px;}
._27{width:45.146880px;}
._2c{width:50.855760px;}
._f{width:56.234160px;}
._1e{width:59.851200px;}
._24{width:64.572000px;}
._22{width:65.657040px;}
._20{width:78.546960px;}
._2b{width:81.521280px;}
._29{width:87.459840px;}
._1f{width:88.897680px;}
._23{width:112.515120px;}
._2a{width:126.778080px;}
._25{width:150.834240px;}
._1{width:482.162160px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs8{font-size:48.240000px;}
.fs9{font-size:51.120000px;}
.fsb{font-size:54.000000px;}
.fsa{font-size:56.880000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:92.880000px;}
.fs7{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y105{bottom:2.880000px;}
.y10b{bottom:3.060000px;}
.y5b{bottom:3.240000px;}
.y13e{bottom:5.040000px;}
.y139{bottom:5.220000px;}
.y13c{bottom:5.250000px;}
.yf2{bottom:8.100000px;}
.y3c{bottom:10.260000px;}
.y3d{bottom:10.800000px;}
.yf0{bottom:12.105000px;}
.y39{bottom:17.460000px;}
.y37{bottom:18.360000px;}
.y113{bottom:18.405000px;}
.y10a{bottom:18.540000px;}
.y120{bottom:18.570000px;}
.y12b{bottom:19.980000px;}
.y16f{bottom:20.340000px;}
.y160{bottom:20.520000px;}
.y1b9{bottom:20.550000px;}
.y3a{bottom:24.300000px;}
.y38{bottom:30.060000px;}
.y12a{bottom:35.460000px;}
.y6{bottom:35.925007px;}
.y129{bottom:50.940000px;}
.y133{bottom:51.840000px;}
.y5{bottom:66.525004px;}
.y124{bottom:67.320000px;}
.y123{bottom:82.800000px;}
.y11d{bottom:82.830000px;}
.y4{bottom:97.125005px;}
.y132{bottom:98.280000px;}
.y11c{bottom:98.310000px;}
.y10f{bottom:98.325000px;}
.y122{bottom:98.460000px;}
.y108{bottom:114.480000px;}
.y116{bottom:114.660000px;}
.y107{bottom:129.960000px;}
.y115{bottom:130.140000px;}
.y22{bottom:139.264499px;}
.y59{bottom:187.410000px;}
.y19{bottom:196.933500px;}
.y58{bottom:208.110000px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y57{bottom:228.810000px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y56{bottom:249.510000px;}
.y51{bottom:259.410000px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y55{bottom:270.210000px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y50{bottom:277.410000px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y54{bottom:290.910000px;}
.y4f{bottom:295.410000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y5a{bottom:311.115000px;}
.y53{bottom:311.655000px;}
.y4e{bottom:313.455000px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y4d{bottom:331.455000px;}
.y83{bottom:331.815000px;}
.y82{bottom:332.355000px;}
.y168{bottom:332.715000px;}
.yb6{bottom:333.435000px;}
.y128{bottom:335.595000px;}
.ye3{bottom:338.655000px;}
.ybb{bottom:339.555000px;}
.ya4{bottom:345.495000px;}
.yed{bottom:347.655000px;}
.y10{bottom:348.133500px;}
.y4c{bottom:349.455000px;}
.y167{bottom:350.715000px;}
.y199{bottom:351.435000px;}
.y12c{bottom:351.795000px;}
.y186{bottom:353.055000px;}
.y1b7{bottom:355.035000px;}
.yb4{bottom:357.555000px;}
.y16d{bottom:362.055000px;}
.ye2{bottom:362.775000px;}
.ya3{bottom:363.495000px;}
.yec{bottom:365.655000px;}
.y4b{bottom:367.455000px;}
.y145{bottom:368.535000px;}
.y166{bottom:368.715000px;}
.y81{bottom:369.435000px;}
.y185{bottom:371.055000px;}
.yb3{bottom:375.555000px;}
.y16c{bottom:380.055000px;}
.ya2{bottom:381.495000px;}
.yeb{bottom:383.655000px;}
.y165{bottom:383.835000px;}
.y4a{bottom:385.455000px;}
.ye1{bottom:386.715000px;}
.yf{bottom:386.785499px;}
.ye7{bottom:387.435000px;}
.y184{bottom:389.055000px;}
.y1b6{bottom:390.315000px;}
.y144{bottom:392.655000px;}
.y103{bottom:393.375000px;}
.y80{bottom:393.555000px;}
.y198{bottom:398.055000px;}
.ya1{bottom:399.495000px;}
.y121{bottom:399.855000px;}
.y164{bottom:401.835000px;}
.y49{bottom:403.455000px;}
.y16b{bottom:403.995000px;}
.ye0{bottom:404.715000px;}
.ye6{bottom:405.435000px;}
.y183{bottom:407.055000px;}
.yea{bottom:407.595000px;}
.ye{bottom:408.044999px;}
.y143{bottom:410.655000px;}
.y7f{bottom:411.555000px;}
.y197{bottom:416.055000px;}
.y102{bottom:417.315000px;}
.y91{bottom:417.495000px;}
.y163{bottom:419.835000px;}
.y48{bottom:421.455000px;}
.ydf{bottom:422.715000px;}
.ye5{bottom:423.435000px;}
.y182{bottom:425.055000px;}
.y1b5{bottom:425.415000px;}
.y16a{bottom:427.935000px;}
.y142{bottom:428.655000px;}
.y7e{bottom:429.555000px;}
.y127{bottom:431.715000px;}
.y196{bottom:434.055000px;}
.ye9{bottom:434.775000px;}
.y90{bottom:435.495000px;}
.y162{bottom:437.835000px;}
.y47{bottom:439.455000px;}
.yde{bottom:440.715000px;}
.ya0{bottom:441.435000px;}
.y181{bottom:443.055000px;}
.y7d{bottom:447.555000px;}
.y169{bottom:448.455000px;}
.y141{bottom:449.715000px;}
.y195{bottom:452.055000px;}
.y8f{bottom:453.495000px;}
.ye8{bottom:455.115000px;}
.y161{bottom:455.835000px;}
.y46{bottom:457.455000px;}
.ydd{bottom:458.715000px;}
.ye4{bottom:459.435000px;}
.y1b4{bottom:460.695000px;}
.y180{bottom:461.055000px;}
.y126{bottom:463.575000px;}
.y1d6{bottom:464.835000px;}
.y101{bottom:465.375000px;}
.y7c{bottom:465.555000px;}
.y194{bottom:470.055000px;}
.yc2{bottom:471.495000px;}
.y15f{bottom:473.835000px;}
.y45{bottom:475.455000px;}
.ydc{bottom:476.715000px;}
.y8e{bottom:477.435000px;}
.y17f{bottom:479.055000px;}
.y1d5{bottom:479.955000px;}
.y7b{bottom:483.555000px;}
.y193{bottom:488.055000px;}
.y100{bottom:489.315000px;}
.yc1{bottom:489.495000px;}
.y140{bottom:493.275000px;}
.y44{bottom:493.455000px;}
.ydb{bottom:494.715000px;}
.y125{bottom:495.255000px;}
.y8d{bottom:495.435000px;}
.y1b3{bottom:495.975000px;}
.y17e{bottom:497.055000px;}
.y1d4{bottom:497.955000px;}
.y7a{bottom:501.555000px;}
.yd{bottom:502.864502px;}
.yff{bottom:507.315000px;}
.yb7{bottom:507.495000px;}
.y43{bottom:511.455000px;}
.y11b{bottom:511.635000px;}
.y192{bottom:511.995000px;}
.yda{bottom:512.715000px;}
.y8c{bottom:513.435000px;}
.y13f{bottom:515.055000px;}
.y1d3{bottom:515.955000px;}
.y15e{bottom:516.855000px;}
.y79{bottom:519.555000px;}
.yc{bottom:520.864502px;}
.y17d{bottom:520.995000px;}
.yfe{bottom:525.315000px;}
.yc0{bottom:525.495000px;}
.y42{bottom:529.455000px;}
.y191{bottom:529.995000px;}
.yd9{bottom:530.715000px;}
.y1b2{bottom:531.255000px;}
.y8b{bottom:531.435000px;}
.y1d2{bottom:533.955000px;}
.y13d{bottom:536.835000px;}
.y78{bottom:537.555000px;}
.yb{bottom:538.864499px;}
.y17c{bottom:538.995000px;}
.y15d{bottom:540.435000px;}
.yfd{bottom:543.315000px;}
.yb5{bottom:543.495000px;}
.y41{bottom:547.455000px;}
.y190{bottom:547.995000px;}
.yd8{bottom:548.715000px;}
.y1b1{bottom:549.255000px;}
.yb2{bottom:549.435000px;}
.y1d1{bottom:551.955000px;}
.y77{bottom:555.555000px;}
.ya{bottom:556.864499px;}
.y17b{bottom:556.995000px;}
.y13b{bottom:558.435000px;}
.yfc{bottom:561.345000px;}
.ybf{bottom:561.525000px;}
.y40{bottom:565.485000px;}
.y18f{bottom:566.025000px;}
.yd7{bottom:566.745000px;}
.y1b0{bottom:567.285000px;}
.yb1{bottom:567.465000px;}
.y1d0{bottom:569.985000px;}
.y76{bottom:573.585000px;}
.y11f{bottom:575.205000px;}
.y15c{bottom:576.465000px;}
.yfb{bottom:579.345000px;}
.ybe{bottom:579.525000px;}
.y13a{bottom:580.245000px;}
.y18e{bottom:584.025000px;}
.yd6{bottom:584.745000px;}
.yb0{bottom:585.465000px;}
.y1cf{bottom:587.985000px;}
.y3f{bottom:589.605000px;}
.y75{bottom:591.585000px;}
.y15b{bottom:594.465000px;}
.yfa{bottom:597.345000px;}
.yc6{bottom:597.525000px;}
.y138{bottom:602.025000px;}
.y1af{bottom:602.565000px;}
.yd5{bottom:602.745000px;}
.yaf{bottom:603.465000px;}
.y1ce{bottom:605.985000px;}
.y11e{bottom:607.065000px;}
.y3e{bottom:607.245000px;}
.y74{bottom:609.585000px;}
.y17a{bottom:610.485000px;}
.y15a{bottom:612.465000px;}
.yf9{bottom:615.345000px;}
.yc5{bottom:615.525000px;}
.y18d{bottom:620.025000px;}
.y1ae{bottom:620.565000px;}
.y3b{bottom:621.105000px;}
.yae{bottom:621.465000px;}
.y114{bottom:623.265000px;}
.y1cd{bottom:623.985000px;}
.yd4{bottom:626.685000px;}
.y73{bottom:627.585000px;}
.y159{bottom:630.465000px;}
.yf8{bottom:633.345000px;}
.yc4{bottom:633.525000px;}
.y18c{bottom:638.025000px;}
.y1ad{bottom:638.565000px;}
.yad{bottom:639.465000px;}
.y1cc{bottom:641.985000px;}
.y36{bottom:643.245000px;}
.y9{bottom:645.510000px;}
.y72{bottom:645.585000px;}
.y158{bottom:648.465000px;}
.yd3{bottom:650.805000px;}
.yf7{bottom:651.345000px;}
.ybd{bottom:651.525000px;}
.y179{bottom:654.945000px;}
.y11a{bottom:655.125000px;}
.y18b{bottom:656.025000px;}
.y1ac{bottom:656.565000px;}
.yd0{bottom:657.465000px;}
.y1cb{bottom:659.985000px;}
.y71{bottom:663.585000px;}
.y157{bottom:666.465000px;}
.y8{bottom:666.771000px;}
.yf6{bottom:669.345000px;}
.ybc{bottom:669.525000px;}
.y18a{bottom:674.025000px;}
.yd2{bottom:674.745000px;}
.ycf{bottom:675.465000px;}
.y1ca{bottom:677.985000px;}
.y178{bottom:678.525000px;}
.y70{bottom:681.585000px;}
.y35{bottom:682.125000px;}
.y156{bottom:684.465000px;}
.y119{bottom:686.805000px;}
.yf5{bottom:687.345000px;}
.y9f{bottom:687.525000px;}
.y1ab{bottom:691.845000px;}
.yce{bottom:693.465000px;}
.yd1{bottom:695.085000px;}
.y1c9{bottom:695.985000px;}
.y177{bottom:696.525000px;}
.y189{bottom:697.965000px;}
.y6f{bottom:699.585000px;}
.y34{bottom:699.765000px;}
.y155{bottom:702.465000px;}
.y9e{bottom:705.525000px;}
.y1aa{bottom:709.665000px;}
.yba{bottom:711.465000px;}
.y1c8{bottom:713.985000px;}
.y176{bottom:714.525000px;}
.y6e{bottom:717.585000px;}
.y33{bottom:717.765000px;}
.y118{bottom:718.665000px;}
.y188{bottom:722.085000px;}
.y9d{bottom:723.525000px;}
.y7{bottom:726.298500px;}
.y154{bottom:726.585000px;}
.y1a9{bottom:727.665000px;}
.ycd{bottom:729.465000px;}
.y1c7{bottom:731.985000px;}
.y175{bottom:732.525000px;}
.yf4{bottom:735.405000px;}
.y6d{bottom:735.585000px;}
.y32{bottom:735.765000px;}
.y9c{bottom:741.525000px;}
.y187{bottom:742.425000px;}
.y153{bottom:744.585000px;}
.y1a8{bottom:745.665000px;}
.ycc{bottom:747.465000px;}
.y1c6{bottom:749.985000px;}
.y117{bottom:750.525000px;}
.y3{bottom:752.599495px;}
.yf3{bottom:753.405000px;}
.y6c{bottom:753.585000px;}
.y31{bottom:753.765000px;}
.y9b{bottom:759.525000px;}
.y152{bottom:762.585000px;}
.y1a7{bottom:763.665000px;}
.ycb{bottom:765.465000px;}
.y10e{bottom:766.725000px;}
.y1c5{bottom:767.985000px;}
.y6b{bottom:771.585000px;}
.y30{bottom:771.765000px;}
.yf1{bottom:773.025000px;}
.y174{bottom:774.465000px;}
.y8a{bottom:777.525000px;}
.y151{bottom:780.585000px;}
.y1a6{bottom:781.665000px;}
.yca{bottom:783.465000px;}
.y1c4{bottom:785.985000px;}
.y6a{bottom:789.585000px;}
.y2f{bottom:789.765000px;}
.y89{bottom:795.525000px;}
.y112{bottom:798.585000px;}
.y1a5{bottom:799.665000px;}
.yef{bottom:800.745000px;}
.yc9{bottom:801.465000px;}
.y1c3{bottom:803.985000px;}
.y69{bottom:807.585000px;}
.y2e{bottom:807.765000px;}
.y88{bottom:813.570000px;}
.y1a4{bottom:817.710000px;}
.yc3{bottom:819.510000px;}
.y137{bottom:821.850000px;}
.y1c2{bottom:822.030000px;}
.y150{bottom:822.570000px;}
.yac{bottom:825.630000px;}
.y2d{bottom:825.810000px;}
.y111{bottom:830.310000px;}
.y68{bottom:831.570000px;}
.yc8{bottom:837.510000px;}
.y1c1{bottom:840.030000px;}
.yab{bottom:843.630000px;}
.y2c{bottom:843.810000px;}
.yee{bottom:844.710000px;}
.y14f{bottom:846.510000px;}
.y67{bottom:849.570000px;}
.y173{bottom:852.810000px;}
.y1a3{bottom:852.990000px;}
.yc7{bottom:855.510000px;}
.y131{bottom:856.590000px;}
.y1c0{bottom:858.030000px;}
.yaa{bottom:861.630000px;}
.y2b{bottom:861.810000px;}
.y110{bottom:862.170000px;}
.y14e{bottom:864.510000px;}
.y66{bottom:867.570000px;}
.y172{bottom:870.810000px;}
.y9a{bottom:873.510000px;}
.y1bf{bottom:876.030000px;}
.y106{bottom:878.550000px;}
.y2{bottom:879.369000px;}
.ya9{bottom:879.630000px;}
.y2a{bottom:879.810000px;}
.y14d{bottom:884.310000px;}
.y65{bottom:885.570000px;}
.y1a2{bottom:888.270000px;}
.y136{bottom:888.450000px;}
.y171{bottom:888.810000px;}
.y99{bottom:891.510000px;}
.y1be{bottom:894.030000px;}
.ya8{bottom:897.630000px;}
.y29{bottom:899.430000px;}
.y64{bottom:903.570000px;}
.y14c{bottom:905.910000px;}
.y1a1{bottom:906.270000px;}
.y170{bottom:906.810000px;}
.y98{bottom:909.510000px;}
.y10d{bottom:910.230000px;}
.ya7{bottom:915.630000px;}
.y135{bottom:920.310000px;}
.y63{bottom:921.570000px;}
.y1a0{bottom:924.270000px;}
.y16e{bottom:924.810000px;}
.y28{bottom:926.790000px;}
.y97{bottom:927.510000px;}
.y14b{bottom:927.690000px;}
.ya6{bottom:933.630000px;}
.y62{bottom:939.570000px;}
.y10c{bottom:942.090000px;}
.y19f{bottom:942.270000px;}
.y96{bottom:945.510000px;}
.y14a{bottom:949.470000px;}
.ya5{bottom:951.630000px;}
.y134{bottom:951.990000px;}
.y27{bottom:953.610000px;}
.y61{bottom:957.570000px;}
.y1bd{bottom:958.650000px;}
.y95{bottom:963.510000px;}
.y1{bottom:966.726000px;}
.y130{bottom:968.370000px;}
.yb9{bottom:969.630000px;}
.y149{bottom:971.250000px;}
.y1bc{bottom:973.410000px;}
.y109{bottom:973.770000px;}
.y87{bottom:975.570000px;}
.y19e{bottom:977.550000px;}
.y26{bottom:980.250000px;}
.y60{bottom:981.510000px;}
.yb8{bottom:987.630000px;}
.y1bb{bottom:991.410000px;}
.y148{bottom:993.030000px;}
.y86{bottom:993.570000px;}
.y19d{bottom:995.550000px;}
.y94{bottom:999.510000px;}
.y12f{bottom:1000.050000px;}
.y5f{bottom:1005.630000px;}
.y85{bottom:1011.570000px;}
.y19c{bottom:1013.550000px;}
.y147{bottom:1014.810000px;}
.y93{bottom:1017.510000px;}
.y104{bottom:1022.010000px;}
.y5e{bottom:1023.630000px;}
.y1ba{bottom:1026.690000px;}
.y84{bottom:1029.570000px;}
.y25{bottom:1031.550000px;}
.y12e{bottom:1031.910000px;}
.y146{bottom:1036.410000px;}
.y19b{bottom:1039.290000px;}
.y92{bottom:1041.630000px;}
.y1b8{bottom:1044.690000px;}
.y5d{bottom:1047.570000px;}
.y24{bottom:1048.650000px;}
.y19a{bottom:1063.260000px;}
.y12d{bottom:1063.800000px;}
.y5c{bottom:1065.600000px;}
.y23{bottom:1065.960000px;}
.y52{bottom:1119.960000px;}
.h21{height:15.480000px;}
.h27{height:15.660000px;}
.h31{height:17.100000px;}
.h13{height:17.280000px;}
.h34{height:17.316000px;}
.h2d{height:20.880000px;}
.h2b{height:21.060000px;}
.h2c{height:21.096000px;}
.h10{height:22.140000px;}
.h1c{height:27.000000px;}
.h1d{height:30.960000px;}
.h1b{height:30.996000px;}
.h22{height:31.140000px;}
.h25{height:31.176000px;}
.h7{height:32.130000px;}
.h2a{height:34.020000px;}
.h30{height:34.380000px;}
.h2e{height:34.560000px;}
.h35{height:34.596000px;}
.hd{height:35.640000px;}
.h19{height:41.132461px;}
.h14{height:43.215117px;}
.h6{height:45.900000px;}
.hf{height:47.344922px;}
.h3{height:48.195000px;}
.he{height:48.616875px;}
.h11{height:50.171484px;}
.h2f{height:51.519375px;}
.h20{height:52.998047px;}
.h1e{height:54.421875px;}
.h2{height:55.080000px;}
.h16{height:55.796836px;}
.h17{height:55.824609px;}
.h1a{height:57.324375px;}
.h18{height:58.463677px;}
.h15{height:58.621992px;}
.h9{height:58.651172px;}
.h32{height:59.439023px;}
.ha{height:60.226875px;}
.h28{height:63.540000px;}
.h12{height:70.664062px;}
.h33{height:72.562500px;}
.h5{height:78.030000px;}
.hb{height:93.605625px;}
.hc{height:93.983203px;}
.h29{height:110.880000px;}
.h23{height:110.916000px;}
.h26{height:111.060000px;}
.h4{height:119.055004px;}
.h1f{height:142.560000px;}
.h24{height:142.740000px;}
.h8{height:1188.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w9{width:22.716000px;}
.w1a{width:49.140000px;}
.w11{width:49.896000px;}
.w1b{width:50.400000px;}
.w1c{width:50.616000px;}
.w19{width:52.776000px;}
.w14{width:53.100000px;}
.w1d{width:53.136000px;}
.wf{width:56.340000px;}
.w10{width:59.220000px;}
.w16{width:59.616000px;}
.w17{width:59.940000px;}
.w18{width:59.976000px;}
.w29{width:64.620000px;}
.w23{width:65.880000px;}
.w27{width:66.600000px;}
.wd{width:66.780000px;}
.w12{width:68.760000px;}
.wa{width:73.296000px;}
.wb{width:73.440000px;}
.wc{width:73.656000px;}
.w2d{width:77.076000px;}
.w20{width:80.136000px;}
.w26{width:81.216000px;}
.w22{width:81.396000px;}
.w13{width:83.160000px;}
.w2c{width:83.880000px;}
.w1f{width:85.320000px;}
.w24{width:86.976000px;}
.we{width:99.576000px;}
.w1e{width:127.296000px;}
.w5{width:130.716000px;}
.w6{width:133.200000px;}
.w8{width:134.676000px;}
.w7{width:141.516000px;}
.w25{width:154.290000px;}
.w21{width:174.270000px;}
.w2b{width:268.815000px;}
.w2a{width:473.325000px;}
.w15{width:526.065000px;}
.w28{width:538.665000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w4{width:917.999986px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.x12{left:8.100000px;}
.x4a{left:10.260000px;}
.x50{left:12.060000px;}
.x56{left:13.860000px;}
.x27{left:16.380000px;}
.x22{left:19.260000px;}
.x20{left:21.060000px;}
.x26{left:22.500000px;}
.x3d{left:23.940000px;}
.x47{left:25.560000px;}
.x40{left:27.720000px;}
.x57{left:30.600000px;}
.x5a{left:34.380000px;}
.x59{left:38.520000px;}
.x58{left:41.940000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4{left:203.484001px;}
.x5{left:216.029986px;}
.x7{left:221.609986px;}
.x29{left:223.410000px;}
.xb{left:238.169986px;}
.x6{left:242.669986px;}
.x3e{left:244.290000px;}
.x4c{left:255.990000px;}
.x1f{left:267.150000px;}
.x19{left:270.029986px;}
.x36{left:277.410000px;}
.x53{left:282.090000px;}
.x4b{left:298.334986px;}
.x30{left:304.095000px;}
.x15{left:317.774986px;}
.x2a{left:323.715000px;}
.x1d{left:326.234986px;}
.x37{left:331.095000px;}
.x21{left:341.175000px;}
.x16{left:345.314986px;}
.x11{left:346.755000px;}
.x28{left:349.274986px;}
.x31{left:364.755000px;}
.xc{left:370.874986px;}
.x3f{left:372.315000px;}
.x8{left:377.894986px;}
.xa{left:380.054986px;}
.x1e{left:384.374986px;}
.x1b{left:390.494986px;}
.x10{left:393.554986px;}
.xe{left:395.534986px;}
.x45{left:399.854986px;}
.x4d{left:411.015000px;}
.xf{left:416.054986px;}
.x46{left:418.575000px;}
.x32{left:425.595000px;}
.x38{left:430.995000px;}
.x18{left:432.614986px;}
.x51{left:435.674986px;}
.x2b{left:440.895000px;}
.xd{left:443.234986px;}
.x52{left:448.094986px;}
.x3{left:454.959000px;}
.x41{left:458.535000px;}
.x17{left:474.735000px;}
.x13{left:479.955000px;}
.x39{left:482.115000px;}
.x9{left:486.104986px;}
.x23{left:489.705000px;}
.x2c{left:491.505000px;}
.x4e{left:493.125000px;}
.x48{left:500.685000px;}
.x42{left:512.565000px;}
.x3a{left:533.625000px;}
.x54{left:540.105000px;}
.x33{left:547.125000px;}
.x24{left:557.205000px;}
.x2d{left:560.985000px;}
.x49{left:567.285000px;}
.x43{left:573.225000px;}
.x3b{left:587.625000px;}
.x34{left:607.785000px;}
.x14{left:621.465000px;}
.x55{left:624.705000px;}
.x25{left:631.365000px;}
.x4f{left:634.785000px;}
.x3c{left:641.625000px;}
.x2e{left:644.865000px;}
.x44{left:647.565000px;}
.x35{left:668.625000px;}
.x2f{left:695.670000px;}
.x1a{left:751.649986px;}
.x1c{left:760.649986px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.960000pt;}
.ls1c{letter-spacing:-0.688000pt;}
.ls15{letter-spacing:-0.503467pt;}
.ls17{letter-spacing:-0.480000pt;}
.ls3{letter-spacing:-0.472533pt;}
.ls2{letter-spacing:-0.409067pt;}
.ls4{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.230933pt;}
.ls19{letter-spacing:-0.225067pt;}
.lsc{letter-spacing:-0.196267pt;}
.ls1a{letter-spacing:-0.183467pt;}
.lse{letter-spacing:-0.096000pt;}
.ls13{letter-spacing:-0.094933pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.024320pt;}
.lsf{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.094933pt;}
.ls11{letter-spacing:0.136320pt;}
.ls16{letter-spacing:0.136533pt;}
.ls12{letter-spacing:0.154880pt;}
.lsa{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.175360pt;}
.ls18{letter-spacing:0.183467pt;}
.ls14{letter-spacing:0.230933pt;}
.ls1b{letter-spacing:0.231040pt;}
.ls10{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.ls7{letter-spacing:41.624320pt;}
.ls1d{letter-spacing:294.080000pt;}
.wse{word-spacing:-30.598400pt;}
.wsc{word-spacing:-27.360000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws17{word-spacing:-13.545600pt;}
.ws10{word-spacing:-13.510933pt;}
.ws14{word-spacing:-13.463467pt;}
.ws12{word-spacing:-13.416533pt;}
.ws9{word-spacing:-13.374933pt;}
.wsd{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.wsf{word-spacing:-13.185067pt;}
.ws16{word-spacing:-13.096533pt;}
.ws15{word-spacing:-13.054933pt;}
.wsa{word-spacing:-13.049067pt;}
.ws13{word-spacing:-12.960000pt;}
.ws1{word-spacing:-12.870933pt;}
.ws11{word-spacing:-12.776533pt;}
.ws8{word-spacing:-12.664320pt;}
.ws18{word-spacing:-12.592000pt;}
.wsb{word-spacing:-11.904000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws4{word-spacing:-10.400000pt;}
.ws0{word-spacing:0.000000pt;}
._c{margin-left:-3.452800pt;}
._6{margin-left:-1.859200pt;}
._3{margin-left:-0.900480pt;}
._0{width:1.009280pt;}
._2{width:2.164907pt;}
._7{width:3.425493pt;}
._a{width:4.403413pt;}
._5{width:5.848747pt;}
._4{width:6.958720pt;}
._8{width:8.074240pt;}
._b{width:9.508480pt;}
._14{width:10.942720pt;}
._15{width:12.111360pt;}
._10{width:14.183040pt;}
._e{width:15.086080pt;}
._18{width:16.360960pt;}
._19{width:17.304320pt;}
._1b{width:18.604800pt;}
._16{width:19.654400pt;}
._13{width:20.716800pt;}
._9{width:21.885440pt;}
._d{width:23.266560pt;}
._17{width:24.275840pt;}
._1a{width:25.869440pt;}
._1c{width:27.463040pt;}
._1d{width:28.366080pt;}
._11{width:30.065920pt;}
._12{width:30.968960pt;}
._21{width:32.137600pt;}
._28{width:34.901333pt;}
._26{width:38.671360pt;}
._27{width:40.130560pt;}
._2c{width:45.205120pt;}
._f{width:49.985920pt;}
._1e{width:53.201067pt;}
._24{width:57.397333pt;}
._22{width:58.361813pt;}
._20{width:69.819520pt;}
._2b{width:72.463360pt;}
._29{width:77.742080pt;}
._1f{width:79.020160pt;}
._23{width:100.013440pt;}
._2a{width:112.691627pt;}
._25{width:134.074880pt;}
._1{width:428.588587pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:42.880000pt;}
.fs9{font-size:45.440000pt;}
.fsb{font-size:48.000000pt;}
.fsa{font-size:50.560000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:82.560000pt;}
.fs7{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y105{bottom:2.560000pt;}
.y10b{bottom:2.720000pt;}
.y5b{bottom:2.880000pt;}
.y13e{bottom:4.480000pt;}
.y139{bottom:4.640000pt;}
.y13c{bottom:4.666667pt;}
.yf2{bottom:7.200000pt;}
.y3c{bottom:9.120000pt;}
.y3d{bottom:9.600000pt;}
.yf0{bottom:10.760000pt;}
.y39{bottom:15.520000pt;}
.y37{bottom:16.320000pt;}
.y113{bottom:16.360000pt;}
.y10a{bottom:16.480000pt;}
.y120{bottom:16.506667pt;}
.y12b{bottom:17.760000pt;}
.y16f{bottom:18.080000pt;}
.y160{bottom:18.240000pt;}
.y1b9{bottom:18.266667pt;}
.y3a{bottom:21.600000pt;}
.y38{bottom:26.720000pt;}
.y12a{bottom:31.520000pt;}
.y6{bottom:31.933340pt;}
.y129{bottom:45.280000pt;}
.y133{bottom:46.080000pt;}
.y5{bottom:59.133337pt;}
.y124{bottom:59.840000pt;}
.y123{bottom:73.600000pt;}
.y11d{bottom:73.626667pt;}
.y4{bottom:86.333337pt;}
.y132{bottom:87.360000pt;}
.y11c{bottom:87.386667pt;}
.y10f{bottom:87.400000pt;}
.y122{bottom:87.520000pt;}
.y108{bottom:101.760000pt;}
.y116{bottom:101.920000pt;}
.y107{bottom:115.520000pt;}
.y115{bottom:115.680000pt;}
.y22{bottom:123.790666pt;}
.y59{bottom:166.586667pt;}
.y19{bottom:175.052000pt;}
.y58{bottom:184.986667pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y57{bottom:203.386667pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y56{bottom:221.786667pt;}
.y51{bottom:230.586667pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y55{bottom:240.186667pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y50{bottom:246.586667pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y54{bottom:258.586667pt;}
.y4f{bottom:262.586667pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y5a{bottom:276.546667pt;}
.y53{bottom:277.026667pt;}
.y4e{bottom:278.626667pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y4d{bottom:294.626667pt;}
.y83{bottom:294.946667pt;}
.y82{bottom:295.426667pt;}
.y168{bottom:295.746667pt;}
.yb6{bottom:296.386667pt;}
.y128{bottom:298.306667pt;}
.ye3{bottom:301.026667pt;}
.ybb{bottom:301.826667pt;}
.ya4{bottom:307.106667pt;}
.yed{bottom:309.026667pt;}
.y10{bottom:309.452000pt;}
.y4c{bottom:310.626667pt;}
.y167{bottom:311.746667pt;}
.y199{bottom:312.386667pt;}
.y12c{bottom:312.706667pt;}
.y186{bottom:313.826667pt;}
.y1b7{bottom:315.586667pt;}
.yb4{bottom:317.826667pt;}
.y16d{bottom:321.826667pt;}
.ye2{bottom:322.466667pt;}
.ya3{bottom:323.106667pt;}
.yec{bottom:325.026667pt;}
.y4b{bottom:326.626667pt;}
.y145{bottom:327.586667pt;}
.y166{bottom:327.746667pt;}
.y81{bottom:328.386667pt;}
.y185{bottom:329.826667pt;}
.yb3{bottom:333.826667pt;}
.y16c{bottom:337.826667pt;}
.ya2{bottom:339.106667pt;}
.yeb{bottom:341.026667pt;}
.y165{bottom:341.186667pt;}
.y4a{bottom:342.626667pt;}
.ye1{bottom:343.746667pt;}
.yf{bottom:343.809333pt;}
.ye7{bottom:344.386667pt;}
.y184{bottom:345.826667pt;}
.y1b6{bottom:346.946667pt;}
.y144{bottom:349.026667pt;}
.y103{bottom:349.666667pt;}
.y80{bottom:349.826667pt;}
.y198{bottom:353.826667pt;}
.ya1{bottom:355.106667pt;}
.y121{bottom:355.426667pt;}
.y164{bottom:357.186667pt;}
.y49{bottom:358.626667pt;}
.y16b{bottom:359.106667pt;}
.ye0{bottom:359.746667pt;}
.ye6{bottom:360.386667pt;}
.y183{bottom:361.826667pt;}
.yea{bottom:362.306667pt;}
.ye{bottom:362.706666pt;}
.y143{bottom:365.026667pt;}
.y7f{bottom:365.826667pt;}
.y197{bottom:369.826667pt;}
.y102{bottom:370.946667pt;}
.y91{bottom:371.106667pt;}
.y163{bottom:373.186667pt;}
.y48{bottom:374.626667pt;}
.ydf{bottom:375.746667pt;}
.ye5{bottom:376.386667pt;}
.y182{bottom:377.826667pt;}
.y1b5{bottom:378.146667pt;}
.y16a{bottom:380.386667pt;}
.y142{bottom:381.026667pt;}
.y7e{bottom:381.826667pt;}
.y127{bottom:383.746667pt;}
.y196{bottom:385.826667pt;}
.ye9{bottom:386.466667pt;}
.y90{bottom:387.106667pt;}
.y162{bottom:389.186667pt;}
.y47{bottom:390.626667pt;}
.yde{bottom:391.746667pt;}
.ya0{bottom:392.386667pt;}
.y181{bottom:393.826667pt;}
.y7d{bottom:397.826667pt;}
.y169{bottom:398.626667pt;}
.y141{bottom:399.746667pt;}
.y195{bottom:401.826667pt;}
.y8f{bottom:403.106667pt;}
.ye8{bottom:404.546667pt;}
.y161{bottom:405.186667pt;}
.y46{bottom:406.626667pt;}
.ydd{bottom:407.746667pt;}
.ye4{bottom:408.386667pt;}
.y1b4{bottom:409.506667pt;}
.y180{bottom:409.826667pt;}
.y126{bottom:412.066667pt;}
.y1d6{bottom:413.186667pt;}
.y101{bottom:413.666667pt;}
.y7c{bottom:413.826667pt;}
.y194{bottom:417.826667pt;}
.yc2{bottom:419.106667pt;}
.y15f{bottom:421.186667pt;}
.y45{bottom:422.626667pt;}
.ydc{bottom:423.746667pt;}
.y8e{bottom:424.386667pt;}
.y17f{bottom:425.826667pt;}
.y1d5{bottom:426.626667pt;}
.y7b{bottom:429.826667pt;}
.y193{bottom:433.826667pt;}
.y100{bottom:434.946667pt;}
.yc1{bottom:435.106667pt;}
.y140{bottom:438.466667pt;}
.y44{bottom:438.626667pt;}
.ydb{bottom:439.746667pt;}
.y125{bottom:440.226667pt;}
.y8d{bottom:440.386667pt;}
.y1b3{bottom:440.866667pt;}
.y17e{bottom:441.826667pt;}
.y1d4{bottom:442.626667pt;}
.y7a{bottom:445.826667pt;}
.yd{bottom:446.990669pt;}
.yff{bottom:450.946667pt;}
.yb7{bottom:451.106667pt;}
.y43{bottom:454.626667pt;}
.y11b{bottom:454.786667pt;}
.y192{bottom:455.106667pt;}
.yda{bottom:455.746667pt;}
.y8c{bottom:456.386667pt;}
.y13f{bottom:457.826667pt;}
.y1d3{bottom:458.626667pt;}
.y15e{bottom:459.426667pt;}
.y79{bottom:461.826667pt;}
.yc{bottom:462.990669pt;}
.y17d{bottom:463.106667pt;}
.yfe{bottom:466.946667pt;}
.yc0{bottom:467.106667pt;}
.y42{bottom:470.626667pt;}
.y191{bottom:471.106667pt;}
.yd9{bottom:471.746667pt;}
.y1b2{bottom:472.226667pt;}
.y8b{bottom:472.386667pt;}
.y1d2{bottom:474.626667pt;}
.y13d{bottom:477.186667pt;}
.y78{bottom:477.826667pt;}
.yb{bottom:478.990666pt;}
.y17c{bottom:479.106667pt;}
.y15d{bottom:480.386667pt;}
.yfd{bottom:482.946667pt;}
.yb5{bottom:483.106667pt;}
.y41{bottom:486.626667pt;}
.y190{bottom:487.106667pt;}
.yd8{bottom:487.746667pt;}
.y1b1{bottom:488.226667pt;}
.yb2{bottom:488.386667pt;}
.y1d1{bottom:490.626667pt;}
.y77{bottom:493.826667pt;}
.ya{bottom:494.990666pt;}
.y17b{bottom:495.106667pt;}
.y13b{bottom:496.386667pt;}
.yfc{bottom:498.973333pt;}
.ybf{bottom:499.133333pt;}
.y40{bottom:502.653333pt;}
.y18f{bottom:503.133333pt;}
.yd7{bottom:503.773333pt;}
.y1b0{bottom:504.253333pt;}
.yb1{bottom:504.413333pt;}
.y1d0{bottom:506.653333pt;}
.y76{bottom:509.853333pt;}
.y11f{bottom:511.293333pt;}
.y15c{bottom:512.413333pt;}
.yfb{bottom:514.973333pt;}
.ybe{bottom:515.133333pt;}
.y13a{bottom:515.773333pt;}
.y18e{bottom:519.133333pt;}
.yd6{bottom:519.773333pt;}
.yb0{bottom:520.413333pt;}
.y1cf{bottom:522.653333pt;}
.y3f{bottom:524.093333pt;}
.y75{bottom:525.853333pt;}
.y15b{bottom:528.413333pt;}
.yfa{bottom:530.973333pt;}
.yc6{bottom:531.133333pt;}
.y138{bottom:535.133333pt;}
.y1af{bottom:535.613333pt;}
.yd5{bottom:535.773333pt;}
.yaf{bottom:536.413333pt;}
.y1ce{bottom:538.653333pt;}
.y11e{bottom:539.613333pt;}
.y3e{bottom:539.773333pt;}
.y74{bottom:541.853333pt;}
.y17a{bottom:542.653333pt;}
.y15a{bottom:544.413333pt;}
.yf9{bottom:546.973333pt;}
.yc5{bottom:547.133333pt;}
.y18d{bottom:551.133333pt;}
.y1ae{bottom:551.613333pt;}
.y3b{bottom:552.093333pt;}
.yae{bottom:552.413333pt;}
.y114{bottom:554.013333pt;}
.y1cd{bottom:554.653333pt;}
.yd4{bottom:557.053333pt;}
.y73{bottom:557.853333pt;}
.y159{bottom:560.413333pt;}
.yf8{bottom:562.973333pt;}
.yc4{bottom:563.133333pt;}
.y18c{bottom:567.133333pt;}
.y1ad{bottom:567.613333pt;}
.yad{bottom:568.413333pt;}
.y1cc{bottom:570.653333pt;}
.y36{bottom:571.773333pt;}
.y9{bottom:573.786667pt;}
.y72{bottom:573.853333pt;}
.y158{bottom:576.413333pt;}
.yd3{bottom:578.493333pt;}
.yf7{bottom:578.973333pt;}
.ybd{bottom:579.133333pt;}
.y179{bottom:582.173333pt;}
.y11a{bottom:582.333333pt;}
.y18b{bottom:583.133333pt;}
.y1ac{bottom:583.613333pt;}
.yd0{bottom:584.413333pt;}
.y1cb{bottom:586.653333pt;}
.y71{bottom:589.853333pt;}
.y157{bottom:592.413333pt;}
.y8{bottom:592.685334pt;}
.yf6{bottom:594.973333pt;}
.ybc{bottom:595.133333pt;}
.y18a{bottom:599.133333pt;}
.yd2{bottom:599.773333pt;}
.ycf{bottom:600.413333pt;}
.y1ca{bottom:602.653333pt;}
.y178{bottom:603.133333pt;}
.y70{bottom:605.853333pt;}
.y35{bottom:606.333333pt;}
.y156{bottom:608.413333pt;}
.y119{bottom:610.493333pt;}
.yf5{bottom:610.973333pt;}
.y9f{bottom:611.133333pt;}
.y1ab{bottom:614.973333pt;}
.yce{bottom:616.413333pt;}
.yd1{bottom:617.853333pt;}
.y1c9{bottom:618.653333pt;}
.y177{bottom:619.133333pt;}
.y189{bottom:620.413333pt;}
.y6f{bottom:621.853333pt;}
.y34{bottom:622.013333pt;}
.y155{bottom:624.413333pt;}
.y9e{bottom:627.133333pt;}
.y1aa{bottom:630.813333pt;}
.yba{bottom:632.413333pt;}
.y1c8{bottom:634.653333pt;}
.y176{bottom:635.133333pt;}
.y6e{bottom:637.853333pt;}
.y33{bottom:638.013333pt;}
.y118{bottom:638.813333pt;}
.y188{bottom:641.853333pt;}
.y9d{bottom:643.133333pt;}
.y7{bottom:645.598667pt;}
.y154{bottom:645.853333pt;}
.y1a9{bottom:646.813333pt;}
.ycd{bottom:648.413333pt;}
.y1c7{bottom:650.653333pt;}
.y175{bottom:651.133333pt;}
.yf4{bottom:653.693333pt;}
.y6d{bottom:653.853333pt;}
.y32{bottom:654.013333pt;}
.y9c{bottom:659.133333pt;}
.y187{bottom:659.933333pt;}
.y153{bottom:661.853333pt;}
.y1a8{bottom:662.813333pt;}
.ycc{bottom:664.413333pt;}
.y1c6{bottom:666.653333pt;}
.y117{bottom:667.133333pt;}
.y3{bottom:668.977329pt;}
.yf3{bottom:669.693333pt;}
.y6c{bottom:669.853333pt;}
.y31{bottom:670.013333pt;}
.y9b{bottom:675.133333pt;}
.y152{bottom:677.853333pt;}
.y1a7{bottom:678.813333pt;}
.ycb{bottom:680.413333pt;}
.y10e{bottom:681.533333pt;}
.y1c5{bottom:682.653333pt;}
.y6b{bottom:685.853333pt;}
.y30{bottom:686.013333pt;}
.yf1{bottom:687.133333pt;}
.y174{bottom:688.413333pt;}
.y8a{bottom:691.133333pt;}
.y151{bottom:693.853333pt;}
.y1a6{bottom:694.813333pt;}
.yca{bottom:696.413333pt;}
.y1c4{bottom:698.653333pt;}
.y6a{bottom:701.853333pt;}
.y2f{bottom:702.013333pt;}
.y89{bottom:707.133333pt;}
.y112{bottom:709.853333pt;}
.y1a5{bottom:710.813333pt;}
.yef{bottom:711.773333pt;}
.yc9{bottom:712.413333pt;}
.y1c3{bottom:714.653333pt;}
.y69{bottom:717.853333pt;}
.y2e{bottom:718.013333pt;}
.y88{bottom:723.173333pt;}
.y1a4{bottom:726.853333pt;}
.yc3{bottom:728.453333pt;}
.y137{bottom:730.533333pt;}
.y1c2{bottom:730.693333pt;}
.y150{bottom:731.173333pt;}
.yac{bottom:733.893333pt;}
.y2d{bottom:734.053333pt;}
.y111{bottom:738.053333pt;}
.y68{bottom:739.173333pt;}
.yc8{bottom:744.453333pt;}
.y1c1{bottom:746.693333pt;}
.yab{bottom:749.893333pt;}
.y2c{bottom:750.053333pt;}
.yee{bottom:750.853333pt;}
.y14f{bottom:752.453333pt;}
.y67{bottom:755.173333pt;}
.y173{bottom:758.053333pt;}
.y1a3{bottom:758.213333pt;}
.yc7{bottom:760.453333pt;}
.y131{bottom:761.413333pt;}
.y1c0{bottom:762.693333pt;}
.yaa{bottom:765.893333pt;}
.y2b{bottom:766.053333pt;}
.y110{bottom:766.373333pt;}
.y14e{bottom:768.453333pt;}
.y66{bottom:771.173333pt;}
.y172{bottom:774.053333pt;}
.y9a{bottom:776.453333pt;}
.y1bf{bottom:778.693333pt;}
.y106{bottom:780.933333pt;}
.y2{bottom:781.661334pt;}
.ya9{bottom:781.893333pt;}
.y2a{bottom:782.053333pt;}
.y14d{bottom:786.053333pt;}
.y65{bottom:787.173333pt;}
.y1a2{bottom:789.573333pt;}
.y136{bottom:789.733333pt;}
.y171{bottom:790.053333pt;}
.y99{bottom:792.453333pt;}
.y1be{bottom:794.693333pt;}
.ya8{bottom:797.893333pt;}
.y29{bottom:799.493333pt;}
.y64{bottom:803.173333pt;}
.y14c{bottom:805.253333pt;}
.y1a1{bottom:805.573333pt;}
.y170{bottom:806.053333pt;}
.y98{bottom:808.453333pt;}
.y10d{bottom:809.093333pt;}
.ya7{bottom:813.893333pt;}
.y135{bottom:818.053333pt;}
.y63{bottom:819.173333pt;}
.y1a0{bottom:821.573333pt;}
.y16e{bottom:822.053333pt;}
.y28{bottom:823.813333pt;}
.y97{bottom:824.453333pt;}
.y14b{bottom:824.613333pt;}
.ya6{bottom:829.893333pt;}
.y62{bottom:835.173333pt;}
.y10c{bottom:837.413333pt;}
.y19f{bottom:837.573333pt;}
.y96{bottom:840.453333pt;}
.y14a{bottom:843.973333pt;}
.ya5{bottom:845.893333pt;}
.y134{bottom:846.213333pt;}
.y27{bottom:847.653333pt;}
.y61{bottom:851.173333pt;}
.y1bd{bottom:852.133333pt;}
.y95{bottom:856.453333pt;}
.y1{bottom:859.312000pt;}
.y130{bottom:860.773333pt;}
.yb9{bottom:861.893333pt;}
.y149{bottom:863.333333pt;}
.y1bc{bottom:865.253333pt;}
.y109{bottom:865.573333pt;}
.y87{bottom:867.173333pt;}
.y19e{bottom:868.933333pt;}
.y26{bottom:871.333333pt;}
.y60{bottom:872.453333pt;}
.yb8{bottom:877.893333pt;}
.y1bb{bottom:881.253333pt;}
.y148{bottom:882.693333pt;}
.y86{bottom:883.173333pt;}
.y19d{bottom:884.933333pt;}
.y94{bottom:888.453333pt;}
.y12f{bottom:888.933333pt;}
.y5f{bottom:893.893333pt;}
.y85{bottom:899.173333pt;}
.y19c{bottom:900.933333pt;}
.y147{bottom:902.053333pt;}
.y93{bottom:904.453333pt;}
.y104{bottom:908.453333pt;}
.y5e{bottom:909.893333pt;}
.y1ba{bottom:912.613333pt;}
.y84{bottom:915.173333pt;}
.y25{bottom:916.933333pt;}
.y12e{bottom:917.253333pt;}
.y146{bottom:921.253333pt;}
.y19b{bottom:923.813333pt;}
.y92{bottom:925.893333pt;}
.y1b8{bottom:928.613333pt;}
.y5d{bottom:931.173333pt;}
.y24{bottom:932.133333pt;}
.y19a{bottom:945.120000pt;}
.y12d{bottom:945.600000pt;}
.y5c{bottom:947.200000pt;}
.y23{bottom:947.520000pt;}
.y52{bottom:995.520000pt;}
.h21{height:13.760000pt;}
.h27{height:13.920000pt;}
.h31{height:15.200000pt;}
.h13{height:15.360000pt;}
.h34{height:15.392000pt;}
.h2d{height:18.560000pt;}
.h2b{height:18.720000pt;}
.h2c{height:18.752000pt;}
.h10{height:19.680000pt;}
.h1c{height:24.000000pt;}
.h1d{height:27.520000pt;}
.h1b{height:27.552000pt;}
.h22{height:27.680000pt;}
.h25{height:27.712000pt;}
.h7{height:28.560000pt;}
.h2a{height:30.240000pt;}
.h30{height:30.560000pt;}
.h2e{height:30.720000pt;}
.h35{height:30.752000pt;}
.hd{height:31.680000pt;}
.h19{height:36.562188pt;}
.h14{height:38.413438pt;}
.h6{height:40.800000pt;}
.hf{height:42.084375pt;}
.h3{height:42.840000pt;}
.he{height:43.215000pt;}
.h11{height:44.596875pt;}
.h2f{height:45.795000pt;}
.h20{height:47.109375pt;}
.h1e{height:48.375000pt;}
.h2{height:48.960000pt;}
.h16{height:49.597187pt;}
.h17{height:49.621875pt;}
.h1a{height:50.955000pt;}
.h18{height:51.967713pt;}
.h15{height:52.108438pt;}
.h9{height:52.134375pt;}
.h32{height:52.834688pt;}
.ha{height:53.535000pt;}
.h28{height:56.480000pt;}
.h12{height:62.812500pt;}
.h33{height:64.500000pt;}
.h5{height:69.360000pt;}
.hb{height:83.205000pt;}
.hc{height:83.540625pt;}
.h29{height:98.560000pt;}
.h23{height:98.592000pt;}
.h26{height:98.720000pt;}
.h4{height:105.826671pt;}
.h1f{height:126.720000pt;}
.h24{height:126.880000pt;}
.h8{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w9{width:20.192000pt;}
.w1a{width:43.680000pt;}
.w11{width:44.352000pt;}
.w1b{width:44.800000pt;}
.w1c{width:44.992000pt;}
.w19{width:46.912000pt;}
.w14{width:47.200000pt;}
.w1d{width:47.232000pt;}
.wf{width:50.080000pt;}
.w10{width:52.640000pt;}
.w16{width:52.992000pt;}
.w17{width:53.280000pt;}
.w18{width:53.312000pt;}
.w29{width:57.440000pt;}
.w23{width:58.560000pt;}
.w27{width:59.200000pt;}
.wd{width:59.360000pt;}
.w12{width:61.120000pt;}
.wa{width:65.152000pt;}
.wb{width:65.280000pt;}
.wc{width:65.472000pt;}
.w2d{width:68.512000pt;}
.w20{width:71.232000pt;}
.w26{width:72.192000pt;}
.w22{width:72.352000pt;}
.w13{width:73.920000pt;}
.w2c{width:74.560000pt;}
.w1f{width:75.840000pt;}
.w24{width:77.312000pt;}
.we{width:88.512000pt;}
.w1e{width:113.152000pt;}
.w5{width:116.192000pt;}
.w6{width:118.400000pt;}
.w8{width:119.712000pt;}
.w7{width:125.792000pt;}
.w25{width:137.146667pt;}
.w21{width:154.906667pt;}
.w2b{width:238.946667pt;}
.w2a{width:420.733333pt;}
.w15{width:467.613333pt;}
.w28{width:478.813333pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w4{width:815.999988pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.x12{left:7.200000pt;}
.x4a{left:9.120000pt;}
.x50{left:10.720000pt;}
.x56{left:12.320000pt;}
.x27{left:14.560000pt;}
.x22{left:17.120000pt;}
.x20{left:18.720000pt;}
.x26{left:20.000000pt;}
.x3d{left:21.280000pt;}
.x47{left:22.720000pt;}
.x40{left:24.640000pt;}
.x57{left:27.200000pt;}
.x5a{left:30.560000pt;}
.x59{left:34.240000pt;}
.x58{left:37.280000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4{left:180.874667pt;}
.x5{left:192.026655pt;}
.x7{left:196.986655pt;}
.x29{left:198.586667pt;}
.xb{left:211.706655pt;}
.x6{left:215.706655pt;}
.x3e{left:217.146667pt;}
.x4c{left:227.546667pt;}
.x1f{left:237.466667pt;}
.x19{left:240.026655pt;}
.x36{left:246.586667pt;}
.x53{left:250.746667pt;}
.x4b{left:265.186655pt;}
.x30{left:270.306667pt;}
.x15{left:282.466655pt;}
.x2a{left:287.746667pt;}
.x1d{left:289.986655pt;}
.x37{left:294.306667pt;}
.x21{left:303.266667pt;}
.x16{left:306.946655pt;}
.x11{left:308.226667pt;}
.x28{left:310.466655pt;}
.x31{left:324.226667pt;}
.xc{left:329.666655pt;}
.x3f{left:330.946667pt;}
.x8{left:335.906655pt;}
.xa{left:337.826655pt;}
.x1e{left:341.666655pt;}
.x1b{left:347.106655pt;}
.x10{left:349.826655pt;}
.xe{left:351.586655pt;}
.x45{left:355.426655pt;}
.x4d{left:365.346667pt;}
.xf{left:369.826655pt;}
.x46{left:372.066667pt;}
.x32{left:378.306667pt;}
.x38{left:383.106667pt;}
.x18{left:384.546655pt;}
.x51{left:387.266655pt;}
.x2b{left:391.906667pt;}
.xd{left:393.986655pt;}
.x52{left:398.306655pt;}
.x3{left:404.408000pt;}
.x41{left:407.586667pt;}
.x17{left:421.986667pt;}
.x13{left:426.626667pt;}
.x39{left:428.546667pt;}
.x9{left:432.093321pt;}
.x23{left:435.293333pt;}
.x2c{left:436.893333pt;}
.x4e{left:438.333333pt;}
.x48{left:445.053333pt;}
.x42{left:455.613333pt;}
.x3a{left:474.333333pt;}
.x54{left:480.093333pt;}
.x33{left:486.333333pt;}
.x24{left:495.293333pt;}
.x2d{left:498.653333pt;}
.x49{left:504.253333pt;}
.x43{left:509.533333pt;}
.x3b{left:522.333333pt;}
.x34{left:540.253333pt;}
.x14{left:552.413333pt;}
.x55{left:555.293333pt;}
.x25{left:561.213333pt;}
.x4f{left:564.253333pt;}
.x3c{left:570.333333pt;}
.x2e{left:573.213333pt;}
.x44{left:575.613333pt;}
.x35{left:594.333333pt;}
.x2f{left:618.373333pt;}
.x1a{left:668.133321pt;}
.x1c{left:676.133321pt;}
}




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