
    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_8ec2f3c70a3577002f2baf9d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.132000;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_8b52a75bc86d03f24e0ac13b.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_cfc7a2e6e310caf0f1a05b47.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.913000;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_e5c501b7bc7370443e6b806d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_916f155734722d973e17186a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.106934;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_39ab33360cfab8dc17241b61.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_f5b43f0713fca48a2095ddf6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.095703;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_8ec2f3c70a3577002f2baf9d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.132000;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_8b52a75bc86d03f24e0ac13b.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c7867dbc4012b99f7af1277b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.104004;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_f4604b7fd62fa9a04f8aceec.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980600px;}
.ls4{letter-spacing:-0.990000px;}
.ls6{letter-spacing:-0.660000px;}
.ls3{letter-spacing:-0.330000px;}
.ls2{letter-spacing:-0.264000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.660000px;}
.ls7{letter-spacing:3.925200px;}
.ls0{letter-spacing:78.204000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1a{word-spacing:-16.500000px;}
.ws9f{word-spacing:-15.000000px;}
.ws2{word-spacing:-13.500000px;}
.ws0{word-spacing:-11.676000px;}
.ws1{word-spacing:-8.745000px;}
.ws4{word-spacing:-4.992000px;}
.ws9a{word-spacing:-4.026000px;}
.wsc5{word-spacing:-3.894000px;}
.ws99{word-spacing:-3.630000px;}
.wse7{word-spacing:-3.300000px;}
.ws7d{word-spacing:-3.234000px;}
.wsab{word-spacing:-3.102000px;}
.ws87{word-spacing:-3.036000px;}
.wsb7{word-spacing:-2.970000px;}
.wsb9{word-spacing:-2.838000px;}
.ws5e{word-spacing:-2.772000px;}
.wsdd{word-spacing:-2.760000px;}
.ws7b{word-spacing:-2.706000px;}
.ws28{word-spacing:-2.574000px;}
.ws40{word-spacing:-2.508000px;}
.ws12{word-spacing:-2.442000px;}
.ws67{word-spacing:-2.376000px;}
.wsd8{word-spacing:-2.310000px;}
.wscd{word-spacing:-2.244000px;}
.ws64{word-spacing:-2.178000px;}
.ws8e{word-spacing:-2.112000px;}
.ws29{word-spacing:-2.046000px;}
.ws9{word-spacing:-1.944000px;}
.wsdf{word-spacing:-1.920000px;}
.wsca{word-spacing:-1.914000px;}
.ws36{word-spacing:-1.848000px;}
.wsd4{word-spacing:-1.782000px;}
.wse9{word-spacing:-1.740000px;}
.ws63{word-spacing:-1.716000px;}
.ws7e{word-spacing:-1.650000px;}
.ws3c{word-spacing:-1.584000px;}
.wsc7{word-spacing:-1.518000px;}
.wsbc{word-spacing:-1.452000px;}
.wsbd{word-spacing:-1.386000px;}
.ws5b{word-spacing:-1.254000px;}
.wse8{word-spacing:-1.200000px;}
.ws81{word-spacing:-1.188000px;}
.ws89{word-spacing:-1.122000px;}
.wse4{word-spacing:-1.080000px;}
.ws1f{word-spacing:-0.990000px;}
.ws35{word-spacing:-0.924000px;}
.ws15{word-spacing:-0.858000px;}
.wsf{word-spacing:-0.792000px;}
.ws2a{word-spacing:-0.726000px;}
.wsa0{word-spacing:-0.660000px;}
.ws5c{word-spacing:-0.594000px;}
.wsb6{word-spacing:-0.528000px;}
.ws62{word-spacing:-0.462000px;}
.ws4d{word-spacing:-0.396000px;}
.ws41{word-spacing:-0.330000px;}
.wsed{word-spacing:-0.300000px;}
.ws72{word-spacing:-0.264000px;}
.ws49{word-spacing:-0.198000px;}
.wsc0{word-spacing:-0.132000px;}
.ws3{word-spacing:0.000000px;}
.wse3{word-spacing:0.060000px;}
.ws10{word-spacing:0.066000px;}
.wsc4{word-spacing:0.132000px;}
.ws78{word-spacing:0.198000px;}
.ws13{word-spacing:0.264000px;}
.ws21{word-spacing:0.330000px;}
.ws85{word-spacing:0.396000px;}
.ws7a{word-spacing:0.462000px;}
.ws11{word-spacing:0.528000px;}
.wsb5{word-spacing:0.594000px;}
.ws25{word-spacing:0.660000px;}
.ws7c{word-spacing:0.726000px;}
.ws3f{word-spacing:0.792000px;}
.ws6f{word-spacing:0.858000px;}
.ws44{word-spacing:0.924000px;}
.ws5f{word-spacing:0.990000px;}
.ws46{word-spacing:1.056000px;}
.wsc8{word-spacing:1.122000px;}
.ws42{word-spacing:1.188000px;}
.ws24{word-spacing:1.254000px;}
.wsa7{word-spacing:1.386000px;}
.wsa2{word-spacing:1.452000px;}
.wsd9{word-spacing:1.518000px;}
.ws76{word-spacing:1.584000px;}
.ws74{word-spacing:1.650000px;}
.ws2b{word-spacing:1.716000px;}
.ws6a{word-spacing:1.848000px;}
.ws84{word-spacing:1.980000px;}
.wsde{word-spacing:2.040000px;}
.ws51{word-spacing:2.046000px;}
.ws53{word-spacing:2.178000px;}
.ws77{word-spacing:2.244000px;}
.wsdc{word-spacing:2.280000px;}
.ws5a{word-spacing:2.310000px;}
.wsea{word-spacing:2.340000px;}
.ws20{word-spacing:2.442000px;}
.ws65{word-spacing:2.508000px;}
.ws50{word-spacing:2.574000px;}
.ws58{word-spacing:2.640000px;}
.wse5{word-spacing:2.760000px;}
.ws22{word-spacing:2.772000px;}
.wsd2{word-spacing:2.838000px;}
.wsd3{word-spacing:2.904000px;}
.ws2e{word-spacing:2.970000px;}
.ws8b{word-spacing:3.036000px;}
.ws48{word-spacing:3.102000px;}
.ws26{word-spacing:3.168000px;}
.ws3d{word-spacing:3.234000px;}
.ws5{word-spacing:3.240000px;}
.ws6{word-spacing:3.294000px;}
.wsd1{word-spacing:3.300000px;}
.wse1{word-spacing:3.360000px;}
.ws73{word-spacing:3.366000px;}
.ws8{word-spacing:3.402000px;}
.ws80{word-spacing:3.432000px;}
.ws57{word-spacing:3.498000px;}
.wsd{word-spacing:3.564000px;}
.ws37{word-spacing:3.630000px;}
.wsaf{word-spacing:3.696000px;}
.wse2{word-spacing:3.780000px;}
.wsbe{word-spacing:3.828000px;}
.ws66{word-spacing:3.960000px;}
.wsba{word-spacing:4.026000px;}
.ws2c{word-spacing:4.092000px;}
.ws30{word-spacing:4.158000px;}
.wsae{word-spacing:4.224000px;}
.ws4c{word-spacing:4.356000px;}
.wsb3{word-spacing:4.422000px;}
.ws34{word-spacing:4.488000px;}
.ws9e{word-spacing:4.554000px;}
.wsa8{word-spacing:4.620000px;}
.ws14{word-spacing:4.752000px;}
.ws71{word-spacing:4.818000px;}
.ws83{word-spacing:4.884000px;}
.ws75{word-spacing:4.950000px;}
.ws7{word-spacing:4.968000px;}
.wsa4{word-spacing:5.016000px;}
.ws6d{word-spacing:5.082000px;}
.wsad{word-spacing:5.148000px;}
.ws31{word-spacing:5.214000px;}
.ws2f{word-spacing:5.280000px;}
.wsb8{word-spacing:5.346000px;}
.ws18{word-spacing:5.412000px;}
.ws27{word-spacing:5.478000px;}
.wsee{word-spacing:5.520000px;}
.ws60{word-spacing:5.610000px;}
.ws91{word-spacing:5.676000px;}
.ws79{word-spacing:5.742000px;}
.ws3a{word-spacing:5.808000px;}
.wsce{word-spacing:5.874000px;}
.wsa9{word-spacing:6.006000px;}
.ws88{word-spacing:6.138000px;}
.wse{word-spacing:6.204000px;}
.ws1d{word-spacing:6.270000px;}
.ws59{word-spacing:6.336000px;}
.ws94{word-spacing:6.402000px;}
.ws52{word-spacing:6.534000px;}
.ws61{word-spacing:6.600000px;}
.ws1c{word-spacing:6.732000px;}
.ws70{word-spacing:6.930000px;}
.wsc{word-spacing:6.996000px;}
.ws82{word-spacing:7.062000px;}
.ws9c{word-spacing:7.128000px;}
.wse6{word-spacing:7.140000px;}
.ws16{word-spacing:7.194000px;}
.ws8f{word-spacing:7.260000px;}
.ws6b{word-spacing:7.326000px;}
.wsbb{word-spacing:7.392000px;}
.ws33{word-spacing:7.458000px;}
.wsb0{word-spacing:7.524000px;}
.wsc2{word-spacing:7.590000px;}
.wsd7{word-spacing:7.656000px;}
.wsb2{word-spacing:7.722000px;}
.wsbf{word-spacing:7.788000px;}
.ws3b{word-spacing:7.854000px;}
.ws1e{word-spacing:7.986000px;}
.ws2d{word-spacing:8.052000px;}
.wsa{word-spacing:8.118000px;}
.ws6e{word-spacing:8.184000px;}
.ws8d{word-spacing:8.250000px;}
.ws93{word-spacing:8.316000px;}
.ws47{word-spacing:8.382000px;}
.ws38{word-spacing:8.448000px;}
.ws43{word-spacing:8.514000px;}
.ws1b{word-spacing:8.580000px;}
.wsac{word-spacing:8.646000px;}
.wseb{word-spacing:8.820000px;}
.ws86{word-spacing:8.844000px;}
.ws6c{word-spacing:8.910000px;}
.wsc1{word-spacing:8.976000px;}
.ws8c{word-spacing:9.042000px;}
.ws69{word-spacing:9.174000px;}
.ws96{word-spacing:9.306000px;}
.ws90{word-spacing:9.372000px;}
.ws98{word-spacing:9.438000px;}
.wsd6{word-spacing:9.504000px;}
.wscc{word-spacing:9.636000px;}
.wsa6{word-spacing:9.702000px;}
.wsc9{word-spacing:9.768000px;}
.ws8a{word-spacing:9.834000px;}
.wscb{word-spacing:9.966000px;}
.wsa3{word-spacing:10.032000px;}
.wsb4{word-spacing:10.098000px;}
.wsaa{word-spacing:10.164000px;}
.ws23{word-spacing:10.230000px;}
.wsb1{word-spacing:10.362000px;}
.ws95{word-spacing:10.428000px;}
.wsc3{word-spacing:10.494000px;}
.ws54{word-spacing:10.692000px;}
.wscf{word-spacing:10.890000px;}
.ws68{word-spacing:10.956000px;}
.wsa5{word-spacing:11.022000px;}
.wsd0{word-spacing:11.286000px;}
.ws4b{word-spacing:11.748000px;}
.wsb{word-spacing:11.814000px;}
.wsec{word-spacing:11.820000px;}
.ws3e{word-spacing:12.210000px;}
.ws39{word-spacing:12.870000px;}
.wsc6{word-spacing:13.002000px;}
.ws7f{word-spacing:13.068000px;}
.wsa1{word-spacing:13.398000px;}
.ws17{word-spacing:13.464000px;}
.ws9d{word-spacing:13.596000px;}
.ws56{word-spacing:13.728000px;}
.ws32{word-spacing:13.794000px;}
.ws5d{word-spacing:14.652000px;}
.ws4e{word-spacing:15.114000px;}
.ws9b{word-spacing:15.180000px;}
.ws92{word-spacing:15.378000px;}
.ws97{word-spacing:15.510000px;}
.ws4f{word-spacing:16.038000px;}
.ws4a{word-spacing:16.104000px;}
.wsda{word-spacing:16.170000px;}
.ws45{word-spacing:17.424000px;}
.wsdb{word-spacing:17.490000px;}
.wsd5{word-spacing:19.668000px;}
.wse0{word-spacing:19.920000px;}
.ws55{word-spacing:22.308000px;}
.ws19{word-spacing:1143.279000px;}
._0{margin-left:-2891.338800px;}
._15{margin-left:-8.976000px;}
._14{margin-left:-7.359000px;}
._b{margin-left:-6.211200px;}
._13{margin-left:-5.207400px;}
._1{margin-left:-4.200000px;}
._2{margin-left:-2.406600px;}
._7{margin-left:-1.032000px;}
._4{width:1.344600px;}
._8{width:2.986200px;}
._9{width:4.288200px;}
._e{width:5.352000px;}
._3{width:6.373800px;}
._5{width:8.107200px;}
._6{width:9.403200px;}
._c{width:11.101200px;}
._10{width:12.110400px;}
._d{width:13.185600px;}
._11{width:14.350800px;}
._12{width:15.403800px;}
._f{width:17.965200px;}
._16{width:19.269600px;}
._a{width:64.212000px;}
.fc2{color:rgb(77,81,86);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:27.984000px;}
.fs4{font-size:34.980000px;}
.fs0{font-size:42.000000px;}
.fs2{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:47.778750px;}
.yd9{bottom:72.283650px;}
.y25{bottom:76.279500px;}
.y10c{bottom:79.835100px;}
.y12a{bottom:81.819450px;}
.y7c{bottom:83.095050px;}
.y93{bottom:83.520150px;}
.y1d8{bottom:84.135000px;}
.yd8{bottom:86.683650px;}
.y24{bottom:90.679500px;}
.y10b{bottom:97.835100px;}
.y129{bottom:99.819450px;}
.yd7{bottom:101.083650px;}
.y7b{bottom:101.095050px;}
.y92{bottom:101.520150px;}
.y1d7{bottom:102.135000px;}
.y23{bottom:105.079650px;}
.yd6{bottom:115.483650px;}
.y10a{bottom:115.835100px;}
.y128{bottom:117.819450px;}
.y7a{bottom:119.095050px;}
.y22{bottom:119.479650px;}
.y91{bottom:119.520150px;}
.y1d6{bottom:120.135000px;}
.yd5{bottom:129.883650px;}
.y14c{bottom:131.567400px;}
.y153{bottom:131.850900px;}
.y109{bottom:133.835100px;}
.y21{bottom:133.879800px;}
.y127{bottom:135.819450px;}
.y79{bottom:137.095050px;}
.y90{bottom:137.520150px;}
.yd4{bottom:144.283650px;}
.y20{bottom:148.279800px;}
.y14b{bottom:149.567400px;}
.y152{bottom:149.850900px;}
.y108{bottom:151.835100px;}
.y17c{bottom:152.860500px;}
.y19f{bottom:153.285750px;}
.y126{bottom:153.819450px;}
.y78{bottom:155.095050px;}
.y8f{bottom:155.520150px;}
.y1d5{bottom:156.135000px;}
.yd3{bottom:162.679650px;}
.y14a{bottom:167.567400px;}
.y151{bottom:167.850900px;}
.y107{bottom:169.835100px;}
.y17b{bottom:170.860500px;}
.y19e{bottom:171.285750px;}
.y125{bottom:171.819450px;}
.y77{bottom:173.095050px;}
.y8e{bottom:173.520150px;}
.ycf{bottom:173.803650px;}
.y1d4{bottom:174.135000px;}
.y3f{bottom:183.197100px;}
.y32{bottom:183.338850px;}
.y149{bottom:185.567400px;}
.y150{bottom:185.850900px;}
.y106{bottom:187.835100px;}
.y17a{bottom:188.860500px;}
.y19d{bottom:189.285750px;}
.y124{bottom:189.819450px;}
.y76{bottom:191.095050px;}
.y8d{bottom:191.520150px;}
.yce{bottom:191.803650px;}
.y1d3{bottom:192.135000px;}
.y3e{bottom:201.197100px;}
.y31{bottom:201.338850px;}
.yf6{bottom:202.608600px;}
.y148{bottom:203.567400px;}
.y14f{bottom:203.850900px;}
.y105{bottom:205.835100px;}
.y179{bottom:206.860500px;}
.y19c{bottom:207.285750px;}
.y123{bottom:207.819450px;}
.y75{bottom:209.095050px;}
.y8c{bottom:209.520150px;}
.ycd{bottom:209.803650px;}
.y1d2{bottom:210.135000px;}
.y3d{bottom:219.197100px;}
.y30{bottom:219.338850px;}
.yf5{bottom:220.608600px;}
.y147{bottom:221.567400px;}
.y104{bottom:223.835100px;}
.y178{bottom:224.860500px;}
.y19b{bottom:225.285750px;}
.y122{bottom:225.819450px;}
.y74{bottom:227.095050px;}
.y8b{bottom:227.520150px;}
.ycc{bottom:227.803650px;}
.y1d1{bottom:228.135000px;}
.y3c{bottom:237.197100px;}
.y2f{bottom:237.338850px;}
.yf4{bottom:238.608600px;}
.y146{bottom:239.567400px;}
.y14e{bottom:239.709150px;}
.y103{bottom:241.835100px;}
.y177{bottom:242.860500px;}
.y19a{bottom:243.285750px;}
.y121{bottom:243.819450px;}
.y73{bottom:245.095050px;}
.y8a{bottom:245.520150px;}
.ycb{bottom:245.803650px;}
.y3b{bottom:255.197100px;}
.y2e{bottom:255.338850px;}
.yf3{bottom:256.608600px;}
.y145{bottom:257.567400px;}
.y14d{bottom:257.709150px;}
.y102{bottom:259.835100px;}
.y176{bottom:260.860500px;}
.y199{bottom:261.285750px;}
.y120{bottom:261.819450px;}
.y72{bottom:263.095050px;}
.y89{bottom:263.520150px;}
.yca{bottom:263.803650px;}
.y3a{bottom:273.197100px;}
.y2d{bottom:273.338850px;}
.yf2{bottom:274.608600px;}
.y144{bottom:275.567400px;}
.y101{bottom:277.835100px;}
.y175{bottom:278.860500px;}
.y198{bottom:279.285750px;}
.y11f{bottom:279.819450px;}
.y71{bottom:281.095050px;}
.y88{bottom:281.520150px;}
.yc9{bottom:281.803650px;}
.y39{bottom:291.197100px;}
.y2c{bottom:291.338850px;}
.yf1{bottom:292.608600px;}
.y143{bottom:293.567400px;}
.y100{bottom:295.835100px;}
.y174{bottom:296.860500px;}
.y197{bottom:297.285750px;}
.y11e{bottom:297.819450px;}
.y70{bottom:299.095050px;}
.y87{bottom:299.520150px;}
.yc8{bottom:299.803650px;}
.y1d0{bottom:300.135000px;}
.y38{bottom:309.197100px;}
.y2b{bottom:309.338850px;}
.yf0{bottom:310.608600px;}
.y142{bottom:311.567400px;}
.yff{bottom:313.835100px;}
.y173{bottom:314.860500px;}
.y196{bottom:315.285750px;}
.y11d{bottom:315.819450px;}
.y6f{bottom:317.095050px;}
.y86{bottom:317.520150px;}
.yc7{bottom:317.803650px;}
.y1cf{bottom:318.135000px;}
.y37{bottom:327.197100px;}
.y2a{bottom:327.338850px;}
.yef{bottom:328.608600px;}
.y141{bottom:329.567400px;}
.yfe{bottom:331.835100px;}
.y172{bottom:332.860500px;}
.y195{bottom:333.285750px;}
.y11c{bottom:333.819450px;}
.y6e{bottom:335.095050px;}
.y85{bottom:335.520150px;}
.yc6{bottom:335.803650px;}
.y1ce{bottom:336.135000px;}
.y36{bottom:345.197100px;}
.y29{bottom:345.338850px;}
.yee{bottom:346.608600px;}
.y140{bottom:347.567400px;}
.y171{bottom:350.860500px;}
.y194{bottom:351.285750px;}
.y11b{bottom:351.819450px;}
.y6d{bottom:353.095050px;}
.y84{bottom:353.520150px;}
.yc5{bottom:353.803650px;}
.y1cd{bottom:354.135000px;}
.y35{bottom:363.197100px;}
.y28{bottom:363.338850px;}
.yed{bottom:364.608600px;}
.y170{bottom:368.860500px;}
.y193{bottom:369.285750px;}
.y11a{bottom:369.819450px;}
.y6c{bottom:371.095050px;}
.y83{bottom:371.520150px;}
.yc4{bottom:371.803650px;}
.y1cc{bottom:372.135000px;}
.y34{bottom:381.197100px;}
.y27{bottom:381.338850px;}
.yec{bottom:382.608600px;}
.y16f{bottom:386.860500px;}
.y192{bottom:387.285750px;}
.y119{bottom:387.819450px;}
.y6b{bottom:389.095050px;}
.y82{bottom:389.520150px;}
.yc3{bottom:389.803650px;}
.y1cb{bottom:390.135000px;}
.y33{bottom:399.197100px;}
.yeb{bottom:400.608600px;}
.y16e{bottom:404.860500px;}
.y191{bottom:405.285750px;}
.y118{bottom:405.819450px;}
.y6a{bottom:407.095050px;}
.y81{bottom:407.520150px;}
.yc2{bottom:407.803650px;}
.y1ca{bottom:408.135000px;}
.y26{bottom:417.197100px;}
.yea{bottom:418.608600px;}
.y16d{bottom:422.860500px;}
.y190{bottom:423.285750px;}
.y117{bottom:423.819450px;}
.y69{bottom:425.095050px;}
.y80{bottom:425.520150px;}
.yc1{bottom:425.803650px;}
.y1c9{bottom:426.135000px;}
.ye9{bottom:436.608600px;}
.y16c{bottom:440.860500px;}
.y18f{bottom:441.285750px;}
.y116{bottom:441.819450px;}
.y68{bottom:443.095050px;}
.y7f{bottom:443.520150px;}
.yc0{bottom:443.803650px;}
.y1c8{bottom:444.135000px;}
.ye8{bottom:454.608600px;}
.y16b{bottom:458.860500px;}
.y18e{bottom:459.285750px;}
.y115{bottom:459.819450px;}
.y67{bottom:461.095050px;}
.y7e{bottom:461.520150px;}
.ybf{bottom:461.803650px;}
.y1c7{bottom:462.135000px;}
.ye7{bottom:472.608600px;}
.y16a{bottom:476.860500px;}
.y18d{bottom:477.285750px;}
.y66{bottom:479.095050px;}
.y9f{bottom:479.520150px;}
.ybe{bottom:479.803650px;}
.y1c6{bottom:480.135000px;}
.y1f{bottom:485.914650px;}
.ye6{bottom:490.608600px;}
.y169{bottom:494.860500px;}
.y18c{bottom:495.285750px;}
.y65{bottom:497.095050px;}
.y7d{bottom:497.378400px;}
.y9e{bottom:497.520150px;}
.ybd{bottom:497.803650px;}
.y1c5{bottom:498.135000px;}
.y1e{bottom:503.914650px;}
.ye5{bottom:508.608600px;}
.y168{bottom:512.860500px;}
.y18b{bottom:513.285750px;}
.y64{bottom:515.095050px;}
.y9d{bottom:515.520150px;}
.ybc{bottom:515.803650px;}
.y1c4{bottom:516.135000px;}
.y1d{bottom:521.914650px;}
.ye4{bottom:526.608600px;}
.y167{bottom:530.860500px;}
.y18a{bottom:531.285750px;}
.y63{bottom:533.095050px;}
.y9c{bottom:533.520150px;}
.ybb{bottom:533.803650px;}
.y1c3{bottom:534.135000px;}
.ye3{bottom:544.608600px;}
.y166{bottom:548.860500px;}
.y189{bottom:549.285750px;}
.y62{bottom:551.095050px;}
.y9b{bottom:551.520150px;}
.yba{bottom:551.803650px;}
.y1c2{bottom:552.135000px;}
.ye2{bottom:562.608600px;}
.y165{bottom:566.860500px;}
.y188{bottom:567.285750px;}
.y61{bottom:569.095050px;}
.y9a{bottom:569.520150px;}
.yb9{bottom:569.803650px;}
.y1c{bottom:569.914650px;}
.y1c1{bottom:570.135000px;}
.ye1{bottom:580.608600px;}
.y164{bottom:584.860500px;}
.y1b{bottom:584.914650px;}
.y187{bottom:585.285750px;}
.y60{bottom:587.095050px;}
.y1a0{bottom:587.378400px;}
.y99{bottom:587.520150px;}
.yb8{bottom:587.803650px;}
.y1c0{bottom:588.135000px;}
.ye0{bottom:598.608600px;}
.y1a{bottom:599.914650px;}
.yfd{bottom:601.835100px;}
.y163{bottom:602.860500px;}
.y186{bottom:603.285750px;}
.y5f{bottom:605.095050px;}
.y98{bottom:605.520150px;}
.yb7{bottom:605.803650px;}
.y1bf{bottom:606.135000px;}
.y19{bottom:614.914650px;}
.ydf{bottom:616.608600px;}
.yfc{bottom:619.835100px;}
.y162{bottom:620.860500px;}
.y185{bottom:621.285750px;}
.y5e{bottom:623.095050px;}
.y97{bottom:623.520150px;}
.yb6{bottom:623.803650px;}
.y1be{bottom:624.135000px;}
.yde{bottom:634.608600px;}
.y161{bottom:638.860500px;}
.y184{bottom:639.285750px;}
.y5d{bottom:641.095050px;}
.y96{bottom:641.520150px;}
.yb5{bottom:641.803650px;}
.y1bd{bottom:642.135000px;}
.ydd{bottom:652.608600px;}
.y160{bottom:656.860500px;}
.y183{bottom:657.285750px;}
.y5c{bottom:659.095050px;}
.yfb{bottom:659.378400px;}
.y95{bottom:659.520150px;}
.yb4{bottom:659.803650px;}
.y18{bottom:659.914650px;}
.y1bc{bottom:660.135000px;}
.ydc{bottom:670.608600px;}
.y15f{bottom:674.860500px;}
.y17{bottom:674.914650px;}
.y182{bottom:675.285750px;}
.y5b{bottom:677.095050px;}
.yfa{bottom:677.378400px;}
.yad{bottom:677.520150px;}
.yb3{bottom:677.803650px;}
.y1bb{bottom:678.135000px;}
.ydb{bottom:688.608600px;}
.y16{bottom:689.914650px;}
.y15e{bottom:692.860500px;}
.y181{bottom:693.285750px;}
.y5a{bottom:695.095050px;}
.y94{bottom:695.378400px;}
.yac{bottom:695.520150px;}
.yb2{bottom:695.803650px;}
.y1ba{bottom:696.135000px;}
.y15{bottom:704.914650px;}
.yda{bottom:706.608600px;}
.y15d{bottom:710.860500px;}
.y180{bottom:711.285750px;}
.y59{bottom:713.095050px;}
.yf9{bottom:713.378400px;}
.yab{bottom:713.520150px;}
.y1b9{bottom:714.135000px;}
.y14{bottom:719.914650px;}
.y13f{bottom:727.835100px;}
.y15c{bottom:728.860500px;}
.y17f{bottom:729.285750px;}
.y58{bottom:731.095050px;}
.yaa{bottom:731.520150px;}
.yb1{bottom:731.661900px;}
.y1b8{bottom:732.135000px;}
.y13{bottom:734.914650px;}
.y114{bottom:745.835100px;}
.y15b{bottom:746.860500px;}
.y17e{bottom:747.285750px;}
.y57{bottom:749.095050px;}
.yf8{bottom:749.236650px;}
.ya9{bottom:749.520150px;}
.yb0{bottom:749.661900px;}
.y1b7{bottom:750.135000px;}
.y113{bottom:763.835100px;}
.y15a{bottom:764.860500px;}
.y12{bottom:764.915550px;}
.y56{bottom:767.095050px;}
.yf7{bottom:767.236650px;}
.ya8{bottom:767.520150px;}
.y1b6{bottom:768.135000px;}
.y159{bottom:782.860500px;}
.y11{bottom:782.915550px;}
.y17d{bottom:783.144000px;}
.y55{bottom:785.095050px;}
.y13e{bottom:785.502600px;}
.ya7{bottom:785.520150px;}
.y1b5{bottom:786.135000px;}
.y158{bottom:800.860500px;}
.y54{bottom:803.095050px;}
.y112{bottom:803.378400px;}
.y13d{bottom:803.502600px;}
.ya6{bottom:803.520150px;}
.y1b4{bottom:804.135000px;}
.y157{bottom:818.860500px;}
.y53{bottom:821.095050px;}
.y111{bottom:821.378400px;}
.y13c{bottom:821.502600px;}
.ya5{bottom:821.520150px;}
.y1b3{bottom:822.135000px;}
.y10{bottom:830.915550px;}
.y156{bottom:836.860500px;}
.y52{bottom:839.095050px;}
.y110{bottom:839.378400px;}
.y13b{bottom:839.502600px;}
.ya4{bottom:839.520150px;}
.y1b2{bottom:840.135000px;}
.yf{bottom:845.915550px;}
.y155{bottom:854.860500px;}
.y51{bottom:857.095050px;}
.y10f{bottom:857.378400px;}
.y13a{bottom:857.502600px;}
.ya3{bottom:857.520150px;}
.y1b1{bottom:858.135000px;}
.ye{bottom:860.915550px;}
.y154{bottom:872.860500px;}
.y50{bottom:875.095050px;}
.y10e{bottom:875.378400px;}
.y139{bottom:875.502600px;}
.ya2{bottom:875.520150px;}
.yd{bottom:875.915550px;}
.y1b0{bottom:876.135000px;}
.yc{bottom:890.915550px;}
.y4f{bottom:893.095050px;}
.y138{bottom:893.502600px;}
.ya1{bottom:893.520150px;}
.y1af{bottom:894.135000px;}
.yb{bottom:905.915550px;}
.y4e{bottom:911.095050px;}
.y10d{bottom:911.236650px;}
.y137{bottom:911.502600px;}
.yaf{bottom:911.520150px;}
.y1ae{bottom:912.135000px;}
.ya{bottom:920.915550px;}
.y4d{bottom:929.095050px;}
.ya0{bottom:929.378400px;}
.y136{bottom:929.502600px;}
.y1ad{bottom:930.135000px;}
.y4c{bottom:947.095050px;}
.yae{bottom:947.378400px;}
.y135{bottom:947.502600px;}
.y1ac{bottom:948.135000px;}
.y9{bottom:950.916450px;}
.y4b{bottom:965.095050px;}
.y134{bottom:965.502600px;}
.y1ab{bottom:966.135000px;}
.y4a{bottom:983.095050px;}
.y133{bottom:983.502600px;}
.y1aa{bottom:984.135000px;}
.y8{bottom:998.916450px;}
.y49{bottom:1001.095050px;}
.y132{bottom:1001.502600px;}
.y1a9{bottom:1002.135000px;}
.y48{bottom:1019.095050px;}
.y131{bottom:1019.502600px;}
.y1a8{bottom:1020.135000px;}
.y7{bottom:1031.917350px;}
.y47{bottom:1037.095050px;}
.y130{bottom:1037.502600px;}
.y1a7{bottom:1038.135000px;}
.y6{bottom:1052.917350px;}
.y46{bottom:1055.095050px;}
.y12f{bottom:1055.502600px;}
.y1a6{bottom:1056.135000px;}
.y45{bottom:1073.095050px;}
.y12e{bottom:1073.502600px;}
.y1a5{bottom:1074.135000px;}
.y44{bottom:1091.095050px;}
.y12d{bottom:1091.502600px;}
.y4{bottom:1092.115050px;}
.y1a4{bottom:1092.135000px;}
.y43{bottom:1109.095050px;}
.y12c{bottom:1109.502600px;}
.yd2{bottom:1110.120450px;}
.y1a3{bottom:1110.135000px;}
.y42{bottom:1127.095050px;}
.y3{bottom:1128.115050px;}
.yd1{bottom:1128.120450px;}
.y1a2{bottom:1128.135000px;}
.y41{bottom:1145.095050px;}
.y12b{bottom:1145.360850px;}
.y2{bottom:1146.115050px;}
.yd0{bottom:1146.120450px;}
.y1a1{bottom:1146.135000px;}
.y40{bottom:1185.063600px;}
.y5{bottom:1192.117650px;}
.he{height:26.789437px;}
.h7{height:37.426758px;}
.h2{height:38.724000px;}
.h14{height:42.117188px;}
.h13{height:42.773438px;}
.h4{height:44.256000px;}
.h9{height:47.381836px;}
.hd{height:47.513672px;}
.ha{height:47.961914px;}
.h8{height:48.120117px;}
.h15{height:52.646484px;}
.h6{height:53.466797px;}
.h3{height:55.320000px;}
.h11{height:57.911133px;}
.h12{height:58.072266px;}
.hf{height:58.620117px;}
.h10{height:58.813477px;}
.hc{height:63.175781px;}
.hb{height:64.160156px;}
.h5{height:68.440430px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:85.039350px;}
.xe{left:88.573350px;}
.xc{left:90.331200px;}
.xa{left:94.234950px;}
.x2{left:96.064350px;}
.x8{left:99.211950px;}
.x7{left:106.299150px;}
.xb{left:170.395950px;}
.xd{left:259.377900px;}
.xf{left:284.166600px;}
.x10{left:300.023700px;}
.x9{left:427.011000px;}
.x5{left:459.025050px;}
.x6{left:480.284850px;}
.x3{left:715.750500px;}
.x1{left:796.198050px;}
@media print{
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760533pt;}
.ls4{letter-spacing:-0.880000pt;}
.ls6{letter-spacing:-0.586667pt;}
.ls3{letter-spacing:-0.293333pt;}
.ls2{letter-spacing:-0.234667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.586667pt;}
.ls7{letter-spacing:3.489067pt;}
.ls0{letter-spacing:69.514667pt;}
.ws1a{word-spacing:-14.666667pt;}
.ws9f{word-spacing:-13.333333pt;}
.ws2{word-spacing:-12.000000pt;}
.ws0{word-spacing:-10.378667pt;}
.ws1{word-spacing:-7.773333pt;}
.ws4{word-spacing:-4.437333pt;}
.ws9a{word-spacing:-3.578667pt;}
.wsc5{word-spacing:-3.461333pt;}
.ws99{word-spacing:-3.226667pt;}
.wse7{word-spacing:-2.933333pt;}
.ws7d{word-spacing:-2.874667pt;}
.wsab{word-spacing:-2.757333pt;}
.ws87{word-spacing:-2.698667pt;}
.wsb7{word-spacing:-2.640000pt;}
.wsb9{word-spacing:-2.522667pt;}
.ws5e{word-spacing:-2.464000pt;}
.wsdd{word-spacing:-2.453333pt;}
.ws7b{word-spacing:-2.405333pt;}
.ws28{word-spacing:-2.288000pt;}
.ws40{word-spacing:-2.229333pt;}
.ws12{word-spacing:-2.170667pt;}
.ws67{word-spacing:-2.112000pt;}
.wsd8{word-spacing:-2.053333pt;}
.wscd{word-spacing:-1.994667pt;}
.ws64{word-spacing:-1.936000pt;}
.ws8e{word-spacing:-1.877333pt;}
.ws29{word-spacing:-1.818667pt;}
.ws9{word-spacing:-1.728000pt;}
.wsdf{word-spacing:-1.706667pt;}
.wsca{word-spacing:-1.701333pt;}
.ws36{word-spacing:-1.642667pt;}
.wsd4{word-spacing:-1.584000pt;}
.wse9{word-spacing:-1.546667pt;}
.ws63{word-spacing:-1.525333pt;}
.ws7e{word-spacing:-1.466667pt;}
.ws3c{word-spacing:-1.408000pt;}
.wsc7{word-spacing:-1.349333pt;}
.wsbc{word-spacing:-1.290667pt;}
.wsbd{word-spacing:-1.232000pt;}
.ws5b{word-spacing:-1.114667pt;}
.wse8{word-spacing:-1.066667pt;}
.ws81{word-spacing:-1.056000pt;}
.ws89{word-spacing:-0.997333pt;}
.wse4{word-spacing:-0.960000pt;}
.ws1f{word-spacing:-0.880000pt;}
.ws35{word-spacing:-0.821333pt;}
.ws15{word-spacing:-0.762667pt;}
.wsf{word-spacing:-0.704000pt;}
.ws2a{word-spacing:-0.645333pt;}
.wsa0{word-spacing:-0.586667pt;}
.ws5c{word-spacing:-0.528000pt;}
.wsb6{word-spacing:-0.469333pt;}
.ws62{word-spacing:-0.410667pt;}
.ws4d{word-spacing:-0.352000pt;}
.ws41{word-spacing:-0.293333pt;}
.wsed{word-spacing:-0.266667pt;}
.ws72{word-spacing:-0.234667pt;}
.ws49{word-spacing:-0.176000pt;}
.wsc0{word-spacing:-0.117333pt;}
.ws3{word-spacing:0.000000pt;}
.wse3{word-spacing:0.053333pt;}
.ws10{word-spacing:0.058667pt;}
.wsc4{word-spacing:0.117333pt;}
.ws78{word-spacing:0.176000pt;}
.ws13{word-spacing:0.234667pt;}
.ws21{word-spacing:0.293333pt;}
.ws85{word-spacing:0.352000pt;}
.ws7a{word-spacing:0.410667pt;}
.ws11{word-spacing:0.469333pt;}
.wsb5{word-spacing:0.528000pt;}
.ws25{word-spacing:0.586667pt;}
.ws7c{word-spacing:0.645333pt;}
.ws3f{word-spacing:0.704000pt;}
.ws6f{word-spacing:0.762667pt;}
.ws44{word-spacing:0.821333pt;}
.ws5f{word-spacing:0.880000pt;}
.ws46{word-spacing:0.938667pt;}
.wsc8{word-spacing:0.997333pt;}
.ws42{word-spacing:1.056000pt;}
.ws24{word-spacing:1.114667pt;}
.wsa7{word-spacing:1.232000pt;}
.wsa2{word-spacing:1.290667pt;}
.wsd9{word-spacing:1.349333pt;}
.ws76{word-spacing:1.408000pt;}
.ws74{word-spacing:1.466667pt;}
.ws2b{word-spacing:1.525333pt;}
.ws6a{word-spacing:1.642667pt;}
.ws84{word-spacing:1.760000pt;}
.wsde{word-spacing:1.813333pt;}
.ws51{word-spacing:1.818667pt;}
.ws53{word-spacing:1.936000pt;}
.ws77{word-spacing:1.994667pt;}
.wsdc{word-spacing:2.026667pt;}
.ws5a{word-spacing:2.053333pt;}
.wsea{word-spacing:2.080000pt;}
.ws20{word-spacing:2.170667pt;}
.ws65{word-spacing:2.229333pt;}
.ws50{word-spacing:2.288000pt;}
.ws58{word-spacing:2.346667pt;}
.wse5{word-spacing:2.453333pt;}
.ws22{word-spacing:2.464000pt;}
.wsd2{word-spacing:2.522667pt;}
.wsd3{word-spacing:2.581333pt;}
.ws2e{word-spacing:2.640000pt;}
.ws8b{word-spacing:2.698667pt;}
.ws48{word-spacing:2.757333pt;}
.ws26{word-spacing:2.816000pt;}
.ws3d{word-spacing:2.874667pt;}
.ws5{word-spacing:2.880000pt;}
.ws6{word-spacing:2.928000pt;}
.wsd1{word-spacing:2.933333pt;}
.wse1{word-spacing:2.986667pt;}
.ws73{word-spacing:2.992000pt;}
.ws8{word-spacing:3.024000pt;}
.ws80{word-spacing:3.050667pt;}
.ws57{word-spacing:3.109333pt;}
.wsd{word-spacing:3.168000pt;}
.ws37{word-spacing:3.226667pt;}
.wsaf{word-spacing:3.285333pt;}
.wse2{word-spacing:3.360000pt;}
.wsbe{word-spacing:3.402667pt;}
.ws66{word-spacing:3.520000pt;}
.wsba{word-spacing:3.578667pt;}
.ws2c{word-spacing:3.637333pt;}
.ws30{word-spacing:3.696000pt;}
.wsae{word-spacing:3.754667pt;}
.ws4c{word-spacing:3.872000pt;}
.wsb3{word-spacing:3.930667pt;}
.ws34{word-spacing:3.989333pt;}
.ws9e{word-spacing:4.048000pt;}
.wsa8{word-spacing:4.106667pt;}
.ws14{word-spacing:4.224000pt;}
.ws71{word-spacing:4.282667pt;}
.ws83{word-spacing:4.341333pt;}
.ws75{word-spacing:4.400000pt;}
.ws7{word-spacing:4.416000pt;}
.wsa4{word-spacing:4.458667pt;}
.ws6d{word-spacing:4.517333pt;}
.wsad{word-spacing:4.576000pt;}
.ws31{word-spacing:4.634667pt;}
.ws2f{word-spacing:4.693333pt;}
.wsb8{word-spacing:4.752000pt;}
.ws18{word-spacing:4.810667pt;}
.ws27{word-spacing:4.869333pt;}
.wsee{word-spacing:4.906667pt;}
.ws60{word-spacing:4.986667pt;}
.ws91{word-spacing:5.045333pt;}
.ws79{word-spacing:5.104000pt;}
.ws3a{word-spacing:5.162667pt;}
.wsce{word-spacing:5.221333pt;}
.wsa9{word-spacing:5.338667pt;}
.ws88{word-spacing:5.456000pt;}
.wse{word-spacing:5.514667pt;}
.ws1d{word-spacing:5.573333pt;}
.ws59{word-spacing:5.632000pt;}
.ws94{word-spacing:5.690667pt;}
.ws52{word-spacing:5.808000pt;}
.ws61{word-spacing:5.866667pt;}
.ws1c{word-spacing:5.984000pt;}
.ws70{word-spacing:6.160000pt;}
.wsc{word-spacing:6.218667pt;}
.ws82{word-spacing:6.277333pt;}
.ws9c{word-spacing:6.336000pt;}
.wse6{word-spacing:6.346667pt;}
.ws16{word-spacing:6.394667pt;}
.ws8f{word-spacing:6.453333pt;}
.ws6b{word-spacing:6.512000pt;}
.wsbb{word-spacing:6.570667pt;}
.ws33{word-spacing:6.629333pt;}
.wsb0{word-spacing:6.688000pt;}
.wsc2{word-spacing:6.746667pt;}
.wsd7{word-spacing:6.805333pt;}
.wsb2{word-spacing:6.864000pt;}
.wsbf{word-spacing:6.922667pt;}
.ws3b{word-spacing:6.981333pt;}
.ws1e{word-spacing:7.098667pt;}
.ws2d{word-spacing:7.157333pt;}
.wsa{word-spacing:7.216000pt;}
.ws6e{word-spacing:7.274667pt;}
.ws8d{word-spacing:7.333333pt;}
.ws93{word-spacing:7.392000pt;}
.ws47{word-spacing:7.450667pt;}
.ws38{word-spacing:7.509333pt;}
.ws43{word-spacing:7.568000pt;}
.ws1b{word-spacing:7.626667pt;}
.wsac{word-spacing:7.685333pt;}
.wseb{word-spacing:7.840000pt;}
.ws86{word-spacing:7.861333pt;}
.ws6c{word-spacing:7.920000pt;}
.wsc1{word-spacing:7.978667pt;}
.ws8c{word-spacing:8.037333pt;}
.ws69{word-spacing:8.154667pt;}
.ws96{word-spacing:8.272000pt;}
.ws90{word-spacing:8.330667pt;}
.ws98{word-spacing:8.389333pt;}
.wsd6{word-spacing:8.448000pt;}
.wscc{word-spacing:8.565333pt;}
.wsa6{word-spacing:8.624000pt;}
.wsc9{word-spacing:8.682667pt;}
.ws8a{word-spacing:8.741333pt;}
.wscb{word-spacing:8.858667pt;}
.wsa3{word-spacing:8.917333pt;}
.wsb4{word-spacing:8.976000pt;}
.wsaa{word-spacing:9.034667pt;}
.ws23{word-spacing:9.093333pt;}
.wsb1{word-spacing:9.210667pt;}
.ws95{word-spacing:9.269333pt;}
.wsc3{word-spacing:9.328000pt;}
.ws54{word-spacing:9.504000pt;}
.wscf{word-spacing:9.680000pt;}
.ws68{word-spacing:9.738667pt;}
.wsa5{word-spacing:9.797333pt;}
.wsd0{word-spacing:10.032000pt;}
.ws4b{word-spacing:10.442667pt;}
.wsb{word-spacing:10.501333pt;}
.wsec{word-spacing:10.506667pt;}
.ws3e{word-spacing:10.853333pt;}
.ws39{word-spacing:11.440000pt;}
.wsc6{word-spacing:11.557333pt;}
.ws7f{word-spacing:11.616000pt;}
.wsa1{word-spacing:11.909333pt;}
.ws17{word-spacing:11.968000pt;}
.ws9d{word-spacing:12.085333pt;}
.ws56{word-spacing:12.202667pt;}
.ws32{word-spacing:12.261333pt;}
.ws5d{word-spacing:13.024000pt;}
.ws4e{word-spacing:13.434667pt;}
.ws9b{word-spacing:13.493333pt;}
.ws92{word-spacing:13.669333pt;}
.ws97{word-spacing:13.786667pt;}
.ws4f{word-spacing:14.256000pt;}
.ws4a{word-spacing:14.314667pt;}
.wsda{word-spacing:14.373333pt;}
.ws45{word-spacing:15.488000pt;}
.wsdb{word-spacing:15.546667pt;}
.wsd5{word-spacing:17.482667pt;}
.wse0{word-spacing:17.706667pt;}
.ws55{word-spacing:19.829333pt;}
.ws19{word-spacing:1016.248000pt;}
._0{margin-left:-2570.078933pt;}
._15{margin-left:-7.978667pt;}
._14{margin-left:-6.541333pt;}
._b{margin-left:-5.521067pt;}
._13{margin-left:-4.628800pt;}
._1{margin-left:-3.733333pt;}
._2{margin-left:-2.139200pt;}
._7{margin-left:-0.917333pt;}
._4{width:1.195200pt;}
._8{width:2.654400pt;}
._9{width:3.811733pt;}
._e{width:4.757333pt;}
._3{width:5.665600pt;}
._5{width:7.206400pt;}
._6{width:8.358400pt;}
._c{width:9.867733pt;}
._10{width:10.764800pt;}
._d{width:11.720533pt;}
._11{width:12.756267pt;}
._12{width:13.692267pt;}
._f{width:15.969067pt;}
._16{width:17.128533pt;}
._a{width:57.077333pt;}
.fs7{font-size:24.874667pt;}
.fs4{font-size:31.093333pt;}
.fs0{font-size:37.333333pt;}
.fs2{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:42.470000pt;}
.yd9{bottom:64.252133pt;}
.y25{bottom:67.804000pt;}
.y10c{bottom:70.964533pt;}
.y12a{bottom:72.728400pt;}
.y7c{bottom:73.862267pt;}
.y93{bottom:74.240133pt;}
.y1d8{bottom:74.786667pt;}
.yd8{bottom:77.052133pt;}
.y24{bottom:80.604000pt;}
.y10b{bottom:86.964533pt;}
.y129{bottom:88.728400pt;}
.yd7{bottom:89.852133pt;}
.y7b{bottom:89.862267pt;}
.y92{bottom:90.240133pt;}
.y1d7{bottom:90.786667pt;}
.y23{bottom:93.404133pt;}
.yd6{bottom:102.652133pt;}
.y10a{bottom:102.964533pt;}
.y128{bottom:104.728400pt;}
.y7a{bottom:105.862267pt;}
.y22{bottom:106.204133pt;}
.y91{bottom:106.240133pt;}
.y1d6{bottom:106.786667pt;}
.yd5{bottom:115.452133pt;}
.y14c{bottom:116.948800pt;}
.y153{bottom:117.200800pt;}
.y109{bottom:118.964533pt;}
.y21{bottom:119.004267pt;}
.y127{bottom:120.728400pt;}
.y79{bottom:121.862267pt;}
.y90{bottom:122.240133pt;}
.yd4{bottom:128.252133pt;}
.y20{bottom:131.804267pt;}
.y14b{bottom:132.948800pt;}
.y152{bottom:133.200800pt;}
.y108{bottom:134.964533pt;}
.y17c{bottom:135.876000pt;}
.y19f{bottom:136.254000pt;}
.y126{bottom:136.728400pt;}
.y78{bottom:137.862267pt;}
.y8f{bottom:138.240133pt;}
.y1d5{bottom:138.786667pt;}
.yd3{bottom:144.604133pt;}
.y14a{bottom:148.948800pt;}
.y151{bottom:149.200800pt;}
.y107{bottom:150.964533pt;}
.y17b{bottom:151.876000pt;}
.y19e{bottom:152.254000pt;}
.y125{bottom:152.728400pt;}
.y77{bottom:153.862267pt;}
.y8e{bottom:154.240133pt;}
.ycf{bottom:154.492133pt;}
.y1d4{bottom:154.786667pt;}
.y3f{bottom:162.841867pt;}
.y32{bottom:162.967867pt;}
.y149{bottom:164.948800pt;}
.y150{bottom:165.200800pt;}
.y106{bottom:166.964533pt;}
.y17a{bottom:167.876000pt;}
.y19d{bottom:168.254000pt;}
.y124{bottom:168.728400pt;}
.y76{bottom:169.862267pt;}
.y8d{bottom:170.240133pt;}
.yce{bottom:170.492133pt;}
.y1d3{bottom:170.786667pt;}
.y3e{bottom:178.841867pt;}
.y31{bottom:178.967867pt;}
.yf6{bottom:180.096533pt;}
.y148{bottom:180.948800pt;}
.y14f{bottom:181.200800pt;}
.y105{bottom:182.964533pt;}
.y179{bottom:183.876000pt;}
.y19c{bottom:184.254000pt;}
.y123{bottom:184.728400pt;}
.y75{bottom:185.862267pt;}
.y8c{bottom:186.240133pt;}
.ycd{bottom:186.492133pt;}
.y1d2{bottom:186.786667pt;}
.y3d{bottom:194.841867pt;}
.y30{bottom:194.967867pt;}
.yf5{bottom:196.096533pt;}
.y147{bottom:196.948800pt;}
.y104{bottom:198.964533pt;}
.y178{bottom:199.876000pt;}
.y19b{bottom:200.254000pt;}
.y122{bottom:200.728400pt;}
.y74{bottom:201.862267pt;}
.y8b{bottom:202.240133pt;}
.ycc{bottom:202.492133pt;}
.y1d1{bottom:202.786667pt;}
.y3c{bottom:210.841867pt;}
.y2f{bottom:210.967867pt;}
.yf4{bottom:212.096533pt;}
.y146{bottom:212.948800pt;}
.y14e{bottom:213.074800pt;}
.y103{bottom:214.964533pt;}
.y177{bottom:215.876000pt;}
.y19a{bottom:216.254000pt;}
.y121{bottom:216.728400pt;}
.y73{bottom:217.862267pt;}
.y8a{bottom:218.240133pt;}
.ycb{bottom:218.492133pt;}
.y3b{bottom:226.841867pt;}
.y2e{bottom:226.967867pt;}
.yf3{bottom:228.096533pt;}
.y145{bottom:228.948800pt;}
.y14d{bottom:229.074800pt;}
.y102{bottom:230.964533pt;}
.y176{bottom:231.876000pt;}
.y199{bottom:232.254000pt;}
.y120{bottom:232.728400pt;}
.y72{bottom:233.862267pt;}
.y89{bottom:234.240133pt;}
.yca{bottom:234.492133pt;}
.y3a{bottom:242.841867pt;}
.y2d{bottom:242.967867pt;}
.yf2{bottom:244.096533pt;}
.y144{bottom:244.948800pt;}
.y101{bottom:246.964533pt;}
.y175{bottom:247.876000pt;}
.y198{bottom:248.254000pt;}
.y11f{bottom:248.728400pt;}
.y71{bottom:249.862267pt;}
.y88{bottom:250.240133pt;}
.yc9{bottom:250.492133pt;}
.y39{bottom:258.841867pt;}
.y2c{bottom:258.967867pt;}
.yf1{bottom:260.096533pt;}
.y143{bottom:260.948800pt;}
.y100{bottom:262.964533pt;}
.y174{bottom:263.876000pt;}
.y197{bottom:264.254000pt;}
.y11e{bottom:264.728400pt;}
.y70{bottom:265.862267pt;}
.y87{bottom:266.240133pt;}
.yc8{bottom:266.492133pt;}
.y1d0{bottom:266.786667pt;}
.y38{bottom:274.841867pt;}
.y2b{bottom:274.967867pt;}
.yf0{bottom:276.096533pt;}
.y142{bottom:276.948800pt;}
.yff{bottom:278.964533pt;}
.y173{bottom:279.876000pt;}
.y196{bottom:280.254000pt;}
.y11d{bottom:280.728400pt;}
.y6f{bottom:281.862267pt;}
.y86{bottom:282.240133pt;}
.yc7{bottom:282.492133pt;}
.y1cf{bottom:282.786667pt;}
.y37{bottom:290.841867pt;}
.y2a{bottom:290.967867pt;}
.yef{bottom:292.096533pt;}
.y141{bottom:292.948800pt;}
.yfe{bottom:294.964533pt;}
.y172{bottom:295.876000pt;}
.y195{bottom:296.254000pt;}
.y11c{bottom:296.728400pt;}
.y6e{bottom:297.862267pt;}
.y85{bottom:298.240133pt;}
.yc6{bottom:298.492133pt;}
.y1ce{bottom:298.786667pt;}
.y36{bottom:306.841867pt;}
.y29{bottom:306.967867pt;}
.yee{bottom:308.096533pt;}
.y140{bottom:308.948800pt;}
.y171{bottom:311.876000pt;}
.y194{bottom:312.254000pt;}
.y11b{bottom:312.728400pt;}
.y6d{bottom:313.862267pt;}
.y84{bottom:314.240133pt;}
.yc5{bottom:314.492133pt;}
.y1cd{bottom:314.786667pt;}
.y35{bottom:322.841867pt;}
.y28{bottom:322.967867pt;}
.yed{bottom:324.096533pt;}
.y170{bottom:327.876000pt;}
.y193{bottom:328.254000pt;}
.y11a{bottom:328.728400pt;}
.y6c{bottom:329.862267pt;}
.y83{bottom:330.240133pt;}
.yc4{bottom:330.492133pt;}
.y1cc{bottom:330.786667pt;}
.y34{bottom:338.841867pt;}
.y27{bottom:338.967867pt;}
.yec{bottom:340.096533pt;}
.y16f{bottom:343.876000pt;}
.y192{bottom:344.254000pt;}
.y119{bottom:344.728400pt;}
.y6b{bottom:345.862267pt;}
.y82{bottom:346.240133pt;}
.yc3{bottom:346.492133pt;}
.y1cb{bottom:346.786667pt;}
.y33{bottom:354.841867pt;}
.yeb{bottom:356.096533pt;}
.y16e{bottom:359.876000pt;}
.y191{bottom:360.254000pt;}
.y118{bottom:360.728400pt;}
.y6a{bottom:361.862267pt;}
.y81{bottom:362.240133pt;}
.yc2{bottom:362.492133pt;}
.y1ca{bottom:362.786667pt;}
.y26{bottom:370.841867pt;}
.yea{bottom:372.096533pt;}
.y16d{bottom:375.876000pt;}
.y190{bottom:376.254000pt;}
.y117{bottom:376.728400pt;}
.y69{bottom:377.862267pt;}
.y80{bottom:378.240133pt;}
.yc1{bottom:378.492133pt;}
.y1c9{bottom:378.786667pt;}
.ye9{bottom:388.096533pt;}
.y16c{bottom:391.876000pt;}
.y18f{bottom:392.254000pt;}
.y116{bottom:392.728400pt;}
.y68{bottom:393.862267pt;}
.y7f{bottom:394.240133pt;}
.yc0{bottom:394.492133pt;}
.y1c8{bottom:394.786667pt;}
.ye8{bottom:404.096533pt;}
.y16b{bottom:407.876000pt;}
.y18e{bottom:408.254000pt;}
.y115{bottom:408.728400pt;}
.y67{bottom:409.862267pt;}
.y7e{bottom:410.240133pt;}
.ybf{bottom:410.492133pt;}
.y1c7{bottom:410.786667pt;}
.ye7{bottom:420.096533pt;}
.y16a{bottom:423.876000pt;}
.y18d{bottom:424.254000pt;}
.y66{bottom:425.862267pt;}
.y9f{bottom:426.240133pt;}
.ybe{bottom:426.492133pt;}
.y1c6{bottom:426.786667pt;}
.y1f{bottom:431.924133pt;}
.ye6{bottom:436.096533pt;}
.y169{bottom:439.876000pt;}
.y18c{bottom:440.254000pt;}
.y65{bottom:441.862267pt;}
.y7d{bottom:442.114133pt;}
.y9e{bottom:442.240133pt;}
.ybd{bottom:442.492133pt;}
.y1c5{bottom:442.786667pt;}
.y1e{bottom:447.924133pt;}
.ye5{bottom:452.096533pt;}
.y168{bottom:455.876000pt;}
.y18b{bottom:456.254000pt;}
.y64{bottom:457.862267pt;}
.y9d{bottom:458.240133pt;}
.ybc{bottom:458.492133pt;}
.y1c4{bottom:458.786667pt;}
.y1d{bottom:463.924133pt;}
.ye4{bottom:468.096533pt;}
.y167{bottom:471.876000pt;}
.y18a{bottom:472.254000pt;}
.y63{bottom:473.862267pt;}
.y9c{bottom:474.240133pt;}
.ybb{bottom:474.492133pt;}
.y1c3{bottom:474.786667pt;}
.ye3{bottom:484.096533pt;}
.y166{bottom:487.876000pt;}
.y189{bottom:488.254000pt;}
.y62{bottom:489.862267pt;}
.y9b{bottom:490.240133pt;}
.yba{bottom:490.492133pt;}
.y1c2{bottom:490.786667pt;}
.ye2{bottom:500.096533pt;}
.y165{bottom:503.876000pt;}
.y188{bottom:504.254000pt;}
.y61{bottom:505.862267pt;}
.y9a{bottom:506.240133pt;}
.yb9{bottom:506.492133pt;}
.y1c{bottom:506.590800pt;}
.y1c1{bottom:506.786667pt;}
.ye1{bottom:516.096533pt;}
.y164{bottom:519.876000pt;}
.y1b{bottom:519.924133pt;}
.y187{bottom:520.254000pt;}
.y60{bottom:521.862267pt;}
.y1a0{bottom:522.114133pt;}
.y99{bottom:522.240133pt;}
.yb8{bottom:522.492133pt;}
.y1c0{bottom:522.786667pt;}
.ye0{bottom:532.096533pt;}
.y1a{bottom:533.257467pt;}
.yfd{bottom:534.964533pt;}
.y163{bottom:535.876000pt;}
.y186{bottom:536.254000pt;}
.y5f{bottom:537.862267pt;}
.y98{bottom:538.240133pt;}
.yb7{bottom:538.492133pt;}
.y1bf{bottom:538.786667pt;}
.y19{bottom:546.590800pt;}
.ydf{bottom:548.096533pt;}
.yfc{bottom:550.964533pt;}
.y162{bottom:551.876000pt;}
.y185{bottom:552.254000pt;}
.y5e{bottom:553.862267pt;}
.y97{bottom:554.240133pt;}
.yb6{bottom:554.492133pt;}
.y1be{bottom:554.786667pt;}
.yde{bottom:564.096533pt;}
.y161{bottom:567.876000pt;}
.y184{bottom:568.254000pt;}
.y5d{bottom:569.862267pt;}
.y96{bottom:570.240133pt;}
.yb5{bottom:570.492133pt;}
.y1bd{bottom:570.786667pt;}
.ydd{bottom:580.096533pt;}
.y160{bottom:583.876000pt;}
.y183{bottom:584.254000pt;}
.y5c{bottom:585.862267pt;}
.yfb{bottom:586.114133pt;}
.y95{bottom:586.240133pt;}
.yb4{bottom:586.492133pt;}
.y18{bottom:586.590800pt;}
.y1bc{bottom:586.786667pt;}
.ydc{bottom:596.096533pt;}
.y15f{bottom:599.876000pt;}
.y17{bottom:599.924133pt;}
.y182{bottom:600.254000pt;}
.y5b{bottom:601.862267pt;}
.yfa{bottom:602.114133pt;}
.yad{bottom:602.240133pt;}
.yb3{bottom:602.492133pt;}
.y1bb{bottom:602.786667pt;}
.ydb{bottom:612.096533pt;}
.y16{bottom:613.257467pt;}
.y15e{bottom:615.876000pt;}
.y181{bottom:616.254000pt;}
.y5a{bottom:617.862267pt;}
.y94{bottom:618.114133pt;}
.yac{bottom:618.240133pt;}
.yb2{bottom:618.492133pt;}
.y1ba{bottom:618.786667pt;}
.y15{bottom:626.590800pt;}
.yda{bottom:628.096533pt;}
.y15d{bottom:631.876000pt;}
.y180{bottom:632.254000pt;}
.y59{bottom:633.862267pt;}
.yf9{bottom:634.114133pt;}
.yab{bottom:634.240133pt;}
.y1b9{bottom:634.786667pt;}
.y14{bottom:639.924133pt;}
.y13f{bottom:646.964533pt;}
.y15c{bottom:647.876000pt;}
.y17f{bottom:648.254000pt;}
.y58{bottom:649.862267pt;}
.yaa{bottom:650.240133pt;}
.yb1{bottom:650.366133pt;}
.y1b8{bottom:650.786667pt;}
.y13{bottom:653.257467pt;}
.y114{bottom:662.964533pt;}
.y15b{bottom:663.876000pt;}
.y17e{bottom:664.254000pt;}
.y57{bottom:665.862267pt;}
.yf8{bottom:665.988133pt;}
.ya9{bottom:666.240133pt;}
.yb0{bottom:666.366133pt;}
.y1b7{bottom:666.786667pt;}
.y113{bottom:678.964533pt;}
.y15a{bottom:679.876000pt;}
.y12{bottom:679.924933pt;}
.y56{bottom:681.862267pt;}
.yf7{bottom:681.988133pt;}
.ya8{bottom:682.240133pt;}
.y1b6{bottom:682.786667pt;}
.y159{bottom:695.876000pt;}
.y11{bottom:695.924933pt;}
.y17d{bottom:696.128000pt;}
.y55{bottom:697.862267pt;}
.y13e{bottom:698.224533pt;}
.ya7{bottom:698.240133pt;}
.y1b5{bottom:698.786667pt;}
.y158{bottom:711.876000pt;}
.y54{bottom:713.862267pt;}
.y112{bottom:714.114133pt;}
.y13d{bottom:714.224533pt;}
.ya6{bottom:714.240133pt;}
.y1b4{bottom:714.786667pt;}
.y157{bottom:727.876000pt;}
.y53{bottom:729.862267pt;}
.y111{bottom:730.114133pt;}
.y13c{bottom:730.224533pt;}
.ya5{bottom:730.240133pt;}
.y1b3{bottom:730.786667pt;}
.y10{bottom:738.591600pt;}
.y156{bottom:743.876000pt;}
.y52{bottom:745.862267pt;}
.y110{bottom:746.114133pt;}
.y13b{bottom:746.224533pt;}
.ya4{bottom:746.240133pt;}
.y1b2{bottom:746.786667pt;}
.yf{bottom:751.924933pt;}
.y155{bottom:759.876000pt;}
.y51{bottom:761.862267pt;}
.y10f{bottom:762.114133pt;}
.y13a{bottom:762.224533pt;}
.ya3{bottom:762.240133pt;}
.y1b1{bottom:762.786667pt;}
.ye{bottom:765.258267pt;}
.y154{bottom:775.876000pt;}
.y50{bottom:777.862267pt;}
.y10e{bottom:778.114133pt;}
.y139{bottom:778.224533pt;}
.ya2{bottom:778.240133pt;}
.yd{bottom:778.591600pt;}
.y1b0{bottom:778.786667pt;}
.yc{bottom:791.924933pt;}
.y4f{bottom:793.862267pt;}
.y138{bottom:794.224533pt;}
.ya1{bottom:794.240133pt;}
.y1af{bottom:794.786667pt;}
.yb{bottom:805.258267pt;}
.y4e{bottom:809.862267pt;}
.y10d{bottom:809.988133pt;}
.y137{bottom:810.224533pt;}
.yaf{bottom:810.240133pt;}
.y1ae{bottom:810.786667pt;}
.ya{bottom:818.591600pt;}
.y4d{bottom:825.862267pt;}
.ya0{bottom:826.114133pt;}
.y136{bottom:826.224533pt;}
.y1ad{bottom:826.786667pt;}
.y4c{bottom:841.862267pt;}
.yae{bottom:842.114133pt;}
.y135{bottom:842.224533pt;}
.y1ac{bottom:842.786667pt;}
.y9{bottom:845.259067pt;}
.y4b{bottom:857.862267pt;}
.y134{bottom:858.224533pt;}
.y1ab{bottom:858.786667pt;}
.y4a{bottom:873.862267pt;}
.y133{bottom:874.224533pt;}
.y1aa{bottom:874.786667pt;}
.y8{bottom:887.925733pt;}
.y49{bottom:889.862267pt;}
.y132{bottom:890.224533pt;}
.y1a9{bottom:890.786667pt;}
.y48{bottom:905.862267pt;}
.y131{bottom:906.224533pt;}
.y1a8{bottom:906.786667pt;}
.y7{bottom:917.259867pt;}
.y47{bottom:921.862267pt;}
.y130{bottom:922.224533pt;}
.y1a7{bottom:922.786667pt;}
.y6{bottom:935.926533pt;}
.y46{bottom:937.862267pt;}
.y12f{bottom:938.224533pt;}
.y1a6{bottom:938.786667pt;}
.y45{bottom:953.862267pt;}
.y12e{bottom:954.224533pt;}
.y1a5{bottom:954.786667pt;}
.y44{bottom:969.862267pt;}
.y12d{bottom:970.224533pt;}
.y4{bottom:970.768933pt;}
.y1a4{bottom:970.786667pt;}
.y43{bottom:985.862267pt;}
.y12c{bottom:986.224533pt;}
.yd2{bottom:986.773733pt;}
.y1a3{bottom:986.786667pt;}
.y42{bottom:1001.862267pt;}
.y3{bottom:1002.768933pt;}
.yd1{bottom:1002.773733pt;}
.y1a2{bottom:1002.786667pt;}
.y41{bottom:1017.862267pt;}
.y12b{bottom:1018.098533pt;}
.y2{bottom:1018.768933pt;}
.yd0{bottom:1018.773733pt;}
.y1a1{bottom:1018.786667pt;}
.y40{bottom:1053.389867pt;}
.y5{bottom:1059.660133pt;}
.he{height:23.812833pt;}
.h7{height:33.268229pt;}
.h2{height:34.421333pt;}
.h14{height:37.437500pt;}
.h13{height:38.020833pt;}
.h4{height:39.338667pt;}
.h9{height:42.117188pt;}
.hd{height:42.234375pt;}
.ha{height:42.632812pt;}
.h8{height:42.773438pt;}
.h15{height:46.796875pt;}
.h6{height:47.526042pt;}
.h3{height:49.173333pt;}
.h11{height:51.476562pt;}
.h12{height:51.619792pt;}
.hf{height:52.106771pt;}
.h10{height:52.278646pt;}
.hc{height:56.156250pt;}
.hb{height:57.031250pt;}
.h5{height:60.835938pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:75.590533pt;}
.xe{left:78.731867pt;}
.xc{left:80.294400pt;}
.xa{left:83.764400pt;}
.x2{left:85.390533pt;}
.x8{left:88.188400pt;}
.x7{left:94.488133pt;}
.xb{left:151.463067pt;}
.xd{left:230.558133pt;}
.xf{left:252.592533pt;}
.x10{left:266.687733pt;}
.x9{left:379.565333pt;}
.x5{left:408.022267pt;}
.x6{left:426.919867pt;}
.x3{left:636.222667pt;}
.x1{left:707.731600pt;}
}




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