
    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_6a41618d8ec2feb554b4b4e0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120117;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_cca6aef3a514bb1d18960cfa.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.113281;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_995eaa057804242f773dbce0.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d7009e92403976bec5e5bc81.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_6518b897be2c4c02697da400.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e0e0e108feb1b1578cbaf1b8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_d3dd4b4176eef9374026047e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.691406;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_5254b0b6120b47f786a12fba.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.111816;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_a2481d926d775af497d7e246.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.111816;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_97126eaa2bd561d577b37886.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.107422;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_364e7e2ccde6ae5f67cd16a8.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.107422;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:ffd;src:url('chunks/assets/font_2daa6703eb2e0dba78e15c44.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.694336;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:ffe;src:url('chunks/assets/font_80335344afc58d27f5af09b0.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.120117;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:-84.240000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.000000px;}
.ls16{letter-spacing:-0.936000px;}
.ls32{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.678000px;}
.ls5{letter-spacing:-0.576000px;}
.ls21{letter-spacing:-0.504000px;}
.lsd{letter-spacing:-0.432000px;}
.ls17{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.209400px;}
.ls9{letter-spacing:-0.198600px;}
.ls8{letter-spacing:-0.144000px;}
.ls2{letter-spacing:-0.106800px;}
.lsa{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.017280px;}
.lsf{letter-spacing:0.034560px;}
.ls12{letter-spacing:0.036000px;}
.ls7{letter-spacing:0.043200px;}
.ls1d{letter-spacing:0.045360px;}
.ls2e{letter-spacing:0.072000px;}
.ls1c{letter-spacing:0.109200px;}
.ls20{letter-spacing:0.109440px;}
.ls4{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.216000px;}
.ls18{letter-spacing:0.241200px;}
.ls6{letter-spacing:0.288000px;}
.ls1b{letter-spacing:0.305400px;}
.ls2d{letter-spacing:0.468000px;}
.ls24{letter-spacing:0.576000px;}
.ls2b{letter-spacing:1.584000px;}
.ls1e{letter-spacing:2.304000px;}
.ls2c{letter-spacing:2.484000px;}
.ls1f{letter-spacing:3.654720px;}
.ls28{letter-spacing:3.744000px;}
.ls22{letter-spacing:5.904000px;}
.ls14{letter-spacing:10.944000px;}
.ls26{letter-spacing:11.664000px;}
.ls25{letter-spacing:13.608000px;}
.ls27{letter-spacing:15.264000px;}
.ls2a{letter-spacing:16.704000px;}
.ls29{letter-spacing:18.144000px;}
.ls10{letter-spacing:21.185280px;}
.ls31{letter-spacing:24.624000px;}
.ls23{letter-spacing:29.664000px;}
.ls19{letter-spacing:35.424000px;}
.ls13{letter-spacing:39.000000px;}
.ls1a{letter-spacing:39.024000px;}
.lse{letter-spacing:44.201280px;}
.ls15{letter-spacing:54.864000px;}
.ls2f{letter-spacing:64.944000px;}
.ls30{letter-spacing:74.304000px;}
.ls0{letter-spacing:370.056000px;}
.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;}
}
.ws1a{word-spacing:-77.760000px;}
.wsf{word-spacing:-72.000000px;}
.wsa{word-spacing:-16.704000px;}
.ws10{word-spacing:-16.632000px;}
.ws17{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.506480px;}
.ws19{word-spacing:-16.488000px;}
.wsc{word-spacing:-16.416000px;}
.ws7{word-spacing:-16.344000px;}
.ws4{word-spacing:-16.272000px;}
.ws11{word-spacing:-16.200000px;}
.wsb{word-spacing:-15.984000px;}
.ws15{word-spacing:-15.912000px;}
.ws3{word-spacing:-15.840000px;}
.wse{word-spacing:-15.137280px;}
.wsd{word-spacing:-15.102720px;}
.ws13{word-spacing:-13.734480px;}
.ws16{word-spacing:-13.625280px;}
.ws14{word-spacing:-13.456080px;}
.ws12{word-spacing:-13.410720px;}
.ws18{word-spacing:-12.312000px;}
.ws2{word-spacing:-12.204000px;}
.ws8{word-spacing:-11.041920px;}
.ws5{word-spacing:-10.998720px;}
.ws6{word-spacing:-10.800120px;}
.ws9{word-spacing:-10.320720px;}
.ws1{word-spacing:0.000000px;}
._18{margin-left:-16.560000px;}
._11{margin-left:-3.346560px;}
._1c{margin-left:-2.345040px;}
._1{margin-left:-1.080000px;}
._0{width:1.007424px;}
._4{width:2.880000px;}
._b{width:4.608000px;}
._a{width:5.664000px;}
._f{width:7.488000px;}
._8{width:8.928000px;}
._9{width:9.960576px;}
._10{width:11.100000px;}
._d{width:12.384000px;}
._c{width:13.392000px;}
._e{width:14.892000px;}
._1d{width:16.235616px;}
._1b{width:17.424000px;}
._1a{width:18.432000px;}
._6{width:19.584000px;}
._19{width:20.592576px;}
._7{width:21.900000px;}
._14{width:23.148576px;}
._5{width:24.852000px;}
._3{width:26.136000px;}
._15{width:27.864000px;}
._17{width:29.064000px;}
._16{width:30.984000px;}
._13{width:32.472000px;}
._20{width:33.768000px;}
._29{width:34.992000px;}
._28{width:36.864000px;}
._27{width:37.944000px;}
._23{width:44.208000px;}
._25{width:46.092000px;}
._24{width:47.664000px;}
._1f{width:60.576576px;}
._1e{width:61.704000px;}
._26{width:91.567176px;}
._12{width:101.897520px;}
._2{width:102.977520px;}
._22{width:120.293616px;}
._21{width:121.392000px;}
.fc6{color:rgb(36,63,96);}
.fc5{color:rgb(192,0,0);}
.fc3{color:rgb(148,54,52);}
.fc1{color:transparent;}
.fc4{color:rgb(89,89,89);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs8{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:77.760000px;}
.fsa{font-size:84.240000px;}
.fs3{font-size:108.000000px;}
.fs4{font-size:108.144000px;}
.fs2{font-size:167.760000px;}
.fs1{font-size:167.904000px;}
.yd4{bottom:-35.835000px;}
.yd3{bottom:-7.395000px;}
.yee{bottom:-0.180000px;}
.y0{bottom:0.000000px;}
.ye2{bottom:2.520000px;}
.ye5{bottom:2.700000px;}
.y18{bottom:3.420000px;}
.y17{bottom:3.600000px;}
.yc2{bottom:9.720000px;}
.yca{bottom:9.885000px;}
.ya1{bottom:9.900000px;}
.ye9{bottom:9.930000px;}
.yde{bottom:14.400000px;}
.yd2{bottom:17.625000px;}
.y16{bottom:21.270000px;}
.yf0{bottom:30.240000px;}
.yc7{bottom:30.765000px;}
.y10d{bottom:31.320000px;}
.yc9{bottom:38.505000px;}
.ya0{bottom:38.520000px;}
.yea{bottom:38.550000px;}
.ycc{bottom:38.685000px;}
.yc4{bottom:38.700000px;}
.ye8{bottom:38.730000px;}
.ydd{bottom:40.860000px;}
.y15{bottom:42.510000px;}
.yd1{bottom:46.245000px;}
.y109{bottom:53.460000px;}
.yc6{bottom:59.925000px;}
.y14{bottom:63.210000px;}
.y10c{bottom:64.980000px;}
.ydc{bottom:69.660000px;}
.y13{bottom:82.650000px;}
.y12{bottom:99.750000px;}
.y108{bottom:102.060000px;}
.y107{bottom:102.600000px;}
.y9f{bottom:105.300000px;}
.ya2{bottom:106.200000px;}
.y3e{bottom:110.520000px;}
.y1e8{bottom:115.200000px;}
.y11{bottom:117.030000px;}
.y10{bottom:117.210000px;}
.y106{bottom:122.760000px;}
.y145{bottom:127.620000px;}
.y1d3{bottom:128.160000px;}
.y15e{bottom:130.140000px;}
.y1b7{bottom:131.040000px;}
.y1a3{bottom:132.480000px;}
.y10a{bottom:133.560000px;}
.yf{bottom:135.030000px;}
.yc0{bottom:135.540000px;}
.y5d{bottom:136.260000px;}
.y9e{bottom:136.800000px;}
.y10b{bottom:137.910000px;}
.y80{bottom:139.500000px;}
.y3d{bottom:140.040000px;}
.y1e7{bottom:146.160000px;}
.y184{bottom:148.680000px;}
.ydb{bottom:149.400000px;}
.y122{bottom:152.280000px;}
.y105{bottom:153.720000px;}
.ye{bottom:157.710000px;}
.y144{bottom:158.580000px;}
.y1d2{bottom:159.120000px;}
.y15d{bottom:161.100000px;}
.y1b6{bottom:162.180000px;}
.y1a2{bottom:163.440000px;}
.y16e{bottom:163.620000px;}
.y5c{bottom:164.700000px;}
.y1a8{bottom:166.320000px;}
.ybf{bottom:166.680000px;}
.y9d{bottom:167.760000px;}
.y7f{bottom:170.460000px;}
.y3c{bottom:171.000000px;}
.y1e6{bottom:177.120000px;}
.y183{bottom:179.640000px;}
.ydf{bottom:180.000000px;}
.ye0{bottom:180.900000px;}
.y121{bottom:183.240000px;}
.y104{bottom:184.680000px;}
.yd{bottom:188.670000px;}
.y143{bottom:189.540000px;}
.y1d1{bottom:190.080000px;}
.y15c{bottom:192.060000px;}
.y1b5{bottom:193.140000px;}
.y5b{bottom:194.220000px;}
.y1a1{bottom:194.400000px;}
.y16d{bottom:194.760000px;}
.y1a7{bottom:197.280000px;}
.ybe{bottom:197.640000px;}
.y9c{bottom:198.720000px;}
.y7e{bottom:201.420000px;}
.y3b{bottom:201.960000px;}
.y1e5{bottom:208.080000px;}
.y182{bottom:210.600000px;}
.y120{bottom:214.380000px;}
.y103{bottom:215.640000px;}
.yc{bottom:219.810000px;}
.y142{bottom:220.500000px;}
.y1d0{bottom:221.040000px;}
.y15b{bottom:223.020000px;}
.y5a{bottom:224.100000px;}
.y1a0{bottom:224.280000px;}
.y16c{bottom:225.720000px;}
.y5{bottom:226.620000px;}
.y3{bottom:226.800000px;}
.y1a6{bottom:228.240000px;}
.ybd{bottom:228.600000px;}
.y9b{bottom:229.860000px;}
.y7d{bottom:232.410000px;}
.y3a{bottom:232.950000px;}
.y1e4{bottom:239.070000px;}
.y181{bottom:241.590000px;}
.y102{bottom:244.290000px;}
.y11f{bottom:245.370000px;}
.y123{bottom:246.645000px;}
.yb{bottom:250.815000px;}
.y141{bottom:251.490000px;}
.y1cf{bottom:252.030000px;}
.y59{bottom:253.650000px;}
.y15a{bottom:254.010000px;}
.y1b4{bottom:255.090000px;}
.y19f{bottom:255.270000px;}
.y16b{bottom:256.710000px;}
.y1a5{bottom:258.150000px;}
.ybc{bottom:259.590000px;}
.y9a{bottom:260.850000px;}
.y7c{bottom:263.370000px;}
.y39{bottom:263.910000px;}
.y1e3{bottom:270.030000px;}
.y101{bottom:270.210000px;}
.y180{bottom:272.730000px;}
.y11e{bottom:276.330000px;}
.ya{bottom:281.955000px;}
.y140{bottom:282.450000px;}
.y1ce{bottom:283.170000px;}
.y58{bottom:284.610000px;}
.y159{bottom:285.150000px;}
.y1b3{bottom:286.050000px;}
.y19e{bottom:286.230000px;}
.y1a4{bottom:286.590000px;}
.y16a{bottom:287.670000px;}
.ybb{bottom:290.550000px;}
.y99{bottom:291.810000px;}
.y7b{bottom:294.330000px;}
.y38{bottom:294.870000px;}
.y100{bottom:295.950000px;}
.yd7{bottom:298.125000px;}
.yd5{bottom:300.105000px;}
.yd6{bottom:300.645000px;}
.y1e2{bottom:300.990000px;}
.yd0{bottom:302.625000px;}
.yc5{bottom:302.805000px;}
.y17f{bottom:303.690000px;}
.yf2{bottom:304.425000px;}
.y11d{bottom:307.290000px;}
.y13f{bottom:313.410000px;}
.y57{bottom:315.570000px;}
.y158{bottom:316.110000px;}
.y1b2{bottom:317.010000px;}
.y19d{bottom:317.190000px;}
.y9{bottom:317.415000px;}
.y169{bottom:318.630000px;}
.yc8{bottom:321.345000px;}
.yba{bottom:321.510000px;}
.yff{bottom:321.870000px;}
.ycb{bottom:322.605000px;}
.y98{bottom:322.770000px;}
.y7a{bottom:325.290000px;}
.y37{bottom:325.830000px;}
.y1cd{bottom:329.070000px;}
.y1e1{bottom:331.950000px;}
.y17e{bottom:334.650000px;}
.y11c{bottom:338.250000px;}
.y13e{bottom:344.370000px;}
.y56{bottom:345.450000px;}
.y157{bottom:347.070000px;}
.yfe{bottom:347.610000px;}
.y1b1{bottom:347.970000px;}
.y19c{bottom:348.150000px;}
.y168{bottom:349.590000px;}
.yb9{bottom:352.470000px;}
.y97{bottom:353.730000px;}
.y79{bottom:356.250000px;}
.y36{bottom:356.970000px;}
.y1cc{bottom:360.030000px;}
.y1e0{bottom:363.090000px;}
.y17d{bottom:365.610000px;}
.y11b{bottom:369.210000px;}
.y8{bottom:369.975000px;}
.yfd{bottom:373.530000px;}
.y55{bottom:374.970000px;}
.y13d{bottom:375.510000px;}
.y156{bottom:378.030000px;}
.y1b0{bottom:378.930000px;}
.y19b{bottom:379.110000px;}
.y167{bottom:380.550000px;}
.yb8{bottom:383.430000px;}
.y96{bottom:384.690000px;}
.y78{bottom:387.390000px;}
.y35{bottom:387.930000px;}
.y1cb{bottom:390.990000px;}
.y1df{bottom:394.050000px;}
.y17c{bottom:396.570000px;}
.y11a{bottom:398.010000px;}
.yfc{bottom:399.270000px;}
.y54{bottom:405.930000px;}
.y13c{bottom:406.470000px;}
.y155{bottom:408.990000px;}
.y1af{bottom:409.890000px;}
.y19a{bottom:410.250000px;}
.y166{bottom:411.510000px;}
.yb7{bottom:414.390000px;}
.yeb{bottom:414.570000px;}
.y95{bottom:415.650000px;}
.y77{bottom:418.350000px;}
.y34{bottom:418.890000px;}
.y1ca{bottom:421.950000px;}
.y7{bottom:422.535000px;}
.y6{bottom:422.715000px;}
.y119{bottom:423.750000px;}
.yfb{bottom:425.010000px;}
.y17b{bottom:427.530000px;}
.y53{bottom:436.890000px;}
.y13b{bottom:437.430000px;}
.y154{bottom:439.950000px;}
.y1ae{bottom:441.030000px;}
.y199{bottom:441.210000px;}
.y165{bottom:442.470000px;}
.yb6{bottom:445.530000px;}
.y94{bottom:446.610000px;}
.y76{bottom:449.310000px;}
.y118{bottom:449.490000px;}
.y33{bottom:449.850000px;}
.yfa{bottom:450.930000px;}
.y1c9{bottom:452.910000px;}
.y1de{bottom:455.970000px;}
.ye7{bottom:456.705000px;}
.y17a{bottom:458.490000px;}
.yf1{bottom:462.285000px;}
.y52{bottom:466.815000px;}
.y13a{bottom:468.435000px;}
.y153{bottom:470.955000px;}
.y1ad{bottom:472.035000px;}
.y198{bottom:472.215000px;}
.y164{bottom:473.655000px;}
.y4{bottom:474.945000px;}
.y117{bottom:475.455000px;}
.yb5{bottom:476.535000px;}
.yf9{bottom:476.715000px;}
.y93{bottom:477.795000px;}
.y75{bottom:480.315000px;}
.y32{bottom:480.855000px;}
.y1c8{bottom:484.095000px;}
.y1d6{bottom:486.975000px;}
.y179{bottom:489.495000px;}
.y51{bottom:495.255000px;}
.y139{bottom:499.395000px;}
.y116{bottom:501.195000px;}
.y152{bottom:501.915000px;}
.yf8{bottom:502.635000px;}
.y1ac{bottom:502.995000px;}
.y197{bottom:503.175000px;}
.y163{bottom:504.615000px;}
.yb4{bottom:507.495000px;}
.y92{bottom:508.755000px;}
.y74{bottom:511.275000px;}
.y31{bottom:511.815000px;}
.y1c7{bottom:515.055000px;}
.y1d5{bottom:517.935000px;}
.y178{bottom:520.635000px;}
.y50{bottom:524.775000px;}
.y115{bottom:527.115000px;}
.yf7{bottom:528.375000px;}
.y138{bottom:530.355000px;}
.y151{bottom:533.055000px;}
.y1ab{bottom:533.955000px;}
.y196{bottom:534.135000px;}
.y162{bottom:535.575000px;}
.yb3{bottom:538.455000px;}
.y91{bottom:539.715000px;}
.y73{bottom:542.235000px;}
.y30{bottom:542.775000px;}
.y1c6{bottom:546.015000px;}
.y1d4{bottom:548.895000px;}
.y177{bottom:551.595000px;}
.y114{bottom:552.855000px;}
.yf6{bottom:554.295000px;}
.y4f{bottom:555.735000px;}
.y137{bottom:561.315000px;}
.y150{bottom:564.015000px;}
.y195{bottom:565.095000px;}
.y161{bottom:566.535000px;}
.yb2{bottom:569.415000px;}
.y90{bottom:570.675000px;}
.y72{bottom:573.195000px;}
.y2f{bottom:573.735000px;}
.ye1{bottom:574.815000px;}
.y1c5{bottom:576.975000px;}
.y113{bottom:578.775000px;}
.yed{bottom:578.955000px;}
.y1aa{bottom:579.855000px;}
.yf5{bottom:580.035000px;}
.y176{bottom:582.555000px;}
.y4e{bottom:586.695000px;}
.y136{bottom:592.275000px;}
.y14f{bottom:594.975000px;}
.y194{bottom:596.055000px;}
.y160{bottom:597.495000px;}
.yb1{bottom:600.375000px;}
.y8f{bottom:601.635000px;}
.y71{bottom:604.155000px;}
.yf4{bottom:604.335000px;}
.y112{bottom:604.515000px;}
.y2e{bottom:604.875000px;}
.y1c4{bottom:607.935000px;}
.y1a9{bottom:610.995000px;}
.y175{bottom:612.435000px;}
.y4d{bottom:616.575000px;}
.y135{bottom:623.415000px;}
.ye4{bottom:625.935000px;}
.y193{bottom:627.015000px;}
.y15f{bottom:627.375000px;}
.y192{bottom:628.455000px;}
.y111{bottom:628.815000px;}
.yb0{bottom:631.335000px;}
.y8e{bottom:632.595000px;}
.y70{bottom:635.115000px;}
.y2d{bottom:635.835000px;}
.y174{bottom:641.955000px;}
.y4c{bottom:646.095000px;}
.y110{bottom:652.035000px;}
.y1c3{bottom:653.835000px;}
.y134{bottom:654.375000px;}
.y14e{bottom:656.895000px;}
.y191{bottom:659.415000px;}
.yaf{bottom:662.295000px;}
.y8d{bottom:663.555000px;}
.y6f{bottom:666.255000px;}
.y2c{bottom:666.795000px;}
.y173{bottom:672.915000px;}
.y10f{bottom:675.255000px;}
.y4b{bottom:677.055000px;}
.y1c2{bottom:684.975000px;}
.y133{bottom:685.335000px;}
.y14d{bottom:687.855000px;}
.y190{bottom:690.375000px;}
.yae{bottom:693.465000px;}
.y8c{bottom:694.545000px;}
.y6e{bottom:697.245000px;}
.y2b{bottom:697.785000px;}
.y10e{bottom:698.505000px;}
.y172{bottom:703.905000px;}
.y4a{bottom:708.045000px;}
.y1c1{bottom:715.965000px;}
.y132{bottom:716.325000px;}
.y14c{bottom:718.845000px;}
.y18f{bottom:721.545000px;}
.yad{bottom:724.425000px;}
.y8b{bottom:725.505000px;}
.y6d{bottom:728.205000px;}
.y2a{bottom:728.745000px;}
.y171{bottom:734.865000px;}
.y49{bottom:739.005000px;}
.y1c0{bottom:746.925000px;}
.y131{bottom:747.285000px;}
.y14b{bottom:749.805000px;}
.yc3{bottom:751.245000px;}
.y18e{bottom:752.505000px;}
.yc1{bottom:754.665000px;}
.yef{bottom:754.845000px;}
.yac{bottom:755.385000px;}
.y8a{bottom:756.645000px;}
.y6c{bottom:759.165000px;}
.y29{bottom:759.705000px;}
.ycd{bottom:763.485000px;}
.ycf{bottom:764.385000px;}
.yce{bottom:764.565000px;}
.y170{bottom:765.825000px;}
.y48{bottom:770.145000px;}
.y1bf{bottom:777.885000px;}
.y130{bottom:778.245000px;}
.y14a{bottom:780.765000px;}
.y18d{bottom:783.465000px;}
.yab{bottom:786.345000px;}
.y89{bottom:787.605000px;}
.y6b{bottom:790.125000px;}
.y28{bottom:790.665000px;}
.y1dd{bottom:796.785000px;}
.y16f{bottom:796.965000px;}
.y47{bottom:801.105000px;}
.y1be{bottom:808.845000px;}
.y12f{bottom:809.205000px;}
.y149{bottom:811.905000px;}
.y18c{bottom:814.425000px;}
.yaa{bottom:817.305000px;}
.yf3{bottom:817.485000px;}
.y88{bottom:818.565000px;}
.y6a{bottom:821.085000px;}
.y27{bottom:821.625000px;}
.y1dc{bottom:827.745000px;}
.y46{bottom:832.065000px;}
.y1bd{bottom:839.805000px;}
.y12e{bottom:840.165000px;}
.y148{bottom:842.865000px;}
.y18b{bottom:845.385000px;}
.ya9{bottom:848.265000px;}
.y87{bottom:849.525000px;}
.y69{bottom:852.045000px;}
.y26{bottom:852.765000px;}
.y1db{bottom:858.705000px;}
.y45{bottom:861.945000px;}
.y1bc{bottom:870.945000px;}
.y12d{bottom:871.125000px;}
.y147{bottom:873.825000px;}
.y18a{bottom:876.345000px;}
.ya8{bottom:879.225000px;}
.y86{bottom:880.485000px;}
.y68{bottom:883.005000px;}
.y25{bottom:883.725000px;}
.y1da{bottom:889.845000px;}
.y44{bottom:891.465000px;}
.ye3{bottom:892.905000px;}
.ye6{bottom:894.705000px;}
.y12c{bottom:903.525000px;}
.y146{bottom:904.785000px;}
.y189{bottom:907.305000px;}
.ya7{bottom:910.185000px;}
.y85{bottom:911.445000px;}
.y67{bottom:914.145000px;}
.y24{bottom:914.685000px;}
.y1bb{bottom:916.845000px;}
.y1d9{bottom:920.805000px;}
.y43{bottom:921.165000px;}
.y12b{bottom:935.790000px;}
.y188{bottom:938.310000px;}
.ya6{bottom:941.190000px;}
.y84{bottom:942.450000px;}
.y66{bottom:945.150000px;}
.y23{bottom:945.690000px;}
.y1ba{bottom:949.290000px;}
.y42{bottom:950.910000px;}
.y1d8{bottom:951.810000px;}
.y12a{bottom:966.750000px;}
.y187{bottom:969.450000px;}
.ya5{bottom:972.330000px;}
.y83{bottom:973.410000px;}
.y65{bottom:976.110000px;}
.y22{bottom:976.650000px;}
.y41{bottom:980.610000px;}
.y1b9{bottom:982.230000px;}
.y1d7{bottom:982.770000px;}
.y129{bottom:997.710000px;}
.y186{bottom:1000.410000px;}
.ya4{bottom:1003.290000px;}
.y82{bottom:1004.550000px;}
.y64{bottom:1007.070000px;}
.y21{bottom:1007.610000px;}
.y40{bottom:1010.130000px;}
.y1b8{bottom:1013.730000px;}
.yec{bottom:1021.110000px;}
.y128{bottom:1028.670000px;}
.y185{bottom:1030.110000px;}
.yda{bottom:1034.250000px;}
.ya3{bottom:1034.430000px;}
.y81{bottom:1035.510000px;}
.y63{bottom:1038.030000px;}
.y20{bottom:1038.570000px;}
.y3f{bottom:1040.010000px;}
.y127{bottom:1059.810000px;}
.yd9{bottom:1065.210000px;}
.y2{bottom:1066.470000px;}
.y62{bottom:1068.990000px;}
.y1f{bottom:1069.530000px;}
.y126{bottom:1090.770000px;}
.y1e{bottom:1090.950000px;}
.yd8{bottom:1096.350000px;}
.y1{bottom:1097.430000px;}
.y61{bottom:1098.870000px;}
.y125{bottom:1112.190000px;}
.y1d{bottom:1112.370000px;}
.y1c{bottom:1133.070000px;}
.y124{bottom:1133.430000px;}
.y60{bottom:1154.880000px;}
.y1b{bottom:1159.200000px;}
.y1a{bottom:1175.040000px;}
.y5f{bottom:1176.840000px;}
.y5e{bottom:1192.680000px;}
.y19{bottom:1193.400000px;}
.h26{height:13.485000px;}
.h20{height:16.185000px;}
.h22{height:16.200000px;}
.h23{height:16.365000px;}
.h28{height:40.822383px;}
.hf{height:43.481953px;}
.h16{height:48.673828px;}
.h10{height:49.113281px;}
.h2c{height:49.122070px;}
.h17{height:50.312812px;}
.h1b{height:51.105000px;}
.h15{height:51.118500px;}
.h18{height:51.120000px;}
.h25{height:51.141000px;}
.h1f{height:51.156000px;}
.h1c{height:51.285000px;}
.h2a{height:51.298500px;}
.h19{height:51.300000px;}
.h24{height:51.321000px;}
.h29{height:53.865703px;}
.h21{height:54.361758px;}
.h1d{height:58.845000px;}
.h12{height:59.706562px;}
.h11{height:60.256406px;}
.h27{height:61.380000px;}
.hc{height:62.327813px;}
.h2f{height:64.582031px;}
.he{height:64.898438px;}
.hd{height:65.003906px;}
.h2{height:65.496094px;}
.h14{height:69.086250px;}
.h2d{height:70.735781px;}
.h1a{height:72.525000px;}
.h6{height:74.004654px;}
.hb{height:75.093750px;}
.h2e{height:75.931172px;}
.h1e{height:82.258500px;}
.h13{height:97.347656px;}
.h9{height:112.640625px;}
.ha{height:112.790813px;}
.h7{height:151.459102px;}
.h4{height:151.589109px;}
.h8{height:174.968437px;}
.h2b{height:277.590000px;}
.h3{height:516.960000px;}
.h5{height:517.080000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1a{width:24.825000px;}
.w1e{width:47.325000px;}
.w1d{width:57.045000px;}
.w17{width:58.129500px;}
.w18{width:72.000000px;}
.w1f{width:173.908500px;}
.w7{width:184.890000px;}
.w9{width:199.873500px;}
.wf{width:250.813500px;}
.w14{width:252.795000px;}
.w12{width:258.690000px;}
.w15{width:264.090000px;}
.wc{width:271.470000px;}
.wd{width:272.190000px;}
.w6{width:275.113500px;}
.w22{width:278.175000px;}
.w8{width:286.275000px;}
.w1b{width:286.815000px;}
.w11{width:287.715000px;}
.w5{width:290.190000px;}
.w10{width:290.220000px;}
.wa{width:294.553500px;}
.wb{width:307.155000px;}
.we{width:312.735000px;}
.w4{width:333.435000px;}
.w13{width:355.200000px;}
.w16{width:376.800000px;}
.w19{width:482.685000px;}
.w23{width:551.115000px;}
.w25{width:592.695000px;}
.w1c{width:608.145000px;}
.w2{width:630.360000px;}
.w3{width:630.450000px;}
.w27{width:654.795000px;}
.w26{width:656.235000px;}
.w24{width:657.675000px;}
.w21{width:678.915000px;}
.w20{width:746.998500px;}
.w28{width:802.980000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x5c{left:-69.120000px;}
.x37{left:-2.520000px;}
.x0{left:0.000000px;}
.x55{left:3.769500px;}
.x5b{left:5.389500px;}
.x4e{left:8.265000px;}
.x3{left:10.836000px;}
.x41{left:12.420000px;}
.x49{left:13.485000px;}
.x16{left:18.721500px;}
.x4b{left:19.801500px;}
.x2d{left:21.421500px;}
.x21{left:22.501500px;}
.x47{left:28.425000px;}
.x30{left:30.990000px;}
.x26{left:34.740000px;}
.x3d{left:36.000000px;}
.x20{left:38.374500px;}
.x2c{left:39.600000px;}
.x51{left:41.400000px;}
.x4a{left:48.274500px;}
.x1a{left:50.070000px;}
.x42{left:51.120000px;}
.x2a{left:53.460000px;}
.x1e{left:57.421500px;}
.x22{left:60.154500px;}
.x17{left:67.714500px;}
.x34{left:68.940000px;}
.x19{left:72.210000px;}
.x52{left:75.240000px;}
.x3b{left:77.250000px;}
.x1f{left:79.594500px;}
.x1d{left:80.850000px;}
.x2{left:91.080000px;}
.x2e{left:102.094500px;}
.x33{left:105.840000px;}
.x38{left:108.720000px;}
.x36{left:110.010000px;}
.x29{left:112.680000px;}
.x12{left:116.280000px;}
.x59{left:117.586500px;}
.x32{left:120.456000px;}
.x1c{left:122.790000px;}
.x14{left:124.740000px;}
.x1{left:127.656000px;}
.x15{left:130.680000px;}
.x24{left:133.230000px;}
.x11{left:146.370000px;}
.x57{left:148.546500px;}
.xa{left:154.650000px;}
.x35{left:156.990000px;}
.x5e{left:158.970000px;}
.x3a{left:170.850000px;}
.xd{left:181.650000px;}
.xe{left:187.050000px;}
.x45{left:189.930000px;}
.x4d{left:192.105000px;}
.x5a{left:207.750000px;}
.x4f{left:213.330000px;}
.x53{left:216.045000px;}
.xf{left:219.450000px;}
.x60{left:235.650000px;}
.x3f{left:241.230000px;}
.x2b{left:279.075000px;}
.x10{left:283.755000px;}
.x43{left:284.835000px;}
.x31{left:290.400000px;}
.x58{left:296.338500px;}
.x23{left:297.435000px;}
.x44{left:311.295000px;}
.x56{left:322.258500px;}
.x3e{left:325.515000px;}
.x54{left:328.560000px;}
.x3c{left:335.775000px;}
.x1b{left:341.355000px;}
.x50{left:350.895000px;}
.x8{left:372.675000px;}
.x5d{left:395.895000px;}
.x46{left:449.580000px;}
.x5f{left:462.525000px;}
.x5{left:482.683500px;}
.x48{left:487.560000px;}
.x39{left:516.180000px;}
.x6{left:537.043500px;}
.x4{left:547.663500px;}
.x2f{left:568.200000px;}
.x4c{left:592.168500px;}
.x13{left:595.590000px;}
.x28{left:617.730000px;}
.x25{left:621.510000px;}
.x40{left:659.490000px;}
.x18{left:690.450000px;}
.x27{left:731.850000px;}
.xc{left:738.360000px;}
.xb{left:741.600000px;}
.x7{left:744.840000px;}
.x9{left:797.580000px;}
@media print{
.v1{vertical-align:-74.880000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.ls16{letter-spacing:-0.832000pt;}
.ls32{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.602667pt;}
.ls5{letter-spacing:-0.512000pt;}
.ls21{letter-spacing:-0.448000pt;}
.lsd{letter-spacing:-0.384000pt;}
.ls17{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.186133pt;}
.ls9{letter-spacing:-0.176533pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:-0.094933pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.015360pt;}
.lsf{letter-spacing:0.030720pt;}
.ls12{letter-spacing:0.032000pt;}
.ls7{letter-spacing:0.038400pt;}
.ls1d{letter-spacing:0.040320pt;}
.ls2e{letter-spacing:0.064000pt;}
.ls1c{letter-spacing:0.097067pt;}
.ls20{letter-spacing:0.097280pt;}
.ls4{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.192000pt;}
.ls18{letter-spacing:0.214400pt;}
.ls6{letter-spacing:0.256000pt;}
.ls1b{letter-spacing:0.271467pt;}
.ls2d{letter-spacing:0.416000pt;}
.ls24{letter-spacing:0.512000pt;}
.ls2b{letter-spacing:1.408000pt;}
.ls1e{letter-spacing:2.048000pt;}
.ls2c{letter-spacing:2.208000pt;}
.ls1f{letter-spacing:3.248640pt;}
.ls28{letter-spacing:3.328000pt;}
.ls22{letter-spacing:5.248000pt;}
.ls14{letter-spacing:9.728000pt;}
.ls26{letter-spacing:10.368000pt;}
.ls25{letter-spacing:12.096000pt;}
.ls27{letter-spacing:13.568000pt;}
.ls2a{letter-spacing:14.848000pt;}
.ls29{letter-spacing:16.128000pt;}
.ls10{letter-spacing:18.831360pt;}
.ls31{letter-spacing:21.888000pt;}
.ls23{letter-spacing:26.368000pt;}
.ls19{letter-spacing:31.488000pt;}
.ls13{letter-spacing:34.666667pt;}
.ls1a{letter-spacing:34.688000pt;}
.lse{letter-spacing:39.290027pt;}
.ls15{letter-spacing:48.768000pt;}
.ls2f{letter-spacing:57.728000pt;}
.ls30{letter-spacing:66.048000pt;}
.ls0{letter-spacing:328.938667pt;}
.ws1a{word-spacing:-69.120000pt;}
.wsf{word-spacing:-64.000000pt;}
.wsa{word-spacing:-14.848000pt;}
.ws10{word-spacing:-14.784000pt;}
.ws17{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.672427pt;}
.ws19{word-spacing:-14.656000pt;}
.wsc{word-spacing:-14.592000pt;}
.ws7{word-spacing:-14.528000pt;}
.ws4{word-spacing:-14.464000pt;}
.ws11{word-spacing:-14.400000pt;}
.wsb{word-spacing:-14.208000pt;}
.ws15{word-spacing:-14.144000pt;}
.ws3{word-spacing:-14.080000pt;}
.wse{word-spacing:-13.455360pt;}
.wsd{word-spacing:-13.424640pt;}
.ws13{word-spacing:-12.208427pt;}
.ws16{word-spacing:-12.111360pt;}
.ws14{word-spacing:-11.960960pt;}
.ws12{word-spacing:-11.920640pt;}
.ws18{word-spacing:-10.944000pt;}
.ws2{word-spacing:-10.848000pt;}
.ws8{word-spacing:-9.815040pt;}
.ws5{word-spacing:-9.776640pt;}
.ws6{word-spacing:-9.600107pt;}
.ws9{word-spacing:-9.173973pt;}
.ws1{word-spacing:0.000000pt;}
._18{margin-left:-14.720000pt;}
._11{margin-left:-2.974720pt;}
._1c{margin-left:-2.084480pt;}
._1{margin-left:-0.960000pt;}
._0{width:0.895488pt;}
._4{width:2.560000pt;}
._b{width:4.096000pt;}
._a{width:5.034667pt;}
._f{width:6.656000pt;}
._8{width:7.936000pt;}
._9{width:8.853845pt;}
._10{width:9.866667pt;}
._d{width:11.008000pt;}
._c{width:11.904000pt;}
._e{width:13.237333pt;}
._1d{width:14.431659pt;}
._1b{width:15.488000pt;}
._1a{width:16.384000pt;}
._6{width:17.408000pt;}
._19{width:18.304512pt;}
._7{width:19.466667pt;}
._14{width:20.576512pt;}
._5{width:22.090667pt;}
._3{width:23.232000pt;}
._15{width:24.768000pt;}
._17{width:25.834667pt;}
._16{width:27.541333pt;}
._13{width:28.864000pt;}
._20{width:30.016000pt;}
._29{width:31.104000pt;}
._28{width:32.768000pt;}
._27{width:33.728000pt;}
._23{width:39.296000pt;}
._25{width:40.970667pt;}
._24{width:42.368000pt;}
._1f{width:53.845845pt;}
._1e{width:54.848000pt;}
._26{width:81.393045pt;}
._12{width:90.575573pt;}
._2{width:91.535573pt;}
._22{width:106.927659pt;}
._21{width:107.904000pt;}
.fs7{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs8{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:69.120000pt;}
.fsa{font-size:74.880000pt;}
.fs3{font-size:96.000000pt;}
.fs4{font-size:96.128000pt;}
.fs2{font-size:149.120000pt;}
.fs1{font-size:149.248000pt;}
.yd4{bottom:-31.853333pt;}
.yd3{bottom:-6.573333pt;}
.yee{bottom:-0.160000pt;}
.y0{bottom:0.000000pt;}
.ye2{bottom:2.240000pt;}
.ye5{bottom:2.400000pt;}
.y18{bottom:3.040000pt;}
.y17{bottom:3.200000pt;}
.yc2{bottom:8.640000pt;}
.yca{bottom:8.786667pt;}
.ya1{bottom:8.800000pt;}
.ye9{bottom:8.826667pt;}
.yde{bottom:12.800000pt;}
.yd2{bottom:15.666667pt;}
.y16{bottom:18.906667pt;}
.yf0{bottom:26.880000pt;}
.yc7{bottom:27.346667pt;}
.y10d{bottom:27.840000pt;}
.yc9{bottom:34.226667pt;}
.ya0{bottom:34.240000pt;}
.yea{bottom:34.266667pt;}
.ycc{bottom:34.386667pt;}
.yc4{bottom:34.400000pt;}
.ye8{bottom:34.426667pt;}
.ydd{bottom:36.320000pt;}
.y15{bottom:37.786667pt;}
.yd1{bottom:41.106667pt;}
.y109{bottom:47.520000pt;}
.yc6{bottom:53.266667pt;}
.y14{bottom:56.186667pt;}
.y10c{bottom:57.760000pt;}
.ydc{bottom:61.920000pt;}
.y13{bottom:73.466667pt;}
.y12{bottom:88.666667pt;}
.y108{bottom:90.720000pt;}
.y107{bottom:91.200000pt;}
.y9f{bottom:93.600000pt;}
.ya2{bottom:94.400000pt;}
.y3e{bottom:98.240000pt;}
.y1e8{bottom:102.400000pt;}
.y11{bottom:104.026667pt;}
.y10{bottom:104.186667pt;}
.y106{bottom:109.120000pt;}
.y145{bottom:113.440000pt;}
.y1d3{bottom:113.920000pt;}
.y15e{bottom:115.680000pt;}
.y1b7{bottom:116.480000pt;}
.y1a3{bottom:117.760000pt;}
.y10a{bottom:118.720000pt;}
.yf{bottom:120.026667pt;}
.yc0{bottom:120.480000pt;}
.y5d{bottom:121.120000pt;}
.y9e{bottom:121.600000pt;}
.y10b{bottom:122.586667pt;}
.y80{bottom:124.000000pt;}
.y3d{bottom:124.480000pt;}
.y1e7{bottom:129.920000pt;}
.y184{bottom:132.160000pt;}
.ydb{bottom:132.800000pt;}
.y122{bottom:135.360000pt;}
.y105{bottom:136.640000pt;}
.ye{bottom:140.186667pt;}
.y144{bottom:140.960000pt;}
.y1d2{bottom:141.440000pt;}
.y15d{bottom:143.200000pt;}
.y1b6{bottom:144.160000pt;}
.y1a2{bottom:145.280000pt;}
.y16e{bottom:145.440000pt;}
.y5c{bottom:146.400000pt;}
.y1a8{bottom:147.840000pt;}
.ybf{bottom:148.160000pt;}
.y9d{bottom:149.120000pt;}
.y7f{bottom:151.520000pt;}
.y3c{bottom:152.000000pt;}
.y1e6{bottom:157.440000pt;}
.y183{bottom:159.680000pt;}
.ydf{bottom:160.000000pt;}
.ye0{bottom:160.800000pt;}
.y121{bottom:162.880000pt;}
.y104{bottom:164.160000pt;}
.yd{bottom:167.706667pt;}
.y143{bottom:168.480000pt;}
.y1d1{bottom:168.960000pt;}
.y15c{bottom:170.720000pt;}
.y1b5{bottom:171.680000pt;}
.y5b{bottom:172.640000pt;}
.y1a1{bottom:172.800000pt;}
.y16d{bottom:173.120000pt;}
.y1a7{bottom:175.360000pt;}
.ybe{bottom:175.680000pt;}
.y9c{bottom:176.640000pt;}
.y7e{bottom:179.040000pt;}
.y3b{bottom:179.520000pt;}
.y1e5{bottom:184.960000pt;}
.y182{bottom:187.200000pt;}
.y120{bottom:190.560000pt;}
.y103{bottom:191.680000pt;}
.yc{bottom:195.386667pt;}
.y142{bottom:196.000000pt;}
.y1d0{bottom:196.480000pt;}
.y15b{bottom:198.240000pt;}
.y5a{bottom:199.200000pt;}
.y1a0{bottom:199.360000pt;}
.y16c{bottom:200.640000pt;}
.y5{bottom:201.440000pt;}
.y3{bottom:201.600000pt;}
.y1a6{bottom:202.880000pt;}
.ybd{bottom:203.200000pt;}
.y9b{bottom:204.320000pt;}
.y7d{bottom:206.586667pt;}
.y3a{bottom:207.066667pt;}
.y1e4{bottom:212.506667pt;}
.y181{bottom:214.746667pt;}
.y102{bottom:217.146667pt;}
.y11f{bottom:218.106667pt;}
.y123{bottom:219.240000pt;}
.yb{bottom:222.946667pt;}
.y141{bottom:223.546667pt;}
.y1cf{bottom:224.026667pt;}
.y59{bottom:225.466667pt;}
.y15a{bottom:225.786667pt;}
.y1b4{bottom:226.746667pt;}
.y19f{bottom:226.906667pt;}
.y16b{bottom:228.186667pt;}
.y1a5{bottom:229.466667pt;}
.ybc{bottom:230.746667pt;}
.y9a{bottom:231.866667pt;}
.y7c{bottom:234.106667pt;}
.y39{bottom:234.586667pt;}
.y1e3{bottom:240.026667pt;}
.y101{bottom:240.186667pt;}
.y180{bottom:242.426667pt;}
.y11e{bottom:245.626667pt;}
.ya{bottom:250.626667pt;}
.y140{bottom:251.066667pt;}
.y1ce{bottom:251.706667pt;}
.y58{bottom:252.986667pt;}
.y159{bottom:253.466667pt;}
.y1b3{bottom:254.266667pt;}
.y19e{bottom:254.426667pt;}
.y1a4{bottom:254.746667pt;}
.y16a{bottom:255.706667pt;}
.ybb{bottom:258.266667pt;}
.y99{bottom:259.386667pt;}
.y7b{bottom:261.626667pt;}
.y38{bottom:262.106667pt;}
.y100{bottom:263.066667pt;}
.yd7{bottom:265.000000pt;}
.yd5{bottom:266.760000pt;}
.yd6{bottom:267.240000pt;}
.y1e2{bottom:267.546667pt;}
.yd0{bottom:269.000000pt;}
.yc5{bottom:269.160000pt;}
.y17f{bottom:269.946667pt;}
.yf2{bottom:270.600000pt;}
.y11d{bottom:273.146667pt;}
.y13f{bottom:278.586667pt;}
.y57{bottom:280.506667pt;}
.y158{bottom:280.986667pt;}
.y1b2{bottom:281.786667pt;}
.y19d{bottom:281.946667pt;}
.y9{bottom:282.146667pt;}
.y169{bottom:283.226667pt;}
.yc8{bottom:285.640000pt;}
.yba{bottom:285.786667pt;}
.yff{bottom:286.106667pt;}
.ycb{bottom:286.760000pt;}
.y98{bottom:286.906667pt;}
.y7a{bottom:289.146667pt;}
.y37{bottom:289.626667pt;}
.y1cd{bottom:292.506667pt;}
.y1e1{bottom:295.066667pt;}
.y17e{bottom:297.466667pt;}
.y11c{bottom:300.666667pt;}
.y13e{bottom:306.106667pt;}
.y56{bottom:307.066667pt;}
.y157{bottom:308.506667pt;}
.yfe{bottom:308.986667pt;}
.y1b1{bottom:309.306667pt;}
.y19c{bottom:309.466667pt;}
.y168{bottom:310.746667pt;}
.yb9{bottom:313.306667pt;}
.y97{bottom:314.426667pt;}
.y79{bottom:316.666667pt;}
.y36{bottom:317.306667pt;}
.y1cc{bottom:320.026667pt;}
.y1e0{bottom:322.746667pt;}
.y17d{bottom:324.986667pt;}
.y11b{bottom:328.186667pt;}
.y8{bottom:328.866667pt;}
.yfd{bottom:332.026667pt;}
.y55{bottom:333.306667pt;}
.y13d{bottom:333.786667pt;}
.y156{bottom:336.026667pt;}
.y1b0{bottom:336.826667pt;}
.y19b{bottom:336.986667pt;}
.y167{bottom:338.266667pt;}
.yb8{bottom:340.826667pt;}
.y96{bottom:341.946667pt;}
.y78{bottom:344.346667pt;}
.y35{bottom:344.826667pt;}
.y1cb{bottom:347.546667pt;}
.y1df{bottom:350.266667pt;}
.y17c{bottom:352.506667pt;}
.y11a{bottom:353.786667pt;}
.yfc{bottom:354.906667pt;}
.y54{bottom:360.826667pt;}
.y13c{bottom:361.306667pt;}
.y155{bottom:363.546667pt;}
.y1af{bottom:364.346667pt;}
.y19a{bottom:364.666667pt;}
.y166{bottom:365.786667pt;}
.yb7{bottom:368.346667pt;}
.yeb{bottom:368.506667pt;}
.y95{bottom:369.466667pt;}
.y77{bottom:371.866667pt;}
.y34{bottom:372.346667pt;}
.y1ca{bottom:375.066667pt;}
.y7{bottom:375.586667pt;}
.y6{bottom:375.746667pt;}
.y119{bottom:376.666667pt;}
.yfb{bottom:377.786667pt;}
.y17b{bottom:380.026667pt;}
.y53{bottom:388.346667pt;}
.y13b{bottom:388.826667pt;}
.y154{bottom:391.066667pt;}
.y1ae{bottom:392.026667pt;}
.y199{bottom:392.186667pt;}
.y165{bottom:393.306667pt;}
.yb6{bottom:396.026667pt;}
.y94{bottom:396.986667pt;}
.y76{bottom:399.386667pt;}
.y118{bottom:399.546667pt;}
.y33{bottom:399.866667pt;}
.yfa{bottom:400.826667pt;}
.y1c9{bottom:402.586667pt;}
.y1de{bottom:405.306667pt;}
.ye7{bottom:405.960000pt;}
.y17a{bottom:407.546667pt;}
.yf1{bottom:410.920000pt;}
.y52{bottom:414.946667pt;}
.y13a{bottom:416.386667pt;}
.y153{bottom:418.626667pt;}
.y1ad{bottom:419.586667pt;}
.y198{bottom:419.746667pt;}
.y164{bottom:421.026667pt;}
.y4{bottom:422.173333pt;}
.y117{bottom:422.626667pt;}
.yb5{bottom:423.586667pt;}
.yf9{bottom:423.746667pt;}
.y93{bottom:424.706667pt;}
.y75{bottom:426.946667pt;}
.y32{bottom:427.426667pt;}
.y1c8{bottom:430.306667pt;}
.y1d6{bottom:432.866667pt;}
.y179{bottom:435.106667pt;}
.y51{bottom:440.226667pt;}
.y139{bottom:443.906667pt;}
.y116{bottom:445.506667pt;}
.y152{bottom:446.146667pt;}
.yf8{bottom:446.786667pt;}
.y1ac{bottom:447.106667pt;}
.y197{bottom:447.266667pt;}
.y163{bottom:448.546667pt;}
.yb4{bottom:451.106667pt;}
.y92{bottom:452.226667pt;}
.y74{bottom:454.466667pt;}
.y31{bottom:454.946667pt;}
.y1c7{bottom:457.826667pt;}
.y1d5{bottom:460.386667pt;}
.y178{bottom:462.786667pt;}
.y50{bottom:466.466667pt;}
.y115{bottom:468.546667pt;}
.yf7{bottom:469.666667pt;}
.y138{bottom:471.426667pt;}
.y151{bottom:473.826667pt;}
.y1ab{bottom:474.626667pt;}
.y196{bottom:474.786667pt;}
.y162{bottom:476.066667pt;}
.yb3{bottom:478.626667pt;}
.y91{bottom:479.746667pt;}
.y73{bottom:481.986667pt;}
.y30{bottom:482.466667pt;}
.y1c6{bottom:485.346667pt;}
.y1d4{bottom:487.906667pt;}
.y177{bottom:490.306667pt;}
.y114{bottom:491.426667pt;}
.yf6{bottom:492.706667pt;}
.y4f{bottom:493.986667pt;}
.y137{bottom:498.946667pt;}
.y150{bottom:501.346667pt;}
.y195{bottom:502.306667pt;}
.y161{bottom:503.586667pt;}
.yb2{bottom:506.146667pt;}
.y90{bottom:507.266667pt;}
.y72{bottom:509.506667pt;}
.y2f{bottom:509.986667pt;}
.ye1{bottom:510.946667pt;}
.y1c5{bottom:512.866667pt;}
.y113{bottom:514.466667pt;}
.yed{bottom:514.626667pt;}
.y1aa{bottom:515.426667pt;}
.yf5{bottom:515.586667pt;}
.y176{bottom:517.826667pt;}
.y4e{bottom:521.506667pt;}
.y136{bottom:526.466667pt;}
.y14f{bottom:528.866667pt;}
.y194{bottom:529.826667pt;}
.y160{bottom:531.106667pt;}
.yb1{bottom:533.666667pt;}
.y8f{bottom:534.786667pt;}
.y71{bottom:537.026667pt;}
.yf4{bottom:537.186667pt;}
.y112{bottom:537.346667pt;}
.y2e{bottom:537.666667pt;}
.y1c4{bottom:540.386667pt;}
.y1a9{bottom:543.106667pt;}
.y175{bottom:544.386667pt;}
.y4d{bottom:548.066667pt;}
.y135{bottom:554.146667pt;}
.ye4{bottom:556.386667pt;}
.y193{bottom:557.346667pt;}
.y15f{bottom:557.666667pt;}
.y192{bottom:558.626667pt;}
.y111{bottom:558.946667pt;}
.yb0{bottom:561.186667pt;}
.y8e{bottom:562.306667pt;}
.y70{bottom:564.546667pt;}
.y2d{bottom:565.186667pt;}
.y174{bottom:570.626667pt;}
.y4c{bottom:574.306667pt;}
.y110{bottom:579.586667pt;}
.y1c3{bottom:581.186667pt;}
.y134{bottom:581.666667pt;}
.y14e{bottom:583.906667pt;}
.y191{bottom:586.146667pt;}
.yaf{bottom:588.706667pt;}
.y8d{bottom:589.826667pt;}
.y6f{bottom:592.226667pt;}
.y2c{bottom:592.706667pt;}
.y173{bottom:598.146667pt;}
.y10f{bottom:600.226667pt;}
.y4b{bottom:601.826667pt;}
.y1c2{bottom:608.866667pt;}
.y133{bottom:609.186667pt;}
.y14d{bottom:611.426667pt;}
.y190{bottom:613.666667pt;}
.yae{bottom:616.413333pt;}
.y8c{bottom:617.373333pt;}
.y6e{bottom:619.773333pt;}
.y2b{bottom:620.253333pt;}
.y10e{bottom:620.893333pt;}
.y172{bottom:625.693333pt;}
.y4a{bottom:629.373333pt;}
.y1c1{bottom:636.413333pt;}
.y132{bottom:636.733333pt;}
.y14c{bottom:638.973333pt;}
.y18f{bottom:641.373333pt;}
.yad{bottom:643.933333pt;}
.y8b{bottom:644.893333pt;}
.y6d{bottom:647.293333pt;}
.y2a{bottom:647.773333pt;}
.y171{bottom:653.213333pt;}
.y49{bottom:656.893333pt;}
.y1c0{bottom:663.933333pt;}
.y131{bottom:664.253333pt;}
.y14b{bottom:666.493333pt;}
.yc3{bottom:667.773333pt;}
.y18e{bottom:668.893333pt;}
.yc1{bottom:670.813333pt;}
.yef{bottom:670.973333pt;}
.yac{bottom:671.453333pt;}
.y8a{bottom:672.573333pt;}
.y6c{bottom:674.813333pt;}
.y29{bottom:675.293333pt;}
.ycd{bottom:678.653333pt;}
.ycf{bottom:679.453333pt;}
.yce{bottom:679.613333pt;}
.y170{bottom:680.733333pt;}
.y48{bottom:684.573333pt;}
.y1bf{bottom:691.453333pt;}
.y130{bottom:691.773333pt;}
.y14a{bottom:694.013333pt;}
.y18d{bottom:696.413333pt;}
.yab{bottom:698.973333pt;}
.y89{bottom:700.093333pt;}
.y6b{bottom:702.333333pt;}
.y28{bottom:702.813333pt;}
.y1dd{bottom:708.253333pt;}
.y16f{bottom:708.413333pt;}
.y47{bottom:712.093333pt;}
.y1be{bottom:718.973333pt;}
.y12f{bottom:719.293333pt;}
.y149{bottom:721.693333pt;}
.y18c{bottom:723.933333pt;}
.yaa{bottom:726.493333pt;}
.yf3{bottom:726.653333pt;}
.y88{bottom:727.613333pt;}
.y6a{bottom:729.853333pt;}
.y27{bottom:730.333333pt;}
.y1dc{bottom:735.773333pt;}
.y46{bottom:739.613333pt;}
.y1bd{bottom:746.493333pt;}
.y12e{bottom:746.813333pt;}
.y148{bottom:749.213333pt;}
.y18b{bottom:751.453333pt;}
.ya9{bottom:754.013333pt;}
.y87{bottom:755.133333pt;}
.y69{bottom:757.373333pt;}
.y26{bottom:758.013333pt;}
.y1db{bottom:763.293333pt;}
.y45{bottom:766.173333pt;}
.y1bc{bottom:774.173333pt;}
.y12d{bottom:774.333333pt;}
.y147{bottom:776.733333pt;}
.y18a{bottom:778.973333pt;}
.ya8{bottom:781.533333pt;}
.y86{bottom:782.653333pt;}
.y68{bottom:784.893333pt;}
.y25{bottom:785.533333pt;}
.y1da{bottom:790.973333pt;}
.y44{bottom:792.413333pt;}
.ye3{bottom:793.693333pt;}
.ye6{bottom:795.293333pt;}
.y12c{bottom:803.133333pt;}
.y146{bottom:804.253333pt;}
.y189{bottom:806.493333pt;}
.ya7{bottom:809.053333pt;}
.y85{bottom:810.173333pt;}
.y67{bottom:812.573333pt;}
.y24{bottom:813.053333pt;}
.y1bb{bottom:814.973333pt;}
.y1d9{bottom:818.493333pt;}
.y43{bottom:818.813333pt;}
.y12b{bottom:831.813333pt;}
.y188{bottom:834.053333pt;}
.ya6{bottom:836.613333pt;}
.y84{bottom:837.733333pt;}
.y66{bottom:840.133333pt;}
.y23{bottom:840.613333pt;}
.y1ba{bottom:843.813333pt;}
.y42{bottom:845.253333pt;}
.y1d8{bottom:846.053333pt;}
.y12a{bottom:859.333333pt;}
.y187{bottom:861.733333pt;}
.ya5{bottom:864.293333pt;}
.y83{bottom:865.253333pt;}
.y65{bottom:867.653333pt;}
.y22{bottom:868.133333pt;}
.y41{bottom:871.653333pt;}
.y1b9{bottom:873.093333pt;}
.y1d7{bottom:873.573333pt;}
.y129{bottom:886.853333pt;}
.y186{bottom:889.253333pt;}
.ya4{bottom:891.813333pt;}
.y82{bottom:892.933333pt;}
.y64{bottom:895.173333pt;}
.y21{bottom:895.653333pt;}
.y40{bottom:897.893333pt;}
.y1b8{bottom:901.093333pt;}
.yec{bottom:907.653333pt;}
.y128{bottom:914.373333pt;}
.y185{bottom:915.653333pt;}
.yda{bottom:919.333333pt;}
.ya3{bottom:919.493333pt;}
.y81{bottom:920.453333pt;}
.y63{bottom:922.693333pt;}
.y20{bottom:923.173333pt;}
.y3f{bottom:924.453333pt;}
.y127{bottom:942.053333pt;}
.yd9{bottom:946.853333pt;}
.y2{bottom:947.973333pt;}
.y62{bottom:950.213333pt;}
.y1f{bottom:950.693333pt;}
.y126{bottom:969.573333pt;}
.y1e{bottom:969.733333pt;}
.yd8{bottom:974.533333pt;}
.y1{bottom:975.493333pt;}
.y61{bottom:976.773333pt;}
.y125{bottom:988.613333pt;}
.y1d{bottom:988.773333pt;}
.y1c{bottom:1007.173333pt;}
.y124{bottom:1007.493333pt;}
.y60{bottom:1026.560000pt;}
.y1b{bottom:1030.400000pt;}
.y1a{bottom:1044.480000pt;}
.y5f{bottom:1046.080000pt;}
.y5e{bottom:1060.160000pt;}
.y19{bottom:1060.800000pt;}
.h26{height:11.986667pt;}
.h20{height:14.386667pt;}
.h22{height:14.400000pt;}
.h23{height:14.546667pt;}
.h28{height:36.286563pt;}
.hf{height:38.650625pt;}
.h16{height:43.265625pt;}
.h10{height:43.656250pt;}
.h2c{height:43.664062pt;}
.h17{height:44.722500pt;}
.h1b{height:45.426667pt;}
.h15{height:45.438667pt;}
.h18{height:45.440000pt;}
.h25{height:45.458667pt;}
.h1f{height:45.472000pt;}
.h1c{height:45.586667pt;}
.h2a{height:45.598667pt;}
.h19{height:45.600000pt;}
.h24{height:45.618667pt;}
.h29{height:47.880625pt;}
.h21{height:48.321562pt;}
.h1d{height:52.306667pt;}
.h12{height:53.072500pt;}
.h11{height:53.561250pt;}
.h27{height:54.560000pt;}
.hc{height:55.402500pt;}
.h2f{height:57.406250pt;}
.he{height:57.687500pt;}
.hd{height:57.781250pt;}
.h2{height:58.218750pt;}
.h14{height:61.410000pt;}
.h2d{height:62.876250pt;}
.h1a{height:64.466667pt;}
.h6{height:65.781915pt;}
.hb{height:66.750000pt;}
.h2e{height:67.494375pt;}
.h1e{height:73.118667pt;}
.h13{height:86.531250pt;}
.h9{height:100.125000pt;}
.ha{height:100.258500pt;}
.h7{height:134.630313pt;}
.h4{height:134.745875pt;}
.h8{height:155.527500pt;}
.h2b{height:246.746667pt;}
.h3{height:459.520000pt;}
.h5{height:459.626667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1a{width:22.066667pt;}
.w1e{width:42.066667pt;}
.w1d{width:50.706667pt;}
.w17{width:51.670667pt;}
.w18{width:64.000000pt;}
.w1f{width:154.585333pt;}
.w7{width:164.346667pt;}
.w9{width:177.665333pt;}
.wf{width:222.945333pt;}
.w14{width:224.706667pt;}
.w12{width:229.946667pt;}
.w15{width:234.746667pt;}
.wc{width:241.306667pt;}
.wd{width:241.946667pt;}
.w6{width:244.545333pt;}
.w22{width:247.266667pt;}
.w8{width:254.466667pt;}
.w1b{width:254.946667pt;}
.w11{width:255.746667pt;}
.w5{width:257.946667pt;}
.w10{width:257.973333pt;}
.wa{width:261.825333pt;}
.wb{width:273.026667pt;}
.we{width:277.986667pt;}
.w4{width:296.386667pt;}
.w13{width:315.733333pt;}
.w16{width:334.933333pt;}
.w19{width:429.053333pt;}
.w23{width:489.880000pt;}
.w25{width:526.840000pt;}
.w1c{width:540.573333pt;}
.w2{width:560.320000pt;}
.w3{width:560.400000pt;}
.w27{width:582.040000pt;}
.w26{width:583.320000pt;}
.w24{width:584.600000pt;}
.w21{width:603.480000pt;}
.w20{width:663.998667pt;}
.w28{width:713.760000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x5c{left:-61.440000pt;}
.x37{left:-2.240000pt;}
.x0{left:0.000000pt;}
.x55{left:3.350667pt;}
.x5b{left:4.790667pt;}
.x4e{left:7.346667pt;}
.x3{left:9.632000pt;}
.x41{left:11.040000pt;}
.x49{left:11.986667pt;}
.x16{left:16.641333pt;}
.x4b{left:17.601333pt;}
.x2d{left:19.041333pt;}
.x21{left:20.001333pt;}
.x47{left:25.266667pt;}
.x30{left:27.546667pt;}
.x26{left:30.880000pt;}
.x3d{left:32.000000pt;}
.x20{left:34.110667pt;}
.x2c{left:35.200000pt;}
.x51{left:36.800000pt;}
.x4a{left:42.910667pt;}
.x1a{left:44.506667pt;}
.x42{left:45.440000pt;}
.x2a{left:47.520000pt;}
.x1e{left:51.041333pt;}
.x22{left:53.470667pt;}
.x17{left:60.190667pt;}
.x34{left:61.280000pt;}
.x19{left:64.186667pt;}
.x52{left:66.880000pt;}
.x3b{left:68.666667pt;}
.x1f{left:70.750667pt;}
.x1d{left:71.866667pt;}
.x2{left:80.960000pt;}
.x2e{left:90.750667pt;}
.x33{left:94.080000pt;}
.x38{left:96.640000pt;}
.x36{left:97.786667pt;}
.x29{left:100.160000pt;}
.x12{left:103.360000pt;}
.x59{left:104.521333pt;}
.x32{left:107.072000pt;}
.x1c{left:109.146667pt;}
.x14{left:110.880000pt;}
.x1{left:113.472000pt;}
.x15{left:116.160000pt;}
.x24{left:118.426667pt;}
.x11{left:130.106667pt;}
.x57{left:132.041333pt;}
.xa{left:137.466667pt;}
.x35{left:139.546667pt;}
.x5e{left:141.306667pt;}
.x3a{left:151.866667pt;}
.xd{left:161.466667pt;}
.xe{left:166.266667pt;}
.x45{left:168.826667pt;}
.x4d{left:170.760000pt;}
.x5a{left:184.666667pt;}
.x4f{left:189.626667pt;}
.x53{left:192.040000pt;}
.xf{left:195.066667pt;}
.x60{left:209.466667pt;}
.x3f{left:214.426667pt;}
.x2b{left:248.066667pt;}
.x10{left:252.226667pt;}
.x43{left:253.186667pt;}
.x31{left:258.133333pt;}
.x58{left:263.412000pt;}
.x23{left:264.386667pt;}
.x44{left:276.706667pt;}
.x56{left:286.452000pt;}
.x3e{left:289.346667pt;}
.x54{left:292.053333pt;}
.x3c{left:298.466667pt;}
.x1b{left:303.426667pt;}
.x50{left:311.906667pt;}
.x8{left:331.266667pt;}
.x5d{left:351.906667pt;}
.x46{left:399.626667pt;}
.x5f{left:411.133333pt;}
.x5{left:429.052000pt;}
.x48{left:433.386667pt;}
.x39{left:458.826667pt;}
.x6{left:477.372000pt;}
.x4{left:486.812000pt;}
.x2f{left:505.066667pt;}
.x4c{left:526.372000pt;}
.x13{left:529.413333pt;}
.x28{left:549.093333pt;}
.x25{left:552.453333pt;}
.x40{left:586.213333pt;}
.x18{left:613.733333pt;}
.x27{left:650.533333pt;}
.xc{left:656.320000pt;}
.xb{left:659.200000pt;}
.x7{left:662.080000pt;}
.x9{left:708.960000pt;}
}




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