
    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_69f7373e66b3ff053050b84f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.205000;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_c779b89bedd7fa3c0f52fad3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.301000;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_652adca8a4c0bd846bcad3a6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.194000;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_5f9a05346a853d628d8fad18.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.288000;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_5052df789cb999e50b634c10.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.205000;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_c2d6b08af7411b1123cd8c3d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.959000;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_31e84750902943270ffccbc3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_50f8d27930518441eee50946.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_397b74a037bc2be263890be7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_678b8a50bec2db70f0cd01e3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.735000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_7cffe81eb03f1107b208154f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_85995461134459c765027869.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.735000;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:ffd;src:url('chunks/assets/font_c1df85682e559ee73f666709.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.959000;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:ffe;src:url('chunks/assets/font_8c2523dfb1139d114e2be80d.woff2')format("woff");}.ffe{font-family:ffe;line-height:3.732000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v7{vertical-align:-99.396972px;}
.v8{vertical-align:-79.652201px;}
.v6{vertical-align:-30.353558px;}
.v2{vertical-align:-24.962868px;}
.v3{vertical-align:-8.595189px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:16.845189px;}
.v1{vertical-align:24.962868px;}
.v5{vertical-align:30.180964px;}
.va{vertical-align:36.589960px;}
.v4{vertical-align:38.776153px;}
.ls1{letter-spacing:0.000000px;}
.ls46{letter-spacing:0.002301px;}
.lse{letter-spacing:0.009212px;}
.ls15{letter-spacing:0.013382px;}
.ls32{letter-spacing:0.014965px;}
.ls12{letter-spacing:0.019135px;}
.ls38{letter-spacing:0.020061px;}
.ls18{letter-spacing:0.025272px;}
.ls25{letter-spacing:0.031343px;}
.ls17{letter-spacing:0.037096px;}
.ls11{letter-spacing:0.042342px;}
.ls4a{letter-spacing:0.043188px;}
.ls19{letter-spacing:0.048966px;}
.ls21{letter-spacing:0.054719px;}
.ls45{letter-spacing:0.633189px;}
.ls3e{letter-spacing:1.205282px;}
.ls30{letter-spacing:2.128661px;}
.ls41{letter-spacing:2.200575px;}
.ls40{letter-spacing:2.263860px;}
.ls8{letter-spacing:2.426674px;}
.ls39{letter-spacing:2.634937px;}
.ls7{letter-spacing:2.685565px;}
.ls0{letter-spacing:2.864775px;}
.ls1c{letter-spacing:2.892646px;}
.ls16{letter-spacing:2.898399px;}
.ls3d{letter-spacing:3.077929px;}
.ls3f{letter-spacing:3.192992px;}
.lsb{letter-spacing:3.393201px;}
.ls44{letter-spacing:3.458134px;}
.lsc{letter-spacing:3.710774px;}
.lsd{letter-spacing:3.769456px;}
.ls3c{letter-spacing:3.998431px;}
.ls29{letter-spacing:4.142260px;}
.ls31{letter-spacing:4.286088px;}
.ls9{letter-spacing:4.373536px;}
.ls3b{letter-spacing:4.429917px;}
.ls6{letter-spacing:4.601360px;}
.ls3a{letter-spacing:4.602511px;}
.ls42{letter-spacing:4.660042px;}
.ls28{letter-spacing:4.803871px;}
.ls2d{letter-spacing:4.832636px;}
.ls2b{letter-spacing:4.918933px;}
.ls4{letter-spacing:5.005230px;}
.ls2f{letter-spacing:5.062762px;}
.ls2e{letter-spacing:5.206590px;}
.ls27{letter-spacing:5.235356px;}
.ls2c{letter-spacing:5.781904px;}
.ls43{letter-spacing:6.012030px;}
.ls2a{letter-spacing:6.270921px;}
.ls47{letter-spacing:6.291096px;}
.ls48{letter-spacing:6.296849px;}
.ls5{letter-spacing:6.472281px;}
.ls26{letter-spacing:6.702406px;}
.ls3{letter-spacing:6.962448px;}
.lsa{letter-spacing:7.221339px;}
.ls2{letter-spacing:7.708055px;}
.ls1b{letter-spacing:12.778064px;}
.ls14{letter-spacing:12.783818px;}
.ls23{letter-spacing:14.716872px;}
.ls13{letter-spacing:15.608763px;}
.ls1a{letter-spacing:15.614516px;}
.ls24{letter-spacing:16.991959px;}
.ls22{letter-spacing:17.547570px;}
.ls1f{letter-spacing:18.450813px;}
.ls20{letter-spacing:18.472145px;}
.lsf{letter-spacing:18.798364px;}
.ls35{letter-spacing:20.404656px;}
.ls4b{letter-spacing:20.878637px;}
.ls4c{letter-spacing:20.899969px;}
.ls1d{letter-spacing:22.848654px;}
.ls37{letter-spacing:25.434969px;}
.ls34{letter-spacing:27.218442px;}
.ls36{letter-spacing:28.262276px;}
.ls33{letter-spacing:30.045749px;}
.ls10{letter-spacing:89.593968px;}
.ls1e{letter-spacing:330.226461px;}
.ls49{letter-spacing:484.856062px;}
.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;}
}
.wsaf{word-spacing:-0.060182px;}
.ws8{word-spacing:-0.057316px;}
.ws42{word-spacing:0.000000px;}
.ws4e{word-spacing:10.890081px;}
.wse7{word-spacing:10.947397px;}
.wsa6{word-spacing:11.004714px;}
.ws27{word-spacing:11.119346px;}
.wsa7{word-spacing:11.405927px;}
.ws0{word-spacing:11.417419px;}
.wsd0{word-spacing:11.577876px;}
.ws21{word-spacing:11.635192px;}
.wse{word-spacing:11.692508px;}
.wsa5{word-spacing:11.749824px;}
.ws30{word-spacing:11.807141px;}
.ws5d{word-spacing:11.864457px;}
.ws2d{word-spacing:11.921773px;}
.wsd7{word-spacing:11.979089px;}
.wsdf{word-spacing:12.036405px;}
.ws2b{word-spacing:12.093722px;}
.ws18{word-spacing:12.151038px;}
.ws70{word-spacing:12.208354px;}
.ws5b{word-spacing:12.265670px;}
.ws8a{word-spacing:12.354181px;}
.ws81{word-spacing:12.380303px;}
.ws72{word-spacing:12.437619px;}
.wsc3{word-spacing:12.494935px;}
.wsa2{word-spacing:12.552251px;}
.ws62{word-spacing:12.609568px;}
.ws1d{word-spacing:12.666884px;}
.ws89{word-spacing:12.724200px;}
.ws12{word-spacing:12.781516px;}
.ws77{word-spacing:12.838833px;}
.ws4c{word-spacing:12.889934px;}
.ws4d{word-spacing:12.896149px;}
.ws6c{word-spacing:13.068097px;}
.ws7a{word-spacing:13.240046px;}
.ws7e{word-spacing:13.297362px;}
.wsb7{word-spacing:13.411995px;}
.ws36{word-spacing:13.526627px;}
.wscf{word-spacing:13.583943px;}
.ws9f{word-spacing:13.641260px;}
.ws1b{word-spacing:13.698576px;}
.wsb2{word-spacing:13.755892px;}
.ws43{word-spacing:13.813208px;}
.ws68{word-spacing:13.870524px;}
.ws1a{word-spacing:13.985157px;}
.ws5a{word-spacing:14.042473px;}
.wsae{word-spacing:14.099789px;}
.ws6d{word-spacing:14.157106px;}
.wsbf{word-spacing:14.268707px;}
.ws14{word-spacing:14.271738px;}
.wsb0{word-spacing:14.329054px;}
.ws94{word-spacing:14.386370px;}
.ws8d{word-spacing:14.443687px;}
.ws8f{word-spacing:14.458145px;}
.ws46{word-spacing:14.501003px;}
.ws47{word-spacing:14.558319px;}
.ws56{word-spacing:14.615635px;}
.ws13{word-spacing:14.672951px;}
.ws17{word-spacing:14.787584px;}
.ws25{word-spacing:14.844900px;}
.ws24{word-spacing:14.846780px;}
.wsdc{word-spacing:15.016849px;}
.ws3f{word-spacing:15.074165px;}
.ws60{word-spacing:15.108005px;}
.ws61{word-spacing:15.131481px;}
.ws38{word-spacing:15.188797px;}
.ws20{word-spacing:15.303430px;}
.ws8b{word-spacing:15.518548px;}
.ws8c{word-spacing:15.522215px;}
.ws88{word-spacing:15.532695px;}
.wsd6{word-spacing:15.590011px;}
.wse4{word-spacing:15.647327px;}
.ws74{word-spacing:15.704643px;}
.ws45{word-spacing:15.761960px;}
.wscd{word-spacing:15.876592px;}
.ws3b{word-spacing:15.933908px;}
.ws96{word-spacing:15.991224px;}
.ws33{word-spacing:16.048541px;}
.wsc{word-spacing:16.163173px;}
.ws6f{word-spacing:16.220489px;}
.ws9d{word-spacing:16.277806px;}
.wsf{word-spacing:16.335122px;}
.ws44{word-spacing:16.449754px;}
.ws6e{word-spacing:16.507070px;}
.ws57{word-spacing:16.564387px;}
.ws5e{word-spacing:16.621703px;}
.ws85{word-spacing:16.679019px;}
.wsd3{word-spacing:16.793651px;}
.ws2f{word-spacing:16.850968px;}
.ws3c{word-spacing:16.908284px;}
.ws73{word-spacing:17.022916px;}
.ws59{word-spacing:17.080233px;}
.ws2{word-spacing:17.126200px;}
.ws99{word-spacing:17.137549px;}
.ws34{word-spacing:17.194865px;}
.ws40{word-spacing:17.252181px;}
.ws8e{word-spacing:17.342152px;}
.ws35{word-spacing:17.366814px;}
.ws65{word-spacing:17.424130px;}
.ws53{word-spacing:17.481446px;}
.wsa1{word-spacing:17.538762px;}
.ws71{word-spacing:17.596079px;}
.ws3d{word-spacing:17.710711px;}
.wsa0{word-spacing:17.882660px;}
.ws1e{word-spacing:17.939976px;}
.wsac{word-spacing:17.942329px;}
.wsab{word-spacing:17.944286px;}
.wsaa{word-spacing:17.946372px;}
.ws28{word-spacing:17.997292px;}
.ws26{word-spacing:18.054608px;}
.wsc9{word-spacing:18.111924px;}
.wsc5{word-spacing:18.169241px;}
.ws5f{word-spacing:18.226557px;}
.ws58{word-spacing:18.283873px;}
.wsb6{word-spacing:18.341189px;}
.ws7c{word-spacing:18.455822px;}
.ws2e{word-spacing:18.513138px;}
.ws1c{word-spacing:18.570454px;}
.ws95{word-spacing:18.685087px;}
.ws23{word-spacing:18.742403px;}
.ws19{word-spacing:18.799719px;}
.ws11{word-spacing:18.857035px;}
.ws37{word-spacing:18.914351px;}
.ws16{word-spacing:19.028984px;}
.ws7b{word-spacing:19.086300px;}
.ws9e{word-spacing:19.143616px;}
.ws5c{word-spacing:19.200933px;}
.wsc1{word-spacing:19.315565px;}
.ws9a{word-spacing:19.372881px;}
.ws3a{word-spacing:19.430197px;}
.wsc4{word-spacing:19.487514px;}
.ws92{word-spacing:19.544830px;}
.ws91{word-spacing:19.568956px;}
.wsde{word-spacing:19.577610px;}
.ws7f{word-spacing:19.602146px;}
.ws84{word-spacing:19.716779px;}
.wsbd{word-spacing:19.774095px;}
.wsbe{word-spacing:19.779225px;}
.ws9b{word-spacing:19.831411px;}
.ws54{word-spacing:19.888727px;}
.ws32{word-spacing:20.003360px;}
.wsc6{word-spacing:20.060676px;}
.wsbb{word-spacing:20.117992px;}
.wsa9{word-spacing:20.175308px;}
.ws10{word-spacing:20.289941px;}
.ws97{word-spacing:20.344200px;}
.ws98{word-spacing:20.347257px;}
.wsa8{word-spacing:20.461889px;}
.ws9c{word-spacing:20.519206px;}
.ws76{word-spacing:20.633838px;}
.wsb3{word-spacing:20.805787px;}
.ws63{word-spacing:20.863103px;}
.ws3e{word-spacing:20.977735px;}
.wsb5{word-spacing:21.035052px;}
.wsbc{word-spacing:21.079347px;}
.wsa3{word-spacing:21.092368px;}
.ws6b{word-spacing:21.207000px;}
.ws41{word-spacing:21.264316px;}
.ws79{word-spacing:21.321633px;}
.ws2c{word-spacing:21.378949px;}
.ws93{word-spacing:21.436265px;}
.ws31{word-spacing:21.493581px;}
.wsba{word-spacing:21.550897px;}
.ws75{word-spacing:21.608214px;}
.ws52{word-spacing:21.665530px;}
.wsc7{word-spacing:21.722846px;}
.wsad{word-spacing:21.780162px;}
.ws22{word-spacing:21.837479px;}
.ws67{word-spacing:21.894795px;}
.wsc2{word-spacing:21.952111px;}
.ws78{word-spacing:22.009427px;}
.wse2{word-spacing:22.066743px;}
.ws7d{word-spacing:22.124060px;}
.ws4f{word-spacing:22.181376px;}
.wsb8{word-spacing:22.238692px;}
.ws83{word-spacing:22.410641px;}
.ws87{word-spacing:22.467957px;}
.wsc0{word-spacing:22.525273px;}
.ws4b{word-spacing:22.639906px;}
.ws6a{word-spacing:22.697222px;}
.ws90{word-spacing:22.869170px;}
.ws39{word-spacing:22.926487px;}
.wsdb{word-spacing:23.098435px;}
.wsa4{word-spacing:23.213068px;}
.ws82{word-spacing:23.327700px;}
.ws51{word-spacing:23.385016px;}
.wsb9{word-spacing:23.442333px;}
.ws64{word-spacing:23.614281px;}
.ws66{word-spacing:23.671597px;}
.ws69{word-spacing:23.786230px;}
.ws80{word-spacing:24.187443px;}
.wsca{word-spacing:24.244760px;}
.wsd{word-spacing:24.302076px;}
.wsb1{word-spacing:24.416708px;}
.wsc8{word-spacing:24.875238px;}
.ws29{word-spacing:25.161819px;}
.ws86{word-spacing:25.391084px;}
.ws50{word-spacing:25.906930px;}
.wse5{word-spacing:26.078879px;}
.wse0{word-spacing:26.118321px;}
.wse1{word-spacing:26.136195px;}
.ws9{word-spacing:26.250827px;}
.ws55{word-spacing:26.422776px;}
.wse3{word-spacing:26.537408px;}
.wscc{word-spacing:26.594725px;}
.ws5{word-spacing:26.766673px;}
.ws4{word-spacing:27.225203px;}
.ws3{word-spacing:27.407263px;}
.wsb4{word-spacing:27.970314px;}
.wsd9{word-spacing:28.027630px;}
.ws2a{word-spacing:28.543476px;}
.wscb{word-spacing:28.658108px;}
.ws6{word-spacing:28.887373px;}
.ws7{word-spacing:28.944689px;}
.wse6{word-spacing:29.002006px;}
.ws1f{word-spacing:30.320279px;}
.ws48{word-spacing:31.294654px;}
.ws49{word-spacing:31.333585px;}
.ws4a{word-spacing:31.351970px;}
.wsa{word-spacing:31.810500px;}
.wsd4{word-spacing:32.842192px;}
.wse8{word-spacing:32.899508px;}
.ws1{word-spacing:34.252257px;}
.wsdd{word-spacing:34.848260px;}
.wsda{word-spacing:34.905576px;}
.wsb{word-spacing:35.421422px;}
.wsd8{word-spacing:39.433557px;}
.wsd5{word-spacing:41.783522px;}
.wsd1{word-spacing:46.540768px;}
.wsce{word-spacing:47.056614px;}
.wsd2{word-spacing:49.406579px;}
.ws15{word-spacing:57.258900px;}
._4{margin-left:-7.565837px;}
._3{margin-left:-6.327753px;}
._a{margin-left:-4.585297px;}
._1{margin-left:-3.438982px;}
._18{margin-left:-2.407281px;}
._0{margin-left:-1.375593px;}
._1d{width:3.272362px;}
._19{width:13.010790px;}
._16{width:14.111007px;}
._8{width:16.564399px;}
._11{width:17.768027px;}
._d{width:19.258249px;}
._b{width:20.920419px;}
._15{width:22.296019px;}
._c{width:23.958179px;}
._e{width:25.563033px;}
._7{width:26.766677px;}
._13{width:28.084946px;}
._6{width:29.628975px;}
._9{width:31.409287px;}
._1a{width:32.440979px;}
._10{width:33.529987px;}
._14{width:34.962901px;}
._1b{width:37.484806px;}
._f{width:39.605506px;}
._20{width:40.866462px;}
._2{width:42.643372px;}
._17{width:45.279811px;}
._22{width:46.422329px;}
._1f{width:47.629776px;}
._21{width:48.661468px;}
._5{width:54.565038px;}
._12{width:57.316217px;}
._1e{width:58.921071px;}
._1c{width:163.779290px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:28.765692px;}
.fs4{font-size:34.518830px;}
.fs5{font-size:40.121237px;}
.fs0{font-size:45.853088px;}
.fs3{font-size:57.316217px;}
.fs2{font-size:68.779920px;}
.fs1{font-size:137.559265px;}
.y0{bottom:0.000000px;}
.y66{bottom:2.696682px;}
.y111{bottom:8.190947px;}
.y103{bottom:8.190962px;}
.y107{bottom:8.190965px;}
.y109{bottom:8.190995px;}
.y10d{bottom:8.191010px;}
.y10f{bottom:8.191028px;}
.yfd{bottom:8.191064px;}
.y100{bottom:8.191076px;}
.y10b{bottom:8.191079px;}
.y61{bottom:11.419860px;}
.y65{bottom:11.419878px;}
.y5f{bottom:11.419899px;}
.y63{bottom:11.419944px;}
.y5d{bottom:11.419968px;}
.yfb{bottom:12.505831px;}
.y112{bottom:17.259328px;}
.y105{bottom:17.259334px;}
.y102{bottom:17.259346px;}
.y6a{bottom:17.259361px;}
.y114{bottom:17.259370px;}
.yff{bottom:17.259460px;}
.y6f{bottom:23.645402px;}
.y68{bottom:24.407582px;}
.y57{bottom:25.978650px;}
.y71{bottom:28.003338px;}
.y6c{bottom:31.642222px;}
.y6e{bottom:32.361406px;}
.y1{bottom:46.364895px;}
.y58{bottom:63.612451px;}
.yf9{bottom:70.037215px;}
.yf7{bottom:98.802874px;}
.yf5{bottom:105.994306px;}
.y93{bottom:117.362585px;}
.yc7{bottom:120.249222px;}
.y171{bottom:120.312507px;}
.y33{bottom:132.969411px;}
.y92{bottom:134.558716px;}
.y14d{bottom:137.423779px;}
.yc6{bottom:137.443915px;}
.y170{bottom:137.507199px;}
.y56{bottom:150.164104px;}
.y91{bottom:151.753408px;}
.y32{bottom:153.030605px;}
.y14c{bottom:154.618471px;}
.yc5{bottom:154.638607px;}
.y16f{bottom:154.703330px;}
.y199{bottom:154.734972px;}
.y55{bottom:167.358796px;}
.y90{bottom:168.948101px;}
.y31{bottom:170.225297px;}
.y14b{bottom:171.813163px;}
.y16e{bottom:171.898022px;}
.y1c5{bottom:171.929665px;}
.y198{bottom:171.931103px;}
.yc4{bottom:174.763085px;}
.y54{bottom:184.553488px;}
.y8f{bottom:186.142793px;}
.y30{bottom:187.419990px;}
.y14a{bottom:189.009294px;}
.y197{bottom:189.125795px;}
.y16d{bottom:192.022500px;}
.y53{bottom:201.748181px;}
.y8e{bottom:203.337485px;}
.y2f{bottom:204.614682px;}
.y149{bottom:206.203987px;}
.y196{bottom:206.320488px;}
.yc3{bottom:212.018971px;}
.yf3{bottom:213.918945px;}
.y52{bottom:218.942873px;}
.y8d{bottom:220.532178px;}
.y2e{bottom:221.809374px;}
.y148{bottom:223.398679px;}
.y1c4{bottom:223.518057px;}
.yf2{bottom:223.748182px;}
.y195{bottom:226.381681px;}
.yc2{bottom:229.213664px;}
.y16c{bottom:229.278386px;}
.y51{bottom:236.139004px;}
.y8c{bottom:237.728308px;}
.y2d{bottom:239.004067px;}
.y147{bottom:240.593371px;}
.y1c3{bottom:240.712749px;}
.yc1{bottom:246.409794px;}
.y16b{bottom:246.473079px;}
.y50{bottom:253.333696px;}
.y8b{bottom:254.923001px;}
.y2c{bottom:256.200198px;}
.y146{bottom:257.788064px;}
.y1c2{bottom:257.907441px;}
.yf1{bottom:260.737985px;}
.yc0{bottom:263.604487px;}
.y194{bottom:263.636129px;}
.y16a{bottom:263.669209px;}
.y4f{bottom:270.528389px;}
.y8a{bottom:272.117693px;}
.y2b{bottom:273.394890px;}
.y126{bottom:274.982756px;}
.y1c1{bottom:275.105010px;}
.y145{bottom:277.849257px;}
.yf0{bottom:277.934116px;}
.ybf{bottom:280.799179px;}
.y193{bottom:280.832260px;}
.y169{bottom:280.863902px;}
.y4e{bottom:287.723081px;}
.y89{bottom:289.312386px;}
.y2a{bottom:290.589582px;}
.y125{bottom:292.178887px;}
.y1c0{bottom:292.299703px;}
.y144{bottom:295.043950px;}
.yef{bottom:295.128808px;}
.ybe{bottom:297.993871px;}
.y192{bottom:298.026952px;}
.y168{bottom:298.058594px;}
.y4d{bottom:304.917773px;}
.y88{bottom:306.507078px;}
.y29{bottom:307.784275px;}
.y124{bottom:309.373579px;}
.y1bf{bottom:309.494395px;}
.y143{bottom:312.238642px;}
.ybd{bottom:315.188564px;}
.yee{bottom:315.253287px;}
.y4c{bottom:322.112466px;}
.y87{bottom:323.701770px;}
.y28{bottom:324.978967px;}
.y123{bottom:326.568272px;}
.y1be{bottom:326.690526px;}
.y142{bottom:329.433334px;}
.y191{bottom:330.883125px;}
.ybc{bottom:332.384694px;}
.y167{bottom:332.447979px;}
.y4b{bottom:339.308597px;}
.y86{bottom:340.897901px;}
.y122{bottom:343.762964px;}
.y1bd{bottom:343.888095px;}
.y27{bottom:345.040161px;}
.y141{bottom:346.629465px;}
.y190{bottom:348.079256px;}
.ybb{bottom:349.579387px;}
.y166{bottom:349.642671px;}
.yed{bottom:352.509173px;}
.y85{bottom:358.092593px;}
.y4a{bottom:359.433075px;}
.y121{bottom:360.957656px;}
.y1bc{bottom:361.082787px;}
.y26{bottom:362.234853px;}
.y140{bottom:363.824158px;}
.yba{bottom:366.774079px;}
.y165{bottom:366.838802px;}
.yec{bottom:369.703865px;}
.y84{bottom:378.153787px;}
.y1bb{bottom:378.277480px;}
.y25{bottom:379.429545px;}
.y18f{bottom:380.935429px;}
.y13f{bottom:381.018850px;}
.yb9{bottom:383.968772px;}
.y164{bottom:384.033494px;}
.yeb{bottom:386.899996px;}
.y83{bottom:395.348479px;}
.y1ba{bottom:395.472172px;}
.y24{bottom:396.624238px;}
.y49{bottom:396.688961px;}
.y18e{bottom:398.130122px;}
.y120{bottom:398.213542px;}
.yb8{bottom:401.163464px;}
.y163{bottom:401.228187px;}
.yea{bottom:404.094688px;}
.y82{bottom:412.543172px;}
.y1b9{bottom:412.666864px;}
.y23{bottom:413.820369px;}
.y48{bottom:413.883653px;}
.y18d{bottom:415.326253px;}
.y11f{bottom:415.408235px;}
.y13e{bottom:418.339459px;}
.yb7{bottom:418.358156px;}
.y162{bottom:418.422879px;}
.ye9{bottom:421.289380px;}
.y81{bottom:429.737864px;}
.y1b8{bottom:429.864433px;}
.y22{bottom:431.015061px;}
.y47{bottom:431.078345px;}
.y11e{bottom:432.604365px;}
.yb6{bottom:435.554287px;}
.y161{bottom:435.617572px;}
.ye8{bottom:438.484073px;}
.y80{bottom:446.932557px;}
.y1b7{bottom:447.060564px;}
.y18c{bottom:448.182426px;}
.y21{bottom:448.209753px;}
.y46{bottom:448.274476px;}
.y11d{bottom:449.799058px;}
.yb5{bottom:452.748980px;}
.y13d{bottom:455.595345px;}
.ye7{bottom:455.678765px;}
.y7f{bottom:464.127249px;}
.y1b6{bottom:464.255256px;}
.y18b{bottom:465.377118px;}
.y20{bottom:465.404446px;}
.y45{bottom:465.469169px;}
.y11c{bottom:466.993750px;}
.yb4{bottom:469.943672px;}
.y13c{bottom:472.790037px;}
.ye6{bottom:472.873458px;}
.y7e{bottom:481.323380px;}
.y1b5{bottom:481.449949px;}
.y18a{bottom:482.573249px;}
.y1f{bottom:482.599138px;}
.y44{bottom:482.663861px;}
.y11b{bottom:484.188443px;}
.yb3{bottom:487.138364px;}
.y13b{bottom:489.984730px;}
.y160{bottom:490.068150px;}
.ye5{bottom:490.069588px;}
.y7d{bottom:498.518072px;}
.y1b4{bottom:498.647518px;}
.y189{bottom:499.767941px;}
.y1e{bottom:499.795269px;}
.y43{bottom:499.858553px;}
.yb2{bottom:504.333057px;}
.y13a{bottom:507.179422px;}
.y15f{bottom:507.262842px;}
.ye4{bottom:510.129344px;}
.y7c{bottom:515.712764px;}
.y1b3{bottom:515.842210px;}
.y188{bottom:516.962634px;}
.y1d{bottom:516.989961px;}
.y42{bottom:517.053246px;}
.y139{bottom:524.374114px;}
.yb1{bottom:524.394250px;}
.y15e{bottom:524.458973px;}
.ye3{bottom:527.324036px;}
.y7b{bottom:532.907457px;}
.y1b2{bottom:533.039779px;}
.y187{bottom:534.157326px;}
.y1c{bottom:534.184654px;}
.y41{bottom:534.247938px;}
.y11a{bottom:540.983425px;}
.y138{bottom:541.568807px;}
.yb0{bottom:541.588943px;}
.y15d{bottom:541.653666px;}
.ye2{bottom:544.520167px;}
.y7a{bottom:550.102149px;}
.y1b1{bottom:550.234471px;}
.y186{bottom:551.352019px;}
.y40{bottom:551.444069px;}
.y1b{bottom:554.309132px;}
.y119{bottom:558.178117px;}
.y137{bottom:558.764937px;}
.yaf{bottom:558.783635px;}
.y15c{bottom:558.848358px;}
.ye1{bottom:561.714859px;}
.y79{bottom:567.296842px;}
.y1b0{bottom:567.429164px;}
.y3f{bottom:571.503824px;}
.y118{bottom:575.372810px;}
.y136{bottom:575.959630px;}
.yae{bottom:575.978327px;}
.y15b{bottom:576.043050px;}
.ye0{bottom:578.909552px;}
.y185{bottom:584.209630px;}
.y78{bottom:584.492972px;}
.y1af{bottom:584.625295px;}
.y3e{bottom:588.698516px;}
.y1a{bottom:591.565018px;}
.y117{bottom:592.567502px;}
.y135{bottom:593.154322px;}
.yad{bottom:593.174458px;}
.y15a{bottom:593.237743px;}
.ydf{bottom:596.104244px;}
.y184{bottom:601.404323px;}
.y77{bottom:601.687665px;}
.y1ae{bottom:601.819987px;}
.y3d{bottom:605.894647px;}
.y19{bottom:608.759710px;}
.y116{bottom:609.763633px;}
.y134{bottom:610.349015px;}
.yac{bottom:610.369151px;}
.y159{bottom:610.433873px;}
.yde{bottom:613.298936px;}
.y183{bottom:618.599015px;}
.y1ad{bottom:619.014679px;}
.y76{bottom:621.812143px;}
.y3c{bottom:623.089340px;}
.y18{bottom:625.955841px;}
.y115{bottom:626.958325px;}
.y133{bottom:627.543707px;}
.yab{bottom:627.563843px;}
.y158{bottom:627.628566px;}
.ydd{bottom:630.493629px;}
.y182{bottom:635.795146px;}
.y1ac{bottom:636.212248px;}
.y3b{bottom:640.284032px;}
.y17{bottom:643.150533px;}
.yaa{bottom:644.758535px;}
.y132{bottom:647.604901px;}
.y157{bottom:647.688321px;}
.ydc{bottom:647.689759px;}
.y181{bottom:652.989838px;}
.y1ab{bottom:653.406941px;}
.y3a{bottom:657.478724px;}
.y16{bottom:660.345226px;}
.ya9{bottom:661.953228px;}
.y131{bottom:664.799593px;}
.ydb{bottom:664.884452px;}
.y180{bottom:670.184531px;}
.y1aa{bottom:670.601633px;}
.y39{bottom:674.673417px;}
.y15{bottom:677.539918px;}
.ya8{bottom:679.149358px;}
.y130{bottom:681.994285px;}
.yda{bottom:682.079144px;}
.y75{bottom:687.353334px;}
.y17f{bottom:687.379223px;}
.y1a9{bottom:687.797764px;}
.y38{bottom:691.869547px;}
.y14{bottom:694.734610px;}
.ya7{bottom:696.344051px;}
.y12f{bottom:699.190416px;}
.yd9{bottom:699.273837px;}
.y74{bottom:704.548026px;}
.y1a8{bottom:704.995333px;}
.y37{bottom:709.064240px;}
.y13{bottom:711.929303px;}
.ya6{bottom:713.538743px;}
.yf8{bottom:714.071250px;}
.y12e{bottom:716.385108px;}
.yd8{bottom:716.468529px;}
.y17e{bottom:720.236835px;}
.y104{bottom:721.262700px;}
.y73{bottom:721.742719px;}
.y1a7{bottom:722.190025px;}
.y36{bottom:726.258932px;}
.y12{bottom:729.125433px;}
.ya5{bottom:730.733436px;}
.y12d{bottom:733.579801px;}
.y156{bottom:733.663221px;}
.yd7{bottom:733.664660px;}
.y17d{bottom:737.431527px;}
.y72{bottom:738.937411px;}
.y1a6{bottom:739.384717px;}
.y11{bottom:746.320126px;}
.y12c{bottom:750.774493px;}
.ya4{bottom:750.794629px;}
.y155{bottom:750.857914px;}
.yd6{bottom:753.724415px;}
.y1a5{bottom:756.579410px;}
.y106{bottom:757.219800px;}
.y10{bottom:763.514818px;}
.y12b{bottom:767.969186px;}
.ya3{bottom:767.989322px;}
.y154{bottom:768.054044px;}
.y17c{bottom:770.289139px;}
.yd5{bottom:770.919107px;}
.y1a4{bottom:773.776979px;}
.yf{bottom:780.709511px;}
.ya2{bottom:785.184014px;}
.y153{bottom:785.248737px;}
.y17b{bottom:787.483831px;}
.yd4{bottom:788.115238px;}
.y1a3{bottom:790.971671px;}
.y12a{bottom:793.444082px;}
.ye{bottom:797.904203px;}
.yf4{bottom:800.368350px;}
.ya1{bottom:802.378706px;}
.y152{bottom:802.443429px;}
.y17a{bottom:804.678523px;}
.yd3{bottom:805.309930px;}
.yfe{bottom:807.559650px;}
.y1a2{bottom:808.169240px;}
.y35{bottom:815.098895px;}
.yd{bottom:815.100334px;}
.ya0{bottom:819.573399px;}
.y151{bottom:819.638122px;}
.y179{bottom:821.873216px;}
.yd2{bottom:822.504623px;}
.y1a1{bottom:825.365371px;}
.y69{bottom:826.050300px;}
.y108{bottom:829.134000px;}
.y34{bottom:832.293588px;}
.yc{bottom:832.295026px;}
.y5e{bottom:833.241750px;}
.y9f{bottom:836.769529px;}
.y178{bottom:839.067908px;}
.yd1{bottom:839.699315px;}
.y67{bottom:840.433200px;}
.y1a0{bottom:842.560063px;}
.yfc{bottom:850.708200px;}
.y9e{bottom:853.964222px;}
.y5c{bottom:854.815950px;}
.y177{bottom:856.262601px;}
.yd0{bottom:856.894008px;}
.y19f{bottom:859.757632px;}
.y6b{bottom:862.007400px;}
.y10c{bottom:865.091100px;}
.yb{bottom:870.708731px;}
.y9d{bottom:871.158914px;}
.ycf{bottom:874.088700px;}
.y19e{bottom:876.952325px;}
.y60{bottom:883.581750px;}
.y10a{bottom:886.665300px;}
.y176{bottom:889.120212px;}
.ya{bottom:890.769925px;}
.y6d{bottom:890.773050px;}
.y9c{bottom:891.220108px;}
.y150{bottom:891.283392px;}
.yce{bottom:891.284831px;}
.y19d{bottom:894.147017px;}
.y175{bottom:906.314905px;}
.y9b{bottom:908.414800px;}
.ycd{bottom:908.479523px;}
.y9{bottom:910.831118px;}
.y19c{bottom:911.341709px;}
.yf6{bottom:922.622550px;}
.y174{bottom:923.509597px;}
.y9a{bottom:925.609493px;}
.ycc{bottom:925.674215px;}
.y19b{bottom:928.539278px;}
.y8{bottom:938.981225px;}
.y62{bottom:941.113050px;}
.y99{bottom:942.804185px;}
.ycb{bottom:942.868908px;}
.y19a{bottom:945.733971px;}
.y70{bottom:948.304500px;}
.y113{bottom:951.388200px;}
.y173{bottom:957.133814px;}
.y7{bottom:959.040980px;}
.y98{bottom:959.998877px;}
.y129{bottom:960.063600px;}
.yca{bottom:962.930101px;}
.y172{bottom:974.328507px;}
.y97{bottom:977.195008px;}
.y128{bottom:977.258293px;}
.yc9{bottom:980.124794px;}
.y10e{bottom:980.153850px;}
.y6{bottom:993.394408px;}
.y96{bottom:994.389700px;}
.y127{bottom:994.454423px;}
.yc8{bottom:997.319486px;}
.y64{bottom:998.644500px;}
.y110{bottom:1001.728200px;}
.y95{bottom:1011.584393px;}
.y5b{bottom:1014.514179px;}
.y5{bottom:1025.588970px;}
.y94{bottom:1028.779085px;}
.y14f{bottom:1031.708871px;}
.y5a{bottom:1031.710309px;}
.y101{bottom:1037.685300px;}
.y14e{bottom:1048.903563px;}
.y59{bottom:1048.905002px;}
.yfa{bottom:1073.642400px;}
.y4{bottom:1105.153436px;}
.y3{bottom:1119.483065px;}
.y2{bottom:1133.812695px;}
.h15{height:21.315378px;}
.hc{height:21.574275px;}
.hd{height:25.578453px;}
.h18{height:28.765695px;}
.hf{height:35.957115px;}
.h3{height:42.368254px;}
.h10{height:43.148535px;}
.h4{height:44.018965px;}
.he{height:50.339955px;}
.ha{height:52.960184px;}
.h9{height:55.023568px;}
.h8{height:55.252833px;}
.h11{height:57.531375px;}
.h19{height:66.680888px;}
.h7{height:67.325368px;}
.h6{height:67.331121px;}
.h1a{height:69.805373px;}
.h17{height:79.105650px;}
.h12{height:83.196221px;}
.h13{height:92.277132px;}
.h16{height:107.871345px;}
.h14{height:115.062765px;}
.h5{height:127.104761px;}
.h2{height:1190.491050px;}
.hb{height:1210.877400px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.w5{width:64.722810px;}
.w4{width:71.914230px;}
.wa{width:79.105650px;}
.w7{width:93.488490px;}
.w6{width:100.679910px;}
.w8{width:115.062765px;}
.wb{width:222.934050px;}
.w9{width:323.614050px;}
.w2{width:856.174800px;}
.w3{width:856.176300px;}
.w0{width:892.913400px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:3.595808px;}
.x13{left:7.191369px;}
.x16{left:10.067980px;}
.xf{left:12.225383px;}
.x14{left:15.101934px;}
.x12{left:17.259361px;}
.x1{left:18.369990px;}
.x21{left:21.574329px;}
.x11{left:25.169927px;}
.x2b{left:28.039361px;}
.x24{left:30.196833px;}
.x2a{left:32.361407px;}
.x18{left:35.813290px;}
.x19{left:38.402202px;}
.x27{left:43.148574px;}
.x29{left:77.645797px;}
.x2{left:81.540669px;}
.x32{left:88.704764px;}
.x8{left:91.784132px;}
.x3{left:95.179922px;}
.x5{left:102.503667px;}
.x30{left:110.198489px;}
.x33{left:112.577412px;}
.x7{left:117.387036px;}
.x4{left:151.661358px;}
.x10{left:173.581050px;}
.x1b{left:180.506156px;}
.x9{left:184.421166px;}
.x2d{left:191.783745px;}
.x15{left:202.346700px;}
.x31{left:203.712878px;}
.x2f{left:211.350169px;}
.x1c{left:219.994259px;}
.x17{left:238.303800px;}
.x6{left:256.518058px;}
.x2c{left:273.801924px;}
.xe{left:288.643800px;}
.x1a{left:405.327298px;}
.xd{left:429.355281px;}
.xa{left:440.319324px;}
.x34{left:447.483420px;}
.xb{left:454.647515px;}
.x35{left:471.356067px;}
.x1d{left:473.072100px;}
.x22{left:494.646450px;}
.xc{left:504.258266px;}
.x2e{left:528.023042px;}
.x25{left:537.795000px;}
.x28{left:588.134850px;}
.x20{left:602.517750px;}
.x23{left:645.666300px;}
.x26{left:688.814850px;}
.x1f{left:710.389050px;}
@media print{
.v7{vertical-align:-88.352864pt;}
.v8{vertical-align:-70.801957pt;}
.v6{vertical-align:-26.980941pt;}
.v2{vertical-align:-22.189216pt;}
.v3{vertical-align:-7.640168pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:14.973502pt;}
.v1{vertical-align:22.189216pt;}
.v5{vertical-align:26.827524pt;}
.va{vertical-align:32.524409pt;}
.v4{vertical-align:34.467691pt;}
.ls1{letter-spacing:0.000000pt;}
.ls46{letter-spacing:0.002046pt;}
.lse{letter-spacing:0.008188pt;}
.ls15{letter-spacing:0.011895pt;}
.ls32{letter-spacing:0.013302pt;}
.ls12{letter-spacing:0.017009pt;}
.ls38{letter-spacing:0.017832pt;}
.ls18{letter-spacing:0.022464pt;}
.ls25{letter-spacing:0.027861pt;}
.ls17{letter-spacing:0.032974pt;}
.ls11{letter-spacing:0.037637pt;}
.ls4a{letter-spacing:0.038389pt;}
.ls19{letter-spacing:0.043525pt;}
.ls21{letter-spacing:0.048639pt;}
.ls45{letter-spacing:0.562835pt;}
.ls3e{letter-spacing:1.071362pt;}
.ls30{letter-spacing:1.892143pt;}
.ls41{letter-spacing:1.956067pt;}
.ls40{letter-spacing:2.012320pt;}
.ls8{letter-spacing:2.157043pt;}
.ls39{letter-spacing:2.342167pt;}
.ls7{letter-spacing:2.387169pt;}
.ls0{letter-spacing:2.546467pt;}
.ls1c{letter-spacing:2.571241pt;}
.ls16{letter-spacing:2.576355pt;}
.ls3d{letter-spacing:2.735937pt;}
.ls3f{letter-spacing:2.838215pt;}
.lsb{letter-spacing:3.016179pt;}
.ls44{letter-spacing:3.073897pt;}
.lsc{letter-spacing:3.298466pt;}
.lsd{letter-spacing:3.350628pt;}
.ls3c{letter-spacing:3.554161pt;}
.ls29{letter-spacing:3.682009pt;}
.ls31{letter-spacing:3.809856pt;}
.ls9{letter-spacing:3.887587pt;}
.ls3b{letter-spacing:3.937704pt;}
.ls6{letter-spacing:4.090098pt;}
.ls3a{letter-spacing:4.091121pt;}
.ls42{letter-spacing:4.142260pt;}
.ls28{letter-spacing:4.270107pt;}
.ls2d{letter-spacing:4.295677pt;}
.ls2b{letter-spacing:4.372385pt;}
.ls4{letter-spacing:4.449094pt;}
.ls2f{letter-spacing:4.500233pt;}
.ls2e{letter-spacing:4.628080pt;}
.ls27{letter-spacing:4.653650pt;}
.ls2c{letter-spacing:5.139470pt;}
.ls43{letter-spacing:5.344026pt;}
.ls2a{letter-spacing:5.574152pt;}
.ls47{letter-spacing:5.592085pt;}
.ls48{letter-spacing:5.597199pt;}
.ls5{letter-spacing:5.753138pt;}
.ls26{letter-spacing:5.957694pt;}
.ls3{letter-spacing:6.188843pt;}
.lsa{letter-spacing:6.418968pt;}
.ls2{letter-spacing:6.851604pt;}
.ls1b{letter-spacing:11.358279pt;}
.ls14{letter-spacing:11.363393pt;}
.ls23{letter-spacing:13.081664pt;}
.ls13{letter-spacing:13.874456pt;}
.ls1a{letter-spacing:13.879570pt;}
.ls24{letter-spacing:15.103963pt;}
.ls22{letter-spacing:15.597840pt;}
.ls1f{letter-spacing:16.400723pt;}
.ls20{letter-spacing:16.419684pt;}
.lsf{letter-spacing:16.709657pt;}
.ls35{letter-spacing:18.137472pt;}
.ls4b{letter-spacing:18.558789pt;}
.ls4c{letter-spacing:18.577750pt;}
.ls1d{letter-spacing:20.309914pt;}
.ls37{letter-spacing:22.608861pt;}
.ls34{letter-spacing:24.194170pt;}
.ls36{letter-spacing:25.122023pt;}
.ls33{letter-spacing:26.707333pt;}
.ls10{letter-spacing:79.639083pt;}
.ls1e{letter-spacing:293.534632pt;}
.ls49{letter-spacing:430.983166pt;}
.wsaf{word-spacing:-0.053495pt;}
.ws8{word-spacing:-0.050948pt;}
.ws42{word-spacing:0.000000pt;}
.ws4e{word-spacing:9.680072pt;}
.wse7{word-spacing:9.731020pt;}
.wsa6{word-spacing:9.781968pt;}
.ws27{word-spacing:9.883863pt;}
.wsa7{word-spacing:10.138602pt;}
.ws0{word-spacing:10.148817pt;}
.wsd0{word-spacing:10.291445pt;}
.ws21{word-spacing:10.342393pt;}
.wse{word-spacing:10.393341pt;}
.wsa5{word-spacing:10.444288pt;}
.ws30{word-spacing:10.495236pt;}
.ws5d{word-spacing:10.546184pt;}
.ws2d{word-spacing:10.597132pt;}
.wsd7{word-spacing:10.648079pt;}
.wsdf{word-spacing:10.699027pt;}
.ws2b{word-spacing:10.749975pt;}
.ws18{word-spacing:10.800923pt;}
.ws70{word-spacing:10.851870pt;}
.ws5b{word-spacing:10.902818pt;}
.ws8a{word-spacing:10.981494pt;}
.ws81{word-spacing:11.004714pt;}
.ws72{word-spacing:11.055661pt;}
.wsc3{word-spacing:11.106609pt;}
.wsa2{word-spacing:11.157557pt;}
.ws62{word-spacing:11.208505pt;}
.ws1d{word-spacing:11.259452pt;}
.ws89{word-spacing:11.310400pt;}
.ws12{word-spacing:11.361348pt;}
.ws77{word-spacing:11.412296pt;}
.ws4c{word-spacing:11.457719pt;}
.ws4d{word-spacing:11.463243pt;}
.ws6c{word-spacing:11.616087pt;}
.ws7a{word-spacing:11.768930pt;}
.ws7e{word-spacing:11.819878pt;}
.wsb7{word-spacing:11.921773pt;}
.ws36{word-spacing:12.023669pt;}
.wscf{word-spacing:12.074616pt;}
.ws9f{word-spacing:12.125564pt;}
.ws1b{word-spacing:12.176512pt;}
.wsb2{word-spacing:12.227460pt;}
.ws43{word-spacing:12.278407pt;}
.ws68{word-spacing:12.329355pt;}
.ws1a{word-spacing:12.431251pt;}
.ws5a{word-spacing:12.482198pt;}
.wsae{word-spacing:12.533146pt;}
.ws6d{word-spacing:12.584094pt;}
.wsbf{word-spacing:12.683295pt;}
.ws14{word-spacing:12.685989pt;}
.wsb0{word-spacing:12.736937pt;}
.ws94{word-spacing:12.787885pt;}
.ws8d{word-spacing:12.838833pt;}
.ws8f{word-spacing:12.851685pt;}
.ws46{word-spacing:12.889780pt;}
.ws47{word-spacing:12.940728pt;}
.ws56{word-spacing:12.991676pt;}
.ws13{word-spacing:13.042624pt;}
.ws17{word-spacing:13.144519pt;}
.ws25{word-spacing:13.195467pt;}
.ws24{word-spacing:13.197138pt;}
.wsdc{word-spacing:13.348310pt;}
.ws3f{word-spacing:13.399258pt;}
.ws60{word-spacing:13.429338pt;}
.ws61{word-spacing:13.450206pt;}
.ws38{word-spacing:13.501153pt;}
.ws20{word-spacing:13.603049pt;}
.ws8b{word-spacing:13.794265pt;}
.ws8c{word-spacing:13.797524pt;}
.ws88{word-spacing:13.806840pt;}
.wsd6{word-spacing:13.857787pt;}
.wse4{word-spacing:13.908735pt;}
.ws74{word-spacing:13.959683pt;}
.ws45{word-spacing:14.010631pt;}
.wscd{word-spacing:14.112526pt;}
.ws3b{word-spacing:14.163474pt;}
.ws96{word-spacing:14.214422pt;}
.ws33{word-spacing:14.265369pt;}
.wsc{word-spacing:14.367265pt;}
.ws6f{word-spacing:14.418213pt;}
.ws9d{word-spacing:14.469160pt;}
.wsf{word-spacing:14.520108pt;}
.ws44{word-spacing:14.622004pt;}
.ws6e{word-spacing:14.672951pt;}
.ws57{word-spacing:14.723899pt;}
.ws5e{word-spacing:14.774847pt;}
.ws85{word-spacing:14.825795pt;}
.wsd3{word-spacing:14.927690pt;}
.ws2f{word-spacing:14.978638pt;}
.ws3c{word-spacing:15.029586pt;}
.ws73{word-spacing:15.131481pt;}
.ws59{word-spacing:15.182429pt;}
.ws2{word-spacing:15.223289pt;}
.ws99{word-spacing:15.233377pt;}
.ws34{word-spacing:15.284324pt;}
.ws40{word-spacing:15.335272pt;}
.ws8e{word-spacing:15.415246pt;}
.ws35{word-spacing:15.437168pt;}
.ws65{word-spacing:15.488115pt;}
.ws53{word-spacing:15.539063pt;}
.wsa1{word-spacing:15.590011pt;}
.ws71{word-spacing:15.640959pt;}
.ws3d{word-spacing:15.742854pt;}
.wsa0{word-spacing:15.895697pt;}
.ws1e{word-spacing:15.946645pt;}
.wsac{word-spacing:15.948737pt;}
.wsab{word-spacing:15.950476pt;}
.wsaa{word-spacing:15.952331pt;}
.ws28{word-spacing:15.997593pt;}
.ws26{word-spacing:16.048541pt;}
.wsc9{word-spacing:16.099488pt;}
.wsc5{word-spacing:16.150436pt;}
.ws5f{word-spacing:16.201384pt;}
.ws58{word-spacing:16.252332pt;}
.wsb6{word-spacing:16.303279pt;}
.ws7c{word-spacing:16.405175pt;}
.ws2e{word-spacing:16.456123pt;}
.ws1c{word-spacing:16.507070pt;}
.ws95{word-spacing:16.608966pt;}
.ws23{word-spacing:16.659914pt;}
.ws19{word-spacing:16.710861pt;}
.ws11{word-spacing:16.761809pt;}
.ws37{word-spacing:16.812757pt;}
.ws16{word-spacing:16.914652pt;}
.ws7b{word-spacing:16.965600pt;}
.ws9e{word-spacing:17.016548pt;}
.ws5c{word-spacing:17.067496pt;}
.wsc1{word-spacing:17.169391pt;}
.ws9a{word-spacing:17.220339pt;}
.ws3a{word-spacing:17.271287pt;}
.wsc4{word-spacing:17.322234pt;}
.ws92{word-spacing:17.373182pt;}
.ws91{word-spacing:17.394628pt;}
.wsde{word-spacing:17.402320pt;}
.ws7f{word-spacing:17.424130pt;}
.ws84{word-spacing:17.526025pt;}
.wsbd{word-spacing:17.576973pt;}
.wsbe{word-spacing:17.581534pt;}
.ws9b{word-spacing:17.627921pt;}
.ws54{word-spacing:17.678869pt;}
.ws32{word-spacing:17.780764pt;}
.wsc6{word-spacing:17.831712pt;}
.wsbb{word-spacing:17.882660pt;}
.wsa9{word-spacing:17.933607pt;}
.ws10{word-spacing:18.035503pt;}
.ws97{word-spacing:18.083733pt;}
.ws98{word-spacing:18.086451pt;}
.wsa8{word-spacing:18.188346pt;}
.ws9c{word-spacing:18.239294pt;}
.ws76{word-spacing:18.341189pt;}
.wsb3{word-spacing:18.494033pt;}
.ws63{word-spacing:18.544980pt;}
.ws3e{word-spacing:18.646876pt;}
.wsb5{word-spacing:18.697824pt;}
.wsbc{word-spacing:18.737198pt;}
.wsa3{word-spacing:18.748771pt;}
.ws6b{word-spacing:18.850667pt;}
.ws41{word-spacing:18.901615pt;}
.ws79{word-spacing:18.952562pt;}
.ws2c{word-spacing:19.003510pt;}
.ws93{word-spacing:19.054458pt;}
.ws31{word-spacing:19.105406pt;}
.wsba{word-spacing:19.156353pt;}
.ws75{word-spacing:19.207301pt;}
.ws52{word-spacing:19.258249pt;}
.wsc7{word-spacing:19.309197pt;}
.wsad{word-spacing:19.360144pt;}
.ws22{word-spacing:19.411092pt;}
.ws67{word-spacing:19.462040pt;}
.wsc2{word-spacing:19.512988pt;}
.ws78{word-spacing:19.563935pt;}
.wse2{word-spacing:19.614883pt;}
.ws7d{word-spacing:19.665831pt;}
.ws4f{word-spacing:19.716779pt;}
.wsb8{word-spacing:19.767726pt;}
.ws83{word-spacing:19.920570pt;}
.ws87{word-spacing:19.971517pt;}
.wsc0{word-spacing:20.022465pt;}
.ws4b{word-spacing:20.124361pt;}
.ws6a{word-spacing:20.175308pt;}
.ws90{word-spacing:20.328151pt;}
.ws39{word-spacing:20.379099pt;}
.wsdb{word-spacing:20.531942pt;}
.wsa4{word-spacing:20.633838pt;}
.ws82{word-spacing:20.735733pt;}
.ws51{word-spacing:20.786681pt;}
.wsb9{word-spacing:20.837629pt;}
.ws64{word-spacing:20.990472pt;}
.ws66{word-spacing:21.041420pt;}
.ws69{word-spacing:21.143315pt;}
.ws80{word-spacing:21.499950pt;}
.wsca{word-spacing:21.550897pt;}
.wsd{word-spacing:21.601845pt;}
.wsb1{word-spacing:21.703741pt;}
.wsc8{word-spacing:22.111323pt;}
.ws29{word-spacing:22.366061pt;}
.ws86{word-spacing:22.569852pt;}
.ws50{word-spacing:23.028382pt;}
.wse5{word-spacing:23.181225pt;}
.wse0{word-spacing:23.216285pt;}
.wse1{word-spacing:23.232173pt;}
.ws9{word-spacing:23.334069pt;}
.ws55{word-spacing:23.486912pt;}
.wse3{word-spacing:23.588807pt;}
.wscc{word-spacing:23.639755pt;}
.ws5{word-spacing:23.792598pt;}
.ws4{word-spacing:24.200180pt;}
.ws3{word-spacing:24.362012pt;}
.wsb4{word-spacing:24.862501pt;}
.wsd9{word-spacing:24.913449pt;}
.ws2a{word-spacing:25.371979pt;}
.wscb{word-spacing:25.473874pt;}
.ws6{word-spacing:25.677665pt;}
.ws7{word-spacing:25.728613pt;}
.wse6{word-spacing:25.779561pt;}
.ws1f{word-spacing:26.951359pt;}
.ws48{word-spacing:27.817470pt;}
.ws49{word-spacing:27.852075pt;}
.ws4a{word-spacing:27.868418pt;}
.wsa{word-spacing:28.276000pt;}
.wsd4{word-spacing:29.193060pt;}
.wse8{word-spacing:29.244007pt;}
.ws1{word-spacing:30.446451pt;}
.wsdd{word-spacing:30.976231pt;}
.wsda{word-spacing:31.027179pt;}
.wsb{word-spacing:31.485708pt;}
.wsd8{word-spacing:35.052051pt;}
.wsd5{word-spacing:37.140908pt;}
.wsd1{word-spacing:41.369571pt;}
.wsce{word-spacing:41.828101pt;}
.wsd2{word-spacing:43.916959pt;}
.ws15{word-spacing:50.896800pt;}
._4{margin-left:-6.725189pt;}
._3{margin-left:-5.624669pt;}
._a{margin-left:-4.075820pt;}
._1{margin-left:-3.056873pt;}
._18{margin-left:-2.139805pt;}
._0{margin-left:-1.222749pt;}
._1d{width:2.908766pt;}
._19{width:11.565146pt;}
._16{width:12.543118pt;}
._8{width:14.723910pt;}
._11{width:15.793802pt;}
._d{width:17.118443pt;}
._b{width:18.595928pt;}
._15{width:19.818683pt;}
._c{width:21.296159pt;}
._e{width:22.722696pt;}
._7{width:23.792601pt;}
._13{width:24.964397pt;}
._6{width:26.336866pt;}
._9{width:27.919366pt;}
._1a{width:28.836425pt;}
._10{width:29.804433pt;}
._14{width:31.078134pt;}
._1b{width:33.319827pt;}
._f{width:35.204894pt;}
._20{width:36.325744pt;}
._2{width:37.905220pt;}
._17{width:40.248721pt;}
._22{width:41.264293pt;}
._1f{width:42.337579pt;}
._21{width:43.254638pt;}
._5{width:48.502256pt;}
._12{width:50.947748pt;}
._1e{width:52.374285pt;}
._1c{width:145.581591pt;}
.fs6{font-size:25.569504pt;}
.fs4{font-size:30.683405pt;}
.fs5{font-size:35.663321pt;}
.fs0{font-size:40.758301pt;}
.fs3{font-size:50.947748pt;}
.fs2{font-size:61.137707pt;}
.fs1{font-size:122.274902pt;}
.y0{bottom:0.000000pt;}
.y66{bottom:2.397050pt;}
.y111{bottom:7.280842pt;}
.y103{bottom:7.280855pt;}
.y107{bottom:7.280858pt;}
.y109{bottom:7.280884pt;}
.y10d{bottom:7.280898pt;}
.y10f{bottom:7.280914pt;}
.yfd{bottom:7.280946pt;}
.y100{bottom:7.280956pt;}
.y10b{bottom:7.280959pt;}
.y61{bottom:10.150986pt;}
.y65{bottom:10.151002pt;}
.y5f{bottom:10.151021pt;}
.y63{bottom:10.151061pt;}
.y5d{bottom:10.151082pt;}
.yfb{bottom:11.116294pt;}
.y112{bottom:15.341625pt;}
.y105{bottom:15.341630pt;}
.y102{bottom:15.341641pt;}
.y6a{bottom:15.341654pt;}
.y114{bottom:15.341662pt;}
.yff{bottom:15.341742pt;}
.y6f{bottom:21.018135pt;}
.y68{bottom:21.695628pt;}
.y57{bottom:23.092133pt;}
.y71{bottom:24.891856pt;}
.y6c{bottom:28.126420pt;}
.y6e{bottom:28.765695pt;}
.y1{bottom:41.213240pt;}
.y58{bottom:56.544401pt;}
.yf9{bottom:62.255302pt;}
.yf7{bottom:87.824777pt;}
.yf5{bottom:94.217161pt;}
.y93{bottom:104.322298pt;}
.yc7{bottom:106.888198pt;}
.y171{bottom:106.944450pt;}
.y33{bottom:118.195032pt;}
.y92{bottom:119.607747pt;}
.y14d{bottom:122.154470pt;}
.yc6{bottom:122.172369pt;}
.y170{bottom:122.228621pt;}
.y56{bottom:133.479203pt;}
.y91{bottom:134.891918pt;}
.y32{bottom:136.027204pt;}
.y14c{bottom:137.438641pt;}
.yc5{bottom:137.456540pt;}
.y16f{bottom:137.514071pt;}
.y199{bottom:137.542197pt;}
.y55{bottom:148.763374pt;}
.y90{bottom:150.176089pt;}
.y31{bottom:151.311375pt;}
.y14b{bottom:152.722812pt;}
.y16e{bottom:152.798242pt;}
.y1c5{bottom:152.826368pt;}
.y198{bottom:152.827647pt;}
.yc4{bottom:155.344965pt;}
.y54{bottom:164.047545pt;}
.y8f{bottom:165.460260pt;}
.y30{bottom:166.595546pt;}
.y14a{bottom:168.008261pt;}
.y197{bottom:168.111818pt;}
.y16d{bottom:170.686667pt;}
.y53{bottom:179.331716pt;}
.y8e{bottom:180.744431pt;}
.y2f{bottom:181.879717pt;}
.y149{bottom:183.292432pt;}
.y196{bottom:183.395989pt;}
.yc3{bottom:188.461308pt;}
.yf3{bottom:190.150173pt;}
.y52{bottom:194.615887pt;}
.y8d{bottom:196.028602pt;}
.y2e{bottom:197.163888pt;}
.y148{bottom:198.576603pt;}
.y1c4{bottom:198.682717pt;}
.yf2{bottom:198.887273pt;}
.y195{bottom:201.228161pt;}
.yc2{bottom:203.745479pt;}
.y16c{bottom:203.803010pt;}
.y51{bottom:209.901337pt;}
.y8c{bottom:211.314052pt;}
.y2d{bottom:212.448059pt;}
.y147{bottom:213.860775pt;}
.y1c3{bottom:213.966888pt;}
.yc1{bottom:219.030928pt;}
.y16b{bottom:219.087181pt;}
.y50{bottom:225.185508pt;}
.y8b{bottom:226.598223pt;}
.y2c{bottom:227.733509pt;}
.y146{bottom:229.144946pt;}
.y1c2{bottom:229.251059pt;}
.yf1{bottom:231.767098pt;}
.yc0{bottom:234.315099pt;}
.y194{bottom:234.343226pt;}
.y16a{bottom:234.372631pt;}
.y4f{bottom:240.469679pt;}
.y8a{bottom:241.882394pt;}
.y2b{bottom:243.017680pt;}
.y126{bottom:244.429117pt;}
.y1c1{bottom:244.537787pt;}
.y145{bottom:246.977118pt;}
.yf0{bottom:247.052548pt;}
.ybf{bottom:249.599270pt;}
.y193{bottom:249.628675pt;}
.y169{bottom:249.656802pt;}
.y4e{bottom:255.753850pt;}
.y89{bottom:257.166565pt;}
.y2a{bottom:258.301851pt;}
.y125{bottom:259.714566pt;}
.y1c0{bottom:259.821958pt;}
.y144{bottom:262.261289pt;}
.yef{bottom:262.336719pt;}
.ybe{bottom:264.883441pt;}
.y192{bottom:264.912846pt;}
.y168{bottom:264.940973pt;}
.y4d{bottom:271.038021pt;}
.y88{bottom:272.450736pt;}
.y29{bottom:273.586022pt;}
.y124{bottom:274.998737pt;}
.y1bf{bottom:275.106129pt;}
.y143{bottom:277.545460pt;}
.ybd{bottom:280.167612pt;}
.yee{bottom:280.225144pt;}
.y4c{bottom:286.322192pt;}
.y87{bottom:287.734907pt;}
.y28{bottom:288.870193pt;}
.y123{bottom:290.282908pt;}
.y1be{bottom:290.391578pt;}
.y142{bottom:292.829631pt;}
.y191{bottom:294.118334pt;}
.ybc{bottom:295.453062pt;}
.y167{bottom:295.509315pt;}
.y4b{bottom:301.607641pt;}
.y86{bottom:303.020356pt;}
.y122{bottom:305.567079pt;}
.y1bd{bottom:305.678306pt;}
.y27{bottom:306.702365pt;}
.y141{bottom:308.115080pt;}
.y190{bottom:309.403783pt;}
.ybb{bottom:310.737233pt;}
.y166{bottom:310.793486pt;}
.yed{bottom:313.341487pt;}
.y85{bottom:318.304527pt;}
.y4a{bottom:319.496066pt;}
.y121{bottom:320.851250pt;}
.y1bc{bottom:320.962477pt;}
.y26{bottom:321.986536pt;}
.y140{bottom:323.399251pt;}
.yba{bottom:326.021404pt;}
.y165{bottom:326.078935pt;}
.yec{bottom:328.625658pt;}
.y84{bottom:336.136700pt;}
.y1bb{bottom:336.246648pt;}
.y25{bottom:337.270707pt;}
.y18f{bottom:338.609271pt;}
.y13f{bottom:338.683422pt;}
.yb9{bottom:341.305575pt;}
.y164{bottom:341.363106pt;}
.yeb{bottom:343.911107pt;}
.y83{bottom:351.420871pt;}
.y1ba{bottom:351.530819pt;}
.y24{bottom:352.554878pt;}
.y49{bottom:352.612409pt;}
.y18e{bottom:353.893442pt;}
.y120{bottom:353.967593pt;}
.yb8{bottom:356.589746pt;}
.y163{bottom:356.647277pt;}
.yea{bottom:359.195278pt;}
.y82{bottom:366.705042pt;}
.y1b9{bottom:366.814990pt;}
.y23{bottom:367.840328pt;}
.y48{bottom:367.896581pt;}
.y18d{bottom:369.178891pt;}
.y11f{bottom:369.251764pt;}
.y13e{bottom:371.857297pt;}
.yb7{bottom:371.873917pt;}
.y162{bottom:371.931448pt;}
.ye9{bottom:374.479449pt;}
.y81{bottom:381.989213pt;}
.y1b8{bottom:382.101718pt;}
.y22{bottom:383.124499pt;}
.y47{bottom:383.180752pt;}
.y11e{bottom:384.537214pt;}
.yb6{bottom:387.159366pt;}
.y161{bottom:387.215619pt;}
.ye8{bottom:389.763620pt;}
.y80{bottom:397.273384pt;}
.y1b7{bottom:397.387168pt;}
.y18c{bottom:398.384379pt;}
.y21{bottom:398.408670pt;}
.y46{bottom:398.466201pt;}
.y11d{bottom:399.821385pt;}
.yb5{bottom:402.443537pt;}
.y13d{bottom:404.973640pt;}
.ye7{bottom:405.047791pt;}
.y7f{bottom:412.557555pt;}
.y1b6{bottom:412.671339pt;}
.y18b{bottom:413.668550pt;}
.y20{bottom:413.692841pt;}
.y45{bottom:413.750372pt;}
.y11c{bottom:415.105556pt;}
.yb4{bottom:417.727708pt;}
.y13c{bottom:420.257811pt;}
.ye6{bottom:420.331962pt;}
.y7e{bottom:427.843004pt;}
.y1b5{bottom:427.955510pt;}
.y18a{bottom:428.953999pt;}
.y1f{bottom:428.977012pt;}
.y44{bottom:429.034543pt;}
.y11b{bottom:430.389727pt;}
.yb3{bottom:433.011879pt;}
.y13b{bottom:435.541982pt;}
.y160{bottom:435.616133pt;}
.ye5{bottom:435.617412pt;}
.y7d{bottom:443.127175pt;}
.y1b4{bottom:443.242238pt;}
.y189{bottom:444.238170pt;}
.y1e{bottom:444.262461pt;}
.y43{bottom:444.318714pt;}
.yb2{bottom:448.296050pt;}
.y13a{bottom:450.826153pt;}
.y15f{bottom:450.900304pt;}
.ye4{bottom:453.448305pt;}
.y7c{bottom:458.411346pt;}
.y1b3{bottom:458.526409pt;}
.y188{bottom:459.522341pt;}
.y1d{bottom:459.546632pt;}
.y42{bottom:459.602885pt;}
.y139{bottom:466.110324pt;}
.yb1{bottom:466.128222pt;}
.y15e{bottom:466.185754pt;}
.ye3{bottom:468.732476pt;}
.y7b{bottom:473.695517pt;}
.y1b2{bottom:473.813137pt;}
.y187{bottom:474.806512pt;}
.y1c{bottom:474.830803pt;}
.y41{bottom:474.887056pt;}
.y11a{bottom:480.874155pt;}
.y138{bottom:481.394495pt;}
.yb0{bottom:481.412394pt;}
.y15d{bottom:481.469925pt;}
.ye2{bottom:484.017926pt;}
.y7a{bottom:488.979688pt;}
.y1b1{bottom:489.097308pt;}
.y186{bottom:490.090683pt;}
.y40{bottom:490.172506pt;}
.y1b{bottom:492.719228pt;}
.y119{bottom:496.158326pt;}
.y137{bottom:496.679944pt;}
.yaf{bottom:496.696565pt;}
.y15c{bottom:496.754096pt;}
.ye1{bottom:499.302097pt;}
.y79{bottom:504.263859pt;}
.y1b0{bottom:504.381479pt;}
.y3f{bottom:508.003399pt;}
.y118{bottom:511.442497pt;}
.y136{bottom:511.964115pt;}
.yae{bottom:511.980736pt;}
.y15b{bottom:512.038267pt;}
.ye0{bottom:514.586268pt;}
.y185{bottom:519.297449pt;}
.y78{bottom:519.549309pt;}
.y1af{bottom:519.666928pt;}
.y3e{bottom:523.287570pt;}
.y1a{bottom:525.835571pt;}
.y117{bottom:526.726668pt;}
.y135{bottom:527.248286pt;}
.yad{bottom:527.266185pt;}
.y15a{bottom:527.322438pt;}
.ydf{bottom:529.870439pt;}
.y184{bottom:534.581620pt;}
.y77{bottom:534.833480pt;}
.y1ae{bottom:534.951099pt;}
.y3d{bottom:538.573020pt;}
.y19{bottom:541.119742pt;}
.y116{bottom:542.012118pt;}
.y134{bottom:542.532457pt;}
.yac{bottom:542.550356pt;}
.y159{bottom:542.607887pt;}
.yde{bottom:545.154610pt;}
.y183{bottom:549.865791pt;}
.y1ad{bottom:550.235270pt;}
.y76{bottom:552.721905pt;}
.y3c{bottom:553.857191pt;}
.y18{bottom:556.405192pt;}
.y115{bottom:557.296289pt;}
.y133{bottom:557.816628pt;}
.yab{bottom:557.834527pt;}
.y158{bottom:557.892058pt;}
.ydd{bottom:560.438781pt;}
.y182{bottom:565.151241pt;}
.y1ac{bottom:565.521998pt;}
.y3b{bottom:569.141362pt;}
.y17{bottom:571.689363pt;}
.yaa{bottom:573.118698pt;}
.y132{bottom:575.648801pt;}
.y157{bottom:575.722952pt;}
.ydc{bottom:575.724231pt;}
.y181{bottom:580.435412pt;}
.y1ab{bottom:580.806169pt;}
.y3a{bottom:584.425533pt;}
.y16{bottom:586.973534pt;}
.ya9{bottom:588.402869pt;}
.y131{bottom:590.932972pt;}
.ydb{bottom:591.008402pt;}
.y180{bottom:595.719583pt;}
.y1aa{bottom:596.090340pt;}
.y39{bottom:599.709704pt;}
.y15{bottom:602.257705pt;}
.ya8{bottom:603.688319pt;}
.y130{bottom:606.217143pt;}
.yda{bottom:606.292573pt;}
.y75{bottom:610.980741pt;}
.y17f{bottom:611.003754pt;}
.y1a9{bottom:611.375790pt;}
.y38{bottom:614.995153pt;}
.y14{bottom:617.541876pt;}
.ya7{bottom:618.972490pt;}
.y12f{bottom:621.502592pt;}
.yd9{bottom:621.576744pt;}
.y74{bottom:626.264912pt;}
.y1a8{bottom:626.662518pt;}
.y37{bottom:630.279324pt;}
.y13{bottom:632.826047pt;}
.ya6{bottom:634.256661pt;}
.yf8{bottom:634.730000pt;}
.y12e{bottom:636.786763pt;}
.yd8{bottom:636.860915pt;}
.y17e{bottom:640.210520pt;}
.y104{bottom:641.122400pt;}
.y73{bottom:641.549083pt;}
.y1a7{bottom:641.946689pt;}
.y36{bottom:645.563495pt;}
.y12{bottom:648.111496pt;}
.ya5{bottom:649.540832pt;}
.y12d{bottom:652.070934pt;}
.y156{bottom:652.145086pt;}
.yd7{bottom:652.146364pt;}
.y17d{bottom:655.494691pt;}
.y72{bottom:656.833254pt;}
.y1a6{bottom:657.230860pt;}
.y11{bottom:663.395667pt;}
.y12c{bottom:667.355105pt;}
.ya4{bottom:667.373004pt;}
.y155{bottom:667.429257pt;}
.yd6{bottom:669.977258pt;}
.y1a5{bottom:672.515031pt;}
.y106{bottom:673.084267pt;}
.y10{bottom:678.679838pt;}
.y12b{bottom:682.639276pt;}
.ya3{bottom:682.657175pt;}
.y154{bottom:682.714706pt;}
.y17c{bottom:684.701457pt;}
.yd5{bottom:685.261429pt;}
.y1a4{bottom:687.801759pt;}
.yf{bottom:693.964009pt;}
.ya2{bottom:697.941346pt;}
.y153{bottom:697.998877pt;}
.y17b{bottom:699.985628pt;}
.yd4{bottom:700.546878pt;}
.y1a3{bottom:703.085930pt;}
.y12a{bottom:705.283629pt;}
.ye{bottom:709.248180pt;}
.yf4{bottom:711.438533pt;}
.ya1{bottom:713.225517pt;}
.y152{bottom:713.283048pt;}
.y17a{bottom:715.269799pt;}
.yd3{bottom:715.831049pt;}
.yfe{bottom:717.830800pt;}
.y1a2{bottom:718.372658pt;}
.y35{bottom:724.532351pt;}
.yd{bottom:724.533630pt;}
.ya0{bottom:728.509688pt;}
.y151{bottom:728.567219pt;}
.y179{bottom:730.553970pt;}
.yd2{bottom:731.115220pt;}
.y1a1{bottom:733.658107pt;}
.y69{bottom:734.266933pt;}
.y108{bottom:737.008000pt;}
.y34{bottom:739.816522pt;}
.yc{bottom:739.817801pt;}
.y5e{bottom:740.659333pt;}
.y9f{bottom:743.795137pt;}
.y178{bottom:745.838141pt;}
.yd1{bottom:746.399391pt;}
.y67{bottom:747.051733pt;}
.y1a0{bottom:748.942278pt;}
.yfc{bottom:756.185067pt;}
.y9e{bottom:759.079308pt;}
.y5c{bottom:759.836400pt;}
.y177{bottom:761.122312pt;}
.yd0{bottom:761.683562pt;}
.y19f{bottom:764.229006pt;}
.y6b{bottom:766.228800pt;}
.y10c{bottom:768.969867pt;}
.yb{bottom:773.963317pt;}
.y9d{bottom:774.363479pt;}
.ycf{bottom:776.967733pt;}
.y19e{bottom:779.513177pt;}
.y60{bottom:785.406000pt;}
.y10a{bottom:788.146933pt;}
.y176{bottom:790.329078pt;}
.ya{bottom:791.795489pt;}
.y6d{bottom:791.798267pt;}
.y9c{bottom:792.195651pt;}
.y150{bottom:792.251904pt;}
.yce{bottom:792.253183pt;}
.y19d{bottom:794.797348pt;}
.y175{bottom:805.613249pt;}
.y9b{bottom:807.479822pt;}
.ycd{bottom:807.537354pt;}
.y9{bottom:809.627661pt;}
.y19c{bottom:810.081519pt;}
.yf6{bottom:820.108933pt;}
.y174{bottom:820.897420pt;}
.y9a{bottom:822.763993pt;}
.ycc{bottom:822.821525pt;}
.y19b{bottom:825.368247pt;}
.y8{bottom:834.649977pt;}
.y62{bottom:836.544933pt;}
.y99{bottom:838.048164pt;}
.ycb{bottom:838.105696pt;}
.y19a{bottom:840.652418pt;}
.y70{bottom:842.937333pt;}
.y113{bottom:845.678400pt;}
.y173{bottom:850.785613pt;}
.y7{bottom:852.480871pt;}
.y98{bottom:853.332335pt;}
.y129{bottom:853.389867pt;}
.yca{bottom:855.937868pt;}
.y172{bottom:866.069784pt;}
.y97{bottom:868.617785pt;}
.y128{bottom:868.674038pt;}
.yc9{bottom:871.222039pt;}
.y10e{bottom:871.247867pt;}
.y6{bottom:883.017251pt;}
.y96{bottom:883.901956pt;}
.y127{bottom:883.959487pt;}
.yc8{bottom:886.506210pt;}
.y64{bottom:887.684000pt;}
.y110{bottom:890.425067pt;}
.y95{bottom:899.186127pt;}
.y5b{bottom:901.790381pt;}
.y5{bottom:911.634640pt;}
.y94{bottom:914.470298pt;}
.y14f{bottom:917.074552pt;}
.y5a{bottom:917.075830pt;}
.y101{bottom:922.386933pt;}
.y14e{bottom:932.358723pt;}
.y59{bottom:932.360001pt;}
.yfa{bottom:954.348800pt;}
.y4{bottom:982.358610pt;}
.y3{bottom:995.096058pt;}
.y2{bottom:1007.833506pt;}
.h15{height:18.947002pt;}
.hc{height:19.177133pt;}
.hd{height:22.736403pt;}
.h18{height:25.569507pt;}
.hf{height:31.961880pt;}
.h3{height:37.660670pt;}
.h10{height:38.354253pt;}
.h4{height:39.127969pt;}
.he{height:44.746627pt;}
.ha{height:47.075719pt;}
.h9{height:48.909838pt;}
.h8{height:49.113629pt;}
.h11{height:51.139000pt;}
.h19{height:59.271900pt;}
.h7{height:59.844772pt;}
.h6{height:59.849885pt;}
.h1a{height:62.049221pt;}
.h17{height:70.316133pt;}
.h12{height:73.952196pt;}
.h13{height:82.024117pt;}
.h16{height:95.885640pt;}
.h14{height:102.278013pt;}
.h5{height:112.982010pt;}
.h2{height:1058.214267pt;}
.hb{height:1076.335467pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w5{width:57.531387pt;}
.w4{width:63.923760pt;}
.wa{width:70.316133pt;}
.w7{width:83.100880pt;}
.w6{width:89.493253pt;}
.w8{width:102.278013pt;}
.wb{width:198.163600pt;}
.w9{width:287.656933pt;}
.w2{width:761.044267pt;}
.w3{width:761.045600pt;}
.w0{width:793.700800pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:3.196273pt;}
.x13{left:6.392328pt;}
.x16{left:8.949316pt;}
.xf{left:10.867007pt;}
.x14{left:13.423942pt;}
.x12{left:15.341654pt;}
.x1{left:16.328880pt;}
.x21{left:19.177181pt;}
.x11{left:22.373268pt;}
.x2b{left:24.923877pt;}
.x24{left:26.841629pt;}
.x2a{left:28.765695pt;}
.x18{left:31.834035pt;}
.x19{left:34.135291pt;}
.x27{left:38.354288pt;}
.x29{left:69.018486pt;}
.x2{left:72.480595pt;}
.x32{left:78.848679pt;}
.x8{left:81.585895pt;}
.x3{left:84.604375pt;}
.x5{left:91.114371pt;}
.x30{left:97.954213pt;}
.x33{left:100.068811pt;}
.x7{left:104.344032pt;}
.x4{left:134.810096pt;}
.x10{left:154.294267pt;}
.x1b{left:160.449916pt;}
.x9{left:163.929926pt;}
.x2d{left:170.474440pt;}
.x15{left:179.863733pt;}
.x31{left:181.078113pt;}
.x2f{left:187.866817pt;}
.x1c{left:195.550453pt;}
.x17{left:211.825600pt;}
.x6{left:228.016052pt;}
.x2c{left:243.379488pt;}
.xe{left:256.572267pt;}
.x1a{left:360.290932pt;}
.xd{left:381.649138pt;}
.xa{left:391.394955pt;}
.x34{left:397.763040pt;}
.xb{left:404.131125pt;}
.x35{left:418.983171pt;}
.x1d{left:420.508533pt;}
.x22{left:439.685733pt;}
.xc{left:448.229570pt;}
.x2e{left:469.353815pt;}
.x25{left:478.040000pt;}
.x28{left:522.786533pt;}
.x20{left:535.571333pt;}
.x23{left:573.925600pt;}
.x26{left:612.279867pt;}
.x1f{left:631.456933pt;}
}




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