
    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_5f0989c27006983e25eeacc7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.081000;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_bbf12acb1ef4270d6b850f9e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.074000;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_35e9fa097b017c7c5627ef03.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.074000;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_87cd26f099714976373731ee.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.080000;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;}
.m3{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.246202,0.000000,-0.043412,0.246202,0,0);-ms-transform:matrix(0.246202,0.000000,-0.043412,0.246202,0,0);-webkit-transform:matrix(0.246202,0.000000,-0.043412,0.246202,0,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);}
.m2{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);}
.v1{vertical-align:-19.580400px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.527600px;}
.ls5{letter-spacing:-1.260000px;}
.ls6{letter-spacing:-0.588000px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.588000px;}
.ls1{letter-spacing:1.881600px;}
.ls2{letter-spacing:5.292000px;}
.ls0{letter-spacing:5.760000px;}
.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;}
}
.ws0{word-spacing:-17.136000px;}
.ws3{word-spacing:-13.935600px;}
.ws11e{word-spacing:-13.347600px;}
.ws52{word-spacing:-12.936000px;}
.ws1{word-spacing:-12.642000px;}
.ws4{word-spacing:-9.954000px;}
.ws53{word-spacing:-8.124455px;}
.ws61{word-spacing:-7.938000px;}
.ws2{word-spacing:-7.747370px;}
.ws103{word-spacing:-7.702800px;}
.wsfc{word-spacing:-6.762000px;}
.ws49{word-spacing:-6.350400px;}
.ws7d{word-spacing:-5.880000px;}
.wsd3{word-spacing:-5.468400px;}
.wscd{word-spacing:-5.115600px;}
.wsff{word-spacing:-5.056800px;}
.wsb3{word-spacing:-4.998000px;}
.wsa0{word-spacing:-4.821600px;}
.ws4f{word-spacing:-4.704000px;}
.ws73{word-spacing:-4.468800px;}
.ws9{word-spacing:-4.410000px;}
.ws111{word-spacing:-4.351200px;}
.ws24{word-spacing:-4.116000px;}
.wsb0{word-spacing:-4.057200px;}
.ws93{word-spacing:-3.939600px;}
.ws105{word-spacing:-3.880800px;}
.wsc3{word-spacing:-3.704400px;}
.ws119{word-spacing:-3.645600px;}
.wsad{word-spacing:-3.586800px;}
.ws16{word-spacing:-3.528000px;}
.wsc9{word-spacing:-3.469200px;}
.wsf8{word-spacing:-3.410400px;}
.ws106{word-spacing:-3.351600px;}
.wse5{word-spacing:-3.292800px;}
.ws4c{word-spacing:-3.234000px;}
.wsec{word-spacing:-3.116400px;}
.ws7a{word-spacing:-3.057600px;}
.ws1c{word-spacing:-2.998800px;}
.ws3d{word-spacing:-2.881200px;}
.ws98{word-spacing:-2.763600px;}
.ws4d{word-spacing:-2.704800px;}
.wsc4{word-spacing:-2.646000px;}
.ws9c{word-spacing:-2.587200px;}
.ws63{word-spacing:-2.528400px;}
.wsc7{word-spacing:-2.410800px;}
.wsf6{word-spacing:-2.352000px;}
.ws85{word-spacing:-2.234400px;}
.ws86{word-spacing:-2.175600px;}
.wsb2{word-spacing:-2.116800px;}
.wsf7{word-spacing:-2.058000px;}
.wse3{word-spacing:-1.999200px;}
.ws1b{word-spacing:-1.940400px;}
.ws75{word-spacing:-1.881600px;}
.ws30{word-spacing:-1.822800px;}
.ws110{word-spacing:-1.764000px;}
.wsa{word-spacing:-1.705200px;}
.wsb5{word-spacing:-1.646400px;}
.wsa9{word-spacing:-1.587600px;}
.ws32{word-spacing:-1.528800px;}
.wsee{word-spacing:-1.470000px;}
.wsf2{word-spacing:-1.411200px;}
.wsf3{word-spacing:-1.352400px;}
.ws65{word-spacing:-1.293600px;}
.ws17{word-spacing:-1.234800px;}
.ws50{word-spacing:-1.176000px;}
.ws66{word-spacing:-1.117200px;}
.wsaf{word-spacing:-1.058400px;}
.ws99{word-spacing:-0.999600px;}
.ws2f{word-spacing:-0.882000px;}
.wsef{word-spacing:-0.823200px;}
.wsa7{word-spacing:-0.764400px;}
.ws89{word-spacing:-0.705600px;}
.ws62{word-spacing:-0.646800px;}
.ws4e{word-spacing:-0.588000px;}
.ws6e{word-spacing:-0.529200px;}
.ws51{word-spacing:-0.470400px;}
.wsd6{word-spacing:-0.411600px;}
.ws25{word-spacing:-0.352800px;}
.wsa8{word-spacing:-0.294000px;}
.ws58{word-spacing:-0.235200px;}
.ws81{word-spacing:-0.176400px;}
.ws5a{word-spacing:-0.117600px;}
.ws57{word-spacing:-0.058800px;}
.ws5{word-spacing:0.000000px;}
.wsa1{word-spacing:0.058800px;}
.wsea{word-spacing:0.117600px;}
.ws8e{word-spacing:0.176400px;}
.ws1d{word-spacing:0.192000px;}
.wsc{word-spacing:0.235200px;}
.ws82{word-spacing:0.352800px;}
.ws35{word-spacing:0.411600px;}
.ws8{word-spacing:0.470400px;}
.wsac{word-spacing:0.529200px;}
.wsde{word-spacing:0.588000px;}
.wsd7{word-spacing:0.646800px;}
.ws7c{word-spacing:0.823200px;}
.ws7{word-spacing:0.882000px;}
.ws54{word-spacing:0.940800px;}
.ws56{word-spacing:0.999600px;}
.ws125{word-spacing:1.058400px;}
.wsed{word-spacing:1.117200px;}
.wse6{word-spacing:1.176000px;}
.wscf{word-spacing:1.234800px;}
.ws11f{word-spacing:1.260000px;}
.ws78{word-spacing:1.293600px;}
.wsd5{word-spacing:1.352400px;}
.ws7b{word-spacing:1.411200px;}
.wse2{word-spacing:1.470000px;}
.ws11c{word-spacing:1.528800px;}
.wse1{word-spacing:1.587600px;}
.wsc8{word-spacing:1.646400px;}
.wsb9{word-spacing:1.705200px;}
.ws59{word-spacing:1.764000px;}
.wsc2{word-spacing:1.822800px;}
.wsae{word-spacing:1.881600px;}
.ws6f{word-spacing:1.940400px;}
.ws102{word-spacing:1.999200px;}
.ws10c{word-spacing:2.058000px;}
.ws6{word-spacing:2.116800px;}
.ws6c{word-spacing:2.175600px;}
.wsfb{word-spacing:2.234400px;}
.wsf1{word-spacing:2.410800px;}
.wsbc{word-spacing:2.469600px;}
.ws94{word-spacing:2.528400px;}
.ws29{word-spacing:2.587200px;}
.ws70{word-spacing:2.646000px;}
.wsd8{word-spacing:2.704800px;}
.wsb{word-spacing:2.763600px;}
.wseb{word-spacing:2.881200px;}
.ws3f{word-spacing:2.940000px;}
.wsbd{word-spacing:2.998800px;}
.ws83{word-spacing:3.057600px;}
.wsdd{word-spacing:3.116400px;}
.ws3e{word-spacing:3.175200px;}
.wsaa{word-spacing:3.234000px;}
.wsc0{word-spacing:3.292800px;}
.wsb7{word-spacing:3.351600px;}
.ws64{word-spacing:3.410400px;}
.wsf{word-spacing:3.528000px;}
.ws11d{word-spacing:3.586800px;}
.ws121{word-spacing:3.645600px;}
.wsb1{word-spacing:3.704400px;}
.ws8c{word-spacing:3.763200px;}
.ws8a{word-spacing:3.822000px;}
.ws45{word-spacing:3.880800px;}
.wsd0{word-spacing:3.998400px;}
.ws9a{word-spacing:4.057200px;}
.ws67{word-spacing:4.116000px;}
.ws13{word-spacing:4.174800px;}
.ws44{word-spacing:4.233600px;}
.ws90{word-spacing:4.292400px;}
.ws5f{word-spacing:4.351200px;}
.ws10d{word-spacing:4.410000px;}
.ws28{word-spacing:4.586400px;}
.wsab{word-spacing:4.645200px;}
.ws26{word-spacing:4.704000px;}
.ws31{word-spacing:4.762800px;}
.ws2a{word-spacing:4.821600px;}
.wsd2{word-spacing:4.880400px;}
.ws27{word-spacing:4.939200px;}
.ws124{word-spacing:4.998000px;}
.ws117{word-spacing:5.056800px;}
.ws36{word-spacing:5.115600px;}
.ws34{word-spacing:5.233200px;}
.wsa2{word-spacing:5.350800px;}
.wsca{word-spacing:5.409600px;}
.wsc5{word-spacing:5.468400px;}
.ws2d{word-spacing:5.527200px;}
.wsa4{word-spacing:5.644800px;}
.ws2e{word-spacing:5.703600px;}
.ws40{word-spacing:5.762400px;}
.ws55{word-spacing:5.821200px;}
.wsd{word-spacing:5.880000px;}
.ws19{word-spacing:5.938800px;}
.ws77{word-spacing:5.997600px;}
.wsa6{word-spacing:6.056400px;}
.ws14{word-spacing:6.115200px;}
.ws10{word-spacing:6.174000px;}
.ws42{word-spacing:6.232800px;}
.ws5e{word-spacing:6.291600px;}
.wsdc{word-spacing:6.409200px;}
.wscb{word-spacing:6.468000px;}
.ws101{word-spacing:6.526800px;}
.ws1e{word-spacing:6.528000px;}
.wse9{word-spacing:6.585600px;}
.ws7e{word-spacing:6.644400px;}
.ws41{word-spacing:6.703200px;}
.wsdf{word-spacing:6.762000px;}
.wsc6{word-spacing:6.820800px;}
.wsa3{word-spacing:6.879600px;}
.ws7f{word-spacing:6.938400px;}
.ws3c{word-spacing:6.997200px;}
.wsf4{word-spacing:7.056000px;}
.ws96{word-spacing:7.114800px;}
.ws43{word-spacing:7.173600px;}
.ws8f{word-spacing:7.232400px;}
.ws11{word-spacing:7.291200px;}
.ws91{word-spacing:7.350000px;}
.wsfd{word-spacing:7.585200px;}
.ws88{word-spacing:7.644000px;}
.ws80{word-spacing:7.820400px;}
.ws8d{word-spacing:7.879200px;}
.ws97{word-spacing:7.938000px;}
.wsce{word-spacing:7.996800px;}
.wse{word-spacing:8.055600px;}
.ws74{word-spacing:8.114400px;}
.ws6a{word-spacing:8.173200px;}
.ws9f{word-spacing:8.349600px;}
.ws47{word-spacing:8.408400px;}
.ws104{word-spacing:8.467200px;}
.ws68{word-spacing:8.584800px;}
.ws37{word-spacing:8.643600px;}
.wsbe{word-spacing:8.702400px;}
.ws2b{word-spacing:8.761200px;}
.wsa5{word-spacing:8.878800px;}
.wse8{word-spacing:8.937600px;}
.ws46{word-spacing:9.055200px;}
.ws3b{word-spacing:9.114000px;}
.ws5c{word-spacing:9.172800px;}
.ws113{word-spacing:9.290400px;}
.ws6b{word-spacing:9.408000px;}
.wsd4{word-spacing:9.466800px;}
.ws18{word-spacing:9.584400px;}
.ws4a{word-spacing:9.643200px;}
.ws5b{word-spacing:9.702000px;}
.ws95{word-spacing:9.760800px;}
.ws3a{word-spacing:9.819600px;}
.ws76{word-spacing:9.936000px;}
.ws92{word-spacing:9.937200px;}
.ws112{word-spacing:9.996000px;}
.ws87{word-spacing:10.113600px;}
.ws15{word-spacing:10.231200px;}
.ws72{word-spacing:10.348800px;}
.ws100{word-spacing:10.407600px;}
.ws39{word-spacing:10.466400px;}
.ws12{word-spacing:10.525200px;}
.wscc{word-spacing:10.701600px;}
.ws9e{word-spacing:10.819200px;}
.ws9b{word-spacing:11.113200px;}
.wsbb{word-spacing:11.172000px;}
.ws60{word-spacing:11.348400px;}
.ws1a{word-spacing:11.407200px;}
.wsb6{word-spacing:11.466000px;}
.wsdb{word-spacing:11.583600px;}
.ws4b{word-spacing:11.642400px;}
.ws116{word-spacing:11.760000px;}
.wsb4{word-spacing:11.877600px;}
.ws120{word-spacing:11.936400px;}
.ws33{word-spacing:12.054000px;}
.wse4{word-spacing:12.348000px;}
.wsf0{word-spacing:12.524400px;}
.ws115{word-spacing:12.700800px;}
.ws10b{word-spacing:12.759600px;}
.ws79{word-spacing:12.818400px;}
.ws114{word-spacing:12.936000px;}
.wse0{word-spacing:13.053600px;}
.wsd1{word-spacing:13.288800px;}
.ws38{word-spacing:13.347600px;}
.ws123{word-spacing:13.406400px;}
.ws10a{word-spacing:13.759200px;}
.ws11b{word-spacing:13.818000px;}
.ws22{word-spacing:13.935600px;}
.ws84{word-spacing:14.170800px;}
.ws122{word-spacing:14.406000px;}
.wsbf{word-spacing:14.700000px;}
.wsf5{word-spacing:14.758800px;}
.ws11a{word-spacing:14.935200px;}
.ws21{word-spacing:14.994000px;}
.wse7{word-spacing:15.111600px;}
.ws109{word-spacing:15.229200px;}
.ws5d{word-spacing:15.346800px;}
.ws48{word-spacing:15.405600px;}
.wsb8{word-spacing:15.640800px;}
.ws6d{word-spacing:15.699600px;}
.ws9d{word-spacing:15.817200px;}
.ws2c{word-spacing:15.934800px;}
.ws118{word-spacing:16.111200px;}
.wsda{word-spacing:16.170000px;}
.ws108{word-spacing:16.405200px;}
.ws10f{word-spacing:16.758000px;}
.wsfe{word-spacing:17.110800px;}
.ws23{word-spacing:17.287200px;}
.ws8b{word-spacing:17.581200px;}
.ws107{word-spacing:17.757600px;}
.wsc1{word-spacing:18.404400px;}
.ws1f{word-spacing:19.756800px;}
.ws20{word-spacing:21.814800px;}
.wsba{word-spacing:22.402800px;}
.wsfa{word-spacing:22.461600px;}
.wsf9{word-spacing:22.520400px;}
.ws71{word-spacing:25.872000px;}
.ws69{word-spacing:26.460000px;}
.wsd9{word-spacing:33.457200px;}
.ws10e{word-spacing:47.628000px;}
._7{margin-left:-2891.322000px;}
._a{margin-left:-9.296280px;}
._4{margin-left:-7.109760px;}
._8{margin-left:-5.934017px;}
._6{margin-left:-4.704000px;}
._3{margin-left:-3.284983px;}
._1{margin-left:-2.104200px;}
._2{margin-left:-1.012200px;}
._0{width:1.255800px;}
._b{width:2.277566px;}
._5{width:3.528000px;}
._9{width:57.024000px;}
.fc2{color:rgb(207,0,61);}
.fc1{color:rgb(0,0,0);}
.fc3{color:rgb(87,87,86);}
.fc0{color:rgb(60,60,59);}
.fs4{font-size:34.280400px;}
.fs1{font-size:42.000000px;}
.fs3{font-size:42.647929px;}
.fs2{font-size:48.000000px;}
.fs0{font-size:58.800000px;}
.fs7{font-size:66.000000px;}
.fs5{font-size:84.000000px;}
.fs6{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:49.274700px;}
.y74{bottom:70.895250px;}
.yb0{bottom:74.409600px;}
.y28{bottom:81.211350px;}
.y1a0{bottom:81.454800px;}
.y1c1{bottom:85.717800px;}
.yef{bottom:85.776600px;}
.y73{bottom:87.388650px;}
.yaf{bottom:87.909600px;}
.y12d{bottom:89.319300px;}
.y169{bottom:93.582300px;}
.y27{bottom:97.704750px;}
.y19f{bottom:97.948200px;}
.y1f1{bottom:102.111150px;}
.y1c0{bottom:102.211200px;}
.yee{bottom:102.578700px;}
.y72{bottom:103.882050px;}
.y253{bottom:105.188400px;}
.y12c{bottom:105.812700px;}
.y168{bottom:110.075700px;}
.y26{bottom:114.198150px;}
.y19e{bottom:114.441600px;}
.y1f0{bottom:118.604550px;}
.y1bf{bottom:118.704600px;}
.yed{bottom:119.380800px;}
.y71{bottom:120.375450px;}
.y252{bottom:121.681800px;}
.y12b{bottom:122.306100px;}
.yae{bottom:126.555900px;}
.y167{bottom:126.569100px;}
.y25{bottom:130.691550px;}
.y19d{bottom:130.935000px;}
.y212{bottom:134.998950px;}
.y1ef{bottom:135.097950px;}
.y1be{bottom:135.198000px;}
.yec{bottom:136.182900px;}
.y70{bottom:136.868850px;}
.y251{bottom:138.175200px;}
.y12a{bottom:138.799500px;}
.yad{bottom:143.049300px;}
.y166{bottom:143.062500px;}
.y24{bottom:147.184950px;}
.y19c{bottom:147.428400px;}
.y211{bottom:151.492350px;}
.y1ee{bottom:151.591350px;}
.y1bd{bottom:151.691400px;}
.yeb{bottom:152.985000px;}
.y6f{bottom:153.362250px;}
.y250{bottom:154.668600px;}
.y129{bottom:155.292900px;}
.yac{bottom:159.542700px;}
.y165{bottom:159.555900px;}
.y19b{bottom:163.921800px;}
.y210{bottom:167.985750px;}
.y1ed{bottom:168.084750px;}
.y1bc{bottom:168.184800px;}
.yea{bottom:169.787100px;}
.y6e{bottom:169.855650px;}
.y24f{bottom:171.162000px;}
.y128{bottom:171.786300px;}
.yab{bottom:176.036100px;}
.y164{bottom:176.049300px;}
.y19a{bottom:180.415200px;}
.y20f{bottom:184.479150px;}
.y1ec{bottom:184.578150px;}
.y1bb{bottom:184.678200px;}
.y6d{bottom:186.349050px;}
.ye9{bottom:186.589200px;}
.y24e{bottom:187.655400px;}
.y127{bottom:188.279700px;}
.y23{bottom:188.683050px;}
.yaa{bottom:192.529500px;}
.y163{bottom:192.542700px;}
.y199{bottom:196.908600px;}
.y20e{bottom:200.972550px;}
.y1eb{bottom:201.071550px;}
.y1ba{bottom:201.171600px;}
.y6c{bottom:202.842450px;}
.ye8{bottom:203.391300px;}
.y24d{bottom:204.148800px;}
.y126{bottom:204.773100px;}
.y22{bottom:205.176450px;}
.ya9{bottom:209.022900px;}
.y162{bottom:209.036100px;}
.y198{bottom:213.402000px;}
.y20d{bottom:217.465950px;}
.y1ea{bottom:217.564950px;}
.y1b9{bottom:217.665000px;}
.y6b{bottom:219.335850px;}
.ye7{bottom:220.193400px;}
.y24c{bottom:220.642200px;}
.y125{bottom:221.266500px;}
.y21{bottom:221.669850px;}
.ya8{bottom:225.516300px;}
.y161{bottom:225.529500px;}
.y197{bottom:229.895400px;}
.y20c{bottom:233.959350px;}
.y1e9{bottom:234.058350px;}
.y1b8{bottom:234.158400px;}
.y6a{bottom:235.829250px;}
.ye6{bottom:236.995500px;}
.y24b{bottom:237.135600px;}
.y124{bottom:237.759900px;}
.y20{bottom:238.163250px;}
.ya7{bottom:242.009700px;}
.y160{bottom:242.022900px;}
.y196{bottom:246.388800px;}
.y20b{bottom:250.452750px;}
.y1e8{bottom:250.551750px;}
.y1b7{bottom:250.651800px;}
.y69{bottom:252.322650px;}
.y24a{bottom:253.629000px;}
.ye5{bottom:253.797600px;}
.y123{bottom:254.253300px;}
.y1f{bottom:254.656650px;}
.ya6{bottom:258.503100px;}
.y15f{bottom:258.516300px;}
.y195{bottom:262.882200px;}
.y20a{bottom:266.946150px;}
.y1e7{bottom:267.045150px;}
.y1b6{bottom:267.145200px;}
.y68{bottom:268.816050px;}
.y249{bottom:270.122400px;}
.ye4{bottom:270.599700px;}
.y122{bottom:270.746700px;}
.y1e{bottom:271.150050px;}
.ya5{bottom:274.996500px;}
.y15e{bottom:275.009700px;}
.y194{bottom:279.375600px;}
.y209{bottom:283.439550px;}
.y1e6{bottom:283.538550px;}
.y1b5{bottom:283.638600px;}
.y67{bottom:285.309450px;}
.y248{bottom:286.615800px;}
.y121{bottom:287.240100px;}
.ye3{bottom:287.401800px;}
.y1d{bottom:287.643450px;}
.ya4{bottom:291.489900px;}
.y15d{bottom:291.503100px;}
.y193{bottom:295.869000px;}
.y208{bottom:299.932950px;}
.y1e5{bottom:300.031950px;}
.y1b4{bottom:300.132000px;}
.y66{bottom:301.802850px;}
.y247{bottom:303.109200px;}
.y120{bottom:303.733500px;}
.y1c{bottom:304.136850px;}
.ye2{bottom:304.203900px;}
.ya3{bottom:307.983300px;}
.y15c{bottom:307.996500px;}
.y192{bottom:312.362400px;}
.y207{bottom:316.426350px;}
.y1e4{bottom:316.525350px;}
.y1b3{bottom:316.625400px;}
.y65{bottom:318.296250px;}
.y246{bottom:319.602600px;}
.y11f{bottom:320.226900px;}
.y1b{bottom:320.630250px;}
.ye1{bottom:321.006000px;}
.ya2{bottom:324.476700px;}
.y15b{bottom:324.489900px;}
.y191{bottom:328.855800px;}
.y206{bottom:332.919750px;}
.y1e3{bottom:333.018750px;}
.y1b2{bottom:333.118800px;}
.y64{bottom:334.789650px;}
.y245{bottom:336.096000px;}
.y11e{bottom:336.720300px;}
.ye0{bottom:337.808100px;}
.ya1{bottom:340.970100px;}
.y15a{bottom:340.983300px;}
.y190{bottom:345.349200px;}
.y205{bottom:349.413150px;}
.y1e2{bottom:349.512150px;}
.y1b1{bottom:349.612200px;}
.y1a{bottom:349.895100px;}
.y63{bottom:351.283050px;}
.y244{bottom:352.589400px;}
.y11d{bottom:353.213700px;}
.ydf{bottom:354.610200px;}
.ya0{bottom:357.463500px;}
.y159{bottom:357.476700px;}
.y18f{bottom:361.842600px;}
.y204{bottom:365.906550px;}
.y1e1{bottom:366.005550px;}
.y1b0{bottom:366.105600px;}
.y62{bottom:367.776450px;}
.y243{bottom:369.082800px;}
.y11c{bottom:369.707100px;}
.yde{bottom:371.412300px;}
.y9f{bottom:373.956900px;}
.y158{bottom:373.970100px;}
.y19{bottom:377.281200px;}
.y18e{bottom:378.336000px;}
.y203{bottom:382.399950px;}
.y1e0{bottom:382.498950px;}
.y1af{bottom:382.599000px;}
.y61{bottom:384.269850px;}
.y242{bottom:385.576200px;}
.y11b{bottom:386.200500px;}
.ydd{bottom:388.214400px;}
.y9e{bottom:390.450300px;}
.y157{bottom:390.463500px;}
.y18d{bottom:394.829400px;}
.y202{bottom:398.893350px;}
.y1df{bottom:398.992350px;}
.y1ae{bottom:399.092400px;}
.y60{bottom:400.763250px;}
.y241{bottom:402.069600px;}
.y11a{bottom:402.693900px;}
.ydc{bottom:405.016500px;}
.y9d{bottom:406.943700px;}
.y156{bottom:406.956900px;}
.y18c{bottom:411.322800px;}
.y201{bottom:415.386750px;}
.y1de{bottom:415.485750px;}
.y1ad{bottom:415.585800px;}
.y18{bottom:416.198700px;}
.y5f{bottom:417.256650px;}
.y240{bottom:418.563000px;}
.y119{bottom:419.187300px;}
.ydb{bottom:421.818600px;}
.y9c{bottom:423.437100px;}
.y155{bottom:423.450300px;}
.y18b{bottom:427.816200px;}
.y200{bottom:431.880150px;}
.y1dd{bottom:431.979150px;}
.y1ac{bottom:432.079200px;}
.y17{bottom:432.692100px;}
.y5e{bottom:433.750050px;}
.y23f{bottom:435.056400px;}
.y118{bottom:435.680700px;}
.yda{bottom:438.620700px;}
.y9b{bottom:439.930500px;}
.y154{bottom:439.943700px;}
.y18a{bottom:444.309600px;}
.y1ff{bottom:448.373550px;}
.y1dc{bottom:448.472550px;}
.y1ab{bottom:448.572600px;}
.y16{bottom:449.185500px;}
.y5d{bottom:450.243450px;}
.y23e{bottom:451.549800px;}
.y117{bottom:452.174100px;}
.yd9{bottom:455.422800px;}
.y9a{bottom:456.423900px;}
.y153{bottom:456.437100px;}
.y1fe{bottom:464.866950px;}
.y1db{bottom:464.965950px;}
.y189{bottom:465.066000px;}
.y15{bottom:465.678900px;}
.y5c{bottom:466.736850px;}
.y23d{bottom:468.043200px;}
.y116{bottom:468.667500px;}
.yd8{bottom:472.224900px;}
.y99{bottom:472.917300px;}
.y152{bottom:472.930500px;}
.y1fd{bottom:481.360350px;}
.y1da{bottom:481.459350px;}
.y1aa{bottom:481.559400px;}
.y14{bottom:482.172300px;}
.y5b{bottom:483.230250px;}
.y23c{bottom:484.536600px;}
.y115{bottom:485.160900px;}
.yd7{bottom:489.027000px;}
.y98{bottom:489.410700px;}
.y151{bottom:489.423900px;}
.y1fc{bottom:497.853750px;}
.y1d9{bottom:497.952750px;}
.y1a9{bottom:498.052800px;}
.y13{bottom:498.665700px;}
.y5a{bottom:499.723650px;}
.y23b{bottom:501.030000px;}
.y114{bottom:501.654300px;}
.y188{bottom:502.418700px;}
.yd6{bottom:505.829100px;}
.y97{bottom:505.904100px;}
.y150{bottom:505.917300px;}
.y1fb{bottom:514.347150px;}
.y1d8{bottom:514.446150px;}
.y1a8{bottom:514.546200px;}
.y12{bottom:515.159100px;}
.y59{bottom:516.217050px;}
.y23a{bottom:517.523400px;}
.y113{bottom:518.147700px;}
.y187{bottom:518.912100px;}
.y14f{bottom:522.410700px;}
.yd5{bottom:522.631200px;}
.y96{bottom:526.660500px;}
.y1fa{bottom:530.840550px;}
.y1d7{bottom:530.939550px;}
.y1a7{bottom:531.039600px;}
.y11{bottom:531.652500px;}
.y58{bottom:532.710450px;}
.y239{bottom:534.016800px;}
.y186{bottom:535.405500px;}
.y112{bottom:538.904100px;}
.yd4{bottom:539.433300px;}
.y14e{bottom:543.167100px;}
.y1f9{bottom:547.333950px;}
.y1d6{bottom:547.432950px;}
.y1a6{bottom:547.533000px;}
.y10{bottom:548.145900px;}
.y57{bottom:549.203850px;}
.y238{bottom:550.510200px;}
.y185{bottom:551.898900px;}
.yd3{bottom:556.235400px;}
.y1f8{bottom:563.827350px;}
.y1d5{bottom:563.926350px;}
.y95{bottom:564.013200px;}
.y1a5{bottom:564.026400px;}
.y56{bottom:565.697250px;}
.y237{bottom:567.003600px;}
.y184{bottom:568.392300px;}
.yd2{bottom:573.037500px;}
.y111{bottom:576.256800px;}
.yf{bottom:577.410900px;}
.y1f7{bottom:580.320750px;}
.y1d4{bottom:580.419750px;}
.y94{bottom:580.506600px;}
.y14d{bottom:580.519800px;}
.y236{bottom:583.497000px;}
.y183{bottom:584.885700px;}
.y55{bottom:586.446300px;}
.yd1{bottom:589.839600px;}
.y110{bottom:592.750200px;}
.y1f6{bottom:596.814150px;}
.y1d3{bottom:596.913150px;}
.y93{bottom:597.000000px;}
.y14c{bottom:597.013200px;}
.y235{bottom:599.990400px;}
.y182{bottom:601.379100px;}
.ye{bottom:604.797000px;}
.y54{bottom:605.949300px;}
.yd0{bottom:606.641700px;}
.y10f{bottom:609.243600px;}
.y1f5{bottom:613.307550px;}
.y1d2{bottom:613.406550px;}
.y92{bottom:613.493400px;}
.y14b{bottom:613.506600px;}
.y234{bottom:616.483800px;}
.y181{bottom:617.872500px;}
.ycf{bottom:623.443800px;}
.y10e{bottom:625.737000px;}
.y1d1{bottom:629.899950px;}
.y91{bottom:629.986800px;}
.y14a{bottom:630.000000px;}
.y233{bottom:632.977200px;}
.y1f4{bottom:634.059450px;}
.y180{bottom:634.365900px;}
.yce{bottom:640.245900px;}
.y10d{bottom:642.230400px;}
.y53{bottom:643.472550px;}
.yd{bottom:643.714500px;}
.y1d0{bottom:646.393350px;}
.y90{bottom:646.480200px;}
.y149{bottom:646.493400px;}
.y232{bottom:649.470600px;}
.y17f{bottom:650.859300px;}
.ycd{bottom:657.048000px;}
.y10c{bottom:658.723800px;}
.y52{bottom:659.965950px;}
.yc{bottom:660.207900px;}
.y1cf{bottom:662.886750px;}
.y1a4{bottom:662.986800px;}
.y231{bottom:665.964000px;}
.y8f{bottom:667.236600px;}
.y148{bottom:667.249800px;}
.y17e{bottom:667.352700px;}
.y1f3{bottom:671.615700px;}
.ycc{bottom:673.850100px;}
.y10b{bottom:675.217200px;}
.y51{bottom:676.459350px;}
.yb{bottom:676.701300px;}
.y1ce{bottom:679.380150px;}
.y1a3{bottom:679.480200px;}
.y230{bottom:682.457400px;}
.y17d{bottom:683.846100px;}
.y1f2{bottom:688.109100px;}
.ycb{bottom:690.652200px;}
.y10a{bottom:691.710600px;}
.y50{bottom:692.952750px;}
.ya{bottom:693.194700px;}
.y1cd{bottom:695.873550px;}
.y1a2{bottom:695.973600px;}
.y22f{bottom:698.950800px;}
.y17c{bottom:700.339500px;}
.y8e{bottom:704.589300px;}
.y147{bottom:704.602500px;}
.yca{bottom:707.454300px;}
.y109{bottom:708.204000px;}
.y4f{bottom:709.446150px;}
.y9{bottom:709.688100px;}
.y1cc{bottom:712.366950px;}
.y22e{bottom:715.444200px;}
.y1a1{bottom:716.730000px;}
.y17b{bottom:716.832900px;}
.y8d{bottom:721.082700px;}
.y146{bottom:721.095900px;}
.yc9{bottom:724.256400px;}
.y108{bottom:724.697400px;}
.y4e{bottom:725.939550px;}
.y8{bottom:726.181500px;}
.y1cb{bottom:728.860350px;}
.y22d{bottom:731.937600px;}
.y17a{bottom:733.326300px;}
.y8c{bottom:737.576100px;}
.y145{bottom:737.589300px;}
.yc8{bottom:741.058500px;}
.y107{bottom:741.190800px;}
.y4d{bottom:742.432950px;}
.y7{bottom:742.674900px;}
.y1ca{bottom:745.353750px;}
.y22c{bottom:748.431000px;}
.y179{bottom:749.819700px;}
.y8b{bottom:754.069500px;}
.y144{bottom:754.082700px;}
.y106{bottom:757.684200px;}
.yc7{bottom:757.860600px;}
.y4c{bottom:758.926350px;}
.y6{bottom:759.168300px;}
.y1c9{bottom:761.847150px;}
.y22b{bottom:764.924400px;}
.y178{bottom:766.313100px;}
.y8a{bottom:770.562900px;}
.y143{bottom:770.576100px;}
.y105{bottom:774.177600px;}
.yc6{bottom:774.662700px;}
.y4b{bottom:775.419750px;}
.y5{bottom:775.661700px;}
.y1c8{bottom:778.340550px;}
.y22a{bottom:781.417800px;}
.y177{bottom:782.806500px;}
.y89{bottom:787.056300px;}
.y142{bottom:787.069500px;}
.y104{bottom:790.671000px;}
.yc5{bottom:791.464800px;}
.y4a{bottom:791.913150px;}
.y1c7{bottom:794.833950px;}
.y229{bottom:797.911200px;}
.y176{bottom:799.299900px;}
.y88{bottom:803.549700px;}
.y141{bottom:803.562900px;}
.y103{bottom:807.164400px;}
.yc4{bottom:808.266900px;}
.y49{bottom:808.406550px;}
.y1c6{bottom:811.327350px;}
.y228{bottom:814.404600px;}
.y33{bottom:814.703850px;}
.y175{bottom:815.793300px;}
.y87{bottom:820.043100px;}
.y140{bottom:820.056300px;}
.y102{bottom:823.657800px;}
.y48{bottom:824.899950px;}
.yc3{bottom:825.069000px;}
.y1c5{bottom:827.820750px;}
.y227{bottom:830.898000px;}
.y174{bottom:832.286700px;}
.y86{bottom:836.536500px;}
.y13f{bottom:836.549700px;}
.y101{bottom:840.151200px;}
.y47{bottom:841.393350px;}
.yc2{bottom:841.871100px;}
.y1c4{bottom:844.314150px;}
.y226{bottom:847.391400px;}
.y173{bottom:848.780100px;}
.y32{bottom:851.107500px;}
.y85{bottom:853.029900px;}
.y13e{bottom:853.043100px;}
.y100{bottom:856.644600px;}
.y46{bottom:857.886750px;}
.yc1{bottom:858.673200px;}
.y1c3{bottom:860.807550px;}
.y225{bottom:863.884800px;}
.y172{bottom:865.273500px;}
.y31{bottom:865.351500px;}
.y84{bottom:869.523300px;}
.y13d{bottom:869.536500px;}
.yff{bottom:873.138000px;}
.y45{bottom:874.380150px;}
.yc0{bottom:875.475300px;}
.y224{bottom:880.378200px;}
.y1c2{bottom:881.559450px;}
.y171{bottom:881.766900px;}
.y30{bottom:883.855500px;}
.y83{bottom:886.016700px;}
.y13c{bottom:886.029900px;}
.yfe{bottom:889.631400px;}
.y44{bottom:890.873550px;}
.ybf{bottom:892.277400px;}
.y223{bottom:896.871600px;}
.y2f{bottom:898.099500px;}
.y170{bottom:898.260300px;}
.y82{bottom:902.510100px;}
.y13b{bottom:902.523300px;}
.yfd{bottom:906.124800px;}
.y43{bottom:907.366950px;}
.ybe{bottom:909.079500px;}
.y2e{bottom:912.343500px;}
.y222{bottom:913.365000px;}
.y16f{bottom:914.753700px;}
.y81{bottom:919.003500px;}
.y13a{bottom:919.016700px;}
.yfc{bottom:922.618200px;}
.y42{bottom:923.860350px;}
.ybd{bottom:925.881600px;}
.y221{bottom:929.858400px;}
.y2d{bottom:930.847500px;}
.y16e{bottom:931.247100px;}
.y80{bottom:935.496900px;}
.y139{bottom:935.510100px;}
.yfb{bottom:939.111600px;}
.y41{bottom:940.353750px;}
.ybc{bottom:942.683700px;}
.y2c{bottom:945.091500px;}
.y220{bottom:946.351800px;}
.y16d{bottom:947.740500px;}
.y7f{bottom:951.990300px;}
.y138{bottom:952.003500px;}
.yfa{bottom:955.605000px;}
.y40{bottom:956.847150px;}
.y2b{bottom:959.335500px;}
.ybb{bottom:959.485800px;}
.y21f{bottom:962.845200px;}
.y16c{bottom:964.233900px;}
.y7e{bottom:968.483700px;}
.y137{bottom:968.496900px;}
.y3f{bottom:973.340550px;}
.yba{bottom:976.287900px;}
.yf9{bottom:976.361400px;}
.y21e{bottom:979.338600px;}
.y16b{bottom:980.727300px;}
.y7d{bottom:984.977100px;}
.y136{bottom:984.990300px;}
.y3e{bottom:989.833950px;}
.yb9{bottom:993.090000px;}
.y21d{bottom:995.832000px;}
.y16a{bottom:997.220700px;}
.y7c{bottom:1001.470500px;}
.y135{bottom:1001.483700px;}
.y3d{bottom:1006.327350px;}
.y2a{bottom:1009.872900px;}
.yb8{bottom:1009.892100px;}
.y21c{bottom:1012.325400px;}
.yf8{bottom:1013.714100px;}
.y7b{bottom:1017.963900px;}
.y134{bottom:1017.977100px;}
.y3c{bottom:1022.820750px;}
.yb7{bottom:1026.694200px;}
.y21b{bottom:1028.818800px;}
.yf7{bottom:1030.207500px;}
.y7a{bottom:1034.457300px;}
.y133{bottom:1034.470500px;}
.y29{bottom:1036.877400px;}
.y3b{bottom:1039.314150px;}
.yb6{bottom:1043.496300px;}
.y21a{bottom:1045.312200px;}
.yf6{bottom:1046.700900px;}
.y79{bottom:1050.950700px;}
.y132{bottom:1050.963900px;}
.y3a{bottom:1055.807550px;}
.yb5{bottom:1060.298400px;}
.y219{bottom:1061.805600px;}
.yf5{bottom:1063.194300px;}
.y78{bottom:1067.444100px;}
.y131{bottom:1067.457300px;}
.y39{bottom:1076.556450px;}
.y218{bottom:1078.299000px;}
.yf4{bottom:1079.687700px;}
.yb4{bottom:1081.348800px;}
.y77{bottom:1083.937500px;}
.y130{bottom:1083.950700px;}
.y217{bottom:1094.792400px;}
.y38{bottom:1096.059450px;}
.yf3{bottom:1096.181100px;}
.y2{bottom:1099.275600px;}
.y76{bottom:1100.430900px;}
.y12f{bottom:1100.444100px;}
.y216{bottom:1111.285800px;}
.yf2{bottom:1112.674500px;}
.y1{bottom:1114.275600px;}
.y3{bottom:1115.204400px;}
.yb3{bottom:1116.011400px;}
.y75{bottom:1116.924300px;}
.y12e{bottom:1116.937500px;}
.y215{bottom:1127.779200px;}
.yf1{bottom:1129.167900px;}
.yb2{bottom:1132.813500px;}
.y37{bottom:1133.430900px;}
.y214{bottom:1144.272600px;}
.yf0{bottom:1145.661300px;}
.yb1{bottom:1149.615600px;}
.y36{bottom:1149.924300px;}
.y213{bottom:1165.024500px;}
.y35{bottom:1166.417700px;}
.y34{bottom:1205.693550px;}
.h3{height:37.212000px;}
.h5{height:37.786065px;}
.h4{height:42.528000px;}
.h2{height:52.096800px;}
.h6{height:54.843600px;}
.h9{height:58.476000px;}
.h7{height:74.424000px;}
.h8{height:90.372000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:85.464600px;}
.x1{left:93.160650px;}
.xc{left:97.795350px;}
.x11{left:106.339650px;}
.x14{left:109.039350px;}
.x5{left:119.274300px;}
.xd{left:120.295350px;}
.xa{left:136.924500px;}
.x6{left:153.839550px;}
.x8{left:185.327700px;}
.xb{left:206.896500px;}
.x7{left:220.791600px;}
.x9{left:226.913550px;}
.xe{left:379.343400px;}
.x12{left:391.035900px;}
.x13{left:427.334100px;}
.xf{left:685.339950px;}
.x2{left:694.371450px;}
.x10{left:721.638150px;}
.x15{left:795.515700px;}
.x3{left:797.846700px;}
@media print{
.v1{vertical-align:-17.404800pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.357867pt;}
.ls5{letter-spacing:-1.120000pt;}
.ls6{letter-spacing:-0.522667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.522667pt;}
.ls1{letter-spacing:1.672533pt;}
.ls2{letter-spacing:4.704000pt;}
.ls0{letter-spacing:5.120000pt;}
.ws0{word-spacing:-15.232000pt;}
.ws3{word-spacing:-12.387200pt;}
.ws11e{word-spacing:-11.864533pt;}
.ws52{word-spacing:-11.498667pt;}
.ws1{word-spacing:-11.237333pt;}
.ws4{word-spacing:-8.848000pt;}
.ws53{word-spacing:-7.221738pt;}
.ws61{word-spacing:-7.056000pt;}
.ws2{word-spacing:-6.886551pt;}
.ws103{word-spacing:-6.846933pt;}
.wsfc{word-spacing:-6.010667pt;}
.ws49{word-spacing:-5.644800pt;}
.ws7d{word-spacing:-5.226667pt;}
.wsd3{word-spacing:-4.860800pt;}
.wscd{word-spacing:-4.547200pt;}
.wsff{word-spacing:-4.494933pt;}
.wsb3{word-spacing:-4.442667pt;}
.wsa0{word-spacing:-4.285867pt;}
.ws4f{word-spacing:-4.181333pt;}
.ws73{word-spacing:-3.972267pt;}
.ws9{word-spacing:-3.920000pt;}
.ws111{word-spacing:-3.867733pt;}
.ws24{word-spacing:-3.658667pt;}
.wsb0{word-spacing:-3.606400pt;}
.ws93{word-spacing:-3.501867pt;}
.ws105{word-spacing:-3.449600pt;}
.wsc3{word-spacing:-3.292800pt;}
.ws119{word-spacing:-3.240533pt;}
.wsad{word-spacing:-3.188267pt;}
.ws16{word-spacing:-3.136000pt;}
.wsc9{word-spacing:-3.083733pt;}
.wsf8{word-spacing:-3.031467pt;}
.ws106{word-spacing:-2.979200pt;}
.wse5{word-spacing:-2.926933pt;}
.ws4c{word-spacing:-2.874667pt;}
.wsec{word-spacing:-2.770133pt;}
.ws7a{word-spacing:-2.717867pt;}
.ws1c{word-spacing:-2.665600pt;}
.ws3d{word-spacing:-2.561067pt;}
.ws98{word-spacing:-2.456533pt;}
.ws4d{word-spacing:-2.404267pt;}
.wsc4{word-spacing:-2.352000pt;}
.ws9c{word-spacing:-2.299733pt;}
.ws63{word-spacing:-2.247467pt;}
.wsc7{word-spacing:-2.142933pt;}
.wsf6{word-spacing:-2.090667pt;}
.ws85{word-spacing:-1.986133pt;}
.ws86{word-spacing:-1.933867pt;}
.wsb2{word-spacing:-1.881600pt;}
.wsf7{word-spacing:-1.829333pt;}
.wse3{word-spacing:-1.777067pt;}
.ws1b{word-spacing:-1.724800pt;}
.ws75{word-spacing:-1.672533pt;}
.ws30{word-spacing:-1.620267pt;}
.ws110{word-spacing:-1.568000pt;}
.wsa{word-spacing:-1.515733pt;}
.wsb5{word-spacing:-1.463467pt;}
.wsa9{word-spacing:-1.411200pt;}
.ws32{word-spacing:-1.358933pt;}
.wsee{word-spacing:-1.306667pt;}
.wsf2{word-spacing:-1.254400pt;}
.wsf3{word-spacing:-1.202133pt;}
.ws65{word-spacing:-1.149867pt;}
.ws17{word-spacing:-1.097600pt;}
.ws50{word-spacing:-1.045333pt;}
.ws66{word-spacing:-0.993067pt;}
.wsaf{word-spacing:-0.940800pt;}
.ws99{word-spacing:-0.888533pt;}
.ws2f{word-spacing:-0.784000pt;}
.wsef{word-spacing:-0.731733pt;}
.wsa7{word-spacing:-0.679467pt;}
.ws89{word-spacing:-0.627200pt;}
.ws62{word-spacing:-0.574933pt;}
.ws4e{word-spacing:-0.522667pt;}
.ws6e{word-spacing:-0.470400pt;}
.ws51{word-spacing:-0.418133pt;}
.wsd6{word-spacing:-0.365867pt;}
.ws25{word-spacing:-0.313600pt;}
.wsa8{word-spacing:-0.261333pt;}
.ws58{word-spacing:-0.209067pt;}
.ws81{word-spacing:-0.156800pt;}
.ws5a{word-spacing:-0.104533pt;}
.ws57{word-spacing:-0.052267pt;}
.ws5{word-spacing:0.000000pt;}
.wsa1{word-spacing:0.052267pt;}
.wsea{word-spacing:0.104533pt;}
.ws8e{word-spacing:0.156800pt;}
.ws1d{word-spacing:0.170667pt;}
.wsc{word-spacing:0.209067pt;}
.ws82{word-spacing:0.313600pt;}
.ws35{word-spacing:0.365867pt;}
.ws8{word-spacing:0.418133pt;}
.wsac{word-spacing:0.470400pt;}
.wsde{word-spacing:0.522667pt;}
.wsd7{word-spacing:0.574933pt;}
.ws7c{word-spacing:0.731733pt;}
.ws7{word-spacing:0.784000pt;}
.ws54{word-spacing:0.836267pt;}
.ws56{word-spacing:0.888533pt;}
.ws125{word-spacing:0.940800pt;}
.wsed{word-spacing:0.993067pt;}
.wse6{word-spacing:1.045333pt;}
.wscf{word-spacing:1.097600pt;}
.ws11f{word-spacing:1.120000pt;}
.ws78{word-spacing:1.149867pt;}
.wsd5{word-spacing:1.202133pt;}
.ws7b{word-spacing:1.254400pt;}
.wse2{word-spacing:1.306667pt;}
.ws11c{word-spacing:1.358933pt;}
.wse1{word-spacing:1.411200pt;}
.wsc8{word-spacing:1.463467pt;}
.wsb9{word-spacing:1.515733pt;}
.ws59{word-spacing:1.568000pt;}
.wsc2{word-spacing:1.620267pt;}
.wsae{word-spacing:1.672533pt;}
.ws6f{word-spacing:1.724800pt;}
.ws102{word-spacing:1.777067pt;}
.ws10c{word-spacing:1.829333pt;}
.ws6{word-spacing:1.881600pt;}
.ws6c{word-spacing:1.933867pt;}
.wsfb{word-spacing:1.986133pt;}
.wsf1{word-spacing:2.142933pt;}
.wsbc{word-spacing:2.195200pt;}
.ws94{word-spacing:2.247467pt;}
.ws29{word-spacing:2.299733pt;}
.ws70{word-spacing:2.352000pt;}
.wsd8{word-spacing:2.404267pt;}
.wsb{word-spacing:2.456533pt;}
.wseb{word-spacing:2.561067pt;}
.ws3f{word-spacing:2.613333pt;}
.wsbd{word-spacing:2.665600pt;}
.ws83{word-spacing:2.717867pt;}
.wsdd{word-spacing:2.770133pt;}
.ws3e{word-spacing:2.822400pt;}
.wsaa{word-spacing:2.874667pt;}
.wsc0{word-spacing:2.926933pt;}
.wsb7{word-spacing:2.979200pt;}
.ws64{word-spacing:3.031467pt;}
.wsf{word-spacing:3.136000pt;}
.ws11d{word-spacing:3.188267pt;}
.ws121{word-spacing:3.240533pt;}
.wsb1{word-spacing:3.292800pt;}
.ws8c{word-spacing:3.345067pt;}
.ws8a{word-spacing:3.397333pt;}
.ws45{word-spacing:3.449600pt;}
.wsd0{word-spacing:3.554133pt;}
.ws9a{word-spacing:3.606400pt;}
.ws67{word-spacing:3.658667pt;}
.ws13{word-spacing:3.710933pt;}
.ws44{word-spacing:3.763200pt;}
.ws90{word-spacing:3.815467pt;}
.ws5f{word-spacing:3.867733pt;}
.ws10d{word-spacing:3.920000pt;}
.ws28{word-spacing:4.076800pt;}
.wsab{word-spacing:4.129067pt;}
.ws26{word-spacing:4.181333pt;}
.ws31{word-spacing:4.233600pt;}
.ws2a{word-spacing:4.285867pt;}
.wsd2{word-spacing:4.338133pt;}
.ws27{word-spacing:4.390400pt;}
.ws124{word-spacing:4.442667pt;}
.ws117{word-spacing:4.494933pt;}
.ws36{word-spacing:4.547200pt;}
.ws34{word-spacing:4.651733pt;}
.wsa2{word-spacing:4.756267pt;}
.wsca{word-spacing:4.808533pt;}
.wsc5{word-spacing:4.860800pt;}
.ws2d{word-spacing:4.913067pt;}
.wsa4{word-spacing:5.017600pt;}
.ws2e{word-spacing:5.069867pt;}
.ws40{word-spacing:5.122133pt;}
.ws55{word-spacing:5.174400pt;}
.wsd{word-spacing:5.226667pt;}
.ws19{word-spacing:5.278933pt;}
.ws77{word-spacing:5.331200pt;}
.wsa6{word-spacing:5.383467pt;}
.ws14{word-spacing:5.435733pt;}
.ws10{word-spacing:5.488000pt;}
.ws42{word-spacing:5.540267pt;}
.ws5e{word-spacing:5.592533pt;}
.wsdc{word-spacing:5.697067pt;}
.wscb{word-spacing:5.749333pt;}
.ws101{word-spacing:5.801600pt;}
.ws1e{word-spacing:5.802667pt;}
.wse9{word-spacing:5.853867pt;}
.ws7e{word-spacing:5.906133pt;}
.ws41{word-spacing:5.958400pt;}
.wsdf{word-spacing:6.010667pt;}
.wsc6{word-spacing:6.062933pt;}
.wsa3{word-spacing:6.115200pt;}
.ws7f{word-spacing:6.167467pt;}
.ws3c{word-spacing:6.219733pt;}
.wsf4{word-spacing:6.272000pt;}
.ws96{word-spacing:6.324267pt;}
.ws43{word-spacing:6.376533pt;}
.ws8f{word-spacing:6.428800pt;}
.ws11{word-spacing:6.481067pt;}
.ws91{word-spacing:6.533333pt;}
.wsfd{word-spacing:6.742400pt;}
.ws88{word-spacing:6.794667pt;}
.ws80{word-spacing:6.951467pt;}
.ws8d{word-spacing:7.003733pt;}
.ws97{word-spacing:7.056000pt;}
.wsce{word-spacing:7.108267pt;}
.wse{word-spacing:7.160533pt;}
.ws74{word-spacing:7.212800pt;}
.ws6a{word-spacing:7.265067pt;}
.ws9f{word-spacing:7.421867pt;}
.ws47{word-spacing:7.474133pt;}
.ws104{word-spacing:7.526400pt;}
.ws68{word-spacing:7.630933pt;}
.ws37{word-spacing:7.683200pt;}
.wsbe{word-spacing:7.735467pt;}
.ws2b{word-spacing:7.787733pt;}
.wsa5{word-spacing:7.892267pt;}
.wse8{word-spacing:7.944533pt;}
.ws46{word-spacing:8.049067pt;}
.ws3b{word-spacing:8.101333pt;}
.ws5c{word-spacing:8.153600pt;}
.ws113{word-spacing:8.258133pt;}
.ws6b{word-spacing:8.362667pt;}
.wsd4{word-spacing:8.414933pt;}
.ws18{word-spacing:8.519467pt;}
.ws4a{word-spacing:8.571733pt;}
.ws5b{word-spacing:8.624000pt;}
.ws95{word-spacing:8.676267pt;}
.ws3a{word-spacing:8.728533pt;}
.ws76{word-spacing:8.832000pt;}
.ws92{word-spacing:8.833067pt;}
.ws112{word-spacing:8.885333pt;}
.ws87{word-spacing:8.989867pt;}
.ws15{word-spacing:9.094400pt;}
.ws72{word-spacing:9.198933pt;}
.ws100{word-spacing:9.251200pt;}
.ws39{word-spacing:9.303467pt;}
.ws12{word-spacing:9.355733pt;}
.wscc{word-spacing:9.512533pt;}
.ws9e{word-spacing:9.617067pt;}
.ws9b{word-spacing:9.878400pt;}
.wsbb{word-spacing:9.930667pt;}
.ws60{word-spacing:10.087467pt;}
.ws1a{word-spacing:10.139733pt;}
.wsb6{word-spacing:10.192000pt;}
.wsdb{word-spacing:10.296533pt;}
.ws4b{word-spacing:10.348800pt;}
.ws116{word-spacing:10.453333pt;}
.wsb4{word-spacing:10.557867pt;}
.ws120{word-spacing:10.610133pt;}
.ws33{word-spacing:10.714667pt;}
.wse4{word-spacing:10.976000pt;}
.wsf0{word-spacing:11.132800pt;}
.ws115{word-spacing:11.289600pt;}
.ws10b{word-spacing:11.341867pt;}
.ws79{word-spacing:11.394133pt;}
.ws114{word-spacing:11.498667pt;}
.wse0{word-spacing:11.603200pt;}
.wsd1{word-spacing:11.812267pt;}
.ws38{word-spacing:11.864533pt;}
.ws123{word-spacing:11.916800pt;}
.ws10a{word-spacing:12.230400pt;}
.ws11b{word-spacing:12.282667pt;}
.ws22{word-spacing:12.387200pt;}
.ws84{word-spacing:12.596267pt;}
.ws122{word-spacing:12.805333pt;}
.wsbf{word-spacing:13.066667pt;}
.wsf5{word-spacing:13.118933pt;}
.ws11a{word-spacing:13.275733pt;}
.ws21{word-spacing:13.328000pt;}
.wse7{word-spacing:13.432533pt;}
.ws109{word-spacing:13.537067pt;}
.ws5d{word-spacing:13.641600pt;}
.ws48{word-spacing:13.693867pt;}
.wsb8{word-spacing:13.902933pt;}
.ws6d{word-spacing:13.955200pt;}
.ws9d{word-spacing:14.059733pt;}
.ws2c{word-spacing:14.164267pt;}
.ws118{word-spacing:14.321067pt;}
.wsda{word-spacing:14.373333pt;}
.ws108{word-spacing:14.582400pt;}
.ws10f{word-spacing:14.896000pt;}
.wsfe{word-spacing:15.209600pt;}
.ws23{word-spacing:15.366400pt;}
.ws8b{word-spacing:15.627733pt;}
.ws107{word-spacing:15.784533pt;}
.wsc1{word-spacing:16.359467pt;}
.ws1f{word-spacing:17.561600pt;}
.ws20{word-spacing:19.390933pt;}
.wsba{word-spacing:19.913600pt;}
.wsfa{word-spacing:19.965867pt;}
.wsf9{word-spacing:20.018133pt;}
.ws71{word-spacing:22.997333pt;}
.ws69{word-spacing:23.520000pt;}
.wsd9{word-spacing:29.739733pt;}
.ws10e{word-spacing:42.336000pt;}
._7{margin-left:-2570.064000pt;}
._a{margin-left:-8.263360pt;}
._4{margin-left:-6.319787pt;}
._8{margin-left:-5.274682pt;}
._6{margin-left:-4.181333pt;}
._3{margin-left:-2.919985pt;}
._1{margin-left:-1.870400pt;}
._2{margin-left:-0.899733pt;}
._0{width:1.116267pt;}
._b{width:2.024503pt;}
._5{width:3.136000pt;}
._9{width:50.688000pt;}
.fs4{font-size:30.471467pt;}
.fs1{font-size:37.333333pt;}
.fs3{font-size:37.909270pt;}
.fs2{font-size:42.666667pt;}
.fs0{font-size:52.266667pt;}
.fs7{font-size:58.666667pt;}
.fs5{font-size:74.666667pt;}
.fs6{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:43.799733pt;}
.y74{bottom:63.018000pt;}
.yb0{bottom:66.141867pt;}
.y28{bottom:72.187867pt;}
.y1a0{bottom:72.404267pt;}
.y1c1{bottom:76.193600pt;}
.yef{bottom:76.245867pt;}
.y73{bottom:77.678800pt;}
.yaf{bottom:78.141867pt;}
.y12d{bottom:79.394933pt;}
.y169{bottom:83.184267pt;}
.y27{bottom:86.848667pt;}
.y19f{bottom:87.065067pt;}
.y1f1{bottom:90.765467pt;}
.y1c0{bottom:90.854400pt;}
.yee{bottom:91.181067pt;}
.y72{bottom:92.339600pt;}
.y253{bottom:93.500800pt;}
.y12c{bottom:94.055733pt;}
.y168{bottom:97.845067pt;}
.y26{bottom:101.509467pt;}
.y19e{bottom:101.725867pt;}
.y1f0{bottom:105.426267pt;}
.y1bf{bottom:105.515200pt;}
.yed{bottom:106.116267pt;}
.y71{bottom:107.000400pt;}
.y252{bottom:108.161600pt;}
.y12b{bottom:108.716533pt;}
.yae{bottom:112.494133pt;}
.y167{bottom:112.505867pt;}
.y25{bottom:116.170267pt;}
.y19d{bottom:116.386667pt;}
.y212{bottom:119.999067pt;}
.y1ef{bottom:120.087067pt;}
.y1be{bottom:120.176000pt;}
.yec{bottom:121.051467pt;}
.y70{bottom:121.661200pt;}
.y251{bottom:122.822400pt;}
.y12a{bottom:123.377333pt;}
.yad{bottom:127.154933pt;}
.y166{bottom:127.166667pt;}
.y24{bottom:130.831067pt;}
.y19c{bottom:131.047467pt;}
.y211{bottom:134.659867pt;}
.y1ee{bottom:134.747867pt;}
.y1bd{bottom:134.836800pt;}
.yeb{bottom:135.986667pt;}
.y6f{bottom:136.322000pt;}
.y250{bottom:137.483200pt;}
.y129{bottom:138.038133pt;}
.yac{bottom:141.815733pt;}
.y165{bottom:141.827467pt;}
.y19b{bottom:145.708267pt;}
.y210{bottom:149.320667pt;}
.y1ed{bottom:149.408667pt;}
.y1bc{bottom:149.497600pt;}
.yea{bottom:150.921867pt;}
.y6e{bottom:150.982800pt;}
.y24f{bottom:152.144000pt;}
.y128{bottom:152.698933pt;}
.yab{bottom:156.476533pt;}
.y164{bottom:156.488267pt;}
.y19a{bottom:160.369067pt;}
.y20f{bottom:163.981467pt;}
.y1ec{bottom:164.069467pt;}
.y1bb{bottom:164.158400pt;}
.y6d{bottom:165.643600pt;}
.ye9{bottom:165.857067pt;}
.y24e{bottom:166.804800pt;}
.y127{bottom:167.359733pt;}
.y23{bottom:167.718267pt;}
.yaa{bottom:171.137333pt;}
.y163{bottom:171.149067pt;}
.y199{bottom:175.029867pt;}
.y20e{bottom:178.642267pt;}
.y1eb{bottom:178.730267pt;}
.y1ba{bottom:178.819200pt;}
.y6c{bottom:180.304400pt;}
.ye8{bottom:180.792267pt;}
.y24d{bottom:181.465600pt;}
.y126{bottom:182.020533pt;}
.y22{bottom:182.379067pt;}
.ya9{bottom:185.798133pt;}
.y162{bottom:185.809867pt;}
.y198{bottom:189.690667pt;}
.y20d{bottom:193.303067pt;}
.y1ea{bottom:193.391067pt;}
.y1b9{bottom:193.480000pt;}
.y6b{bottom:194.965200pt;}
.ye7{bottom:195.727467pt;}
.y24c{bottom:196.126400pt;}
.y125{bottom:196.681333pt;}
.y21{bottom:197.039867pt;}
.ya8{bottom:200.458933pt;}
.y161{bottom:200.470667pt;}
.y197{bottom:204.351467pt;}
.y20c{bottom:207.963867pt;}
.y1e9{bottom:208.051867pt;}
.y1b8{bottom:208.140800pt;}
.y6a{bottom:209.626000pt;}
.ye6{bottom:210.662667pt;}
.y24b{bottom:210.787200pt;}
.y124{bottom:211.342133pt;}
.y20{bottom:211.700667pt;}
.ya7{bottom:215.119733pt;}
.y160{bottom:215.131467pt;}
.y196{bottom:219.012267pt;}
.y20b{bottom:222.624667pt;}
.y1e8{bottom:222.712667pt;}
.y1b7{bottom:222.801600pt;}
.y69{bottom:224.286800pt;}
.y24a{bottom:225.448000pt;}
.ye5{bottom:225.597867pt;}
.y123{bottom:226.002933pt;}
.y1f{bottom:226.361467pt;}
.ya6{bottom:229.780533pt;}
.y15f{bottom:229.792267pt;}
.y195{bottom:233.673067pt;}
.y20a{bottom:237.285467pt;}
.y1e7{bottom:237.373467pt;}
.y1b6{bottom:237.462400pt;}
.y68{bottom:238.947600pt;}
.y249{bottom:240.108800pt;}
.ye4{bottom:240.533067pt;}
.y122{bottom:240.663733pt;}
.y1e{bottom:241.022267pt;}
.ya5{bottom:244.441333pt;}
.y15e{bottom:244.453067pt;}
.y194{bottom:248.333867pt;}
.y209{bottom:251.946267pt;}
.y1e6{bottom:252.034267pt;}
.y1b5{bottom:252.123200pt;}
.y67{bottom:253.608400pt;}
.y248{bottom:254.769600pt;}
.y121{bottom:255.324533pt;}
.ye3{bottom:255.468267pt;}
.y1d{bottom:255.683067pt;}
.ya4{bottom:259.102133pt;}
.y15d{bottom:259.113867pt;}
.y193{bottom:262.994667pt;}
.y208{bottom:266.607067pt;}
.y1e5{bottom:266.695067pt;}
.y1b4{bottom:266.784000pt;}
.y66{bottom:268.269200pt;}
.y247{bottom:269.430400pt;}
.y120{bottom:269.985333pt;}
.y1c{bottom:270.343867pt;}
.ye2{bottom:270.403467pt;}
.ya3{bottom:273.762933pt;}
.y15c{bottom:273.774667pt;}
.y192{bottom:277.655467pt;}
.y207{bottom:281.267867pt;}
.y1e4{bottom:281.355867pt;}
.y1b3{bottom:281.444800pt;}
.y65{bottom:282.930000pt;}
.y246{bottom:284.091200pt;}
.y11f{bottom:284.646133pt;}
.y1b{bottom:285.004667pt;}
.ye1{bottom:285.338667pt;}
.ya2{bottom:288.423733pt;}
.y15b{bottom:288.435467pt;}
.y191{bottom:292.316267pt;}
.y206{bottom:295.928667pt;}
.y1e3{bottom:296.016667pt;}
.y1b2{bottom:296.105600pt;}
.y64{bottom:297.590800pt;}
.y245{bottom:298.752000pt;}
.y11e{bottom:299.306933pt;}
.ye0{bottom:300.273867pt;}
.ya1{bottom:303.084533pt;}
.y15a{bottom:303.096267pt;}
.y190{bottom:306.977067pt;}
.y205{bottom:310.589467pt;}
.y1e2{bottom:310.677467pt;}
.y1b1{bottom:310.766400pt;}
.y1a{bottom:311.017867pt;}
.y63{bottom:312.251600pt;}
.y244{bottom:313.412800pt;}
.y11d{bottom:313.967733pt;}
.ydf{bottom:315.209067pt;}
.ya0{bottom:317.745333pt;}
.y159{bottom:317.757067pt;}
.y18f{bottom:321.637867pt;}
.y204{bottom:325.250267pt;}
.y1e1{bottom:325.338267pt;}
.y1b0{bottom:325.427200pt;}
.y62{bottom:326.912400pt;}
.y243{bottom:328.073600pt;}
.y11c{bottom:328.628533pt;}
.yde{bottom:330.144267pt;}
.y9f{bottom:332.406133pt;}
.y158{bottom:332.417867pt;}
.y19{bottom:335.361067pt;}
.y18e{bottom:336.298667pt;}
.y203{bottom:339.911067pt;}
.y1e0{bottom:339.999067pt;}
.y1af{bottom:340.088000pt;}
.y61{bottom:341.573200pt;}
.y242{bottom:342.734400pt;}
.y11b{bottom:343.289333pt;}
.ydd{bottom:345.079467pt;}
.y9e{bottom:347.066933pt;}
.y157{bottom:347.078667pt;}
.y18d{bottom:350.959467pt;}
.y202{bottom:354.571867pt;}
.y1df{bottom:354.659867pt;}
.y1ae{bottom:354.748800pt;}
.y60{bottom:356.234000pt;}
.y241{bottom:357.395200pt;}
.y11a{bottom:357.950133pt;}
.ydc{bottom:360.014667pt;}
.y9d{bottom:361.727733pt;}
.y156{bottom:361.739467pt;}
.y18c{bottom:365.620267pt;}
.y201{bottom:369.232667pt;}
.y1de{bottom:369.320667pt;}
.y1ad{bottom:369.409600pt;}
.y18{bottom:369.954400pt;}
.y5f{bottom:370.894800pt;}
.y240{bottom:372.056000pt;}
.y119{bottom:372.610933pt;}
.ydb{bottom:374.949867pt;}
.y9c{bottom:376.388533pt;}
.y155{bottom:376.400267pt;}
.y18b{bottom:380.281067pt;}
.y200{bottom:383.893467pt;}
.y1dd{bottom:383.981467pt;}
.y1ac{bottom:384.070400pt;}
.y17{bottom:384.615200pt;}
.y5e{bottom:385.555600pt;}
.y23f{bottom:386.716800pt;}
.y118{bottom:387.271733pt;}
.yda{bottom:389.885067pt;}
.y9b{bottom:391.049333pt;}
.y154{bottom:391.061067pt;}
.y18a{bottom:394.941867pt;}
.y1ff{bottom:398.554267pt;}
.y1dc{bottom:398.642267pt;}
.y1ab{bottom:398.731200pt;}
.y16{bottom:399.276000pt;}
.y5d{bottom:400.216400pt;}
.y23e{bottom:401.377600pt;}
.y117{bottom:401.932533pt;}
.yd9{bottom:404.820267pt;}
.y9a{bottom:405.710133pt;}
.y153{bottom:405.721867pt;}
.y1fe{bottom:413.215067pt;}
.y1db{bottom:413.303067pt;}
.y189{bottom:413.392000pt;}
.y15{bottom:413.936800pt;}
.y5c{bottom:414.877200pt;}
.y23d{bottom:416.038400pt;}
.y116{bottom:416.593333pt;}
.yd8{bottom:419.755467pt;}
.y99{bottom:420.370933pt;}
.y152{bottom:420.382667pt;}
.y1fd{bottom:427.875867pt;}
.y1da{bottom:427.963867pt;}
.y1aa{bottom:428.052800pt;}
.y14{bottom:428.597600pt;}
.y5b{bottom:429.538000pt;}
.y23c{bottom:430.699200pt;}
.y115{bottom:431.254133pt;}
.yd7{bottom:434.690667pt;}
.y98{bottom:435.031733pt;}
.y151{bottom:435.043467pt;}
.y1fc{bottom:442.536667pt;}
.y1d9{bottom:442.624667pt;}
.y1a9{bottom:442.713600pt;}
.y13{bottom:443.258400pt;}
.y5a{bottom:444.198800pt;}
.y23b{bottom:445.360000pt;}
.y114{bottom:445.914933pt;}
.y188{bottom:446.594400pt;}
.yd6{bottom:449.625867pt;}
.y97{bottom:449.692533pt;}
.y150{bottom:449.704267pt;}
.y1fb{bottom:457.197467pt;}
.y1d8{bottom:457.285467pt;}
.y1a8{bottom:457.374400pt;}
.y12{bottom:457.919200pt;}
.y59{bottom:458.859600pt;}
.y23a{bottom:460.020800pt;}
.y113{bottom:460.575733pt;}
.y187{bottom:461.255200pt;}
.y14f{bottom:464.365067pt;}
.yd5{bottom:464.561067pt;}
.y96{bottom:468.142667pt;}
.y1fa{bottom:471.858267pt;}
.y1d7{bottom:471.946267pt;}
.y1a7{bottom:472.035200pt;}
.y11{bottom:472.580000pt;}
.y58{bottom:473.520400pt;}
.y239{bottom:474.681600pt;}
.y186{bottom:475.916000pt;}
.y112{bottom:479.025867pt;}
.yd4{bottom:479.496267pt;}
.y14e{bottom:482.815200pt;}
.y1f9{bottom:486.519067pt;}
.y1d6{bottom:486.607067pt;}
.y1a6{bottom:486.696000pt;}
.y10{bottom:487.240800pt;}
.y57{bottom:488.181200pt;}
.y238{bottom:489.342400pt;}
.y185{bottom:490.576800pt;}
.yd3{bottom:494.431467pt;}
.y1f8{bottom:501.179867pt;}
.y1d5{bottom:501.267867pt;}
.y95{bottom:501.345067pt;}
.y1a5{bottom:501.356800pt;}
.y56{bottom:502.842000pt;}
.y237{bottom:504.003200pt;}
.y184{bottom:505.237600pt;}
.yd2{bottom:509.366667pt;}
.y111{bottom:512.228267pt;}
.yf{bottom:513.254133pt;}
.y1f7{bottom:515.840667pt;}
.y1d4{bottom:515.928667pt;}
.y94{bottom:516.005867pt;}
.y14d{bottom:516.017600pt;}
.y236{bottom:518.664000pt;}
.y183{bottom:519.898400pt;}
.y55{bottom:521.285600pt;}
.yd1{bottom:524.301867pt;}
.y110{bottom:526.889067pt;}
.y1f6{bottom:530.501467pt;}
.y1d3{bottom:530.589467pt;}
.y93{bottom:530.666667pt;}
.y14c{bottom:530.678400pt;}
.y235{bottom:533.324800pt;}
.y182{bottom:534.559200pt;}
.ye{bottom:537.597333pt;}
.y54{bottom:538.621600pt;}
.yd0{bottom:539.237067pt;}
.y10f{bottom:541.549867pt;}
.y1f5{bottom:545.162267pt;}
.y1d2{bottom:545.250267pt;}
.y92{bottom:545.327467pt;}
.y14b{bottom:545.339200pt;}
.y234{bottom:547.985600pt;}
.y181{bottom:549.220000pt;}
.ycf{bottom:554.172267pt;}
.y10e{bottom:556.210667pt;}
.y1d1{bottom:559.911067pt;}
.y91{bottom:559.988267pt;}
.y14a{bottom:560.000000pt;}
.y233{bottom:562.646400pt;}
.y1f4{bottom:563.608400pt;}
.y180{bottom:563.880800pt;}
.yce{bottom:569.107467pt;}
.y10d{bottom:570.871467pt;}
.y53{bottom:571.975600pt;}
.yd{bottom:572.190667pt;}
.y1d0{bottom:574.571867pt;}
.y90{bottom:574.649067pt;}
.y149{bottom:574.660800pt;}
.y232{bottom:577.307200pt;}
.y17f{bottom:578.541600pt;}
.ycd{bottom:584.042667pt;}
.y10c{bottom:585.532267pt;}
.y52{bottom:586.636400pt;}
.yc{bottom:586.851467pt;}
.y1cf{bottom:589.232667pt;}
.y1a4{bottom:589.321600pt;}
.y231{bottom:591.968000pt;}
.y8f{bottom:593.099200pt;}
.y148{bottom:593.110933pt;}
.y17e{bottom:593.202400pt;}
.y1f3{bottom:596.991733pt;}
.ycc{bottom:598.977867pt;}
.y10b{bottom:600.193067pt;}
.y51{bottom:601.297200pt;}
.yb{bottom:601.512267pt;}
.y1ce{bottom:603.893467pt;}
.y1a3{bottom:603.982400pt;}
.y230{bottom:606.628800pt;}
.y17d{bottom:607.863200pt;}
.y1f2{bottom:611.652533pt;}
.ycb{bottom:613.913067pt;}
.y10a{bottom:614.853867pt;}
.y50{bottom:615.958000pt;}
.ya{bottom:616.173067pt;}
.y1cd{bottom:618.554267pt;}
.y1a2{bottom:618.643200pt;}
.y22f{bottom:621.289600pt;}
.y17c{bottom:622.524000pt;}
.y8e{bottom:626.301600pt;}
.y147{bottom:626.313333pt;}
.yca{bottom:628.848267pt;}
.y109{bottom:629.514667pt;}
.y4f{bottom:630.618800pt;}
.y9{bottom:630.833867pt;}
.y1cc{bottom:633.215067pt;}
.y22e{bottom:635.950400pt;}
.y1a1{bottom:637.093333pt;}
.y17b{bottom:637.184800pt;}
.y8d{bottom:640.962400pt;}
.y146{bottom:640.974133pt;}
.yc9{bottom:643.783467pt;}
.y108{bottom:644.175467pt;}
.y4e{bottom:645.279600pt;}
.y8{bottom:645.494667pt;}
.y1cb{bottom:647.875867pt;}
.y22d{bottom:650.611200pt;}
.y17a{bottom:651.845600pt;}
.y8c{bottom:655.623200pt;}
.y145{bottom:655.634933pt;}
.yc8{bottom:658.718667pt;}
.y107{bottom:658.836267pt;}
.y4d{bottom:659.940400pt;}
.y7{bottom:660.155467pt;}
.y1ca{bottom:662.536667pt;}
.y22c{bottom:665.272000pt;}
.y179{bottom:666.506400pt;}
.y8b{bottom:670.284000pt;}
.y144{bottom:670.295733pt;}
.y106{bottom:673.497067pt;}
.yc7{bottom:673.653867pt;}
.y4c{bottom:674.601200pt;}
.y6{bottom:674.816267pt;}
.y1c9{bottom:677.197467pt;}
.y22b{bottom:679.932800pt;}
.y178{bottom:681.167200pt;}
.y8a{bottom:684.944800pt;}
.y143{bottom:684.956533pt;}
.y105{bottom:688.157867pt;}
.yc6{bottom:688.589067pt;}
.y4b{bottom:689.262000pt;}
.y5{bottom:689.477067pt;}
.y1c8{bottom:691.858267pt;}
.y22a{bottom:694.593600pt;}
.y177{bottom:695.828000pt;}
.y89{bottom:699.605600pt;}
.y142{bottom:699.617333pt;}
.y104{bottom:702.818667pt;}
.yc5{bottom:703.524267pt;}
.y4a{bottom:703.922800pt;}
.y1c7{bottom:706.519067pt;}
.y229{bottom:709.254400pt;}
.y176{bottom:710.488800pt;}
.y88{bottom:714.266400pt;}
.y141{bottom:714.278133pt;}
.y103{bottom:717.479467pt;}
.yc4{bottom:718.459467pt;}
.y49{bottom:718.583600pt;}
.y1c6{bottom:721.179867pt;}
.y228{bottom:723.915200pt;}
.y33{bottom:724.181200pt;}
.y175{bottom:725.149600pt;}
.y87{bottom:728.927200pt;}
.y140{bottom:728.938933pt;}
.y102{bottom:732.140267pt;}
.y48{bottom:733.244400pt;}
.yc3{bottom:733.394667pt;}
.y1c5{bottom:735.840667pt;}
.y227{bottom:738.576000pt;}
.y174{bottom:739.810400pt;}
.y86{bottom:743.588000pt;}
.y13f{bottom:743.599733pt;}
.y101{bottom:746.801067pt;}
.y47{bottom:747.905200pt;}
.yc2{bottom:748.329867pt;}
.y1c4{bottom:750.501467pt;}
.y226{bottom:753.236800pt;}
.y173{bottom:754.471200pt;}
.y32{bottom:756.540000pt;}
.y85{bottom:758.248800pt;}
.y13e{bottom:758.260533pt;}
.y100{bottom:761.461867pt;}
.y46{bottom:762.566000pt;}
.yc1{bottom:763.265067pt;}
.y1c3{bottom:765.162267pt;}
.y225{bottom:767.897600pt;}
.y172{bottom:769.132000pt;}
.y31{bottom:769.201333pt;}
.y84{bottom:772.909600pt;}
.y13d{bottom:772.921333pt;}
.yff{bottom:776.122667pt;}
.y45{bottom:777.226800pt;}
.yc0{bottom:778.200267pt;}
.y224{bottom:782.558400pt;}
.y1c2{bottom:783.608400pt;}
.y171{bottom:783.792800pt;}
.y30{bottom:785.649333pt;}
.y83{bottom:787.570400pt;}
.y13c{bottom:787.582133pt;}
.yfe{bottom:790.783467pt;}
.y44{bottom:791.887600pt;}
.ybf{bottom:793.135467pt;}
.y223{bottom:797.219200pt;}
.y2f{bottom:798.310667pt;}
.y170{bottom:798.453600pt;}
.y82{bottom:802.231200pt;}
.y13b{bottom:802.242933pt;}
.yfd{bottom:805.444267pt;}
.y43{bottom:806.548400pt;}
.ybe{bottom:808.070667pt;}
.y2e{bottom:810.972000pt;}
.y222{bottom:811.880000pt;}
.y16f{bottom:813.114400pt;}
.y81{bottom:816.892000pt;}
.y13a{bottom:816.903733pt;}
.yfc{bottom:820.105067pt;}
.y42{bottom:821.209200pt;}
.ybd{bottom:823.005867pt;}
.y221{bottom:826.540800pt;}
.y2d{bottom:827.420000pt;}
.y16e{bottom:827.775200pt;}
.y80{bottom:831.552800pt;}
.y139{bottom:831.564533pt;}
.yfb{bottom:834.765867pt;}
.y41{bottom:835.870000pt;}
.ybc{bottom:837.941067pt;}
.y2c{bottom:840.081333pt;}
.y220{bottom:841.201600pt;}
.y16d{bottom:842.436000pt;}
.y7f{bottom:846.213600pt;}
.y138{bottom:846.225333pt;}
.yfa{bottom:849.426667pt;}
.y40{bottom:850.530800pt;}
.y2b{bottom:852.742667pt;}
.ybb{bottom:852.876267pt;}
.y21f{bottom:855.862400pt;}
.y16c{bottom:857.096800pt;}
.y7e{bottom:860.874400pt;}
.y137{bottom:860.886133pt;}
.y3f{bottom:865.191600pt;}
.yba{bottom:867.811467pt;}
.yf9{bottom:867.876800pt;}
.y21e{bottom:870.523200pt;}
.y16b{bottom:871.757600pt;}
.y7d{bottom:875.535200pt;}
.y136{bottom:875.546933pt;}
.y3e{bottom:879.852400pt;}
.yb9{bottom:882.746667pt;}
.y21d{bottom:885.184000pt;}
.y16a{bottom:886.418400pt;}
.y7c{bottom:890.196000pt;}
.y135{bottom:890.207733pt;}
.y3d{bottom:894.513200pt;}
.y2a{bottom:897.664800pt;}
.yb8{bottom:897.681867pt;}
.y21c{bottom:899.844800pt;}
.yf8{bottom:901.079200pt;}
.y7b{bottom:904.856800pt;}
.y134{bottom:904.868533pt;}
.y3c{bottom:909.174000pt;}
.yb7{bottom:912.617067pt;}
.y21b{bottom:914.505600pt;}
.yf7{bottom:915.740000pt;}
.y7a{bottom:919.517600pt;}
.y133{bottom:919.529333pt;}
.y29{bottom:921.668800pt;}
.y3b{bottom:923.834800pt;}
.yb6{bottom:927.552267pt;}
.y21a{bottom:929.166400pt;}
.yf6{bottom:930.400800pt;}
.y79{bottom:934.178400pt;}
.y132{bottom:934.190133pt;}
.y3a{bottom:938.495600pt;}
.yb5{bottom:942.487467pt;}
.y219{bottom:943.827200pt;}
.yf5{bottom:945.061600pt;}
.y78{bottom:948.839200pt;}
.y131{bottom:948.850933pt;}
.y39{bottom:956.939067pt;}
.y218{bottom:958.488000pt;}
.yf4{bottom:959.722400pt;}
.yb4{bottom:961.198933pt;}
.y77{bottom:963.500000pt;}
.y130{bottom:963.511733pt;}
.y217{bottom:973.148800pt;}
.y38{bottom:974.275067pt;}
.yf3{bottom:974.383200pt;}
.y2{bottom:977.133867pt;}
.y76{bottom:978.160800pt;}
.y12f{bottom:978.172533pt;}
.y216{bottom:987.809600pt;}
.yf2{bottom:989.044000pt;}
.y1{bottom:990.467200pt;}
.y3{bottom:991.292800pt;}
.yb3{bottom:992.010133pt;}
.y75{bottom:992.821600pt;}
.y12e{bottom:992.833333pt;}
.y215{bottom:1002.470400pt;}
.yf1{bottom:1003.704800pt;}
.yb2{bottom:1006.945333pt;}
.y37{bottom:1007.494133pt;}
.y214{bottom:1017.131200pt;}
.yf0{bottom:1018.365600pt;}
.yb1{bottom:1021.880533pt;}
.y36{bottom:1022.154933pt;}
.y213{bottom:1035.577333pt;}
.y35{bottom:1036.815733pt;}
.y34{bottom:1071.727600pt;}
.h3{height:33.077333pt;}
.h5{height:33.587614pt;}
.h4{height:37.802667pt;}
.h2{height:46.308267pt;}
.h6{height:48.749867pt;}
.h9{height:51.978667pt;}
.h7{height:66.154667pt;}
.h8{height:80.330667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:75.968533pt;}
.x1{left:82.809467pt;}
.xc{left:86.929200pt;}
.x11{left:94.524133pt;}
.x14{left:96.923867pt;}
.x5{left:106.021600pt;}
.xd{left:106.929200pt;}
.xa{left:121.710667pt;}
.x6{left:136.746267pt;}
.x8{left:164.735733pt;}
.xb{left:183.908000pt;}
.x7{left:196.259200pt;}
.x9{left:201.700933pt;}
.xe{left:337.194133pt;}
.x12{left:347.587467pt;}
.x13{left:379.852533pt;}
.xf{left:609.191067pt;}
.x2{left:617.219067pt;}
.x10{left:641.456133pt;}
.x15{left:707.125067pt;}
.x3{left:709.197067pt;}
}




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