
    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_4295d30f15aab199715045a8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_ae884da97b2f5794632aad5a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_b07286ee6f5d364b4fa76011.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.592000;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_c9c1b016129215f23d28f1dd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.592000;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);}
.v2{vertical-align:-76.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.500000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.006000px;}
.ls4{letter-spacing:0.012000px;}
.ls2{letter-spacing:0.933000px;}
.ls0{letter-spacing:1.482000px;}
.ls6{letter-spacing:1.488000px;}
.ls9{letter-spacing:1.494000px;}
.ls8{letter-spacing:1.500000px;}
.lsa{letter-spacing:1.506000px;}
.ls5{letter-spacing:1.512000px;}
.ls3{letter-spacing:1.518000px;}
.lsb{letter-spacing:3.000000px;}
.lsc{letter-spacing:3.006000px;}
.lsd{letter-spacing:15.012000px;}
.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;}
}
.ws50{word-spacing:-18.114000px;}
.ws57{word-spacing:-18.066000px;}
.ws5a{word-spacing:-18.060000px;}
.ws3c{word-spacing:-18.030000px;}
.ws6f{word-spacing:-17.940000px;}
.ws4f{word-spacing:-17.928000px;}
.ws22{word-spacing:-17.910000px;}
.ws74{word-spacing:-17.808000px;}
.ws53{word-spacing:-17.760000px;}
.ws75{word-spacing:-17.736000px;}
.ws6c{word-spacing:-17.628000px;}
.ws38{word-spacing:-17.622000px;}
.ws30{word-spacing:-17.586000px;}
.ws72{word-spacing:-17.562000px;}
.ws47{word-spacing:-17.538000px;}
.wsb1{word-spacing:-17.514000px;}
.ws23{word-spacing:-17.472000px;}
.wsb6{word-spacing:-17.430000px;}
.wsb0{word-spacing:-17.328000px;}
.ws28{word-spacing:-17.310000px;}
.ws4b{word-spacing:-17.262000px;}
.ws5b{word-spacing:-17.184000px;}
.wsaf{word-spacing:-17.160000px;}
.ws2f{word-spacing:-17.130000px;}
.ws2c{word-spacing:-17.118000px;}
.ws31{word-spacing:-17.106000px;}
.ws76{word-spacing:-16.986000px;}
.ws4e{word-spacing:-16.956000px;}
.ws25{word-spacing:-16.944000px;}
.ws1a{word-spacing:-16.938000px;}
.ws63{word-spacing:-16.914000px;}
.ws4c{word-spacing:-16.884000px;}
.ws5e{word-spacing:-16.866000px;}
.wsc6{word-spacing:-16.860000px;}
.ws54{word-spacing:-16.848000px;}
.ws6b{word-spacing:-16.830000px;}
.ws45{word-spacing:-16.812000px;}
.ws3d{word-spacing:-16.758000px;}
.ws1f{word-spacing:-16.740000px;}
.ws33{word-spacing:-16.734000px;}
.wsbf{word-spacing:-16.728000px;}
.ws3a{word-spacing:-16.722000px;}
.ws2e{word-spacing:-16.698000px;}
.ws32{word-spacing:-16.692000px;}
.wsc1{word-spacing:-16.680000px;}
.ws3e{word-spacing:-16.674000px;}
.ws6e{word-spacing:-16.668000px;}
.ws67{word-spacing:-16.656000px;}
.ws65{word-spacing:-16.650000px;}
.ws5f{word-spacing:-16.644000px;}
.wsc0{word-spacing:-16.638000px;}
.ws37{word-spacing:-16.632000px;}
.ws71{word-spacing:-16.620000px;}
.ws46{word-spacing:-16.614000px;}
.ws1e{word-spacing:-16.596000px;}
.ws16{word-spacing:-16.578000px;}
.ws52{word-spacing:-16.554000px;}
.ws29{word-spacing:-16.542000px;}
.ws10{word-spacing:-16.530000px;}
.ws2b{word-spacing:-16.512000px;}
.ws24{word-spacing:-16.506000px;}
.ws8{word-spacing:-16.500000px;}
.ws49{word-spacing:-16.494000px;}
.ws59{word-spacing:-16.482000px;}
.ws4d{word-spacing:-16.476000px;}
.ws26{word-spacing:-16.446000px;}
.ws62{word-spacing:-16.434000px;}
.ws61{word-spacing:-16.410000px;}
.wsb3{word-spacing:-16.380000px;}
.ws20{word-spacing:-16.374000px;}
.ws68{word-spacing:-16.362000px;}
.ws12{word-spacing:-16.332000px;}
.wsc3{word-spacing:-16.296000px;}
.wsb2{word-spacing:-16.290000px;}
.ws60{word-spacing:-16.284000px;}
.wsb{word-spacing:-16.278000px;}
.ws2d{word-spacing:-16.272000px;}
.wsd{word-spacing:-16.260000px;}
.ws34{word-spacing:-16.254000px;}
.ws1c{word-spacing:-16.242000px;}
.ws51{word-spacing:-16.236000px;}
.ws6d{word-spacing:-16.218000px;}
.ws2a{word-spacing:-16.182000px;}
.ws15{word-spacing:-16.170000px;}
.ws70{word-spacing:-16.158000px;}
.ws36{word-spacing:-16.128000px;}
.wsba{word-spacing:-16.122000px;}
.wsc7{word-spacing:-16.062000px;}
.ws69{word-spacing:-16.056000px;}
.wsa{word-spacing:-16.044000px;}
.wsc{word-spacing:-16.014000px;}
.ws17{word-spacing:-15.972000px;}
.ws14{word-spacing:-15.960000px;}
.ws19{word-spacing:-15.930000px;}
.ws41{word-spacing:-15.870000px;}
.ws6a{word-spacing:-15.846000px;}
.wsbc{word-spacing:-15.840000px;}
.ws40{word-spacing:-15.834000px;}
.wsb5{word-spacing:-15.792000px;}
.ws3f{word-spacing:-15.732000px;}
.wsb8{word-spacing:-15.708000px;}
.ws21{word-spacing:-15.660000px;}
.ws18{word-spacing:-15.630000px;}
.ws13{word-spacing:-15.534000px;}
.wsbb{word-spacing:-15.510000px;}
.wscd{word-spacing:-15.438000px;}
.ws77{word-spacing:-15.408000px;}
.ws56{word-spacing:-15.402000px;}
.ws3b{word-spacing:-15.246000px;}
.ws7e{word-spacing:-15.060000px;}
.wsab{word-spacing:-15.024000px;}
.ws7a{word-spacing:-15.000000px;}
.ws11{word-spacing:-14.694000px;}
.wse{word-spacing:-14.592000px;}
.wsc4{word-spacing:-14.574000px;}
.wsf{word-spacing:-14.550000px;}
.ws66{word-spacing:-14.538000px;}
.ws9{word-spacing:-14.532000px;}
.wsc5{word-spacing:-14.388000px;}
.wsa4{word-spacing:-14.226000px;}
.wsae{word-spacing:-14.082000px;}
.ws4{word-spacing:-13.968000px;}
.ws1{word-spacing:-13.500000px;}
.ws92{word-spacing:-13.009500px;}
.ws99{word-spacing:-12.730500px;}
.ws93{word-spacing:-12.676500px;}
.ws83{word-spacing:-12.667500px;}
.ws8d{word-spacing:-12.640500px;}
.ws8e{word-spacing:-12.573000px;}
.wsa2{word-spacing:-12.474000px;}
.ws85{word-spacing:-12.447000px;}
.ws8c{word-spacing:-12.222000px;}
.wsa0{word-spacing:-12.217500px;}
.ws97{word-spacing:-12.087000px;}
.ws8f{word-spacing:-12.033000px;}
.ws8a{word-spacing:-11.808000px;}
.ws82{word-spacing:-11.776500px;}
.ws9d{word-spacing:-11.704500px;}
.ws94{word-spacing:-11.628000px;}
.ws80{word-spacing:-11.610000px;}
.ws81{word-spacing:-11.587500px;}
.ws8b{word-spacing:-11.529000px;}
.wsac{word-spacing:-11.502000px;}
.wsca{word-spacing:-11.475000px;}
.ws84{word-spacing:-11.394000px;}
.ws9b{word-spacing:-11.389500px;}
.wsa6{word-spacing:-11.362500px;}
.ws7d{word-spacing:-11.308500px;}
.wsaa{word-spacing:-11.272500px;}
.ws87{word-spacing:-11.263500px;}
.ws7b{word-spacing:-11.250000px;}
.wsa5{word-spacing:-11.241000px;}
.wsa9{word-spacing:-11.227500px;}
.ws9e{word-spacing:-11.209500px;}
.ws88{word-spacing:-11.133000px;}
.ws89{word-spacing:-11.110500px;}
.ws9c{word-spacing:-11.097000px;}
.wsa3{word-spacing:-11.056500px;}
.ws86{word-spacing:-10.980000px;}
.wsa8{word-spacing:-10.926000px;}
.wsa1{word-spacing:-10.881000px;}
.ws9a{word-spacing:-10.827000px;}
.ws7f{word-spacing:-10.714500px;}
.wsa7{word-spacing:-10.485000px;}
.ws91{word-spacing:-10.404000px;}
.ws96{word-spacing:-10.350000px;}
.wsad{word-spacing:-10.336500px;}
.ws98{word-spacing:-10.215000px;}
.ws2{word-spacing:-10.125000px;}
.ws95{word-spacing:-9.864000px;}
.ws5c{word-spacing:-1.398000px;}
.wsb7{word-spacing:-1.182000px;}
.ws4a{word-spacing:-1.122000px;}
.ws48{word-spacing:-1.110000px;}
.ws43{word-spacing:-0.996000px;}
.wsbe{word-spacing:-0.972000px;}
.ws5d{word-spacing:-0.924000px;}
.ws79{word-spacing:-0.780000px;}
.ws39{word-spacing:-0.756000px;}
.ws78{word-spacing:-0.750000px;}
.ws1d{word-spacing:-0.744000px;}
.wsb4{word-spacing:-0.528000px;}
.ws1b{word-spacing:-0.468000px;}
.ws9f{word-spacing:-0.018000px;}
.ws3{word-spacing:0.000000px;}
.wsc8{word-spacing:0.486000px;}
.ws35{word-spacing:0.504000px;}
.ws90{word-spacing:0.522000px;}
.ws6{word-spacing:0.552000px;}
.wsb9{word-spacing:0.564000px;}
.ws64{word-spacing:0.606000px;}
.ws58{word-spacing:0.636000px;}
.ws42{word-spacing:0.642000px;}
.ws5{word-spacing:0.672000px;}
.ws73{word-spacing:0.684000px;}
.ws44{word-spacing:0.828000px;}
.wsbd{word-spacing:0.870000px;}
.ws55{word-spacing:0.990000px;}
.ws7c{word-spacing:1.056000px;}
.ws27{word-spacing:1.218000px;}
.wsc2{word-spacing:1.398000px;}
.ws0{word-spacing:2.326500px;}
.wscb{word-spacing:2.775000px;}
.wsc9{word-spacing:4.275000px;}
.wscc{word-spacing:6.006000px;}
.ws7{word-spacing:35.706000px;}
._15{margin-left:-12.696000px;}
._13{margin-left:-10.557000px;}
._10{margin-left:-8.889000px;}
._b{margin-left:-7.524000px;}
._f{margin-left:-6.315000px;}
._9{margin-left:-4.566000px;}
._3{margin-left:-3.021000px;}
._1{margin-left:-1.482000px;}
._0{width:1.482000px;}
._2{width:3.021000px;}
._c{width:4.245000px;}
._4{width:5.763000px;}
._6{width:7.524000px;}
._5{width:9.006000px;}
._18{width:11.658000px;}
._16{width:13.533000px;}
._17{width:15.036000px;}
._e{width:16.140000px;}
._19{width:17.202000px;}
._14{width:18.207000px;}
._d{width:21.411000px;}
._2e{width:25.500000px;}
._1b{width:27.000000px;}
._31{width:28.500000px;}
._1d{width:30.000000px;}
._3e{width:39.000000px;}
._12{width:46.380000px;}
._8{width:47.880000px;}
._43{width:58.494000px;}
._25{width:62.643000px;}
._34{width:64.500000px;}
._7{width:67.500000px;}
._4e{width:78.000000px;}
._49{width:109.494000px;}
._22{width:111.000000px;}
._32{width:114.000000px;}
._3f{width:115.500000px;}
._52{width:201.000000px;}
._2f{width:207.000000px;}
._24{width:225.000000px;}
._38{width:226.494000px;}
._28{width:228.000000px;}
._37{width:235.494000px;}
._1e{width:237.000000px;}
._29{width:238.500000px;}
._2c{width:246.000000px;}
._44{width:247.494000px;}
._27{width:299.994000px;}
._23{width:320.922000px;}
._3c{width:322.458000px;}
._45{width:346.476000px;}
._4d{width:358.440000px;}
._3a{width:359.952000px;}
._35{width:362.922000px;}
._42{width:373.464000px;}
._50{width:377.910000px;}
._47{width:395.976000px;}
._1f{width:400.446000px;}
._4c{width:404.982000px;}
._30{width:413.958000px;}
._40{width:443.946000px;}
._3b{width:458.922000px;}
._2a{width:464.988000px;}
._33{width:467.958000px;}
._39{width:487.458000px;}
._26{width:494.964000px;}
._41{width:529.392000px;}
._48{width:530.976000px;}
._4a{width:550.470000px;}
._2b{width:565.434000px;}
._1c{width:571.446000px;}
._51{width:574.512000px;}
._20{width:587.958000px;}
._4b{width:626.982000px;}
._1a{width:629.982000px;}
._46{width:634.464000px;}
._4f{width:641.970000px;}
._a{width:664.380000px;}
._11{width:668.574000px;}
._3d{width:671.970000px;}
._21{width:683.964000px;}
._2d{width:691.488000px;}
._36{width:778.494000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:40.500000px;}
.fs9{font-size:45.000000px;}
.fs7{font-size:46.170000px;}
.fs3{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:47.911425px;}
.y14c{bottom:48.286425px;}
.y1b9{bottom:49.036425px;}
.yf0{bottom:49.411425px;}
.y74{bottom:50.536425px;}
.ya2{bottom:50.911425px;}
.y1ce{bottom:51.661425px;}
.ycf{bottom:53.536425px;}
.y12f{bottom:58.036425px;}
.y183{bottom:59.161425px;}
.y213{bottom:59.911425px;}
.y4b{bottom:61.036425px;}
.y14b{bottom:65.536425px;}
.y1fc{bottom:65.911425px;}
.ya1{bottom:66.661425px;}
.y73{bottom:67.786425px;}
.y1b8{bottom:68.911425px;}
.yce{bottom:69.286425px;}
.y166{bottom:70.786425px;}
.y1cd{bottom:71.911425px;}
.y19f{bottom:72.661425px;}
.y12e{bottom:73.786425px;}
.y4a{bottom:78.286425px;}
.y182{bottom:79.411425px;}
.y212{bottom:80.161425px;}
.ya0{bottom:82.411425px;}
.y10f{bottom:82.786425px;}
.yef{bottom:83.911425px;}
.y72{bottom:85.036425px;}
.y1fb{bottom:86.161425px;}
.y1b7{bottom:88.786425px;}
.y165{bottom:91.036425px;}
.y1cc{bottom:92.161425px;}
.y1ea{bottom:92.536425px;}
.y12d{bottom:92.911425px;}
.y49{bottom:95.536425px;}
.y9f{bottom:98.161425px;}
.y10e{bottom:98.536425px;}
.y181{bottom:99.661425px;}
.y14a{bottom:100.036425px;}
.y211{bottom:100.411425px;}
.ycd{bottom:100.786425px;}
.yee{bottom:101.161425px;}
.y71{bottom:102.286425px;}
.y1a{bottom:102.661425px;}
.y1fa{bottom:106.411425px;}
.y1b6{bottom:109.036425px;}
.y164{bottom:111.286425px;}
.y12c{bottom:112.411425px;}
.y48{bottom:112.786425px;}
.y19e{bottom:113.161425px;}
.y9e{bottom:113.911425px;}
.ycc{bottom:116.536425px;}
.y19{bottom:117.661425px;}
.yed{bottom:118.411425px;}
.y10d{bottom:118.786425px;}
.y70{bottom:119.536425px;}
.y180{bottom:119.911425px;}
.y210{bottom:120.661425px;}
.y1f9{bottom:126.661425px;}
.y1b5{bottom:128.911425px;}
.y9d{bottom:129.661425px;}
.y47{bottom:130.036425px;}
.y163{bottom:131.536425px;}
.ycb{bottom:132.286425px;}
.y1cb{bottom:132.661425px;}
.y1e9{bottom:133.036425px;}
.y19d{bottom:133.411425px;}
.y149{bottom:134.536425px;}
.yec{bottom:135.661425px;}
.y6f{bottom:136.786425px;}
.y18{bottom:138.661425px;}
.y10c{bottom:139.036425px;}
.y17f{bottom:140.161425px;}
.y9c{bottom:145.411425px;}
.y46{bottom:147.286425px;}
.yca{bottom:148.036425px;}
.y1f8{bottom:149.911425px;}
.y20f{bottom:151.411425px;}
.y148{bottom:151.786425px;}
.yeb{bottom:152.911425px;}
.y1e8{bottom:153.286425px;}
.y17{bottom:153.661425px;}
.y6e{bottom:154.036425px;}
.y10b{bottom:154.786425px;}
.y1ca{bottom:155.911425px;}
.y17e{bottom:160.411425px;}
.y9b{bottom:161.161425px;}
.y12b{bottom:163.036425px;}
.yc9{bottom:163.786425px;}
.y45{bottom:164.536425px;}
.y16{bottom:168.661425px;}
.y147{bottom:169.036425px;}
.y6d{bottom:171.286425px;}
.y19c{bottom:173.911425px;}
.y9a{bottom:176.911425px;}
.y10a{bottom:178.036425px;}
.yc8{bottom:179.536425px;}
.y162{bottom:180.286425px;}
.y1c9{bottom:181.411425px;}
.y44{bottom:181.786425px;}
.y12a{bottom:182.161425px;}
.y15{bottom:183.661425px;}
.y1e7{bottom:184.036425px;}
.y146{bottom:186.286425px;}
.yea{bottom:187.411425px;}
.y6c{bottom:188.536425px;}
.y225{bottom:188.911425px;}
.y99{bottom:192.661425px;}
.y19b{bottom:194.161425px;}
.y20e{bottom:194.911425px;}
.yc7{bottom:195.286425px;}
.y14{bottom:198.661425px;}
.y43{bottom:199.036425px;}
.y129{bottom:201.286425px;}
.y1c8{bottom:201.661425px;}
.y145{bottom:203.536425px;}
.ye9{bottom:204.661425px;}
.y6b{bottom:205.786425px;}
.y109{bottom:207.661425px;}
.y98{bottom:208.411425px;}
.y224{bottom:209.161425px;}
.yc6{bottom:211.036425px;}
.y161{bottom:212.911425px;}
.y17d{bottom:213.286425px;}
.y13{bottom:213.661425px;}
.y19a{bottom:214.411425px;}
.y20d{bottom:215.161425px;}
.y42{bottom:216.286425px;}
.y128{bottom:220.411425px;}
.y144{bottom:220.786425px;}
.ye8{bottom:221.911425px;}
.y6a{bottom:223.036425px;}
.y97{bottom:224.161425px;}
.yc5{bottom:226.786425px;}
.y12{bottom:228.661425px;}
.y17c{bottom:229.036425px;}
.y223{bottom:229.411425px;}
.y1e6{bottom:231.286425px;}
.y7a{bottom:231.661425px;}
.y160{bottom:233.161425px;}
.y41{bottom:233.536425px;}
.y20c{bottom:235.411425px;}
.y199{bottom:237.286425px;}
.ye7{bottom:239.161425px;}
.y127{bottom:239.536425px;}
.y96{bottom:239.911425px;}
.y69{bottom:240.286425px;}
.y1c7{bottom:242.161425px;}
.yc4{bottom:242.536425px;}
.y11{bottom:243.661425px;}
.y1f7{bottom:247.036425px;}
.y1e5{bottom:248.536425px;}
.y40{bottom:250.786425px;}
.y222{bottom:252.661425px;}
.y108{bottom:253.036425px;}
.y15f{bottom:253.411425px;}
.y1b4{bottom:253.786425px;}
.y126{bottom:255.286425px;}
.y95{bottom:255.661425px;}
.ye6{bottom:256.411425px;}
.y68{bottom:257.536425px;}
.yc3{bottom:258.286425px;}
.y10{bottom:258.661425px;}
.y143{bottom:262.036425px;}
.y1c6{bottom:265.411425px;}
.y1e4{bottom:265.786425px;}
.y198{bottom:267.286425px;}
.y3f{bottom:268.036425px;}
.y221{bottom:268.411425px;}
.y107{bottom:268.786425px;}
.y94{bottom:271.411425px;}
.yf{bottom:273.661425px;}
.yc2{bottom:274.036425px;}
.y125{bottom:274.411425px;}
.y67{bottom:274.786425px;}
.y142{bottom:279.286425px;}
.y17b{bottom:282.286425px;}
.y197{bottom:283.036425px;}
.y3e{bottom:285.286425px;}
.y93{bottom:287.161425px;}
.y1f6{bottom:287.536425px;}
.y106{bottom:289.036425px;}
.y20b{bottom:289.411425px;}
.yc1{bottom:289.786425px;}
.y124{bottom:290.161425px;}
.ye5{bottom:290.911425px;}
.y66{bottom:292.036425px;}
.y1b3{bottom:293.536425px;}
.y15e{bottom:293.911425px;}
.y1c5{bottom:295.411425px;}
.y141{bottom:296.536425px;}
.y220{bottom:298.036425px;}
.y1e3{bottom:300.286425px;}
.y3d{bottom:302.536425px;}
.y92{bottom:302.911425px;}
.ye{bottom:303.661425px;}
.y105{bottom:304.786425px;}
.yc0{bottom:305.536425px;}
.ye4{bottom:308.161425px;}
.y65{bottom:309.286425px;}
.y20a{bottom:309.661425px;}
.y1f5{bottom:310.786425px;}
.y140{bottom:313.786425px;}
.y15d{bottom:314.161425px;}
.y1b2{bottom:316.786425px;}
.y1e2{bottom:317.536425px;}
.yd{bottom:318.661425px;}
.y3c{bottom:319.786425px;}
.ybf{bottom:321.286425px;}
.y17a{bottom:322.786425px;}
.y196{bottom:324.286425px;}
.y104{bottom:325.036425px;}
.ye3{bottom:325.411425px;}
.y64{bottom:326.536425px;}
.y123{bottom:328.411425px;}
.y209{bottom:329.911425px;}
.y1c4{bottom:330.286425px;}
.y13f{bottom:331.036425px;}
.y91{bottom:334.411425px;}
.y1e1{bottom:334.786425px;}
.y1f4{bottom:336.286425px;}
.y3b{bottom:337.036425px;}
.y103{bottom:340.786425px;}
.y1b1{bottom:342.286425px;}
.ye2{bottom:342.661425px;}
.y179{bottom:343.036425px;}
.y63{bottom:343.786425px;}
.y122{bottom:344.161425px;}
.y195{bottom:344.536425px;}
.y21f{bottom:345.286425px;}
.y13e{bottom:348.286425px;}
.y90{bottom:350.161425px;}
.y1c3{bottom:350.536425px;}
.ybe{bottom:352.786425px;}
.y3a{bottom:354.286425px;}
.yc{bottom:354.661425px;}
.y102{bottom:356.536425px;}
.ye1{bottom:359.911425px;}
.y62{bottom:361.036425px;}
.y1b0{bottom:362.161425px;}
.y121{bottom:363.286425px;}
.y194{bottom:364.786425px;}
.y13d{bottom:365.536425px;}
.y8f{bottom:365.911425px;}
.ybd{bottom:368.536425px;}
.yb{bottom:369.661425px;}
.y1c2{bottom:370.786425px;}
.y39{bottom:371.536425px;}
.y1e0{bottom:373.411425px;}
.y15c{bottom:374.911425px;}
.y101{bottom:376.786425px;}
.ye0{bottom:377.161425px;}
.y61{bottom:378.286425px;}
.y120{bottom:379.036425px;}
.y8e{bottom:381.661425px;}
.y1af{bottom:382.036425px;}
.y13c{bottom:382.786425px;}
.y178{bottom:383.536425px;}
.ybc{bottom:384.286425px;}
.y193{bottom:385.036425px;}
.y21e{bottom:385.786425px;}
.y38{bottom:388.786425px;}
.ya{bottom:390.661425px;}
.y1c1{bottom:391.036425px;}
.ydf{bottom:394.411425px;}
.y15b{bottom:395.161425px;}
.y60{bottom:395.536425px;}
.y100{bottom:397.036425px;}
.y8d{bottom:397.411425px;}
.y11f{bottom:398.161425px;}
.ybb{bottom:400.036425px;}
.y208{bottom:401.911425px;}
.y1ae{bottom:402.286425px;}
.y177{bottom:403.786425px;}
.y192{bottom:405.286425px;}
.y9{bottom:405.661425px;}
.y37{bottom:406.036425px;}
.y1df{bottom:407.911425px;}
.y1c0{bottom:411.286425px;}
.yde{bottom:411.661425px;}
.y77{bottom:412.786425px;}
.y8c{bottom:413.161425px;}
.y11e{bottom:413.911425px;}
.yba{bottom:415.786425px;}
.y13b{bottom:417.286425px;}
.y15a{bottom:418.411425px;}
.y1f3{bottom:420.286425px;}
.y8{bottom:420.661425px;}
.y5f{bottom:421.411425px;}
.y1ad{bottom:422.161425px;}
.y36{bottom:423.286425px;}
.y176{bottom:424.036425px;}
.y1de{bottom:425.161425px;}
.y191{bottom:425.536425px;}
.y21d{bottom:426.286425px;}
.y8b{bottom:428.911425px;}
.y76{bottom:430.036425px;}
.yb9{bottom:431.536425px;}
.y207{bottom:432.661425px;}
.yff{bottom:433.036425px;}
.y7{bottom:435.661425px;}
.y35{bottom:440.536425px;}
.y1dd{bottom:442.411425px;}
.y175{bottom:444.286425px;}
.y8a{bottom:444.661425px;}
.y1ac{bottom:445.036425px;}
.y1f2{bottom:445.786425px;}
.ydd{bottom:446.161425px;}
.y75{bottom:447.286425px;}
.y159{bottom:448.411425px;}
.yfe{bottom:448.786425px;}
.y6{bottom:450.661425px;}
.y1bf{bottom:451.786425px;}
.y21c{bottom:457.036425px;}
.y34{bottom:457.786425px;}
.y1dc{bottom:459.661425px;}
.y89{bottom:460.411425px;}
.yb8{bottom:463.036425px;}
.ydc{bottom:463.411425px;}
.y5e{bottom:464.536425px;}
.y5{bottom:465.661425px;}
.y1f1{bottom:466.036425px;}
.y11d{bottom:467.911425px;}
.yfd{bottom:472.036425px;}
.y158{bottom:472.411425px;}
.y174{bottom:472.786425px;}
.y206{bottom:473.161425px;}
.y33{bottom:475.036425px;}
.y88{bottom:476.161425px;}
.y1db{bottom:476.911425px;}
.yb7{bottom:478.786425px;}
.y13a{bottom:479.911425px;}
.y4{bottom:480.661425px;}
.y5d{bottom:481.786425px;}
.y11c{bottom:483.661425px;}
.y1f0{bottom:486.286425px;}
.y190{bottom:487.036425px;}
.y1ab{bottom:490.036425px;}
.y79{bottom:490.411425px;}
.y87{bottom:491.911425px;}
.y32{bottom:492.286425px;}
.y205{bottom:493.411425px;}
.y1da{bottom:494.161425px;}
.yb6{bottom:494.536425px;}
.y3{bottom:495.661425px;}
.ydb{bottom:497.911425px;}
.y5c{bottom:499.036425px;}
.y1be{bottom:501.286425px;}
.yfc{bottom:502.036425px;}
.y11b{bottom:502.786425px;}
.y21b{bottom:504.286425px;}
.y173{bottom:505.411425px;}
.y1ef{bottom:506.536425px;}
.y18f{bottom:507.286425px;}
.y78{bottom:507.661425px;}
.y31{bottom:509.536425px;}
.yb5{bottom:510.286425px;}
.y2{bottom:510.661425px;}
.y204{bottom:513.661425px;}
.y139{bottom:515.911425px;}
.y5b{bottom:516.286425px;}
.y157{bottom:518.161425px;}
.y11a{bottom:518.536425px;}
.y1bd{bottom:521.536425px;}
.y1aa{bottom:521.911425px;}
.y86{bottom:523.411425px;}
.yda{bottom:523.786425px;}
.y21a{bottom:524.536425px;}
.y172{bottom:525.661425px;}
.yb4{bottom:526.036425px;}
.y30{bottom:526.786425px;}
.y18e{bottom:527.536425px;}
.y1ee{bottom:529.786425px;}
.y5a{bottom:533.536425px;}
.y203{bottom:533.911425px;}
.y156{bottom:535.411425px;}
.y138{bottom:536.161425px;}
.y1d9{bottom:536.911425px;}
.y119{bottom:538.036425px;}
.y85{bottom:539.161425px;}
.y1{bottom:540.661425px;}
.yd9{bottom:541.036425px;}
.yb3{bottom:541.786425px;}
.y2f{bottom:544.036425px;}
.y171{bottom:545.911425px;}
.yfb{bottom:547.411425px;}
.y18d{bottom:547.786425px;}
.y59{bottom:550.786425px;}
.y137{bottom:551.911425px;}
.y155{bottom:552.661425px;}
.y1d8{bottom:554.161425px;}
.y84{bottom:554.911425px;}
.y118{bottom:557.161425px;}
.yb2{bottom:557.536425px;}
.y1ed{bottom:559.411425px;}
.y2e{bottom:561.286425px;}
.y1a9{bottom:562.036425px;}
.yfa{bottom:563.161425px;}
.y170{bottom:566.161425px;}
.y58{bottom:568.036425px;}
.y154{bottom:569.911425px;}
.y83{bottom:570.661425px;}
.y1d7{bottom:571.411425px;}
.y136{bottom:572.161425px;}
.yb1{bottom:573.286425px;}
.y117{bottom:576.286425px;}
.y202{bottom:577.036425px;}
.y1a8{bottom:581.911425px;}
.yf9{bottom:583.411425px;}
.yd8{bottom:584.161425px;}
.y57{bottom:585.286425px;}
.y82{bottom:586.411425px;}
.y2d{bottom:587.161425px;}
.y135{bottom:587.911425px;}
.y18c{bottom:588.286425px;}
.y1d6{bottom:588.661425px;}
.yb0{bottom:589.036425px;}
.y116{bottom:595.411425px;}
.yd7{bottom:601.411425px;}
.y1a7{bottom:601.786425px;}
.y81{bottom:602.161425px;}
.y56{bottom:602.536425px;}
.yf8{bottom:603.661425px;}
.y153{bottom:604.411425px;}
.yaf{bottom:604.786425px;}
.y1d5{bottom:605.911425px;}
.y16f{bottom:606.661425px;}
.y134{bottom:608.161425px;}
.y18b{bottom:608.536425px;}
.y201{bottom:609.286425px;}
.y115{bottom:614.536425px;}
.y1bc{bottom:614.911425px;}
.y80{bottom:617.911425px;}
.yd6{bottom:618.661425px;}
.y55{bottom:619.786425px;}
.yae{bottom:620.536425px;}
.y152{bottom:621.661425px;}
.y1a6{bottom:622.036425px;}
.y219{bottom:622.411425px;}
.y1d4{bottom:623.161425px;}
.yf7{bottom:623.911425px;}
.y16e{bottom:626.911425px;}
.y200{bottom:629.536425px;}
.y1bb{bottom:631.411425px;}
.y18a{bottom:631.786425px;}
.y7f{bottom:633.661425px;}
.yd5{bottom:635.911425px;}
.yad{bottom:636.286425px;}
.y54{bottom:637.036425px;}
.y114{bottom:637.786425px;}
.y2c{bottom:638.536425px;}
.yf6{bottom:639.661425px;}
.y1d3{bottom:640.411425px;}
.y1a5{bottom:641.911425px;}
.y218{bottom:642.661425px;}
.y133{bottom:644.161425px;}
.y16d{bottom:647.161425px;}
.y7e{bottom:649.411425px;}
.y1ff{bottom:649.786425px;}
.yac{bottom:652.036425px;}
.yd4{bottom:653.161425px;}
.y53{bottom:654.286425px;}
.yf5{bottom:655.411425px;}
.y1d2{bottom:657.661425px;}
.y2b{bottom:659.536425px;}
.y132{bottom:659.911425px;}
.y189{bottom:661.411425px;}
.y151{bottom:662.911425px;}
.y1a4{bottom:664.786425px;}
.y7d{bottom:665.161425px;}
.y217{bottom:665.911425px;}
.y16c{bottom:667.411425px;}
.yab{bottom:667.786425px;}
.y1fe{bottom:670.036425px;}
.yd3{bottom:670.411425px;}
.yf4{bottom:671.161425px;}
.y52{bottom:671.536425px;}
.y2a{bottom:674.536425px;}
.y1d1{bottom:674.911425px;}
.y131{bottom:680.161425px;}
.y7c{bottom:680.911425px;}
.yaa{bottom:683.536425px;}
.y1ba{bottom:685.036425px;}
.y16b{bottom:687.661425px;}
.y51{bottom:688.786425px;}
.y29{bottom:689.536425px;}
.yf3{bottom:691.411425px;}
.y1fd{bottom:693.286425px;}
.y1a3{bottom:694.786425px;}
.y1ec{bottom:695.911425px;}
.y150{bottom:697.411425px;}
.ya9{bottom:699.286425px;}
.y1d0{bottom:700.786425px;}
.y130{bottom:703.411425px;}
.y28{bottom:704.536425px;}
.yd2{bottom:704.911425px;}
.y188{bottom:705.286425px;}
.y21{bottom:706.036425px;}
.yf2{bottom:711.661425px;}
.y7b{bottom:714.661425px;}
.ya8{bottom:715.036425px;}
.y16a{bottom:716.161425px;}
.y1cf{bottom:718.036425px;}
.y27{bottom:719.536425px;}
.y20{bottom:720.286425px;}
.y113{bottom:720.661425px;}
.yd1{bottom:722.161425px;}
.y50{bottom:723.286425px;}
.y187{bottom:725.536425px;}
.y1a2{bottom:726.661425px;}
.ya7{bottom:730.786425px;}
.y14f{bottom:731.911425px;}
.y26{bottom:734.536425px;}
.yf1{bottom:734.911425px;}
.y1eb{bottom:736.411425px;}
.y1f{bottom:738.286425px;}
.y4f{bottom:740.536425px;}
.y112{bottom:740.911425px;}
.y216{bottom:743.161425px;}
.y186{bottom:745.786425px;}
.ya6{bottom:746.536425px;}
.yd0{bottom:748.036425px;}
.y169{bottom:748.786425px;}
.y14e{bottom:749.161425px;}
.y25{bottom:749.536425px;}
.y111{bottom:756.661425px;}
.y4e{bottom:757.786425px;}
.y215{bottom:758.911425px;}
.ya5{bottom:762.286425px;}
.y24{bottom:764.536425px;}
.y185{bottom:766.036425px;}
.y14d{bottom:766.411425px;}
.y1a1{bottom:766.786425px;}
.y168{bottom:769.036425px;}
.y4d{bottom:775.036425px;}
.ya4{bottom:778.036425px;}
.y214{bottom:779.161425px;}
.y23{bottom:779.536425px;}
.y110{bottom:779.911425px;}
.y1e{bottom:783.286425px;}
.y184{bottom:786.286425px;}
.y1a0{bottom:786.661425px;}
.y167{bottom:789.286425px;}
.y4c{bottom:792.286425px;}
.ya3{bottom:793.786425px;}
.y1d{bottom:807.286425px;}
.y22{bottom:809.536425px;}
.y1c{bottom:858.286425px;}
.h5{height:51.216000px;}
.h4{height:57.618000px;}
.h2{height:60.819000px;}
.h3{height:61.788000px;}
.hc{height:64.020000px;}
.hb{height:65.040000px;}
.h8{height:70.422000px;}
.ha{height:71.544000px;}
.h9{height:71.763390px;}
.h7{height:76.824000px;}
.h6{height:102.432000px;}
.h1{height:909.750000px;}
.h0{height:910.086615px;}
.w1{width:594.750000px;}
.w0{width:594.862200px;}
.x0{left:0.000000px;}
.x1{left:50.868600px;}
.x5{left:54.110100px;}
.xb{left:55.448100px;}
.x8{left:62.735100px;}
.x4{left:65.562600px;}
.x3{left:73.008600px;}
.xa{left:76.208100px;}
.xd{left:81.017100px;}
.xe{left:93.144600px;}
.xc{left:309.234600px;}
.x7{left:320.493600px;}
.x6{left:327.833100px;}
.x9{left:344.466600px;}
.x2{left:410.868600px;}
@media print{
.v2{vertical-align:-68.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.005333pt;}
.ls4{letter-spacing:0.010667pt;}
.ls2{letter-spacing:0.829333pt;}
.ls0{letter-spacing:1.317333pt;}
.ls6{letter-spacing:1.322667pt;}
.ls9{letter-spacing:1.328000pt;}
.ls8{letter-spacing:1.333333pt;}
.lsa{letter-spacing:1.338667pt;}
.ls5{letter-spacing:1.344000pt;}
.ls3{letter-spacing:1.349333pt;}
.lsb{letter-spacing:2.666667pt;}
.lsc{letter-spacing:2.672000pt;}
.lsd{letter-spacing:13.344000pt;}
.ws50{word-spacing:-16.101333pt;}
.ws57{word-spacing:-16.058667pt;}
.ws5a{word-spacing:-16.053333pt;}
.ws3c{word-spacing:-16.026667pt;}
.ws6f{word-spacing:-15.946667pt;}
.ws4f{word-spacing:-15.936000pt;}
.ws22{word-spacing:-15.920000pt;}
.ws74{word-spacing:-15.829333pt;}
.ws53{word-spacing:-15.786667pt;}
.ws75{word-spacing:-15.765333pt;}
.ws6c{word-spacing:-15.669333pt;}
.ws38{word-spacing:-15.664000pt;}
.ws30{word-spacing:-15.632000pt;}
.ws72{word-spacing:-15.610667pt;}
.ws47{word-spacing:-15.589333pt;}
.wsb1{word-spacing:-15.568000pt;}
.ws23{word-spacing:-15.530667pt;}
.wsb6{word-spacing:-15.493333pt;}
.wsb0{word-spacing:-15.402667pt;}
.ws28{word-spacing:-15.386667pt;}
.ws4b{word-spacing:-15.344000pt;}
.ws5b{word-spacing:-15.274667pt;}
.wsaf{word-spacing:-15.253333pt;}
.ws2f{word-spacing:-15.226667pt;}
.ws2c{word-spacing:-15.216000pt;}
.ws31{word-spacing:-15.205333pt;}
.ws76{word-spacing:-15.098667pt;}
.ws4e{word-spacing:-15.072000pt;}
.ws25{word-spacing:-15.061333pt;}
.ws1a{word-spacing:-15.056000pt;}
.ws63{word-spacing:-15.034667pt;}
.ws4c{word-spacing:-15.008000pt;}
.ws5e{word-spacing:-14.992000pt;}
.wsc6{word-spacing:-14.986667pt;}
.ws54{word-spacing:-14.976000pt;}
.ws6b{word-spacing:-14.960000pt;}
.ws45{word-spacing:-14.944000pt;}
.ws3d{word-spacing:-14.896000pt;}
.ws1f{word-spacing:-14.880000pt;}
.ws33{word-spacing:-14.874667pt;}
.wsbf{word-spacing:-14.869333pt;}
.ws3a{word-spacing:-14.864000pt;}
.ws2e{word-spacing:-14.842667pt;}
.ws32{word-spacing:-14.837333pt;}
.wsc1{word-spacing:-14.826667pt;}
.ws3e{word-spacing:-14.821333pt;}
.ws6e{word-spacing:-14.816000pt;}
.ws67{word-spacing:-14.805333pt;}
.ws65{word-spacing:-14.800000pt;}
.ws5f{word-spacing:-14.794667pt;}
.wsc0{word-spacing:-14.789333pt;}
.ws37{word-spacing:-14.784000pt;}
.ws71{word-spacing:-14.773333pt;}
.ws46{word-spacing:-14.768000pt;}
.ws1e{word-spacing:-14.752000pt;}
.ws16{word-spacing:-14.736000pt;}
.ws52{word-spacing:-14.714667pt;}
.ws29{word-spacing:-14.704000pt;}
.ws10{word-spacing:-14.693333pt;}
.ws2b{word-spacing:-14.677333pt;}
.ws24{word-spacing:-14.672000pt;}
.ws8{word-spacing:-14.666667pt;}
.ws49{word-spacing:-14.661333pt;}
.ws59{word-spacing:-14.650667pt;}
.ws4d{word-spacing:-14.645333pt;}
.ws26{word-spacing:-14.618667pt;}
.ws62{word-spacing:-14.608000pt;}
.ws61{word-spacing:-14.586667pt;}
.wsb3{word-spacing:-14.560000pt;}
.ws20{word-spacing:-14.554667pt;}
.ws68{word-spacing:-14.544000pt;}
.ws12{word-spacing:-14.517333pt;}
.wsc3{word-spacing:-14.485333pt;}
.wsb2{word-spacing:-14.480000pt;}
.ws60{word-spacing:-14.474667pt;}
.wsb{word-spacing:-14.469333pt;}
.ws2d{word-spacing:-14.464000pt;}
.wsd{word-spacing:-14.453333pt;}
.ws34{word-spacing:-14.448000pt;}
.ws1c{word-spacing:-14.437333pt;}
.ws51{word-spacing:-14.432000pt;}
.ws6d{word-spacing:-14.416000pt;}
.ws2a{word-spacing:-14.384000pt;}
.ws15{word-spacing:-14.373333pt;}
.ws70{word-spacing:-14.362667pt;}
.ws36{word-spacing:-14.336000pt;}
.wsba{word-spacing:-14.330667pt;}
.wsc7{word-spacing:-14.277333pt;}
.ws69{word-spacing:-14.272000pt;}
.wsa{word-spacing:-14.261333pt;}
.wsc{word-spacing:-14.234667pt;}
.ws17{word-spacing:-14.197333pt;}
.ws14{word-spacing:-14.186667pt;}
.ws19{word-spacing:-14.160000pt;}
.ws41{word-spacing:-14.106667pt;}
.ws6a{word-spacing:-14.085333pt;}
.wsbc{word-spacing:-14.080000pt;}
.ws40{word-spacing:-14.074667pt;}
.wsb5{word-spacing:-14.037333pt;}
.ws3f{word-spacing:-13.984000pt;}
.wsb8{word-spacing:-13.962667pt;}
.ws21{word-spacing:-13.920000pt;}
.ws18{word-spacing:-13.893333pt;}
.ws13{word-spacing:-13.808000pt;}
.wsbb{word-spacing:-13.786667pt;}
.wscd{word-spacing:-13.722667pt;}
.ws77{word-spacing:-13.696000pt;}
.ws56{word-spacing:-13.690667pt;}
.ws3b{word-spacing:-13.552000pt;}
.ws7e{word-spacing:-13.386667pt;}
.wsab{word-spacing:-13.354667pt;}
.ws7a{word-spacing:-13.333333pt;}
.ws11{word-spacing:-13.061333pt;}
.wse{word-spacing:-12.970667pt;}
.wsc4{word-spacing:-12.954667pt;}
.wsf{word-spacing:-12.933333pt;}
.ws66{word-spacing:-12.922667pt;}
.ws9{word-spacing:-12.917333pt;}
.wsc5{word-spacing:-12.789333pt;}
.wsa4{word-spacing:-12.645333pt;}
.wsae{word-spacing:-12.517333pt;}
.ws4{word-spacing:-12.416000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws92{word-spacing:-11.564000pt;}
.ws99{word-spacing:-11.316000pt;}
.ws93{word-spacing:-11.268000pt;}
.ws83{word-spacing:-11.260000pt;}
.ws8d{word-spacing:-11.236000pt;}
.ws8e{word-spacing:-11.176000pt;}
.wsa2{word-spacing:-11.088000pt;}
.ws85{word-spacing:-11.064000pt;}
.ws8c{word-spacing:-10.864000pt;}
.wsa0{word-spacing:-10.860000pt;}
.ws97{word-spacing:-10.744000pt;}
.ws8f{word-spacing:-10.696000pt;}
.ws8a{word-spacing:-10.496000pt;}
.ws82{word-spacing:-10.468000pt;}
.ws9d{word-spacing:-10.404000pt;}
.ws94{word-spacing:-10.336000pt;}
.ws80{word-spacing:-10.320000pt;}
.ws81{word-spacing:-10.300000pt;}
.ws8b{word-spacing:-10.248000pt;}
.wsac{word-spacing:-10.224000pt;}
.wsca{word-spacing:-10.200000pt;}
.ws84{word-spacing:-10.128000pt;}
.ws9b{word-spacing:-10.124000pt;}
.wsa6{word-spacing:-10.100000pt;}
.ws7d{word-spacing:-10.052000pt;}
.wsaa{word-spacing:-10.020000pt;}
.ws87{word-spacing:-10.012000pt;}
.ws7b{word-spacing:-10.000000pt;}
.wsa5{word-spacing:-9.992000pt;}
.wsa9{word-spacing:-9.980000pt;}
.ws9e{word-spacing:-9.964000pt;}
.ws88{word-spacing:-9.896000pt;}
.ws89{word-spacing:-9.876000pt;}
.ws9c{word-spacing:-9.864000pt;}
.wsa3{word-spacing:-9.828000pt;}
.ws86{word-spacing:-9.760000pt;}
.wsa8{word-spacing:-9.712000pt;}
.wsa1{word-spacing:-9.672000pt;}
.ws9a{word-spacing:-9.624000pt;}
.ws7f{word-spacing:-9.524000pt;}
.wsa7{word-spacing:-9.320000pt;}
.ws91{word-spacing:-9.248000pt;}
.ws96{word-spacing:-9.200000pt;}
.wsad{word-spacing:-9.188000pt;}
.ws98{word-spacing:-9.080000pt;}
.ws2{word-spacing:-9.000000pt;}
.ws95{word-spacing:-8.768000pt;}
.ws5c{word-spacing:-1.242667pt;}
.wsb7{word-spacing:-1.050667pt;}
.ws4a{word-spacing:-0.997333pt;}
.ws48{word-spacing:-0.986667pt;}
.ws43{word-spacing:-0.885333pt;}
.wsbe{word-spacing:-0.864000pt;}
.ws5d{word-spacing:-0.821333pt;}
.ws79{word-spacing:-0.693333pt;}
.ws39{word-spacing:-0.672000pt;}
.ws78{word-spacing:-0.666667pt;}
.ws1d{word-spacing:-0.661333pt;}
.wsb4{word-spacing:-0.469333pt;}
.ws1b{word-spacing:-0.416000pt;}
.ws9f{word-spacing:-0.016000pt;}
.ws3{word-spacing:0.000000pt;}
.wsc8{word-spacing:0.432000pt;}
.ws35{word-spacing:0.448000pt;}
.ws90{word-spacing:0.464000pt;}
.ws6{word-spacing:0.490667pt;}
.wsb9{word-spacing:0.501333pt;}
.ws64{word-spacing:0.538667pt;}
.ws58{word-spacing:0.565333pt;}
.ws42{word-spacing:0.570667pt;}
.ws5{word-spacing:0.597333pt;}
.ws73{word-spacing:0.608000pt;}
.ws44{word-spacing:0.736000pt;}
.wsbd{word-spacing:0.773333pt;}
.ws55{word-spacing:0.880000pt;}
.ws7c{word-spacing:0.938667pt;}
.ws27{word-spacing:1.082667pt;}
.wsc2{word-spacing:1.242667pt;}
.ws0{word-spacing:2.068000pt;}
.wscb{word-spacing:2.466667pt;}
.wsc9{word-spacing:3.800000pt;}
.wscc{word-spacing:5.338667pt;}
.ws7{word-spacing:31.738667pt;}
._15{margin-left:-11.285333pt;}
._13{margin-left:-9.384000pt;}
._10{margin-left:-7.901333pt;}
._b{margin-left:-6.688000pt;}
._f{margin-left:-5.613333pt;}
._9{margin-left:-4.058667pt;}
._3{margin-left:-2.685333pt;}
._1{margin-left:-1.317333pt;}
._0{width:1.317333pt;}
._2{width:2.685333pt;}
._c{width:3.773333pt;}
._4{width:5.122667pt;}
._6{width:6.688000pt;}
._5{width:8.005333pt;}
._18{width:10.362667pt;}
._16{width:12.029333pt;}
._17{width:13.365333pt;}
._e{width:14.346667pt;}
._19{width:15.290667pt;}
._14{width:16.184000pt;}
._d{width:19.032000pt;}
._2e{width:22.666667pt;}
._1b{width:24.000000pt;}
._31{width:25.333333pt;}
._1d{width:26.666667pt;}
._3e{width:34.666667pt;}
._12{width:41.226667pt;}
._8{width:42.560000pt;}
._43{width:51.994667pt;}
._25{width:55.682667pt;}
._34{width:57.333333pt;}
._7{width:60.000000pt;}
._4e{width:69.333333pt;}
._49{width:97.328000pt;}
._22{width:98.666667pt;}
._32{width:101.333333pt;}
._3f{width:102.666667pt;}
._52{width:178.666667pt;}
._2f{width:184.000000pt;}
._24{width:200.000000pt;}
._38{width:201.328000pt;}
._28{width:202.666667pt;}
._37{width:209.328000pt;}
._1e{width:210.666667pt;}
._29{width:212.000000pt;}
._2c{width:218.666667pt;}
._44{width:219.994667pt;}
._27{width:266.661333pt;}
._23{width:285.264000pt;}
._3c{width:286.629333pt;}
._45{width:307.978667pt;}
._4d{width:318.613333pt;}
._3a{width:319.957333pt;}
._35{width:322.597333pt;}
._42{width:331.968000pt;}
._50{width:335.920000pt;}
._47{width:351.978667pt;}
._1f{width:355.952000pt;}
._4c{width:359.984000pt;}
._30{width:367.962667pt;}
._40{width:394.618667pt;}
._3b{width:407.930667pt;}
._2a{width:413.322667pt;}
._33{width:415.962667pt;}
._39{width:433.296000pt;}
._26{width:439.968000pt;}
._41{width:470.570667pt;}
._48{width:471.978667pt;}
._4a{width:489.306667pt;}
._2b{width:502.608000pt;}
._1c{width:507.952000pt;}
._51{width:510.677333pt;}
._20{width:522.629333pt;}
._4b{width:557.317333pt;}
._1a{width:559.984000pt;}
._46{width:563.968000pt;}
._4f{width:570.640000pt;}
._a{width:590.560000pt;}
._11{width:594.288000pt;}
._3d{width:597.306667pt;}
._21{width:607.968000pt;}
._2d{width:614.656000pt;}
._36{width:691.994667pt;}
.fs2{font-size:36.000000pt;}
.fs9{font-size:40.000000pt;}
.fs7{font-size:41.040000pt;}
.fs3{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:42.587933pt;}
.y14c{bottom:42.921267pt;}
.y1b9{bottom:43.587933pt;}
.yf0{bottom:43.921267pt;}
.y74{bottom:44.921267pt;}
.ya2{bottom:45.254600pt;}
.y1ce{bottom:45.921267pt;}
.ycf{bottom:47.587933pt;}
.y12f{bottom:51.587933pt;}
.y183{bottom:52.587933pt;}
.y213{bottom:53.254600pt;}
.y4b{bottom:54.254600pt;}
.y14b{bottom:58.254600pt;}
.y1fc{bottom:58.587933pt;}
.ya1{bottom:59.254600pt;}
.y73{bottom:60.254600pt;}
.y1b8{bottom:61.254600pt;}
.yce{bottom:61.587933pt;}
.y166{bottom:62.921267pt;}
.y1cd{bottom:63.921267pt;}
.y19f{bottom:64.587933pt;}
.y12e{bottom:65.587933pt;}
.y4a{bottom:69.587933pt;}
.y182{bottom:70.587933pt;}
.y212{bottom:71.254600pt;}
.ya0{bottom:73.254600pt;}
.y10f{bottom:73.587933pt;}
.yef{bottom:74.587933pt;}
.y72{bottom:75.587933pt;}
.y1fb{bottom:76.587933pt;}
.y1b7{bottom:78.921267pt;}
.y165{bottom:80.921267pt;}
.y1cc{bottom:81.921267pt;}
.y1ea{bottom:82.254600pt;}
.y12d{bottom:82.587933pt;}
.y49{bottom:84.921267pt;}
.y9f{bottom:87.254600pt;}
.y10e{bottom:87.587933pt;}
.y181{bottom:88.587933pt;}
.y14a{bottom:88.921267pt;}
.y211{bottom:89.254600pt;}
.ycd{bottom:89.587933pt;}
.yee{bottom:89.921267pt;}
.y71{bottom:90.921267pt;}
.y1a{bottom:91.254600pt;}
.y1fa{bottom:94.587933pt;}
.y1b6{bottom:96.921267pt;}
.y164{bottom:98.921267pt;}
.y12c{bottom:99.921267pt;}
.y48{bottom:100.254600pt;}
.y19e{bottom:100.587933pt;}
.y9e{bottom:101.254600pt;}
.ycc{bottom:103.587933pt;}
.y19{bottom:104.587933pt;}
.yed{bottom:105.254600pt;}
.y10d{bottom:105.587933pt;}
.y70{bottom:106.254600pt;}
.y180{bottom:106.587933pt;}
.y210{bottom:107.254600pt;}
.y1f9{bottom:112.587933pt;}
.y1b5{bottom:114.587933pt;}
.y9d{bottom:115.254600pt;}
.y47{bottom:115.587933pt;}
.y163{bottom:116.921267pt;}
.ycb{bottom:117.587933pt;}
.y1cb{bottom:117.921267pt;}
.y1e9{bottom:118.254600pt;}
.y19d{bottom:118.587933pt;}
.y149{bottom:119.587933pt;}
.yec{bottom:120.587933pt;}
.y6f{bottom:121.587933pt;}
.y18{bottom:123.254600pt;}
.y10c{bottom:123.587933pt;}
.y17f{bottom:124.587933pt;}
.y9c{bottom:129.254600pt;}
.y46{bottom:130.921267pt;}
.yca{bottom:131.587933pt;}
.y1f8{bottom:133.254600pt;}
.y20f{bottom:134.587933pt;}
.y148{bottom:134.921267pt;}
.yeb{bottom:135.921267pt;}
.y1e8{bottom:136.254600pt;}
.y17{bottom:136.587933pt;}
.y6e{bottom:136.921267pt;}
.y10b{bottom:137.587933pt;}
.y1ca{bottom:138.587933pt;}
.y17e{bottom:142.587933pt;}
.y9b{bottom:143.254600pt;}
.y12b{bottom:144.921267pt;}
.yc9{bottom:145.587933pt;}
.y45{bottom:146.254600pt;}
.y16{bottom:149.921267pt;}
.y147{bottom:150.254600pt;}
.y6d{bottom:152.254600pt;}
.y19c{bottom:154.587933pt;}
.y9a{bottom:157.254600pt;}
.y10a{bottom:158.254600pt;}
.yc8{bottom:159.587933pt;}
.y162{bottom:160.254600pt;}
.y1c9{bottom:161.254600pt;}
.y44{bottom:161.587933pt;}
.y12a{bottom:161.921267pt;}
.y15{bottom:163.254600pt;}
.y1e7{bottom:163.587933pt;}
.y146{bottom:165.587933pt;}
.yea{bottom:166.587933pt;}
.y6c{bottom:167.587933pt;}
.y225{bottom:167.921267pt;}
.y99{bottom:171.254600pt;}
.y19b{bottom:172.587933pt;}
.y20e{bottom:173.254600pt;}
.yc7{bottom:173.587933pt;}
.y14{bottom:176.587933pt;}
.y43{bottom:176.921267pt;}
.y129{bottom:178.921267pt;}
.y1c8{bottom:179.254600pt;}
.y145{bottom:180.921267pt;}
.ye9{bottom:181.921267pt;}
.y6b{bottom:182.921267pt;}
.y109{bottom:184.587933pt;}
.y98{bottom:185.254600pt;}
.y224{bottom:185.921267pt;}
.yc6{bottom:187.587933pt;}
.y161{bottom:189.254600pt;}
.y17d{bottom:189.587933pt;}
.y13{bottom:189.921267pt;}
.y19a{bottom:190.587933pt;}
.y20d{bottom:191.254600pt;}
.y42{bottom:192.254600pt;}
.y128{bottom:195.921267pt;}
.y144{bottom:196.254600pt;}
.ye8{bottom:197.254600pt;}
.y6a{bottom:198.254600pt;}
.y97{bottom:199.254600pt;}
.yc5{bottom:201.587933pt;}
.y12{bottom:203.254600pt;}
.y17c{bottom:203.587933pt;}
.y223{bottom:203.921267pt;}
.y1e6{bottom:205.587933pt;}
.y7a{bottom:205.921267pt;}
.y160{bottom:207.254600pt;}
.y41{bottom:207.587933pt;}
.y20c{bottom:209.254600pt;}
.y199{bottom:210.921267pt;}
.ye7{bottom:212.587933pt;}
.y127{bottom:212.921267pt;}
.y96{bottom:213.254600pt;}
.y69{bottom:213.587933pt;}
.y1c7{bottom:215.254600pt;}
.yc4{bottom:215.587933pt;}
.y11{bottom:216.587933pt;}
.y1f7{bottom:219.587933pt;}
.y1e5{bottom:220.921267pt;}
.y40{bottom:222.921267pt;}
.y222{bottom:224.587933pt;}
.y108{bottom:224.921267pt;}
.y15f{bottom:225.254600pt;}
.y1b4{bottom:225.587933pt;}
.y126{bottom:226.921267pt;}
.y95{bottom:227.254600pt;}
.ye6{bottom:227.921267pt;}
.y68{bottom:228.921267pt;}
.yc3{bottom:229.587933pt;}
.y10{bottom:229.921267pt;}
.y143{bottom:232.921267pt;}
.y1c6{bottom:235.921267pt;}
.y1e4{bottom:236.254600pt;}
.y198{bottom:237.587933pt;}
.y3f{bottom:238.254600pt;}
.y221{bottom:238.587933pt;}
.y107{bottom:238.921267pt;}
.y94{bottom:241.254600pt;}
.yf{bottom:243.254600pt;}
.yc2{bottom:243.587933pt;}
.y125{bottom:243.921267pt;}
.y67{bottom:244.254600pt;}
.y142{bottom:248.254600pt;}
.y17b{bottom:250.921267pt;}
.y197{bottom:251.587933pt;}
.y3e{bottom:253.587933pt;}
.y93{bottom:255.254600pt;}
.y1f6{bottom:255.587933pt;}
.y106{bottom:256.921267pt;}
.y20b{bottom:257.254600pt;}
.yc1{bottom:257.587933pt;}
.y124{bottom:257.921267pt;}
.ye5{bottom:258.587933pt;}
.y66{bottom:259.587933pt;}
.y1b3{bottom:260.921267pt;}
.y15e{bottom:261.254600pt;}
.y1c5{bottom:262.587933pt;}
.y141{bottom:263.587933pt;}
.y220{bottom:264.921267pt;}
.y1e3{bottom:266.921267pt;}
.y3d{bottom:268.921267pt;}
.y92{bottom:269.254600pt;}
.ye{bottom:269.921267pt;}
.y105{bottom:270.921267pt;}
.yc0{bottom:271.587933pt;}
.ye4{bottom:273.921267pt;}
.y65{bottom:274.921267pt;}
.y20a{bottom:275.254600pt;}
.y1f5{bottom:276.254600pt;}
.y140{bottom:278.921267pt;}
.y15d{bottom:279.254600pt;}
.y1b2{bottom:281.587933pt;}
.y1e2{bottom:282.254600pt;}
.yd{bottom:283.254600pt;}
.y3c{bottom:284.254600pt;}
.ybf{bottom:285.587933pt;}
.y17a{bottom:286.921267pt;}
.y196{bottom:288.254600pt;}
.y104{bottom:288.921267pt;}
.ye3{bottom:289.254600pt;}
.y64{bottom:290.254600pt;}
.y123{bottom:291.921267pt;}
.y209{bottom:293.254600pt;}
.y1c4{bottom:293.587933pt;}
.y13f{bottom:294.254600pt;}
.y91{bottom:297.254600pt;}
.y1e1{bottom:297.587933pt;}
.y1f4{bottom:298.921267pt;}
.y3b{bottom:299.587933pt;}
.y103{bottom:302.921267pt;}
.y1b1{bottom:304.254600pt;}
.ye2{bottom:304.587933pt;}
.y179{bottom:304.921267pt;}
.y63{bottom:305.587933pt;}
.y122{bottom:305.921267pt;}
.y195{bottom:306.254600pt;}
.y21f{bottom:306.921267pt;}
.y13e{bottom:309.587933pt;}
.y90{bottom:311.254600pt;}
.y1c3{bottom:311.587933pt;}
.ybe{bottom:313.587933pt;}
.y3a{bottom:314.921267pt;}
.yc{bottom:315.254600pt;}
.y102{bottom:316.921267pt;}
.ye1{bottom:319.921267pt;}
.y62{bottom:320.921267pt;}
.y1b0{bottom:321.921267pt;}
.y121{bottom:322.921267pt;}
.y194{bottom:324.254600pt;}
.y13d{bottom:324.921267pt;}
.y8f{bottom:325.254600pt;}
.ybd{bottom:327.587933pt;}
.yb{bottom:328.587933pt;}
.y1c2{bottom:329.587933pt;}
.y39{bottom:330.254600pt;}
.y1e0{bottom:331.921267pt;}
.y15c{bottom:333.254600pt;}
.y101{bottom:334.921267pt;}
.ye0{bottom:335.254600pt;}
.y61{bottom:336.254600pt;}
.y120{bottom:336.921267pt;}
.y8e{bottom:339.254600pt;}
.y1af{bottom:339.587933pt;}
.y13c{bottom:340.254600pt;}
.y178{bottom:340.921267pt;}
.ybc{bottom:341.587933pt;}
.y193{bottom:342.254600pt;}
.y21e{bottom:342.921267pt;}
.y38{bottom:345.587933pt;}
.ya{bottom:347.254600pt;}
.y1c1{bottom:347.587933pt;}
.ydf{bottom:350.587933pt;}
.y15b{bottom:351.254600pt;}
.y60{bottom:351.587933pt;}
.y100{bottom:352.921267pt;}
.y8d{bottom:353.254600pt;}
.y11f{bottom:353.921267pt;}
.ybb{bottom:355.587933pt;}
.y208{bottom:357.254600pt;}
.y1ae{bottom:357.587933pt;}
.y177{bottom:358.921267pt;}
.y192{bottom:360.254600pt;}
.y9{bottom:360.587933pt;}
.y37{bottom:360.921267pt;}
.y1df{bottom:362.587933pt;}
.y1c0{bottom:365.587933pt;}
.yde{bottom:365.921267pt;}
.y77{bottom:366.921267pt;}
.y8c{bottom:367.254600pt;}
.y11e{bottom:367.921267pt;}
.yba{bottom:369.587933pt;}
.y13b{bottom:370.921267pt;}
.y15a{bottom:371.921267pt;}
.y1f3{bottom:373.587933pt;}
.y8{bottom:373.921267pt;}
.y5f{bottom:374.587933pt;}
.y1ad{bottom:375.254600pt;}
.y36{bottom:376.254600pt;}
.y176{bottom:376.921267pt;}
.y1de{bottom:377.921267pt;}
.y191{bottom:378.254600pt;}
.y21d{bottom:378.921267pt;}
.y8b{bottom:381.254600pt;}
.y76{bottom:382.254600pt;}
.yb9{bottom:383.587933pt;}
.y207{bottom:384.587933pt;}
.yff{bottom:384.921267pt;}
.y7{bottom:387.254600pt;}
.y35{bottom:391.587933pt;}
.y1dd{bottom:393.254600pt;}
.y175{bottom:394.921267pt;}
.y8a{bottom:395.254600pt;}
.y1ac{bottom:395.587933pt;}
.y1f2{bottom:396.254600pt;}
.ydd{bottom:396.587933pt;}
.y75{bottom:397.587933pt;}
.y159{bottom:398.587933pt;}
.yfe{bottom:398.921267pt;}
.y6{bottom:400.587933pt;}
.y1bf{bottom:401.587933pt;}
.y21c{bottom:406.254600pt;}
.y34{bottom:406.921267pt;}
.y1dc{bottom:408.587933pt;}
.y89{bottom:409.254600pt;}
.yb8{bottom:411.587933pt;}
.ydc{bottom:411.921267pt;}
.y5e{bottom:412.921267pt;}
.y5{bottom:413.921267pt;}
.y1f1{bottom:414.254600pt;}
.y11d{bottom:415.921267pt;}
.yfd{bottom:419.587933pt;}
.y158{bottom:419.921267pt;}
.y174{bottom:420.254600pt;}
.y206{bottom:420.587933pt;}
.y33{bottom:422.254600pt;}
.y88{bottom:423.254600pt;}
.y1db{bottom:423.921267pt;}
.yb7{bottom:425.587933pt;}
.y13a{bottom:426.587933pt;}
.y4{bottom:427.254600pt;}
.y5d{bottom:428.254600pt;}
.y11c{bottom:429.921267pt;}
.y1f0{bottom:432.254600pt;}
.y190{bottom:432.921267pt;}
.y1ab{bottom:435.587933pt;}
.y79{bottom:435.921267pt;}
.y87{bottom:437.254600pt;}
.y32{bottom:437.587933pt;}
.y205{bottom:438.587933pt;}
.y1da{bottom:439.254600pt;}
.yb6{bottom:439.587933pt;}
.y3{bottom:440.587933pt;}
.ydb{bottom:442.587933pt;}
.y5c{bottom:443.587933pt;}
.y1be{bottom:445.587933pt;}
.yfc{bottom:446.254600pt;}
.y11b{bottom:446.921267pt;}
.y21b{bottom:448.254600pt;}
.y173{bottom:449.254600pt;}
.y1ef{bottom:450.254600pt;}
.y18f{bottom:450.921267pt;}
.y78{bottom:451.254600pt;}
.y31{bottom:452.921267pt;}
.yb5{bottom:453.587933pt;}
.y2{bottom:453.921267pt;}
.y204{bottom:456.587933pt;}
.y139{bottom:458.587933pt;}
.y5b{bottom:458.921267pt;}
.y157{bottom:460.587933pt;}
.y11a{bottom:460.921267pt;}
.y1bd{bottom:463.587933pt;}
.y1aa{bottom:463.921267pt;}
.y86{bottom:465.254600pt;}
.yda{bottom:465.587933pt;}
.y21a{bottom:466.254600pt;}
.y172{bottom:467.254600pt;}
.yb4{bottom:467.587933pt;}
.y30{bottom:468.254600pt;}
.y18e{bottom:468.921267pt;}
.y1ee{bottom:470.921267pt;}
.y5a{bottom:474.254600pt;}
.y203{bottom:474.587933pt;}
.y156{bottom:475.921267pt;}
.y138{bottom:476.587933pt;}
.y1d9{bottom:477.254600pt;}
.y119{bottom:478.254600pt;}
.y85{bottom:479.254600pt;}
.y1{bottom:480.587933pt;}
.yd9{bottom:480.921267pt;}
.yb3{bottom:481.587933pt;}
.y2f{bottom:483.587933pt;}
.y171{bottom:485.254600pt;}
.yfb{bottom:486.587933pt;}
.y18d{bottom:486.921267pt;}
.y59{bottom:489.587933pt;}
.y137{bottom:490.587933pt;}
.y155{bottom:491.254600pt;}
.y1d8{bottom:492.587933pt;}
.y84{bottom:493.254600pt;}
.y118{bottom:495.254600pt;}
.yb2{bottom:495.587933pt;}
.y1ed{bottom:497.254600pt;}
.y2e{bottom:498.921267pt;}
.y1a9{bottom:499.587933pt;}
.yfa{bottom:500.587933pt;}
.y170{bottom:503.254600pt;}
.y58{bottom:504.921267pt;}
.y154{bottom:506.587933pt;}
.y83{bottom:507.254600pt;}
.y1d7{bottom:507.921267pt;}
.y136{bottom:508.587933pt;}
.yb1{bottom:509.587933pt;}
.y117{bottom:512.254600pt;}
.y202{bottom:512.921267pt;}
.y1a8{bottom:517.254600pt;}
.yf9{bottom:518.587933pt;}
.yd8{bottom:519.254600pt;}
.y57{bottom:520.254600pt;}
.y82{bottom:521.254600pt;}
.y2d{bottom:521.921267pt;}
.y135{bottom:522.587933pt;}
.y18c{bottom:522.921267pt;}
.y1d6{bottom:523.254600pt;}
.yb0{bottom:523.587933pt;}
.y116{bottom:529.254600pt;}
.yd7{bottom:534.587933pt;}
.y1a7{bottom:534.921267pt;}
.y81{bottom:535.254600pt;}
.y56{bottom:535.587933pt;}
.yf8{bottom:536.587933pt;}
.y153{bottom:537.254600pt;}
.yaf{bottom:537.587933pt;}
.y1d5{bottom:538.587933pt;}
.y16f{bottom:539.254600pt;}
.y134{bottom:540.587933pt;}
.y18b{bottom:540.921267pt;}
.y201{bottom:541.587933pt;}
.y115{bottom:546.254600pt;}
.y1bc{bottom:546.587933pt;}
.y80{bottom:549.254600pt;}
.yd6{bottom:549.921267pt;}
.y55{bottom:550.921267pt;}
.yae{bottom:551.587933pt;}
.y152{bottom:552.587933pt;}
.y1a6{bottom:552.921267pt;}
.y219{bottom:553.254600pt;}
.y1d4{bottom:553.921267pt;}
.yf7{bottom:554.587933pt;}
.y16e{bottom:557.254600pt;}
.y200{bottom:559.587933pt;}
.y1bb{bottom:561.254600pt;}
.y18a{bottom:561.587933pt;}
.y7f{bottom:563.254600pt;}
.yd5{bottom:565.254600pt;}
.yad{bottom:565.587933pt;}
.y54{bottom:566.254600pt;}
.y114{bottom:566.921267pt;}
.y2c{bottom:567.587933pt;}
.yf6{bottom:568.587933pt;}
.y1d3{bottom:569.254600pt;}
.y1a5{bottom:570.587933pt;}
.y218{bottom:571.254600pt;}
.y133{bottom:572.587933pt;}
.y16d{bottom:575.254600pt;}
.y7e{bottom:577.254600pt;}
.y1ff{bottom:577.587933pt;}
.yac{bottom:579.587933pt;}
.yd4{bottom:580.587933pt;}
.y53{bottom:581.587933pt;}
.yf5{bottom:582.587933pt;}
.y1d2{bottom:584.587933pt;}
.y2b{bottom:586.254600pt;}
.y132{bottom:586.587933pt;}
.y189{bottom:587.921267pt;}
.y151{bottom:589.254600pt;}
.y1a4{bottom:590.921267pt;}
.y7d{bottom:591.254600pt;}
.y217{bottom:591.921267pt;}
.y16c{bottom:593.254600pt;}
.yab{bottom:593.587933pt;}
.y1fe{bottom:595.587933pt;}
.yd3{bottom:595.921267pt;}
.yf4{bottom:596.587933pt;}
.y52{bottom:596.921267pt;}
.y2a{bottom:599.587933pt;}
.y1d1{bottom:599.921267pt;}
.y131{bottom:604.587933pt;}
.y7c{bottom:605.254600pt;}
.yaa{bottom:607.587933pt;}
.y1ba{bottom:608.921267pt;}
.y16b{bottom:611.254600pt;}
.y51{bottom:612.254600pt;}
.y29{bottom:612.921267pt;}
.yf3{bottom:614.587933pt;}
.y1fd{bottom:616.254600pt;}
.y1a3{bottom:617.587933pt;}
.y1ec{bottom:618.587933pt;}
.y150{bottom:619.921267pt;}
.ya9{bottom:621.587933pt;}
.y1d0{bottom:622.921267pt;}
.y130{bottom:625.254600pt;}
.y28{bottom:626.254600pt;}
.yd2{bottom:626.587933pt;}
.y188{bottom:626.921267pt;}
.y21{bottom:627.587933pt;}
.yf2{bottom:632.587933pt;}
.y7b{bottom:635.254600pt;}
.ya8{bottom:635.587933pt;}
.y16a{bottom:636.587933pt;}
.y1cf{bottom:638.254600pt;}
.y27{bottom:639.587933pt;}
.y20{bottom:640.254600pt;}
.y113{bottom:640.587933pt;}
.yd1{bottom:641.921267pt;}
.y50{bottom:642.921267pt;}
.y187{bottom:644.921267pt;}
.y1a2{bottom:645.921267pt;}
.ya7{bottom:649.587933pt;}
.y14f{bottom:650.587933pt;}
.y26{bottom:652.921267pt;}
.yf1{bottom:653.254600pt;}
.y1eb{bottom:654.587933pt;}
.y1f{bottom:656.254600pt;}
.y4f{bottom:658.254600pt;}
.y112{bottom:658.587933pt;}
.y216{bottom:660.587933pt;}
.y186{bottom:662.921267pt;}
.ya6{bottom:663.587933pt;}
.yd0{bottom:664.921267pt;}
.y169{bottom:665.587933pt;}
.y14e{bottom:665.921267pt;}
.y25{bottom:666.254600pt;}
.y111{bottom:672.587933pt;}
.y4e{bottom:673.587933pt;}
.y215{bottom:674.587933pt;}
.ya5{bottom:677.587933pt;}
.y24{bottom:679.587933pt;}
.y185{bottom:680.921267pt;}
.y14d{bottom:681.254600pt;}
.y1a1{bottom:681.587933pt;}
.y168{bottom:683.587933pt;}
.y4d{bottom:688.921267pt;}
.ya4{bottom:691.587933pt;}
.y214{bottom:692.587933pt;}
.y23{bottom:692.921267pt;}
.y110{bottom:693.254600pt;}
.y1e{bottom:696.254600pt;}
.y184{bottom:698.921267pt;}
.y1a0{bottom:699.254600pt;}
.y167{bottom:701.587933pt;}
.y4c{bottom:704.254600pt;}
.ya3{bottom:705.587933pt;}
.y1d{bottom:717.587933pt;}
.y22{bottom:719.587933pt;}
.y1c{bottom:762.921267pt;}
.h5{height:45.525333pt;}
.h4{height:51.216000pt;}
.h2{height:54.061333pt;}
.h3{height:54.922667pt;}
.hc{height:56.906667pt;}
.hb{height:57.813333pt;}
.h8{height:62.597333pt;}
.ha{height:63.594667pt;}
.h9{height:63.789680pt;}
.h7{height:68.288000pt;}
.h6{height:91.050667pt;}
.h1{height:808.666667pt;}
.h0{height:808.965880pt;}
.w1{width:528.666667pt;}
.w0{width:528.766400pt;}
.x0{left:0.000000pt;}
.x1{left:45.216533pt;}
.x5{left:48.097867pt;}
.xb{left:49.287200pt;}
.x8{left:55.764533pt;}
.x4{left:58.277867pt;}
.x3{left:64.896533pt;}
.xa{left:67.740533pt;}
.xd{left:72.015200pt;}
.xe{left:82.795200pt;}
.xc{left:274.875200pt;}
.x7{left:284.883200pt;}
.x6{left:291.407200pt;}
.x9{left:306.192533pt;}
.x2{left:365.216533pt;}
}




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