
    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_091036ce2943bc4d8ac12ab7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.898000;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_ea0b1275f2b4f1d1a7be7d04.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_86d876d7499ec7b5c8d55492.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.683000;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_246b1f9562e736f7c43bd00a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.417000;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_852a37bfb85554c8a60217fa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.120000;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_8e3ae43cc282f7fa2cbf49c6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.890000;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_dd0015aa266cf27c39295be7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.687000;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_b936b0fe423dc1db9268a06c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.957000;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_c8c7fd371e2d805580d6e794.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.957000;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_f2ad3262f605b8702f4ccbf5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.942000;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;}
.m8{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.m6{transform:matrix(0.250312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250312,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250314,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250316,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250316,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-8.503876px;}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-0.009564px;}
.ls7{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.047821px;}
.ls3{letter-spacing:0.093572px;}
.ls1d{letter-spacing:0.106699px;}
.lsd{letter-spacing:0.143461px;}
.ls18{letter-spacing:0.185304px;}
.ls6{letter-spacing:0.187994px;}
.ls1e{letter-spacing:0.304855px;}
.ls1a{letter-spacing:0.340719px;}
.ls9{letter-spacing:0.388541px;}
.lsa{letter-spacing:12.947395px;}
.ls14{letter-spacing:14.310278px;}
.ls17{letter-spacing:14.364076px;}
.ls1{letter-spacing:15.667183px;}
.ls0{letter-spacing:16.007903px;}
.ls1c{letter-spacing:17.053978px;}
.ls11{letter-spacing:19.749858px;}
.ls15{letter-spacing:20.054713px;}
.ls19{letter-spacing:20.078624px;}
.ls10{letter-spacing:20.090577px;}
.ls16{letter-spacing:22.744615px;}
.ls1b{letter-spacing:24.537881px;}
.ls4{letter-spacing:25.480811px;}
.ls5{letter-spacing:25.521459px;}
.ls13{letter-spacing:25.560047px;}
.lsc{letter-spacing:25.876857px;}
.lsb{letter-spacing:26.217578px;}
.lse{letter-spacing:26.576229px;}
.lsf{letter-spacing:47.150990px;}
.ls12{letter-spacing:716.922858px;}
.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;}
}
.wsbb{word-spacing:-20.138399px;}
.wsc0{word-spacing:-14.423852px;}
.ws13{word-spacing:-0.448317px;}
.wsf{word-spacing:-0.059776px;}
.ws24{word-spacing:-0.050809px;}
.wsc8{word-spacing:-0.002489px;}
.ws2a{word-spacing:0.000000px;}
.wsc7{word-spacing:0.002489px;}
.ws2b{word-spacing:12.367571px;}
.ws121{word-spacing:12.610843px;}
.ws14a{word-spacing:12.615924px;}
.ws141{word-spacing:12.621005px;}
.ws136{word-spacing:12.631167px;}
.ws30{word-spacing:12.714270px;}
.ws120{word-spacing:12.859808px;}
.ws11e{word-spacing:12.900455px;}
.ws31{word-spacing:12.923484px;}
.ws11c{word-spacing:13.022397px;}
.ws14e{word-spacing:13.164664px;}
.ws2e{word-spacing:13.347891px;}
.ws134{word-spacing:13.550814px;}
.ws111{word-spacing:13.909782px;}
.ws82{word-spacing:13.933692px;}
.ws32{word-spacing:13.957602px;}
.ws33{word-spacing:14.053244px;}
.ws37{word-spacing:14.071176px;}
.ws2c{word-spacing:14.118996px;}
.ws133{word-spacing:14.140199px;}
.ws147{word-spacing:14.160524px;}
.wsc1{word-spacing:14.166817px;}
.wsd4{word-spacing:14.190727px;}
.wscd{word-spacing:14.274413px;}
.wsab{word-spacing:14.298323px;}
.wse0{word-spacing:14.316256px;}
.ws77{word-spacing:14.328211px;}
.wscc{word-spacing:14.340166px;}
.wsac{word-spacing:14.387986px;}
.ws95{word-spacing:14.459717px;}
.wsb1{word-spacing:14.507538px;}
.wsbf{word-spacing:14.531448px;}
.ws140{word-spacing:14.536512px;}
.ws17{word-spacing:14.615134px;}
.ws12f{word-spacing:14.617807px;}
.ws105{word-spacing:14.686864px;}
.wsf3{word-spacing:14.752618px;}
.ws106{word-spacing:14.800439px;}
.ws65{word-spacing:14.872169px;}
.ws8{word-spacing:14.925967px;}
.ws10a{word-spacing:14.985742px;}
.ws64{word-spacing:15.021608px;}
.wse3{word-spacing:15.045518px;}
.ws18{word-spacing:15.069429px;}
.ws103{word-spacing:15.093339px;}
.ws5f{word-spacing:15.212890px;}
.ws98{word-spacing:15.236800px;}
.ws2d{word-spacing:15.290597px;}
.wsa1{word-spacing:15.314509px;}
.ws13d{word-spacing:15.374864px;}
.ws58{word-spacing:15.386239px;}
.ws101{word-spacing:15.410149px;}
.ws4a{word-spacing:15.434060px;}
.ws86{word-spacing:15.446014px;}
.wsfa{word-spacing:15.471401px;}
.ws2f{word-spacing:15.481880px;}
.wsf8{word-spacing:15.496805px;}
.wsd1{word-spacing:15.553611px;}
.ws13f{word-spacing:15.578100px;}
.ws109{word-spacing:15.595453px;}
.ws13c{word-spacing:15.694961px;}
.ws14{word-spacing:15.703050px;}
.ws9b{word-spacing:15.726960px;}
.wsf7{word-spacing:15.740689px;}
.ws74{word-spacing:15.774780px;}
.ws10e{word-spacing:15.822602px;}
.wsf9{word-spacing:15.847391px;}
.ws13b{word-spacing:15.852470px;}
.ws13e{word-spacing:15.862632px;}
.ws108{word-spacing:15.948129px;}
.ws53{word-spacing:15.995951px;}
.ws5e{word-spacing:16.019860px;}
.ws142{word-spacing:16.030302px;}
.ws54{word-spacing:16.091592px;}
.ws6c{word-spacing:16.115502px;}
.wsfe{word-spacing:16.187809px;}
.ws56{word-spacing:16.229075px;}
.ws8c{word-spacing:16.288851px;}
.wsfd{word-spacing:16.319915px;}
.ws7b{word-spacing:16.336670px;}
.ws72{word-spacing:16.396446px;}
.wsfc{word-spacing:16.421533px;}
.ws71{word-spacing:16.456222px;}
.ws68{word-spacing:16.498065px;}
.ws39{word-spacing:16.504043px;}
.ws67{word-spacing:16.569797px;}
.ws148{word-spacing:16.599366px;}
.ws28{word-spacing:16.609527px;}
.ws119{word-spacing:16.660336px;}
.ws6e{word-spacing:16.677392px;}
.ws146{word-spacing:16.700984px;}
.ws128{word-spacing:16.716226px;}
.ws25{word-spacing:16.721307px;}
.wsff{word-spacing:16.736550px;}
.ws26{word-spacing:16.751793px;}
.ws145{word-spacing:16.761954px;}
.ws1b{word-spacing:16.777198px;}
.ws8b{word-spacing:16.779011px;}
.ws46{word-spacing:16.796943px;}
.wsf6{word-spacing:16.820853px;}
.ws125{word-spacing:16.822926px;}
.ws11b{word-spacing:16.833087px;}
.ws14f{word-spacing:16.853403px;}
.ws23{word-spacing:16.858491px;}
.wsc6{word-spacing:16.863573px;}
.ws1c{word-spacing:16.873735px;}
.ws21{word-spacing:16.883896px;}
.ws22{word-spacing:16.909301px;}
.ws124{word-spacing:16.919463px;}
.ws12a{word-spacing:16.929625px;}
.ws11d{word-spacing:16.939786px;}
.ws13a{word-spacing:16.944868px;}
.ws129{word-spacing:16.960110px;}
.ws139{word-spacing:16.975353px;}
.ws12e{word-spacing:16.990596px;}
.ws100{word-spacing:17.000758px;}
.ws123{word-spacing:17.015991px;}
.ws27{word-spacing:17.021081px;}
.ws20{word-spacing:17.031244px;}
.ws127{word-spacing:17.046486px;}
.ws1f{word-spacing:17.056648px;}
.ws12b{word-spacing:17.061728px;}
.ws1e{word-spacing:17.076972px;}
.ws1d{word-spacing:17.092214px;}
.ws29{word-spacing:17.097295px;}
.wsc5{word-spacing:17.102376px;}
.wsfb{word-spacing:17.112536px;}
.ws6d{word-spacing:17.179493px;}
.wsf5{word-spacing:17.179507px;}
.wsf4{word-spacing:17.203418px;}
.ws11a{word-spacing:17.224318px;}
.ws16{word-spacing:17.251238px;}
.ws135{word-spacing:17.275127px;}
.ws12{word-spacing:17.520228px;}
.ws137{word-spacing:17.549497px;}
.ws6f{word-spacing:17.591958px;}
.ws9f{word-spacing:17.651734px;}
.ws41{word-spacing:17.717487px;}
.wsa0{word-spacing:17.729443px;}
.ws12c{word-spacing:17.737491px;}
.ws9e{word-spacing:17.860948px;}
.ws34{word-spacing:17.932680px;}
.ws118{word-spacing:17.966133px;}
.wsb0{word-spacing:18.040275px;}
.wsaf{word-spacing:18.088101px;}
.wsc4{word-spacing:18.117984px;}
.ws6b{word-spacing:18.129938px;}
.ws7a{word-spacing:18.153850px;}
.ws7e{word-spacing:18.177760px;}
.ws19{word-spacing:18.201670px;}
.wsed{word-spacing:18.273401px;}
.wse6{word-spacing:18.333177px;}
.ws3e{word-spacing:18.375019px;}
.wsae{word-spacing:18.375021px;}
.wsaa{word-spacing:18.380997px;}
.wse7{word-spacing:18.422840px;}
.wsec{word-spacing:18.428829px;}
.ws1a{word-spacing:18.434794px;}
.ws83{word-spacing:18.446750px;}
.ws80{word-spacing:18.470660px;}
.ws84{word-spacing:18.494570px;}
.ws43{word-spacing:18.542391px;}
.wscb{word-spacing:18.614121px;}
.ws51{word-spacing:18.691830px;}
.ws70{word-spacing:18.721718px;}
.wsb4{word-spacing:18.739650px;}
.wsa{word-spacing:18.763560px;}
.wsb5{word-spacing:18.769533px;}
.wsd0{word-spacing:18.799426px;}
.ws93{word-spacing:18.835291px;}
.ws4d{word-spacing:18.954843px;}
.wsdc{word-spacing:18.960790px;}
.wsdb{word-spacing:19.068416px;}
.ws47{word-spacing:19.080372px;}
.wsb6{word-spacing:19.092326px;}
.wsad{word-spacing:19.104282px;}
.ws3b{word-spacing:19.176011px;}
.ws69{word-spacing:19.223833px;}
.ws3c{word-spacing:19.241765px;}
.ws114{word-spacing:19.289586px;}
.wse9{word-spacing:19.379245px;}
.wse8{word-spacing:19.397185px;}
.ws126{word-spacing:19.439600px;}
.wsa2{word-spacing:19.516733px;}
.wsea{word-spacing:19.564553px;}
.wsb3{word-spacing:19.630306px;}
.wsd3{word-spacing:19.713992px;}
.wsef{word-spacing:19.719977px;}
.ws4c{word-spacing:19.737903px;}
.ws9c{word-spacing:19.761813px;}
.wsc{word-spacing:19.785723px;}
.ws61{word-spacing:19.809633px;}
.wsc3{word-spacing:19.845499px;}
.ws15{word-spacing:19.857455px;}
.ws107{word-spacing:19.875387px;}
.wsc2{word-spacing:19.899296px;}
.ws5d{word-spacing:19.905274px;}
.ws122{word-spacing:19.907043px;}
.ws91{word-spacing:19.923206px;}
.wsa4{word-spacing:19.929184px;}
.wsbd{word-spacing:19.947118px;}
.ws59{word-spacing:19.971028px;}
.wsf0{word-spacing:19.994938px;}
.ws38{word-spacing:20.078623px;}
.ws2{word-spacing:20.096557px;}
.ws11{word-spacing:20.102533px;}
.wse1{word-spacing:20.126445px;}
.wse2{word-spacing:20.168287px;}
.wsbc{word-spacing:20.174263px;}
.ws44{word-spacing:20.198174px;}
.ws6a{word-spacing:20.245996px;}
.ws63{word-spacing:20.251972px;}
.wse5{word-spacing:20.275884px;}
.wsdf{word-spacing:20.299794px;}
.wscf{word-spacing:20.311748px;}
.ws8d{word-spacing:20.323703px;}
.ws9d{word-spacing:20.359569px;}
.ws144{word-spacing:20.399893px;}
.ws10f{word-spacing:20.419345px;}
.wsa8{word-spacing:20.473140px;}
.ws62{word-spacing:20.538896px;}
.wsa9{word-spacing:20.580738px;}
.wsb{word-spacing:20.652469px;}
.wsa7{word-spacing:20.658415px;}
.ws110{word-spacing:20.676379px;}
.wsa6{word-spacing:20.813875px;}
.ws42{word-spacing:20.831796px;}
.ws57{word-spacing:20.873640px;}
.ws7d{word-spacing:20.969279px;}
.ws90{word-spacing:20.993191px;}
.ws130{word-spacing:20.999441px;}
.ws50{word-spacing:21.076876px;}
.wsd2{word-spacing:21.154584px;}
.ws113{word-spacing:21.262181px;}
.ws79{word-spacing:21.333911px;}
.ws10{word-spacing:21.441508px;}
.ws85{word-spacing:21.555081px;}
.wse{word-spacing:21.674632px;}
.ws92{word-spacing:21.859937px;}
.ws55{word-spacing:21.883847px;}
.wse4{word-spacing:22.015352px;}
.wsdd{word-spacing:22.099039px;}
.wsa3{word-spacing:22.128927px;}
.wsde{word-spacing:22.164791px;}
.ws78{word-spacing:22.332164px;}
.ws96{word-spacing:22.505513px;}
.ws112{word-spacing:22.577244px;}
.wsbe{word-spacing:22.625064px;}
.wsce{word-spacing:22.696795px;}
.ws104{word-spacing:22.798413px;}
.wsda{word-spacing:22.894054px;}
.wsd6{word-spacing:23.031537px;}
.ws10c{word-spacing:23.139135px;}
.ws3a{word-spacing:23.372259px;}
.ws10d{word-spacing:23.712981px;}
.ws3d{word-spacing:23.820576px;}
.ws8e{word-spacing:23.828906px;}
.ws52{word-spacing:23.879116px;}
.ws5c{word-spacing:24.053700px;}
.ws49{word-spacing:24.209117px;}
.ws48{word-spacing:24.334647px;}
.wsd5{word-spacing:24.370512px;}
.wsb8{word-spacing:24.394422px;}
.wsf1{word-spacing:24.591681px;}
.ws9a{word-spacing:24.615591px;}
.ws99{word-spacing:24.621569px;}
.ws76{word-spacing:24.663412px;}
.wsf2{word-spacing:24.711232px;}
.ws40{word-spacing:24.735142px;}
.wsca{word-spacing:24.788934px;}
.ws88{word-spacing:24.818829px;}
.ws5a{word-spacing:24.836761px;}
.wsc9{word-spacing:24.860671px;}
.ws5b{word-spacing:24.956312px;}
.ws14d{word-spacing:24.987963px;}
.ws87{word-spacing:25.004132px;}
.ws60{word-spacing:25.075864px;}
.ws14b{word-spacing:25.145472px;}
.ws14c{word-spacing:25.216604px;}
.ws102{word-spacing:25.524181px;}
.ws9{word-spacing:25.637754px;}
.ws89{word-spacing:25.757305px;}
.ws11f{word-spacing:25.872044px;}
.ws97{word-spacing:25.942611px;}
.ws36{word-spacing:25.954566px;}
.ws75{word-spacing:25.978475px;}
.ws4b{word-spacing:26.026295px;}
.ws8a{word-spacing:26.163780px;}
.ws35{word-spacing:26.223556px;}
.ws73{word-spacing:26.319195px;}
.ws81{word-spacing:26.408859px;}
.ws4f{word-spacing:26.540366px;}
.ws4e{word-spacing:26.659917px;}
.ws7c{word-spacing:26.725670px;}
.wsa5{word-spacing:26.731648px;}
.wsd8{word-spacing:27.114212px;}
.wsee{word-spacing:27.173987px;}
.ws7f{word-spacing:27.682080px;}
.ws149{word-spacing:28.056840px;}
.ws132{word-spacing:28.270239px;}
.ws10b{word-spacing:28.477095px;}
.ws131{word-spacing:28.600499px;}
.ws7{word-spacing:28.817816px;}
.wsb2{word-spacing:29.660653px;}
.ws115{word-spacing:29.839980px;}
.ws143{word-spacing:30.099370px;}
.wsd7{word-spacing:30.515443px;}
.ws94{word-spacing:30.963760px;}
.wsb7{word-spacing:31.304482px;}
.ws0{word-spacing:31.494844px;}
.ws1{word-spacing:31.580923px;}
.ws8f{word-spacing:31.621292px;}
.ws66{word-spacing:31.693023px;}
.ws138{word-spacing:31.887852px;}
.wsb9{word-spacing:32.033745px;}
.wsba{word-spacing:32.099496px;}
.ws5{word-spacing:32.147316px;}
.ws3f{word-spacing:32.619545px;}
.ws12d{word-spacing:32.797337px;}
.ws6{word-spacing:32.930379px;}
.wseb{word-spacing:33.049930px;}
.wsd9{word-spacing:33.241209px;}
.ws45{word-spacing:34.143823px;}
.ws3{word-spacing:35.919148px;}
.ws116{word-spacing:36.272672px;}
.ws4{word-spacing:39.679042px;}
.ws117{word-spacing:70.883911px;}
.wsd{word-spacing:71.551274px;}
._15{margin-left:-20.138398px;}
._16{margin-left:-14.172799px;}
._3{margin-left:-3.807694px;}
._b{margin-left:-2.677943px;}
._0{width:1.207461px;}
._9{width:14.083144px;}
._c{width:15.093332px;}
._7{width:17.036043px;}
._8{width:18.416860px;}
._a{width:19.576534px;}
._5{width:21.124703px;}
._6{width:22.547378px;}
._d{width:24.460175px;}
._14{width:25.733392px;}
._4{width:26.749579px;}
._f{width:27.843450px;}
._12{width:29.140627px;}
._1c{width:30.849791px;}
._13{width:32.135366px;}
._2{width:33.504230px;}
._e{width:35.279563px;}
._1{width:40.952271px;}
._10{width:71.623004px;}
._19{width:119.227455px;}
._17{width:395.331261px;}
._18{width:648.301157px;}
._1b{width:694.998146px;}
._1a{width:761.631841px;}
._11{width:1517.655470px;}
.fc2{color:rgb(19,20,19);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:24.885601px;}
.fs5{font-size:28.440599px;}
.fs6{font-size:31.996199px;}
.fsb{font-size:33.869399px;}
.fsc{font-size:33.938999px;}
.fsd{font-size:33.959999px;}
.fsa{font-size:35.551200px;}
.fs4{font-size:39.845999px;}
.fs9{font-size:42.661200px;}
.fs3{font-size:50.809198px;}
.fs1{font-size:59.775599px;}
.fs7{font-size:63.991201px;}
.fs2{font-size:71.730600px;}
.fs0{font-size:95.641800px;}
.y0{bottom:0.000000px;}
.y23{bottom:55.360270px;}
.y22{bottom:70.327390px;}
.y21{bottom:85.294510px;}
.y24{bottom:100.176522px;}
.y20{bottom:100.176524px;}
.yc0{bottom:110.296051px;}
.y6d{bottom:110.389043px;}
.y17e{bottom:110.550191px;}
.ybf{bottom:115.993801px;}
.y8a{bottom:119.315218px;}
.y17d{bottom:125.432205px;}
.y147{bottom:127.813357px;}
.y4c{bottom:128.240132px;}
.y6c{bottom:128.247004px;}
.y1f{bottom:129.429919px;}
.y89{bottom:137.258359px;}
.y17c{bottom:140.314219px;}
.y146{bottom:142.780477px;}
.y1e{bottom:144.397039px;}
.y4b{bottom:146.183273px;}
.y6b{bottom:146.190145px;}
.ye3{bottom:155.197995px;}
.y88{bottom:155.201500px;}
.y17b{bottom:155.281339px;}
.y145{bottom:157.662491px;}
.ya2{bottom:159.110349px;}
.y1d{bottom:159.364159px;}
.y4a{bottom:164.126414px;}
.y6a{bottom:164.133286px;}
.y17a{bottom:170.163353px;}
.y144{bottom:172.544505px;}
.ye2{bottom:173.141136px;}
.y87{bottom:173.144640px;}
.y1c{bottom:174.331279px;}
.ya1{bottom:177.053490px;}
.y49{bottom:182.069554px;}
.y69{bottom:182.076427px;}
.y179{bottom:185.045367px;}
.yf5{bottom:185.133700px;}
.y143{bottom:187.511625px;}
.y1b{bottom:189.213293px;}
.ye1{bottom:191.084276px;}
.y86{bottom:191.087781px;}
.y178{bottom:200.012487px;}
.y48{bottom:200.012695px;}
.y68{bottom:200.019568px;}
.y142{bottom:202.393639px;}
.yf4{bottom:203.076841px;}
.ye0{bottom:208.942237px;}
.y85{bottom:208.945742px;}
.y1a{bottom:211.663337px;}
.y177{bottom:214.887427px;}
.y67{bottom:217.962709px;}
.yf3{bottom:221.019982px;}
.ya0{bottom:221.953931px;}
.y19{bottom:226.630457px;}
.ydf{bottom:226.885378px;}
.y84{bottom:226.888883px;}
.y176{bottom:229.854547px;}
.y66{bottom:235.905850px;}
.yf2{bottom:238.877942px;}
.y9f{bottom:239.897072px;}
.y141{bottom:241.256699px;}
.y18{bottom:241.512471px;}
.y47{bottom:241.852043px;}
.y175{bottom:244.736561px;}
.yde{bottom:244.828519px;}
.y83{bottom:244.832024px;}
.y65{bottom:253.848990px;}
.yf1{bottom:256.821083px;}
.y17{bottom:257.074059px;}
.y9e{bottom:257.840213px;}
.y174{bottom:259.618575px;}
.ydd{bottom:262.771660px;}
.ydb{bottom:262.771967px;}
.y82{bottom:262.775165px;}
.ydc{bottom:269.404655px;}
.y64{bottom:271.706951px;}
.y173{bottom:274.585695px;}
.yf0{bottom:274.764224px;}
.y9d{bottom:275.783354px;}
.yda{bottom:280.715108px;}
.y81{bottom:280.718306px;}
.y172{bottom:289.467709px;}
.y63{bottom:289.650092px;}
.yef{bottom:292.707365px;}
.y9c{bottom:293.726494px;}
.yd9{bottom:298.658249px;}
.y80{bottom:298.661446px;}
.y171{bottom:304.349723px;}
.y140{bottom:305.461225px;}
.y16{bottom:307.333536px;}
.y46{bottom:307.593231px;}
.y62{bottom:307.593233px;}
.yee{bottom:310.650506px;}
.y7f{bottom:316.604587px;}
.y170{bottom:319.316842px;}
.y13f{bottom:320.428345px;}
.y9b{bottom:320.598615px;}
.y15{bottom:325.276677px;}
.y45{bottom:325.536372px;}
.y61{bottom:325.536374px;}
.yed{bottom:328.593647px;}
.y16f{bottom:334.198856px;}
.y7e{bottom:334.547728px;}
.y9a{bottom:338.541756px;}
.yd8{bottom:340.497597px;}
.y14{bottom:343.219817px;}
.y44{bottom:343.479513px;}
.y60{bottom:343.479515px;}
.yec{bottom:346.536788px;}
.y16e{bottom:349.165976px;}
.y13e{bottom:353.343664px;}
.y98{bottom:356.487394px;}
.y13{bottom:361.162958px;}
.y7d{bottom:361.419849px;}
.y43{bottom:361.422654px;}
.y5f{bottom:361.422656px;}
.y99{bottom:363.118057px;}
.y16d{bottom:364.047990px;}
.yeb{bottom:364.479929px;}
.y13d{bottom:371.286805px;}
.y97{bottom:374.345355px;}
.y16c{bottom:378.930004px;}
.y12{bottom:379.020919px;}
.y7c{bottom:379.362989px;}
.y42{bottom:379.365795px;}
.y5e{bottom:379.365796px;}
.yea{bottom:382.337889px;}
.y13c{bottom:389.229946px;}
.y96{bottom:392.288496px;}
.y16b{bottom:393.897124px;}
.y11{bottom:396.964060px;}
.y7b{bottom:397.306130px;}
.y41{bottom:397.308935px;}
.y5d{bottom:397.308937px;}
.ye9{bottom:400.281030px;}
.yd7{bottom:406.237919px;}
.y13b{bottom:407.087907px;}
.y16a{bottom:408.779138px;}
.y95{bottom:410.231637px;}
.y10{bottom:414.907201px;}
.y7a{bottom:415.164091px;}
.y40{bottom:415.166896px;}
.ye8{bottom:418.224171px;}
.y169{bottom:423.746258px;}
.y5c{bottom:424.181058px;}
.yd6{bottom:424.181060px;}
.y13a{bottom:425.031048px;}
.y94{bottom:428.174778px;}
.yf{bottom:432.850342px;}
.y79{bottom:433.107232px;}
.y3f{bottom:433.110037px;}
.ye7{bottom:436.167312px;}
.y168{bottom:438.628271px;}
.y5b{bottom:442.124199px;}
.yd5{bottom:442.124200px;}
.y139{bottom:442.974189px;}
.y93{bottom:446.117919px;}
.y78{bottom:451.050373px;}
.y3e{bottom:451.053178px;}
.y167{bottom:453.510285px;}
.ye6{bottom:454.110453px;}
.y5a{bottom:460.067339px;}
.yd4{bottom:460.067341px;}
.y138{bottom:460.917330px;}
.y92{bottom:464.061060px;}
.y166{bottom:468.477405px;}
.y77{bottom:468.993514px;}
.y3d{bottom:468.996319px;}
.ye5{bottom:472.053594px;}
.ye{bottom:474.689712px;}
.y59{bottom:478.010480px;}
.yd3{bottom:478.010482px;}
.y137{bottom:478.860470px;}
.y91{bottom:482.004200px;}
.y165{bottom:483.359419px;}
.y76{bottom:486.936655px;}
.y3c{bottom:486.939460px;}
.ye4{bottom:489.996735px;}
.y58{bottom:495.868441px;}
.y136{bottom:496.803611px;}
.y164{bottom:498.241433px;}
.y90{bottom:499.947341px;}
.y75{bottom:504.879795px;}
.y3b{bottom:504.882601px;}
.yd2{bottom:504.882603px;}
.y163{bottom:513.208553px;}
.y57{bottom:513.811582px;}
.y135{bottom:514.746752px;}
.y8f{bottom:517.805302px;}
.y74{bottom:522.822936px;}
.y3a{bottom:522.825741px;}
.yd1{bottom:522.825743px;}
.y162{bottom:528.090567px;}
.y56{bottom:531.754723px;}
.y134{bottom:532.689893px;}
.y11f{bottom:535.152479px;}
.y8e{bottom:535.748443px;}
.y73{bottom:540.766077px;}
.y39{bottom:540.768882px;}
.yd0{bottom:540.768884px;}
.y161{bottom:543.057687px;}
.y55{bottom:549.697864px;}
.y11e{bottom:550.119598px;}
.y133{bottom:550.547854px;}
.y8d{bottom:553.691584px;}
.y160{bottom:557.939701px;}
.yd{bottom:558.370927px;}
.y72{bottom:558.624038px;}
.y38{bottom:558.626843px;}
.ycf{bottom:558.626845px;}
.y54{bottom:567.641005px;}
.y132{bottom:568.490995px;}
.y8c{bottom:571.634725px;}
.y15f{bottom:572.821714px;}
.yc{bottom:576.314068px;}
.y71{bottom:576.567179px;}
.y37{bottom:576.569984px;}
.yce{bottom:576.569986px;}
.y10a{bottom:578.900848px;}
.y53{bottom:585.584145px;}
.y131{bottom:586.434136px;}
.y15e{bottom:587.788834px;}
.y113{bottom:588.864578px;}
.y11d{bottom:588.958248px;}
.y8b{bottom:589.577866px;}
.yb{bottom:594.257209px;}
.y70{bottom:594.510320px;}
.y36{bottom:594.513125px;}
.ycd{bottom:594.513127px;}
.y11c{bottom:600.830664px;}
.y15d{bottom:602.670848px;}
.y52{bottom:603.527286px;}
.y111{bottom:603.693346px;}
.y130{bottom:604.377277px;}
.y112{bottom:607.946091px;}
.y11b{bottom:611.634189px;}
.ya{bottom:612.200350px;}
.y6f{bottom:612.453461px;}
.y35{bottom:612.456266px;}
.ycc{bottom:612.456268px;}
.y15c{bottom:617.552862px;}
.y110{bottom:619.544175px;}
.y51{bottom:621.470427px;}
.y12f{bottom:622.320417px;}
.y11a{bottom:623.279072px;}
.y9{bottom:630.143491px;}
.y34{bottom:630.399407px;}
.ycb{bottom:630.399409px;}
.y15b{bottom:632.519982px;}
.y10f{bottom:633.759831px;}
.ybe{bottom:634.733688px;}
.y119{bottom:635.523350px;}
.y50{bottom:639.328388px;}
.y12e{bottom:640.263558px;}
.y118{bottom:647.167384px;}
.y15a{bottom:647.401996px;}
.y8{bottom:648.086632px;}
.y33{bottom:648.342548px;}
.yca{bottom:648.342549px;}
.y10e{bottom:649.405202px;}
.y6e{bottom:654.292786px;}
.y4f{bottom:657.271529px;}
.y12d{bottom:658.206699px;}
.y117{bottom:659.412511px;}
.y159{bottom:662.369116px;}
.yb1{bottom:664.277710px;}
.y10d{bottom:664.642205px;}
.y7{bottom:665.944593px;}
.y32{bottom:666.285688px;}
.yb9{bottom:669.965646px;}
.y116{bottom:671.057394px;}
.y4e{bottom:675.214670px;}
.y12c{bottom:676.149840px;}
.y158{bottom:677.251130px;}
.y10c{bottom:679.266229px;}
.yb8{bottom:679.739685px;}
.y115{bottom:682.702278px;}
.y6{bottom:683.887734px;}
.y31{bottom:684.228829px;}
.yab{bottom:687.725190px;}
.y157{bottom:692.133144px;}
.yc9{bottom:693.157811px;}
.y12b{bottom:694.007801px;}
.y114{bottom:694.707138px;}
.y10b{bottom:694.707840px;}
.yaa{bottom:695.192269px;}
.ya8{bottom:696.612877px;}
.y5{bottom:701.830874px;}
.y30{bottom:702.086790px;}
.ya9{bottom:704.078534px;}
.ya7{bottom:705.500565px;}
.y156{bottom:707.100263px;}
.yc8{bottom:711.100952px;}
.y12a{bottom:711.950942px;}
.y2f{bottom:720.029931px;}
.y155{bottom:721.982277px;}
.yc7{bottom:729.044092px;}
.y129{bottom:729.894083px;}
.y154{bottom:736.949397px;}
.y2e{bottom:737.973072px;}
.y109{bottom:746.645345px;}
.yc6{bottom:746.987233px;}
.y128{bottom:747.837223px;}
.y153{bottom:751.831411px;}
.yb0{bottom:753.074249px;}
.y2d{bottom:755.916213px;}
.y108{bottom:761.527359px;}
.yac{bottom:763.737762px;}
.yc5{bottom:764.930374px;}
.y127{bottom:765.780364px;}
.y152{bottom:766.713425px;}
.y2c{bottom:773.859354px;}
.ya6{bottom:777.496765px;}
.ybd{bottom:779.282683px;}
.y151{bottom:781.680545px;}
.yc4{bottom:782.788335px;}
.y126{bottom:783.723505px;}
.y4{bottom:784.233032px;}
.ybc{bottom:788.171082px;}
.ya5{bottom:789.483582px;}
.yfe{bottom:790.346374px;}
.y2b{bottom:791.802494px;}
.y150{bottom:796.562559px;}
.y107{bottom:798.383240px;}
.yc3{bottom:800.731476px;}
.y125{bottom:801.666646px;}
.yff{bottom:801.990845px;}
.y2a{bottom:809.745635px;}
.y14f{bottom:811.444573px;}
.y106{bottom:813.361257px;}
.yfd{bottom:815.848206px;}
.yfc{bottom:816.368242px;}
.yc2{bottom:818.674617px;}
.y124{bottom:819.609787px;}
.y14e{bottom:826.411692px;}
.yaf{bottom:827.277924px;}
.y29{bottom:827.688776px;}
.y105{bottom:828.740714px;}
.yfb{bottom:830.745650px;}
.yae{bottom:837.178246px;}
.yb3{bottom:837.178915px;}
.y123{bottom:837.467748px;}
.y3{bottom:837.978172px;}
.y14d{bottom:841.293706px;}
.y104{bottom:843.118122px;}
.yb2{bottom:844.365143px;}
.yad{bottom:844.366608px;}
.yfa{bottom:845.123058px;}
.y28{bottom:845.546737px;}
.yb4{bottom:846.345612px;}
.ybb{bottom:850.025050px;}
.y122{bottom:855.410889px;}
.y14c{bottom:856.260826px;}
.y103{bottom:858.097100px;}
.yf9{bottom:859.500466px;}
.yba{bottom:859.799889px;}
.y27{bottom:863.489878px;}
.y2{bottom:864.934814px;}
.ya4{bottom:869.475542px;}
.y14b{bottom:871.142840px;}
.yb5{bottom:872.157623px;}
.y102{bottom:872.874989px;}
.yf8{bottom:873.877874px;}
.yb7{bottom:874.952426px;}
.ya3{bottom:878.362518px;}
.y26{bottom:881.433019px;}
.yb6{bottom:884.727264px;}
.y14a{bottom:886.024854px;}
.yf7{bottom:888.255282px;}
.y101{bottom:888.255295px;}
.y1{bottom:891.807770px;}
.y121{bottom:897.250214px;}
.y25{bottom:899.376160px;}
.y149{bottom:900.991974px;}
.yf6{bottom:902.632690px;}
.y100{bottom:902.632703px;}
.y17f{bottom:935.429900px;}
.y148{bottom:935.430626px;}
.yc1{bottom:935.431120px;}
.y180{bottom:935.431714px;}
.y120{bottom:935.432419px;}
.y4d{bottom:935.432831px;}
.hb{height:18.340688px;}
.h8{height:20.960722px;}
.hf{height:23.302146px;}
.h9{height:23.581198px;}
.h11{height:24.911225px;}
.h12{height:24.926639px;}
.h10{height:25.013042px;}
.h13{height:25.028519px;}
.hd{height:26.201234px;}
.h7{height:27.414047px;}
.hc{height:31.441304px;}
.h6{height:34.956728px;}
.h14{height:34.985022px;}
.he{height:35.159965px;}
.h4{height:41.125612px;}
.h3{height:41.364714px;}
.ha{height:47.161515px;}
.h5{height:49.637575px;}
.h2{height:66.184126px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.x1{left:80.787300px;}
.x2e{left:85.549501px;}
.x3a{left:87.590549px;}
.x31{left:92.263653px;}
.x2{left:98.727464px;}
.x4{left:101.028808px;}
.x33{left:105.858049px;}
.x6{left:121.265986px;}
.xd{left:125.931955px;}
.x2a{left:129.015452px;}
.xc{left:131.470654px;}
.x8{left:140.552303px;}
.x15{left:144.769798px;}
.x7{left:147.279900px;}
.x5{left:148.478703px;}
.x2b{left:154.893448px;}
.x2c{left:156.274563px;}
.x13{left:158.863732px;}
.x14{left:162.231089px;}
.x12{left:165.591328px;}
.x32{left:169.703247px;}
.x2f{left:173.480255px;}
.x36{left:175.465805px;}
.x30{left:184.110146px;}
.x24{left:189.154495px;}
.x1a{left:207.163483px;}
.x19{left:212.311340px;}
.xb{left:217.241249px;}
.x1b{left:224.005806px;}
.x18{left:229.290161px;}
.x16{left:248.081245px;}
.x17{left:262.526001px;}
.xf{left:264.457804px;}
.xe{left:269.604237px;}
.x1e{left:306.134857px;}
.xa{left:312.913193px;}
.x23{left:317.800209px;}
.x25{left:332.042702px;}
.x39{left:343.616707px;}
.x34{left:345.399605px;}
.x37{left:348.461540px;}
.x11{left:351.534975px;}
.x38{left:355.636439px;}
.x10{left:356.682832px;}
.x35{left:358.994110px;}
.x2d{left:381.841986px;}
.x22{left:383.178976px;}
.x21{left:388.325409px;}
.x20{left:405.305237px;}
.x1f{left:424.094238px;}
.x9{left:438.836105px;}
.x1d{left:445.206619px;}
.x1c{left:479.467941px;}
.x29{left:488.119469px;}
.x27{left:490.984991px;}
.x28{left:492.796783px;}
.x26{left:496.551315px;}
.x3{left:565.599023px;}
@media print{
.v1{vertical-align:-7.559001pt;}
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.008501pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.042508pt;}
.ls3{letter-spacing:0.083175pt;}
.ls1d{letter-spacing:0.094844pt;}
.lsd{letter-spacing:0.127521pt;}
.ls18{letter-spacing:0.164715pt;}
.ls6{letter-spacing:0.167106pt;}
.ls1e{letter-spacing:0.270982pt;}
.ls1a{letter-spacing:0.302861pt;}
.ls9{letter-spacing:0.345370pt;}
.lsa{letter-spacing:11.508795pt;}
.ls14{letter-spacing:12.720247pt;}
.ls17{letter-spacing:12.768068pt;}
.ls1{letter-spacing:13.926385pt;}
.ls0{letter-spacing:14.229248pt;}
.ls1c{letter-spacing:15.159092pt;}
.ls11{letter-spacing:17.555429pt;}
.ls15{letter-spacing:17.826412pt;}
.ls19{letter-spacing:17.847665pt;}
.ls10{letter-spacing:17.858291pt;}
.ls16{letter-spacing:20.217436pt;}
.ls1b{letter-spacing:21.811450pt;}
.ls4{letter-spacing:22.649610pt;}
.ls5{letter-spacing:22.685741pt;}
.ls13{letter-spacing:22.720042pt;}
.lsc{letter-spacing:23.001651pt;}
.lsb{letter-spacing:23.304513pt;}
.lse{letter-spacing:23.623315pt;}
.lsf{letter-spacing:41.911991pt;}
.ls12{letter-spacing:637.264763pt;}
.wsbb{word-spacing:-17.900799pt;}
.wsc0{word-spacing:-12.821202pt;}
.ws13{word-spacing:-0.398504pt;}
.wsf{word-spacing:-0.053134pt;}
.ws24{word-spacing:-0.045164pt;}
.wsc8{word-spacing:-0.002212pt;}
.ws2a{word-spacing:0.000000pt;}
.wsc7{word-spacing:0.002212pt;}
.ws2b{word-spacing:10.993396pt;}
.ws121{word-spacing:11.209638pt;}
.ws14a{word-spacing:11.214155pt;}
.ws141{word-spacing:11.218671pt;}
.ws136{word-spacing:11.227704pt;}
.ws30{word-spacing:11.301573pt;}
.ws120{word-spacing:11.430941pt;}
.ws11e{word-spacing:11.467071pt;}
.ws31{word-spacing:11.487542pt;}
.ws11c{word-spacing:11.575464pt;}
.ws14e{word-spacing:11.701923pt;}
.ws2e{word-spacing:11.864792pt;}
.ws134{word-spacing:12.045168pt;}
.ws111{word-spacing:12.364250pt;}
.ws82{word-spacing:12.385504pt;}
.ws32{word-spacing:12.406758pt;}
.ws33{word-spacing:12.491772pt;}
.ws37{word-spacing:12.507712pt;}
.ws2c{word-spacing:12.550219pt;}
.ws133{word-spacing:12.569066pt;}
.ws147{word-spacing:12.587133pt;}
.wsc1{word-spacing:12.592726pt;}
.wsd4{word-spacing:12.613979pt;}
.wscd{word-spacing:12.688367pt;}
.wsab{word-spacing:12.709620pt;}
.wse0{word-spacing:12.725561pt;}
.ws77{word-spacing:12.736187pt;}
.wscc{word-spacing:12.746814pt;}
.wsac{word-spacing:12.789321pt;}
.ws95{word-spacing:12.853082pt;}
.wsb1{word-spacing:12.895589pt;}
.wsbf{word-spacing:12.916843pt;}
.ws140{word-spacing:12.921344pt;}
.ws17{word-spacing:12.991230pt;}
.ws12f{word-spacing:12.993606pt;}
.ws105{word-spacing:13.054991pt;}
.wsf3{word-spacing:13.113438pt;}
.ws106{word-spacing:13.155945pt;}
.ws65{word-spacing:13.219706pt;}
.ws8{word-spacing:13.267526pt;}
.ws10a{word-spacing:13.320660pt;}
.ws64{word-spacing:13.352541pt;}
.wse3{word-spacing:13.373794pt;}
.ws18{word-spacing:13.395048pt;}
.ws103{word-spacing:13.416301pt;}
.ws5f{word-spacing:13.522569pt;}
.ws98{word-spacing:13.543822pt;}
.ws2d{word-spacing:13.591642pt;}
.wsa1{word-spacing:13.612897pt;}
.ws13d{word-spacing:13.666546pt;}
.ws58{word-spacing:13.676657pt;}
.ws101{word-spacing:13.697910pt;}
.ws4a{word-spacing:13.719165pt;}
.ws86{word-spacing:13.729790pt;}
.wsfa{word-spacing:13.752356pt;}
.ws2f{word-spacing:13.761671pt;}
.wsf8{word-spacing:13.774938pt;}
.wsd1{word-spacing:13.825432pt;}
.ws13f{word-spacing:13.847200pt;}
.ws109{word-spacing:13.862625pt;}
.ws13c{word-spacing:13.951076pt;}
.ws14{word-spacing:13.958267pt;}
.ws9b{word-spacing:13.979520pt;}
.wsf7{word-spacing:13.991724pt;}
.ws74{word-spacing:14.022027pt;}
.ws10e{word-spacing:14.064535pt;}
.wsf9{word-spacing:14.086570pt;}
.ws13b{word-spacing:14.091084pt;}
.ws13e{word-spacing:14.100118pt;}
.ws108{word-spacing:14.176115pt;}
.ws53{word-spacing:14.218623pt;}
.ws5e{word-spacing:14.239876pt;}
.ws142{word-spacing:14.249157pt;}
.ws54{word-spacing:14.303637pt;}
.ws6c{word-spacing:14.324890pt;}
.wsfe{word-spacing:14.389163pt;}
.ws56{word-spacing:14.425844pt;}
.ws8c{word-spacing:14.478978pt;}
.wsfd{word-spacing:14.506591pt;}
.ws7b{word-spacing:14.521485pt;}
.ws72{word-spacing:14.574619pt;}
.wsfc{word-spacing:14.596919pt;}
.ws71{word-spacing:14.627752pt;}
.ws68{word-spacing:14.664947pt;}
.ws39{word-spacing:14.670261pt;}
.ws67{word-spacing:14.728708pt;}
.ws148{word-spacing:14.754992pt;}
.ws28{word-spacing:14.764024pt;}
.ws119{word-spacing:14.809187pt;}
.ws6e{word-spacing:14.824348pt;}
.ws146{word-spacing:14.845319pt;}
.ws128{word-spacing:14.858868pt;}
.ws25{word-spacing:14.863384pt;}
.wsff{word-spacing:14.876933pt;}
.ws26{word-spacing:14.890483pt;}
.ws145{word-spacing:14.899515pt;}
.ws1b{word-spacing:14.913065pt;}
.ws8b{word-spacing:14.914677pt;}
.ws46{word-spacing:14.930616pt;}
.wsf6{word-spacing:14.951869pt;}
.ws125{word-spacing:14.953712pt;}
.ws11b{word-spacing:14.962744pt;}
.ws14f{word-spacing:14.980803pt;}
.ws23{word-spacing:14.985326pt;}
.wsc6{word-spacing:14.989842pt;}
.ws1c{word-spacing:14.998876pt;}
.ws21{word-spacing:15.007908pt;}
.ws22{word-spacing:15.030489pt;}
.ws124{word-spacing:15.039523pt;}
.ws12a{word-spacing:15.048556pt;}
.ws11d{word-spacing:15.057588pt;}
.ws13a{word-spacing:15.062105pt;}
.ws129{word-spacing:15.075653pt;}
.ws139{word-spacing:15.089203pt;}
.ws12e{word-spacing:15.102752pt;}
.ws100{word-spacing:15.111785pt;}
.ws123{word-spacing:15.125325pt;}
.ws27{word-spacing:15.129850pt;}
.ws20{word-spacing:15.138883pt;}
.ws127{word-spacing:15.152432pt;}
.ws1f{word-spacing:15.161465pt;}
.ws12b{word-spacing:15.165981pt;}
.ws1e{word-spacing:15.179531pt;}
.ws1d{word-spacing:15.193079pt;}
.ws29{word-spacing:15.197596pt;}
.wsc5{word-spacing:15.202112pt;}
.wsfb{word-spacing:15.211144pt;}
.ws6d{word-spacing:15.270661pt;}
.wsf5{word-spacing:15.270673pt;}
.wsf4{word-spacing:15.291928pt;}
.ws11a{word-spacing:15.310505pt;}
.ws16{word-spacing:15.334434pt;}
.ws135{word-spacing:15.355669pt;}
.ws12{word-spacing:15.573536pt;}
.ws137{word-spacing:15.599553pt;}
.ws6f{word-spacing:15.637296pt;}
.ws9f{word-spacing:15.690430pt;}
.ws41{word-spacing:15.748877pt;}
.wsa0{word-spacing:15.759505pt;}
.ws12c{word-spacing:15.766659pt;}
.ws9e{word-spacing:15.876398pt;}
.ws34{word-spacing:15.940160pt;}
.ws118{word-spacing:15.969896pt;}
.wsb0{word-spacing:16.035800pt;}
.wsaf{word-spacing:16.078312pt;}
.wsc4{word-spacing:16.104875pt;}
.ws6b{word-spacing:16.115501pt;}
.ws7a{word-spacing:16.136756pt;}
.ws7e{word-spacing:16.158009pt;}
.ws19{word-spacing:16.179262pt;}
.wsed{word-spacing:16.243023pt;}
.wse6{word-spacing:16.296157pt;}
.ws3e{word-spacing:16.333350pt;}
.wsae{word-spacing:16.333352pt;}
.wsaa{word-spacing:16.338664pt;}
.wse7{word-spacing:16.375858pt;}
.wsec{word-spacing:16.381182pt;}
.ws1a{word-spacing:16.386484pt;}
.ws83{word-spacing:16.397111pt;}
.ws80{word-spacing:16.418364pt;}
.ws84{word-spacing:16.439618pt;}
.ws43{word-spacing:16.482126pt;}
.wscb{word-spacing:16.545885pt;}
.ws51{word-spacing:16.614960pt;}
.ws70{word-spacing:16.641527pt;}
.wsb4{word-spacing:16.657467pt;}
.wsa{word-spacing:16.678720pt;}
.wsb5{word-spacing:16.684030pt;}
.wsd0{word-spacing:16.710601pt;}
.ws93{word-spacing:16.742481pt;}
.ws4d{word-spacing:16.848749pt;}
.wsdc{word-spacing:16.854036pt;}
.wsdb{word-spacing:16.949703pt;}
.ws47{word-spacing:16.960330pt;}
.wsb6{word-spacing:16.970956pt;}
.wsad{word-spacing:16.981584pt;}
.ws3b{word-spacing:17.045343pt;}
.ws69{word-spacing:17.087851pt;}
.ws3c{word-spacing:17.103791pt;}
.ws114{word-spacing:17.146299pt;}
.wse9{word-spacing:17.225995pt;}
.wse8{word-spacing:17.241942pt;}
.ws126{word-spacing:17.279644pt;}
.wsa2{word-spacing:17.348207pt;}
.wsea{word-spacing:17.390713pt;}
.wsb3{word-spacing:17.449161pt;}
.wsd3{word-spacing:17.523548pt;}
.wsef{word-spacing:17.528868pt;}
.ws4c{word-spacing:17.544803pt;}
.ws9c{word-spacing:17.566056pt;}
.wsc{word-spacing:17.587309pt;}
.ws61{word-spacing:17.608563pt;}
.wsc3{word-spacing:17.640443pt;}
.ws15{word-spacing:17.651071pt;}
.ws107{word-spacing:17.667010pt;}
.wsc2{word-spacing:17.688263pt;}
.ws5d{word-spacing:17.693577pt;}
.ws122{word-spacing:17.695150pt;}
.ws91{word-spacing:17.709517pt;}
.wsa4{word-spacing:17.714830pt;}
.wsbd{word-spacing:17.730772pt;}
.ws59{word-spacing:17.752025pt;}
.wsf0{word-spacing:17.773278pt;}
.ws38{word-spacing:17.847665pt;}
.ws2{word-spacing:17.863606pt;}
.ws11{word-spacing:17.868918pt;}
.wse1{word-spacing:17.890173pt;}
.wse2{word-spacing:17.927366pt;}
.wsbc{word-spacing:17.932678pt;}
.ws44{word-spacing:17.953933pt;}
.ws6a{word-spacing:17.996441pt;}
.ws63{word-spacing:18.001753pt;}
.wse5{word-spacing:18.023008pt;}
.wsdf{word-spacing:18.044261pt;}
.wscf{word-spacing:18.054887pt;}
.ws8d{word-spacing:18.065514pt;}
.ws9d{word-spacing:18.097395pt;}
.ws144{word-spacing:18.133238pt;}
.ws10f{word-spacing:18.150529pt;}
.wsa8{word-spacing:18.198346pt;}
.ws62{word-spacing:18.256796pt;}
.wsa9{word-spacing:18.293989pt;}
.wsb{word-spacing:18.357750pt;}
.wsa7{word-spacing:18.363035pt;}
.ws110{word-spacing:18.379004pt;}
.wsa6{word-spacing:18.501223pt;}
.ws42{word-spacing:18.517152pt;}
.ws57{word-spacing:18.554346pt;}
.ws7d{word-spacing:18.639359pt;}
.ws90{word-spacing:18.660614pt;}
.ws130{word-spacing:18.666170pt;}
.ws50{word-spacing:18.735001pt;}
.wsd2{word-spacing:18.804075pt;}
.ws113{word-spacing:18.899717pt;}
.ws79{word-spacing:18.963476pt;}
.ws10{word-spacing:19.059118pt;}
.ws85{word-spacing:19.160072pt;}
.wse{word-spacing:19.266340pt;}
.ws92{word-spacing:19.431055pt;}
.ws55{word-spacing:19.452308pt;}
.wse4{word-spacing:19.569202pt;}
.wsdd{word-spacing:19.643591pt;}
.wsa3{word-spacing:19.670158pt;}
.wsde{word-spacing:19.702037pt;}
.ws78{word-spacing:19.850812pt;}
.ws96{word-spacing:20.004900pt;}
.ws112{word-spacing:20.068662pt;}
.wsbe{word-spacing:20.111168pt;}
.wsce{word-spacing:20.174929pt;}
.ws104{word-spacing:20.265256pt;}
.wsda{word-spacing:20.350270pt;}
.wsd6{word-spacing:20.472478pt;}
.ws10c{word-spacing:20.568120pt;}
.ws3a{word-spacing:20.775341pt;}
.ws10d{word-spacing:21.078205pt;}
.ws3d{word-spacing:21.173845pt;}
.ws8e{word-spacing:21.181250pt;}
.ws52{word-spacing:21.225881pt;}
.ws5c{word-spacing:21.381067pt;}
.ws49{word-spacing:21.519215pt;}
.ws48{word-spacing:21.630797pt;}
.wsd5{word-spacing:21.662678pt;}
.wsb8{word-spacing:21.683931pt;}
.wsf1{word-spacing:21.859272pt;}
.ws9a{word-spacing:21.880525pt;}
.ws99{word-spacing:21.885839pt;}
.ws76{word-spacing:21.923033pt;}
.wsf2{word-spacing:21.965540pt;}
.ws40{word-spacing:21.986793pt;}
.wsca{word-spacing:22.034608pt;}
.ws88{word-spacing:22.061182pt;}
.ws5a{word-spacing:22.077121pt;}
.wsc9{word-spacing:22.098374pt;}
.ws5b{word-spacing:22.183389pt;}
.ws14d{word-spacing:22.211523pt;}
.ws87{word-spacing:22.225895pt;}
.ws60{word-spacing:22.289657pt;}
.ws14b{word-spacing:22.351531pt;}
.ws14c{word-spacing:22.414760pt;}
.ws102{word-spacing:22.688160pt;}
.ws9{word-spacing:22.789115pt;}
.ws89{word-spacing:22.895382pt;}
.ws11f{word-spacing:22.997373pt;}
.ws97{word-spacing:23.060099pt;}
.ws36{word-spacing:23.070725pt;}
.ws75{word-spacing:23.091978pt;}
.ws4b{word-spacing:23.134485pt;}
.ws8a{word-spacing:23.256694pt;}
.ws35{word-spacing:23.309827pt;}
.ws73{word-spacing:23.394840pt;}
.ws81{word-spacing:23.474541pt;}
.ws4f{word-spacing:23.591436pt;}
.ws4e{word-spacing:23.697704pt;}
.ws7c{word-spacing:23.756152pt;}
.wsa5{word-spacing:23.761465pt;}
.wsd8{word-spacing:24.101522pt;}
.wsee{word-spacing:24.154656pt;}
.ws7f{word-spacing:24.606293pt;}
.ws149{word-spacing:24.939413pt;}
.ws132{word-spacing:25.129101pt;}
.ws10b{word-spacing:25.312973pt;}
.ws131{word-spacing:25.422666pt;}
.ws7{word-spacing:25.615837pt;}
.wsb2{word-spacing:26.365025pt;}
.ws115{word-spacing:26.524426pt;}
.ws143{word-spacing:26.754996pt;}
.wsd7{word-spacing:27.124838pt;}
.ws94{word-spacing:27.523342pt;}
.wsb7{word-spacing:27.826206pt;}
.ws0{word-spacing:27.995416pt;}
.ws1{word-spacing:28.071931pt;}
.ws8f{word-spacing:28.107815pt;}
.ws66{word-spacing:28.171576pt;}
.ws138{word-spacing:28.344757pt;}
.wsb9{word-spacing:28.474440pt;}
.wsba{word-spacing:28.532886pt;}
.ws5{word-spacing:28.575392pt;}
.ws3f{word-spacing:28.995151pt;}
.ws12d{word-spacing:29.153189pt;}
.ws6{word-spacing:29.271448pt;}
.wseb{word-spacing:29.377715pt;}
.wsd9{word-spacing:29.547741pt;}
.ws45{word-spacing:30.350065pt;}
.ws3{word-spacing:31.928131pt;}
.ws116{word-spacing:32.242375pt;}
.ws4{word-spacing:35.270259pt;}
.ws117{word-spacing:63.007921pt;}
.wsd{word-spacing:63.601132pt;}
._15{margin-left:-17.900798pt;}
._16{margin-left:-12.598044pt;}
._3{margin-left:-3.384617pt;}
._b{margin-left:-2.380394pt;}
._0{width:1.073298pt;}
._9{width:12.518350pt;}
._c{width:13.416295pt;}
._7{width:15.143150pt;}
._8{width:16.370542pt;}
._a{width:17.401364pt;}
._5{width:18.777514pt;}
._6{width:20.042114pt;}
._d{width:21.742378pt;}
._14{width:22.874126pt;}
._4{width:23.777404pt;}
._f{width:24.749733pt;}
._12{width:25.902780pt;}
._1c{width:27.422036pt;}
._13{width:28.564770pt;}
._2{width:29.781538pt;}
._e{width:31.359612pt;}
._1{width:36.402019pt;}
._10{width:63.664893pt;}
._19{width:105.979960pt;}
._17{width:351.405566pt;}
._18{width:576.267695pt;}
._1b{width:617.776130pt;}
._1a{width:677.006081pt;}
._11{width:1349.027084pt;}
.fs8{font-size:22.120534pt;}
.fs5{font-size:25.280533pt;}
.fs6{font-size:28.441065pt;}
.fsb{font-size:30.106132pt;}
.fsc{font-size:30.167999pt;}
.fsd{font-size:30.186666pt;}
.fsa{font-size:31.601067pt;}
.fs4{font-size:35.418666pt;}
.fs9{font-size:37.921066pt;}
.fs3{font-size:45.163732pt;}
.fs1{font-size:53.133865pt;}
.fs7{font-size:56.881068pt;}
.fs2{font-size:63.760534pt;}
.fs0{font-size:85.014933pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:49.209129pt;}
.y22{bottom:62.513235pt;}
.y21{bottom:75.817342pt;}
.y24{bottom:89.045798pt;}
.y20{bottom:89.045799pt;}
.yc0{bottom:98.040934pt;}
.y6d{bottom:98.123594pt;}
.y17e{bottom:98.266837pt;}
.ybf{bottom:103.105601pt;}
.y8a{bottom:106.057971pt;}
.y17d{bottom:111.495294pt;}
.y147{bottom:113.611873pt;}
.y4c{bottom:113.991228pt;}
.y6c{bottom:113.997337pt;}
.y1f{bottom:115.048817pt;}
.y89{bottom:122.007430pt;}
.y17c{bottom:124.723750pt;}
.y146{bottom:126.915980pt;}
.y1e{bottom:128.352924pt;}
.y4b{bottom:129.940687pt;}
.y6b{bottom:129.946796pt;}
.ye3{bottom:137.953773pt;}
.y88{bottom:137.956888pt;}
.y17b{bottom:138.027857pt;}
.y145{bottom:140.144436pt;}
.ya2{bottom:141.431421pt;}
.y1d{bottom:141.657030pt;}
.y4a{bottom:145.890145pt;}
.y6a{bottom:145.896254pt;}
.y17a{bottom:151.256314pt;}
.y144{bottom:153.372893pt;}
.ye2{bottom:153.903232pt;}
.y87{bottom:153.906347pt;}
.y1c{bottom:154.961137pt;}
.ya1{bottom:157.380880pt;}
.y49{bottom:161.839604pt;}
.y69{bottom:161.845713pt;}
.y179{bottom:164.484771pt;}
.yf5{bottom:164.563289pt;}
.y143{bottom:166.677000pt;}
.y1b{bottom:168.189593pt;}
.ye1{bottom:169.852690pt;}
.y86{bottom:169.855806pt;}
.y178{bottom:177.788877pt;}
.y48{bottom:177.789062pt;}
.y68{bottom:177.795171pt;}
.y142{bottom:179.905457pt;}
.yf4{bottom:180.512747pt;}
.ye0{bottom:185.726433pt;}
.y85{bottom:185.729549pt;}
.y1a{bottom:188.145188pt;}
.y177{bottom:191.011046pt;}
.y67{bottom:193.744630pt;}
.yf3{bottom:196.462206pt;}
.ya0{bottom:197.292383pt;}
.y19{bottom:201.449295pt;}
.ydf{bottom:201.675892pt;}
.y84{bottom:201.679007pt;}
.y176{bottom:204.315153pt;}
.y66{bottom:209.694088pt;}
.yf2{bottom:212.335949pt;}
.y9f{bottom:213.241842pt;}
.y141{bottom:214.450399pt;}
.y18{bottom:214.677752pt;}
.y47{bottom:214.979594pt;}
.y175{bottom:217.543610pt;}
.yde{bottom:217.625350pt;}
.y83{bottom:217.628466pt;}
.y65{bottom:225.643547pt;}
.yf1{bottom:228.285407pt;}
.y17{bottom:228.510274pt;}
.y9e{bottom:229.191300pt;}
.y174{bottom:230.772067pt;}
.ydd{bottom:233.574809pt;}
.ydb{bottom:233.575082pt;}
.y82{bottom:233.577924pt;}
.ydc{bottom:239.470805pt;}
.y64{bottom:241.517290pt;}
.y173{bottom:244.076173pt;}
.yf0{bottom:244.234866pt;}
.y9d{bottom:245.140759pt;}
.yda{bottom:249.524540pt;}
.y81{bottom:249.527383pt;}
.y172{bottom:257.304630pt;}
.y63{bottom:257.466749pt;}
.yef{bottom:260.184324pt;}
.y9c{bottom:261.090217pt;}
.yd9{bottom:265.473999pt;}
.y80{bottom:265.476841pt;}
.y171{bottom:270.533087pt;}
.y140{bottom:271.521089pt;}
.y16{bottom:273.185365pt;}
.y46{bottom:273.416205pt;}
.y62{bottom:273.416207pt;}
.yee{bottom:276.133783pt;}
.y7f{bottom:281.426300pt;}
.y170{bottom:283.837193pt;}
.y13f{bottom:284.825195pt;}
.y9b{bottom:284.976546pt;}
.y15{bottom:289.134824pt;}
.y45{bottom:289.365664pt;}
.y61{bottom:289.365666pt;}
.yed{bottom:292.083242pt;}
.y16f{bottom:297.065650pt;}
.y7e{bottom:297.375758pt;}
.y9a{bottom:300.926005pt;}
.yd8{bottom:302.664530pt;}
.y14{bottom:305.084282pt;}
.y44{bottom:305.315122pt;}
.y60{bottom:305.315124pt;}
.yec{bottom:308.032700pt;}
.y16e{bottom:310.369757pt;}
.y13e{bottom:314.083257pt;}
.y98{bottom:316.877684pt;}
.y13{bottom:321.033741pt;}
.y7d{bottom:321.262088pt;}
.y43{bottom:321.264581pt;}
.y5f{bottom:321.264583pt;}
.y99{bottom:322.771606pt;}
.y16d{bottom:323.598213pt;}
.yeb{bottom:323.982159pt;}
.y13d{bottom:330.032716pt;}
.y97{bottom:332.751427pt;}
.y16c{bottom:336.826670pt;}
.y12{bottom:336.907484pt;}
.y7c{bottom:337.211546pt;}
.y42{bottom:337.214040pt;}
.y5e{bottom:337.214041pt;}
.yea{bottom:339.855902pt;}
.y13c{bottom:345.982174pt;}
.y96{bottom:348.700885pt;}
.y16b{bottom:350.130777pt;}
.y11{bottom:352.856942pt;}
.y7b{bottom:353.161005pt;}
.y41{bottom:353.163498pt;}
.y5d{bottom:353.163500pt;}
.ye9{bottom:355.805360pt;}
.yd7{bottom:361.100372pt;}
.y13b{bottom:361.855917pt;}
.y16a{bottom:363.359234pt;}
.y95{bottom:364.650344pt;}
.y10{bottom:368.806401pt;}
.y7a{bottom:369.034748pt;}
.y40{bottom:369.037241pt;}
.ye8{bottom:371.754819pt;}
.y169{bottom:376.663340pt;}
.y5c{bottom:377.049829pt;}
.yd6{bottom:377.049831pt;}
.y13a{bottom:377.805376pt;}
.y94{bottom:380.599802pt;}
.yf{bottom:384.755859pt;}
.y79{bottom:384.984206pt;}
.y3f{bottom:384.986700pt;}
.ye7{bottom:387.704277pt;}
.y168{bottom:389.891797pt;}
.y5b{bottom:392.999288pt;}
.yd5{bottom:392.999289pt;}
.y139{bottom:393.754834pt;}
.y93{bottom:396.549261pt;}
.y78{bottom:400.933665pt;}
.y3e{bottom:400.936158pt;}
.y167{bottom:403.120254pt;}
.ye6{bottom:403.653736pt;}
.y5a{bottom:408.948746pt;}
.yd4{bottom:408.948748pt;}
.y138{bottom:409.704293pt;}
.y92{bottom:412.498720pt;}
.y166{bottom:416.424360pt;}
.y77{bottom:416.883123pt;}
.y3d{bottom:416.885617pt;}
.ye5{bottom:419.603194pt;}
.ye{bottom:421.946411pt;}
.y59{bottom:424.898205pt;}
.yd3{bottom:424.898206pt;}
.y137{bottom:425.653752pt;}
.y91{bottom:428.448178pt;}
.y165{bottom:429.652817pt;}
.y76{bottom:432.832582pt;}
.y3c{bottom:432.835075pt;}
.ye4{bottom:435.552653pt;}
.y58{bottom:440.771948pt;}
.y136{bottom:441.603210pt;}
.y164{bottom:442.881274pt;}
.y90{bottom:444.397637pt;}
.y75{bottom:448.782040pt;}
.y3b{bottom:448.784534pt;}
.yd2{bottom:448.784536pt;}
.y163{bottom:456.185380pt;}
.y57{bottom:456.721406pt;}
.y135{bottom:457.552669pt;}
.y8f{bottom:460.271380pt;}
.y74{bottom:464.731499pt;}
.y3a{bottom:464.733992pt;}
.yd1{bottom:464.733994pt;}
.y162{bottom:469.413837pt;}
.y56{bottom:472.670865pt;}
.y134{bottom:473.502127pt;}
.y11f{bottom:475.691092pt;}
.y8e{bottom:476.220838pt;}
.y73{bottom:480.680958pt;}
.y39{bottom:480.683451pt;}
.yd0{bottom:480.683453pt;}
.y161{bottom:482.717944pt;}
.y55{bottom:488.620323pt;}
.y11e{bottom:488.995199pt;}
.y133{bottom:489.375870pt;}
.y8d{bottom:492.170297pt;}
.y160{bottom:495.946400pt;}
.yd{bottom:496.329713pt;}
.y72{bottom:496.554700pt;}
.y38{bottom:496.557194pt;}
.ycf{bottom:496.557196pt;}
.y54{bottom:504.569782pt;}
.y132{bottom:505.325329pt;}
.y8c{bottom:508.119755pt;}
.y15f{bottom:509.174857pt;}
.yc{bottom:512.279172pt;}
.y71{bottom:512.504159pt;}
.y37{bottom:512.506652pt;}
.yce{bottom:512.506654pt;}
.y10a{bottom:514.578532pt;}
.y53{bottom:520.519240pt;}
.y131{bottom:521.274787pt;}
.y15e{bottom:522.478964pt;}
.y113{bottom:523.435181pt;}
.y11d{bottom:523.518443pt;}
.y8b{bottom:524.069214pt;}
.yb{bottom:528.228630pt;}
.y70{bottom:528.453618pt;}
.y36{bottom:528.456111pt;}
.ycd{bottom:528.456113pt;}
.y11c{bottom:534.071701pt;}
.y15d{bottom:535.707421pt;}
.y52{bottom:536.468699pt;}
.y111{bottom:536.616307pt;}
.y130{bottom:537.224246pt;}
.y112{bottom:540.396525pt;}
.y11b{bottom:543.674834pt;}
.ya{bottom:544.178089pt;}
.y6f{bottom:544.403076pt;}
.y35{bottom:544.405570pt;}
.ycc{bottom:544.405571pt;}
.y15c{bottom:548.935877pt;}
.y110{bottom:550.705934pt;}
.y51{bottom:552.418158pt;}
.y12f{bottom:553.173704pt;}
.y11a{bottom:554.025842pt;}
.y9{bottom:560.127548pt;}
.y34{bottom:560.355028pt;}
.ycb{bottom:560.355030pt;}
.y15b{bottom:562.239984pt;}
.y10f{bottom:563.342072pt;}
.ybe{bottom:564.207723pt;}
.y119{bottom:564.909644pt;}
.y50{bottom:568.291900pt;}
.y12e{bottom:569.123163pt;}
.y118{bottom:575.259897pt;}
.y15a{bottom:575.468441pt;}
.y8{bottom:576.077006pt;}
.y33{bottom:576.304487pt;}
.yca{bottom:576.304488pt;}
.y10e{bottom:577.249069pt;}
.y6e{bottom:581.593587pt;}
.y4f{bottom:584.241359pt;}
.y12d{bottom:585.072621pt;}
.y117{bottom:586.144454pt;}
.y159{bottom:588.772547pt;}
.yb1{bottom:590.469076pt;}
.y10d{bottom:590.793071pt;}
.y7{bottom:591.950749pt;}
.y32{bottom:592.253945pt;}
.yb9{bottom:595.525019pt;}
.y116{bottom:596.495462pt;}
.y4e{bottom:600.190818pt;}
.y12c{bottom:601.022080pt;}
.y158{bottom:602.001004pt;}
.y10c{bottom:603.792204pt;}
.yb8{bottom:604.213053pt;}
.y115{bottom:606.846470pt;}
.y6{bottom:607.900208pt;}
.y31{bottom:608.203404pt;}
.yab{bottom:611.311280pt;}
.y157{bottom:615.229461pt;}
.yc9{bottom:616.140276pt;}
.y12b{bottom:616.895823pt;}
.y114{bottom:617.517456pt;}
.y10b{bottom:617.518080pt;}
.yaa{bottom:617.948684pt;}
.ya8{bottom:619.211446pt;}
.y5{bottom:623.849666pt;}
.y30{bottom:624.077147pt;}
.ya9{bottom:625.847586pt;}
.ya7{bottom:627.111613pt;}
.y156{bottom:628.533567pt;}
.yc8{bottom:632.089735pt;}
.y12a{bottom:632.845282pt;}
.y2f{bottom:640.026605pt;}
.y155{bottom:641.762024pt;}
.yc7{bottom:648.039193pt;}
.y129{bottom:648.794740pt;}
.y154{bottom:655.066131pt;}
.y2e{bottom:655.976064pt;}
.y109{bottom:663.684751pt;}
.yc6{bottom:663.988652pt;}
.y128{bottom:664.744199pt;}
.y153{bottom:668.294588pt;}
.yb0{bottom:669.399333pt;}
.y2d{bottom:671.925522pt;}
.y108{bottom:676.913208pt;}
.yac{bottom:678.878011pt;}
.yc5{bottom:679.938110pt;}
.y127{bottom:680.693657pt;}
.y152{bottom:681.523044pt;}
.y2c{bottom:687.874981pt;}
.ya6{bottom:691.108236pt;}
.ybd{bottom:692.695718pt;}
.y151{bottom:694.827151pt;}
.yc4{bottom:695.811853pt;}
.y126{bottom:696.643116pt;}
.y4{bottom:697.096029pt;}
.ybc{bottom:700.596517pt;}
.ya5{bottom:701.763184pt;}
.yfe{bottom:702.530111pt;}
.y2b{bottom:703.824440pt;}
.y150{bottom:708.055608pt;}
.y107{bottom:709.673991pt;}
.yc3{bottom:711.761312pt;}
.y125{bottom:712.592574pt;}
.yff{bottom:712.880752pt;}
.y2a{bottom:719.773898pt;}
.y14f{bottom:721.284065pt;}
.y106{bottom:722.987784pt;}
.yfd{bottom:725.198405pt;}
.yfc{bottom:725.660659pt;}
.yc2{bottom:727.710770pt;}
.y124{bottom:728.542033pt;}
.y14e{bottom:734.588171pt;}
.yaf{bottom:735.358154pt;}
.y29{bottom:735.723357pt;}
.y105{bottom:736.658413pt;}
.yfb{bottom:738.440578pt;}
.yae{bottom:744.158441pt;}
.yb3{bottom:744.159035pt;}
.y123{bottom:744.415776pt;}
.y3{bottom:744.869486pt;}
.y14d{bottom:747.816628pt;}
.y104{bottom:749.438331pt;}
.yb2{bottom:750.546794pt;}
.yad{bottom:750.548096pt;}
.yfa{bottom:751.220496pt;}
.y28{bottom:751.597100pt;}
.yb4{bottom:752.307210pt;}
.ybb{bottom:755.577822pt;}
.y122{bottom:760.365234pt;}
.y14c{bottom:761.120734pt;}
.y103{bottom:762.752978pt;}
.yf9{bottom:764.000414pt;}
.yba{bottom:764.266568pt;}
.y27{bottom:767.546558pt;}
.y2{bottom:768.830946pt;}
.ya4{bottom:772.867149pt;}
.y14b{bottom:774.349191pt;}
.yb5{bottom:775.251221pt;}
.y102{bottom:775.888879pt;}
.yf8{bottom:776.780333pt;}
.yb7{bottom:777.735490pt;}
.ya3{bottom:780.766683pt;}
.y26{bottom:783.496017pt;}
.yb6{bottom:786.424235pt;}
.y14a{bottom:787.577648pt;}
.yf7{bottom:789.560251pt;}
.y101{bottom:789.560262pt;}
.y1{bottom:792.718018pt;}
.y121{bottom:797.555745pt;}
.y25{bottom:799.445475pt;}
.y149{bottom:800.881755pt;}
.yf6{bottom:802.340169pt;}
.y100{bottom:802.340181pt;}
.y17f{bottom:831.493245pt;}
.y148{bottom:831.493890pt;}
.yc1{bottom:831.494329pt;}
.y180{bottom:831.494857pt;}
.y120{bottom:831.495484pt;}
.y4d{bottom:831.495850pt;}
.hb{height:16.302834pt;}
.h8{height:18.631753pt;}
.hf{height:20.713019pt;}
.h9{height:20.961065pt;}
.h11{height:22.143311pt;}
.h12{height:22.157013pt;}
.h10{height:22.233815pt;}
.h13{height:22.247573pt;}
.hd{height:23.289986pt;}
.h7{height:24.368042pt;}
.hc{height:27.947826pt;}
.h6{height:31.072647pt;}
.h14{height:31.097798pt;}
.he{height:31.253302pt;}
.h4{height:36.556099pt;}
.h3{height:36.768635pt;}
.ha{height:41.921347pt;}
.h5{height:44.122289pt;}
.h2{height:58.830334pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.x1{left:71.810933pt;}
.x2e{left:76.044001pt;}
.x3a{left:77.858266pt;}
.x31{left:82.012136pt;}
.x2{left:87.757746pt;}
.x4{left:89.803385pt;}
.x33{left:94.096044pt;}
.x6{left:107.791987pt;}
.xd{left:111.939515pt;}
.x2a{left:114.680401pt;}
.xc{left:116.862803pt;}
.x8{left:124.935380pt;}
.x15{left:128.684265pt;}
.x7{left:130.915466pt;}
.x5{left:131.981069pt;}
.x2b{left:137.683065pt;}
.x2c{left:138.910723pt;}
.x13{left:141.212206pt;}
.x14{left:144.205413pt;}
.x12{left:147.192292pt;}
.x32{left:150.847331pt;}
.x2f{left:154.204671pt;}
.x36{left:155.969604pt;}
.x30{left:163.653463pt;}
.x24{left:168.137329pt;}
.x1a{left:184.145318pt;}
.x19{left:188.721191pt;}
.xb{left:193.103333pt;}
.x1b{left:199.116272pt;}
.x18{left:203.813477pt;}
.x16{left:220.516663pt;}
.x17{left:233.356445pt;}
.xf{left:235.073603pt;}
.xe{left:239.648210pt;}
.x1e{left:272.119873pt;}
.xa{left:278.145060pt;}
.x23{left:282.489075pt;}
.x25{left:295.149068pt;}
.x39{left:305.437073pt;}
.x34{left:307.021871pt;}
.x37{left:309.743591pt;}
.x11{left:312.475533pt;}
.x38{left:316.121279pt;}
.x10{left:317.051406pt;}
.x35{left:319.105876pt;}
.x2d{left:339.415098pt;}
.x22{left:340.603534pt;}
.x21{left:345.178141pt;}
.x20{left:360.271322pt;}
.x1f{left:376.972656pt;}
.x9{left:390.076538pt;}
.x1d{left:395.739217pt;}
.x1c{left:426.193726pt;}
.x29{left:433.883973pt;}
.x27{left:436.431103pt;}
.x28{left:438.041585pt;}
.x26{left:441.378947pt;}
.x3{left:502.754687pt;}
}




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