
    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_1c4e479594e19ff683ddbd21.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_ed68ac8f9609433719215ad2.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_091971630243ef516b5093cb.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_fc87f6d59adddd16b4c905ec.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7eb7168a10d1fdc4cfa55187.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_69b505c2f76f8c3c4aa267b2.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_aaaa9e1a5a06fae013d4cfd4.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_f2c8ae2f53f41cbe6ff1cf0c.woff2')format("woff");}.ffa{font-family:ffa;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);}
.v1{vertical-align:-68.400000px;}
.v3{vertical-align:-65.700000px;}
.v2{vertical-align:-55.440000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:18.000000px;}
.v4{vertical-align:20.880000px;}
.ls19{letter-spacing:-0.774000px;}
.lsb{letter-spacing:-0.666000px;}
.lsf{letter-spacing:-0.612000px;}
.ls16{letter-spacing:-0.584400px;}
.ls8{letter-spacing:-0.540000px;}
.ls22{letter-spacing:-0.450600px;}
.ls5{letter-spacing:-0.360000px;}
.ls23{letter-spacing:-0.269400px;}
.ls20{letter-spacing:-0.106800px;}
.lsc{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.008640px;}
.ls2{letter-spacing:0.033840px;}
.ls15{letter-spacing:0.053280px;}
.ls7{letter-spacing:0.106800px;}
.lsd{letter-spacing:0.153360px;}
.ls1{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.181200px;}
.ls21{letter-spacing:0.206400px;}
.ls1f{letter-spacing:0.206640px;}
.ls2a{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.259800px;}
.ls24{letter-spacing:0.269400px;}
.ls1d{letter-spacing:0.306720px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.900000px;}
.ls29{letter-spacing:2.520000px;}
.ls26{letter-spacing:6.120000px;}
.ls1c{letter-spacing:6.660000px;}
.ls1e{letter-spacing:10.260000px;}
.ls1a{letter-spacing:18.900000px;}
.ls28{letter-spacing:56.340000px;}
.ls25{letter-spacing:59.220000px;}
.ls27{letter-spacing:59.940000px;}
.ls3{letter-spacing:66.162720px;}
.ls9{letter-spacing:112.476000px;}
.ls10{letter-spacing:203.916000px;}
.lse{letter-spacing:525.036000px;}
.ls14{letter-spacing:530.076000px;}
.ls17{letter-spacing:669.960000px;}
.ls11{letter-spacing:670.680000px;}
.ls13{letter-spacing:683.640000px;}
.ls12{letter-spacing:804.576000px;}
.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;}
.ws1{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.146400px;}
.wsc{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.wsf{word-spacing:-14.833200px;}
.ws0{word-spacing:-14.580000px;}
.ws7{word-spacing:-14.328000px;}
.ws5{word-spacing:-14.274000px;}
.wse{word-spacing:-14.166000px;}
.ws3{word-spacing:-13.860000px;}
.ws15{word-spacing:-13.716000px;}
.ws9{word-spacing:-12.420000px;}
.ws13{word-spacing:-12.329400px;}
.ws14{word-spacing:-12.241200px;}
.ws8{word-spacing:-12.060000px;}
.ws12{word-spacing:-11.790600px;}
.wsa{word-spacing:-11.700000px;}
.wsb{word-spacing:-9.720000px;}
.wsd{word-spacing:-7.560000px;}
.ws4{word-spacing:0.000000px;}
._19{margin-left:-6.617520px;}
._18{margin-left:-3.689280px;}
._1d{margin-left:-2.625360px;}
._1{margin-left:-1.075680px;}
._0{width:1.314720px;}
._2{width:2.594400px;}
._f{width:4.323600px;}
._e{width:5.556000px;}
._4{width:6.840000px;}
._9{width:8.067360px;}
._11{width:9.141120px;}
._10{width:10.350240px;}
._d{width:11.892240px;}
._c{width:12.908160px;}
._28{width:14.196960px;}
._a{width:16.308000px;}
._b{width:17.566560px;}
._7{width:18.679680px;}
._6{width:20.250000px;}
._8{width:22.056960px;}
._1a{width:23.724720px;}
._1b{width:24.808320px;}
._17{width:26.327040px;}
._16{width:27.370080px;}
._25{width:28.606320px;}
._1c{width:30.136080px;}
._1f{width:33.506640px;}
._24{width:35.708160px;}
._20{width:36.793440px;}
._23{width:38.782560px;}
._22{width:39.846240px;}
._27{width:40.974240px;}
._26{width:42.451200px;}
._1e{width:50.119920px;}
._29{width:56.265600px;}
._21{width:59.828160px;}
._5{width:155.700000px;}
._14{width:509.086560px;}
._12{width:735.660000px;}
._15{width:865.686720px;}
._13{width:1073.100000px;}
._3{width:1101.912000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:30.240000px;}
.fs5{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y212{bottom:0.360000px;}
.ya3{bottom:2.520000px;}
.y26{bottom:2.880000px;}
.y210{bottom:3.060000px;}
.yf{bottom:3.240000px;}
.y18e{bottom:3.600000px;}
.y18b{bottom:3.780000px;}
.y2e{bottom:9.000000px;}
.y34{bottom:12.240000px;}
.ya6{bottom:16.200000px;}
.y12f{bottom:16.245000px;}
.yaa{bottom:16.380000px;}
.y226{bottom:17.820000px;}
.y25{bottom:18.360000px;}
.y21a{bottom:18.540000px;}
.y194{bottom:20.340000px;}
.y14{bottom:20.520000px;}
.y33{bottom:29.520000px;}
.ya5{bottom:30.060000px;}
.y12e{bottom:30.105000px;}
.yad{bottom:30.240000px;}
.y225{bottom:33.300000px;}
.y24{bottom:33.840000px;}
.y219{bottom:34.020000px;}
.y193{bottom:37.620000px;}
.y13{bottom:37.800000px;}
.y129{bottom:43.920000px;}
.y12d{bottom:43.965000px;}
.y32{bottom:46.800000px;}
.y224{bottom:48.780000px;}
.y23{bottom:49.500000px;}
.y192{bottom:54.900000px;}
.y12{bottom:55.080000px;}
.yfb{bottom:57.600000px;}
.y12c{bottom:57.645000px;}
.y128{bottom:57.780000px;}
.y31{bottom:63.900000px;}
.y223{bottom:64.260000px;}
.y22{bottom:64.980000px;}
.y218{bottom:65.160000px;}
.y2d{bottom:65.910000px;}
.y12b{bottom:71.505000px;}
.y127{bottom:71.640000px;}
.yb1{bottom:71.685000px;}
.y191{bottom:72.180000px;}
.y222{bottom:79.785000px;}
.y21{bottom:80.460000px;}
.y217{bottom:80.640000px;}
.y11{bottom:81.225000px;}
.y126{bottom:85.320000px;}
.y12a{bottom:85.365000px;}
.y5{bottom:88.200000px;}
.y30{bottom:90.180000px;}
.y221{bottom:95.445000px;}
.y20{bottom:95.940000px;}
.y216{bottom:96.120000px;}
.y125{bottom:99.180000px;}
.y2c{bottom:106.950000px;}
.y220{bottom:110.925000px;}
.y110{bottom:111.420000px;}
.y1f{bottom:111.600000px;}
.y124{bottom:113.040000px;}
.yc5{bottom:119.700000px;}
.y2b{bottom:124.230000px;}
.y1b6{bottom:124.740000px;}
.y20e{bottom:126.360000px;}
.y21f{bottom:126.405000px;}
.y123{bottom:126.720000px;}
.y1e{bottom:127.080000px;}
.y215{bottom:127.260000px;}
.y10f{bottom:128.700000px;}
.y84{bottom:131.580000px;}
.y48{bottom:136.296000px;}
.yc4{bottom:137.016000px;}
.y1fe{bottom:137.736000px;}
.y1b5{bottom:138.636000px;}
.y122{bottom:140.580000px;}
.y2a{bottom:141.510000px;}
.yed{bottom:141.516000px;}
.y20d{bottom:141.840000px;}
.y21e{bottom:141.885000px;}
.y1d{bottom:142.560000px;}
.y214{bottom:142.770000px;}
.y165{bottom:142.776000px;}
.y138{bottom:144.396000px;}
.y10e{bottom:146.016000px;}
.y83{bottom:148.896000px;}
.y1fd{bottom:151.590000px;}
.y1b4{bottom:152.310000px;}
.y47{bottom:153.570000px;}
.yc3{bottom:154.290000px;}
.y20c{bottom:157.320000px;}
.y21d{bottom:157.365000px;}
.y1c{bottom:158.040000px;}
.y213{bottom:158.250000px;}
.y29{bottom:158.790000px;}
.y164{bottom:160.050000px;}
.y137{bottom:161.670000px;}
.y10d{bottom:163.110000px;}
.y82{bottom:165.450000px;}
.y1b3{bottom:166.170000px;}
.y190{bottom:167.610000px;}
.y46{bottom:170.850000px;}
.yc2{bottom:171.570000px;}
.y1b{bottom:173.700000px;}
.y28{bottom:175.890000px;}
.yec{bottom:176.070000px;}
.y163{bottom:177.150000px;}
.y136{bottom:178.950000px;}
.y1fc{bottom:179.130000px;}
.y81{bottom:179.850000px;}
.y1b2{bottom:180.030000px;}
.y10c{bottom:180.390000px;}
.y45{bottom:187.950000px;}
.yc1{bottom:188.850000px;}
.y1a{bottom:189.180000px;}
.y1fb{bottom:192.990000px;}
.yeb{bottom:193.170000px;}
.y1b1{bottom:193.710000px;}
.y162{bottom:194.430000px;}
.y135{bottom:196.050000px;}
.y80{bottom:197.130000px;}
.y10b{bottom:197.670000px;}
.y27{bottom:202.170000px;}
.y19{bottom:204.660000px;}
.y44{bottom:205.230000px;}
.yc0{bottom:205.950000px;}
.y1fa{bottom:206.850000px;}
.y1b0{bottom:207.570000px;}
.yea{bottom:210.450000px;}
.y161{bottom:211.710000px;}
.y134{bottom:213.330000px;}
.y7f{bottom:214.410000px;}
.y10a{bottom:214.950000px;}
.y18{bottom:220.185000px;}
.y1f9{bottom:220.530000px;}
.y1af{bottom:221.430000px;}
.y43{bottom:222.510000px;}
.ybf{bottom:223.230000px;}
.ye9{bottom:227.730000px;}
.y160{bottom:228.990000px;}
.y133{bottom:230.610000px;}
.y7e{bottom:231.690000px;}
.y109{bottom:232.230000px;}
.y1f8{bottom:234.390000px;}
.y1ae{bottom:235.110000px;}
.y42{bottom:239.790000px;}
.ybe{bottom:240.510000px;}
.ye8{bottom:245.010000px;}
.y15f{bottom:246.270000px;}
.y132{bottom:247.170000px;}
.y1f7{bottom:248.250000px;}
.y7d{bottom:248.970000px;}
.y108{bottom:249.330000px;}
.y18f{bottom:256.350000px;}
.y41{bottom:257.070000px;}
.ybd{bottom:257.790000px;}
.y131{bottom:261.030000px;}
.y1f6{bottom:261.930000px;}
.ye7{bottom:262.290000px;}
.y1ad{bottom:262.830000px;}
.y15e{bottom:263.550000px;}
.y7c{bottom:266.250000px;}
.y107{bottom:266.610000px;}
.y18d{bottom:268.410000px;}
.y130{bottom:272.910000px;}
.y40{bottom:274.350000px;}
.ybc{bottom:275.070000px;}
.y1f5{bottom:275.790000px;}
.y1ac{bottom:276.510000px;}
.ye6{bottom:279.570000px;}
.y15d{bottom:280.650000px;}
.y7b{bottom:283.350000px;}
.y106{bottom:283.890000px;}
.y18c{bottom:285.510000px;}
.y1f4{bottom:289.650000px;}
.y1ab{bottom:290.370000px;}
.y3f{bottom:291.450000px;}
.ybb{bottom:292.350000px;}
.ye5{bottom:296.670000px;}
.y15c{bottom:297.930000px;}
.y7a{bottom:300.630000px;}
.y105{bottom:301.170000px;}
.y18a{bottom:302.790000px;}
.y1f3{bottom:303.330000px;}
.y1aa{bottom:304.230000px;}
.y16{bottom:307.155000px;}
.y227{bottom:308.550000px;}
.y3e{bottom:308.730000px;}
.yba{bottom:309.450000px;}
.ye4{bottom:313.950000px;}
.y15b{bottom:314.490000px;}
.y1f2{bottom:317.190000px;}
.y79{bottom:317.910000px;}
.y104{bottom:318.450000px;}
.y189{bottom:320.790000px;}
.y21c{bottom:322.590000px;}
.yb7{bottom:324.210000px;}
.y3d{bottom:326.010000px;}
.y15a{bottom:329.070000px;}
.y1f1{bottom:331.050000px;}
.ye3{bottom:331.230000px;}
.y1a9{bottom:331.770000px;}
.y78{bottom:335.190000px;}
.y103{bottom:335.730000px;}
.yb9{bottom:338.070000px;}
.y188{bottom:341.310000px;}
.y3c{bottom:343.290000px;}
.y1f0{bottom:344.730000px;}
.y1a8{bottom:345.630000px;}
.y159{bottom:346.350000px;}
.ye2{bottom:348.510000px;}
.y77{bottom:351.750000px;}
.yb8{bottom:351.930000px;}
.y102{bottom:352.830000px;}
.y187{bottom:355.890000px;}
.y1ef{bottom:358.590000px;}
.y1a7{bottom:359.310000px;}
.y3b{bottom:360.570000px;}
.y158{bottom:363.450000px;}
.yb0{bottom:365.610000px;}
.ye1{bottom:365.790000px;}
.y76{bottom:366.150000px;}
.y101{bottom:370.110000px;}
.y1ee{bottom:372.450000px;}
.y186{bottom:373.170000px;}
.y3a{bottom:377.670000px;}
.yb6{bottom:379.470000px;}
.y157{bottom:380.730000px;}
.y75{bottom:383.430000px;}
.y1ed{bottom:386.130000px;}
.y100{bottom:386.670000px;}
.y1a6{bottom:387.030000px;}
.y185{bottom:390.495000px;}
.yb5{bottom:393.375000px;}
.y39{bottom:394.995000px;}
.y156{bottom:398.055000px;}
.ye0{bottom:399.495000px;}
.y1ec{bottom:400.035000px;}
.yff{bottom:400.575000px;}
.y74{bottom:400.755000px;}
.y184{bottom:406.875000px;}
.yb4{bottom:407.055000px;}
.ydf{bottom:410.835000px;}
.y38{bottom:412.275000px;}
.yfa{bottom:412.635000px;}
.y1eb{bottom:413.895000px;}
.y1a5{bottom:414.615000px;}
.y155{bottom:415.335000px;}
.y73{bottom:418.035000px;}
.y183{bottom:420.735000px;}
.yb3{bottom:420.915000px;}
.yfe{bottom:426.315000px;}
.y1ea{bottom:427.575000px;}
.y1a4{bottom:428.475000px;}
.y37{bottom:429.555000px;}
.y154{bottom:432.615000px;}
.yb2{bottom:434.775000px;}
.y72{bottom:435.315000px;}
.yfd{bottom:440.175000px;}
.y1e9{bottom:441.435000px;}
.y1a3{bottom:442.155000px;}
.y36{bottom:446.835000px;}
.yac{bottom:448.455000px;}
.y153{bottom:449.895000px;}
.y71{bottom:452.595000px;}
.yfc{bottom:454.035000px;}
.y1e8{bottom:455.295000px;}
.y1a2{bottom:456.015000px;}
.yaf{bottom:462.315000px;}
.y35{bottom:464.115000px;}
.y152{bottom:466.995000px;}
.yf9{bottom:467.715000px;}
.y1e7{bottom:468.975000px;}
.y70{bottom:469.695000px;}
.y1a1{bottom:469.875000px;}
.yae{bottom:476.175000px;}
.y121{bottom:479.955000px;}
.y2f{bottom:480.315000px;}
.yf8{bottom:481.575000px;}
.y1e6{bottom:482.835000px;}
.y151{bottom:483.555000px;}
.y182{bottom:486.255000px;}
.y6f{bottom:486.975000px;}
.ya9{bottom:489.855000px;}
.y21b{bottom:493.635000px;}
.yf7{bottom:496.155000px;}
.y1e5{bottom:496.695000px;}
.y1a0{bottom:497.415000px;}
.y150{bottom:498.135000px;}
.y181{bottom:500.115000px;}
.yab{bottom:503.715000px;}
.y6e{bottom:504.255000px;}
.y211{bottom:509.115000px;}
.yf6{bottom:509.835000px;}
.y1e4{bottom:510.375000px;}
.y19f{bottom:511.095000px;}
.y180{bottom:514.515000px;}
.y14f{bottom:515.415000px;}
.ya4{bottom:517.575000px;}
.y6d{bottom:521.535000px;}
.y1e3{bottom:524.235000px;}
.y19e{bottom:524.955000px;}
.ya8{bottom:531.255000px;}
.y17f{bottom:531.795000px;}
.y14e{bottom:532.515000px;}
.y1e2{bottom:538.095000px;}
.y6c{bottom:538.815000px;}
.yf5{bottom:544.215000px;}
.ya7{bottom:545.115000px;}
.y17e{bottom:549.075000px;}
.y14d{bottom:549.795000px;}
.y1e1{bottom:551.775000px;}
.y19d{bottom:552.495000px;}
.y6b{bottom:555.195000px;}
.yf4{bottom:558.075000px;}
.ya2{bottom:559.695000px;}
.y1e0{bottom:565.635000px;}
.y17d{bottom:566.355000px;}
.y14c{bottom:567.075000px;}
.y6a{bottom:569.775000px;}
.y1df{bottom:579.495000px;}
.y19c{bottom:580.215000px;}
.y17c{bottom:583.635000px;}
.y14b{bottom:584.355000px;}
.y69{bottom:587.055000px;}
.yf3{bottom:589.035000px;}
.y1de{bottom:593.175000px;}
.y19b{bottom:593.895000px;}
.y15{bottom:594.255000px;}
.ya1{bottom:594.615000px;}
.yf2{bottom:600.375000px;}
.y17b{bottom:600.915000px;}
.y14a{bottom:601.635000px;}
.y68{bottom:604.335000px;}
.y1dd{bottom:607.035000px;}
.y19a{bottom:607.755000px;}
.ya0{bottom:611.895000px;}
.y17a{bottom:618.015000px;}
.y149{bottom:618.195000px;}
.y1dc{bottom:620.895000px;}
.y67{bottom:621.615000px;}
.y9f{bottom:629.175000px;}
.y120{bottom:632.595000px;}
.y1db{bottom:634.575000px;}
.y179{bottom:635.295000px;}
.y66{bottom:638.715000px;}
.y9e{bottom:646.485000px;}
.y1da{bottom:648.465000px;}
.y199{bottom:649.185000px;}
.y148{bottom:649.905000px;}
.y178{bottom:652.605000px;}
.y65{bottom:656.025000px;}
.y1d9{bottom:662.325000px;}
.y198{bottom:663.045000px;}
.y9d{bottom:663.765000px;}
.y11f{bottom:666.825000px;}
.y147{bottom:667.185000px;}
.y177{bottom:669.885000px;}
.y64{bottom:672.585000px;}
.y1d8{bottom:676.005000px;}
.y197{bottom:676.725000px;}
.y11e{bottom:680.685000px;}
.y20f{bottom:680.865000px;}
.y9c{bottom:681.045000px;}
.y17{bottom:682.665000px;}
.y146{bottom:684.465000px;}
.y63{bottom:687.165000px;}
.y1d7{bottom:689.865000px;}
.y196{bottom:690.585000px;}
.y11d{bottom:695.265000px;}
.y20b{bottom:696.525000px;}
.y9b{bottom:698.145000px;}
.y145{bottom:701.745000px;}
.y1d6{bottom:703.725000px;}
.y62{bottom:704.445000px;}
.y11c{bottom:712.545000px;}
.y9a{bottom:715.425000px;}
.y1d5{bottom:717.405000px;}
.y195{bottom:718.125000px;}
.y144{bottom:718.845000px;}
.y61{bottom:721.545000px;}
.y11b{bottom:729.645000px;}
.y1d4{bottom:731.265000px;}
.y99{bottom:732.705000px;}
.y143{bottom:736.125000px;}
.y60{bottom:738.825000px;}
.y1d3{bottom:745.125000px;}
.y11a{bottom:746.925000px;}
.y98{bottom:749.985000px;}
.yde{bottom:753.225000px;}
.y142{bottom:753.405000px;}
.y5f{bottom:756.105000px;}
.y1d2{bottom:758.805000px;}
.y119{bottom:764.205000px;}
.ydd{bottom:766.905000px;}
.y97{bottom:767.265000px;}
.y141{bottom:770.685000px;}
.y1d1{bottom:772.665000px;}
.y5e{bottom:773.385000px;}
.y118{bottom:780.765000px;}
.ydc{bottom:781.485000px;}
.y96{bottom:784.545000px;}
.y1d0{bottom:786.525000px;}
.y140{bottom:787.965000px;}
.y5d{bottom:789.945000px;}
.y176{bottom:790.665000px;}
.y117{bottom:794.625000px;}
.ydb{bottom:798.765000px;}
.y1cf{bottom:800.205000px;}
.y95{bottom:801.645000px;}
.y5c{bottom:803.625000px;}
.y13f{bottom:805.245000px;}
.y116{bottom:806.505000px;}
.y175{bottom:807.945000px;}
.y1ce{bottom:814.065000px;}
.yda{bottom:815.865000px;}
.y5b{bottom:818.205000px;}
.y94{bottom:818.925000px;}
.y10{bottom:820.185000px;}
.y115{bottom:820.365000px;}
.y13e{bottom:822.345000px;}
.y174{bottom:825.045000px;}
.y1cd{bottom:827.745000px;}
.yd9{bottom:833.145000px;}
.y114{bottom:834.225000px;}
.y5a{bottom:835.485000px;}
.y93{bottom:836.205000px;}
.y13d{bottom:839.625000px;}
.yf1{bottom:839.805000px;}
.y1cc{bottom:841.605000px;}
.y173{bottom:841.965000px;}
.y113{bottom:847.905000px;}
.y59{bottom:852.765000px;}
.y92{bottom:853.485000px;}
.yf0{bottom:853.665000px;}
.y1cb{bottom:855.465000px;}
.y13c{bottom:856.905000px;}
.y172{bottom:857.625000px;}
.y112{bottom:861.765000px;}
.yd8{bottom:863.565000px;}
.y1ca{bottom:869.145000px;}
.y58{bottom:869.865000px;}
.y91{bottom:870.765000px;}
.y171{bottom:873.465000px;}
.y13b{bottom:874.185000px;}
.yd7{bottom:875.625000px;}
.y1c9{bottom:883.005000px;}
.yef{bottom:884.625000px;}
.y57{bottom:887.145000px;}
.y90{bottom:887.865000px;}
.yd6{bottom:889.305000px;}
.y170{bottom:890.565000px;}
.y13a{bottom:891.465000px;}
.yee{bottom:896.010000px;}
.y1c8{bottom:896.910000px;}
.yd5{bottom:903.210000px;}
.y56{bottom:904.470000px;}
.y8f{bottom:905.190000px;}
.y139{bottom:907.890000px;}
.y1c7{bottom:910.590000px;}
.yd4{bottom:917.070000px;}
.y55{bottom:921.750000px;}
.y8e{bottom:922.470000px;}
.y1c6{bottom:924.450000px;}
.ye{bottom:925.170000px;}
.yd3{bottom:930.750000px;}
.y1c5{bottom:938.310000px;}
.y54{bottom:939.030000px;}
.y8d{bottom:939.750000px;}
.y16f{bottom:942.450000px;}
.yd2{bottom:944.610000px;}
.y1c4{bottom:951.990000px;}
.y20a{bottom:952.890000px;}
.y53{bottom:956.310000px;}
.yd{bottom:957.030000px;}
.yd1{bottom:958.470000px;}
.y16e{bottom:959.730000px;}
.y1c3{bottom:965.850000px;}
.y209{bottom:966.570000px;}
.yd0{bottom:972.150000px;}
.y52{bottom:973.410000px;}
.yc{bottom:974.310000px;}
.y16d{bottom:977.010000px;}
.y1c2{bottom:979.710000px;}
.y208{bottom:980.430000px;}
.ycf{bottom:986.010000px;}
.yb{bottom:990.690000px;}
.y8c{bottom:991.410000px;}
.y1c1{bottom:993.390000px;}
.y16c{bottom:994.110000px;}
.y207{bottom:994.290000px;}
.yce{bottom:999.870000px;}
.ya{bottom:1005.270000px;}
.y1c0{bottom:1007.250000px;}
.y51{bottom:1007.970000px;}
.y8b{bottom:1008.690000px;}
.y16b{bottom:1011.390000px;}
.ycd{bottom:1013.550000px;}
.y1bf{bottom:1021.110000px;}
.y206{bottom:1021.830000px;}
.y9{bottom:1022.550000px;}
.y50{bottom:1025.250000px;}
.y8a{bottom:1025.970000px;}
.ycc{bottom:1027.410000px;}
.y16a{bottom:1028.670000px;}
.y1be{bottom:1034.790000px;}
.y205{bottom:1035.690000px;}
.y8{bottom:1039.830000px;}
.ycb{bottom:1041.270000px;}
.y4f{bottom:1042.530000px;}
.y89{bottom:1043.250000px;}
.y169{bottom:1045.950000px;}
.y1bd{bottom:1048.650000px;}
.y204{bottom:1049.370000px;}
.yca{bottom:1054.950000px;}
.y7{bottom:1059.090000px;}
.y4e{bottom:1059.810000px;}
.y88{bottom:1060.530000px;}
.y1bc{bottom:1062.510000px;}
.y168{bottom:1063.230000px;}
.yc9{bottom:1068.810000px;}
.y1bb{bottom:1076.190000px;}
.y4d{bottom:1076.910000px;}
.y203{bottom:1077.090000px;}
.y87{bottom:1077.810000px;}
.y167{bottom:1080.510000px;}
.yc8{bottom:1082.670000px;}
.y111{bottom:1083.390000px;}
.y6{bottom:1086.630000px;}
.y1ba{bottom:1090.050000px;}
.y202{bottom:1090.770000px;}
.y4c{bottom:1094.190000px;}
.y86{bottom:1094.910000px;}
.yc7{bottom:1096.350000px;}
.y166{bottom:1096.890000px;}
.y1b9{bottom:1103.910000px;}
.y201{bottom:1104.630000px;}
.yc6{bottom:1110.930000px;}
.y4b{bottom:1111.470000px;}
.y4{bottom:1112.190000px;}
.y1b8{bottom:1117.590000px;}
.y200{bottom:1118.490000px;}
.y4a{bottom:1128.750000px;}
.y3{bottom:1129.470000px;}
.y1b7{bottom:1131.450000px;}
.y1ff{bottom:1132.170000px;}
.y2{bottom:1146.780000px;}
.y85{bottom:1160.640000px;}
.y49{bottom:1161.000000px;}
.y1{bottom:1164.060000px;}
.h15{height:13.680000px;}
.h22{height:13.716000px;}
.h17{height:13.860000px;}
.h19{height:13.860150px;}
.h1b{height:13.896000px;}
.h2d{height:15.480000px;}
.h2b{height:15.660000px;}
.h12{height:17.100000px;}
.h14{height:17.280000px;}
.h7{height:26.280000px;}
.h20{height:27.540000px;}
.h18{height:27.720000px;}
.h16{height:41.400000px;}
.h29{height:47.321367px;}
.h6{height:47.344922px;}
.h21{height:47.678906px;}
.h1c{height:48.616875px;}
.hf{height:52.971680px;}
.hc{height:52.998047px;}
.h13{height:53.573906px;}
.h27{height:54.421875px;}
.h4{height:58.621992px;}
.h3{height:58.651172px;}
.h1f{height:59.014594px;}
.h1e{height:59.038594px;}
.h2{height:60.226875px;}
.h11{height:62.211094px;}
.h1d{height:68.940000px;}
.h8{height:70.664062px;}
.h26{height:74.004654px;}
.h1a{height:82.836000px;}
.h28{height:86.220000px;}
.he{height:87.516000px;}
.h5{height:96.508125px;}
.h24{height:96.516000px;}
.h9{height:104.256000px;}
.h25{height:110.520000px;}
.h10{height:113.220000px;}
.h23{height:151.920000px;}
.h2a{height:171.000000px;}
.h2e{height:171.030000px;}
.h2c{height:171.750000px;}
.hd{height:225.210000px;}
.hb{height:241.770000px;}
.ha{height:330.195000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:21.060000px;}
.w8{width:29.880000px;}
.w7{width:30.060000px;}
.w26{width:35.100000px;}
.w20{width:35.280000px;}
.w25{width:35.316000px;}
.w21{width:35.640000px;}
.w22{width:36.000000px;}
.w27{width:36.036000px;}
.w28{width:36.180000px;}
.w24{width:36.360000px;}
.w23{width:36.540000px;}
.w1c{width:64.836000px;}
.w1b{width:66.060000px;}
.w1a{width:68.760000px;}
.w18{width:72.720000px;}
.w13{width:74.916000px;}
.w19{width:76.176000px;}
.w1e{width:87.840000px;}
.we{width:87.876000px;}
.w12{width:93.240000px;}
.w11{width:102.996000px;}
.wb{width:117.036000px;}
.w10{width:122.760000px;}
.wf{width:127.116000px;}
.w17{width:131.076000px;}
.w16{width:134.820000px;}
.w2c{width:144.540000px;}
.w15{width:148.896000px;}
.w9{width:156.090000px;}
.w1f{width:158.250000px;}
.wc{width:184.350000px;}
.w2b{width:198.570000px;}
.w3{width:209.010000px;}
.w1d{width:212.250000px;}
.w29{width:214.770000px;}
.wa{width:223.230000px;}
.w14{width:230.790000px;}
.w2a{width:244.290000px;}
.wd{width:266.430000px;}
.w5{width:433.335000px;}
.w2d{width:530.745000px;}
.w6{width:663.405000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:5.760000px;}
.x7{left:8.100000px;}
.x54{left:9.540000px;}
.x9{left:10.620000px;}
.x28{left:12.060000px;}
.x24{left:15.300000px;}
.x41{left:17.685000px;}
.x18{left:18.900000px;}
.x33{left:20.385000px;}
.x3c{left:21.600000px;}
.x3d{left:22.860000px;}
.x16{left:23.940000px;}
.x3f{left:25.380000px;}
.x26{left:27.000000px;}
.x2c{left:29.550000px;}
.x35{left:32.430000px;}
.x2b{left:36.360000px;}
.x34{left:39.420000px;}
.x32{left:43.560000px;}
.x30{left:45.360000px;}
.x2f{left:46.440000px;}
.x31{left:48.450000px;}
.x36{left:49.860000px;}
.x2e{left:51.510000px;}
.x12{left:57.240000px;}
.x2d{left:61.380000px;}
.x1b{left:70.020000px;}
.x58{left:72.174000px;}
.x39{left:94.674000px;}
.x14{left:97.200000px;}
.x1d{left:101.190000px;}
.xb{left:106.740000px;}
.x46{left:119.556000px;}
.x6{left:125.496000px;}
.x1{left:127.655987px;}
.x38{left:134.496000px;}
.x56{left:136.254000px;}
.x2{left:142.955987px;}
.xf{left:149.615987px;}
.xe{left:154.649987px;}
.x1f{left:159.689987px;}
.xd{left:181.649987px;}
.x1a{left:187.770000px;}
.x23{left:196.770000px;}
.x11{left:209.010000px;}
.x37{left:219.089987px;}
.x3{left:220.529987px;}
.x19{left:258.509987px;}
.x57{left:264.090000px;}
.x5{left:272.909987px;}
.x43{left:274.710000px;}
.x47{left:277.815000px;}
.x48{left:313.095000px;}
.x25{left:323.895000px;}
.x8{left:334.515000px;}
.x44{left:339.555000px;}
.x55{left:343.155000px;}
.x49{left:348.735000px;}
.xa{left:355.575000px;}
.x13{left:365.115000px;}
.x1c{left:372.135000px;}
.x4a{left:384.735000px;}
.x4b{left:421.275000px;}
.xc{left:425.235000px;}
.x3e{left:438.015000px;}
.x27{left:446.655000px;}
.x4{left:457.274987px;}
.x4c{left:492.945000px;}
.x3a{left:514.185000px;}
.x4d{left:528.225000px;}
.x29{left:549.645000px;}
.x45{left:551.805000px;}
.x4e{left:563.505000px;}
.x40{left:582.945000px;}
.x15{left:588.345000px;}
.x4f{left:598.605000px;}
.x50{left:633.885000px;}
.x1e{left:638.565000px;}
.x2a{left:642.885000px;}
.x3b{left:649.005000px;}
.x22{left:663.089987px;}
.x51{left:669.930000px;}
.x20{left:700.349987px;}
.x21{left:701.429987px;}
.x52{left:706.110000px;}
.x42{left:713.850000px;}
.x53{left:741.390000px;}
.x10{left:756.870000px;}
@media print{
.v1{vertical-align:-60.800000pt;}
.v3{vertical-align:-58.400000pt;}
.v2{vertical-align:-49.280000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:16.000000pt;}
.v4{vertical-align:18.560000pt;}
.ls19{letter-spacing:-0.688000pt;}
.lsb{letter-spacing:-0.592000pt;}
.lsf{letter-spacing:-0.544000pt;}
.ls16{letter-spacing:-0.519467pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls22{letter-spacing:-0.400533pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls23{letter-spacing:-0.239467pt;}
.ls20{letter-spacing:-0.094933pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.007680pt;}
.ls2{letter-spacing:0.030080pt;}
.ls15{letter-spacing:0.047360pt;}
.ls7{letter-spacing:0.094933pt;}
.lsd{letter-spacing:0.136320pt;}
.ls1{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.161067pt;}
.ls21{letter-spacing:0.183467pt;}
.ls1f{letter-spacing:0.183680pt;}
.ls2a{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.230933pt;}
.ls24{letter-spacing:0.239467pt;}
.ls1d{letter-spacing:0.272640pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.800000pt;}
.ls29{letter-spacing:2.240000pt;}
.ls26{letter-spacing:5.440000pt;}
.ls1c{letter-spacing:5.920000pt;}
.ls1e{letter-spacing:9.120000pt;}
.ls1a{letter-spacing:16.800000pt;}
.ls28{letter-spacing:50.080000pt;}
.ls25{letter-spacing:52.640000pt;}
.ls27{letter-spacing:53.280000pt;}
.ls3{letter-spacing:58.811307pt;}
.ls9{letter-spacing:99.978667pt;}
.ls10{letter-spacing:181.258667pt;}
.lse{letter-spacing:466.698667pt;}
.ls14{letter-spacing:471.178667pt;}
.ls17{letter-spacing:595.520000pt;}
.ls11{letter-spacing:596.160000pt;}
.ls13{letter-spacing:607.680000pt;}
.ls12{letter-spacing:715.178667pt;}
.ws11{word-spacing:-53.120000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.463467pt;}
.wsc{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.wsf{word-spacing:-13.185067pt;}
.ws0{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.736000pt;}
.ws5{word-spacing:-12.688000pt;}
.wse{word-spacing:-12.592000pt;}
.ws3{word-spacing:-12.320000pt;}
.ws15{word-spacing:-12.192000pt;}
.ws9{word-spacing:-11.040000pt;}
.ws13{word-spacing:-10.959467pt;}
.ws14{word-spacing:-10.881067pt;}
.ws8{word-spacing:-10.720000pt;}
.ws12{word-spacing:-10.480533pt;}
.wsa{word-spacing:-10.400000pt;}
.wsb{word-spacing:-8.640000pt;}
.wsd{word-spacing:-6.720000pt;}
.ws4{word-spacing:0.000000pt;}
._19{margin-left:-5.882240pt;}
._18{margin-left:-3.279360pt;}
._1d{margin-left:-2.333653pt;}
._1{margin-left:-0.956160pt;}
._0{width:1.168640pt;}
._2{width:2.306133pt;}
._f{width:3.843200pt;}
._e{width:4.938667pt;}
._4{width:6.080000pt;}
._9{width:7.170987pt;}
._11{width:8.125440pt;}
._10{width:9.200213pt;}
._d{width:10.570880pt;}
._c{width:11.473920pt;}
._28{width:12.619520pt;}
._a{width:14.496000pt;}
._b{width:15.614720pt;}
._7{width:16.604160pt;}
._6{width:18.000000pt;}
._8{width:19.606187pt;}
._1a{width:21.088640pt;}
._1b{width:22.051840pt;}
._17{width:23.401813pt;}
._16{width:24.328960pt;}
._25{width:25.427840pt;}
._1c{width:26.787627pt;}
._1f{width:29.783680pt;}
._24{width:31.740587pt;}
._20{width:32.705280pt;}
._23{width:34.473387pt;}
._22{width:35.418880pt;}
._27{width:36.421547pt;}
._26{width:37.734400pt;}
._1e{width:44.551040pt;}
._29{width:50.013867pt;}
._21{width:53.180587pt;}
._5{width:138.400000pt;}
._14{width:452.521387pt;}
._12{width:653.920000pt;}
._15{width:769.499307pt;}
._13{width:953.866667pt;}
._3{width:979.477333pt;}
.fs6{font-size:26.880000pt;}
.fs5{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y212{bottom:0.320000pt;}
.ya3{bottom:2.240000pt;}
.y26{bottom:2.560000pt;}
.y210{bottom:2.720000pt;}
.yf{bottom:2.880000pt;}
.y18e{bottom:3.200000pt;}
.y18b{bottom:3.360000pt;}
.y2e{bottom:8.000000pt;}
.y34{bottom:10.880000pt;}
.ya6{bottom:14.400000pt;}
.y12f{bottom:14.440000pt;}
.yaa{bottom:14.560000pt;}
.y226{bottom:15.840000pt;}
.y25{bottom:16.320000pt;}
.y21a{bottom:16.480000pt;}
.y194{bottom:18.080000pt;}
.y14{bottom:18.240000pt;}
.y33{bottom:26.240000pt;}
.ya5{bottom:26.720000pt;}
.y12e{bottom:26.760000pt;}
.yad{bottom:26.880000pt;}
.y225{bottom:29.600000pt;}
.y24{bottom:30.080000pt;}
.y219{bottom:30.240000pt;}
.y193{bottom:33.440000pt;}
.y13{bottom:33.600000pt;}
.y129{bottom:39.040000pt;}
.y12d{bottom:39.080000pt;}
.y32{bottom:41.600000pt;}
.y224{bottom:43.360000pt;}
.y23{bottom:44.000000pt;}
.y192{bottom:48.800000pt;}
.y12{bottom:48.960000pt;}
.yfb{bottom:51.200000pt;}
.y12c{bottom:51.240000pt;}
.y128{bottom:51.360000pt;}
.y31{bottom:56.800000pt;}
.y223{bottom:57.120000pt;}
.y22{bottom:57.760000pt;}
.y218{bottom:57.920000pt;}
.y2d{bottom:58.586667pt;}
.y12b{bottom:63.560000pt;}
.y127{bottom:63.680000pt;}
.yb1{bottom:63.720000pt;}
.y191{bottom:64.160000pt;}
.y222{bottom:70.920000pt;}
.y21{bottom:71.520000pt;}
.y217{bottom:71.680000pt;}
.y11{bottom:72.200000pt;}
.y126{bottom:75.840000pt;}
.y12a{bottom:75.880000pt;}
.y5{bottom:78.400000pt;}
.y30{bottom:80.160000pt;}
.y221{bottom:84.840000pt;}
.y20{bottom:85.280000pt;}
.y216{bottom:85.440000pt;}
.y125{bottom:88.160000pt;}
.y2c{bottom:95.066667pt;}
.y220{bottom:98.600000pt;}
.y110{bottom:99.040000pt;}
.y1f{bottom:99.200000pt;}
.y124{bottom:100.480000pt;}
.yc5{bottom:106.400000pt;}
.y2b{bottom:110.426667pt;}
.y1b6{bottom:110.880000pt;}
.y20e{bottom:112.320000pt;}
.y21f{bottom:112.360000pt;}
.y123{bottom:112.640000pt;}
.y1e{bottom:112.960000pt;}
.y215{bottom:113.120000pt;}
.y10f{bottom:114.400000pt;}
.y84{bottom:116.960000pt;}
.y48{bottom:121.152000pt;}
.yc4{bottom:121.792000pt;}
.y1fe{bottom:122.432000pt;}
.y1b5{bottom:123.232000pt;}
.y122{bottom:124.960000pt;}
.y2a{bottom:125.786667pt;}
.yed{bottom:125.792000pt;}
.y20d{bottom:126.080000pt;}
.y21e{bottom:126.120000pt;}
.y1d{bottom:126.720000pt;}
.y214{bottom:126.906667pt;}
.y165{bottom:126.912000pt;}
.y138{bottom:128.352000pt;}
.y10e{bottom:129.792000pt;}
.y83{bottom:132.352000pt;}
.y1fd{bottom:134.746667pt;}
.y1b4{bottom:135.386667pt;}
.y47{bottom:136.506667pt;}
.yc3{bottom:137.146667pt;}
.y20c{bottom:139.840000pt;}
.y21d{bottom:139.880000pt;}
.y1c{bottom:140.480000pt;}
.y213{bottom:140.666667pt;}
.y29{bottom:141.146667pt;}
.y164{bottom:142.266667pt;}
.y137{bottom:143.706667pt;}
.y10d{bottom:144.986667pt;}
.y82{bottom:147.066667pt;}
.y1b3{bottom:147.706667pt;}
.y190{bottom:148.986667pt;}
.y46{bottom:151.866667pt;}
.yc2{bottom:152.506667pt;}
.y1b{bottom:154.400000pt;}
.y28{bottom:156.346667pt;}
.yec{bottom:156.506667pt;}
.y163{bottom:157.466667pt;}
.y136{bottom:159.066667pt;}
.y1fc{bottom:159.226667pt;}
.y81{bottom:159.866667pt;}
.y1b2{bottom:160.026667pt;}
.y10c{bottom:160.346667pt;}
.y45{bottom:167.066667pt;}
.yc1{bottom:167.866667pt;}
.y1a{bottom:168.160000pt;}
.y1fb{bottom:171.546667pt;}
.yeb{bottom:171.706667pt;}
.y1b1{bottom:172.186667pt;}
.y162{bottom:172.826667pt;}
.y135{bottom:174.266667pt;}
.y80{bottom:175.226667pt;}
.y10b{bottom:175.706667pt;}
.y27{bottom:179.706667pt;}
.y19{bottom:181.920000pt;}
.y44{bottom:182.426667pt;}
.yc0{bottom:183.066667pt;}
.y1fa{bottom:183.866667pt;}
.y1b0{bottom:184.506667pt;}
.yea{bottom:187.066667pt;}
.y161{bottom:188.186667pt;}
.y134{bottom:189.626667pt;}
.y7f{bottom:190.586667pt;}
.y10a{bottom:191.066667pt;}
.y18{bottom:195.720000pt;}
.y1f9{bottom:196.026667pt;}
.y1af{bottom:196.826667pt;}
.y43{bottom:197.786667pt;}
.ybf{bottom:198.426667pt;}
.ye9{bottom:202.426667pt;}
.y160{bottom:203.546667pt;}
.y133{bottom:204.986667pt;}
.y7e{bottom:205.946667pt;}
.y109{bottom:206.426667pt;}
.y1f8{bottom:208.346667pt;}
.y1ae{bottom:208.986667pt;}
.y42{bottom:213.146667pt;}
.ybe{bottom:213.786667pt;}
.ye8{bottom:217.786667pt;}
.y15f{bottom:218.906667pt;}
.y132{bottom:219.706667pt;}
.y1f7{bottom:220.666667pt;}
.y7d{bottom:221.306667pt;}
.y108{bottom:221.626667pt;}
.y18f{bottom:227.866667pt;}
.y41{bottom:228.506667pt;}
.ybd{bottom:229.146667pt;}
.y131{bottom:232.026667pt;}
.y1f6{bottom:232.826667pt;}
.ye7{bottom:233.146667pt;}
.y1ad{bottom:233.626667pt;}
.y15e{bottom:234.266667pt;}
.y7c{bottom:236.666667pt;}
.y107{bottom:236.986667pt;}
.y18d{bottom:238.586667pt;}
.y130{bottom:242.586667pt;}
.y40{bottom:243.866667pt;}
.ybc{bottom:244.506667pt;}
.y1f5{bottom:245.146667pt;}
.y1ac{bottom:245.786667pt;}
.ye6{bottom:248.506667pt;}
.y15d{bottom:249.466667pt;}
.y7b{bottom:251.866667pt;}
.y106{bottom:252.346667pt;}
.y18c{bottom:253.786667pt;}
.y1f4{bottom:257.466667pt;}
.y1ab{bottom:258.106667pt;}
.y3f{bottom:259.066667pt;}
.ybb{bottom:259.866667pt;}
.ye5{bottom:263.706667pt;}
.y15c{bottom:264.826667pt;}
.y7a{bottom:267.226667pt;}
.y105{bottom:267.706667pt;}
.y18a{bottom:269.146667pt;}
.y1f3{bottom:269.626667pt;}
.y1aa{bottom:270.426667pt;}
.y16{bottom:273.026667pt;}
.y227{bottom:274.266667pt;}
.y3e{bottom:274.426667pt;}
.yba{bottom:275.066667pt;}
.ye4{bottom:279.066667pt;}
.y15b{bottom:279.546667pt;}
.y1f2{bottom:281.946667pt;}
.y79{bottom:282.586667pt;}
.y104{bottom:283.066667pt;}
.y189{bottom:285.146667pt;}
.y21c{bottom:286.746667pt;}
.yb7{bottom:288.186667pt;}
.y3d{bottom:289.786667pt;}
.y15a{bottom:292.506667pt;}
.y1f1{bottom:294.266667pt;}
.ye3{bottom:294.426667pt;}
.y1a9{bottom:294.906667pt;}
.y78{bottom:297.946667pt;}
.y103{bottom:298.426667pt;}
.yb9{bottom:300.506667pt;}
.y188{bottom:303.386667pt;}
.y3c{bottom:305.146667pt;}
.y1f0{bottom:306.426667pt;}
.y1a8{bottom:307.226667pt;}
.y159{bottom:307.866667pt;}
.ye2{bottom:309.786667pt;}
.y77{bottom:312.666667pt;}
.yb8{bottom:312.826667pt;}
.y102{bottom:313.626667pt;}
.y187{bottom:316.346667pt;}
.y1ef{bottom:318.746667pt;}
.y1a7{bottom:319.386667pt;}
.y3b{bottom:320.506667pt;}
.y158{bottom:323.066667pt;}
.yb0{bottom:324.986667pt;}
.ye1{bottom:325.146667pt;}
.y76{bottom:325.466667pt;}
.y101{bottom:328.986667pt;}
.y1ee{bottom:331.066667pt;}
.y186{bottom:331.706667pt;}
.y3a{bottom:335.706667pt;}
.yb6{bottom:337.306667pt;}
.y157{bottom:338.426667pt;}
.y75{bottom:340.826667pt;}
.y1ed{bottom:343.226667pt;}
.y100{bottom:343.706667pt;}
.y1a6{bottom:344.026667pt;}
.y185{bottom:347.106667pt;}
.yb5{bottom:349.666667pt;}
.y39{bottom:351.106667pt;}
.y156{bottom:353.826667pt;}
.ye0{bottom:355.106667pt;}
.y1ec{bottom:355.586667pt;}
.yff{bottom:356.066667pt;}
.y74{bottom:356.226667pt;}
.y184{bottom:361.666667pt;}
.yb4{bottom:361.826667pt;}
.ydf{bottom:365.186667pt;}
.y38{bottom:366.466667pt;}
.yfa{bottom:366.786667pt;}
.y1eb{bottom:367.906667pt;}
.y1a5{bottom:368.546667pt;}
.y155{bottom:369.186667pt;}
.y73{bottom:371.586667pt;}
.y183{bottom:373.986667pt;}
.yb3{bottom:374.146667pt;}
.yfe{bottom:378.946667pt;}
.y1ea{bottom:380.066667pt;}
.y1a4{bottom:380.866667pt;}
.y37{bottom:381.826667pt;}
.y154{bottom:384.546667pt;}
.yb2{bottom:386.466667pt;}
.y72{bottom:386.946667pt;}
.yfd{bottom:391.266667pt;}
.y1e9{bottom:392.386667pt;}
.y1a3{bottom:393.026667pt;}
.y36{bottom:397.186667pt;}
.yac{bottom:398.626667pt;}
.y153{bottom:399.906667pt;}
.y71{bottom:402.306667pt;}
.yfc{bottom:403.586667pt;}
.y1e8{bottom:404.706667pt;}
.y1a2{bottom:405.346667pt;}
.yaf{bottom:410.946667pt;}
.y35{bottom:412.546667pt;}
.y152{bottom:415.106667pt;}
.yf9{bottom:415.746667pt;}
.y1e7{bottom:416.866667pt;}
.y70{bottom:417.506667pt;}
.y1a1{bottom:417.666667pt;}
.yae{bottom:423.266667pt;}
.y121{bottom:426.626667pt;}
.y2f{bottom:426.946667pt;}
.yf8{bottom:428.066667pt;}
.y1e6{bottom:429.186667pt;}
.y151{bottom:429.826667pt;}
.y182{bottom:432.226667pt;}
.y6f{bottom:432.866667pt;}
.ya9{bottom:435.426667pt;}
.y21b{bottom:438.786667pt;}
.yf7{bottom:441.026667pt;}
.y1e5{bottom:441.506667pt;}
.y1a0{bottom:442.146667pt;}
.y150{bottom:442.786667pt;}
.y181{bottom:444.546667pt;}
.yab{bottom:447.746667pt;}
.y6e{bottom:448.226667pt;}
.y211{bottom:452.546667pt;}
.yf6{bottom:453.186667pt;}
.y1e4{bottom:453.666667pt;}
.y19f{bottom:454.306667pt;}
.y180{bottom:457.346667pt;}
.y14f{bottom:458.146667pt;}
.ya4{bottom:460.066667pt;}
.y6d{bottom:463.586667pt;}
.y1e3{bottom:465.986667pt;}
.y19e{bottom:466.626667pt;}
.ya8{bottom:472.226667pt;}
.y17f{bottom:472.706667pt;}
.y14e{bottom:473.346667pt;}
.y1e2{bottom:478.306667pt;}
.y6c{bottom:478.946667pt;}
.yf5{bottom:483.746667pt;}
.ya7{bottom:484.546667pt;}
.y17e{bottom:488.066667pt;}
.y14d{bottom:488.706667pt;}
.y1e1{bottom:490.466667pt;}
.y19d{bottom:491.106667pt;}
.y6b{bottom:493.506667pt;}
.yf4{bottom:496.066667pt;}
.ya2{bottom:497.506667pt;}
.y1e0{bottom:502.786667pt;}
.y17d{bottom:503.426667pt;}
.y14c{bottom:504.066667pt;}
.y6a{bottom:506.466667pt;}
.y1df{bottom:515.106667pt;}
.y19c{bottom:515.746667pt;}
.y17c{bottom:518.786667pt;}
.y14b{bottom:519.426667pt;}
.y69{bottom:521.826667pt;}
.yf3{bottom:523.586667pt;}
.y1de{bottom:527.266667pt;}
.y19b{bottom:527.906667pt;}
.y15{bottom:528.226667pt;}
.ya1{bottom:528.546667pt;}
.yf2{bottom:533.666667pt;}
.y17b{bottom:534.146667pt;}
.y14a{bottom:534.786667pt;}
.y68{bottom:537.186667pt;}
.y1dd{bottom:539.586667pt;}
.y19a{bottom:540.226667pt;}
.ya0{bottom:543.906667pt;}
.y17a{bottom:549.346667pt;}
.y149{bottom:549.506667pt;}
.y1dc{bottom:551.906667pt;}
.y67{bottom:552.546667pt;}
.y9f{bottom:559.266667pt;}
.y120{bottom:562.306667pt;}
.y1db{bottom:564.066667pt;}
.y179{bottom:564.706667pt;}
.y66{bottom:567.746667pt;}
.y9e{bottom:574.653333pt;}
.y1da{bottom:576.413333pt;}
.y199{bottom:577.053333pt;}
.y148{bottom:577.693333pt;}
.y178{bottom:580.093333pt;}
.y65{bottom:583.133333pt;}
.y1d9{bottom:588.733333pt;}
.y198{bottom:589.373333pt;}
.y9d{bottom:590.013333pt;}
.y11f{bottom:592.733333pt;}
.y147{bottom:593.053333pt;}
.y177{bottom:595.453333pt;}
.y64{bottom:597.853333pt;}
.y1d8{bottom:600.893333pt;}
.y197{bottom:601.533333pt;}
.y11e{bottom:605.053333pt;}
.y20f{bottom:605.213333pt;}
.y9c{bottom:605.373333pt;}
.y17{bottom:606.813333pt;}
.y146{bottom:608.413333pt;}
.y63{bottom:610.813333pt;}
.y1d7{bottom:613.213333pt;}
.y196{bottom:613.853333pt;}
.y11d{bottom:618.013333pt;}
.y20b{bottom:619.133333pt;}
.y9b{bottom:620.573333pt;}
.y145{bottom:623.773333pt;}
.y1d6{bottom:625.533333pt;}
.y62{bottom:626.173333pt;}
.y11c{bottom:633.373333pt;}
.y9a{bottom:635.933333pt;}
.y1d5{bottom:637.693333pt;}
.y195{bottom:638.333333pt;}
.y144{bottom:638.973333pt;}
.y61{bottom:641.373333pt;}
.y11b{bottom:648.573333pt;}
.y1d4{bottom:650.013333pt;}
.y99{bottom:651.293333pt;}
.y143{bottom:654.333333pt;}
.y60{bottom:656.733333pt;}
.y1d3{bottom:662.333333pt;}
.y11a{bottom:663.933333pt;}
.y98{bottom:666.653333pt;}
.yde{bottom:669.533333pt;}
.y142{bottom:669.693333pt;}
.y5f{bottom:672.093333pt;}
.y1d2{bottom:674.493333pt;}
.y119{bottom:679.293333pt;}
.ydd{bottom:681.693333pt;}
.y97{bottom:682.013333pt;}
.y141{bottom:685.053333pt;}
.y1d1{bottom:686.813333pt;}
.y5e{bottom:687.453333pt;}
.y118{bottom:694.013333pt;}
.ydc{bottom:694.653333pt;}
.y96{bottom:697.373333pt;}
.y1d0{bottom:699.133333pt;}
.y140{bottom:700.413333pt;}
.y5d{bottom:702.173333pt;}
.y176{bottom:702.813333pt;}
.y117{bottom:706.333333pt;}
.ydb{bottom:710.013333pt;}
.y1cf{bottom:711.293333pt;}
.y95{bottom:712.573333pt;}
.y5c{bottom:714.333333pt;}
.y13f{bottom:715.773333pt;}
.y116{bottom:716.893333pt;}
.y175{bottom:718.173333pt;}
.y1ce{bottom:723.613333pt;}
.yda{bottom:725.213333pt;}
.y5b{bottom:727.293333pt;}
.y94{bottom:727.933333pt;}
.y10{bottom:729.053333pt;}
.y115{bottom:729.213333pt;}
.y13e{bottom:730.973333pt;}
.y174{bottom:733.373333pt;}
.y1cd{bottom:735.773333pt;}
.yd9{bottom:740.573333pt;}
.y114{bottom:741.533333pt;}
.y5a{bottom:742.653333pt;}
.y93{bottom:743.293333pt;}
.y13d{bottom:746.333333pt;}
.yf1{bottom:746.493333pt;}
.y1cc{bottom:748.093333pt;}
.y173{bottom:748.413333pt;}
.y113{bottom:753.693333pt;}
.y59{bottom:758.013333pt;}
.y92{bottom:758.653333pt;}
.yf0{bottom:758.813333pt;}
.y1cb{bottom:760.413333pt;}
.y13c{bottom:761.693333pt;}
.y172{bottom:762.333333pt;}
.y112{bottom:766.013333pt;}
.yd8{bottom:767.613333pt;}
.y1ca{bottom:772.573333pt;}
.y58{bottom:773.213333pt;}
.y91{bottom:774.013333pt;}
.y171{bottom:776.413333pt;}
.y13b{bottom:777.053333pt;}
.yd7{bottom:778.333333pt;}
.y1c9{bottom:784.893333pt;}
.yef{bottom:786.333333pt;}
.y57{bottom:788.573333pt;}
.y90{bottom:789.213333pt;}
.yd6{bottom:790.493333pt;}
.y170{bottom:791.613333pt;}
.y13a{bottom:792.413333pt;}
.yee{bottom:796.453333pt;}
.y1c8{bottom:797.253333pt;}
.yd5{bottom:802.853333pt;}
.y56{bottom:803.973333pt;}
.y8f{bottom:804.613333pt;}
.y139{bottom:807.013333pt;}
.y1c7{bottom:809.413333pt;}
.yd4{bottom:815.173333pt;}
.y55{bottom:819.333333pt;}
.y8e{bottom:819.973333pt;}
.y1c6{bottom:821.733333pt;}
.ye{bottom:822.373333pt;}
.yd3{bottom:827.333333pt;}
.y1c5{bottom:834.053333pt;}
.y54{bottom:834.693333pt;}
.y8d{bottom:835.333333pt;}
.y16f{bottom:837.733333pt;}
.yd2{bottom:839.653333pt;}
.y1c4{bottom:846.213333pt;}
.y20a{bottom:847.013333pt;}
.y53{bottom:850.053333pt;}
.yd{bottom:850.693333pt;}
.yd1{bottom:851.973333pt;}
.y16e{bottom:853.093333pt;}
.y1c3{bottom:858.533333pt;}
.y209{bottom:859.173333pt;}
.yd0{bottom:864.133333pt;}
.y52{bottom:865.253333pt;}
.yc{bottom:866.053333pt;}
.y16d{bottom:868.453333pt;}
.y1c2{bottom:870.853333pt;}
.y208{bottom:871.493333pt;}
.ycf{bottom:876.453333pt;}
.yb{bottom:880.613333pt;}
.y8c{bottom:881.253333pt;}
.y1c1{bottom:883.013333pt;}
.y16c{bottom:883.653333pt;}
.y207{bottom:883.813333pt;}
.yce{bottom:888.773333pt;}
.ya{bottom:893.573333pt;}
.y1c0{bottom:895.333333pt;}
.y51{bottom:895.973333pt;}
.y8b{bottom:896.613333pt;}
.y16b{bottom:899.013333pt;}
.ycd{bottom:900.933333pt;}
.y1bf{bottom:907.653333pt;}
.y206{bottom:908.293333pt;}
.y9{bottom:908.933333pt;}
.y50{bottom:911.333333pt;}
.y8a{bottom:911.973333pt;}
.ycc{bottom:913.253333pt;}
.y16a{bottom:914.373333pt;}
.y1be{bottom:919.813333pt;}
.y205{bottom:920.613333pt;}
.y8{bottom:924.293333pt;}
.ycb{bottom:925.573333pt;}
.y4f{bottom:926.693333pt;}
.y89{bottom:927.333333pt;}
.y169{bottom:929.733333pt;}
.y1bd{bottom:932.133333pt;}
.y204{bottom:932.773333pt;}
.yca{bottom:937.733333pt;}
.y7{bottom:941.413333pt;}
.y4e{bottom:942.053333pt;}
.y88{bottom:942.693333pt;}
.y1bc{bottom:944.453333pt;}
.y168{bottom:945.093333pt;}
.yc9{bottom:950.053333pt;}
.y1bb{bottom:956.613333pt;}
.y4d{bottom:957.253333pt;}
.y203{bottom:957.413333pt;}
.y87{bottom:958.053333pt;}
.y167{bottom:960.453333pt;}
.yc8{bottom:962.373333pt;}
.y111{bottom:963.013333pt;}
.y6{bottom:965.893333pt;}
.y1ba{bottom:968.933333pt;}
.y202{bottom:969.573333pt;}
.y4c{bottom:972.613333pt;}
.y86{bottom:973.253333pt;}
.yc7{bottom:974.533333pt;}
.y166{bottom:975.013333pt;}
.y1b9{bottom:981.253333pt;}
.y201{bottom:981.893333pt;}
.yc6{bottom:987.493333pt;}
.y4b{bottom:987.973333pt;}
.y4{bottom:988.613333pt;}
.y1b8{bottom:993.413333pt;}
.y200{bottom:994.213333pt;}
.y4a{bottom:1003.333333pt;}
.y3{bottom:1003.973333pt;}
.y1b7{bottom:1005.733333pt;}
.y1ff{bottom:1006.373333pt;}
.y2{bottom:1019.360000pt;}
.y85{bottom:1031.680000pt;}
.y49{bottom:1032.000000pt;}
.y1{bottom:1034.720000pt;}
.h15{height:12.160000pt;}
.h22{height:12.192000pt;}
.h17{height:12.320000pt;}
.h19{height:12.320133pt;}
.h1b{height:12.352000pt;}
.h2d{height:13.760000pt;}
.h2b{height:13.920000pt;}
.h12{height:15.200000pt;}
.h14{height:15.360000pt;}
.h7{height:23.360000pt;}
.h20{height:24.480000pt;}
.h18{height:24.640000pt;}
.h16{height:36.800000pt;}
.h29{height:42.063437pt;}
.h6{height:42.084375pt;}
.h21{height:42.381250pt;}
.h1c{height:43.215000pt;}
.hf{height:47.085938pt;}
.hc{height:47.109375pt;}
.h13{height:47.621250pt;}
.h27{height:48.375000pt;}
.h4{height:52.108438pt;}
.h3{height:52.134375pt;}
.h1f{height:52.457417pt;}
.h1e{height:52.478750pt;}
.h2{height:53.535000pt;}
.h11{height:55.298750pt;}
.h1d{height:61.280000pt;}
.h8{height:62.812500pt;}
.h26{height:65.781915pt;}
.h1a{height:73.632000pt;}
.h28{height:76.640000pt;}
.he{height:77.792000pt;}
.h5{height:85.785000pt;}
.h24{height:85.792000pt;}
.h9{height:92.672000pt;}
.h25{height:98.240000pt;}
.h10{height:100.640000pt;}
.h23{height:135.040000pt;}
.h2a{height:152.000000pt;}
.h2e{height:152.026667pt;}
.h2c{height:152.666667pt;}
.hd{height:200.186667pt;}
.hb{height:214.906667pt;}
.ha{height:293.506667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:18.720000pt;}
.w8{width:26.560000pt;}
.w7{width:26.720000pt;}
.w26{width:31.200000pt;}
.w20{width:31.360000pt;}
.w25{width:31.392000pt;}
.w21{width:31.680000pt;}
.w22{width:32.000000pt;}
.w27{width:32.032000pt;}
.w28{width:32.160000pt;}
.w24{width:32.320000pt;}
.w23{width:32.480000pt;}
.w1c{width:57.632000pt;}
.w1b{width:58.720000pt;}
.w1a{width:61.120000pt;}
.w18{width:64.640000pt;}
.w13{width:66.592000pt;}
.w19{width:67.712000pt;}
.w1e{width:78.080000pt;}
.we{width:78.112000pt;}
.w12{width:82.880000pt;}
.w11{width:91.552000pt;}
.wb{width:104.032000pt;}
.w10{width:109.120000pt;}
.wf{width:112.992000pt;}
.w17{width:116.512000pt;}
.w16{width:119.840000pt;}
.w2c{width:128.480000pt;}
.w15{width:132.352000pt;}
.w9{width:138.746667pt;}
.w1f{width:140.666667pt;}
.wc{width:163.866667pt;}
.w2b{width:176.506667pt;}
.w3{width:185.786667pt;}
.w1d{width:188.666667pt;}
.w29{width:190.906667pt;}
.wa{width:198.426667pt;}
.w14{width:205.146667pt;}
.w2a{width:217.146667pt;}
.wd{width:236.826667pt;}
.w5{width:385.186667pt;}
.w2d{width:471.773333pt;}
.w6{width:589.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:5.120000pt;}
.x7{left:7.200000pt;}
.x54{left:8.480000pt;}
.x9{left:9.440000pt;}
.x28{left:10.720000pt;}
.x24{left:13.600000pt;}
.x41{left:15.720000pt;}
.x18{left:16.800000pt;}
.x33{left:18.120000pt;}
.x3c{left:19.200000pt;}
.x3d{left:20.320000pt;}
.x16{left:21.280000pt;}
.x3f{left:22.560000pt;}
.x26{left:24.000000pt;}
.x2c{left:26.266667pt;}
.x35{left:28.826667pt;}
.x2b{left:32.320000pt;}
.x34{left:35.040000pt;}
.x32{left:38.720000pt;}
.x30{left:40.320000pt;}
.x2f{left:41.280000pt;}
.x31{left:43.066667pt;}
.x36{left:44.320000pt;}
.x2e{left:45.786667pt;}
.x12{left:50.880000pt;}
.x2d{left:54.560000pt;}
.x1b{left:62.240000pt;}
.x58{left:64.154667pt;}
.x39{left:84.154667pt;}
.x14{left:86.400000pt;}
.x1d{left:89.946667pt;}
.xb{left:94.880000pt;}
.x46{left:106.272000pt;}
.x6{left:111.552000pt;}
.x1{left:113.471988pt;}
.x38{left:119.552000pt;}
.x56{left:121.114667pt;}
.x2{left:127.071988pt;}
.xf{left:132.991988pt;}
.xe{left:137.466655pt;}
.x1f{left:141.946655pt;}
.xd{left:161.466655pt;}
.x1a{left:166.906667pt;}
.x23{left:174.906667pt;}
.x11{left:185.786667pt;}
.x37{left:194.746655pt;}
.x3{left:196.026655pt;}
.x19{left:229.786655pt;}
.x57{left:234.746667pt;}
.x5{left:242.586655pt;}
.x43{left:244.186667pt;}
.x47{left:246.946667pt;}
.x48{left:278.306667pt;}
.x25{left:287.906667pt;}
.x8{left:297.346667pt;}
.x44{left:301.826667pt;}
.x55{left:305.026667pt;}
.x49{left:309.986667pt;}
.xa{left:316.066667pt;}
.x13{left:324.546667pt;}
.x1c{left:330.786667pt;}
.x4a{left:341.986667pt;}
.x4b{left:374.466667pt;}
.xc{left:377.986667pt;}
.x3e{left:389.346667pt;}
.x27{left:397.026667pt;}
.x4{left:406.466655pt;}
.x4c{left:438.173333pt;}
.x3a{left:457.053333pt;}
.x4d{left:469.533333pt;}
.x29{left:488.573333pt;}
.x45{left:490.493333pt;}
.x4e{left:500.893333pt;}
.x40{left:518.173333pt;}
.x15{left:522.973333pt;}
.x4f{left:532.093333pt;}
.x50{left:563.453333pt;}
.x1e{left:567.613333pt;}
.x2a{left:571.453333pt;}
.x3b{left:576.893333pt;}
.x22{left:589.413322pt;}
.x51{left:595.493333pt;}
.x20{left:622.533322pt;}
.x21{left:623.493322pt;}
.x52{left:627.653333pt;}
.x42{left:634.533333pt;}
.x53{left:659.013333pt;}
.x10{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; }
  