
    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_336e044bb7be8de2444abc02.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b629ad9c01007df9afebe0c6.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_eabe88362994a993c6a575a8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.783691;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_eac7028027c107fd4ed83417.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_95af9ccfa8cba6273c08d913.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d19e6bd4c6469871179f3f3f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ff1c99352b1abb8d6953fbe9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_bd7390df0dc3df7c7c9c96d3.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_ecfe4d5d04766b3624b017bc.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_f2c8ae2f53f41cbe6ff1cf0c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.773926;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);}
.v5{vertical-align:-69.120000px;}
.v4{vertical-align:-66.240000px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.000000px;}
.v1{vertical-align:20.880000px;}
.ls2c{letter-spacing:-1.260000px;}
.lsc{letter-spacing:-1.182000px;}
.ls7{letter-spacing:-0.540000px;}
.ls25{letter-spacing:-0.496200px;}
.ls29{letter-spacing:-0.450600px;}
.ls5{letter-spacing:-0.360000px;}
.ls2b{letter-spacing:-0.269400px;}
.ls15{letter-spacing:-0.223800px;}
.ls30{letter-spacing:-0.216000px;}
.ls20{letter-spacing:-0.106800px;}
.ls8{letter-spacing:-0.053280px;}
.ls10{letter-spacing:-0.045360px;}
.ls4{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.008640px;}
.ls2{letter-spacing:0.033840px;}
.ls2a{letter-spacing:0.045360px;}
.ls1b{letter-spacing:0.053280px;}
.ls12{letter-spacing:0.106800px;}
.lsa{letter-spacing:0.153360px;}
.ls1{letter-spacing:0.180000px;}
.ls23{letter-spacing:0.181440px;}
.ls21{letter-spacing:0.206400px;}
.ls1f{letter-spacing:0.206640px;}
.ls6{letter-spacing:0.259800px;}
.lsb{letter-spacing:0.259920px;}
.ls24{letter-spacing:0.269400px;}
.ls1d{letter-spacing:0.306720px;}
.ls0{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.480000px;}
.ls22{letter-spacing:4.500000px;}
.ls2e{letter-spacing:5.126400px;}
.ls18{letter-spacing:5.706720px;}
.ls2f{letter-spacing:5.846400px;}
.ls17{letter-spacing:6.426720px;}
.ls1c{letter-spacing:6.660000px;}
.ls1e{letter-spacing:10.260000px;}
.ls28{letter-spacing:12.326400px;}
.lsf{letter-spacing:13.229280px;}
.ls16{letter-spacing:15.786720px;}
.lse{letter-spacing:36.989280px;}
.ls2d{letter-spacing:58.500000px;}
.ls26{letter-spacing:65.700000px;}
.ls3{letter-spacing:66.162720px;}
.ls27{letter-spacing:66.420000px;}
.ls9{letter-spacing:112.476000px;}
.ls14{letter-spacing:168.636000px;}
.ls13{letter-spacing:197.436000px;}
.ls19{letter-spacing:200.316000px;}
.lsd{letter-spacing:348.636000px;}
.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;}
}
.ws11{word-spacing:-59.760000px;}
.ws2{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.146400px;}
.wsc{word-spacing:-15.046800px;}
.wsf{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.wse{word-spacing:-14.833200px;}
.ws0{word-spacing:-14.580000px;}
.ws6{word-spacing:-13.860000px;}
.ws5{word-spacing:-13.500000px;}
.ws18{word-spacing:-13.284000px;}
.wsa{word-spacing:-12.420000px;}
.ws13{word-spacing:-12.240000px;}
.ws16{word-spacing:-12.105360px;}
.ws9{word-spacing:-12.060000px;}
.wsb{word-spacing:-12.014640px;}
.wsd{word-spacing:-11.836200px;}
.ws17{word-spacing:-11.790600px;}
.ws12{word-spacing:-11.700000px;}
.ws15{word-spacing:-11.563800px;}
.ws14{word-spacing:-11.520000px;}
.ws3{word-spacing:-9.720000px;}
.ws4{word-spacing:-7.560000px;}
.ws8{word-spacing:0.000000px;}
._24{margin-left:-3.670080px;}
._20{margin-left:-2.111760px;}
._1{margin-left:-1.075680px;}
._0{width:1.314720px;}
._2{width:2.594400px;}
._c{width:3.650880px;}
._7{width:4.752000px;}
._18{width:5.824800px;}
._4{width:6.840000px;}
._9{width:7.920000px;}
._6{width:9.828000px;}
._8{width:11.664000px;}
._17{width:13.625280px;}
._23{width:14.784480px;}
._11{width:16.038000px;}
._b{width:17.172000px;}
._a{width:18.198000px;}
._1b{width:19.203840px;}
._16{width:20.295360px;}
._15{width:21.816000px;}
._1f{width:23.784480px;}
._1e{width:24.800400px;}
._21{width:26.314560px;}
._22{width:27.509040px;}
._e{width:29.676000px;}
._d{width:30.726000px;}
._12{width:32.076000px;}
._26{width:33.506640px;}
._14{width:34.776000px;}
._13{width:36.018000px;}
._10{width:37.089360px;}
._f{width:38.178000px;}
._25{width:50.119920px;}
._29{width:58.813200px;}
._27{width:59.828160px;}
._2a{width:61.038000px;}
._28{width:67.009680px;}
._5{width:155.700000px;}
._1c{width:509.086560px;}
._19{width:735.660000px;}
._1d{width:865.686720px;}
._1a{width:1073.100000px;}
._3{width:1101.912000px;}
.fc3{color:rgb(238,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:30.240000px;}
.fs2{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs7{font-size:63.360000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yda{bottom:2.520000px;}
.y2c{bottom:2.880000px;}
.y10{bottom:3.240000px;}
.y16d{bottom:3.600000px;}
.y16a{bottom:3.780000px;}
.y211{bottom:4.680000px;}
.y34{bottom:9.000000px;}
.y3a{bottom:12.240000px;}
.ye3{bottom:16.200000px;}
.ydf{bottom:16.380000px;}
.ye9{bottom:16.416000px;}
.y2b{bottom:18.360000px;}
.y15{bottom:20.520000px;}
.y39{bottom:29.520000px;}
.ye2{bottom:30.060000px;}
.ye8{bottom:30.090000px;}
.yde{bottom:30.285000px;}
.y152{bottom:32.940000px;}
.y20f{bottom:33.120000px;}
.y2a{bottom:33.840000px;}
.y173{bottom:37.620000px;}
.y14{bottom:37.800000px;}
.ye1{bottom:43.920000px;}
.y14d{bottom:43.950000px;}
.ydd{bottom:43.965000px;}
.y151{bottom:46.620000px;}
.y38{bottom:46.800000px;}
.y20e{bottom:48.780000px;}
.y29{bottom:49.530000px;}
.y172{bottom:54.900000px;}
.y13{bottom:55.080000px;}
.ydc{bottom:57.825000px;}
.y150{bottom:60.480000px;}
.y154{bottom:63.360000px;}
.y37{bottom:64.080000px;}
.y20d{bottom:64.260000px;}
.y204{bottom:64.290000px;}
.y28{bottom:65.010000px;}
.y33{bottom:66.060000px;}
.y171{bottom:72.180000px;}
.y14f{bottom:77.040000px;}
.y20c{bottom:79.740000px;}
.y21b{bottom:79.770000px;}
.y203{bottom:79.950000px;}
.y27{bottom:80.490000px;}
.y12{bottom:81.360000px;}
.y5{bottom:88.200000px;}
.y36{bottom:90.180000px;}
.y20b{bottom:95.220000px;}
.y202{bottom:95.430000px;}
.y26{bottom:95.970000px;}
.y205{bottom:108.180000px;}
.y20a{bottom:110.880000px;}
.y201{bottom:110.910000px;}
.y216{bottom:110.925000px;}
.y25{bottom:111.630000px;}
.yea{bottom:112.680000px;}
.y188{bottom:112.860000px;}
.yb1{bottom:114.480000px;}
.y104{bottom:122.040000px;}
.y1fd{bottom:123.660000px;}
.y118{bottom:124.380000px;}
.ye7{bottom:124.740000px;}
.y209{bottom:126.360000px;}
.y200{bottom:126.390000px;}
.y215{bottom:126.405000px;}
.y24{bottom:127.110000px;}
.yfd{bottom:128.160000px;}
.y166{bottom:128.520000px;}
.yb0{bottom:128.880000px;}
.y187{bottom:130.140000px;}
.y76{bottom:136.476000px;}
.yd0{bottom:138.996000px;}
.y103{bottom:139.356000px;}
.y117{bottom:141.696000px;}
.y208{bottom:141.840000px;}
.y21a{bottom:141.870000px;}
.y214{bottom:141.885000px;}
.y1ff{bottom:142.050000px;}
.y23{bottom:142.590000px;}
.yfc{bottom:145.476000px;}
.y165{bottom:145.836000px;}
.yaf{bottom:146.196000px;}
.y186{bottom:147.456000px;}
.y1cb{bottom:148.176000px;}
.y48{bottom:148.356000px;}
.y75{bottom:150.330000px;}
.y102{bottom:153.390000px;}
.ycf{bottom:156.270000px;}
.y207{bottom:157.320000px;}
.y219{bottom:157.350000px;}
.y213{bottom:157.365000px;}
.y1fe{bottom:157.530000px;}
.y22{bottom:158.070000px;}
.y116{bottom:158.790000px;}
.y148{bottom:158.970000px;}
.y1ca{bottom:162.030000px;}
.yfb{bottom:162.750000px;}
.y164{bottom:163.110000px;}
.yae{bottom:163.470000px;}
.y74{bottom:164.010000px;}
.y185{bottom:164.550000px;}
.y47{bottom:165.630000px;}
.ye6{bottom:166.170000px;}
.yce{bottom:173.550000px;}
.y21{bottom:173.730000px;}
.y1c9{bottom:175.710000px;}
.y115{bottom:176.070000px;}
.y147{bottom:176.250000px;}
.y73{bottom:177.870000px;}
.yfa{bottom:179.850000px;}
.y163{bottom:180.210000px;}
.yad{bottom:180.750000px;}
.y184{bottom:181.110000px;}
.y46{bottom:182.910000px;}
.y32{bottom:184.530000px;}
.y20{bottom:189.210000px;}
.y1c8{bottom:189.570000px;}
.ycd{bottom:190.830000px;}
.y72{bottom:192.450000px;}
.y114{bottom:193.350000px;}
.y183{bottom:194.970000px;}
.yf9{bottom:197.130000px;}
.y162{bottom:197.490000px;}
.yac{bottom:197.850000px;}
.y45{bottom:200.010000px;}
.y31{bottom:201.810000px;}
.y1c7{bottom:203.430000px;}
.y1f{bottom:204.690000px;}
.ye5{bottom:207.570000px;}
.ycc{bottom:208.110000px;}
.y71{bottom:208.830000px;}
.y182{bottom:209.550000px;}
.y113{bottom:210.630000px;}
.yf8{bottom:214.410000px;}
.y161{bottom:214.770000px;}
.yab{bottom:215.130000px;}
.y1c6{bottom:217.110000px;}
.y44{bottom:217.290000px;}
.y30{bottom:219.090000px;}
.y1e{bottom:220.170000px;}
.ycb{bottom:225.210000px;}
.y181{bottom:226.650000px;}
.y112{bottom:227.910000px;}
.y1c5{bottom:230.970000px;}
.yf7{bottom:231.690000px;}
.y160{bottom:232.050000px;}
.yaa{bottom:232.410000px;}
.y43{bottom:234.570000px;}
.y1d{bottom:235.830000px;}
.y2f{bottom:236.370000px;}
.yca{bottom:242.490000px;}
.y180{bottom:243.930000px;}
.y1c4{bottom:244.830000px;}
.y111{bottom:245.190000px;}
.ye4{bottom:248.970000px;}
.y15f{bottom:249.330000px;}
.ya9{bottom:249.690000px;}
.y1c{bottom:251.310000px;}
.y42{bottom:251.850000px;}
.y2e{bottom:253.650000px;}
.y1c3{bottom:258.510000px;}
.yc9{bottom:259.770000px;}
.y17f{bottom:261.210000px;}
.y110{bottom:262.290000px;}
.y146{bottom:262.470000px;}
.yf6{bottom:266.250000px;}
.y15e{bottom:266.610000px;}
.y1b{bottom:266.790000px;}
.ya8{bottom:266.970000px;}
.y41{bottom:269.130000px;}
.y1c2{bottom:272.370000px;}
.yc8{bottom:277.050000px;}
.y17e{bottom:277.770000px;}
.y10f{bottom:279.570000px;}
.y2d{bottom:279.750000px;}
.y1a{bottom:282.270000px;}
.yf5{bottom:283.350000px;}
.y15d{bottom:283.710000px;}
.ya7{bottom:284.250000px;}
.y1c1{bottom:286.230000px;}
.y40{bottom:286.410000px;}
.y17d{bottom:291.630000px;}
.yc7{bottom:294.330000px;}
.y10e{bottom:296.850000px;}
.y19{bottom:297.930000px;}
.y1c0{bottom:299.910000px;}
.yf4{bottom:300.630000px;}
.y15c{bottom:300.990000px;}
.ya6{bottom:301.350000px;}
.y3f{bottom:303.510000px;}
.ye0{bottom:304.230000px;}
.y17c{bottom:306.030000px;}
.yc6{bottom:311.610000px;}
.y145{bottom:313.410000px;}
.y1bf{bottom:313.770000px;}
.y10d{bottom:314.130000px;}
.y1fc{bottom:315.210000px;}
.yf3{bottom:317.910000px;}
.y15b{bottom:318.270000px;}
.ya5{bottom:318.630000px;}
.y3e{bottom:320.790000px;}
.y17b{bottom:323.310000px;}
.y144{bottom:325.470000px;}
.y1be{bottom:327.630000px;}
.yc5{bottom:328.710000px;}
.y10c{bottom:331.410000px;}
.y1fb{bottom:331.770000px;}
.yf2{bottom:335.190000px;}
.y15a{bottom:335.550000px;}
.ya4{bottom:335.910000px;}
.y3d{bottom:338.070000px;}
.y143{bottom:339.330000px;}
.y17a{bottom:339.870000px;}
.y1bd{bottom:341.310000px;}
.y10b{bottom:345.450000px;}
.y1fa{bottom:345.630000px;}
.yc4{bottom:345.990000px;}
.yf1{bottom:352.470000px;}
.y159{bottom:352.830000px;}
.y142{bottom:353.010000px;}
.ya3{bottom:353.190000px;}
.y179{bottom:353.730000px;}
.y1bc{bottom:355.170000px;}
.y3c{bottom:355.350000px;}
.ydb{bottom:359.310000px;}
.yc3{bottom:363.270000px;}
.y141{bottom:366.870000px;}
.y178{bottom:368.130000px;}
.y1bb{bottom:369.030000px;}
.yf0{bottom:369.750000px;}
.y158{bottom:369.930000px;}
.ya2{bottom:370.470000px;}
.y3b{bottom:372.630000px;}
.y1f9{bottom:373.170000px;}
.yc2{bottom:380.550000px;}
.y140{bottom:380.730000px;}
.y1ba{bottom:382.710000px;}
.y17{bottom:384.870000px;}
.y177{bottom:385.410000px;}
.yef{bottom:386.850000px;}
.y1f8{bottom:387.030000px;}
.y157{bottom:387.210000px;}
.ya1{bottom:387.795000px;}
.y35{bottom:388.875000px;}
.y13e{bottom:395.355000px;}
.y1b9{bottom:396.615000px;}
.yc1{bottom:397.875000px;}
.y1f7{bottom:400.755000px;}
.y176{bottom:402.015000px;}
.yee{bottom:404.175000px;}
.ya0{bottom:404.895000px;}
.y1b8{bottom:410.475000px;}
.y1f6{bottom:414.615000px;}
.yc0{bottom:415.155000px;}
.y175{bottom:415.875000px;}
.y156{bottom:421.095000px;}
.yed{bottom:421.455000px;}
.y9f{bottom:422.175000px;}
.y1b7{bottom:424.155000px;}
.y1f5{bottom:428.475000px;}
.yd9{bottom:429.195000px;}
.y174{bottom:429.555000px;}
.ybf{bottom:432.255000px;}
.y155{bottom:434.955000px;}
.y13f{bottom:436.755000px;}
.y1b6{bottom:438.015000px;}
.yec{bottom:438.735000px;}
.y9e{bottom:439.455000px;}
.y170{bottom:440.895000px;}
.y1f4{bottom:442.155000px;}
.y153{bottom:446.835000px;}
.yd8{bottom:447.015000px;}
.ybe{bottom:449.535000px;}
.y1b5{bottom:451.875000px;}
.y13d{bottom:454.395000px;}
.yeb{bottom:456.015000px;}
.y9d{bottom:456.735000px;}
.y1b4{bottom:465.555000px;}
.ybd{bottom:466.815000px;}
.y1f3{bottom:469.875000px;}
.y70{bottom:473.115000px;}
.y9c{bottom:474.015000px;}
.y1b3{bottom:479.415000px;}
.yd7{bottom:480.675000px;}
.y1f2{bottom:483.555000px;}
.ybc{bottom:484.095000px;}
.y13c{bottom:488.955000px;}
.y6f{bottom:490.395000px;}
.y9b{bottom:491.115000px;}
.y1b2{bottom:493.095000px;}
.yd6{bottom:494.535000px;}
.y1f1{bottom:497.415000px;}
.ybb{bottom:501.375000px;}
.y16{bottom:502.815000px;}
.y13b{bottom:506.235000px;}
.y1b1{bottom:506.955000px;}
.y6e{bottom:507.675000px;}
.y9a{bottom:508.395000px;}
.yd5{bottom:508.935000px;}
.y1f0{bottom:511.095000px;}
.y101{bottom:514.335000px;}
.yba{bottom:518.475000px;}
.y1b0{bottom:520.815000px;}
.y14e{bottom:521.535000px;}
.y13a{bottom:523.515000px;}
.y6d{bottom:524.955000px;}
.yd4{bottom:525.495000px;}
.y99{bottom:525.675000px;}
.y16f{bottom:529.635000px;}
.y100{bottom:531.615000px;}
.y1af{bottom:534.495000px;}
.yb9{bottom:535.755000px;}
.yd3{bottom:536.835000px;}
.y1ef{bottom:538.815000px;}
.y139{bottom:540.615000px;}
.y16e{bottom:541.695000px;}
.y6c{bottom:542.235000px;}
.y98{bottom:542.955000px;}
.y1ae{bottom:548.355000px;}
.yff{bottom:548.895000px;}
.yb8{bottom:552.315000px;}
.y1ee{bottom:552.495000px;}
.y138{bottom:557.895000px;}
.y16c{bottom:558.975000px;}
.y6b{bottom:559.515000px;}
.y97{bottom:560.235000px;}
.y1ad{bottom:562.215000px;}
.yb7{bottom:566.175000px;}
.y1ed{bottom:566.355000px;}
.y137{bottom:575.175000px;}
.y1ac{bottom:575.895000px;}
.y16b{bottom:576.075000px;}
.y6a{bottom:576.615000px;}
.y96{bottom:577.515000px;}
.yfe{bottom:580.215000px;}
.yb6{bottom:580.575000px;}
.y21c{bottom:581.115000px;}
.y1ab{bottom:589.755000px;}
.y18{bottom:591.195000px;}
.y136{bottom:592.455000px;}
.y169{bottom:593.355000px;}
.y69{bottom:593.895000px;}
.y95{bottom:594.615000px;}
.y218{bottom:595.155000px;}
.yb5{bottom:597.135000px;}
.y1aa{bottom:603.615000px;}
.y1ec{bottom:607.755000px;}
.yb4{bottom:608.475000px;}
.y135{bottom:609.735000px;}
.y14c{bottom:610.635000px;}
.y68{bottom:611.175000px;}
.y168{bottom:611.355000px;}
.y94{bottom:611.895000px;}
.y1a9{bottom:617.295000px;}
.y1eb{bottom:621.615000px;}
.y134{bottom:627.015000px;}
.y67{bottom:628.455000px;}
.y93{bottom:629.175000px;}
.y1a8{bottom:631.155000px;}
.y167{bottom:631.875000px;}
.y1ea{bottom:635.295000px;}
.y133{bottom:644.145000px;}
.y1a7{bottom:645.045000px;}
.y66{bottom:645.765000px;}
.y92{bottom:646.485000px;}
.y1e9{bottom:649.185000px;}
.y1a6{bottom:658.725000px;}
.y132{bottom:661.425000px;}
.y65{bottom:663.045000px;}
.y91{bottom:663.765000px;}
.y14b{bottom:669.885000px;}
.y1a5{bottom:672.585000px;}
.y1e8{bottom:676.725000px;}
.y131{bottom:678.705000px;}
.y64{bottom:680.145000px;}
.y90{bottom:681.045000px;}
.y10a{bottom:683.925000px;}
.y14a{bottom:686.445000px;}
.y1e7{bottom:690.585000px;}
.y130{bottom:695.985000px;}
.y63{bottom:697.425000px;}
.y8f{bottom:698.145000px;}
.y149{bottom:700.125000px;}
.y109{bottom:701.205000px;}
.y1e6{bottom:704.445000px;}
.y12f{bottom:713.265000px;}
.y1a4{bottom:713.985000px;}
.y62{bottom:714.705000px;}
.y8e{bottom:715.425000px;}
.y1e5{bottom:718.125000px;}
.y108{bottom:718.485000px;}
.y1a3{bottom:727.845000px;}
.y12e{bottom:730.545000px;}
.y61{bottom:731.985000px;}
.y8d{bottom:732.705000px;}
.y107{bottom:735.765000px;}
.y1a2{bottom:741.525000px;}
.y1e4{bottom:745.845000px;}
.y12d{bottom:747.645000px;}
.y60{bottom:749.265000px;}
.y8c{bottom:749.985000px;}
.y106{bottom:752.865000px;}
.y1a1{bottom:755.385000px;}
.y1e3{bottom:759.525000px;}
.y12c{bottom:764.925000px;}
.y217{bottom:766.185000px;}
.y5f{bottom:766.545000px;}
.y105{bottom:766.905000px;}
.y8b{bottom:767.265000px;}
.y1a0{bottom:769.245000px;}
.y1e2{bottom:773.385000px;}
.y12b{bottom:782.205000px;}
.y19f{bottom:782.925000px;}
.y212{bottom:783.465000px;}
.y5e{bottom:783.645000px;}
.y8a{bottom:784.545000px;}
.y1e1{bottom:787.245000px;}
.yb3{bottom:789.945000px;}
.y19e{bottom:796.785000px;}
.y12a{bottom:799.485000px;}
.y5d{bottom:800.925000px;}
.y89{bottom:801.645000px;}
.yb2{bottom:803.625000px;}
.y11{bottom:806.325000px;}
.y19d{bottom:810.645000px;}
.y1e0{bottom:814.785000px;}
.y129{bottom:816.765000px;}
.y5c{bottom:818.205000px;}
.y88{bottom:818.925000px;}
.y19c{bottom:824.325000px;}
.y1df{bottom:828.645000px;}
.y128{bottom:833.865000px;}
.y5b{bottom:835.485000px;}
.y87{bottom:836.205000px;}
.y19b{bottom:838.185000px;}
.y1de{bottom:842.325000px;}
.y127{bottom:851.145000px;}
.y19a{bottom:852.045000px;}
.y5a{bottom:852.765000px;}
.y86{bottom:853.485000px;}
.y1dd{bottom:856.185000px;}
.y199{bottom:865.725000px;}
.y126{bottom:868.425000px;}
.y59{bottom:869.865000px;}
.y1dc{bottom:870.045000px;}
.y85{bottom:870.765000px;}
.yd2{bottom:876.885000px;}
.y198{bottom:879.585000px;}
.y1db{bottom:883.725000px;}
.y125{bottom:885.705000px;}
.y58{bottom:887.145000px;}
.y84{bottom:887.865000px;}
.yd1{bottom:890.745000px;}
.y197{bottom:893.490000px;}
.y1da{bottom:897.630000px;}
.y124{bottom:903.030000px;}
.y57{bottom:904.470000px;}
.y83{bottom:905.190000px;}
.y196{bottom:907.170000px;}
.yf{bottom:911.490000px;}
.y123{bottom:920.310000px;}
.y195{bottom:921.030000px;}
.y56{bottom:921.750000px;}
.y82{bottom:922.470000px;}
.y1d9{bottom:925.170000px;}
.y194{bottom:934.890000px;}
.y55{bottom:939.030000px;}
.y81{bottom:939.750000px;}
.ye{bottom:943.170000px;}
.y193{bottom:948.570000px;}
.y1d8{bottom:952.890000px;}
.y210{bottom:954.510000px;}
.y122{bottom:954.690000px;}
.y54{bottom:956.310000px;}
.y80{bottom:957.030000px;}
.yd{bottom:960.450000px;}
.y192{bottom:962.430000px;}
.y1d7{bottom:966.570000px;}
.y206{bottom:971.790000px;}
.y121{bottom:971.970000px;}
.y53{bottom:973.410000px;}
.y7f{bottom:974.310000px;}
.y191{bottom:976.290000px;}
.y1d6{bottom:980.430000px;}
.yc{bottom:981.510000px;}
.y120{bottom:988.530000px;}
.y190{bottom:989.970000px;}
.y52{bottom:990.690000px;}
.y7e{bottom:991.410000px;}
.y1d5{bottom:994.290000px;}
.yb{bottom:995.190000px;}
.y11f{bottom:1000.590000px;}
.y18f{bottom:1003.830000px;}
.ya{bottom:1005.270000px;}
.y51{bottom:1007.970000px;}
.y7d{bottom:1008.690000px;}
.y11e{bottom:1014.270000px;}
.y18e{bottom:1017.690000px;}
.y1d4{bottom:1021.830000px;}
.y9{bottom:1022.550000px;}
.y50{bottom:1025.250000px;}
.y7c{bottom:1025.970000px;}
.y11d{bottom:1028.130000px;}
.y18d{bottom:1031.370000px;}
.y1d3{bottom:1035.690000px;}
.y8{bottom:1039.830000px;}
.y11c{bottom:1041.990000px;}
.y4f{bottom:1042.530000px;}
.y7b{bottom:1043.250000px;}
.y18c{bottom:1045.230000px;}
.y1d2{bottom:1049.370000px;}
.y11b{bottom:1055.670000px;}
.y7{bottom:1059.090000px;}
.y4e{bottom:1059.810000px;}
.y7a{bottom:1060.530000px;}
.y1d1{bottom:1063.230000px;}
.y11a{bottom:1069.530000px;}
.y18b{bottom:1072.770000px;}
.y4d{bottom:1076.910000px;}
.y1d0{bottom:1077.090000px;}
.y79{bottom:1077.810000px;}
.y119{bottom:1084.110000px;}
.y6{bottom:1086.630000px;}
.y1cf{bottom:1090.770000px;}
.y4c{bottom:1094.190000px;}
.y78{bottom:1094.910000px;}
.y18a{bottom:1100.490000px;}
.y1ce{bottom:1104.630000px;}
.y4b{bottom:1111.470000px;}
.y4{bottom:1112.190000px;}
.y189{bottom:1114.170000px;}
.y1cd{bottom:1118.490000px;}
.y4a{bottom:1128.750000px;}
.y3{bottom:1129.470000px;}
.y1cc{bottom:1132.170000px;}
.y2{bottom:1146.780000px;}
.y77{bottom:1160.640000px;}
.y49{bottom:1161.000000px;}
.y1{bottom:1164.060000px;}
.h17{height:13.680000px;}
.h20{height:13.716000px;}
.h1f{height:13.860000px;}
.h21{height:13.860150px;}
.h2c{height:15.480000px;}
.h13{height:17.100000px;}
.h15{height:17.280000px;}
.h7{height:26.280000px;}
.h6{height:29.678906px;}
.h1c{height:33.683203px;}
.hd{height:37.705078px;}
.h1d{height:41.400000px;}
.h1e{height:41.436000px;}
.h16{height:41.726953px;}
.h29{height:47.321367px;}
.h14{height:47.344922px;}
.h25{height:47.980898px;}
.h28{height:48.616875px;}
.h19{height:49.583118px;}
.h10{height:52.971680px;}
.hc{height:52.998047px;}
.h2b{height:54.421875px;}
.h1a{height:55.080000px;}
.h1b{height:55.260000px;}
.h22{height:55.296000px;}
.h4{height:58.621992px;}
.h3{height:58.651172px;}
.h2{height:60.226875px;}
.h24{height:61.423863px;}
.h12{height:62.211094px;}
.h18{height:69.156000px;}
.h8{height:70.664062px;}
.h26{height:74.700000px;}
.h27{height:86.220000px;}
.hf{height:87.660000px;}
.h23{height:88.380000px;}
.h5{height:96.508125px;}
.h9{height:104.436000px;}
.h11{height:113.220000px;}
.h2d{height:171.000000px;}
.h2a{height:171.030000px;}
.he{height:302.790000px;}
.hb{height:319.575000px;}
.ha{height:407.955000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:21.240000px;}
.w8{width:29.880000px;}
.w7{width:30.060000px;}
.w18{width:35.640000px;}
.w19{width:35.820000px;}
.w1a{width:35.856000px;}
.w9{width:92.160000px;}
.w10{width:98.280000px;}
.w14{width:103.680000px;}
.w1e{width:144.540000px;}
.wc{width:144.720000px;}
.w17{width:158.070000px;}
.wf{width:168.150000px;}
.wd{width:171.750000px;}
.we{width:187.410000px;}
.w1d{width:198.570000px;}
.w12{width:201.675000px;}
.w3{width:209.010000px;}
.w1b{width:214.770000px;}
.w15{width:237.630000px;}
.w1c{width:244.290000px;}
.wa{width:245.550000px;}
.w13{width:257.250000px;}
.wb{width:329.655000px;}
.w16{width:333.975000px;}
.w5{width:433.155000px;}
.w11{width:458.925000px;}
.w1f{width:530.745000px;}
.w6{width:663.405000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x36{left:6.480000px;}
.x9{left:8.100000px;}
.xb{left:10.620000px;}
.x33{left:12.060000px;}
.x1b{left:17.280000px;}
.x4a{left:18.930000px;}
.x3b{left:21.780000px;}
.x3d{left:24.525000px;}
.x2d{left:26.685000px;}
.x35{left:29.160000px;}
.x1f{left:32.070000px;}
.x30{left:34.590000px;}
.x44{left:58.494000px;}
.x2e{left:60.525000px;}
.x45{left:63.174000px;}
.x3e{left:65.025000px;}
.x31{left:66.090000px;}
.x39{left:67.725000px;}
.x37{left:72.405000px;}
.x34{left:79.065000px;}
.x38{left:80.310000px;}
.x41{left:82.620000px;}
.x42{left:84.285000px;}
.x47{left:87.165000px;}
.x1e{left:88.410000px;}
.x1d{left:91.485000px;}
.x40{left:103.140000px;}
.xd{left:106.560000px;}
.x43{left:109.980000px;}
.x1a{left:119.556000px;}
.x2b{left:121.176000px;}
.x8{left:125.496000px;}
.x49{left:126.570000px;}
.x1{left:127.655987px;}
.x28{left:133.775987px;}
.x5b{left:136.254000px;}
.x25{left:143.675987px;}
.x12{left:154.649987px;}
.x3c{left:155.745000px;}
.x5a{left:159.689987px;}
.x2{left:174.809987px;}
.x16{left:177.869987px;}
.xf{left:181.649987px;}
.x7{left:183.089987px;}
.x21{left:197.309987px;}
.x23{left:201.269987px;}
.x5{left:203.069987px;}
.x3{left:205.589987px;}
.x2a{left:209.189987px;}
.x1c{left:211.710000px;}
.x46{left:223.230000px;}
.x18{left:255.089987px;}
.x11{left:259.769987px;}
.x5c{left:264.090000px;}
.x2c{left:265.890000px;}
.x13{left:277.049987px;}
.x4b{left:286.095000px;}
.x4c{left:321.735000px;}
.xa{left:334.515000px;}
.x6{left:336.314987px;}
.x26{left:341.894987px;}
.x58{left:343.155000px;}
.x29{left:347.114987px;}
.xc{left:355.755000px;}
.x4d{left:357.555000px;}
.x19{left:358.994987px;}
.x3a{left:373.754987px;}
.x4e{left:393.195000px;}
.xe{left:425.055000px;}
.x4f{left:429.015000px;}
.x2f{left:437.655000px;}
.x4{left:457.274987px;}
.x48{left:460.875000px;}
.x50{left:464.655000px;}
.x3f{left:478.545000px;}
.x51{left:500.505000px;}
.x52{left:536.145000px;}
.x53{left:571.965000px;}
.x59{left:587.445000px;}
.x54{left:607.605000px;}
.x32{left:625.065000px;}
.x15{left:642.884987px;}
.x55{left:679.110000px;}
.x20{left:684.509987px;}
.x27{left:686.129987px;}
.x10{left:687.929987px;}
.x17{left:690.089987px;}
.x24{left:704.849987px;}
.x56{left:714.930000px;}
.x22{left:729.509987px;}
.x57{left:750.750000px;}
.x14{left:756.870000px;}
@media print{
.v5{vertical-align:-61.440000pt;}
.v4{vertical-align:-58.880000pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls2c{letter-spacing:-1.120000pt;}
.lsc{letter-spacing:-1.050667pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls25{letter-spacing:-0.441067pt;}
.ls29{letter-spacing:-0.400533pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls2b{letter-spacing:-0.239467pt;}
.ls15{letter-spacing:-0.198933pt;}
.ls30{letter-spacing:-0.192000pt;}
.ls20{letter-spacing:-0.094933pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls10{letter-spacing:-0.040320pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.007680pt;}
.ls2{letter-spacing:0.030080pt;}
.ls2a{letter-spacing:0.040320pt;}
.ls1b{letter-spacing:0.047360pt;}
.ls12{letter-spacing:0.094933pt;}
.lsa{letter-spacing:0.136320pt;}
.ls1{letter-spacing:0.160000pt;}
.ls23{letter-spacing:0.161280pt;}
.ls21{letter-spacing:0.183467pt;}
.ls1f{letter-spacing:0.183680pt;}
.ls6{letter-spacing:0.230933pt;}
.lsb{letter-spacing:0.231040pt;}
.ls24{letter-spacing:0.239467pt;}
.ls1d{letter-spacing:0.272640pt;}
.ls0{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.426667pt;}
.ls22{letter-spacing:4.000000pt;}
.ls2e{letter-spacing:4.556800pt;}
.ls18{letter-spacing:5.072640pt;}
.ls2f{letter-spacing:5.196800pt;}
.ls17{letter-spacing:5.712640pt;}
.ls1c{letter-spacing:5.920000pt;}
.ls1e{letter-spacing:9.120000pt;}
.ls28{letter-spacing:10.956800pt;}
.lsf{letter-spacing:11.759360pt;}
.ls16{letter-spacing:14.032640pt;}
.lse{letter-spacing:32.879360pt;}
.ls2d{letter-spacing:52.000000pt;}
.ls26{letter-spacing:58.400000pt;}
.ls3{letter-spacing:58.811307pt;}
.ls27{letter-spacing:59.040000pt;}
.ls9{letter-spacing:99.978667pt;}
.ls14{letter-spacing:149.898667pt;}
.ls13{letter-spacing:175.498667pt;}
.ls19{letter-spacing:178.058667pt;}
.lsd{letter-spacing:309.898667pt;}
.ws11{word-spacing:-53.120000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.463467pt;}
.wsc{word-spacing:-13.374933pt;}
.wsf{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.wse{word-spacing:-13.185067pt;}
.ws0{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.320000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws18{word-spacing:-11.808000pt;}
.wsa{word-spacing:-11.040000pt;}
.ws13{word-spacing:-10.880000pt;}
.ws16{word-spacing:-10.760320pt;}
.ws9{word-spacing:-10.720000pt;}
.wsb{word-spacing:-10.679680pt;}
.wsd{word-spacing:-10.521067pt;}
.ws17{word-spacing:-10.480533pt;}
.ws12{word-spacing:-10.400000pt;}
.ws15{word-spacing:-10.278933pt;}
.ws14{word-spacing:-10.240000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws4{word-spacing:-6.720000pt;}
.ws8{word-spacing:0.000000pt;}
._24{margin-left:-3.262293pt;}
._20{margin-left:-1.877120pt;}
._1{margin-left:-0.956160pt;}
._0{width:1.168640pt;}
._2{width:2.306133pt;}
._c{width:3.245227pt;}
._7{width:4.224000pt;}
._18{width:5.177600pt;}
._4{width:6.080000pt;}
._9{width:7.040000pt;}
._6{width:8.736000pt;}
._8{width:10.368000pt;}
._17{width:12.111360pt;}
._23{width:13.141760pt;}
._11{width:14.256000pt;}
._b{width:15.264000pt;}
._a{width:16.176000pt;}
._1b{width:17.070080pt;}
._16{width:18.040320pt;}
._15{width:19.392000pt;}
._1f{width:21.141760pt;}
._1e{width:22.044800pt;}
._21{width:23.390720pt;}
._22{width:24.452480pt;}
._e{width:26.378667pt;}
._d{width:27.312000pt;}
._12{width:28.512000pt;}
._26{width:29.783680pt;}
._14{width:30.912000pt;}
._13{width:32.016000pt;}
._10{width:32.968320pt;}
._f{width:33.936000pt;}
._25{width:44.551040pt;}
._29{width:52.278400pt;}
._27{width:53.180587pt;}
._2a{width:54.256000pt;}
._28{width:59.564160pt;}
._5{width:138.400000pt;}
._1c{width:452.521387pt;}
._19{width:653.920000pt;}
._1d{width:769.499307pt;}
._1a{width:953.866667pt;}
._3{width:979.477333pt;}
.fs3{font-size:26.880000pt;}
.fs2{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs7{font-size:56.320000pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yda{bottom:2.240000pt;}
.y2c{bottom:2.560000pt;}
.y10{bottom:2.880000pt;}
.y16d{bottom:3.200000pt;}
.y16a{bottom:3.360000pt;}
.y211{bottom:4.160000pt;}
.y34{bottom:8.000000pt;}
.y3a{bottom:10.880000pt;}
.ye3{bottom:14.400000pt;}
.ydf{bottom:14.560000pt;}
.ye9{bottom:14.592000pt;}
.y2b{bottom:16.320000pt;}
.y15{bottom:18.240000pt;}
.y39{bottom:26.240000pt;}
.ye2{bottom:26.720000pt;}
.ye8{bottom:26.746667pt;}
.yde{bottom:26.920000pt;}
.y152{bottom:29.280000pt;}
.y20f{bottom:29.440000pt;}
.y2a{bottom:30.080000pt;}
.y173{bottom:33.440000pt;}
.y14{bottom:33.600000pt;}
.ye1{bottom:39.040000pt;}
.y14d{bottom:39.066667pt;}
.ydd{bottom:39.080000pt;}
.y151{bottom:41.440000pt;}
.y38{bottom:41.600000pt;}
.y20e{bottom:43.360000pt;}
.y29{bottom:44.026667pt;}
.y172{bottom:48.800000pt;}
.y13{bottom:48.960000pt;}
.ydc{bottom:51.400000pt;}
.y150{bottom:53.760000pt;}
.y154{bottom:56.320000pt;}
.y37{bottom:56.960000pt;}
.y20d{bottom:57.120000pt;}
.y204{bottom:57.146667pt;}
.y28{bottom:57.786667pt;}
.y33{bottom:58.720000pt;}
.y171{bottom:64.160000pt;}
.y14f{bottom:68.480000pt;}
.y20c{bottom:70.880000pt;}
.y21b{bottom:70.906667pt;}
.y203{bottom:71.066667pt;}
.y27{bottom:71.546667pt;}
.y12{bottom:72.320000pt;}
.y5{bottom:78.400000pt;}
.y36{bottom:80.160000pt;}
.y20b{bottom:84.640000pt;}
.y202{bottom:84.826667pt;}
.y26{bottom:85.306667pt;}
.y205{bottom:96.160000pt;}
.y20a{bottom:98.560000pt;}
.y201{bottom:98.586667pt;}
.y216{bottom:98.600000pt;}
.y25{bottom:99.226667pt;}
.yea{bottom:100.160000pt;}
.y188{bottom:100.320000pt;}
.yb1{bottom:101.760000pt;}
.y104{bottom:108.480000pt;}
.y1fd{bottom:109.920000pt;}
.y118{bottom:110.560000pt;}
.ye7{bottom:110.880000pt;}
.y209{bottom:112.320000pt;}
.y200{bottom:112.346667pt;}
.y215{bottom:112.360000pt;}
.y24{bottom:112.986667pt;}
.yfd{bottom:113.920000pt;}
.y166{bottom:114.240000pt;}
.yb0{bottom:114.560000pt;}
.y187{bottom:115.680000pt;}
.y76{bottom:121.312000pt;}
.yd0{bottom:123.552000pt;}
.y103{bottom:123.872000pt;}
.y117{bottom:125.952000pt;}
.y208{bottom:126.080000pt;}
.y21a{bottom:126.106667pt;}
.y214{bottom:126.120000pt;}
.y1ff{bottom:126.266667pt;}
.y23{bottom:126.746667pt;}
.yfc{bottom:129.312000pt;}
.y165{bottom:129.632000pt;}
.yaf{bottom:129.952000pt;}
.y186{bottom:131.072000pt;}
.y1cb{bottom:131.712000pt;}
.y48{bottom:131.872000pt;}
.y75{bottom:133.626667pt;}
.y102{bottom:136.346667pt;}
.ycf{bottom:138.906667pt;}
.y207{bottom:139.840000pt;}
.y219{bottom:139.866667pt;}
.y213{bottom:139.880000pt;}
.y1fe{bottom:140.026667pt;}
.y22{bottom:140.506667pt;}
.y116{bottom:141.146667pt;}
.y148{bottom:141.306667pt;}
.y1ca{bottom:144.026667pt;}
.yfb{bottom:144.666667pt;}
.y164{bottom:144.986667pt;}
.yae{bottom:145.306667pt;}
.y74{bottom:145.786667pt;}
.y185{bottom:146.266667pt;}
.y47{bottom:147.226667pt;}
.ye6{bottom:147.706667pt;}
.yce{bottom:154.266667pt;}
.y21{bottom:154.426667pt;}
.y1c9{bottom:156.186667pt;}
.y115{bottom:156.506667pt;}
.y147{bottom:156.666667pt;}
.y73{bottom:158.106667pt;}
.yfa{bottom:159.866667pt;}
.y163{bottom:160.186667pt;}
.yad{bottom:160.666667pt;}
.y184{bottom:160.986667pt;}
.y46{bottom:162.586667pt;}
.y32{bottom:164.026667pt;}
.y20{bottom:168.186667pt;}
.y1c8{bottom:168.506667pt;}
.ycd{bottom:169.626667pt;}
.y72{bottom:171.066667pt;}
.y114{bottom:171.866667pt;}
.y183{bottom:173.306667pt;}
.yf9{bottom:175.226667pt;}
.y162{bottom:175.546667pt;}
.yac{bottom:175.866667pt;}
.y45{bottom:177.786667pt;}
.y31{bottom:179.386667pt;}
.y1c7{bottom:180.826667pt;}
.y1f{bottom:181.946667pt;}
.ye5{bottom:184.506667pt;}
.ycc{bottom:184.986667pt;}
.y71{bottom:185.626667pt;}
.y182{bottom:186.266667pt;}
.y113{bottom:187.226667pt;}
.yf8{bottom:190.586667pt;}
.y161{bottom:190.906667pt;}
.yab{bottom:191.226667pt;}
.y1c6{bottom:192.986667pt;}
.y44{bottom:193.146667pt;}
.y30{bottom:194.746667pt;}
.y1e{bottom:195.706667pt;}
.ycb{bottom:200.186667pt;}
.y181{bottom:201.466667pt;}
.y112{bottom:202.586667pt;}
.y1c5{bottom:205.306667pt;}
.yf7{bottom:205.946667pt;}
.y160{bottom:206.266667pt;}
.yaa{bottom:206.586667pt;}
.y43{bottom:208.506667pt;}
.y1d{bottom:209.626667pt;}
.y2f{bottom:210.106667pt;}
.yca{bottom:215.546667pt;}
.y180{bottom:216.826667pt;}
.y1c4{bottom:217.626667pt;}
.y111{bottom:217.946667pt;}
.ye4{bottom:221.306667pt;}
.y15f{bottom:221.626667pt;}
.ya9{bottom:221.946667pt;}
.y1c{bottom:223.386667pt;}
.y42{bottom:223.866667pt;}
.y2e{bottom:225.466667pt;}
.y1c3{bottom:229.786667pt;}
.yc9{bottom:230.906667pt;}
.y17f{bottom:232.186667pt;}
.y110{bottom:233.146667pt;}
.y146{bottom:233.306667pt;}
.yf6{bottom:236.666667pt;}
.y15e{bottom:236.986667pt;}
.y1b{bottom:237.146667pt;}
.ya8{bottom:237.306667pt;}
.y41{bottom:239.226667pt;}
.y1c2{bottom:242.106667pt;}
.yc8{bottom:246.266667pt;}
.y17e{bottom:246.906667pt;}
.y10f{bottom:248.506667pt;}
.y2d{bottom:248.666667pt;}
.y1a{bottom:250.906667pt;}
.yf5{bottom:251.866667pt;}
.y15d{bottom:252.186667pt;}
.ya7{bottom:252.666667pt;}
.y1c1{bottom:254.426667pt;}
.y40{bottom:254.586667pt;}
.y17d{bottom:259.226667pt;}
.yc7{bottom:261.626667pt;}
.y10e{bottom:263.866667pt;}
.y19{bottom:264.826667pt;}
.y1c0{bottom:266.586667pt;}
.yf4{bottom:267.226667pt;}
.y15c{bottom:267.546667pt;}
.ya6{bottom:267.866667pt;}
.y3f{bottom:269.786667pt;}
.ye0{bottom:270.426667pt;}
.y17c{bottom:272.026667pt;}
.yc6{bottom:276.986667pt;}
.y145{bottom:278.586667pt;}
.y1bf{bottom:278.906667pt;}
.y10d{bottom:279.226667pt;}
.y1fc{bottom:280.186667pt;}
.yf3{bottom:282.586667pt;}
.y15b{bottom:282.906667pt;}
.ya5{bottom:283.226667pt;}
.y3e{bottom:285.146667pt;}
.y17b{bottom:287.386667pt;}
.y144{bottom:289.306667pt;}
.y1be{bottom:291.226667pt;}
.yc5{bottom:292.186667pt;}
.y10c{bottom:294.586667pt;}
.y1fb{bottom:294.906667pt;}
.yf2{bottom:297.946667pt;}
.y15a{bottom:298.266667pt;}
.ya4{bottom:298.586667pt;}
.y3d{bottom:300.506667pt;}
.y143{bottom:301.626667pt;}
.y17a{bottom:302.106667pt;}
.y1bd{bottom:303.386667pt;}
.y10b{bottom:307.066667pt;}
.y1fa{bottom:307.226667pt;}
.yc4{bottom:307.546667pt;}
.yf1{bottom:313.306667pt;}
.y159{bottom:313.626667pt;}
.y142{bottom:313.786667pt;}
.ya3{bottom:313.946667pt;}
.y179{bottom:314.426667pt;}
.y1bc{bottom:315.706667pt;}
.y3c{bottom:315.866667pt;}
.ydb{bottom:319.386667pt;}
.yc3{bottom:322.906667pt;}
.y141{bottom:326.106667pt;}
.y178{bottom:327.226667pt;}
.y1bb{bottom:328.026667pt;}
.yf0{bottom:328.666667pt;}
.y158{bottom:328.826667pt;}
.ya2{bottom:329.306667pt;}
.y3b{bottom:331.226667pt;}
.y1f9{bottom:331.706667pt;}
.yc2{bottom:338.266667pt;}
.y140{bottom:338.426667pt;}
.y1ba{bottom:340.186667pt;}
.y17{bottom:342.106667pt;}
.y177{bottom:342.586667pt;}
.yef{bottom:343.866667pt;}
.y1f8{bottom:344.026667pt;}
.y157{bottom:344.186667pt;}
.ya1{bottom:344.706667pt;}
.y35{bottom:345.666667pt;}
.y13e{bottom:351.426667pt;}
.y1b9{bottom:352.546667pt;}
.yc1{bottom:353.666667pt;}
.y1f7{bottom:356.226667pt;}
.y176{bottom:357.346667pt;}
.yee{bottom:359.266667pt;}
.ya0{bottom:359.906667pt;}
.y1b8{bottom:364.866667pt;}
.y1f6{bottom:368.546667pt;}
.yc0{bottom:369.026667pt;}
.y175{bottom:369.666667pt;}
.y156{bottom:374.306667pt;}
.yed{bottom:374.626667pt;}
.y9f{bottom:375.266667pt;}
.y1b7{bottom:377.026667pt;}
.y1f5{bottom:380.866667pt;}
.yd9{bottom:381.506667pt;}
.y174{bottom:381.826667pt;}
.ybf{bottom:384.226667pt;}
.y155{bottom:386.626667pt;}
.y13f{bottom:388.226667pt;}
.y1b6{bottom:389.346667pt;}
.yec{bottom:389.986667pt;}
.y9e{bottom:390.626667pt;}
.y170{bottom:391.906667pt;}
.y1f4{bottom:393.026667pt;}
.y153{bottom:397.186667pt;}
.yd8{bottom:397.346667pt;}
.ybe{bottom:399.586667pt;}
.y1b5{bottom:401.666667pt;}
.y13d{bottom:403.906667pt;}
.yeb{bottom:405.346667pt;}
.y9d{bottom:405.986667pt;}
.y1b4{bottom:413.826667pt;}
.ybd{bottom:414.946667pt;}
.y1f3{bottom:417.666667pt;}
.y70{bottom:420.546667pt;}
.y9c{bottom:421.346667pt;}
.y1b3{bottom:426.146667pt;}
.yd7{bottom:427.266667pt;}
.y1f2{bottom:429.826667pt;}
.ybc{bottom:430.306667pt;}
.y13c{bottom:434.626667pt;}
.y6f{bottom:435.906667pt;}
.y9b{bottom:436.546667pt;}
.y1b2{bottom:438.306667pt;}
.yd6{bottom:439.586667pt;}
.y1f1{bottom:442.146667pt;}
.ybb{bottom:445.666667pt;}
.y16{bottom:446.946667pt;}
.y13b{bottom:449.986667pt;}
.y1b1{bottom:450.626667pt;}
.y6e{bottom:451.266667pt;}
.y9a{bottom:451.906667pt;}
.yd5{bottom:452.386667pt;}
.y1f0{bottom:454.306667pt;}
.y101{bottom:457.186667pt;}
.yba{bottom:460.866667pt;}
.y1b0{bottom:462.946667pt;}
.y14e{bottom:463.586667pt;}
.y13a{bottom:465.346667pt;}
.y6d{bottom:466.626667pt;}
.yd4{bottom:467.106667pt;}
.y99{bottom:467.266667pt;}
.y16f{bottom:470.786667pt;}
.y100{bottom:472.546667pt;}
.y1af{bottom:475.106667pt;}
.yb9{bottom:476.226667pt;}
.yd3{bottom:477.186667pt;}
.y1ef{bottom:478.946667pt;}
.y139{bottom:480.546667pt;}
.y16e{bottom:481.506667pt;}
.y6c{bottom:481.986667pt;}
.y98{bottom:482.626667pt;}
.y1ae{bottom:487.426667pt;}
.yff{bottom:487.906667pt;}
.yb8{bottom:490.946667pt;}
.y1ee{bottom:491.106667pt;}
.y138{bottom:495.906667pt;}
.y16c{bottom:496.866667pt;}
.y6b{bottom:497.346667pt;}
.y97{bottom:497.986667pt;}
.y1ad{bottom:499.746667pt;}
.yb7{bottom:503.266667pt;}
.y1ed{bottom:503.426667pt;}
.y137{bottom:511.266667pt;}
.y1ac{bottom:511.906667pt;}
.y16b{bottom:512.066667pt;}
.y6a{bottom:512.546667pt;}
.y96{bottom:513.346667pt;}
.yfe{bottom:515.746667pt;}
.yb6{bottom:516.066667pt;}
.y21c{bottom:516.546667pt;}
.y1ab{bottom:524.226667pt;}
.y18{bottom:525.506667pt;}
.y136{bottom:526.626667pt;}
.y169{bottom:527.426667pt;}
.y69{bottom:527.906667pt;}
.y95{bottom:528.546667pt;}
.y218{bottom:529.026667pt;}
.yb5{bottom:530.786667pt;}
.y1aa{bottom:536.546667pt;}
.y1ec{bottom:540.226667pt;}
.yb4{bottom:540.866667pt;}
.y135{bottom:541.986667pt;}
.y14c{bottom:542.786667pt;}
.y68{bottom:543.266667pt;}
.y168{bottom:543.426667pt;}
.y94{bottom:543.906667pt;}
.y1a9{bottom:548.706667pt;}
.y1eb{bottom:552.546667pt;}
.y134{bottom:557.346667pt;}
.y67{bottom:558.626667pt;}
.y93{bottom:559.266667pt;}
.y1a8{bottom:561.026667pt;}
.y167{bottom:561.666667pt;}
.y1ea{bottom:564.706667pt;}
.y133{bottom:572.573333pt;}
.y1a7{bottom:573.373333pt;}
.y66{bottom:574.013333pt;}
.y92{bottom:574.653333pt;}
.y1e9{bottom:577.053333pt;}
.y1a6{bottom:585.533333pt;}
.y132{bottom:587.933333pt;}
.y65{bottom:589.373333pt;}
.y91{bottom:590.013333pt;}
.y14b{bottom:595.453333pt;}
.y1a5{bottom:597.853333pt;}
.y1e8{bottom:601.533333pt;}
.y131{bottom:603.293333pt;}
.y64{bottom:604.573333pt;}
.y90{bottom:605.373333pt;}
.y10a{bottom:607.933333pt;}
.y14a{bottom:610.173333pt;}
.y1e7{bottom:613.853333pt;}
.y130{bottom:618.653333pt;}
.y63{bottom:619.933333pt;}
.y8f{bottom:620.573333pt;}
.y149{bottom:622.333333pt;}
.y109{bottom:623.293333pt;}
.y1e6{bottom:626.173333pt;}
.y12f{bottom:634.013333pt;}
.y1a4{bottom:634.653333pt;}
.y62{bottom:635.293333pt;}
.y8e{bottom:635.933333pt;}
.y1e5{bottom:638.333333pt;}
.y108{bottom:638.653333pt;}
.y1a3{bottom:646.973333pt;}
.y12e{bottom:649.373333pt;}
.y61{bottom:650.653333pt;}
.y8d{bottom:651.293333pt;}
.y107{bottom:654.013333pt;}
.y1a2{bottom:659.133333pt;}
.y1e4{bottom:662.973333pt;}
.y12d{bottom:664.573333pt;}
.y60{bottom:666.013333pt;}
.y8c{bottom:666.653333pt;}
.y106{bottom:669.213333pt;}
.y1a1{bottom:671.453333pt;}
.y1e3{bottom:675.133333pt;}
.y12c{bottom:679.933333pt;}
.y217{bottom:681.053333pt;}
.y5f{bottom:681.373333pt;}
.y105{bottom:681.693333pt;}
.y8b{bottom:682.013333pt;}
.y1a0{bottom:683.773333pt;}
.y1e2{bottom:687.453333pt;}
.y12b{bottom:695.293333pt;}
.y19f{bottom:695.933333pt;}
.y212{bottom:696.413333pt;}
.y5e{bottom:696.573333pt;}
.y8a{bottom:697.373333pt;}
.y1e1{bottom:699.773333pt;}
.yb3{bottom:702.173333pt;}
.y19e{bottom:708.253333pt;}
.y12a{bottom:710.653333pt;}
.y5d{bottom:711.933333pt;}
.y89{bottom:712.573333pt;}
.yb2{bottom:714.333333pt;}
.y11{bottom:716.733333pt;}
.y19d{bottom:720.573333pt;}
.y1e0{bottom:724.253333pt;}
.y129{bottom:726.013333pt;}
.y5c{bottom:727.293333pt;}
.y88{bottom:727.933333pt;}
.y19c{bottom:732.733333pt;}
.y1df{bottom:736.573333pt;}
.y128{bottom:741.213333pt;}
.y5b{bottom:742.653333pt;}
.y87{bottom:743.293333pt;}
.y19b{bottom:745.053333pt;}
.y1de{bottom:748.733333pt;}
.y127{bottom:756.573333pt;}
.y19a{bottom:757.373333pt;}
.y5a{bottom:758.013333pt;}
.y86{bottom:758.653333pt;}
.y1dd{bottom:761.053333pt;}
.y199{bottom:769.533333pt;}
.y126{bottom:771.933333pt;}
.y59{bottom:773.213333pt;}
.y1dc{bottom:773.373333pt;}
.y85{bottom:774.013333pt;}
.yd2{bottom:779.453333pt;}
.y198{bottom:781.853333pt;}
.y1db{bottom:785.533333pt;}
.y125{bottom:787.293333pt;}
.y58{bottom:788.573333pt;}
.y84{bottom:789.213333pt;}
.yd1{bottom:791.773333pt;}
.y197{bottom:794.213333pt;}
.y1da{bottom:797.893333pt;}
.y124{bottom:802.693333pt;}
.y57{bottom:803.973333pt;}
.y83{bottom:804.613333pt;}
.y196{bottom:806.373333pt;}
.yf{bottom:810.213333pt;}
.y123{bottom:818.053333pt;}
.y195{bottom:818.693333pt;}
.y56{bottom:819.333333pt;}
.y82{bottom:819.973333pt;}
.y1d9{bottom:822.373333pt;}
.y194{bottom:831.013333pt;}
.y55{bottom:834.693333pt;}
.y81{bottom:835.333333pt;}
.ye{bottom:838.373333pt;}
.y193{bottom:843.173333pt;}
.y1d8{bottom:847.013333pt;}
.y210{bottom:848.453333pt;}
.y122{bottom:848.613333pt;}
.y54{bottom:850.053333pt;}
.y80{bottom:850.693333pt;}
.yd{bottom:853.733333pt;}
.y192{bottom:855.493333pt;}
.y1d7{bottom:859.173333pt;}
.y206{bottom:863.813333pt;}
.y121{bottom:863.973333pt;}
.y53{bottom:865.253333pt;}
.y7f{bottom:866.053333pt;}
.y191{bottom:867.813333pt;}
.y1d6{bottom:871.493333pt;}
.yc{bottom:872.453333pt;}
.y120{bottom:878.693333pt;}
.y190{bottom:879.973333pt;}
.y52{bottom:880.613333pt;}
.y7e{bottom:881.253333pt;}
.y1d5{bottom:883.813333pt;}
.yb{bottom:884.613333pt;}
.y11f{bottom:889.413333pt;}
.y18f{bottom:892.293333pt;}
.ya{bottom:893.573333pt;}
.y51{bottom:895.973333pt;}
.y7d{bottom:896.613333pt;}
.y11e{bottom:901.573333pt;}
.y18e{bottom:904.613333pt;}
.y1d4{bottom:908.293333pt;}
.y9{bottom:908.933333pt;}
.y50{bottom:911.333333pt;}
.y7c{bottom:911.973333pt;}
.y11d{bottom:913.893333pt;}
.y18d{bottom:916.773333pt;}
.y1d3{bottom:920.613333pt;}
.y8{bottom:924.293333pt;}
.y11c{bottom:926.213333pt;}
.y4f{bottom:926.693333pt;}
.y7b{bottom:927.333333pt;}
.y18c{bottom:929.093333pt;}
.y1d2{bottom:932.773333pt;}
.y11b{bottom:938.373333pt;}
.y7{bottom:941.413333pt;}
.y4e{bottom:942.053333pt;}
.y7a{bottom:942.693333pt;}
.y1d1{bottom:945.093333pt;}
.y11a{bottom:950.693333pt;}
.y18b{bottom:953.573333pt;}
.y4d{bottom:957.253333pt;}
.y1d0{bottom:957.413333pt;}
.y79{bottom:958.053333pt;}
.y119{bottom:963.653333pt;}
.y6{bottom:965.893333pt;}
.y1cf{bottom:969.573333pt;}
.y4c{bottom:972.613333pt;}
.y78{bottom:973.253333pt;}
.y18a{bottom:978.213333pt;}
.y1ce{bottom:981.893333pt;}
.y4b{bottom:987.973333pt;}
.y4{bottom:988.613333pt;}
.y189{bottom:990.373333pt;}
.y1cd{bottom:994.213333pt;}
.y4a{bottom:1003.333333pt;}
.y3{bottom:1003.973333pt;}
.y1cc{bottom:1006.373333pt;}
.y2{bottom:1019.360000pt;}
.y77{bottom:1031.680000pt;}
.y49{bottom:1032.000000pt;}
.y1{bottom:1034.720000pt;}
.h17{height:12.160000pt;}
.h20{height:12.192000pt;}
.h1f{height:12.320000pt;}
.h21{height:12.320133pt;}
.h2c{height:13.760000pt;}
.h13{height:15.200000pt;}
.h15{height:15.360000pt;}
.h7{height:23.360000pt;}
.h6{height:26.381250pt;}
.h1c{height:29.940625pt;}
.hd{height:33.515625pt;}
.h1d{height:36.800000pt;}
.h1e{height:36.832000pt;}
.h16{height:37.090625pt;}
.h29{height:42.063437pt;}
.h14{height:42.084375pt;}
.h25{height:42.649687pt;}
.h28{height:43.215000pt;}
.h19{height:44.073883pt;}
.h10{height:47.085938pt;}
.hc{height:47.109375pt;}
.h2b{height:48.375000pt;}
.h1a{height:48.960000pt;}
.h1b{height:49.120000pt;}
.h22{height:49.152000pt;}
.h4{height:52.108438pt;}
.h3{height:52.134375pt;}
.h2{height:53.535000pt;}
.h24{height:54.598989pt;}
.h12{height:55.298750pt;}
.h18{height:61.472000pt;}
.h8{height:62.812500pt;}
.h26{height:66.400000pt;}
.h27{height:76.640000pt;}
.hf{height:77.920000pt;}
.h23{height:78.560000pt;}
.h5{height:85.785000pt;}
.h9{height:92.832000pt;}
.h11{height:100.640000pt;}
.h2d{height:152.000000pt;}
.h2a{height:152.026667pt;}
.he{height:269.146667pt;}
.hb{height:284.066667pt;}
.ha{height:362.626667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:18.880000pt;}
.w8{width:26.560000pt;}
.w7{width:26.720000pt;}
.w18{width:31.680000pt;}
.w19{width:31.840000pt;}
.w1a{width:31.872000pt;}
.w9{width:81.920000pt;}
.w10{width:87.360000pt;}
.w14{width:92.160000pt;}
.w1e{width:128.480000pt;}
.wc{width:128.640000pt;}
.w17{width:140.506667pt;}
.wf{width:149.466667pt;}
.wd{width:152.666667pt;}
.we{width:166.586667pt;}
.w1d{width:176.506667pt;}
.w12{width:179.266667pt;}
.w3{width:185.786667pt;}
.w1b{width:190.906667pt;}
.w15{width:211.226667pt;}
.w1c{width:217.146667pt;}
.wa{width:218.266667pt;}
.w13{width:228.666667pt;}
.wb{width:293.026667pt;}
.w16{width:296.866667pt;}
.w5{width:385.026667pt;}
.w11{width:407.933333pt;}
.w1f{width:471.773333pt;}
.w6{width:589.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x36{left:5.760000pt;}
.x9{left:7.200000pt;}
.xb{left:9.440000pt;}
.x33{left:10.720000pt;}
.x1b{left:15.360000pt;}
.x4a{left:16.826667pt;}
.x3b{left:19.360000pt;}
.x3d{left:21.800000pt;}
.x2d{left:23.720000pt;}
.x35{left:25.920000pt;}
.x1f{left:28.506667pt;}
.x30{left:30.746667pt;}
.x44{left:51.994667pt;}
.x2e{left:53.800000pt;}
.x45{left:56.154667pt;}
.x3e{left:57.800000pt;}
.x31{left:58.746667pt;}
.x39{left:60.200000pt;}
.x37{left:64.360000pt;}
.x34{left:70.280000pt;}
.x38{left:71.386667pt;}
.x41{left:73.440000pt;}
.x42{left:74.920000pt;}
.x47{left:77.480000pt;}
.x1e{left:78.586667pt;}
.x1d{left:81.320000pt;}
.x40{left:91.680000pt;}
.xd{left:94.720000pt;}
.x43{left:97.760000pt;}
.x1a{left:106.272000pt;}
.x2b{left:107.712000pt;}
.x8{left:111.552000pt;}
.x49{left:112.506667pt;}
.x1{left:113.471988pt;}
.x28{left:118.911988pt;}
.x5b{left:121.114667pt;}
.x25{left:127.711988pt;}
.x12{left:137.466655pt;}
.x3c{left:138.440000pt;}
.x5a{left:141.946655pt;}
.x2{left:155.386655pt;}
.x16{left:158.106655pt;}
.xf{left:161.466655pt;}
.x7{left:162.746655pt;}
.x21{left:175.386655pt;}
.x23{left:178.906655pt;}
.x5{left:180.506655pt;}
.x3{left:182.746655pt;}
.x2a{left:185.946655pt;}
.x1c{left:188.186667pt;}
.x46{left:198.426667pt;}
.x18{left:226.746655pt;}
.x11{left:230.906655pt;}
.x5c{left:234.746667pt;}
.x2c{left:236.346667pt;}
.x13{left:246.266655pt;}
.x4b{left:254.306667pt;}
.x4c{left:285.986667pt;}
.xa{left:297.346667pt;}
.x6{left:298.946655pt;}
.x26{left:303.906655pt;}
.x58{left:305.026667pt;}
.x29{left:308.546655pt;}
.xc{left:316.226667pt;}
.x4d{left:317.826667pt;}
.x19{left:319.106655pt;}
.x3a{left:332.226655pt;}
.x4e{left:349.506667pt;}
.xe{left:377.826667pt;}
.x4f{left:381.346667pt;}
.x2f{left:389.026667pt;}
.x4{left:406.466655pt;}
.x48{left:409.666667pt;}
.x50{left:413.026667pt;}
.x3f{left:425.373333pt;}
.x51{left:444.893333pt;}
.x52{left:476.573333pt;}
.x53{left:508.413333pt;}
.x59{left:522.173333pt;}
.x54{left:540.093333pt;}
.x32{left:555.613333pt;}
.x15{left:571.453322pt;}
.x55{left:603.653333pt;}
.x20{left:608.453322pt;}
.x27{left:609.893322pt;}
.x10{left:611.493322pt;}
.x17{left:613.413322pt;}
.x24{left:626.533322pt;}
.x56{left:635.493333pt;}
.x22{left:648.453322pt;}
.x57{left:667.333333pt;}
.x14{left:672.773333pt;}
}




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