
    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_c8f83402c33f8d529266085a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.082000;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_a26b7c7b719eea102e90b2ec.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_fb1363ad5d29e5f7425ccf88.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.100000;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_26b155b03b42706a97434e97.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.100000;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_1036f42f5bcc08f3680f042a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.100000;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_aec72c4feb72fc803126393f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088000;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_afa7d321b8c95da7c30bdd93.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.090000;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_8af8e03d025b0693af15327b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.100000;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_f01b105fe0b0ea2f8355debc.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.100000;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_d0a57fdbadd8216014a70fad.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.088000;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_63a6f799ec8f97b7cf839423.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ecb99440637c37abe05cf378.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.916000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.981600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.224600px;}
.ls1{letter-spacing:-8.400000px;}
.lsa{letter-spacing:-5.871000px;}
.lsc{letter-spacing:-5.700000px;}
.lsf{letter-spacing:-5.586000px;}
.ls11{letter-spacing:-5.472000px;}
.ls9{letter-spacing:-5.301000px;}
.ls13{letter-spacing:-4.560000px;}
.ls4{letter-spacing:-4.446000px;}
.ls10{letter-spacing:-3.933000px;}
.ls16{letter-spacing:-3.864000px;}
.ls15{letter-spacing:-1.140000px;}
.ls2{letter-spacing:-0.840000px;}
.lsd{letter-spacing:-0.588000px;}
.lsb{letter-spacing:-0.570000px;}
.ls5{letter-spacing:-0.399000px;}
.ls14{letter-spacing:-0.294000px;}
.ls6{letter-spacing:-0.285000px;}
.lse{letter-spacing:-0.252000px;}
.ls12{letter-spacing:-0.171000px;}
.ls3{letter-spacing:-0.114000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000105px;}
.ls7{letter-spacing:0.126000px;}
.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;}
}
.ws1{word-spacing:-15.219000px;}
.ws16{word-spacing:-14.934000px;}
.ws37{word-spacing:-14.820000px;}
.ws61{word-spacing:-14.421000px;}
.ws8f{word-spacing:-13.200000px;}
.ws0{word-spacing:-11.214000px;}
.ws2{word-spacing:-10.374000px;}
.ws31{word-spacing:-8.872677px;}
.ws15{word-spacing:-8.400000px;}
.ws3d{word-spacing:-8.148000px;}
.ws66{word-spacing:-8.106000px;}
.ws35{word-spacing:-7.812000px;}
.ws85{word-spacing:-4.536000px;}
.ws57{word-spacing:-4.218000px;}
.ws81{word-spacing:-2.964000px;}
.ws48{word-spacing:-2.850000px;}
.ws24{word-spacing:-2.793000px;}
.ws30{word-spacing:-2.736000px;}
.ws43{word-spacing:-2.679000px;}
.ws46{word-spacing:-2.622000px;}
.ws2b{word-spacing:-2.508000px;}
.ws20{word-spacing:-2.451000px;}
.ws4f{word-spacing:-2.394000px;}
.ws73{word-spacing:-2.223000px;}
.ws70{word-spacing:-2.166000px;}
.ws6a{word-spacing:-2.052000px;}
.ws82{word-spacing:-1.995000px;}
.ws27{word-spacing:-1.881000px;}
.ws3b{word-spacing:-1.767000px;}
.ws3a{word-spacing:-1.596000px;}
.ws36{word-spacing:-1.539000px;}
.ws56{word-spacing:-1.197000px;}
.ws44{word-spacing:-1.140000px;}
.ws2d{word-spacing:-1.083000px;}
.ws67{word-spacing:-1.026000px;}
.ws4{word-spacing:-0.969000px;}
.ws7c{word-spacing:-0.912000px;}
.ws53{word-spacing:-0.855000px;}
.ws87{word-spacing:-0.798000px;}
.ws3f{word-spacing:-0.456000px;}
.ws26{word-spacing:-0.171000px;}
.ws1c{word-spacing:-0.126000px;}
.ws3c{word-spacing:-0.114000px;}
.ws6f{word-spacing:-0.057000px;}
.ws23{word-spacing:-0.042000px;}
.ws3{word-spacing:0.000000px;}
.ws9{word-spacing:0.114000px;}
.ws5c{word-spacing:0.171000px;}
.ws1a{word-spacing:0.285000px;}
.ws78{word-spacing:0.342000px;}
.ws10{word-spacing:0.399000px;}
.ws32{word-spacing:0.456000px;}
.ws7e{word-spacing:0.513000px;}
.ws2e{word-spacing:0.570000px;}
.ws40{word-spacing:0.627000px;}
.ws7{word-spacing:0.684000px;}
.ws6{word-spacing:0.840000px;}
.ws1e{word-spacing:0.912000px;}
.ws1d{word-spacing:1.026000px;}
.ws1f{word-spacing:1.083000px;}
.ws6b{word-spacing:1.140000px;}
.ws7a{word-spacing:1.425000px;}
.ws14{word-spacing:1.482000px;}
.ws74{word-spacing:1.539000px;}
.ws75{word-spacing:1.596000px;}
.ws2c{word-spacing:1.767000px;}
.ws8e{word-spacing:1.824000px;}
.ws88{word-spacing:1.881000px;}
.wsf{word-spacing:1.938000px;}
.ws50{word-spacing:2.052000px;}
.wse{word-spacing:2.109000px;}
.ws17{word-spacing:2.223000px;}
.ws6e{word-spacing:2.280000px;}
.ws58{word-spacing:2.337000px;}
.ws89{word-spacing:2.394000px;}
.ws12{word-spacing:2.451000px;}
.ws8b{word-spacing:2.508000px;}
.ws11{word-spacing:2.565000px;}
.ws64{word-spacing:2.622000px;}
.ws5d{word-spacing:2.679000px;}
.ws54{word-spacing:2.736000px;}
.ws25{word-spacing:2.793000px;}
.ws7f{word-spacing:2.850000px;}
.ws4a{word-spacing:2.907000px;}
.ws79{word-spacing:2.964000px;}
.ws38{word-spacing:3.021000px;}
.ws71{word-spacing:3.135000px;}
.ws5f{word-spacing:3.192000px;}
.ws83{word-spacing:3.249000px;}
.ws8a{word-spacing:3.306000px;}
.ws5{word-spacing:3.420000px;}
.ws4b{word-spacing:3.591000px;}
.ws52{word-spacing:3.648000px;}
.ws4d{word-spacing:3.705000px;}
.ws19{word-spacing:3.819000px;}
.ws7d{word-spacing:3.876000px;}
.ws18{word-spacing:3.933000px;}
.ws22{word-spacing:3.990000px;}
.ws13{word-spacing:4.104000px;}
.ws5e{word-spacing:4.161000px;}
.ws4e{word-spacing:4.218000px;}
.ws41{word-spacing:4.332000px;}
.wsd{word-spacing:4.446000px;}
.ws51{word-spacing:4.560000px;}
.ws65{word-spacing:4.617000px;}
.ws7b{word-spacing:4.674000px;}
.ws55{word-spacing:4.731000px;}
.ws77{word-spacing:4.845000px;}
.ws34{word-spacing:4.902000px;}
.ws72{word-spacing:4.959000px;}
.ws4c{word-spacing:5.016000px;}
.ws42{word-spacing:5.073000px;}
.ws80{word-spacing:5.187000px;}
.ws90{word-spacing:5.244000px;}
.ws8d{word-spacing:5.415000px;}
.ws49{word-spacing:5.529000px;}
.ws1b{word-spacing:5.757000px;}
.ws84{word-spacing:5.871000px;}
.ws21{word-spacing:6.099000px;}
.ws60{word-spacing:6.213000px;}
.ws45{word-spacing:6.270000px;}
.ws63{word-spacing:6.327000px;}
.ws5b{word-spacing:6.555000px;}
.ws62{word-spacing:6.954000px;}
.ws5a{word-spacing:7.011000px;}
.ws2f{word-spacing:7.068000px;}
.ws8c{word-spacing:7.296000px;}
.ws76{word-spacing:7.524000px;}
.ws69{word-spacing:7.581000px;}
.ws8{word-spacing:7.809000px;}
.ws86{word-spacing:8.379000px;}
.ws2a{word-spacing:8.550000px;}
.ws59{word-spacing:8.664000px;}
.ws33{word-spacing:8.778000px;}
.ws47{word-spacing:8.949000px;}
.ws39{word-spacing:9.006000px;}
.ws28{word-spacing:9.291000px;}
.ws29{word-spacing:9.861000px;}
.ws68{word-spacing:9.975000px;}
.ws6c{word-spacing:10.203000px;}
.wsa{word-spacing:11.229000px;}
.wsb{word-spacing:11.343000px;}
.ws91{word-spacing:13.281000px;}
.ws6d{word-spacing:13.509000px;}
.wsc{word-spacing:16.701000px;}
.ws3e{word-spacing:19.038000px;}
._2{margin-left:-14.592000px;}
._0{margin-left:-11.412000px;}
._14{margin-left:-8.551500px;}
._f{margin-left:-7.175100px;}
._12{margin-left:-6.156000px;}
._6{margin-left:-5.138100px;}
._5{margin-left:-4.130400px;}
._7{margin-left:-3.129300px;}
._1{margin-left:-1.560000px;}
._9{width:1.079100px;}
._8{width:2.485200px;}
._4{width:3.762000px;}
._3{width:5.151000px;}
._e{width:6.239400px;}
._a{width:7.803300px;}
._11{width:8.934000px;}
._10{width:10.032000px;}
._b{width:11.227200px;}
._d{width:12.465900px;}
._15{width:14.016300px;}
._c{width:16.689600px;}
._13{width:18.051900px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:33.231000px;}
.fs1{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs3{font-size:57.000000px;}
.fs6{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:48.271800px;}
.yc0{bottom:93.543150px;}
.yd9{bottom:93.543300px;}
.y8c{bottom:94.622250px;}
.y1ca{bottom:95.919000px;}
.y172{bottom:95.919150px;}
.y1f7{bottom:97.728900px;}
.y3e{bottom:99.909000px;}
.y199{bottom:99.909150px;}
.y217{bottom:101.205750px;}
.y21e{bottom:101.518650px;}
.y1a0{bottom:103.899000px;}
.ya3{bottom:103.899150px;}
.y1c4{bottom:105.096000px;}
.ybf{bottom:106.143150px;}
.yd8{bottom:106.143300px;}
.y1ad{bottom:107.005650px;}
.y1fb{bottom:107.889000px;}
.y63{bottom:107.889150px;}
.y10b{bottom:109.185900px;}
.y1a{bottom:109.880100px;}
.y8b{bottom:111.879000px;}
.y178{bottom:113.175750px;}
.y171{bottom:113.175900px;}
.y1f6{bottom:114.985650px;}
.y3d{bottom:117.165750px;}
.y198{bottom:117.165900px;}
.y216{bottom:118.462500px;}
.ybe{bottom:118.743150px;}
.y133{bottom:118.743300px;}
.y21d{bottom:118.775400px;}
.y19f{bottom:121.155750px;}
.ya2{bottom:121.155900px;}
.y19{bottom:121.881600px;}
.y1c3{bottom:122.352750px;}
.y1ac{bottom:123.806400px;}
.y1fa{bottom:125.145750px;}
.y62{bottom:125.145900px;}
.yf0{bottom:126.442500px;}
.y10a{bottom:126.442650px;}
.y8a{bottom:129.135750px;}
.y1d4{bottom:130.005000px;}
.y177{bottom:130.432500px;}
.ybd{bottom:131.343150px;}
.y132{bottom:131.343300px;}
.y1f5{bottom:132.242400px;}
.y18{bottom:133.883100px;}
.y3c{bottom:134.422500px;}
.y197{bottom:134.422650px;}
.y166{bottom:134.572200px;}
.y215{bottom:135.719250px;}
.y21c{bottom:136.032150px;}
.y19e{bottom:138.412500px;}
.ya1{bottom:138.412650px;}
.y1ab{bottom:140.607150px;}
.y1f9{bottom:142.402500px;}
.y61{bottom:142.402650px;}
.y11d{bottom:142.490700px;}
.y109{bottom:143.699400px;}
.yd7{bottom:143.733150px;}
.ybc{bottom:143.943150px;}
.y150{bottom:143.943300px;}
.y17{bottom:145.884600px;}
.y89{bottom:146.392500px;}
.y176{bottom:147.689250px;}
.y1d3{bottom:147.703500px;}
.y1f4{bottom:149.499150px;}
.y170{bottom:151.679400px;}
.y165{bottom:151.828950px;}
.y214{bottom:152.976000px;}
.y21b{bottom:153.288900px;}
.y70{bottom:155.669250px;}
.ya0{bottom:155.669400px;}
.ybb{bottom:156.543150px;}
.y1aa{bottom:157.407900px;}
.y16{bottom:157.886100px;}
.y1f8{bottom:159.659250px;}
.y60{bottom:159.659400px;}
.y11c{bottom:159.747450px;}
.y1c2{bottom:160.856250px;}
.y108{bottom:160.956150px;}
.yd6{bottom:160.989900px;}
.y88{bottom:163.649250px;}
.y131{bottom:163.737150px;}
.yef{bottom:164.946000px;}
.y1d2{bottom:165.402000px;}
.y195{bottom:166.256250px;}
.y1f3{bottom:166.755900px;}
.y16f{bottom:168.936150px;}
.y164{bottom:169.085700px;}
.yba{bottom:169.143150px;}
.y213{bottom:170.232750px;}
.y21a{bottom:170.545650px;}
.y3b{bottom:172.926000px;}
.y9f{bottom:172.926150px;}
.y5f{bottom:176.916150px;}
.y11b{bottom:177.004200px;}
.y14f{bottom:177.210900px;}
.y1c1{bottom:177.657000px;}
.y107{bottom:178.212900px;}
.y87{bottom:180.906000px;}
.y130{bottom:180.993900px;}
.yb9{bottom:181.743150px;}
.yee{bottom:182.202750px;}
.y15{bottom:182.645100px;}
.y1d1{bottom:183.100500px;}
.y194{bottom:183.513000px;}
.y1f2{bottom:184.012650px;}
.y163{bottom:186.192750px;}
.y196{bottom:186.192900px;}
.y212{bottom:187.489500px;}
.y219{bottom:187.802400px;}
.y3a{bottom:190.182750px;}
.y9e{bottom:190.182900px;}
.y5e{bottom:194.172900px;}
.y11a{bottom:194.260950px;}
.yb8{bottom:194.343150px;}
.y1c0{bottom:194.457750px;}
.y14e{bottom:194.467650px;}
.y14{bottom:194.646600px;}
.y106{bottom:195.469650px;}
.y86{bottom:198.162750px;}
.y12f{bottom:198.250650px;}
.yed{bottom:199.459500px;}
.yd5{bottom:199.493400px;}
.y1d0{bottom:200.799000px;}
.y1f1{bottom:201.269400px;}
.y162{bottom:203.449500px;}
.y211{bottom:204.746250px;}
.y13{bottom:206.648100px;}
.yb7{bottom:206.943150px;}
.y39{bottom:207.439500px;}
.y9d{bottom:207.439650px;}
.y1bf{bottom:211.258500px;}
.y19d{bottom:211.429500px;}
.y5d{bottom:211.429650px;}
.y119{bottom:211.517700px;}
.y105{bottom:212.726400px;}
.y85{bottom:215.419500px;}
.y12e{bottom:215.507400px;}
.yec{bottom:216.716250px;}
.yd4{bottom:216.750150px;}
.y1cf{bottom:218.497500px;}
.y1f0{bottom:218.526150px;}
.yb6{bottom:219.543150px;}
.y161{bottom:220.706250px;}
.y210{bottom:222.003000px;}
.y193{bottom:222.016500px;}
.y38{bottom:224.696250px;}
.y9c{bottom:224.696400px;}
.y218{bottom:226.312350px;}
.y1be{bottom:228.059250px;}
.y19c{bottom:228.686250px;}
.y5c{bottom:228.686400px;}
.y118{bottom:228.774450px;}
.y12{bottom:231.407100px;}
.yb5{bottom:232.143150px;}
.y14d{bottom:232.529400px;}
.y84{bottom:232.676250px;}
.y74{bottom:232.676400px;}
.y12d{bottom:232.764150px;}
.yeb{bottom:233.973000px;}
.yd3{bottom:234.006900px;}
.y1ef{bottom:235.782900px;}
.y1ce{bottom:236.196000px;}
.y160{bottom:237.963000px;}
.y20f{bottom:239.259750px;}
.y37{bottom:241.953000px;}
.y9b{bottom:241.953150px;}
.y11{bottom:243.408600px;}
.yb4{bottom:244.743150px;}
.y1bd{bottom:244.860000px;}
.y19b{bottom:245.943000px;}
.y5b{bottom:245.943150px;}
.y117{bottom:246.031200px;}
.y83{bottom:249.933000px;}
.y73{bottom:249.933150px;}
.y12c{bottom:250.020900px;}
.yea{bottom:251.229750px;}
.y104{bottom:251.229900px;}
.yd2{bottom:251.263650px;}
.y1ee{bottom:253.039650px;}
.y1cd{bottom:253.894500px;}
.y15f{bottom:255.219750px;}
.y10{bottom:255.410100px;}
.y36{bottom:259.209750px;}
.y9a{bottom:259.209900px;}
.y192{bottom:260.520000px;}
.y1bc{bottom:261.660750px;}
.y19a{bottom:263.199750px;}
.y5a{bottom:263.199900px;}
.y116{bottom:263.287950px;}
.y82{bottom:267.189750px;}
.y72{bottom:267.189900px;}
.y12b{bottom:267.277650px;}
.ye9{bottom:268.486500px;}
.y103{bottom:268.486650px;}
.y1ed{bottom:270.296400px;}
.y14c{bottom:270.591150px;}
.y1cc{bottom:271.593000px;}
.y15e{bottom:272.476500px;}
.y35{bottom:276.466500px;}
.y99{bottom:276.466650px;}
.y20e{bottom:277.763250px;}
.y191{bottom:277.776750px;}
.y1bb{bottom:278.461500px;}
.yf{bottom:280.169100px;}
.y180{bottom:280.456650px;}
.yb3{bottom:280.517250px;}
.y115{bottom:280.544700px;}
.y81{bottom:284.446500px;}
.y71{bottom:284.446650px;}
.y12a{bottom:284.534400px;}
.ye8{bottom:285.743250px;}
.y1a9{bottom:285.743400px;}
.y14b{bottom:287.391900px;}
.y1ec{bottom:287.553150px;}
.y1cb{bottom:289.291500px;}
.y15d{bottom:289.733250px;}
.yd1{bottom:289.767150px;}
.ye{bottom:292.170600px;}
.y34{bottom:293.723250px;}
.y98{bottom:293.723400px;}
.y190{bottom:295.033500px;}
.y17f{bottom:297.713400px;}
.yb2{bottom:297.774000px;}
.y114{bottom:297.801450px;}
.y80{bottom:301.703250px;}
.y59{bottom:301.703400px;}
.y129{bottom:301.791150px;}
.ye7{bottom:303.000000px;}
.y1a8{bottom:303.000150px;}
.yd{bottom:304.172100px;}
.y14a{bottom:304.192650px;}
.y15c{bottom:306.990000px;}
.y102{bottom:306.990150px;}
.y33{bottom:310.980000px;}
.y97{bottom:310.980150px;}
.y18f{bottom:312.290250px;}
.y17e{bottom:314.970150px;}
.yb1{bottom:315.030750px;}
.y113{bottom:315.058200px;}
.yc{bottom:316.173600px;}
.y20d{bottom:316.266750px;}
.y1ba{bottom:316.523250px;}
.y7f{bottom:318.960000px;}
.y58{bottom:318.960150px;}
.y128{bottom:319.047900px;}
.ye6{bottom:320.256750px;}
.y1a7{bottom:320.256900px;}
.y149{bottom:320.993400px;}
.y15b{bottom:324.246750px;}
.y101{bottom:324.246900px;}
.y1eb{bottom:326.056650px;}
.yb{bottom:328.175100px;}
.y32{bottom:328.236750px;}
.y96{bottom:328.236900px;}
.yd0{bottom:328.270650px;}
.y155{bottom:332.226900px;}
.yb0{bottom:332.287500px;}
.y112{bottom:332.314950px;}
.y1b9{bottom:333.324000px;}
.y20c{bottom:333.523500px;}
.y7e{bottom:336.216750px;}
.y57{bottom:336.216900px;}
.y127{bottom:336.304650px;}
.ye5{bottom:337.513500px;}
.y1a6{bottom:337.513650px;}
.y148{bottom:337.794150px;}
.y15a{bottom:341.503500px;}
.y100{bottom:341.503650px;}
.y1ea{bottom:343.755150px;}
.y31{bottom:345.493500px;}
.y95{bottom:345.493650px;}
.y1ff{bottom:349.483500px;}
.y154{bottom:349.483650px;}
.yaf{bottom:349.544250px;}
.y111{bottom:349.571700px;}
.y20b{bottom:350.780250px;}
.y18e{bottom:350.793750px;}
.y7d{bottom:353.473500px;}
.y56{bottom:353.473650px;}
.y126{bottom:353.561400px;}
.y147{bottom:354.594900px;}
.ye4{bottom:354.770250px;}
.y1a5{bottom:354.770400px;}
.y159{bottom:358.760250px;}
.yff{bottom:358.760400px;}
.y1e9{bottom:361.453650px;}
.y30{bottom:362.750250px;}
.y94{bottom:362.750400px;}
.y1fe{bottom:366.740250px;}
.y153{bottom:366.740400px;}
.ycf{bottom:366.774150px;}
.y110{bottom:366.828450px;}
.y20a{bottom:368.037000px;}
.y18d{bottom:368.050500px;}
.y7c{bottom:370.730250px;}
.y55{bottom:370.730400px;}
.y125{bottom:370.818150px;}
.y1b8{bottom:371.385750px;}
.y146{bottom:371.395650px;}
.ye3{bottom:372.027000px;}
.y158{bottom:376.017000px;}
.yfe{bottom:376.017150px;}
.y1e8{bottom:379.152150px;}
.y2f{bottom:380.007000px;}
.y16e{bottom:380.007150px;}
.ya{bottom:380.701650px;}
.y1fd{bottom:383.997000px;}
.y152{bottom:383.997150px;}
.yce{bottom:384.030900px;}
.y10f{bottom:384.085200px;}
.y209{bottom:385.293750px;}
.y18c{bottom:385.307250px;}
.y7b{bottom:387.987000px;}
.y54{bottom:387.987150px;}
.yae{bottom:388.047750px;}
.y124{bottom:388.074900px;}
.y1b7{bottom:388.186500px;}
.y145{bottom:388.196400px;}
.ye2{bottom:389.283750px;}
.y157{bottom:393.273750px;}
.yfd{bottom:393.273900px;}
.y1e7{bottom:396.850650px;}
.y6f{bottom:397.263750px;}
.y16d{bottom:397.263900px;}
.y9{bottom:397.958400px;}
.y1fc{bottom:401.253750px;}
.y93{bottom:401.253900px;}
.ycd{bottom:401.287650px;}
.y10e{bottom:401.341950px;}
.y208{bottom:402.550500px;}
.y1b6{bottom:404.987250px;}
.y144{bottom:404.997150px;}
.y7a{bottom:405.243750px;}
.y53{bottom:405.243900px;}
.yad{bottom:405.304500px;}
.y123{bottom:405.331650px;}
.ye1{bottom:406.540500px;}
.y175{bottom:410.530500px;}
.yfc{bottom:410.530650px;}
.y1c9{bottom:414.520500px;}
.y16c{bottom:414.520650px;}
.y1e6{bottom:414.549150px;}
.y8{bottom:415.215150px;}
.y2e{bottom:418.510500px;}
.y92{bottom:418.510650px;}
.ycc{bottom:418.544400px;}
.y10d{bottom:418.598700px;}
.y1b5{bottom:421.788000px;}
.y143{bottom:421.797900px;}
.y79{bottom:422.500500px;}
.y52{bottom:422.500650px;}
.yac{bottom:422.561250px;}
.y122{bottom:422.588400px;}
.ye0{bottom:423.797250px;}
.y18b{bottom:423.810750px;}
.yfb{bottom:427.787400px;}
.y156{bottom:431.777250px;}
.y16b{bottom:431.777400px;}
.y1e5{bottom:432.247650px;}
.y7{bottom:432.471900px;}
.y2d{bottom:435.767250px;}
.y91{bottom:435.767400px;}
.ycb{bottom:435.801150px;}
.y10c{bottom:435.855450px;}
.y1b4{bottom:438.588750px;}
.y142{bottom:438.598650px;}
.y78{bottom:439.757250px;}
.y51{bottom:439.757400px;}
.yab{bottom:439.818000px;}
.y121{bottom:439.845150px;}
.ydf{bottom:441.054000px;}
.y18a{bottom:441.067500px;}
.yfa{bottom:445.044150px;}
.y174{bottom:449.034000px;}
.y16a{bottom:449.034150px;}
.y1e4{bottom:449.946150px;}
.y2c{bottom:453.024000px;}
.y90{bottom:453.024150px;}
.yca{bottom:453.057900px;}
.y1b3{bottom:455.389500px;}
.y141{bottom:455.399400px;}
.y77{bottom:457.014000px;}
.y50{bottom:457.014150px;}
.yaa{bottom:457.074750px;}
.y120{bottom:457.101900px;}
.yde{bottom:458.310750px;}
.y189{bottom:458.324250px;}
.yf9{bottom:462.300900px;}
.y173{bottom:466.290750px;}
.y169{bottom:466.290900px;}
.y1e3{bottom:467.644650px;}
.y2b{bottom:470.280750px;}
.y8f{bottom:470.280900px;}
.yc9{bottom:470.314650px;}
.y1b2{bottom:472.190250px;}
.y140{bottom:472.200150px;}
.y76{bottom:474.270750px;}
.y4f{bottom:474.270900px;}
.ya9{bottom:474.331500px;}
.y11f{bottom:474.358650px;}
.y207{bottom:479.557500px;}
.yf8{bottom:479.557650px;}
.y1c8{bottom:483.547500px;}
.y168{bottom:483.547650px;}
.y1e2{bottom:485.343150px;}
.y6e{bottom:487.537500px;}
.y8e{bottom:487.537650px;}
.yc8{bottom:487.571400px;}
.y1b1{bottom:488.991000px;}
.y13f{bottom:489.000900px;}
.y75{bottom:491.527500px;}
.y4e{bottom:491.527650px;}
.ya8{bottom:491.588250px;}
.y11e{bottom:491.615400px;}
.ydd{bottom:496.814250px;}
.yf7{bottom:496.814400px;}
.y188{bottom:496.827750px;}
.y1c7{bottom:500.804250px;}
.y1a4{bottom:500.804400px;}
.y6{bottom:502.741650px;}
.y1e1{bottom:503.041650px;}
.y6d{bottom:504.794250px;}
.y8d{bottom:504.794400px;}
.yc7{bottom:504.828150px;}
.y1b0{bottom:505.791750px;}
.y13e{bottom:505.801650px;}
.y2a{bottom:508.784250px;}
.y4d{bottom:508.784400px;}
.ya7{bottom:508.845000px;}
.ydc{bottom:514.071000px;}
.y1c6{bottom:518.061000px;}
.y1a3{bottom:518.061150px;}
.y1e0{bottom:520.740150px;}
.y6c{bottom:522.051000px;}
.y151{bottom:522.051150px;}
.yc6{bottom:522.084900px;}
.y13d{bottom:522.592500px;}
.y5{bottom:524.341650px;}
.y29{bottom:526.041000px;}
.y4c{bottom:526.041150px;}
.ya6{bottom:526.101750px;}
.y206{bottom:531.327750px;}
.y1c5{bottom:535.317750px;}
.yf6{bottom:535.317900px;}
.y187{bottom:535.331250px;}
.y1df{bottom:538.438650px;}
.y6b{bottom:539.307750px;}
.y167{bottom:539.307900px;}
.y13c{bottom:539.393250px;}
.y28{bottom:543.297750px;}
.y4b{bottom:543.297900px;}
.ya5{bottom:543.358500px;}
.y225{bottom:543.691350px;}
.y205{bottom:548.584500px;}
.ydb{bottom:552.574500px;}
.yf5{bottom:552.574650px;}
.y186{bottom:552.588000px;}
.y1de{bottom:556.137150px;}
.y13b{bottom:556.194000px;}
.y224{bottom:556.291350px;}
.y6a{bottom:556.564500px;}
.y17d{bottom:556.564650px;}
.y27{bottom:560.554500px;}
.y4a{bottom:560.554650px;}
.yc5{bottom:560.588400px;}
.ya4{bottom:560.615250px;}
.y204{bottom:565.841250px;}
.yda{bottom:569.831250px;}
.y1a2{bottom:569.831400px;}
.y185{bottom:569.844750px;}
.y13a{bottom:572.994750px;}
.y69{bottom:573.821250px;}
.y17c{bottom:573.821400px;}
.y1dd{bottom:573.835650px;}
.y26{bottom:577.811250px;}
.y49{bottom:577.811400px;}
.yc4{bottom:577.845150px;}
.y223{bottom:581.648850px;}
.y203{bottom:583.098000px;}
.y1a1{bottom:587.088150px;}
.y184{bottom:587.101500px;}
.y139{bottom:589.795500px;}
.y68{bottom:591.078000px;}
.yf4{bottom:591.078150px;}
.y1dc{bottom:591.534150px;}
.y222{bottom:594.248850px;}
.y25{bottom:595.068000px;}
.y48{bottom:595.068150px;}
.yc3{bottom:595.101900px;}
.y4{bottom:605.711400px;}
.y1af{bottom:606.596250px;}
.y67{bottom:608.334750px;}
.yf3{bottom:608.334900px;}
.y1db{bottom:609.232650px;}
.y24{bottom:612.324750px;}
.y47{bottom:612.324900px;}
.yc2{bottom:612.358650px;}
.y221{bottom:619.606350px;}
.y202{bottom:621.601500px;}
.y66{bottom:625.591500px;}
.yf2{bottom:625.591650px;}
.y183{bottom:625.605000px;}
.y1da{bottom:626.931150px;}
.y138{bottom:627.857250px;}
.y23{bottom:629.581500px;}
.y46{bottom:629.581650px;}
.yc1{bottom:629.615400px;}
.y220{bottom:632.206350px;}
.y3{bottom:635.705250px;}
.y201{bottom:638.858250px;}
.y65{bottom:642.848250px;}
.yf1{bottom:642.848400px;}
.y182{bottom:642.861750px;}
.y1d9{bottom:644.629650px;}
.y137{bottom:644.658000px;}
.y22{bottom:646.838250px;}
.y45{bottom:646.838400px;}
.y21f{bottom:657.562200px;}
.y64{bottom:660.105000px;}
.y17b{bottom:660.105150px;}
.y1ae{bottom:661.458750px;}
.y1d8{bottom:662.328150px;}
.y21{bottom:664.095000px;}
.y44{bottom:664.095150px;}
.y200{bottom:677.361750px;}
.y17a{bottom:677.361900px;}
.y2{bottom:678.095250px;}
.y1d7{bottom:680.026650px;}
.y20{bottom:681.351750px;}
.y43{bottom:681.351900px;}
.y181{bottom:681.365250px;}
.y136{bottom:682.719750px;}
.y179{bottom:694.618650px;}
.y1d6{bottom:697.725150px;}
.y1f{bottom:698.608500px;}
.y42{bottom:698.608650px;}
.y135{bottom:699.520500px;}
.y1{bottom:714.095250px;}
.y1d5{bottom:715.423650px;}
.y1e{bottom:715.865250px;}
.y41{bottom:715.865400px;}
.y134{bottom:716.321250px;}
.y1d{bottom:733.122000px;}
.y40{bottom:733.122150px;}
.y3f{bottom:785.763750px;}
.y1c{bottom:785.952750px;}
.h4{height:36.540000px;}
.h7{height:37.548000px;}
.h8{height:42.912000px;}
.h10{height:47.322000px;}
.h6{height:49.590000px;}
.hd{height:49.629600px;}
.hf{height:49.644000px;}
.ha{height:49.725000px;}
.h9{height:49.833000px;}
.hc{height:49.941000px;}
.hb{height:49.942800px;}
.he{height:50.188800px;}
.h5{height:51.048000px;}
.h3{height:85.080000px;}
.h2{height:105.960000px;}
.h0{height:850.393500px;}
.h1{height:850.500000px;}
.w1{width:552.750000px;}
.w0{width:552.756000px;}
.x0{left:0.000000px;}
.x4{left:63.779550px;}
.x1{left:85.039350px;}
.x2{left:90.621750px;}
.x3{left:295.371750px;}
.x6{left:342.337650px;}
.x5{left:473.898600px;}
.x9{left:474.927600px;}
.x8{left:476.187600px;}
.x7{left:477.888900px;}
@media print{
.v2{vertical-align:-16.872533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.088533pt;}
.ls1{letter-spacing:-7.466667pt;}
.lsa{letter-spacing:-5.218667pt;}
.lsc{letter-spacing:-5.066667pt;}
.lsf{letter-spacing:-4.965333pt;}
.ls11{letter-spacing:-4.864000pt;}
.ls9{letter-spacing:-4.712000pt;}
.ls13{letter-spacing:-4.053333pt;}
.ls4{letter-spacing:-3.952000pt;}
.ls10{letter-spacing:-3.496000pt;}
.ls16{letter-spacing:-3.434667pt;}
.ls15{letter-spacing:-1.013333pt;}
.ls2{letter-spacing:-0.746667pt;}
.lsd{letter-spacing:-0.522667pt;}
.lsb{letter-spacing:-0.506667pt;}
.ls5{letter-spacing:-0.354667pt;}
.ls14{letter-spacing:-0.261333pt;}
.ls6{letter-spacing:-0.253333pt;}
.lse{letter-spacing:-0.224000pt;}
.ls12{letter-spacing:-0.152000pt;}
.ls3{letter-spacing:-0.101333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000093pt;}
.ls7{letter-spacing:0.112000pt;}
.ws1{word-spacing:-13.528000pt;}
.ws16{word-spacing:-13.274667pt;}
.ws37{word-spacing:-13.173333pt;}
.ws61{word-spacing:-12.818667pt;}
.ws8f{word-spacing:-11.733333pt;}
.ws0{word-spacing:-9.968000pt;}
.ws2{word-spacing:-9.221333pt;}
.ws31{word-spacing:-7.886824pt;}
.ws15{word-spacing:-7.466667pt;}
.ws3d{word-spacing:-7.242667pt;}
.ws66{word-spacing:-7.205333pt;}
.ws35{word-spacing:-6.944000pt;}
.ws85{word-spacing:-4.032000pt;}
.ws57{word-spacing:-3.749333pt;}
.ws81{word-spacing:-2.634667pt;}
.ws48{word-spacing:-2.533333pt;}
.ws24{word-spacing:-2.482667pt;}
.ws30{word-spacing:-2.432000pt;}
.ws43{word-spacing:-2.381333pt;}
.ws46{word-spacing:-2.330667pt;}
.ws2b{word-spacing:-2.229333pt;}
.ws20{word-spacing:-2.178667pt;}
.ws4f{word-spacing:-2.128000pt;}
.ws73{word-spacing:-1.976000pt;}
.ws70{word-spacing:-1.925333pt;}
.ws6a{word-spacing:-1.824000pt;}
.ws82{word-spacing:-1.773333pt;}
.ws27{word-spacing:-1.672000pt;}
.ws3b{word-spacing:-1.570667pt;}
.ws3a{word-spacing:-1.418667pt;}
.ws36{word-spacing:-1.368000pt;}
.ws56{word-spacing:-1.064000pt;}
.ws44{word-spacing:-1.013333pt;}
.ws2d{word-spacing:-0.962667pt;}
.ws67{word-spacing:-0.912000pt;}
.ws4{word-spacing:-0.861333pt;}
.ws7c{word-spacing:-0.810667pt;}
.ws53{word-spacing:-0.760000pt;}
.ws87{word-spacing:-0.709333pt;}
.ws3f{word-spacing:-0.405333pt;}
.ws26{word-spacing:-0.152000pt;}
.ws1c{word-spacing:-0.112000pt;}
.ws3c{word-spacing:-0.101333pt;}
.ws6f{word-spacing:-0.050667pt;}
.ws23{word-spacing:-0.037333pt;}
.ws3{word-spacing:0.000000pt;}
.ws9{word-spacing:0.101333pt;}
.ws5c{word-spacing:0.152000pt;}
.ws1a{word-spacing:0.253333pt;}
.ws78{word-spacing:0.304000pt;}
.ws10{word-spacing:0.354667pt;}
.ws32{word-spacing:0.405333pt;}
.ws7e{word-spacing:0.456000pt;}
.ws2e{word-spacing:0.506667pt;}
.ws40{word-spacing:0.557333pt;}
.ws7{word-spacing:0.608000pt;}
.ws6{word-spacing:0.746667pt;}
.ws1e{word-spacing:0.810667pt;}
.ws1d{word-spacing:0.912000pt;}
.ws1f{word-spacing:0.962667pt;}
.ws6b{word-spacing:1.013333pt;}
.ws7a{word-spacing:1.266667pt;}
.ws14{word-spacing:1.317333pt;}
.ws74{word-spacing:1.368000pt;}
.ws75{word-spacing:1.418667pt;}
.ws2c{word-spacing:1.570667pt;}
.ws8e{word-spacing:1.621333pt;}
.ws88{word-spacing:1.672000pt;}
.wsf{word-spacing:1.722667pt;}
.ws50{word-spacing:1.824000pt;}
.wse{word-spacing:1.874667pt;}
.ws17{word-spacing:1.976000pt;}
.ws6e{word-spacing:2.026667pt;}
.ws58{word-spacing:2.077333pt;}
.ws89{word-spacing:2.128000pt;}
.ws12{word-spacing:2.178667pt;}
.ws8b{word-spacing:2.229333pt;}
.ws11{word-spacing:2.280000pt;}
.ws64{word-spacing:2.330667pt;}
.ws5d{word-spacing:2.381333pt;}
.ws54{word-spacing:2.432000pt;}
.ws25{word-spacing:2.482667pt;}
.ws7f{word-spacing:2.533333pt;}
.ws4a{word-spacing:2.584000pt;}
.ws79{word-spacing:2.634667pt;}
.ws38{word-spacing:2.685333pt;}
.ws71{word-spacing:2.786667pt;}
.ws5f{word-spacing:2.837333pt;}
.ws83{word-spacing:2.888000pt;}
.ws8a{word-spacing:2.938667pt;}
.ws5{word-spacing:3.040000pt;}
.ws4b{word-spacing:3.192000pt;}
.ws52{word-spacing:3.242667pt;}
.ws4d{word-spacing:3.293333pt;}
.ws19{word-spacing:3.394667pt;}
.ws7d{word-spacing:3.445333pt;}
.ws18{word-spacing:3.496000pt;}
.ws22{word-spacing:3.546667pt;}
.ws13{word-spacing:3.648000pt;}
.ws5e{word-spacing:3.698667pt;}
.ws4e{word-spacing:3.749333pt;}
.ws41{word-spacing:3.850667pt;}
.wsd{word-spacing:3.952000pt;}
.ws51{word-spacing:4.053333pt;}
.ws65{word-spacing:4.104000pt;}
.ws7b{word-spacing:4.154667pt;}
.ws55{word-spacing:4.205333pt;}
.ws77{word-spacing:4.306667pt;}
.ws34{word-spacing:4.357333pt;}
.ws72{word-spacing:4.408000pt;}
.ws4c{word-spacing:4.458667pt;}
.ws42{word-spacing:4.509333pt;}
.ws80{word-spacing:4.610667pt;}
.ws90{word-spacing:4.661333pt;}
.ws8d{word-spacing:4.813333pt;}
.ws49{word-spacing:4.914667pt;}
.ws1b{word-spacing:5.117333pt;}
.ws84{word-spacing:5.218667pt;}
.ws21{word-spacing:5.421333pt;}
.ws60{word-spacing:5.522667pt;}
.ws45{word-spacing:5.573333pt;}
.ws63{word-spacing:5.624000pt;}
.ws5b{word-spacing:5.826667pt;}
.ws62{word-spacing:6.181333pt;}
.ws5a{word-spacing:6.232000pt;}
.ws2f{word-spacing:6.282667pt;}
.ws8c{word-spacing:6.485333pt;}
.ws76{word-spacing:6.688000pt;}
.ws69{word-spacing:6.738667pt;}
.ws8{word-spacing:6.941333pt;}
.ws86{word-spacing:7.448000pt;}
.ws2a{word-spacing:7.600000pt;}
.ws59{word-spacing:7.701333pt;}
.ws33{word-spacing:7.802667pt;}
.ws47{word-spacing:7.954667pt;}
.ws39{word-spacing:8.005333pt;}
.ws28{word-spacing:8.258667pt;}
.ws29{word-spacing:8.765333pt;}
.ws68{word-spacing:8.866667pt;}
.ws6c{word-spacing:9.069333pt;}
.wsa{word-spacing:9.981333pt;}
.wsb{word-spacing:10.082667pt;}
.ws91{word-spacing:11.805333pt;}
.ws6d{word-spacing:12.008000pt;}
.wsc{word-spacing:14.845333pt;}
.ws3e{word-spacing:16.922667pt;}
._2{margin-left:-12.970667pt;}
._0{margin-left:-10.144000pt;}
._14{margin-left:-7.601333pt;}
._f{margin-left:-6.377867pt;}
._12{margin-left:-5.472000pt;}
._6{margin-left:-4.567200pt;}
._5{margin-left:-3.671467pt;}
._7{margin-left:-2.781600pt;}
._1{margin-left:-1.386667pt;}
._9{width:0.959200pt;}
._8{width:2.209067pt;}
._4{width:3.344000pt;}
._3{width:4.578667pt;}
._e{width:5.546133pt;}
._a{width:6.936267pt;}
._11{width:7.941333pt;}
._10{width:8.917333pt;}
._b{width:9.979733pt;}
._d{width:11.080800pt;}
._15{width:12.458933pt;}
._c{width:14.835200pt;}
._13{width:16.046133pt;}
.fs5{font-size:29.538667pt;}
.fs1{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs3{font-size:50.666667pt;}
.fs6{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:42.908267pt;}
.yc0{bottom:83.149467pt;}
.yd9{bottom:83.149600pt;}
.y8c{bottom:84.108667pt;}
.y1ca{bottom:85.261333pt;}
.y172{bottom:85.261467pt;}
.y1f7{bottom:86.870133pt;}
.y3e{bottom:88.808000pt;}
.y199{bottom:88.808133pt;}
.y217{bottom:89.960667pt;}
.y21e{bottom:90.238800pt;}
.y1a0{bottom:92.354667pt;}
.ya3{bottom:92.354800pt;}
.y1c4{bottom:93.418667pt;}
.ybf{bottom:94.349467pt;}
.yd8{bottom:94.349600pt;}
.y1ad{bottom:95.116133pt;}
.y1fb{bottom:95.901333pt;}
.y63{bottom:95.901467pt;}
.y10b{bottom:97.054133pt;}
.y1a{bottom:97.671200pt;}
.y8b{bottom:99.448000pt;}
.y178{bottom:100.600667pt;}
.y171{bottom:100.600800pt;}
.y1f6{bottom:102.209467pt;}
.y3d{bottom:104.147333pt;}
.y198{bottom:104.147467pt;}
.y216{bottom:105.300000pt;}
.ybe{bottom:105.549467pt;}
.y133{bottom:105.549600pt;}
.y21d{bottom:105.578133pt;}
.y19f{bottom:107.694000pt;}
.ya2{bottom:107.694133pt;}
.y19{bottom:108.339200pt;}
.y1c3{bottom:108.758000pt;}
.y1ac{bottom:110.050133pt;}
.y1fa{bottom:111.240667pt;}
.y62{bottom:111.240800pt;}
.yf0{bottom:112.393333pt;}
.y10a{bottom:112.393467pt;}
.y8a{bottom:114.787333pt;}
.y1d4{bottom:115.560000pt;}
.y177{bottom:115.940000pt;}
.ybd{bottom:116.749467pt;}
.y132{bottom:116.749600pt;}
.y1f5{bottom:117.548800pt;}
.y18{bottom:119.007200pt;}
.y3c{bottom:119.486667pt;}
.y197{bottom:119.486800pt;}
.y166{bottom:119.619733pt;}
.y215{bottom:120.639333pt;}
.y21c{bottom:120.917467pt;}
.y19e{bottom:123.033333pt;}
.ya1{bottom:123.033467pt;}
.y1ab{bottom:124.984133pt;}
.y1f9{bottom:126.580000pt;}
.y61{bottom:126.580133pt;}
.y11d{bottom:126.658400pt;}
.y109{bottom:127.732800pt;}
.yd7{bottom:127.762800pt;}
.ybc{bottom:127.949467pt;}
.y150{bottom:127.949600pt;}
.y17{bottom:129.675200pt;}
.y89{bottom:130.126667pt;}
.y176{bottom:131.279333pt;}
.y1d3{bottom:131.292000pt;}
.y1f4{bottom:132.888133pt;}
.y170{bottom:134.826133pt;}
.y165{bottom:134.959067pt;}
.y214{bottom:135.978667pt;}
.y21b{bottom:136.256800pt;}
.y70{bottom:138.372667pt;}
.ya0{bottom:138.372800pt;}
.ybb{bottom:139.149467pt;}
.y1aa{bottom:139.918133pt;}
.y16{bottom:140.343200pt;}
.y1f8{bottom:141.919333pt;}
.y60{bottom:141.919467pt;}
.y11c{bottom:141.997733pt;}
.y1c2{bottom:142.983333pt;}
.y108{bottom:143.072133pt;}
.yd6{bottom:143.102133pt;}
.y88{bottom:145.466000pt;}
.y131{bottom:145.544133pt;}
.yef{bottom:146.618667pt;}
.y1d2{bottom:147.024000pt;}
.y195{bottom:147.783333pt;}
.y1f3{bottom:148.227467pt;}
.y16f{bottom:150.165467pt;}
.y164{bottom:150.298400pt;}
.yba{bottom:150.349467pt;}
.y213{bottom:151.318000pt;}
.y21a{bottom:151.596133pt;}
.y3b{bottom:153.712000pt;}
.y9f{bottom:153.712133pt;}
.y5f{bottom:157.258800pt;}
.y11b{bottom:157.337067pt;}
.y14f{bottom:157.520800pt;}
.y1c1{bottom:157.917333pt;}
.y107{bottom:158.411467pt;}
.y87{bottom:160.805333pt;}
.y130{bottom:160.883467pt;}
.yb9{bottom:161.549467pt;}
.yee{bottom:161.958000pt;}
.y15{bottom:162.351200pt;}
.y1d1{bottom:162.756000pt;}
.y194{bottom:163.122667pt;}
.y1f2{bottom:163.566800pt;}
.y163{bottom:165.504667pt;}
.y196{bottom:165.504800pt;}
.y212{bottom:166.657333pt;}
.y219{bottom:166.935467pt;}
.y3a{bottom:169.051333pt;}
.y9e{bottom:169.051467pt;}
.y5e{bottom:172.598133pt;}
.y11a{bottom:172.676400pt;}
.yb8{bottom:172.749467pt;}
.y1c0{bottom:172.851333pt;}
.y14e{bottom:172.860133pt;}
.y14{bottom:173.019200pt;}
.y106{bottom:173.750800pt;}
.y86{bottom:176.144667pt;}
.y12f{bottom:176.222800pt;}
.yed{bottom:177.297333pt;}
.yd5{bottom:177.327467pt;}
.y1d0{bottom:178.488000pt;}
.y1f1{bottom:178.906133pt;}
.y162{bottom:180.844000pt;}
.y211{bottom:181.996667pt;}
.y13{bottom:183.687200pt;}
.yb7{bottom:183.949467pt;}
.y39{bottom:184.390667pt;}
.y9d{bottom:184.390800pt;}
.y1bf{bottom:187.785333pt;}
.y19d{bottom:187.937333pt;}
.y5d{bottom:187.937467pt;}
.y119{bottom:188.015733pt;}
.y105{bottom:189.090133pt;}
.y85{bottom:191.484000pt;}
.y12e{bottom:191.562133pt;}
.yec{bottom:192.636667pt;}
.yd4{bottom:192.666800pt;}
.y1cf{bottom:194.220000pt;}
.y1f0{bottom:194.245467pt;}
.yb6{bottom:195.149467pt;}
.y161{bottom:196.183333pt;}
.y210{bottom:197.336000pt;}
.y193{bottom:197.348000pt;}
.y38{bottom:199.730000pt;}
.y9c{bottom:199.730133pt;}
.y218{bottom:201.166533pt;}
.y1be{bottom:202.719333pt;}
.y19c{bottom:203.276667pt;}
.y5c{bottom:203.276800pt;}
.y118{bottom:203.355067pt;}
.y12{bottom:205.695200pt;}
.yb5{bottom:206.349467pt;}
.y14d{bottom:206.692800pt;}
.y84{bottom:206.823333pt;}
.y74{bottom:206.823467pt;}
.y12d{bottom:206.901467pt;}
.yeb{bottom:207.976000pt;}
.yd3{bottom:208.006133pt;}
.y1ef{bottom:209.584800pt;}
.y1ce{bottom:209.952000pt;}
.y160{bottom:211.522667pt;}
.y20f{bottom:212.675333pt;}
.y37{bottom:215.069333pt;}
.y9b{bottom:215.069467pt;}
.y11{bottom:216.363200pt;}
.yb4{bottom:217.549467pt;}
.y1bd{bottom:217.653333pt;}
.y19b{bottom:218.616000pt;}
.y5b{bottom:218.616133pt;}
.y117{bottom:218.694400pt;}
.y83{bottom:222.162667pt;}
.y73{bottom:222.162800pt;}
.y12c{bottom:222.240800pt;}
.yea{bottom:223.315333pt;}
.y104{bottom:223.315467pt;}
.yd2{bottom:223.345467pt;}
.y1ee{bottom:224.924133pt;}
.y1cd{bottom:225.684000pt;}
.y15f{bottom:226.862000pt;}
.y10{bottom:227.031200pt;}
.y36{bottom:230.408667pt;}
.y9a{bottom:230.408800pt;}
.y192{bottom:231.573333pt;}
.y1bc{bottom:232.587333pt;}
.y19a{bottom:233.955333pt;}
.y5a{bottom:233.955467pt;}
.y116{bottom:234.033733pt;}
.y82{bottom:237.502000pt;}
.y72{bottom:237.502133pt;}
.y12b{bottom:237.580133pt;}
.ye9{bottom:238.654667pt;}
.y103{bottom:238.654800pt;}
.y1ed{bottom:240.263467pt;}
.y14c{bottom:240.525467pt;}
.y1cc{bottom:241.416000pt;}
.y15e{bottom:242.201333pt;}
.y35{bottom:245.748000pt;}
.y99{bottom:245.748133pt;}
.y20e{bottom:246.900667pt;}
.y191{bottom:246.912667pt;}
.y1bb{bottom:247.521333pt;}
.yf{bottom:249.039200pt;}
.y180{bottom:249.294800pt;}
.yb3{bottom:249.348667pt;}
.y115{bottom:249.373067pt;}
.y81{bottom:252.841333pt;}
.y71{bottom:252.841467pt;}
.y12a{bottom:252.919467pt;}
.ye8{bottom:253.994000pt;}
.y1a9{bottom:253.994133pt;}
.y14b{bottom:255.459467pt;}
.y1ec{bottom:255.602800pt;}
.y1cb{bottom:257.148000pt;}
.y15d{bottom:257.540667pt;}
.yd1{bottom:257.570800pt;}
.ye{bottom:259.707200pt;}
.y34{bottom:261.087333pt;}
.y98{bottom:261.087467pt;}
.y190{bottom:262.252000pt;}
.y17f{bottom:264.634133pt;}
.yb2{bottom:264.688000pt;}
.y114{bottom:264.712400pt;}
.y80{bottom:268.180667pt;}
.y59{bottom:268.180800pt;}
.y129{bottom:268.258800pt;}
.ye7{bottom:269.333333pt;}
.y1a8{bottom:269.333467pt;}
.yd{bottom:270.375200pt;}
.y14a{bottom:270.393467pt;}
.y15c{bottom:272.880000pt;}
.y102{bottom:272.880133pt;}
.y33{bottom:276.426667pt;}
.y97{bottom:276.426800pt;}
.y18f{bottom:277.591333pt;}
.y17e{bottom:279.973467pt;}
.yb1{bottom:280.027333pt;}
.y113{bottom:280.051733pt;}
.yc{bottom:281.043200pt;}
.y20d{bottom:281.126000pt;}
.y1ba{bottom:281.354000pt;}
.y7f{bottom:283.520000pt;}
.y58{bottom:283.520133pt;}
.y128{bottom:283.598133pt;}
.ye6{bottom:284.672667pt;}
.y1a7{bottom:284.672800pt;}
.y149{bottom:285.327467pt;}
.y15b{bottom:288.219333pt;}
.y101{bottom:288.219467pt;}
.y1eb{bottom:289.828133pt;}
.yb{bottom:291.711200pt;}
.y32{bottom:291.766000pt;}
.y96{bottom:291.766133pt;}
.yd0{bottom:291.796133pt;}
.y155{bottom:295.312800pt;}
.yb0{bottom:295.366667pt;}
.y112{bottom:295.391067pt;}
.y1b9{bottom:296.288000pt;}
.y20c{bottom:296.465333pt;}
.y7e{bottom:298.859333pt;}
.y57{bottom:298.859467pt;}
.y127{bottom:298.937467pt;}
.ye5{bottom:300.012000pt;}
.y1a6{bottom:300.012133pt;}
.y148{bottom:300.261467pt;}
.y15a{bottom:303.558667pt;}
.y100{bottom:303.558800pt;}
.y1ea{bottom:305.560133pt;}
.y31{bottom:307.105333pt;}
.y95{bottom:307.105467pt;}
.y1ff{bottom:310.652000pt;}
.y154{bottom:310.652133pt;}
.yaf{bottom:310.706000pt;}
.y111{bottom:310.730400pt;}
.y20b{bottom:311.804667pt;}
.y18e{bottom:311.816667pt;}
.y7d{bottom:314.198667pt;}
.y56{bottom:314.198800pt;}
.y126{bottom:314.276800pt;}
.y147{bottom:315.195467pt;}
.ye4{bottom:315.351333pt;}
.y1a5{bottom:315.351467pt;}
.y159{bottom:318.898000pt;}
.yff{bottom:318.898133pt;}
.y1e9{bottom:321.292133pt;}
.y30{bottom:322.444667pt;}
.y94{bottom:322.444800pt;}
.y1fe{bottom:325.991333pt;}
.y153{bottom:325.991467pt;}
.ycf{bottom:326.021467pt;}
.y110{bottom:326.069733pt;}
.y20a{bottom:327.144000pt;}
.y18d{bottom:327.156000pt;}
.y7c{bottom:329.538000pt;}
.y55{bottom:329.538133pt;}
.y125{bottom:329.616133pt;}
.y1b8{bottom:330.120667pt;}
.y146{bottom:330.129467pt;}
.ye3{bottom:330.690667pt;}
.y158{bottom:334.237333pt;}
.yfe{bottom:334.237467pt;}
.y1e8{bottom:337.024133pt;}
.y2f{bottom:337.784000pt;}
.y16e{bottom:337.784133pt;}
.ya{bottom:338.401467pt;}
.y1fd{bottom:341.330667pt;}
.y152{bottom:341.330800pt;}
.yce{bottom:341.360800pt;}
.y10f{bottom:341.409067pt;}
.y209{bottom:342.483333pt;}
.y18c{bottom:342.495333pt;}
.y7b{bottom:344.877333pt;}
.y54{bottom:344.877467pt;}
.yae{bottom:344.931333pt;}
.y124{bottom:344.955467pt;}
.y1b7{bottom:345.054667pt;}
.y145{bottom:345.063467pt;}
.ye2{bottom:346.030000pt;}
.y157{bottom:349.576667pt;}
.yfd{bottom:349.576800pt;}
.y1e7{bottom:352.756133pt;}
.y6f{bottom:353.123333pt;}
.y16d{bottom:353.123467pt;}
.y9{bottom:353.740800pt;}
.y1fc{bottom:356.670000pt;}
.y93{bottom:356.670133pt;}
.ycd{bottom:356.700133pt;}
.y10e{bottom:356.748400pt;}
.y208{bottom:357.822667pt;}
.y1b6{bottom:359.988667pt;}
.y144{bottom:359.997467pt;}
.y7a{bottom:360.216667pt;}
.y53{bottom:360.216800pt;}
.yad{bottom:360.270667pt;}
.y123{bottom:360.294800pt;}
.ye1{bottom:361.369333pt;}
.y175{bottom:364.916000pt;}
.yfc{bottom:364.916133pt;}
.y1c9{bottom:368.462667pt;}
.y16c{bottom:368.462800pt;}
.y1e6{bottom:368.488133pt;}
.y8{bottom:369.080133pt;}
.y2e{bottom:372.009333pt;}
.y92{bottom:372.009467pt;}
.ycc{bottom:372.039467pt;}
.y10d{bottom:372.087733pt;}
.y1b5{bottom:374.922667pt;}
.y143{bottom:374.931467pt;}
.y79{bottom:375.556000pt;}
.y52{bottom:375.556133pt;}
.yac{bottom:375.610000pt;}
.y122{bottom:375.634133pt;}
.ye0{bottom:376.708667pt;}
.y18b{bottom:376.720667pt;}
.yfb{bottom:380.255467pt;}
.y156{bottom:383.802000pt;}
.y16b{bottom:383.802133pt;}
.y1e5{bottom:384.220133pt;}
.y7{bottom:384.419467pt;}
.y2d{bottom:387.348667pt;}
.y91{bottom:387.348800pt;}
.ycb{bottom:387.378800pt;}
.y10c{bottom:387.427067pt;}
.y1b4{bottom:389.856667pt;}
.y142{bottom:389.865467pt;}
.y78{bottom:390.895333pt;}
.y51{bottom:390.895467pt;}
.yab{bottom:390.949333pt;}
.y121{bottom:390.973467pt;}
.ydf{bottom:392.048000pt;}
.y18a{bottom:392.060000pt;}
.yfa{bottom:395.594800pt;}
.y174{bottom:399.141333pt;}
.y16a{bottom:399.141467pt;}
.y1e4{bottom:399.952133pt;}
.y2c{bottom:402.688000pt;}
.y90{bottom:402.688133pt;}
.yca{bottom:402.718133pt;}
.y1b3{bottom:404.790667pt;}
.y141{bottom:404.799467pt;}
.y77{bottom:406.234667pt;}
.y50{bottom:406.234800pt;}
.yaa{bottom:406.288667pt;}
.y120{bottom:406.312800pt;}
.yde{bottom:407.387333pt;}
.y189{bottom:407.399333pt;}
.yf9{bottom:410.934133pt;}
.y173{bottom:414.480667pt;}
.y169{bottom:414.480800pt;}
.y1e3{bottom:415.684133pt;}
.y2b{bottom:418.027333pt;}
.y8f{bottom:418.027467pt;}
.yc9{bottom:418.057467pt;}
.y1b2{bottom:419.724667pt;}
.y140{bottom:419.733467pt;}
.y76{bottom:421.574000pt;}
.y4f{bottom:421.574133pt;}
.ya9{bottom:421.628000pt;}
.y11f{bottom:421.652133pt;}
.y207{bottom:426.273333pt;}
.yf8{bottom:426.273467pt;}
.y1c8{bottom:429.820000pt;}
.y168{bottom:429.820133pt;}
.y1e2{bottom:431.416133pt;}
.y6e{bottom:433.366667pt;}
.y8e{bottom:433.366800pt;}
.yc8{bottom:433.396800pt;}
.y1b1{bottom:434.658667pt;}
.y13f{bottom:434.667467pt;}
.y75{bottom:436.913333pt;}
.y4e{bottom:436.913467pt;}
.ya8{bottom:436.967333pt;}
.y11e{bottom:436.991467pt;}
.ydd{bottom:441.612667pt;}
.yf7{bottom:441.612800pt;}
.y188{bottom:441.624667pt;}
.y1c7{bottom:445.159333pt;}
.y1a4{bottom:445.159467pt;}
.y6{bottom:446.881467pt;}
.y1e1{bottom:447.148133pt;}
.y6d{bottom:448.706000pt;}
.y8d{bottom:448.706133pt;}
.yc7{bottom:448.736133pt;}
.y1b0{bottom:449.592667pt;}
.y13e{bottom:449.601467pt;}
.y2a{bottom:452.252667pt;}
.y4d{bottom:452.252800pt;}
.ya7{bottom:452.306667pt;}
.ydc{bottom:456.952000pt;}
.y1c6{bottom:460.498667pt;}
.y1a3{bottom:460.498800pt;}
.y1e0{bottom:462.880133pt;}
.y6c{bottom:464.045333pt;}
.y151{bottom:464.045467pt;}
.yc6{bottom:464.075467pt;}
.y13d{bottom:464.526667pt;}
.y5{bottom:466.081467pt;}
.y29{bottom:467.592000pt;}
.y4c{bottom:467.592133pt;}
.ya6{bottom:467.646000pt;}
.y206{bottom:472.291333pt;}
.y1c5{bottom:475.838000pt;}
.yf6{bottom:475.838133pt;}
.y187{bottom:475.850000pt;}
.y1df{bottom:478.612133pt;}
.y6b{bottom:479.384667pt;}
.y167{bottom:479.384800pt;}
.y13c{bottom:479.460667pt;}
.y28{bottom:482.931333pt;}
.y4b{bottom:482.931467pt;}
.ya5{bottom:482.985333pt;}
.y225{bottom:483.281200pt;}
.y205{bottom:487.630667pt;}
.ydb{bottom:491.177333pt;}
.yf5{bottom:491.177467pt;}
.y186{bottom:491.189333pt;}
.y1de{bottom:494.344133pt;}
.y13b{bottom:494.394667pt;}
.y224{bottom:494.481200pt;}
.y6a{bottom:494.724000pt;}
.y17d{bottom:494.724133pt;}
.y27{bottom:498.270667pt;}
.y4a{bottom:498.270800pt;}
.yc5{bottom:498.300800pt;}
.ya4{bottom:498.324667pt;}
.y204{bottom:502.970000pt;}
.yda{bottom:506.516667pt;}
.y1a2{bottom:506.516800pt;}
.y185{bottom:506.528667pt;}
.y13a{bottom:509.328667pt;}
.y69{bottom:510.063333pt;}
.y17c{bottom:510.063467pt;}
.y1dd{bottom:510.076133pt;}
.y26{bottom:513.610000pt;}
.y49{bottom:513.610133pt;}
.yc4{bottom:513.640133pt;}
.y223{bottom:517.021200pt;}
.y203{bottom:518.309333pt;}
.y1a1{bottom:521.856133pt;}
.y184{bottom:521.868000pt;}
.y139{bottom:524.262667pt;}
.y68{bottom:525.402667pt;}
.yf4{bottom:525.402800pt;}
.y1dc{bottom:525.808133pt;}
.y222{bottom:528.221200pt;}
.y25{bottom:528.949333pt;}
.y48{bottom:528.949467pt;}
.yc3{bottom:528.979467pt;}
.y4{bottom:538.410133pt;}
.y1af{bottom:539.196667pt;}
.y67{bottom:540.742000pt;}
.yf3{bottom:540.742133pt;}
.y1db{bottom:541.540133pt;}
.y24{bottom:544.288667pt;}
.y47{bottom:544.288800pt;}
.yc2{bottom:544.318800pt;}
.y221{bottom:550.761200pt;}
.y202{bottom:552.534667pt;}
.y66{bottom:556.081333pt;}
.yf2{bottom:556.081467pt;}
.y183{bottom:556.093333pt;}
.y1da{bottom:557.272133pt;}
.y138{bottom:558.095333pt;}
.y23{bottom:559.628000pt;}
.y46{bottom:559.628133pt;}
.yc1{bottom:559.658133pt;}
.y220{bottom:561.961200pt;}
.y3{bottom:565.071333pt;}
.y201{bottom:567.874000pt;}
.y65{bottom:571.420667pt;}
.yf1{bottom:571.420800pt;}
.y182{bottom:571.432667pt;}
.y1d9{bottom:573.004133pt;}
.y137{bottom:573.029333pt;}
.y22{bottom:574.967333pt;}
.y45{bottom:574.967467pt;}
.y21f{bottom:584.499733pt;}
.y64{bottom:586.760000pt;}
.y17b{bottom:586.760133pt;}
.y1ae{bottom:587.963333pt;}
.y1d8{bottom:588.736133pt;}
.y21{bottom:590.306667pt;}
.y44{bottom:590.306800pt;}
.y200{bottom:602.099333pt;}
.y17a{bottom:602.099467pt;}
.y2{bottom:602.751333pt;}
.y1d7{bottom:604.468133pt;}
.y20{bottom:605.646000pt;}
.y43{bottom:605.646133pt;}
.y181{bottom:605.658000pt;}
.y136{bottom:606.862000pt;}
.y179{bottom:617.438800pt;}
.y1d6{bottom:620.200133pt;}
.y1f{bottom:620.985333pt;}
.y42{bottom:620.985467pt;}
.y135{bottom:621.796000pt;}
.y1{bottom:634.751333pt;}
.y1d5{bottom:635.932133pt;}
.y1e{bottom:636.324667pt;}
.y41{bottom:636.324800pt;}
.y134{bottom:636.730000pt;}
.y1d{bottom:651.664000pt;}
.y40{bottom:651.664133pt;}
.y3f{bottom:698.456667pt;}
.y1c{bottom:698.624667pt;}
.h4{height:32.480000pt;}
.h7{height:33.376000pt;}
.h8{height:38.144000pt;}
.h10{height:42.064000pt;}
.h6{height:44.080000pt;}
.hd{height:44.115200pt;}
.hf{height:44.128000pt;}
.ha{height:44.200000pt;}
.h9{height:44.296000pt;}
.hc{height:44.392000pt;}
.hb{height:44.393600pt;}
.he{height:44.612267pt;}
.h5{height:45.376000pt;}
.h3{height:75.626667pt;}
.h2{height:94.186667pt;}
.h0{height:755.905333pt;}
.h1{height:756.000000pt;}
.w1{width:491.333333pt;}
.w0{width:491.338667pt;}
.x0{left:0.000000pt;}
.x4{left:56.692933pt;}
.x1{left:75.590533pt;}
.x2{left:80.552667pt;}
.x3{left:262.552667pt;}
.x6{left:304.300133pt;}
.x5{left:421.243200pt;}
.x9{left:422.157867pt;}
.x8{left:423.277867pt;}
.x7{left:424.790133pt;}
}




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