
    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_005d9671d5c9ff555a430204.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7667717532f247ef3c4d8799.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_738470963f8bfdf3a8e9e0bc.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_26caf3523ca2c194ae437941.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_7eba31b31cbb52ba32b9af04.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_27fb3c20856f0669d0fa40a0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_4bf94aa71df2df023a01fded.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b4dbc362e1455b543e4b7515.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b83750681cda4334c39ac4d3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.066406;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_7d8545f8690f73729a9c046c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-18.720000px;}
.v2{vertical-align:-5.760000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.880000px;}
.v6{vertical-align:14.400000px;}
.v4{vertical-align:18.720000px;}
.lsb{letter-spacing:-1.440000px;}
.ls15{letter-spacing:-1.422000px;}
.ls26{letter-spacing:-0.972000px;}
.ls25{letter-spacing:-0.936000px;}
.lsa{letter-spacing:-0.810000px;}
.lsc{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.486600px;}
.ls1d{letter-spacing:-0.466800px;}
.ls10{letter-spacing:-0.360000px;}
.ls27{letter-spacing:-0.310800px;}
.lse{letter-spacing:-0.184200px;}
.ls1e{letter-spacing:-0.020160px;}
.ls24{letter-spacing:-0.015840px;}
.ls12{letter-spacing:-0.015600px;}
.ls9{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.015840px;}
.ls7{letter-spacing:0.020160px;}
.ls14{letter-spacing:0.020400px;}
.ls13{letter-spacing:0.250800px;}
.ls2{letter-spacing:0.413280px;}
.ls20{letter-spacing:0.439200px;}
.ls23{letter-spacing:0.466560px;}
.ls8{letter-spacing:0.466800px;}
.ls1f{letter-spacing:0.469200px;}
.ls22{letter-spacing:0.469440px;}
.ls18{letter-spacing:0.486600px;}
.ls1{letter-spacing:0.498240px;}
.ls2e{letter-spacing:0.501000px;}
.ls21{letter-spacing:0.502560px;}
.lsd{letter-spacing:0.630000px;}
.ls19{letter-spacing:0.665280px;}
.ls0{letter-spacing:0.720000px;}
.ls2d{letter-spacing:0.840000px;}
.ls11{letter-spacing:1.080000px;}
.ls17{letter-spacing:9.106560px;}
.ls5{letter-spacing:11.160000px;}
.ls2c{letter-spacing:11.269440px;}
.ls1a{letter-spacing:13.426560px;}
.ls4{letter-spacing:17.100000px;}
.ls28{letter-spacing:26.386560px;}
.ls16{letter-spacing:26.398560px;}
.ls3{letter-spacing:35.640000px;}
.ls2b{letter-spacing:35.749440px;}
.ls29{letter-spacing:40.786560px;}
.ls2a{letter-spacing:40.906560px;}
.ls1c{letter-spacing:89.746560px;}
.ls1b{letter-spacing:91.186560px;}
.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;}
}
.ws1f{word-spacing:-60.480000px;}
.ws1a{word-spacing:-59.544000px;}
.ws13{word-spacing:-15.606600px;}
.ws16{word-spacing:-15.586800px;}
.wsa{word-spacing:-15.140400px;}
.ws6{word-spacing:-15.120000px;}
.ws15{word-spacing:-15.099840px;}
.ws12{word-spacing:-14.653200px;}
.ws11{word-spacing:-14.633400px;}
.ws21{word-spacing:-14.148000px;}
.wsb{word-spacing:-13.698000px;}
.ws3{word-spacing:-13.680000px;}
.ws4{word-spacing:-13.495800px;}
.ws1{word-spacing:-12.870000px;}
.ws9{word-spacing:-12.600000px;}
.ws14{word-spacing:-12.545280px;}
.ws20{word-spacing:-12.381000px;}
.ws18{word-spacing:-12.349200px;}
.ws2{word-spacing:-12.240000px;}
.ws8{word-spacing:-12.130800px;}
.ws17{word-spacing:-11.895840px;}
.ws0{word-spacing:-11.880000px;}
.ws7{word-spacing:-11.864400px;}
.ws19{word-spacing:-11.864160px;}
.ws1c{word-spacing:-10.454400px;}
.ws1b{word-spacing:-10.143600px;}
.ws1d{word-spacing:-7.560000px;}
.ws1e{word-spacing:-6.840000px;}
.ws10{word-spacing:0.000000px;}
.ws5{word-spacing:29.773080px;}
.wsd{word-spacing:89.905920px;}
.wsc{word-spacing:91.346160px;}
.wsf{word-spacing:92.297038px;}
.wse{word-spacing:92.360882px;}
._2f{margin-left:-9.848340px;}
._22{margin-left:-5.637853px;}
._11{margin-left:-4.429908px;}
._23{margin-left:-3.372941px;}
._0{margin-left:-2.056199px;}
._2{margin-left:-1.028402px;}
._1{width:1.087793px;}
._3{width:2.268000px;}
._a{width:3.552129px;}
._4{width:4.561825px;}
._9{width:5.737758px;}
._7{width:7.332111px;}
._6{width:8.590643px;}
._5{width:10.336441px;}
._8{width:11.605058px;}
._1d{width:12.845015px;}
._1c{width:14.092203px;}
._d{width:15.779422px;}
._16{width:16.887342px;}
._f{width:17.953327px;}
._10{width:19.894810px;}
._1f{width:21.153101px;}
._c{width:23.184616px;}
._b{width:24.632453px;}
._1e{width:25.649280px;}
._2a{width:26.808019px;}
._21{width:28.003208px;}
._20{width:29.513998px;}
._2b{width:30.528945px;}
._18{width:31.873202px;}
._19{width:33.142798px;}
._17{width:34.534806px;}
._13{width:36.115295px;}
._12{width:37.424160px;}
._e{width:39.922275px;}
._27{width:46.146240px;}
._26{width:47.174642px;}
._25{width:48.565319px;}
._1b{width:57.925678px;}
._1a{width:58.969210px;}
._28{width:68.296218px;}
._29{width:69.310685px;}
._24{width:71.668800px;}
._15{width:77.325706px;}
._14{width:78.708715px;}
._2e{width:88.323126px;}
._2c{width:100.661760px;}
._2d{width:101.741276px;}
._30{width:111.066599px;}
.fc6{color:rgb(15,17,21);}
.fc5{color:transparent;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(0,0,204);}
.fc1{color:rgb(51,51,255);}
.fc7{color:rgb(28,28,28);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:18.720000px;}
.fs7{font-size:24.480000px;}
.fs9{font-size:30.240000px;}
.fs1{font-size:47.520000px;}
.fs4{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs3{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:119.520000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.yc0{bottom:2.520000px;}
.y8{bottom:2.880000px;}
.yc5{bottom:2.910000px;}
.y8b{bottom:3.600000px;}
.y8e{bottom:3.960000px;}
.y88{bottom:4.320000px;}
.yc{bottom:6.120000px;}
.y9{bottom:10.116000px;}
.y4{bottom:13.356000px;}
.y7{bottom:16.560000px;}
.y89{bottom:17.670000px;}
.y87{bottom:18.030000px;}
.y3{bottom:19.116000px;}
.y12a{bottom:19.440000px;}
.yb{bottom:19.800000px;}
.y128{bottom:20.880000px;}
.y6{bottom:30.240000px;}
.ya{bottom:33.480000px;}
.y129{bottom:34.560000px;}
.y127{bottom:34.920000px;}
.y5{bottom:44.280000px;}
.y12c{bottom:49.710000px;}
.y13e{bottom:57.960000px;}
.y13d{bottom:71.640000px;}
.yb7{bottom:82.836000px;}
.yfe{bottom:83.916000px;}
.y13c{bottom:85.680000px;}
.ye3{bottom:88.236000px;}
.y1d1{bottom:90.756000px;}
.y141{bottom:93.996000px;}
.y75{bottom:97.596000px;}
.y13b{bottom:99.360000px;}
.yfd{bottom:101.916000px;}
.yb6{bottom:102.636000px;}
.y44{bottom:105.156000px;}
.ye2{bottom:106.596000px;}
.y140{bottom:111.996000px;}
.y163{bottom:112.716000px;}
.y13a{bottom:113.070000px;}
.y74{bottom:115.956000px;}
.y43{bottom:118.836000px;}
.yfc{bottom:119.916000px;}
.yb5{bottom:122.436000px;}
.ye1{bottom:124.596000px;}
.y1d0{bottom:124.956000px;}
.y139{bottom:127.110000px;}
.ya7{bottom:128.556000px;}
.y162{bottom:130.716000px;}
.y42{bottom:132.912000px;}
.y13f{bottom:133.632000px;}
.y73{bottom:133.992000px;}
.yfb{bottom:138.312000px;}
.y138{bottom:140.790000px;}
.yb4{bottom:142.272000px;}
.ye0{bottom:142.632000px;}
.y1cf{bottom:144.432000px;}
.ya6{bottom:146.592000px;}
.y161{bottom:149.112000px;}
.y72{bottom:151.995000px;}
.y137{bottom:154.470000px;}
.yfa{bottom:156.315000px;}
.y12f{bottom:157.395000px;}
.y190{bottom:157.755000px;}
.y1ce{bottom:158.835000px;}
.y41{bottom:160.275000px;}
.ydf{bottom:160.995000px;}
.yb3{bottom:162.075000px;}
.ya5{bottom:164.595000px;}
.y160{bottom:167.115000px;}
.y136{bottom:168.510000px;}
.y71{bottom:169.995000px;}
.y18f{bottom:171.435000px;}
.y40{bottom:174.315000px;}
.y1cd{bottom:176.115000px;}
.yde{bottom:178.995000px;}
.yb2{bottom:181.875000px;}
.y135{bottom:182.190000px;}
.ya4{bottom:182.595000px;}
.y15f{bottom:185.115000px;}
.y18e{bottom:185.475000px;}
.y3f{bottom:187.995000px;}
.y70{bottom:188.355000px;}
.yf9{bottom:192.675000px;}
.y1cc{bottom:193.395000px;}
.y134{bottom:195.870000px;}
.ydd{bottom:196.995000px;}
.y18d{bottom:199.155000px;}
.ya3{bottom:200.955000px;}
.y3e{bottom:201.675000px;}
.y15e{bottom:203.115000px;}
.y6f{bottom:206.355000px;}
.y133{bottom:209.910000px;}
.yf8{bottom:210.675000px;}
.y18c{bottom:212.835000px;}
.ydc{bottom:215.355000px;}
.y3d{bottom:215.715000px;}
.ya2{bottom:218.955000px;}
.y15d{bottom:221.475000px;}
.yb1{bottom:221.835000px;}
.y132{bottom:223.590000px;}
.y6e{bottom:224.355000px;}
.y18b{bottom:226.875000px;}
.y1cb{bottom:227.955000px;}
.yf7{bottom:228.675000px;}
.y3c{bottom:229.395000px;}
.ydb{bottom:233.355000px;}
.ya1{bottom:236.955000px;}
.y131{bottom:237.270000px;}
.y15c{bottom:239.475000px;}
.y18a{bottom:240.555000px;}
.y6d{bottom:242.715000px;}
.y3b{bottom:243.075000px;}
.yb0{bottom:243.435000px;}
.y1ca{bottom:245.235000px;}
.yf6{bottom:246.675000px;}
.yda{bottom:251.355000px;}
.y189{bottom:254.235000px;}
.ya0{bottom:255.315000px;}
.y3a{bottom:257.475000px;}
.y6c{bottom:260.715000px;}
.y1c9{bottom:262.515000px;}
.y130{bottom:265.035000px;}
.yf5{bottom:265.065000px;}
.y188{bottom:268.305000px;}
.yd9{bottom:269.745000px;}
.yaf{bottom:272.265000px;}
.y9f{bottom:273.345000px;}
.y39{bottom:274.425000px;}
.y15b{bottom:275.865000px;}
.y6b{bottom:278.745000px;}
.y1c8{bottom:279.465000px;}
.y187{bottom:281.985000px;}
.yd8{bottom:287.745000px;}
.y38{bottom:288.105000px;}
.y9e{bottom:291.345000px;}
.yae{bottom:292.065000px;}
.y15a{bottom:293.865000px;}
.y186{bottom:295.665000px;}
.y1c7{bottom:296.745000px;}
.y6a{bottom:297.105000px;}
.y37{bottom:301.785000px;}
.yf4{bottom:305.385000px;}
.y9d{bottom:309.705000px;}
.yd7{bottom:310.785000px;}
.yad{bottom:311.865000px;}
.y69{bottom:314.385000px;}
.y36{bottom:315.825000px;}
.y185{bottom:323.385000px;}
.yf3{bottom:325.545000px;}
.y9c{bottom:327.705000px;}
.yd6{bottom:328.065000px;}
.y159{bottom:330.225000px;}
.y1c6{bottom:330.585000px;}
.y35{bottom:331.665000px;}
.y184{bottom:337.065000px;}
.y1c5{bottom:344.625000px;}
.y9b{bottom:345.705000px;}
.y34{bottom:347.145000px;}
.y158{bottom:348.225000px;}
.y68{bottom:348.585000px;}
.yd5{bottom:349.305000px;}
.y183{bottom:351.105000px;}
.yac{bottom:351.465000px;}
.y1c4{bottom:358.305000px;}
.y33{bottom:362.625000px;}
.y9a{bottom:364.065000px;}
.y182{bottom:364.785000px;}
.y67{bottom:365.865000px;}
.y157{bottom:366.225000px;}
.yab{bottom:371.625000px;}
.y1c3{bottom:371.985000px;}
.y181{bottom:378.465000px;}
.y99{bottom:382.065000px;}
.y66{bottom:383.145000px;}
.y156{bottom:384.585000px;}
.y1c2{bottom:386.025000px;}
.y180{bottom:392.505000px;}
.yaa{bottom:393.225000px;}
.y1c1{bottom:399.750000px;}
.y98{bottom:400.110000px;}
.y65{bottom:400.470000px;}
.y32{bottom:400.830000px;}
.y155{bottom:402.630000px;}
.y17f{bottom:406.230000px;}
.y1c0{bottom:413.430000px;}
.y64{bottom:417.750000px;}
.y97{bottom:418.110000px;}
.ya9{bottom:419.550000px;}
.y17e{bottom:419.910000px;}
.y1bf{bottom:427.470000px;}
.y154{bottom:431.430000px;}
.y17d{bottom:433.950000px;}
.y12e{bottom:434.310000px;}
.y63{bottom:435.030000px;}
.y96{bottom:436.470000px;}
.ya8{bottom:439.710000px;}
.y31{bottom:441.150000px;}
.y17c{bottom:447.630000px;}
.y62{bottom:452.310000px;}
.y95{bottom:454.470000px;}
.y1be{bottom:454.830000px;}
.y17b{bottom:461.310000px;}
.y153{bottom:467.430000px;}
.y1bd{bottom:468.870000px;}
.y61{bottom:469.590000px;}
.y12d{bottom:471.750000px;}
.y17a{bottom:475.350000px;}
.y30{bottom:476.070000px;}
.y1bc{bottom:482.550000px;}
.y152{bottom:485.790000px;}
.y60{bottom:486.870000px;}
.y179{bottom:489.030000px;}
.y2f{bottom:491.550000px;}
.y12b{bottom:496.230000px;}
.y94{bottom:500.190000px;}
.y178{bottom:502.710000px;}
.y151{bottom:503.790000px;}
.y5f{bottom:504.150000px;}
.y2e{bottom:507.390000px;}
.y1bb{bottom:510.270000px;}
.y116{bottom:514.590000px;}
.y177{bottom:516.750000px;}
.y93{bottom:517.470000px;}
.y5e{bottom:521.430000px;}
.y150{bottom:521.790000px;}
.y2d{bottom:522.870000px;}
.y1ba{bottom:523.950000px;}
.y115{bottom:528.990000px;}
.y176{bottom:530.430000px;}
.y92{bottom:535.140000px;}
.y1b9{bottom:537.660000px;}
.y2c{bottom:538.380000px;}
.y5d{bottom:538.740000px;}
.y14f{bottom:540.180000px;}
.y114{bottom:543.780000px;}
.y175{bottom:544.140000px;}
.y1b8{bottom:551.700000px;}
.y91{bottom:552.780000px;}
.y2b{bottom:553.860000px;}
.y5c{bottom:555.660000px;}
.y113{bottom:558.180000px;}
.y126{bottom:559.620000px;}
.y1b7{bottom:565.380000px;}
.y90{bottom:570.420000px;}
.y174{bottom:571.860000px;}
.y5b{bottom:572.940000px;}
.y2a{bottom:575.460000px;}
.y14e{bottom:576.180000px;}
.y1b6{bottom:579.060000px;}
.y173{bottom:585.540000px;}
.y112{bottom:587.340000px;}
.y8f{bottom:587.700000px;}
.y5a{bottom:590.220000px;}
.y1b5{bottom:593.100000px;}
.y14d{bottom:594.180000px;}
.y29{bottom:597.060000px;}
.y172{bottom:599.580000px;}
.y8d{bottom:605.340000px;}
.y1b4{bottom:606.780000px;}
.y59{bottom:607.500000px;}
.y125{bottom:607.860000px;}
.y111{bottom:611.100000px;}
.y28{bottom:612.540000px;}
.y171{bottom:613.260000px;}
.yf2{bottom:615.060000px;}
.y1b3{bottom:620.460000px;}
.y8c{bottom:622.980000px;}
.y58{bottom:624.780000px;}
.y124{bottom:625.500000px;}
.y170{bottom:626.940000px;}
.y27{bottom:628.020000px;}
.y14c{bottom:630.540000px;}
.y1b2{bottom:634.500000px;}
.y110{bottom:635.220000px;}
.y8a{bottom:640.620000px;}
.y16f{bottom:640.980000px;}
.y57{bottom:642.060000px;}
.yf1{bottom:643.140000px;}
.y26{bottom:643.500000px;}
.y1b1{bottom:648.180000px;}
.y14b{bottom:648.540000px;}
.y123{bottom:652.140000px;}
.y10f{bottom:653.220000px;}
.y16e{bottom:654.660000px;}
.y86{bottom:657.900000px;}
.y25{bottom:658.980000px;}
.y56{bottom:659.340000px;}
.yf0{bottom:661.140000px;}
.y1b0{bottom:661.860000px;}
.yd4{bottom:665.850000px;}
.y14a{bottom:666.930000px;}
.y16d{bottom:668.370000px;}
.y10e{bottom:671.610000px;}
.y24{bottom:674.490000px;}
.yd3{bottom:675.570000px;}
.y1af{bottom:675.930000px;}
.y55{bottom:676.650000px;}
.yef{bottom:679.170000px;}
.y16c{bottom:682.410000px;}
.y149{bottom:684.930000px;}
.y10d{bottom:689.610000px;}
.y23{bottom:689.970000px;}
.y54{bottom:693.930000px;}
.y122{bottom:694.650000px;}
.y16b{bottom:696.090000px;}
.yee{bottom:697.530000px;}
.y85{bottom:698.610000px;}
.y148{bottom:702.930000px;}
.y1ae{bottom:703.290000px;}
.y22{bottom:705.450000px;}
.y10c{bottom:707.250000px;}
.y16a{bottom:709.770000px;}
.y53{bottom:711.210000px;}
.yd2{bottom:711.930000px;}
.y121{bottom:712.650000px;}
.yed{bottom:715.530000px;}
.y84{bottom:715.890000px;}
.y1ad{bottom:717.330000px;}
.y10b{bottom:720.570000px;}
.y21{bottom:721.290000px;}
.y169{bottom:723.810000px;}
.y52{bottom:728.490000px;}
.yd1{bottom:729.930000px;}
.y120{bottom:730.650000px;}
.y1ac{bottom:731.010000px;}
.yec{bottom:733.530000px;}
.y10a{bottom:735.330000px;}
.y20{bottom:736.770000px;}
.y168{bottom:737.490000px;}
.y83{bottom:738.930000px;}
.y147{bottom:739.290000px;}
.yd0{bottom:744.690000px;}
.y51{bottom:745.410000px;}
.y11f{bottom:749.010000px;}
.y109{bottom:749.730000px;}
.y167{bottom:751.170000px;}
.yeb{bottom:751.890000px;}
.y1f{bottom:752.250000px;}
.y146{bottom:757.290000px;}
.y1ab{bottom:758.730000px;}
.y82{bottom:759.090000px;}
.ycf{bottom:759.450000px;}
.y50{bottom:762.690000px;}
.y108{bottom:764.490000px;}
.y11e{bottom:767.010000px;}
.y1e{bottom:767.730000px;}
.yea{bottom:769.890000px;}
.y1aa{bottom:772.410000px;}
.yce{bottom:773.850000px;}
.y166{bottom:774.570000px;}
.y145{bottom:775.650000px;}
.y107{bottom:778.890000px;}
.y4f{bottom:779.970000px;}
.y1d{bottom:783.210000px;}
.y11d{bottom:785.010000px;}
.y1a9{bottom:786.090000px;}
.ycd{bottom:788.250000px;}
.ye9{bottom:792.930000px;}
.y144{bottom:793.650000px;}
.y4e{bottom:797.250000px;}
.y1c{bottom:798.690000px;}
.y1a8{bottom:800.175000px;}
.y106{bottom:802.695000px;}
.ycc{bottom:803.055000px;}
.y11c{bottom:803.415000px;}
.ye8{bottom:810.255000px;}
.y165{bottom:810.615000px;}
.y1a7{bottom:813.855000px;}
.y1b{bottom:814.215000px;}
.y4d{bottom:814.575000px;}
.ycb{bottom:817.455000px;}
.y105{bottom:819.975000px;}
.y11b{bottom:821.415000px;}
.y1a6{bottom:827.535000px;}
.y164{bottom:828.975000px;}
.y1a{bottom:829.695000px;}
.ye7{bottom:830.415000px;}
.y4c{bottom:831.855000px;}
.yca{bottom:840.855000px;}
.y1a5{bottom:841.575000px;}
.y11a{bottom:843.015000px;}
.y104{bottom:844.095000px;}
.y19{bottom:845.175000px;}
.y4b{bottom:849.135000px;}
.y143{bottom:852.015000px;}
.y18{bottom:861.015000px;}
.y103{bottom:862.095000px;}
.yc9{bottom:863.535000px;}
.y1a4{bottom:864.975000px;}
.y4a{bottom:866.415000px;}
.y119{bottom:870.375000px;}
.y142{bottom:872.175000px;}
.y17{bottom:876.495000px;}
.y102{bottom:880.095000px;}
.yc8{bottom:881.895000px;}
.y49{bottom:883.695000px;}
.y118{bottom:888.375000px;}
.y16{bottom:891.975000px;}
.y1a3{bottom:899.535000px;}
.yc7{bottom:899.895000px;}
.y48{bottom:900.975000px;}
.y101{bottom:901.695000px;}
.y117{bottom:906.375000px;}
.y15{bottom:907.455000px;}
.y1a2{bottom:913.215000px;}
.yc6{bottom:917.895000px;}
.y47{bottom:918.255000px;}
.y14{bottom:922.935000px;}
.y100{bottom:923.655000px;}
.y1a1{bottom:927.255000px;}
.yc4{bottom:932.655000px;}
.y46{bottom:935.565000px;}
.y13{bottom:938.445000px;}
.y1a0{bottom:940.965000px;}
.yc3{bottom:947.445000px;}
.yff{bottom:947.805000px;}
.y45{bottom:952.485000px;}
.y12{bottom:953.925000px;}
.y19f{bottom:954.645000px;}
.yc2{bottom:961.845000px;}
.y19e{bottom:968.685000px;}
.yc1{bottom:976.605000px;}
.y19d{bottom:982.365000px;}
.y11{bottom:988.125000px;}
.ybf{bottom:991.005000px;}
.y19c{bottom:996.045000px;}
.y19b{bottom:1010.085000px;}
.y19a{bottom:1023.765000px;}
.ybe{bottom:1028.445000px;}
.y10{bottom:1029.525000px;}
.y199{bottom:1037.445000px;}
.y198{bottom:1051.485000px;}
.ybd{bottom:1052.565000px;}
.y197{bottom:1065.165000px;}
.yf{bottom:1070.970000px;}
.y196{bottom:1078.890000px;}
.y81{bottom:1086.450000px;}
.ybc{bottom:1088.970000px;}
.y7d{bottom:1092.930000px;}
.y80{bottom:1104.450000px;}
.y195{bottom:1106.610000px;}
.ybb{bottom:1106.970000px;}
.y7c{bottom:1110.930000px;}
.ye{bottom:1112.370000px;}
.y194{bottom:1120.290000px;}
.y7f{bottom:1122.810000px;}
.yba{bottom:1125.330000px;}
.ye6{bottom:1128.570000px;}
.y7b{bottom:1132.530000px;}
.y193{bottom:1134.330000px;}
.ye5{bottom:1136.850000px;}
.y7e{bottom:1140.810000px;}
.yb9{bottom:1146.930000px;}
.y192{bottom:1148.010000px;}
.yd{bottom:1153.770000px;}
.ye4{bottom:1155.210000px;}
.y7a{bottom:1158.810000px;}
.y191{bottom:1161.690000px;}
.yb8{bottom:1173.210000px;}
.y79{bottom:1176.450000px;}
.y78{bottom:1195.530000px;}
.y77{bottom:1214.640000px;}
.y2{bottom:1217.520000px;}
.y76{bottom:1233.360000px;}
.y1{bottom:1234.800000px;}
.h17{height:13.680000px;}
.h18{height:14.040000px;}
.h19{height:14.076000px;}
.h12{height:16.560000px;}
.h1b{height:16.782187px;}
.h13{height:16.920000px;}
.h14{height:16.956000px;}
.h1a{height:21.945937px;}
.h16{height:27.720000px;}
.h10{height:30.636000px;}
.h11{height:33.528516px;}
.hc{height:38.608594px;}
.h5{height:39.166875px;}
.h1f{height:40.056328px;}
.hd{height:42.600937px;}
.h2{height:42.672656px;}
.h1c{height:42.928594px;}
.he{height:44.031094px;}
.h9{height:44.406562px;}
.h6{height:44.640000px;}
.h21{height:44.798906px;}
.h8{height:46.736719px;}
.h1d{height:47.520000px;}
.ha{height:49.055625px;}
.h15{height:50.800781px;}
.h3{height:54.219375px;}
.h4{height:55.440000px;}
.h22{height:59.383125px;}
.h1e{height:62.676000px;}
.hf{height:64.546875px;}
.hb{height:107.147812px;}
.h7{height:129.093750px;}
.h20{height:276.195000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1a{width:30.636000px;}
.w15{width:36.360000px;}
.w13{width:41.760000px;}
.w12{width:41.796000px;}
.w6{width:45.396000px;}
.w16{width:47.556000px;}
.w14{width:52.236000px;}
.wf{width:54.396000px;}
.w8{width:56.916000px;}
.w17{width:63.036000px;}
.w1c{width:64.476000px;}
.w1d{width:65.556000px;}
.w1b{width:66.960000px;}
.w10{width:72.036000px;}
.w11{width:73.116000px;}
.wb{width:73.476000px;}
.wc{width:73.836000px;}
.w9{width:83.556000px;}
.wa{width:84.996000px;}
.wd{width:105.156000px;}
.we{width:105.516000px;}
.w5{width:114.876000px;}
.w7{width:151.590000px;}
.w19{width:169.275000px;}
.w2{width:194.505000px;}
.w18{width:211.785000px;}
.w3{width:243.105000px;}
.w1e{width:293.145000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:7.560000px;}
.x25{left:8.640000px;}
.x54{left:9.720000px;}
.x5{left:10.830000px;}
.x1e{left:12.240000px;}
.x24{left:13.710000px;}
.x26{left:15.480000px;}
.x43{left:16.920000px;}
.x27{left:18.030000px;}
.x3e{left:19.080000px;}
.x53{left:21.285000px;}
.x2e{left:22.320000px;}
.x61{left:23.760000px;}
.x22{left:25.560000px;}
.x3c{left:26.640000px;}
.x44{left:29.880000px;}
.x39{left:30.960000px;}
.x3a{left:32.400000px;}
.x29{left:33.480000px;}
.x3f{left:34.560000px;}
.x2c{left:36.360000px;}
.x28{left:38.520000px;}
.x1f{left:39.600000px;}
.x2d{left:41.760000px;}
.x2a{left:42.840000px;}
.x31{left:46.440000px;}
.x60{left:49.680000px;}
.x2f{left:52.920000px;}
.x23{left:57.600000px;}
.x30{left:59.400000px;}
.x59{left:61.200000px;}
.x2b{left:65.880000px;}
.x1d{left:67.356000px;}
.x6{left:70.236000px;}
.x15{left:74.555987px;}
.x57{left:75.990000px;}
.xc{left:81.036000px;}
.x7{left:84.276000px;}
.x9{left:87.876000px;}
.x32{left:88.955987px;}
.x37{left:91.475987px;}
.x38{left:93.996000px;}
.x8{left:102.276000px;}
.x4f{left:104.796000px;}
.x33{left:123.875987px;}
.x36{left:126.035987px;}
.x18{left:128.195987px;}
.x65{left:147.671987px;}
.x69{left:158.114987px;}
.x68{left:160.274987px;}
.x64{left:176.114987px;}
.xd{left:177.915000px;}
.x1b{left:182.954987px;}
.x5b{left:186.195000px;}
.x40{left:189.435000px;}
.x1c{left:197.354987px;}
.x4e{left:207.434987px;}
.xb{left:212.475000px;}
.x46{left:214.634987px;}
.x5c{left:216.825000px;}
.x50{left:221.145000px;}
.x21{left:229.425000px;}
.x16{left:236.624987px;}
.x17{left:256.424987px;}
.x3b{left:263.985000px;}
.x63{left:273.704987px;}
.x5a{left:281.624987px;}
.x5d{left:283.785000px;}
.x41{left:295.665000px;}
.x51{left:316.590000px;}
.xa{left:329.190000px;}
.x3d{left:338.190000px;}
.x5e{left:348.270000px;}
.x42{left:350.790000px;}
.x52{left:353.670000px;}
.x4d{left:359.069987px;}
.x1{left:382.470000px;}
.x5f{left:413.820000px;}
.x2{left:415.620000px;}
.x45{left:423.179987px;}
.x3{left:432.513000px;}
.x6a{left:435.779987px;}
.x14{left:446.579987px;}
.x56{left:449.460000px;}
.xe{left:457.380000px;}
.x48{left:460.619987px;}
.x4b{left:464.219987px;}
.xf{left:468.180000px;}
.x13{left:469.620000px;}
.x12{left:472.140000px;}
.x4{left:473.580000px;}
.x10{left:476.100000px;}
.x67{left:478.619987px;}
.x66{left:489.449987px;}
.x11{left:511.050000px;}
.x35{left:530.489987px;}
.x55{left:566.489987px;}
.x49{left:601.814987px;}
.x19{left:639.974987px;}
.x58{left:661.965000px;}
.x4c{left:751.649987px;}
.x62{left:778.649987px;}
.x34{left:808.889987px;}
.x4a{left:814.289987px;}
.x47{left:817.889987px;}
.x1a{left:826.529987px;}
@media print{
.v5{vertical-align:-16.640000pt;}
.v2{vertical-align:-5.120000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.560000pt;}
.v6{vertical-align:12.800000pt;}
.v4{vertical-align:16.640000pt;}
.lsb{letter-spacing:-1.280000pt;}
.ls15{letter-spacing:-1.264000pt;}
.ls26{letter-spacing:-0.864000pt;}
.ls25{letter-spacing:-0.832000pt;}
.lsa{letter-spacing:-0.720000pt;}
.lsc{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.432533pt;}
.ls1d{letter-spacing:-0.414933pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls27{letter-spacing:-0.276267pt;}
.lse{letter-spacing:-0.163733pt;}
.ls1e{letter-spacing:-0.017920pt;}
.ls24{letter-spacing:-0.014080pt;}
.ls12{letter-spacing:-0.013867pt;}
.ls9{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.014080pt;}
.ls7{letter-spacing:0.017920pt;}
.ls14{letter-spacing:0.018133pt;}
.ls13{letter-spacing:0.222933pt;}
.ls2{letter-spacing:0.367360pt;}
.ls20{letter-spacing:0.390400pt;}
.ls23{letter-spacing:0.414720pt;}
.ls8{letter-spacing:0.414933pt;}
.ls1f{letter-spacing:0.417067pt;}
.ls22{letter-spacing:0.417280pt;}
.ls18{letter-spacing:0.432533pt;}
.ls1{letter-spacing:0.442880pt;}
.ls2e{letter-spacing:0.445333pt;}
.ls21{letter-spacing:0.446720pt;}
.lsd{letter-spacing:0.560000pt;}
.ls19{letter-spacing:0.591360pt;}
.ls0{letter-spacing:0.640000pt;}
.ls2d{letter-spacing:0.746667pt;}
.ls11{letter-spacing:0.960000pt;}
.ls17{letter-spacing:8.094720pt;}
.ls5{letter-spacing:9.920000pt;}
.ls2c{letter-spacing:10.017280pt;}
.ls1a{letter-spacing:11.934720pt;}
.ls4{letter-spacing:15.200000pt;}
.ls28{letter-spacing:23.454720pt;}
.ls16{letter-spacing:23.465387pt;}
.ls3{letter-spacing:31.680000pt;}
.ls2b{letter-spacing:31.777280pt;}
.ls29{letter-spacing:36.254720pt;}
.ls2a{letter-spacing:36.361387pt;}
.ls1c{letter-spacing:79.774720pt;}
.ls1b{letter-spacing:81.054720pt;}
.ws1f{word-spacing:-53.760000pt;}
.ws1a{word-spacing:-52.928000pt;}
.ws13{word-spacing:-13.872533pt;}
.ws16{word-spacing:-13.854933pt;}
.wsa{word-spacing:-13.458133pt;}
.ws6{word-spacing:-13.440000pt;}
.ws15{word-spacing:-13.422080pt;}
.ws12{word-spacing:-13.025067pt;}
.ws11{word-spacing:-13.007467pt;}
.ws21{word-spacing:-12.576000pt;}
.wsb{word-spacing:-12.176000pt;}
.ws3{word-spacing:-12.160000pt;}
.ws4{word-spacing:-11.996267pt;}
.ws1{word-spacing:-11.440000pt;}
.ws9{word-spacing:-11.200000pt;}
.ws14{word-spacing:-11.151360pt;}
.ws20{word-spacing:-11.005333pt;}
.ws18{word-spacing:-10.977067pt;}
.ws2{word-spacing:-10.880000pt;}
.ws8{word-spacing:-10.782933pt;}
.ws17{word-spacing:-10.574080pt;}
.ws0{word-spacing:-10.560000pt;}
.ws7{word-spacing:-10.546133pt;}
.ws19{word-spacing:-10.545920pt;}
.ws1c{word-spacing:-9.292800pt;}
.ws1b{word-spacing:-9.016533pt;}
.ws1d{word-spacing:-6.720000pt;}
.ws1e{word-spacing:-6.080000pt;}
.ws10{word-spacing:0.000000pt;}
.ws5{word-spacing:26.464960pt;}
.wsd{word-spacing:79.916373pt;}
.wsc{word-spacing:81.196587pt;}
.wsf{word-spacing:82.041812pt;}
.wse{word-spacing:82.098562pt;}
._2f{margin-left:-8.754080pt;}
._22{margin-left:-5.011425pt;}
._11{margin-left:-3.937696pt;}
._23{margin-left:-2.998170pt;}
._0{margin-left:-1.827732pt;}
._2{margin-left:-0.914135pt;}
._1{width:0.966927pt;}
._3{width:2.016000pt;}
._a{width:3.157448pt;}
._4{width:4.054956pt;}
._9{width:5.100229pt;}
._7{width:6.517432pt;}
._6{width:7.636127pt;}
._5{width:9.187948pt;}
._8{width:10.315607pt;}
._1d{width:11.417791pt;}
._1c{width:12.526403pt;}
._d{width:14.026153pt;}
._16{width:15.010970pt;}
._f{width:15.958513pt;}
._10{width:17.684275pt;}
._1f{width:18.802756pt;}
._c{width:20.608548pt;}
._b{width:21.895514pt;}
._1e{width:22.799360pt;}
._2a{width:23.829350pt;}
._21{width:24.891740pt;}
._20{width:26.234665pt;}
._2b{width:27.136840pt;}
._18{width:28.331735pt;}
._19{width:29.460265pt;}
._17{width:30.697605pt;}
._13{width:32.102484pt;}
._12{width:33.265920pt;}
._e{width:35.486467pt;}
._27{width:41.018880pt;}
._26{width:41.933015pt;}
._25{width:43.169172pt;}
._1b{width:51.489492pt;}
._1a{width:52.417075pt;}
._28{width:60.707750pt;}
._29{width:61.609498pt;}
._24{width:63.705600pt;}
._15{width:68.733961pt;}
._14{width:69.963302pt;}
._2e{width:78.509445pt;}
._2c{width:89.477120pt;}
._2d{width:90.436690pt;}
._30{width:98.725866pt;}
.fs8{font-size:16.640000pt;}
.fs7{font-size:21.760000pt;}
.fs9{font-size:26.880000pt;}
.fs1{font-size:42.240000pt;}
.fs4{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs3{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:106.240000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.yc0{bottom:2.240000pt;}
.y8{bottom:2.560000pt;}
.yc5{bottom:2.586667pt;}
.y8b{bottom:3.200000pt;}
.y8e{bottom:3.520000pt;}
.y88{bottom:3.840000pt;}
.yc{bottom:5.440000pt;}
.y9{bottom:8.992000pt;}
.y4{bottom:11.872000pt;}
.y7{bottom:14.720000pt;}
.y89{bottom:15.706667pt;}
.y87{bottom:16.026667pt;}
.y3{bottom:16.992000pt;}
.y12a{bottom:17.280000pt;}
.yb{bottom:17.600000pt;}
.y128{bottom:18.560000pt;}
.y6{bottom:26.880000pt;}
.ya{bottom:29.760000pt;}
.y129{bottom:30.720000pt;}
.y127{bottom:31.040000pt;}
.y5{bottom:39.360000pt;}
.y12c{bottom:44.186667pt;}
.y13e{bottom:51.520000pt;}
.y13d{bottom:63.680000pt;}
.yb7{bottom:73.632000pt;}
.yfe{bottom:74.592000pt;}
.y13c{bottom:76.160000pt;}
.ye3{bottom:78.432000pt;}
.y1d1{bottom:80.672000pt;}
.y141{bottom:83.552000pt;}
.y75{bottom:86.752000pt;}
.y13b{bottom:88.320000pt;}
.yfd{bottom:90.592000pt;}
.yb6{bottom:91.232000pt;}
.y44{bottom:93.472000pt;}
.ye2{bottom:94.752000pt;}
.y140{bottom:99.552000pt;}
.y163{bottom:100.192000pt;}
.y13a{bottom:100.506667pt;}
.y74{bottom:103.072000pt;}
.y43{bottom:105.632000pt;}
.yfc{bottom:106.592000pt;}
.yb5{bottom:108.832000pt;}
.ye1{bottom:110.752000pt;}
.y1d0{bottom:111.072000pt;}
.y139{bottom:112.986667pt;}
.ya7{bottom:114.272000pt;}
.y162{bottom:116.192000pt;}
.y42{bottom:118.144000pt;}
.y13f{bottom:118.784000pt;}
.y73{bottom:119.104000pt;}
.yfb{bottom:122.944000pt;}
.y138{bottom:125.146667pt;}
.yb4{bottom:126.464000pt;}
.ye0{bottom:126.784000pt;}
.y1cf{bottom:128.384000pt;}
.ya6{bottom:130.304000pt;}
.y161{bottom:132.544000pt;}
.y72{bottom:135.106667pt;}
.y137{bottom:137.306667pt;}
.yfa{bottom:138.946667pt;}
.y12f{bottom:139.906667pt;}
.y190{bottom:140.226667pt;}
.y1ce{bottom:141.186667pt;}
.y41{bottom:142.466667pt;}
.ydf{bottom:143.106667pt;}
.yb3{bottom:144.066667pt;}
.ya5{bottom:146.306667pt;}
.y160{bottom:148.546667pt;}
.y136{bottom:149.786667pt;}
.y71{bottom:151.106667pt;}
.y18f{bottom:152.386667pt;}
.y40{bottom:154.946667pt;}
.y1cd{bottom:156.546667pt;}
.yde{bottom:159.106667pt;}
.yb2{bottom:161.666667pt;}
.y135{bottom:161.946667pt;}
.ya4{bottom:162.306667pt;}
.y15f{bottom:164.546667pt;}
.y18e{bottom:164.866667pt;}
.y3f{bottom:167.106667pt;}
.y70{bottom:167.426667pt;}
.yf9{bottom:171.266667pt;}
.y1cc{bottom:171.906667pt;}
.y134{bottom:174.106667pt;}
.ydd{bottom:175.106667pt;}
.y18d{bottom:177.026667pt;}
.ya3{bottom:178.626667pt;}
.y3e{bottom:179.266667pt;}
.y15e{bottom:180.546667pt;}
.y6f{bottom:183.426667pt;}
.y133{bottom:186.586667pt;}
.yf8{bottom:187.266667pt;}
.y18c{bottom:189.186667pt;}
.ydc{bottom:191.426667pt;}
.y3d{bottom:191.746667pt;}
.ya2{bottom:194.626667pt;}
.y15d{bottom:196.866667pt;}
.yb1{bottom:197.186667pt;}
.y132{bottom:198.746667pt;}
.y6e{bottom:199.426667pt;}
.y18b{bottom:201.666667pt;}
.y1cb{bottom:202.626667pt;}
.yf7{bottom:203.266667pt;}
.y3c{bottom:203.906667pt;}
.ydb{bottom:207.426667pt;}
.ya1{bottom:210.626667pt;}
.y131{bottom:210.906667pt;}
.y15c{bottom:212.866667pt;}
.y18a{bottom:213.826667pt;}
.y6d{bottom:215.746667pt;}
.y3b{bottom:216.066667pt;}
.yb0{bottom:216.386667pt;}
.y1ca{bottom:217.986667pt;}
.yf6{bottom:219.266667pt;}
.yda{bottom:223.426667pt;}
.y189{bottom:225.986667pt;}
.ya0{bottom:226.946667pt;}
.y3a{bottom:228.866667pt;}
.y6c{bottom:231.746667pt;}
.y1c9{bottom:233.346667pt;}
.y130{bottom:235.586667pt;}
.yf5{bottom:235.613333pt;}
.y188{bottom:238.493333pt;}
.yd9{bottom:239.773333pt;}
.yaf{bottom:242.013333pt;}
.y9f{bottom:242.973333pt;}
.y39{bottom:243.933333pt;}
.y15b{bottom:245.213333pt;}
.y6b{bottom:247.773333pt;}
.y1c8{bottom:248.413333pt;}
.y187{bottom:250.653333pt;}
.yd8{bottom:255.773333pt;}
.y38{bottom:256.093333pt;}
.y9e{bottom:258.973333pt;}
.yae{bottom:259.613333pt;}
.y15a{bottom:261.213333pt;}
.y186{bottom:262.813333pt;}
.y1c7{bottom:263.773333pt;}
.y6a{bottom:264.093333pt;}
.y37{bottom:268.253333pt;}
.yf4{bottom:271.453333pt;}
.y9d{bottom:275.293333pt;}
.yd7{bottom:276.253333pt;}
.yad{bottom:277.213333pt;}
.y69{bottom:279.453333pt;}
.y36{bottom:280.733333pt;}
.y185{bottom:287.453333pt;}
.yf3{bottom:289.373333pt;}
.y9c{bottom:291.293333pt;}
.yd6{bottom:291.613333pt;}
.y159{bottom:293.533333pt;}
.y1c6{bottom:293.853333pt;}
.y35{bottom:294.813333pt;}
.y184{bottom:299.613333pt;}
.y1c5{bottom:306.333333pt;}
.y9b{bottom:307.293333pt;}
.y34{bottom:308.573333pt;}
.y158{bottom:309.533333pt;}
.y68{bottom:309.853333pt;}
.yd5{bottom:310.493333pt;}
.y183{bottom:312.093333pt;}
.yac{bottom:312.413333pt;}
.y1c4{bottom:318.493333pt;}
.y33{bottom:322.333333pt;}
.y9a{bottom:323.613333pt;}
.y182{bottom:324.253333pt;}
.y67{bottom:325.213333pt;}
.y157{bottom:325.533333pt;}
.yab{bottom:330.333333pt;}
.y1c3{bottom:330.653333pt;}
.y181{bottom:336.413333pt;}
.y99{bottom:339.613333pt;}
.y66{bottom:340.573333pt;}
.y156{bottom:341.853333pt;}
.y1c2{bottom:343.133333pt;}
.y180{bottom:348.893333pt;}
.yaa{bottom:349.533333pt;}
.y1c1{bottom:355.333333pt;}
.y98{bottom:355.653333pt;}
.y65{bottom:355.973333pt;}
.y32{bottom:356.293333pt;}
.y155{bottom:357.893333pt;}
.y17f{bottom:361.093333pt;}
.y1c0{bottom:367.493333pt;}
.y64{bottom:371.333333pt;}
.y97{bottom:371.653333pt;}
.ya9{bottom:372.933333pt;}
.y17e{bottom:373.253333pt;}
.y1bf{bottom:379.973333pt;}
.y154{bottom:383.493333pt;}
.y17d{bottom:385.733333pt;}
.y12e{bottom:386.053333pt;}
.y63{bottom:386.693333pt;}
.y96{bottom:387.973333pt;}
.ya8{bottom:390.853333pt;}
.y31{bottom:392.133333pt;}
.y17c{bottom:397.893333pt;}
.y62{bottom:402.053333pt;}
.y95{bottom:403.973333pt;}
.y1be{bottom:404.293333pt;}
.y17b{bottom:410.053333pt;}
.y153{bottom:415.493333pt;}
.y1bd{bottom:416.773333pt;}
.y61{bottom:417.413333pt;}
.y12d{bottom:419.333333pt;}
.y17a{bottom:422.533333pt;}
.y30{bottom:423.173333pt;}
.y1bc{bottom:428.933333pt;}
.y152{bottom:431.813333pt;}
.y60{bottom:432.773333pt;}
.y179{bottom:434.693333pt;}
.y2f{bottom:436.933333pt;}
.y12b{bottom:441.093333pt;}
.y94{bottom:444.613333pt;}
.y178{bottom:446.853333pt;}
.y151{bottom:447.813333pt;}
.y5f{bottom:448.133333pt;}
.y2e{bottom:451.013333pt;}
.y1bb{bottom:453.573333pt;}
.y116{bottom:457.413333pt;}
.y177{bottom:459.333333pt;}
.y93{bottom:459.973333pt;}
.y5e{bottom:463.493333pt;}
.y150{bottom:463.813333pt;}
.y2d{bottom:464.773333pt;}
.y1ba{bottom:465.733333pt;}
.y115{bottom:470.213333pt;}
.y176{bottom:471.493333pt;}
.y92{bottom:475.680000pt;}
.y1b9{bottom:477.920000pt;}
.y2c{bottom:478.560000pt;}
.y5d{bottom:478.880000pt;}
.y14f{bottom:480.160000pt;}
.y114{bottom:483.360000pt;}
.y175{bottom:483.680000pt;}
.y1b8{bottom:490.400000pt;}
.y91{bottom:491.360000pt;}
.y2b{bottom:492.320000pt;}
.y5c{bottom:493.920000pt;}
.y113{bottom:496.160000pt;}
.y126{bottom:497.440000pt;}
.y1b7{bottom:502.560000pt;}
.y90{bottom:507.040000pt;}
.y174{bottom:508.320000pt;}
.y5b{bottom:509.280000pt;}
.y2a{bottom:511.520000pt;}
.y14e{bottom:512.160000pt;}
.y1b6{bottom:514.720000pt;}
.y173{bottom:520.480000pt;}
.y112{bottom:522.080000pt;}
.y8f{bottom:522.400000pt;}
.y5a{bottom:524.640000pt;}
.y1b5{bottom:527.200000pt;}
.y14d{bottom:528.160000pt;}
.y29{bottom:530.720000pt;}
.y172{bottom:532.960000pt;}
.y8d{bottom:538.080000pt;}
.y1b4{bottom:539.360000pt;}
.y59{bottom:540.000000pt;}
.y125{bottom:540.320000pt;}
.y111{bottom:543.200000pt;}
.y28{bottom:544.480000pt;}
.y171{bottom:545.120000pt;}
.yf2{bottom:546.720000pt;}
.y1b3{bottom:551.520000pt;}
.y8c{bottom:553.760000pt;}
.y58{bottom:555.360000pt;}
.y124{bottom:556.000000pt;}
.y170{bottom:557.280000pt;}
.y27{bottom:558.240000pt;}
.y14c{bottom:560.480000pt;}
.y1b2{bottom:564.000000pt;}
.y110{bottom:564.640000pt;}
.y8a{bottom:569.440000pt;}
.y16f{bottom:569.760000pt;}
.y57{bottom:570.720000pt;}
.yf1{bottom:571.680000pt;}
.y26{bottom:572.000000pt;}
.y1b1{bottom:576.160000pt;}
.y14b{bottom:576.480000pt;}
.y123{bottom:579.680000pt;}
.y10f{bottom:580.640000pt;}
.y16e{bottom:581.920000pt;}
.y86{bottom:584.800000pt;}
.y25{bottom:585.760000pt;}
.y56{bottom:586.080000pt;}
.yf0{bottom:587.680000pt;}
.y1b0{bottom:588.320000pt;}
.yd4{bottom:591.866667pt;}
.y14a{bottom:592.826667pt;}
.y16d{bottom:594.106667pt;}
.y10e{bottom:596.986667pt;}
.y24{bottom:599.546667pt;}
.yd3{bottom:600.506667pt;}
.y1af{bottom:600.826667pt;}
.y55{bottom:601.466667pt;}
.yef{bottom:603.706667pt;}
.y16c{bottom:606.586667pt;}
.y149{bottom:608.826667pt;}
.y10d{bottom:612.986667pt;}
.y23{bottom:613.306667pt;}
.y54{bottom:616.826667pt;}
.y122{bottom:617.466667pt;}
.y16b{bottom:618.746667pt;}
.yee{bottom:620.026667pt;}
.y85{bottom:620.986667pt;}
.y148{bottom:624.826667pt;}
.y1ae{bottom:625.146667pt;}
.y22{bottom:627.066667pt;}
.y10c{bottom:628.666667pt;}
.y16a{bottom:630.906667pt;}
.y53{bottom:632.186667pt;}
.yd2{bottom:632.826667pt;}
.y121{bottom:633.466667pt;}
.yed{bottom:636.026667pt;}
.y84{bottom:636.346667pt;}
.y1ad{bottom:637.626667pt;}
.y10b{bottom:640.506667pt;}
.y21{bottom:641.146667pt;}
.y169{bottom:643.386667pt;}
.y52{bottom:647.546667pt;}
.yd1{bottom:648.826667pt;}
.y120{bottom:649.466667pt;}
.y1ac{bottom:649.786667pt;}
.yec{bottom:652.026667pt;}
.y10a{bottom:653.626667pt;}
.y20{bottom:654.906667pt;}
.y168{bottom:655.546667pt;}
.y83{bottom:656.826667pt;}
.y147{bottom:657.146667pt;}
.yd0{bottom:661.946667pt;}
.y51{bottom:662.586667pt;}
.y11f{bottom:665.786667pt;}
.y109{bottom:666.426667pt;}
.y167{bottom:667.706667pt;}
.yeb{bottom:668.346667pt;}
.y1f{bottom:668.666667pt;}
.y146{bottom:673.146667pt;}
.y1ab{bottom:674.426667pt;}
.y82{bottom:674.746667pt;}
.ycf{bottom:675.066667pt;}
.y50{bottom:677.946667pt;}
.y108{bottom:679.546667pt;}
.y11e{bottom:681.786667pt;}
.y1e{bottom:682.426667pt;}
.yea{bottom:684.346667pt;}
.y1aa{bottom:686.586667pt;}
.yce{bottom:687.866667pt;}
.y166{bottom:688.506667pt;}
.y145{bottom:689.466667pt;}
.y107{bottom:692.346667pt;}
.y4f{bottom:693.306667pt;}
.y1d{bottom:696.186667pt;}
.y11d{bottom:697.786667pt;}
.y1a9{bottom:698.746667pt;}
.ycd{bottom:700.666667pt;}
.ye9{bottom:704.826667pt;}
.y144{bottom:705.466667pt;}
.y4e{bottom:708.666667pt;}
.y1c{bottom:709.946667pt;}
.y1a8{bottom:711.266667pt;}
.y106{bottom:713.506667pt;}
.ycc{bottom:713.826667pt;}
.y11c{bottom:714.146667pt;}
.ye8{bottom:720.226667pt;}
.y165{bottom:720.546667pt;}
.y1a7{bottom:723.426667pt;}
.y1b{bottom:723.746667pt;}
.y4d{bottom:724.066667pt;}
.ycb{bottom:726.626667pt;}
.y105{bottom:728.866667pt;}
.y11b{bottom:730.146667pt;}
.y1a6{bottom:735.586667pt;}
.y164{bottom:736.866667pt;}
.y1a{bottom:737.506667pt;}
.ye7{bottom:738.146667pt;}
.y4c{bottom:739.426667pt;}
.yca{bottom:747.426667pt;}
.y1a5{bottom:748.066667pt;}
.y11a{bottom:749.346667pt;}
.y104{bottom:750.306667pt;}
.y19{bottom:751.266667pt;}
.y4b{bottom:754.786667pt;}
.y143{bottom:757.346667pt;}
.y18{bottom:765.346667pt;}
.y103{bottom:766.306667pt;}
.yc9{bottom:767.586667pt;}
.y1a4{bottom:768.866667pt;}
.y4a{bottom:770.146667pt;}
.y119{bottom:773.666667pt;}
.y142{bottom:775.266667pt;}
.y17{bottom:779.106667pt;}
.y102{bottom:782.306667pt;}
.yc8{bottom:783.906667pt;}
.y49{bottom:785.506667pt;}
.y118{bottom:789.666667pt;}
.y16{bottom:792.866667pt;}
.y1a3{bottom:799.586667pt;}
.yc7{bottom:799.906667pt;}
.y48{bottom:800.866667pt;}
.y101{bottom:801.506667pt;}
.y117{bottom:805.666667pt;}
.y15{bottom:806.626667pt;}
.y1a2{bottom:811.746667pt;}
.yc6{bottom:815.906667pt;}
.y47{bottom:816.226667pt;}
.y14{bottom:820.386667pt;}
.y100{bottom:821.026667pt;}
.y1a1{bottom:824.226667pt;}
.yc4{bottom:829.026667pt;}
.y46{bottom:831.613333pt;}
.y13{bottom:834.173333pt;}
.y1a0{bottom:836.413333pt;}
.yc3{bottom:842.173333pt;}
.yff{bottom:842.493333pt;}
.y45{bottom:846.653333pt;}
.y12{bottom:847.933333pt;}
.y19f{bottom:848.573333pt;}
.yc2{bottom:854.973333pt;}
.y19e{bottom:861.053333pt;}
.yc1{bottom:868.093333pt;}
.y19d{bottom:873.213333pt;}
.y11{bottom:878.333333pt;}
.ybf{bottom:880.893333pt;}
.y19c{bottom:885.373333pt;}
.y19b{bottom:897.853333pt;}
.y19a{bottom:910.013333pt;}
.ybe{bottom:914.173333pt;}
.y10{bottom:915.133333pt;}
.y199{bottom:922.173333pt;}
.y198{bottom:934.653333pt;}
.ybd{bottom:935.613333pt;}
.y197{bottom:946.813333pt;}
.yf{bottom:951.973333pt;}
.y196{bottom:959.013333pt;}
.y81{bottom:965.733333pt;}
.ybc{bottom:967.973333pt;}
.y7d{bottom:971.493333pt;}
.y80{bottom:981.733333pt;}
.y195{bottom:983.653333pt;}
.ybb{bottom:983.973333pt;}
.y7c{bottom:987.493333pt;}
.ye{bottom:988.773333pt;}
.y194{bottom:995.813333pt;}
.y7f{bottom:998.053333pt;}
.yba{bottom:1000.293333pt;}
.ye6{bottom:1003.173333pt;}
.y7b{bottom:1006.693333pt;}
.y193{bottom:1008.293333pt;}
.ye5{bottom:1010.533333pt;}
.y7e{bottom:1014.053333pt;}
.yb9{bottom:1019.493333pt;}
.y192{bottom:1020.453333pt;}
.yd{bottom:1025.573333pt;}
.ye4{bottom:1026.853333pt;}
.y7a{bottom:1030.053333pt;}
.y191{bottom:1032.613333pt;}
.yb8{bottom:1042.853333pt;}
.y79{bottom:1045.733333pt;}
.y78{bottom:1062.693333pt;}
.y77{bottom:1079.680000pt;}
.y2{bottom:1082.240000pt;}
.y76{bottom:1096.320000pt;}
.y1{bottom:1097.600000pt;}
.h17{height:12.160000pt;}
.h18{height:12.480000pt;}
.h19{height:12.512000pt;}
.h12{height:14.720000pt;}
.h1b{height:14.917500pt;}
.h13{height:15.040000pt;}
.h14{height:15.072000pt;}
.h1a{height:19.507500pt;}
.h16{height:24.640000pt;}
.h10{height:27.232000pt;}
.h11{height:29.803125pt;}
.hc{height:34.318750pt;}
.h5{height:34.815000pt;}
.h1f{height:35.605625pt;}
.hd{height:37.867500pt;}
.h2{height:37.931250pt;}
.h1c{height:38.158750pt;}
.he{height:39.138750pt;}
.h9{height:39.472500pt;}
.h6{height:39.680000pt;}
.h21{height:39.821250pt;}
.h8{height:41.543750pt;}
.h1d{height:42.240000pt;}
.ha{height:43.605000pt;}
.h15{height:45.156250pt;}
.h3{height:48.195000pt;}
.h4{height:49.280000pt;}
.h22{height:52.785000pt;}
.h1e{height:55.712000pt;}
.hf{height:57.375000pt;}
.hb{height:95.242500pt;}
.h7{height:114.750000pt;}
.h20{height:245.506667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1a{width:27.232000pt;}
.w15{width:32.320000pt;}
.w13{width:37.120000pt;}
.w12{width:37.152000pt;}
.w6{width:40.352000pt;}
.w16{width:42.272000pt;}
.w14{width:46.432000pt;}
.wf{width:48.352000pt;}
.w8{width:50.592000pt;}
.w17{width:56.032000pt;}
.w1c{width:57.312000pt;}
.w1d{width:58.272000pt;}
.w1b{width:59.520000pt;}
.w10{width:64.032000pt;}
.w11{width:64.992000pt;}
.wb{width:65.312000pt;}
.wc{width:65.632000pt;}
.w9{width:74.272000pt;}
.wa{width:75.552000pt;}
.wd{width:93.472000pt;}
.we{width:93.792000pt;}
.w5{width:102.112000pt;}
.w7{width:134.746667pt;}
.w19{width:150.466667pt;}
.w2{width:172.893333pt;}
.w18{width:188.253333pt;}
.w3{width:216.093333pt;}
.w1e{width:260.573333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:6.720000pt;}
.x25{left:7.680000pt;}
.x54{left:8.640000pt;}
.x5{left:9.626667pt;}
.x1e{left:10.880000pt;}
.x24{left:12.186667pt;}
.x26{left:13.760000pt;}
.x43{left:15.040000pt;}
.x27{left:16.026667pt;}
.x3e{left:16.960000pt;}
.x53{left:18.920000pt;}
.x2e{left:19.840000pt;}
.x61{left:21.120000pt;}
.x22{left:22.720000pt;}
.x3c{left:23.680000pt;}
.x44{left:26.560000pt;}
.x39{left:27.520000pt;}
.x3a{left:28.800000pt;}
.x29{left:29.760000pt;}
.x3f{left:30.720000pt;}
.x2c{left:32.320000pt;}
.x28{left:34.240000pt;}
.x1f{left:35.200000pt;}
.x2d{left:37.120000pt;}
.x2a{left:38.080000pt;}
.x31{left:41.280000pt;}
.x60{left:44.160000pt;}
.x2f{left:47.040000pt;}
.x23{left:51.200000pt;}
.x30{left:52.800000pt;}
.x59{left:54.400000pt;}
.x2b{left:58.560000pt;}
.x1d{left:59.872000pt;}
.x6{left:62.432000pt;}
.x15{left:66.271988pt;}
.x57{left:67.546667pt;}
.xc{left:72.032000pt;}
.x7{left:74.912000pt;}
.x9{left:78.112000pt;}
.x32{left:79.071988pt;}
.x37{left:81.311988pt;}
.x38{left:83.552000pt;}
.x8{left:90.912000pt;}
.x4f{left:93.152000pt;}
.x33{left:110.111988pt;}
.x36{left:112.031988pt;}
.x18{left:113.951988pt;}
.x65{left:131.263988pt;}
.x69{left:140.546655pt;}
.x68{left:142.466655pt;}
.x64{left:156.546655pt;}
.xd{left:158.146667pt;}
.x1b{left:162.626655pt;}
.x5b{left:165.506667pt;}
.x40{left:168.386667pt;}
.x1c{left:175.426655pt;}
.x4e{left:184.386655pt;}
.xb{left:188.866667pt;}
.x46{left:190.786655pt;}
.x5c{left:192.733333pt;}
.x50{left:196.573333pt;}
.x21{left:203.933333pt;}
.x16{left:210.333322pt;}
.x17{left:227.933322pt;}
.x3b{left:234.653333pt;}
.x63{left:243.293322pt;}
.x5a{left:250.333322pt;}
.x5d{left:252.253333pt;}
.x41{left:262.813333pt;}
.x51{left:281.413333pt;}
.xa{left:292.613333pt;}
.x3d{left:300.613333pt;}
.x5e{left:309.573333pt;}
.x42{left:311.813333pt;}
.x52{left:314.373333pt;}
.x4d{left:319.173322pt;}
.x1{left:339.973333pt;}
.x5f{left:367.840000pt;}
.x2{left:369.440000pt;}
.x45{left:376.159988pt;}
.x3{left:384.456000pt;}
.x6a{left:387.359988pt;}
.x14{left:396.959988pt;}
.x56{left:399.520000pt;}
.xe{left:406.560000pt;}
.x48{left:409.439988pt;}
.x4b{left:412.639988pt;}
.xf{left:416.160000pt;}
.x13{left:417.440000pt;}
.x12{left:419.680000pt;}
.x4{left:420.960000pt;}
.x10{left:423.200000pt;}
.x67{left:425.439988pt;}
.x66{left:435.066655pt;}
.x11{left:454.266667pt;}
.x35{left:471.546655pt;}
.x55{left:503.546655pt;}
.x49{left:534.946655pt;}
.x19{left:568.866655pt;}
.x58{left:588.413333pt;}
.x4c{left:668.133322pt;}
.x62{left:692.133322pt;}
.x34{left:719.013322pt;}
.x4a{left:723.813322pt;}
.x47{left:727.013322pt;}
.x1a{left:734.693322pt;}
}




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