
    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_673a8a499d508568f1db93f6.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_28ff661688d229b416511967.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_9853b247924e5cc889a6aeb4.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_697a012cc856199e84a9f92a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.899414;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_8400baab633bad721e8bc8ff.woff')format("woff");}.ff5{font-family:ff5;line-height:1.082031;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_8ffd59702448bc6a227d830b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.851000;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_5cdeb73467fce7d12b4d2e96.woff')format("woff");}.ff7{font-family:ff7;line-height:1.090332;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_46895cb6457dc20cafd725dc.woff')format("woff");}.ff8{font-family:ff8;line-height:0.822000;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_b8f6a46e4c3a6001f858bf8e.woff')format("woff");}.ff9{font-family:ff9;line-height:0.899414;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_8e8a8fbaca77fddcea890965.woff')format("woff");}.ffa{font-family:ffa;line-height:0.902344;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_fa2c911e31518f08709d34d5.woff')format("woff");}.ffb{font-family:ffb;line-height:0.682617;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);}
.v3{vertical-align:-23.760000px;}
.v2{vertical-align:-16.830000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.048000px;}
.ls2b{letter-spacing:-8.640000px;}
.ls54{letter-spacing:-4.800000px;}
.ls4c{letter-spacing:-4.680000px;}
.ls49{letter-spacing:-3.240000px;}
.ls41{letter-spacing:-3.168000px;}
.ls40{letter-spacing:-2.808000px;}
.ls33{letter-spacing:-2.736000px;}
.ls52{letter-spacing:-2.544000px;}
.ls43{letter-spacing:-2.232000px;}
.ls3f{letter-spacing:-2.160000px;}
.ls53{letter-spacing:-1.872000px;}
.ls4a{letter-spacing:-1.440000px;}
.ls2e{letter-spacing:-1.152000px;}
.ls4d{letter-spacing:-1.080000px;}
.ls1f{letter-spacing:-1.008000px;}
.ls34{letter-spacing:-0.936000px;}
.ls31{letter-spacing:-0.864000px;}
.ls21{letter-spacing:-0.792000px;}
.ls32{letter-spacing:-0.720000px;}
.ls38{letter-spacing:-0.648000px;}
.ls5{letter-spacing:-0.600000px;}
.ls12{letter-spacing:-0.576000px;}
.ls10{letter-spacing:-0.504000px;}
.ls20{letter-spacing:-0.432000px;}
.ls11{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.300000px;}
.ls1e{letter-spacing:-0.288000px;}
.ls55{letter-spacing:-0.240000px;}
.ls18{letter-spacing:-0.216000px;}
.ls1a{letter-spacing:-0.144000px;}
.ls19{letter-spacing:-0.072000px;}
.ls7{letter-spacing:-0.060000px;}
.ls4{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.000600px;}
.ls35{letter-spacing:0.028800px;}
.ls17{letter-spacing:0.072000px;}
.ls26{letter-spacing:0.127200px;}
.lsb{letter-spacing:0.144000px;}
.ls4b{letter-spacing:0.194400px;}
.lsa{letter-spacing:0.216000px;}
.ls4e{letter-spacing:0.223200px;}
.ls50{letter-spacing:0.240000px;}
.ls15{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.360000px;}
.ls30{letter-spacing:0.381600px;}
.ls13{letter-spacing:0.432000px;}
.ls22{letter-spacing:0.504000px;}
.lse{letter-spacing:0.576000px;}
.ls16{letter-spacing:0.648000px;}
.ls14{letter-spacing:0.720000px;}
.lsf{letter-spacing:0.792000px;}
.lsd{letter-spacing:0.864000px;}
.ls1b{letter-spacing:0.936000px;}
.ls2c{letter-spacing:0.943200px;}
.ls1c{letter-spacing:1.008000px;}
.ls2d{letter-spacing:1.080000px;}
.ls1d{letter-spacing:1.152000px;}
.ls2f{letter-spacing:1.159200px;}
.ls23{letter-spacing:1.656000px;}
.ls25{letter-spacing:2.304000px;}
.ls1{letter-spacing:2.850000px;}
.ls56{letter-spacing:3.350400px;}
.ls3b{letter-spacing:3.456000px;}
.ls3d{letter-spacing:3.564000px;}
.ls47{letter-spacing:3.780000px;}
.ls39{letter-spacing:3.909600px;}
.ls9{letter-spacing:4.416000px;}
.ls3{letter-spacing:4.560000px;}
.ls29{letter-spacing:4.680000px;}
.ls4f{letter-spacing:4.752000px;}
.ls2a{letter-spacing:5.256000px;}
.ls3e{letter-spacing:6.638400px;}
.ls51{letter-spacing:6.768000px;}
.ls28{letter-spacing:7.614000px;}
.ls57{letter-spacing:8.100000px;}
.ls42{letter-spacing:8.208000px;}
.ls3c{letter-spacing:8.352000px;}
.ls0{letter-spacing:8.436000px;}
.ls6{letter-spacing:8.460000px;}
.ls3a{letter-spacing:8.640000px;}
.ls24{letter-spacing:8.712000px;}
.ls48{letter-spacing:8.784000px;}
.ls37{letter-spacing:8.985600px;}
.ls36{letter-spacing:9.072000px;}
.ls45{letter-spacing:9.504000px;}
.ls44{letter-spacing:9.648000px;}
.ls46{letter-spacing:9.864000px;}
.ls2{letter-spacing:10.740000px;}
.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;}
}
.wsc{word-spacing:-25.320000px;}
.ws63{word-spacing:-23.274000px;}
.ws42{word-spacing:-20.448000px;}
.ws1c{word-spacing:-20.232000px;}
.ws55{word-spacing:-18.792000px;}
.ws56{word-spacing:-18.720000px;}
.ws34{word-spacing:-18.648000px;}
.ws46{word-spacing:-18.504000px;}
.ws33{word-spacing:-18.432000px;}
.ws50{word-spacing:-18.360000px;}
.ws41{word-spacing:-18.216000px;}
.ws57{word-spacing:-18.144000px;}
.ws19{word-spacing:-18.072000px;}
.ws17{word-spacing:-18.000000px;}
.ws35{word-spacing:-17.856000px;}
.ws1b{word-spacing:-17.784000px;}
.ws18{word-spacing:-17.712000px;}
.ws1a{word-spacing:-17.640000px;}
.ws4f{word-spacing:-17.568000px;}
.ws3c{word-spacing:-17.496000px;}
.ws39{word-spacing:-17.424000px;}
.ws44{word-spacing:-17.208000px;}
.ws40{word-spacing:-17.136000px;}
.ws58{word-spacing:-16.704000px;}
.ws48{word-spacing:-15.624000px;}
.ws4e{word-spacing:-14.162400px;}
.ws5b{word-spacing:-13.488000px;}
.ws5a{word-spacing:-12.336000px;}
.ws1e{word-spacing:-11.856000px;}
.ws52{word-spacing:-9.864000px;}
.ws4d{word-spacing:-9.648000px;}
.ws51{word-spacing:-9.504000px;}
.ws53{word-spacing:-8.784000px;}
.ws31{word-spacing:-8.712000px;}
.ws45{word-spacing:-8.640000px;}
.ws2{word-spacing:-8.520000px;}
.wsb{word-spacing:-8.496000px;}
.ws27{word-spacing:-8.460000px;}
.ws47{word-spacing:-8.352000px;}
.ws4b{word-spacing:-8.208000px;}
.ws37{word-spacing:-7.614000px;}
.ws5c{word-spacing:-6.768000px;}
.wsa{word-spacing:-4.416000px;}
.ws1{word-spacing:-2.907000px;}
.ws6{word-spacing:-2.850000px;}
.ws32{word-spacing:-2.304000px;}
.ws30{word-spacing:-1.656000px;}
.ws2a{word-spacing:-1.152000px;}
.ws3a{word-spacing:-1.080000px;}
.ws28{word-spacing:-1.008000px;}
.ws29{word-spacing:-0.936000px;}
.ws13{word-spacing:-0.864000px;}
.wsf{word-spacing:-0.792000px;}
.ws22{word-spacing:-0.720000px;}
.ws1f{word-spacing:-0.648000px;}
.ws16{word-spacing:-0.576000px;}
.ws2f{word-spacing:-0.504000px;}
.ws7{word-spacing:-0.480000px;}
.ws20{word-spacing:-0.432000px;}
.ws12{word-spacing:-0.360000px;}
.ws23{word-spacing:-0.288000px;}
.ws61{word-spacing:-0.240000px;}
.wse{word-spacing:-0.216000px;}
.ws11{word-spacing:-0.144000px;}
.ws21{word-spacing:-0.072000px;}
.ws1d{word-spacing:-0.050400px;}
.ws62{word-spacing:-0.048000px;}
.ws3{word-spacing:0.000000px;}
.ws8{word-spacing:0.060000px;}
.ws25{word-spacing:0.072000px;}
.ws26{word-spacing:0.144000px;}
.ws24{word-spacing:0.216000px;}
.ws60{word-spacing:0.240000px;}
.ws2b{word-spacing:0.288000px;}
.ws9{word-spacing:0.300000px;}
.ws14{word-spacing:0.360000px;}
.ws2d{word-spacing:0.432000px;}
.ws10{word-spacing:0.504000px;}
.ws15{word-spacing:0.576000px;}
.ws4{word-spacing:0.600000px;}
.ws43{word-spacing:0.648000px;}
.ws3e{word-spacing:0.720000px;}
.ws2e{word-spacing:0.792000px;}
.ws3d{word-spacing:0.864000px;}
.ws3f{word-spacing:0.936000px;}
.ws2c{word-spacing:1.008000px;}
.ws5{word-spacing:1.140000px;}
.ws3b{word-spacing:1.152000px;}
.ws64{word-spacing:1.440000px;}
.ws5e{word-spacing:1.872000px;}
.ws4c{word-spacing:2.232000px;}
.ws5d{word-spacing:2.544000px;}
.ws49{word-spacing:2.808000px;}
.ws4a{word-spacing:3.168000px;}
.ws54{word-spacing:3.240000px;}
.wsd{word-spacing:4.200000px;}
.ws59{word-spacing:4.680000px;}
.ws5f{word-spacing:4.800000px;}
.ws36{word-spacing:5.040000px;}
.ws38{word-spacing:8.640000px;}
.ws0{word-spacing:146.196000px;}
._b{margin-left:-948.820800px;}
._1a{margin-left:-19.614300px;}
._10{margin-left:-18.072000px;}
._19{margin-left:-16.391700px;}
._17{margin-left:-14.280000px;}
._1b{margin-left:-13.181400px;}
._18{margin-left:-11.052000px;}
._6{margin-left:-9.684000px;}
._f{margin-left:-8.124900px;}
._a{margin-left:-7.029000px;}
._9{margin-left:-5.964000px;}
._1{margin-left:-4.812000px;}
._4{margin-left:-2.976000px;}
._5{margin-left:-1.536000px;}
._2{width:1.738500px;}
._0{width:3.510000px;}
._7{width:5.389200px;}
._8{width:6.874200px;}
._3{width:8.352000px;}
._e{width:9.354300px;}
._c{width:10.411200px;}
._d{width:11.862300px;}
._12{width:13.361700px;}
._13{width:14.708100px;}
._15{width:16.074900px;}
._14{width:17.513400px;}
._16{width:18.675300px;}
._11{width:31.646100px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.700000px;}
.fs4{font-size:48.000000px;}
.fs5{font-size:50.400000px;}
.fs7{font-size:54.000000px;}
.fs1{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:72.000000px;}
.y4a{bottom:117.000000px;}
.ye2{bottom:117.078000px;}
.y179{bottom:117.600000px;}
.ye8{bottom:117.924000px;}
.y91{bottom:118.110000px;}
.y1af{bottom:119.274000px;}
.y25{bottom:119.352750px;}
.y148{bottom:119.796000px;}
.ybc{bottom:122.850000px;}
.y1d3{bottom:130.436250px;}
.y99{bottom:132.000000px;}
.y178{bottom:132.444000px;}
.y1ae{bottom:134.730000px;}
.y6d{bottom:136.207500px;}
.y24{bottom:137.352750px;}
.ye1{bottom:138.984000px;}
.y49{bottom:139.500000px;}
.ye7{bottom:141.018000px;}
.y90{bottom:141.204000px;}
.y147{bottom:143.502000px;}
.ybb{bottom:144.900000px;}
.y177{bottom:147.288000px;}
.y1d2{bottom:149.186250px;}
.y1ad{bottom:150.186000px;}
.y98{bottom:151.207500px;}
.y10b{bottom:154.500000px;}
.ye0{bottom:160.890000px;}
.y48{bottom:162.000000px;}
.y176{bottom:162.132000px;}
.y23{bottom:163.855650px;}
.ye6{bottom:164.112000px;}
.y8f{bottom:164.298000px;}
.y1ac{bottom:165.642000px;}
.yba{bottom:166.950000px;}
.y146{bottom:167.208000px;}
.y1d1{bottom:168.086250px;}
.y97{bottom:169.500000px;}
.y10a{bottom:173.707500px;}
.y125{bottom:174.144000px;}
.y6c{bottom:176.604000px;}
.y175{bottom:176.988000px;}
.y1ab{bottom:181.098000px;}
.y22{bottom:181.855650px;}
.ydf{bottom:182.796000px;}
.y47{bottom:184.500000px;}
.y1d0{bottom:186.986250px;}
.ye5{bottom:187.206000px;}
.y8e{bottom:187.392000px;}
.yb9{bottom:189.000000px;}
.y145{bottom:190.914000px;}
.y174{bottom:191.832000px;}
.y1aa{bottom:196.554000px;}
.y124{bottom:196.950000px;}
.y6b{bottom:199.248000px;}
.y21{bottom:199.855650px;}
.y96{bottom:203.707500px;}
.yde{bottom:204.702000px;}
.y1cf{bottom:206.036250px;}
.y173{bottom:206.676000px;}
.y46{bottom:207.000000px;}
.ye4{bottom:210.300000px;}
.y8d{bottom:210.486000px;}
.yb8{bottom:211.050000px;}
.y1a9{bottom:212.010000px;}
.y144{bottom:214.620000px;}
.y109{bottom:216.966000px;}
.y20{bottom:217.855650px;}
.y123{bottom:219.756000px;}
.y172{bottom:221.520000px;}
.y6a{bottom:221.892000px;}
.y95{bottom:222.000000px;}
.y1ce{bottom:225.086250px;}
.ydd{bottom:226.608000px;}
.y1a8{bottom:227.466000px;}
.y45{bottom:229.500000px;}
.yb7{bottom:233.100000px;}
.ye3{bottom:233.400000px;}
.y8c{bottom:233.580000px;}
.y1f{bottom:235.855650px;}
.y171{bottom:236.364000px;}
.y143{bottom:238.326000px;}
.y108{bottom:239.160000px;}
.y94{bottom:241.207500px;}
.y122{bottom:242.562000px;}
.y1a7{bottom:242.922000px;}
.y1cd{bottom:244.136250px;}
.y69{bottom:244.536000px;}
.ydc{bottom:248.514000px;}
.y170{bottom:251.220000px;}
.y44{bottom:252.000000px;}
.y1e{bottom:253.855650px;}
.yb6{bottom:255.150000px;}
.y8b{bottom:256.674000px;}
.y1a6{bottom:258.378000px;}
.y93{bottom:259.500000px;}
.y107{bottom:261.354000px;}
.y142{bottom:262.032000px;}
.y1cc{bottom:263.186250px;}
.y121{bottom:265.368000px;}
.y16f{bottom:266.064000px;}
.y68{bottom:267.180000px;}
.ydb{bottom:270.420000px;}
.y1d{bottom:271.855650px;}
.y1a5{bottom:273.834000px;}
.y43{bottom:274.500000px;}
.yb5{bottom:277.200000px;}
.y92{bottom:278.707500px;}
.y8a{bottom:279.768000px;}
.y16e{bottom:280.908000px;}
.y1cb{bottom:282.236250px;}
.y106{bottom:283.548000px;}
.y141{bottom:285.738000px;}
.y120{bottom:288.174000px;}
.y1a4{bottom:289.290000px;}
.y67{bottom:289.824000px;}
.y1c{bottom:289.855650px;}
.yda{bottom:292.326000px;}
.y16d{bottom:295.752000px;}
.y42{bottom:297.000000px;}
.yb4{bottom:299.250000px;}
.y1ca{bottom:301.286250px;}
.y89{bottom:302.862000px;}
.y1a3{bottom:304.746000px;}
.y105{bottom:305.742000px;}
.y1b{bottom:307.855650px;}
.y140{bottom:309.444000px;}
.y16c{bottom:310.596000px;}
.y11f{bottom:310.980000px;}
.y66{bottom:312.468000px;}
.yd9{bottom:314.232000px;}
.y41{bottom:319.500000px;}
.y1a2{bottom:320.202000px;}
.y1c9{bottom:320.336250px;}
.yb3{bottom:321.300000px;}
.y16b{bottom:325.452000px;}
.y1a{bottom:325.855650px;}
.y88{bottom:325.956000px;}
.y104{bottom:327.936000px;}
.y13f{bottom:333.150000px;}
.y11e{bottom:333.786000px;}
.y65{bottom:335.112000px;}
.y1a1{bottom:335.658000px;}
.yd8{bottom:336.138000px;}
.y1c8{bottom:339.386250px;}
.y16a{bottom:340.296000px;}
.y40{bottom:342.000000px;}
.yb2{bottom:343.350000px;}
.y19{bottom:343.855650px;}
.y87{bottom:349.050000px;}
.y103{bottom:350.130000px;}
.y1a0{bottom:351.114000px;}
.y169{bottom:355.140000px;}
.y11d{bottom:356.592000px;}
.y13e{bottom:356.856000px;}
.y64{bottom:357.756000px;}
.yd7{bottom:358.044000px;}
.y1c7{bottom:358.436250px;}
.y18{bottom:361.855650px;}
.y3f{bottom:364.500000px;}
.yb1{bottom:365.400000px;}
.y19f{bottom:366.570000px;}
.y168{bottom:369.984000px;}
.y86{bottom:372.144000px;}
.y102{bottom:372.324000px;}
.y1c6{bottom:377.486250px;}
.y11c{bottom:379.398000px;}
.y17{bottom:379.855650px;}
.yd6{bottom:379.950000px;}
.y63{bottom:380.328000px;}
.y13d{bottom:380.562000px;}
.y19e{bottom:382.026000px;}
.y167{bottom:384.828000px;}
.y3e{bottom:387.000000px;}
.yb0{bottom:387.450000px;}
.y101{bottom:394.518000px;}
.y85{bottom:395.238000px;}
.y1c5{bottom:396.536250px;}
.y19d{bottom:397.482000px;}
.y166{bottom:399.684000px;}
.yd5{bottom:401.856000px;}
.y11b{bottom:402.204000px;}
.y62{bottom:402.972000px;}
.y13c{bottom:404.268000px;}
.y16{bottom:406.360650px;}
.y3d{bottom:409.500000px;}
.y19c{bottom:412.938000px;}
.y165{bottom:414.528000px;}
.y1c4{bottom:415.586250px;}
.y100{bottom:416.712000px;}
.y84{bottom:418.332000px;}
.yd4{bottom:423.762000px;}
.y11a{bottom:425.010000px;}
.y61{bottom:425.616000px;}
.y13b{bottom:427.974000px;}
.y19b{bottom:428.394000px;}
.y164{bottom:429.372000px;}
.yaf{bottom:431.550000px;}
.y3c{bottom:432.000000px;}
.y1c3{bottom:434.636250px;}
.yff{bottom:438.906000px;}
.y83{bottom:441.426000px;}
.y19a{bottom:443.850000px;}
.y163{bottom:444.216000px;}
.y15{bottom:445.360650px;}
.yd3{bottom:445.668000px;}
.y119{bottom:447.816000px;}
.y60{bottom:448.260000px;}
.y13a{bottom:451.680000px;}
.yae{bottom:453.600000px;}
.y1c2{bottom:453.686250px;}
.y3b{bottom:454.500000px;}
.y162{bottom:459.072000px;}
.y199{bottom:459.450000px;}
.yfe{bottom:461.130000px;}
.y14{bottom:463.360650px;}
.y82{bottom:464.520000px;}
.yd2{bottom:467.574000px;}
.y118{bottom:470.622000px;}
.y5f{bottom:470.904000px;}
.y1c1{bottom:472.736250px;}
.y161{bottom:473.916000px;}
.y198{bottom:475.050000px;}
.y139{bottom:475.386000px;}
.yad{bottom:475.650000px;}
.y3a{bottom:477.000000px;}
.yfd{bottom:483.324000px;}
.y81{bottom:487.614000px;}
.y160{bottom:488.772000px;}
.yd1{bottom:489.480000px;}
.y13{bottom:489.863550px;}
.y197{bottom:490.650000px;}
.y1c0{bottom:491.786250px;}
.y117{bottom:493.428000px;}
.y5e{bottom:493.548000px;}
.yac{bottom:497.700000px;}
.y138{bottom:499.092000px;}
.y39{bottom:499.500000px;}
.y15f{bottom:503.616000px;}
.yfc{bottom:505.518000px;}
.y196{bottom:506.250000px;}
.y12{bottom:507.863550px;}
.y80{bottom:510.708000px;}
.y1bf{bottom:510.836250px;}
.yd0{bottom:511.386000px;}
.y5d{bottom:516.192000px;}
.y116{bottom:516.234000px;}
.y15e{bottom:518.460000px;}
.yab{bottom:519.750000px;}
.y195{bottom:521.706000px;}
.y38{bottom:522.000000px;}
.y137{bottom:522.798000px;}
.y11{bottom:525.863550px;}
.yfb{bottom:527.712000px;}
.y1be{bottom:529.886250px;}
.ycf{bottom:533.292000px;}
.y15d{bottom:533.316000px;}
.y7f{bottom:533.802000px;}
.y194{bottom:537.162000px;}
.y5c{bottom:538.998000px;}
.y115{bottom:539.040000px;}
.yaa{bottom:541.800000px;}
.y10{bottom:543.863550px;}
.y37{bottom:544.500000px;}
.y136{bottom:546.504000px;}
.y15c{bottom:548.160000px;}
.y1bd{bottom:548.936250px;}
.yfa{bottom:549.906000px;}
.y193{bottom:552.618000px;}
.yce{bottom:555.198000px;}
.y7e{bottom:556.896000px;}
.y5b{bottom:561.804000px;}
.y114{bottom:561.846000px;}
.yf{bottom:561.863550px;}
.y15b{bottom:563.016000px;}
.ya9{bottom:563.850000px;}
.y36{bottom:567.000000px;}
.y1bc{bottom:567.986250px;}
.y192{bottom:568.074000px;}
.y135{bottom:570.210000px;}
.yf9{bottom:572.196000px;}
.ycd{bottom:577.104000px;}
.y15a{bottom:577.860000px;}
.ye{bottom:579.863550px;}
.y7d{bottom:579.990000px;}
.y191{bottom:583.374000px;}
.y5a{bottom:584.610000px;}
.y113{bottom:584.652000px;}
.ya8{bottom:585.900000px;}
.y1bb{bottom:587.036250px;}
.y35{bottom:589.500000px;}
.y159{bottom:592.704000px;}
.y134{bottom:593.916000px;}
.yf8{bottom:594.390000px;}
.yd{bottom:597.863550px;}
.y190{bottom:598.674000px;}
.ycc{bottom:599.010000px;}
.y7c{bottom:603.084000px;}
.y1ba{bottom:606.086250px;}
.y59{bottom:607.416000px;}
.y112{bottom:607.458000px;}
.y158{bottom:607.560000px;}
.ya7{bottom:607.950000px;}
.y34{bottom:612.000000px;}
.y18f{bottom:613.974000px;}
.yc{bottom:615.863550px;}
.yf7{bottom:616.584000px;}
.y133{bottom:617.622000px;}
.ycb{bottom:620.916000px;}
.y157{bottom:622.404000px;}
.y1b9{bottom:625.136250px;}
.y7b{bottom:626.178000px;}
.y18e{bottom:629.274000px;}
.ya6{bottom:630.000000px;}
.y58{bottom:630.222000px;}
.y111{bottom:630.264000px;}
.yb{bottom:633.863550px;}
.y33{bottom:634.500000px;}
.y156{bottom:637.248000px;}
.yf6{bottom:638.778000px;}
.y132{bottom:641.328000px;}
.yca{bottom:642.822000px;}
.y18d{bottom:644.574000px;}
.y7a{bottom:649.272000px;}
.ya{bottom:651.863550px;}
.ya5{bottom:652.050000px;}
.y155{bottom:652.092000px;}
.y57{bottom:653.028000px;}
.y110{bottom:653.070000px;}
.y1b8{bottom:656.942100px;}
.y32{bottom:657.000000px;}
.y18c{bottom:659.874000px;}
.yf5{bottom:660.972000px;}
.yc9{bottom:664.728000px;}
.y131{bottom:665.034000px;}
.y154{bottom:666.936000px;}
.y9{bottom:669.863550px;}
.y79{bottom:672.366000px;}
.ya4{bottom:674.100000px;}
.y18b{bottom:675.174000px;}
.y1de{bottom:675.750000px;}
.y56{bottom:675.834000px;}
.y10f{bottom:675.876000px;}
.y31{bottom:679.500000px;}
.yf4{bottom:683.166000px;}
.yc8{bottom:686.634000px;}
.y1b7{bottom:687.906000px;}
.y153{bottom:688.164000px;}
.y130{bottom:688.740000px;}
.y18a{bottom:690.474000px;}
.y1dd{bottom:694.500000px;}
.y78{bottom:695.460000px;}
.y8{bottom:696.368550px;}
.y55{bottom:698.640000px;}
.y10e{bottom:698.682000px;}
.y30{bottom:702.000000px;}
.yf3{bottom:705.360000px;}
.y189{bottom:705.774000px;}
.ya3{bottom:706.950000px;}
.yc7{bottom:708.540000px;}
.y12f{bottom:712.446000px;}
.y1dc{bottom:713.250000px;}
.y77{bottom:718.554000px;}
.y188{bottom:721.074000px;}
.y54{bottom:721.446000px;}
.y10d{bottom:721.488000px;}
.y2f{bottom:724.500000px;}
.yf2{bottom:727.554000px;}
.yc6{bottom:730.446000px;}
.y1db{bottom:732.000000px;}
.y152{bottom:734.064000px;}
.y12e{bottom:736.152000px;}
.y187{bottom:736.374000px;}
.y1b6{bottom:737.454000px;}
.y7{bottom:741.504300px;}
.y76{bottom:741.648000px;}
.y53{bottom:744.252000px;}
.y10c{bottom:744.294000px;}
.y2e{bottom:747.000000px;}
.y151{bottom:749.520000px;}
.yf1{bottom:749.748000px;}
.ya2{bottom:751.050000px;}
.y186{bottom:751.674000px;}
.yc5{bottom:752.352000px;}
.y1b5{bottom:752.598000px;}
.y12d{bottom:759.858000px;}
.y6{bottom:761.004300px;}
.y75{bottom:764.742000px;}
.y150{bottom:764.976000px;}
.y185{bottom:766.974000px;}
.y52{bottom:767.058000px;}
.y1b4{bottom:767.742000px;}
.y2d{bottom:769.500000px;}
.yf0{bottom:771.942000px;}
.ya1{bottom:773.100000px;}
.yc4{bottom:774.258000px;}
.y184{bottom:782.274000px;}
.y5{bottom:782.754300px;}
.y1b3{bottom:782.886000px;}
.y12c{bottom:783.564000px;}
.y74{bottom:787.836000px;}
.y51{bottom:789.864000px;}
.y2c{bottom:792.000000px;}
.yef{bottom:794.136000px;}
.ya0{bottom:795.150000px;}
.yc3{bottom:796.164000px;}
.y183{bottom:797.574000px;}
.y1b2{bottom:798.030000px;}
.y1da{bottom:799.500000px;}
.y14f{bottom:802.176000px;}
.y12b{bottom:807.270000px;}
.y73{bottom:810.930000px;}
.y50{bottom:812.670000px;}
.y182{bottom:812.874000px;}
.y1b1{bottom:813.174000px;}
.y2b{bottom:814.500000px;}
.yee{bottom:816.330000px;}
.y14e{bottom:817.176000px;}
.y9f{bottom:817.200000px;}
.yc2{bottom:818.070000px;}
.y1d9{bottom:818.250000px;}
.y181{bottom:828.174000px;}
.y1b0{bottom:828.330000px;}
.y12a{bottom:830.976000px;}
.y14d{bottom:832.176000px;}
.y72{bottom:834.024000px;}
.y4f{bottom:835.476000px;}
.y2a{bottom:837.000000px;}
.yed{bottom:838.524000px;}
.y9e{bottom:839.250000px;}
.yc1{bottom:839.976000px;}
.y180{bottom:843.474000px;}
.y14c{bottom:847.176000px;}
.y4{bottom:849.150000px;}
.y129{bottom:854.682000px;}
.y1d8{bottom:855.750000px;}
.y71{bottom:857.118000px;}
.y4e{bottom:858.282000px;}
.y17f{bottom:858.618000px;}
.y29{bottom:859.500000px;}
.yec{bottom:860.718000px;}
.y9d{bottom:861.300000px;}
.yc0{bottom:861.882000px;}
.y14b{bottom:862.176000px;}
.y17e{bottom:873.762000px;}
.y1d7{bottom:874.500000px;}
.y14a{bottom:877.176000px;}
.y128{bottom:878.388000px;}
.y3{bottom:878.400000px;}
.y70{bottom:880.212000px;}
.y4d{bottom:881.088000px;}
.y28{bottom:882.000000px;}
.yeb{bottom:882.912000px;}
.y9c{bottom:883.350000px;}
.ybf{bottom:883.788000px;}
.y17d{bottom:888.906000px;}
.y1d6{bottom:893.250000px;}
.y149{bottom:898.128000px;}
.y127{bottom:902.094000px;}
.y6f{bottom:903.306000px;}
.y4c{bottom:903.894000px;}
.y17c{bottom:904.062000px;}
.y27{bottom:904.500000px;}
.yea{bottom:905.106000px;}
.y9b{bottom:905.400000px;}
.ybe{bottom:905.694000px;}
.y1d5{bottom:912.000000px;}
.y17b{bottom:919.206000px;}
.y2{bottom:925.650000px;}
.y126{bottom:925.800000px;}
.y6e{bottom:926.400000px;}
.y4b{bottom:926.700000px;}
.y26{bottom:927.000000px;}
.ye9{bottom:927.300000px;}
.y9a{bottom:927.450000px;}
.ybd{bottom:927.600000px;}
.y1d4{bottom:930.750000px;}
.y17a{bottom:934.350000px;}
.h9{height:30.313623px;}
.h2{height:37.990723px;}
.h11{height:39.072000px;}
.h7{height:39.990234px;}
.ha{height:40.757812px;}
.hd{height:45.852539px;}
.hc{height:47.988281px;}
.h6{height:48.399902px;}
.h4{height:50.580000px;}
.h1{height:50.947266px;}
.h5{height:61.136719px;}
.h10{height:61.304719px;}
.h8{height:61.424719px;}
.he{height:66.171703px;}
.hf{height:66.435703px;}
.hb{height:66.555703px;}
.h3{height:101.894531px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.x6{left:82.381950px;}
.x2{left:97.263750px;}
.x4{left:112.500000px;}
.x5{left:127.381950px;}
.x8{left:180.525000px;}
.x7{left:348.144000px;}
.x3{left:625.781250px;}
@media print{
.v3{vertical-align:-21.120000pt;}
.v2{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.376000pt;}
.ls2b{letter-spacing:-7.680000pt;}
.ls54{letter-spacing:-4.266667pt;}
.ls4c{letter-spacing:-4.160000pt;}
.ls49{letter-spacing:-2.880000pt;}
.ls41{letter-spacing:-2.816000pt;}
.ls40{letter-spacing:-2.496000pt;}
.ls33{letter-spacing:-2.432000pt;}
.ls52{letter-spacing:-2.261333pt;}
.ls43{letter-spacing:-1.984000pt;}
.ls3f{letter-spacing:-1.920000pt;}
.ls53{letter-spacing:-1.664000pt;}
.ls4a{letter-spacing:-1.280000pt;}
.ls2e{letter-spacing:-1.024000pt;}
.ls4d{letter-spacing:-0.960000pt;}
.ls1f{letter-spacing:-0.896000pt;}
.ls34{letter-spacing:-0.832000pt;}
.ls31{letter-spacing:-0.768000pt;}
.ls21{letter-spacing:-0.704000pt;}
.ls32{letter-spacing:-0.640000pt;}
.ls38{letter-spacing:-0.576000pt;}
.ls5{letter-spacing:-0.533333pt;}
.ls12{letter-spacing:-0.512000pt;}
.ls10{letter-spacing:-0.448000pt;}
.ls20{letter-spacing:-0.384000pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.266667pt;}
.ls1e{letter-spacing:-0.256000pt;}
.ls55{letter-spacing:-0.213333pt;}
.ls18{letter-spacing:-0.192000pt;}
.ls1a{letter-spacing:-0.128000pt;}
.ls19{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:-0.053333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.000533pt;}
.ls35{letter-spacing:0.025600pt;}
.ls17{letter-spacing:0.064000pt;}
.ls26{letter-spacing:0.113067pt;}
.lsb{letter-spacing:0.128000pt;}
.ls4b{letter-spacing:0.172800pt;}
.lsa{letter-spacing:0.192000pt;}
.ls4e{letter-spacing:0.198400pt;}
.ls50{letter-spacing:0.213333pt;}
.ls15{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.320000pt;}
.ls30{letter-spacing:0.339200pt;}
.ls13{letter-spacing:0.384000pt;}
.ls22{letter-spacing:0.448000pt;}
.lse{letter-spacing:0.512000pt;}
.ls16{letter-spacing:0.576000pt;}
.ls14{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.704000pt;}
.lsd{letter-spacing:0.768000pt;}
.ls1b{letter-spacing:0.832000pt;}
.ls2c{letter-spacing:0.838400pt;}
.ls1c{letter-spacing:0.896000pt;}
.ls2d{letter-spacing:0.960000pt;}
.ls1d{letter-spacing:1.024000pt;}
.ls2f{letter-spacing:1.030400pt;}
.ls23{letter-spacing:1.472000pt;}
.ls25{letter-spacing:2.048000pt;}
.ls1{letter-spacing:2.533333pt;}
.ls56{letter-spacing:2.978133pt;}
.ls3b{letter-spacing:3.072000pt;}
.ls3d{letter-spacing:3.168000pt;}
.ls47{letter-spacing:3.360000pt;}
.ls39{letter-spacing:3.475200pt;}
.ls9{letter-spacing:3.925333pt;}
.ls3{letter-spacing:4.053333pt;}
.ls29{letter-spacing:4.160000pt;}
.ls4f{letter-spacing:4.224000pt;}
.ls2a{letter-spacing:4.672000pt;}
.ls3e{letter-spacing:5.900800pt;}
.ls51{letter-spacing:6.016000pt;}
.ls28{letter-spacing:6.768000pt;}
.ls57{letter-spacing:7.200000pt;}
.ls42{letter-spacing:7.296000pt;}
.ls3c{letter-spacing:7.424000pt;}
.ls0{letter-spacing:7.498667pt;}
.ls6{letter-spacing:7.520000pt;}
.ls3a{letter-spacing:7.680000pt;}
.ls24{letter-spacing:7.744000pt;}
.ls48{letter-spacing:7.808000pt;}
.ls37{letter-spacing:7.987200pt;}
.ls36{letter-spacing:8.064000pt;}
.ls45{letter-spacing:8.448000pt;}
.ls44{letter-spacing:8.576000pt;}
.ls46{letter-spacing:8.768000pt;}
.ls2{letter-spacing:9.546667pt;}
.wsc{word-spacing:-22.506667pt;}
.ws63{word-spacing:-20.688000pt;}
.ws42{word-spacing:-18.176000pt;}
.ws1c{word-spacing:-17.984000pt;}
.ws55{word-spacing:-16.704000pt;}
.ws56{word-spacing:-16.640000pt;}
.ws34{word-spacing:-16.576000pt;}
.ws46{word-spacing:-16.448000pt;}
.ws33{word-spacing:-16.384000pt;}
.ws50{word-spacing:-16.320000pt;}
.ws41{word-spacing:-16.192000pt;}
.ws57{word-spacing:-16.128000pt;}
.ws19{word-spacing:-16.064000pt;}
.ws17{word-spacing:-16.000000pt;}
.ws35{word-spacing:-15.872000pt;}
.ws1b{word-spacing:-15.808000pt;}
.ws18{word-spacing:-15.744000pt;}
.ws1a{word-spacing:-15.680000pt;}
.ws4f{word-spacing:-15.616000pt;}
.ws3c{word-spacing:-15.552000pt;}
.ws39{word-spacing:-15.488000pt;}
.ws44{word-spacing:-15.296000pt;}
.ws40{word-spacing:-15.232000pt;}
.ws58{word-spacing:-14.848000pt;}
.ws48{word-spacing:-13.888000pt;}
.ws4e{word-spacing:-12.588800pt;}
.ws5b{word-spacing:-11.989333pt;}
.ws5a{word-spacing:-10.965333pt;}
.ws1e{word-spacing:-10.538667pt;}
.ws52{word-spacing:-8.768000pt;}
.ws4d{word-spacing:-8.576000pt;}
.ws51{word-spacing:-8.448000pt;}
.ws53{word-spacing:-7.808000pt;}
.ws31{word-spacing:-7.744000pt;}
.ws45{word-spacing:-7.680000pt;}
.ws2{word-spacing:-7.573333pt;}
.wsb{word-spacing:-7.552000pt;}
.ws27{word-spacing:-7.520000pt;}
.ws47{word-spacing:-7.424000pt;}
.ws4b{word-spacing:-7.296000pt;}
.ws37{word-spacing:-6.768000pt;}
.ws5c{word-spacing:-6.016000pt;}
.wsa{word-spacing:-3.925333pt;}
.ws1{word-spacing:-2.584000pt;}
.ws6{word-spacing:-2.533333pt;}
.ws32{word-spacing:-2.048000pt;}
.ws30{word-spacing:-1.472000pt;}
.ws2a{word-spacing:-1.024000pt;}
.ws3a{word-spacing:-0.960000pt;}
.ws28{word-spacing:-0.896000pt;}
.ws29{word-spacing:-0.832000pt;}
.ws13{word-spacing:-0.768000pt;}
.wsf{word-spacing:-0.704000pt;}
.ws22{word-spacing:-0.640000pt;}
.ws1f{word-spacing:-0.576000pt;}
.ws16{word-spacing:-0.512000pt;}
.ws2f{word-spacing:-0.448000pt;}
.ws7{word-spacing:-0.426667pt;}
.ws20{word-spacing:-0.384000pt;}
.ws12{word-spacing:-0.320000pt;}
.ws23{word-spacing:-0.256000pt;}
.ws61{word-spacing:-0.213333pt;}
.wse{word-spacing:-0.192000pt;}
.ws11{word-spacing:-0.128000pt;}
.ws21{word-spacing:-0.064000pt;}
.ws1d{word-spacing:-0.044800pt;}
.ws62{word-spacing:-0.042667pt;}
.ws3{word-spacing:0.000000pt;}
.ws8{word-spacing:0.053333pt;}
.ws25{word-spacing:0.064000pt;}
.ws26{word-spacing:0.128000pt;}
.ws24{word-spacing:0.192000pt;}
.ws60{word-spacing:0.213333pt;}
.ws2b{word-spacing:0.256000pt;}
.ws9{word-spacing:0.266667pt;}
.ws14{word-spacing:0.320000pt;}
.ws2d{word-spacing:0.384000pt;}
.ws10{word-spacing:0.448000pt;}
.ws15{word-spacing:0.512000pt;}
.ws4{word-spacing:0.533333pt;}
.ws43{word-spacing:0.576000pt;}
.ws3e{word-spacing:0.640000pt;}
.ws2e{word-spacing:0.704000pt;}
.ws3d{word-spacing:0.768000pt;}
.ws3f{word-spacing:0.832000pt;}
.ws2c{word-spacing:0.896000pt;}
.ws5{word-spacing:1.013333pt;}
.ws3b{word-spacing:1.024000pt;}
.ws64{word-spacing:1.280000pt;}
.ws5e{word-spacing:1.664000pt;}
.ws4c{word-spacing:1.984000pt;}
.ws5d{word-spacing:2.261333pt;}
.ws49{word-spacing:2.496000pt;}
.ws4a{word-spacing:2.816000pt;}
.ws54{word-spacing:2.880000pt;}
.wsd{word-spacing:3.733333pt;}
.ws59{word-spacing:4.160000pt;}
.ws5f{word-spacing:4.266667pt;}
.ws36{word-spacing:4.480000pt;}
.ws38{word-spacing:7.680000pt;}
.ws0{word-spacing:129.952000pt;}
._b{margin-left:-843.396267pt;}
._1a{margin-left:-17.434933pt;}
._10{margin-left:-16.064000pt;}
._19{margin-left:-14.570400pt;}
._17{margin-left:-12.693333pt;}
._1b{margin-left:-11.716800pt;}
._18{margin-left:-9.824000pt;}
._6{margin-left:-8.608000pt;}
._f{margin-left:-7.222133pt;}
._a{margin-left:-6.248000pt;}
._9{margin-left:-5.301333pt;}
._1{margin-left:-4.277333pt;}
._4{margin-left:-2.645333pt;}
._5{margin-left:-1.365333pt;}
._2{width:1.545333pt;}
._0{width:3.120000pt;}
._7{width:4.790400pt;}
._8{width:6.110400pt;}
._3{width:7.424000pt;}
._e{width:8.314933pt;}
._c{width:9.254400pt;}
._d{width:10.544267pt;}
._12{width:11.877067pt;}
._13{width:13.073867pt;}
._15{width:14.288800pt;}
._14{width:15.567467pt;}
._16{width:16.600267pt;}
._11{width:28.129867pt;}
.fs6{font-size:31.733333pt;}
.fs4{font-size:42.666667pt;}
.fs5{font-size:44.800000pt;}
.fs7{font-size:48.000000pt;}
.fs1{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:64.000000pt;}
.y4a{bottom:104.000000pt;}
.ye2{bottom:104.069333pt;}
.y179{bottom:104.533333pt;}
.ye8{bottom:104.821333pt;}
.y91{bottom:104.986667pt;}
.y1af{bottom:106.021333pt;}
.y25{bottom:106.091333pt;}
.y148{bottom:106.485333pt;}
.ybc{bottom:109.200000pt;}
.y1d3{bottom:115.943333pt;}
.y99{bottom:117.333333pt;}
.y178{bottom:117.728000pt;}
.y1ae{bottom:119.760000pt;}
.y6d{bottom:121.073333pt;}
.y24{bottom:122.091333pt;}
.ye1{bottom:123.541333pt;}
.y49{bottom:124.000000pt;}
.ye7{bottom:125.349333pt;}
.y90{bottom:125.514667pt;}
.y147{bottom:127.557333pt;}
.ybb{bottom:128.800000pt;}
.y177{bottom:130.922667pt;}
.y1d2{bottom:132.610000pt;}
.y1ad{bottom:133.498667pt;}
.y98{bottom:134.406667pt;}
.y10b{bottom:137.333333pt;}
.ye0{bottom:143.013333pt;}
.y48{bottom:144.000000pt;}
.y176{bottom:144.117333pt;}
.y23{bottom:145.649467pt;}
.ye6{bottom:145.877333pt;}
.y8f{bottom:146.042667pt;}
.y1ac{bottom:147.237333pt;}
.yba{bottom:148.400000pt;}
.y146{bottom:148.629333pt;}
.y1d1{bottom:149.410000pt;}
.y97{bottom:150.666667pt;}
.y10a{bottom:154.406667pt;}
.y125{bottom:154.794667pt;}
.y6c{bottom:156.981333pt;}
.y175{bottom:157.322667pt;}
.y1ab{bottom:160.976000pt;}
.y22{bottom:161.649467pt;}
.ydf{bottom:162.485333pt;}
.y47{bottom:164.000000pt;}
.y1d0{bottom:166.210000pt;}
.ye5{bottom:166.405333pt;}
.y8e{bottom:166.570667pt;}
.yb9{bottom:168.000000pt;}
.y145{bottom:169.701333pt;}
.y174{bottom:170.517333pt;}
.y1aa{bottom:174.714667pt;}
.y124{bottom:175.066667pt;}
.y6b{bottom:177.109333pt;}
.y21{bottom:177.649467pt;}
.y96{bottom:181.073333pt;}
.yde{bottom:181.957333pt;}
.y1cf{bottom:183.143333pt;}
.y173{bottom:183.712000pt;}
.y46{bottom:184.000000pt;}
.ye4{bottom:186.933333pt;}
.y8d{bottom:187.098667pt;}
.yb8{bottom:187.600000pt;}
.y1a9{bottom:188.453333pt;}
.y144{bottom:190.773333pt;}
.y109{bottom:192.858667pt;}
.y20{bottom:193.649467pt;}
.y123{bottom:195.338667pt;}
.y172{bottom:196.906667pt;}
.y6a{bottom:197.237333pt;}
.y95{bottom:197.333333pt;}
.y1ce{bottom:200.076667pt;}
.ydd{bottom:201.429333pt;}
.y1a8{bottom:202.192000pt;}
.y45{bottom:204.000000pt;}
.yb7{bottom:207.200000pt;}
.ye3{bottom:207.466667pt;}
.y8c{bottom:207.626667pt;}
.y1f{bottom:209.649467pt;}
.y171{bottom:210.101333pt;}
.y143{bottom:211.845333pt;}
.y108{bottom:212.586667pt;}
.y94{bottom:214.406667pt;}
.y122{bottom:215.610667pt;}
.y1a7{bottom:215.930667pt;}
.y1cd{bottom:217.010000pt;}
.y69{bottom:217.365333pt;}
.ydc{bottom:220.901333pt;}
.y170{bottom:223.306667pt;}
.y44{bottom:224.000000pt;}
.y1e{bottom:225.649467pt;}
.yb6{bottom:226.800000pt;}
.y8b{bottom:228.154667pt;}
.y1a6{bottom:229.669333pt;}
.y93{bottom:230.666667pt;}
.y107{bottom:232.314667pt;}
.y142{bottom:232.917333pt;}
.y1cc{bottom:233.943333pt;}
.y121{bottom:235.882667pt;}
.y16f{bottom:236.501333pt;}
.y68{bottom:237.493333pt;}
.ydb{bottom:240.373333pt;}
.y1d{bottom:241.649467pt;}
.y1a5{bottom:243.408000pt;}
.y43{bottom:244.000000pt;}
.yb5{bottom:246.400000pt;}
.y92{bottom:247.740000pt;}
.y8a{bottom:248.682667pt;}
.y16e{bottom:249.696000pt;}
.y1cb{bottom:250.876667pt;}
.y106{bottom:252.042667pt;}
.y141{bottom:253.989333pt;}
.y120{bottom:256.154667pt;}
.y1a4{bottom:257.146667pt;}
.y67{bottom:257.621333pt;}
.y1c{bottom:257.649467pt;}
.yda{bottom:259.845333pt;}
.y16d{bottom:262.890667pt;}
.y42{bottom:264.000000pt;}
.yb4{bottom:266.000000pt;}
.y1ca{bottom:267.810000pt;}
.y89{bottom:269.210667pt;}
.y1a3{bottom:270.885333pt;}
.y105{bottom:271.770667pt;}
.y1b{bottom:273.649467pt;}
.y140{bottom:275.061333pt;}
.y16c{bottom:276.085333pt;}
.y11f{bottom:276.426667pt;}
.y66{bottom:277.749333pt;}
.yd9{bottom:279.317333pt;}
.y41{bottom:284.000000pt;}
.y1a2{bottom:284.624000pt;}
.y1c9{bottom:284.743333pt;}
.yb3{bottom:285.600000pt;}
.y16b{bottom:289.290667pt;}
.y1a{bottom:289.649467pt;}
.y88{bottom:289.738667pt;}
.y104{bottom:291.498667pt;}
.y13f{bottom:296.133333pt;}
.y11e{bottom:296.698667pt;}
.y65{bottom:297.877333pt;}
.y1a1{bottom:298.362667pt;}
.yd8{bottom:298.789333pt;}
.y1c8{bottom:301.676667pt;}
.y16a{bottom:302.485333pt;}
.y40{bottom:304.000000pt;}
.yb2{bottom:305.200000pt;}
.y19{bottom:305.649467pt;}
.y87{bottom:310.266667pt;}
.y103{bottom:311.226667pt;}
.y1a0{bottom:312.101333pt;}
.y169{bottom:315.680000pt;}
.y11d{bottom:316.970667pt;}
.y13e{bottom:317.205333pt;}
.y64{bottom:318.005333pt;}
.yd7{bottom:318.261333pt;}
.y1c7{bottom:318.610000pt;}
.y18{bottom:321.649467pt;}
.y3f{bottom:324.000000pt;}
.yb1{bottom:324.800000pt;}
.y19f{bottom:325.840000pt;}
.y168{bottom:328.874667pt;}
.y86{bottom:330.794667pt;}
.y102{bottom:330.954667pt;}
.y1c6{bottom:335.543333pt;}
.y11c{bottom:337.242667pt;}
.y17{bottom:337.649467pt;}
.yd6{bottom:337.733333pt;}
.y63{bottom:338.069333pt;}
.y13d{bottom:338.277333pt;}
.y19e{bottom:339.578667pt;}
.y167{bottom:342.069333pt;}
.y3e{bottom:344.000000pt;}
.yb0{bottom:344.400000pt;}
.y101{bottom:350.682667pt;}
.y85{bottom:351.322667pt;}
.y1c5{bottom:352.476667pt;}
.y19d{bottom:353.317333pt;}
.y166{bottom:355.274667pt;}
.yd5{bottom:357.205333pt;}
.y11b{bottom:357.514667pt;}
.y62{bottom:358.197333pt;}
.y13c{bottom:359.349333pt;}
.y16{bottom:361.209467pt;}
.y3d{bottom:364.000000pt;}
.y19c{bottom:367.056000pt;}
.y165{bottom:368.469333pt;}
.y1c4{bottom:369.410000pt;}
.y100{bottom:370.410667pt;}
.y84{bottom:371.850667pt;}
.yd4{bottom:376.677333pt;}
.y11a{bottom:377.786667pt;}
.y61{bottom:378.325333pt;}
.y13b{bottom:380.421333pt;}
.y19b{bottom:380.794667pt;}
.y164{bottom:381.664000pt;}
.yaf{bottom:383.600000pt;}
.y3c{bottom:384.000000pt;}
.y1c3{bottom:386.343333pt;}
.yff{bottom:390.138667pt;}
.y83{bottom:392.378667pt;}
.y19a{bottom:394.533333pt;}
.y163{bottom:394.858667pt;}
.y15{bottom:395.876133pt;}
.yd3{bottom:396.149333pt;}
.y119{bottom:398.058667pt;}
.y60{bottom:398.453333pt;}
.y13a{bottom:401.493333pt;}
.yae{bottom:403.200000pt;}
.y1c2{bottom:403.276667pt;}
.y3b{bottom:404.000000pt;}
.y162{bottom:408.064000pt;}
.y199{bottom:408.400000pt;}
.yfe{bottom:409.893333pt;}
.y14{bottom:411.876133pt;}
.y82{bottom:412.906667pt;}
.yd2{bottom:415.621333pt;}
.y118{bottom:418.330667pt;}
.y5f{bottom:418.581333pt;}
.y1c1{bottom:420.210000pt;}
.y161{bottom:421.258667pt;}
.y198{bottom:422.266667pt;}
.y139{bottom:422.565333pt;}
.yad{bottom:422.800000pt;}
.y3a{bottom:424.000000pt;}
.yfd{bottom:429.621333pt;}
.y81{bottom:433.434667pt;}
.y160{bottom:434.464000pt;}
.yd1{bottom:435.093333pt;}
.y13{bottom:435.434267pt;}
.y197{bottom:436.133333pt;}
.y1c0{bottom:437.143333pt;}
.y117{bottom:438.602667pt;}
.y5e{bottom:438.709333pt;}
.yac{bottom:442.400000pt;}
.y138{bottom:443.637333pt;}
.y39{bottom:444.000000pt;}
.y15f{bottom:447.658667pt;}
.yfc{bottom:449.349333pt;}
.y196{bottom:450.000000pt;}
.y12{bottom:451.434267pt;}
.y80{bottom:453.962667pt;}
.y1bf{bottom:454.076667pt;}
.yd0{bottom:454.565333pt;}
.y5d{bottom:458.837333pt;}
.y116{bottom:458.874667pt;}
.y15e{bottom:460.853333pt;}
.yab{bottom:462.000000pt;}
.y195{bottom:463.738667pt;}
.y38{bottom:464.000000pt;}
.y137{bottom:464.709333pt;}
.y11{bottom:467.434267pt;}
.yfb{bottom:469.077333pt;}
.y1be{bottom:471.010000pt;}
.ycf{bottom:474.037333pt;}
.y15d{bottom:474.058667pt;}
.y7f{bottom:474.490667pt;}
.y194{bottom:477.477333pt;}
.y5c{bottom:479.109333pt;}
.y115{bottom:479.146667pt;}
.yaa{bottom:481.600000pt;}
.y10{bottom:483.434267pt;}
.y37{bottom:484.000000pt;}
.y136{bottom:485.781333pt;}
.y15c{bottom:487.253333pt;}
.y1bd{bottom:487.943333pt;}
.yfa{bottom:488.805333pt;}
.y193{bottom:491.216000pt;}
.yce{bottom:493.509333pt;}
.y7e{bottom:495.018667pt;}
.y5b{bottom:499.381333pt;}
.y114{bottom:499.418667pt;}
.yf{bottom:499.434267pt;}
.y15b{bottom:500.458667pt;}
.ya9{bottom:501.200000pt;}
.y36{bottom:504.000000pt;}
.y1bc{bottom:504.876667pt;}
.y192{bottom:504.954667pt;}
.y135{bottom:506.853333pt;}
.yf9{bottom:508.618667pt;}
.ycd{bottom:512.981333pt;}
.y15a{bottom:513.653333pt;}
.ye{bottom:515.434267pt;}
.y7d{bottom:515.546667pt;}
.y191{bottom:518.554667pt;}
.y5a{bottom:519.653333pt;}
.y113{bottom:519.690667pt;}
.ya8{bottom:520.800000pt;}
.y1bb{bottom:521.810000pt;}
.y35{bottom:524.000000pt;}
.y159{bottom:526.848000pt;}
.y134{bottom:527.925333pt;}
.yf8{bottom:528.346667pt;}
.yd{bottom:531.434267pt;}
.y190{bottom:532.154667pt;}
.ycc{bottom:532.453333pt;}
.y7c{bottom:536.074667pt;}
.y1ba{bottom:538.743333pt;}
.y59{bottom:539.925333pt;}
.y112{bottom:539.962667pt;}
.y158{bottom:540.053333pt;}
.ya7{bottom:540.400000pt;}
.y34{bottom:544.000000pt;}
.y18f{bottom:545.754667pt;}
.yc{bottom:547.434267pt;}
.yf7{bottom:548.074667pt;}
.y133{bottom:548.997333pt;}
.ycb{bottom:551.925333pt;}
.y157{bottom:553.248000pt;}
.y1b9{bottom:555.676667pt;}
.y7b{bottom:556.602667pt;}
.y18e{bottom:559.354667pt;}
.ya6{bottom:560.000000pt;}
.y58{bottom:560.197333pt;}
.y111{bottom:560.234667pt;}
.yb{bottom:563.434267pt;}
.y33{bottom:564.000000pt;}
.y156{bottom:566.442667pt;}
.yf6{bottom:567.802667pt;}
.y132{bottom:570.069333pt;}
.yca{bottom:571.397333pt;}
.y18d{bottom:572.954667pt;}
.y7a{bottom:577.130667pt;}
.ya{bottom:579.434267pt;}
.ya5{bottom:579.600000pt;}
.y155{bottom:579.637333pt;}
.y57{bottom:580.469333pt;}
.y110{bottom:580.506667pt;}
.y1b8{bottom:583.948533pt;}
.y32{bottom:584.000000pt;}
.y18c{bottom:586.554667pt;}
.yf5{bottom:587.530667pt;}
.yc9{bottom:590.869333pt;}
.y131{bottom:591.141333pt;}
.y154{bottom:592.832000pt;}
.y9{bottom:595.434267pt;}
.y79{bottom:597.658667pt;}
.ya4{bottom:599.200000pt;}
.y18b{bottom:600.154667pt;}
.y1de{bottom:600.666667pt;}
.y56{bottom:600.741333pt;}
.y10f{bottom:600.778667pt;}
.y31{bottom:604.000000pt;}
.yf4{bottom:607.258667pt;}
.yc8{bottom:610.341333pt;}
.y1b7{bottom:611.472000pt;}
.y153{bottom:611.701333pt;}
.y130{bottom:612.213333pt;}
.y18a{bottom:613.754667pt;}
.y1dd{bottom:617.333333pt;}
.y78{bottom:618.186667pt;}
.y8{bottom:618.994267pt;}
.y55{bottom:621.013333pt;}
.y10e{bottom:621.050667pt;}
.y30{bottom:624.000000pt;}
.yf3{bottom:626.986667pt;}
.y189{bottom:627.354667pt;}
.ya3{bottom:628.400000pt;}
.yc7{bottom:629.813333pt;}
.y12f{bottom:633.285333pt;}
.y1dc{bottom:634.000000pt;}
.y77{bottom:638.714667pt;}
.y188{bottom:640.954667pt;}
.y54{bottom:641.285333pt;}
.y10d{bottom:641.322667pt;}
.y2f{bottom:644.000000pt;}
.yf2{bottom:646.714667pt;}
.yc6{bottom:649.285333pt;}
.y1db{bottom:650.666667pt;}
.y152{bottom:652.501333pt;}
.y12e{bottom:654.357333pt;}
.y187{bottom:654.554667pt;}
.y1b6{bottom:655.514667pt;}
.y7{bottom:659.114933pt;}
.y76{bottom:659.242667pt;}
.y53{bottom:661.557333pt;}
.y10c{bottom:661.594667pt;}
.y2e{bottom:664.000000pt;}
.y151{bottom:666.240000pt;}
.yf1{bottom:666.442667pt;}
.ya2{bottom:667.600000pt;}
.y186{bottom:668.154667pt;}
.yc5{bottom:668.757333pt;}
.y1b5{bottom:668.976000pt;}
.y12d{bottom:675.429333pt;}
.y6{bottom:676.448267pt;}
.y75{bottom:679.770667pt;}
.y150{bottom:679.978667pt;}
.y185{bottom:681.754667pt;}
.y52{bottom:681.829333pt;}
.y1b4{bottom:682.437333pt;}
.y2d{bottom:684.000000pt;}
.yf0{bottom:686.170667pt;}
.ya1{bottom:687.200000pt;}
.yc4{bottom:688.229333pt;}
.y184{bottom:695.354667pt;}
.y5{bottom:695.781600pt;}
.y1b3{bottom:695.898667pt;}
.y12c{bottom:696.501333pt;}
.y74{bottom:700.298667pt;}
.y51{bottom:702.101333pt;}
.y2c{bottom:704.000000pt;}
.yef{bottom:705.898667pt;}
.ya0{bottom:706.800000pt;}
.yc3{bottom:707.701333pt;}
.y183{bottom:708.954667pt;}
.y1b2{bottom:709.360000pt;}
.y1da{bottom:710.666667pt;}
.y14f{bottom:713.045333pt;}
.y12b{bottom:717.573333pt;}
.y73{bottom:720.826667pt;}
.y50{bottom:722.373333pt;}
.y182{bottom:722.554667pt;}
.y1b1{bottom:722.821333pt;}
.y2b{bottom:724.000000pt;}
.yee{bottom:725.626667pt;}
.y14e{bottom:726.378667pt;}
.y9f{bottom:726.400000pt;}
.yc2{bottom:727.173333pt;}
.y1d9{bottom:727.333333pt;}
.y181{bottom:736.154667pt;}
.y1b0{bottom:736.293333pt;}
.y12a{bottom:738.645333pt;}
.y14d{bottom:739.712000pt;}
.y72{bottom:741.354667pt;}
.y4f{bottom:742.645333pt;}
.y2a{bottom:744.000000pt;}
.yed{bottom:745.354667pt;}
.y9e{bottom:746.000000pt;}
.yc1{bottom:746.645333pt;}
.y180{bottom:749.754667pt;}
.y14c{bottom:753.045333pt;}
.y4{bottom:754.800000pt;}
.y129{bottom:759.717333pt;}
.y1d8{bottom:760.666667pt;}
.y71{bottom:761.882667pt;}
.y4e{bottom:762.917333pt;}
.y17f{bottom:763.216000pt;}
.y29{bottom:764.000000pt;}
.yec{bottom:765.082667pt;}
.y9d{bottom:765.600000pt;}
.yc0{bottom:766.117333pt;}
.y14b{bottom:766.378667pt;}
.y17e{bottom:776.677333pt;}
.y1d7{bottom:777.333333pt;}
.y14a{bottom:779.712000pt;}
.y128{bottom:780.789333pt;}
.y3{bottom:780.800000pt;}
.y70{bottom:782.410667pt;}
.y4d{bottom:783.189333pt;}
.y28{bottom:784.000000pt;}
.yeb{bottom:784.810667pt;}
.y9c{bottom:785.200000pt;}
.ybf{bottom:785.589333pt;}
.y17d{bottom:790.138667pt;}
.y1d6{bottom:794.000000pt;}
.y149{bottom:798.336000pt;}
.y127{bottom:801.861333pt;}
.y6f{bottom:802.938667pt;}
.y4c{bottom:803.461333pt;}
.y17c{bottom:803.610667pt;}
.y27{bottom:804.000000pt;}
.yea{bottom:804.538667pt;}
.y9b{bottom:804.800000pt;}
.ybe{bottom:805.061333pt;}
.y1d5{bottom:810.666667pt;}
.y17b{bottom:817.072000pt;}
.y2{bottom:822.800000pt;}
.y126{bottom:822.933333pt;}
.y6e{bottom:823.466667pt;}
.y4b{bottom:823.733333pt;}
.y26{bottom:824.000000pt;}
.ye9{bottom:824.266667pt;}
.y9a{bottom:824.400000pt;}
.ybd{bottom:824.533333pt;}
.y1d4{bottom:827.333333pt;}
.y17a{bottom:830.533333pt;}
.h9{height:26.945443pt;}
.h2{height:33.769531pt;}
.h11{height:34.730667pt;}
.h7{height:35.546875pt;}
.ha{height:36.229167pt;}
.hd{height:40.757812pt;}
.hc{height:42.656250pt;}
.h6{height:43.022135pt;}
.h4{height:44.960000pt;}
.h1{height:45.286458pt;}
.h5{height:54.343750pt;}
.h10{height:54.493083pt;}
.h8{height:54.599750pt;}
.he{height:58.819292pt;}
.hf{height:59.053958pt;}
.hb{height:59.160625pt;}
.h3{height:90.572917pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.x6{left:73.228400pt;}
.x2{left:86.456667pt;}
.x4{left:100.000000pt;}
.x5{left:113.228400pt;}
.x8{left:160.466667pt;}
.x7{left:309.461333pt;}
.x3{left:556.250000pt;}
}




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