
    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_34a1c19469e581aa798bf865.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7d5b889be5bc2ef62c265b8a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_736f3ae4d5b7b5f1d8052306.woff')format("woff");}.ff3{font-family:ff3;line-height:0.905762;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_2be473182297e32a2ba16409.woff')format("woff");}.ff4{font-family:ff4;line-height:0.697266;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_ffa4d297d5cda2e1193c04a3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.895508;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_eb1517a1f412993b2160ce66.woff')format("woff");}.ff6{font-family:ff6;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_21831d08c2f358686082c8aa.woff')format("woff");}.ff7{font-family:ff7;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f78924063c697507f44f2eb1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_34a1c19469e581aa798bf865.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7d5b889be5bc2ef62c265b8a.woff')format("woff");}.ffa{font-family:ffa;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e1e8faed35e2eaa6f6c8803f.woff')format("woff");}.ffb{font-family:ffb;line-height:0.898438;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_5bfb855d94fffc22b659d13d.woff')format("woff");}.ffc{font-family:ffc;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_5fafd6815de7b14ffbba71af.woff')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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_623532263cdeac4526f1b202.woff')format("woff");}.ffe{font-family:ffe;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_7d5b889be5bc2ef62c265b8a.woff')format("woff");}.fff{font-family:fff;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_d9845eecbfeeb71e82af9115.woff')format("woff");}.ff10{font-family:ff10;line-height:0.900391;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;}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.v7{vertical-align:-20.579400px;}
.vc{vertical-align:-17.982000px;}
.v4{vertical-align:-15.984000px;}
.v3{vertical-align:-11.988000px;}
.v5{vertical-align:-7.218000px;}
.vb{vertical-align:-5.994000px;}
.v8{vertical-align:-3.996000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:3.996000px;}
.va{vertical-align:15.984000px;}
.v6{vertical-align:20.579400px;}
.v2{vertical-align:27.972000px;}
.v1{vertical-align:35.964000px;}
.ls5{letter-spacing:-2.520000px;}
.ls3c{letter-spacing:-1.998000px;}
.ls16{letter-spacing:-1.333088px;}
.lsf{letter-spacing:-1.236000px;}
.ls6{letter-spacing:-1.080000px;}
.ls17{letter-spacing:-1.035408px;}
.ls23{letter-spacing:-0.618000px;}
.ls34{letter-spacing:-0.576000px;}
.ls4{letter-spacing:-0.420000px;}
.ls24{letter-spacing:-0.360294px;}
.ls7{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000300px;}
.ls10{letter-spacing:0.000600px;}
.ls0{letter-spacing:0.165000px;}
.ls2b{letter-spacing:0.192000px;}
.lsa{letter-spacing:0.198000px;}
.ls9{letter-spacing:0.252000px;}
.ls43{letter-spacing:0.309000px;}
.ls12{letter-spacing:0.326400px;}
.ls38{letter-spacing:0.331200px;}
.ls47{letter-spacing:0.370800px;}
.ls3f{letter-spacing:0.517200px;}
.ls15{letter-spacing:0.576000px;}
.ls2{letter-spacing:0.600000px;}
.lsb{letter-spacing:0.618000px;}
.ls3a{letter-spacing:0.720588px;}
.ls20{letter-spacing:0.787200px;}
.ls19{letter-spacing:0.859200px;}
.ls1a{letter-spacing:0.864000px;}
.ls13{letter-spacing:1.038000px;}
.ls39{letter-spacing:1.076400px;}
.ls3e{letter-spacing:1.080882px;}
.ls2a{letter-spacing:1.152600px;}
.ls1e{letter-spacing:1.193400px;}
.ls21{letter-spacing:1.194000px;}
.ls37{letter-spacing:1.236000px;}
.ls45{letter-spacing:1.359600px;}
.ls2e{letter-spacing:1.392000px;}
.ls29{letter-spacing:1.536000px;}
.ls48{letter-spacing:1.668600px;}
.ls1{letter-spacing:1.755000px;}
.ls27{letter-spacing:1.764600px;}
.ls41{letter-spacing:1.792200px;}
.ls2f{letter-spacing:1.824000px;}
.ls3d{letter-spacing:1.854000px;}
.ls1d{letter-spacing:1.968000px;}
.lse{letter-spacing:1.980000px;}
.ls42{letter-spacing:2.017200px;}
.ls40{letter-spacing:2.533800px;}
.ls8{letter-spacing:2.772000px;}
.ls30{letter-spacing:2.869800px;}
.ls36{letter-spacing:2.961000px;}
.ls18{letter-spacing:3.040800px;}
.ls1c{letter-spacing:3.061800px;}
.ls32{letter-spacing:3.126600px;}
.ls22{letter-spacing:3.127200px;}
.ls35{letter-spacing:3.154200px;}
.ls46{letter-spacing:3.275400px;}
.lsd{letter-spacing:4.153200px;}
.ls1f{letter-spacing:4.770000px;}
.ls3b{letter-spacing:4.900800px;}
.ls25{letter-spacing:4.995600px;}
.ls1b{letter-spacing:5.245200px;}
.ls11{letter-spacing:5.247000px;}
.ls33{letter-spacing:5.337600px;}
.ls14{letter-spacing:6.874800px;}
.ls28{letter-spacing:6.962400px;}
.ls2c{letter-spacing:7.971000px;}
.ls3{letter-spacing:9.000000px;}
.ls26{letter-spacing:12.628200px;}
.ls31{letter-spacing:17.348400px;}
.ls44{letter-spacing:17.785200px;}
.ls2d{letter-spacing:45.888000px;}
.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;}
}
.ws103{word-spacing:-18.725400px;}
.wsfb{word-spacing:-17.983800px;}
.wseb{word-spacing:-17.304000px;}
.wsfc{word-spacing:-17.242200px;}
.ws10a{word-spacing:-17.118600px;}
.wsfd{word-spacing:-16.809600px;}
.ws105{word-spacing:-16.068000px;}
.ws104{word-spacing:-15.820800px;}
.wsfe{word-spacing:-15.759000px;}
.wse{word-spacing:-15.450000px;}
.ws9b{word-spacing:-14.832000px;}
.ws81{word-spacing:-13.824000px;}
.ws60{word-spacing:-13.536000px;}
.wsab{word-spacing:-13.500000px;}
.ws80{word-spacing:-13.392000px;}
.ws2a{word-spacing:-12.864000px;}
.ws1e{word-spacing:-12.576000px;}
.ws6d{word-spacing:-12.192000px;}
.wsf{word-spacing:-12.000000px;}
.wsde{word-spacing:-11.502000px;}
.wsec{word-spacing:-10.088232px;}
.wsd2{word-spacing:-9.727938px;}
.wsd{word-spacing:-9.007350px;}
.ws43{word-spacing:-8.647056px;}
.wscf{word-spacing:-7.870500px;}
.ws1b{word-spacing:-7.674262px;}
.ws96{word-spacing:-7.663200px;}
.ws1d{word-spacing:-6.996000px;}
.ws34{word-spacing:-6.674400px;}
.ws1c{word-spacing:-5.960592px;}
.ws3a{word-spacing:-5.871000px;}
.wsf0{word-spacing:-5.438400px;}
.ws2{word-spacing:-5.247000px;}
.ws5e{word-spacing:-4.896000px;}
.ws3e{word-spacing:-4.573200px;}
.wsd9{word-spacing:-3.769800px;}
.ws35{word-spacing:-3.708000px;}
.wsed{word-spacing:-3.399000px;}
.ws9f{word-spacing:-3.300000px;}
.wsdf{word-spacing:-3.090000px;}
.wsda{word-spacing:-3.028200px;}
.ws8e{word-spacing:-2.904600px;}
.ws89{word-spacing:-2.842800px;}
.ws5{word-spacing:-2.772000px;}
.ws107{word-spacing:-2.719200px;}
.ws30{word-spacing:-2.595600px;}
.ws79{word-spacing:-2.348400px;}
.ws21{word-spacing:-2.286600px;}
.ws31{word-spacing:-2.101200px;}
.ws47{word-spacing:-2.039400px;}
.ws78{word-spacing:-1.977600px;}
.ws39{word-spacing:-1.968000px;}
.ws77{word-spacing:-1.915800px;}
.ws4b{word-spacing:-1.854000px;}
.ws8{word-spacing:-1.782000px;}
.ws76{word-spacing:-1.730400px;}
.ws28{word-spacing:-1.606800px;}
.ws3c{word-spacing:-1.545000px;}
.wsd3{word-spacing:-1.421400px;}
.ws16{word-spacing:-1.359600px;}
.wsdb{word-spacing:-1.297800px;}
.ws8f{word-spacing:-1.248000px;}
.ws19{word-spacing:-1.236000px;}
.wsa3{word-spacing:-1.112400px;}
.ws95{word-spacing:-1.050600px;}
.ws4a{word-spacing:-0.927000px;}
.ws68{word-spacing:-0.865200px;}
.wsef{word-spacing:-0.803400px;}
.ws94{word-spacing:-0.741600px;}
.ws10{word-spacing:-0.618000px;}
.ws9{word-spacing:-0.600000px;}
.wsc4{word-spacing:-0.594000px;}
.ws37{word-spacing:-0.576000px;}
.wscd{word-spacing:-0.540000px;}
.ws93{word-spacing:-0.370800px;}
.ws14{word-spacing:-0.309000px;}
.ws29{word-spacing:-0.288000px;}
.wsbe{word-spacing:-0.270000px;}
.ws6{word-spacing:-0.252000px;}
.ws71{word-spacing:-0.247200px;}
.ws0{word-spacing:-0.231000px;}
.ws7{word-spacing:-0.198000px;}
.wsf3{word-spacing:-0.185400px;}
.ws33{word-spacing:-0.123600px;}
.ws1{word-spacing:-0.061800px;}
.ws3{word-spacing:0.000000px;}
.ws106{word-spacing:0.185400px;}
.ws56{word-spacing:0.247200px;}
.ws1f{word-spacing:0.420000px;}
.wsd5{word-spacing:0.494400px;}
.wsaa{word-spacing:0.576000px;}
.ws46{word-spacing:0.618000px;}
.ws53{word-spacing:0.672000px;}
.ws49{word-spacing:0.679800px;}
.ws51{word-spacing:0.741600px;}
.wsf1{word-spacing:0.927000px;}
.ws4{word-spacing:1.080000px;}
.ws2c{word-spacing:1.174200px;}
.ws11{word-spacing:1.236000px;}
.ws4e{word-spacing:1.297800px;}
.wsce{word-spacing:1.404000px;}
.ws32{word-spacing:1.421400px;}
.ws2d{word-spacing:1.545000px;}
.ws36{word-spacing:1.606800px;}
.wsbf{word-spacing:1.620000px;}
.ws2b{word-spacing:1.730400px;}
.ws64{word-spacing:1.854000px;}
.wsb0{word-spacing:1.890000px;}
.wsa2{word-spacing:1.915800px;}
.ws13{word-spacing:1.977600px;}
.ws6f{word-spacing:2.039400px;}
.ws59{word-spacing:2.101200px;}
.ws48{word-spacing:2.163000px;}
.wse2{word-spacing:2.224800px;}
.ws23{word-spacing:2.286600px;}
.ws3b{word-spacing:2.348400px;}
.ws5f{word-spacing:2.352000px;}
.ws70{word-spacing:2.410200px;}
.wsf4{word-spacing:2.472000px;}
.wsf6{word-spacing:2.533800px;}
.ws7b{word-spacing:2.595600px;}
.ws58{word-spacing:2.657400px;}
.ws17{word-spacing:2.719200px;}
.ws2f{word-spacing:2.781000px;}
.ws42{word-spacing:2.842800px;}
.ws54{word-spacing:3.024000px;}
.ws9e{word-spacing:3.151800px;}
.ws100{word-spacing:3.213600px;}
.wse7{word-spacing:3.275400px;}
.wse4{word-spacing:3.399000px;}
.ws27{word-spacing:3.460800px;}
.wse9{word-spacing:3.584400px;}
.ws5c{word-spacing:3.646200px;}
.ws99{word-spacing:3.696000px;}
.ws7c{word-spacing:3.708000px;}
.ws20{word-spacing:3.831600px;}
.wsb7{word-spacing:3.942000px;}
.ws3f{word-spacing:3.955200px;}
.wsc6{word-spacing:4.050000px;}
.ws83{word-spacing:4.078800px;}
.wsf7{word-spacing:4.264200px;}
.ws6e{word-spacing:4.326000px;}
.wse3{word-spacing:4.387800px;}
.wsd0{word-spacing:4.449600px;}
.ws4d{word-spacing:4.635000px;}
.ws7d{word-spacing:4.696800px;}
.ws6b{word-spacing:4.820400px;}
.wsd6{word-spacing:4.944000px;}
.ws8a{word-spacing:5.005800px;}
.wsb6{word-spacing:5.184000px;}
.ws63{word-spacing:5.191200px;}
.ws38{word-spacing:5.232000px;}
.wsc8{word-spacing:5.292000px;}
.ws24{word-spacing:5.314800px;}
.wsa9{word-spacing:5.438400px;}
.ws5a{word-spacing:5.500200px;}
.wsfa{word-spacing:5.623800px;}
.wsee{word-spacing:5.685600px;}
.ws90{word-spacing:5.747400px;}
.wsd4{word-spacing:5.809200px;}
.ws92{word-spacing:5.871000px;}
.ws5b{word-spacing:5.994600px;}
.ws4f{word-spacing:6.303600px;}
.ws9d{word-spacing:6.365400px;}
.ws3d{word-spacing:6.489000px;}
.wsc3{word-spacing:6.534000px;}
.wsb9{word-spacing:6.588000px;}
.wsf8{word-spacing:6.612600px;}
.ws26{word-spacing:6.674400px;}
.wse5{word-spacing:6.736200px;}
.wsb3{word-spacing:6.858000px;}
.wsa6{word-spacing:6.859800px;}
.wscb{word-spacing:6.912000px;}
.wsb{word-spacing:6.996000px;}
.ws67{word-spacing:7.045200px;}
.wsa0{word-spacing:7.168800px;}
.ws50{word-spacing:7.539600px;}
.ws61{word-spacing:7.663200px;}
.ws82{word-spacing:7.725000px;}
.wse8{word-spacing:7.786800px;}
.ws65{word-spacing:7.910400px;}
.ws15{word-spacing:7.972200px;}
.ws4c{word-spacing:8.034000px;}
.wsb1{word-spacing:8.154000px;}
.wsea{word-spacing:8.219400px;}
.ws7e{word-spacing:8.281200px;}
.wsf9{word-spacing:8.343000px;}
.wsdd{word-spacing:8.400000px;}
.ws98{word-spacing:8.404800px;}
.ws8d{word-spacing:8.466600px;}
.ws44{word-spacing:8.590200px;}
.ws87{word-spacing:8.775600px;}
.ws6a{word-spacing:8.899200px;}
.ws8c{word-spacing:8.961000px;}
.wsc5{word-spacing:8.964000px;}
.wse1{word-spacing:9.146400px;}
.wsa{word-spacing:9.264000px;}
.ws1a{word-spacing:9.360000px;}
.wsc0{word-spacing:9.396000px;}
.ws5d{word-spacing:9.826200px;}
.ws85{word-spacing:9.888000px;}
.ws91{word-spacing:10.011600px;}
.ws7a{word-spacing:10.135200px;}
.wse6{word-spacing:10.197000px;}
.ws7f{word-spacing:10.272000px;}
.ws69{word-spacing:10.320600px;}
.ws45{word-spacing:10.444200px;}
.ws12{word-spacing:10.567800px;}
.ws8b{word-spacing:10.629600px;}
.ws9a{word-spacing:10.801824px;}
.wsd1{word-spacing:10.815000px;}
.ws9c{word-spacing:11.000400px;}
.wsca{word-spacing:11.070000px;}
.ws22{word-spacing:11.124000px;}
.wsf5{word-spacing:11.309400px;}
.wsf2{word-spacing:11.556600px;}
.wsd8{word-spacing:11.618400px;}
.ws57{word-spacing:11.865600px;}
.wsc1{word-spacing:11.880000px;}
.wsd7{word-spacing:11.989200px;}
.ws62{word-spacing:12.051000px;}
.wsa7{word-spacing:12.545400px;}
.ws40{word-spacing:12.607200px;}
.ws52{word-spacing:12.624000px;}
.wse0{word-spacing:13.225200px;}
.ws74{word-spacing:13.410600px;}
.ws88{word-spacing:13.596000px;}
.ws73{word-spacing:13.719600px;}
.ws66{word-spacing:13.781400px;}
.wsdc{word-spacing:13.966800px;}
.wsa1{word-spacing:14.028600px;}
.wsad{word-spacing:14.337600px;}
.wsbd{word-spacing:14.472000px;}
.ws25{word-spacing:14.770200px;}
.ws84{word-spacing:14.893800px;}
.wsbc{word-spacing:15.336000px;}
.ws97{word-spacing:15.450000px;}
.wsb4{word-spacing:15.498000px;}
.ws41{word-spacing:15.759000px;}
.wsc2{word-spacing:16.470000px;}
.wsaf{word-spacing:17.118000px;}
.ws86{word-spacing:17.180400px;}
.ws109{word-spacing:17.304000px;}
.ws55{word-spacing:17.365800px;}
.wsb5{word-spacing:17.388000px;}
.wsc9{word-spacing:17.550000px;}
.wsa4{word-spacing:17.922000px;}
.wsac{word-spacing:19.158000px;}
.wsb2{word-spacing:19.386000px;}
.wsa8{word-spacing:19.467000px;}
.wscc{word-spacing:19.710000px;}
.wsb8{word-spacing:20.142000px;}
.ws2e{word-spacing:20.270400px;}
.wsae{word-spacing:21.330000px;}
.wsba{word-spacing:21.762000px;}
.ws18{word-spacing:22.742400px;}
.wsbb{word-spacing:23.058000px;}
.ws75{word-spacing:23.808000px;}
.wsc7{word-spacing:26.244000px;}
.ws72{word-spacing:27.068400px;}
.ws108{word-spacing:32.692200px;}
.wsa5{word-spacing:36.153000px;}
.wsff{word-spacing:46.659000px;}
.ws102{word-spacing:55.187400px;}
.ws101{word-spacing:66.805800px;}
.ws6c{word-spacing:87.408000px;}
.wsc{word-spacing:453.942000px;}
._29{margin-left:-21.583800px;}
._18{margin-left:-18.231000px;}
._25{margin-left:-16.502400px;}
._17{margin-left:-14.811000px;}
._27{margin-left:-13.208400px;}
._24{margin-left:-12.069540px;}
._23{margin-left:-10.518360px;}
._28{margin-left:-8.910000px;}
._19{margin-left:-7.644660px;}
._7{margin-left:-6.414000px;}
._f{margin-left:-4.575000px;}
._6{margin-left:-3.114000px;}
._0{margin-left:-1.549800px;}
._1{width:1.247400px;}
._2{width:2.503200px;}
._9{width:4.358400px;}
._4{width:5.802000px;}
._5{width:7.122000px;}
._b{width:8.221200px;}
._3{width:9.504000px;}
._a{width:10.545000px;}
._10{width:12.256860px;}
._d{width:13.532280px;}
._e{width:15.069720px;}
._c{width:17.396700px;}
._12{width:18.968940px;}
._8{width:20.144280px;}
._11{width:21.191220px;}
._16{width:22.637340px;}
._1c{width:23.826060px;}
._1e{width:25.058460px;}
._1b{width:26.430600px;}
._14{width:27.729660px;}
._21{width:28.762560px;}
._20{width:30.232800px;}
._26{width:31.947480px;}
._2e{width:33.392460px;}
._22{width:35.337240px;}
._1f{width:41.253000px;}
._2c{width:42.786000px;}
._2a{width:46.631220px;}
._1d{width:51.658200px;}
._1a{width:55.729800px;}
._2d{width:57.156000px;}
._13{width:64.276800px;}
._2b{width:113.143440px;}
._2f{width:138.760980px;}
._15{width:170.574600px;}
.fc9{color:rgb(33,37,41);}
.fc7{color:rgb(0,138,178);}
.fc2{color:rgb(0,0,255);}
.fc8{color:rgb(27,32,40);}
.fc1{color:rgb(17,85,204);}
.fc6{color:rgb(51,51,51);}
.fc5{color:rgb(26,26,26);}
.fc4{color:rgb(35,31,32);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:20.988000px;}
.fsc{font-size:27.984000px;}
.fse{font-size:31.482000px;}
.fsa{font-size:36.000000px;}
.fsd{font-size:36.029400px;}
.fs0{font-size:42.000000px;}
.fsb{font-size:48.000000px;}
.fs4{font-size:48.972000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs8{font-size:61.800000px;}
.fs2{font-size:62.964000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:84.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:46.483800px;}
.y1{bottom:56.983800px;}
.y20{bottom:76.500000px;}
.y12d{bottom:76.500150px;}
.y7d{bottom:80.496000px;}
.yac{bottom:80.496150px;}
.y1f{bottom:90.000000px;}
.yee{bottom:90.388200px;}
.y164{bottom:92.636100px;}
.y46{bottom:93.996000px;}
.y12c{bottom:93.996150px;}
.yab{bottom:93.996300px;}
.yc5{bottom:103.076100px;}
.y1e{bottom:103.500000px;}
.y12b{bottom:103.500300px;}
.yaa{bottom:103.500450px;}
.yed{bottom:106.588200px;}
.y8b{bottom:107.496000px;}
.y127{bottom:111.176100px;}
.y163{bottom:112.269750px;}
.y1d{bottom:117.000000px;}
.ya9{bottom:117.000450px;}
.y112{bottom:118.108200px;}
.yc4{bottom:119.276100px;}
.y8a{bottom:120.996000px;}
.y12a{bottom:120.996300px;}
.yec{bottom:122.788200px;}
.y13c{bottom:129.536100px;}
.y126{bottom:129.716100px;}
.y45{bottom:130.500000px;}
.y129{bottom:130.500450px;}
.y162{bottom:130.809750px;}
.y111{bottom:134.308200px;}
.y1c{bottom:134.496000px;}
.ya8{bottom:134.496450px;}
.y113{bottom:134.995500px;}
.yc3{bottom:135.476100px;}
.yeb{bottom:138.988200px;}
.y1b{bottom:144.000000px;}
.ya7{bottom:144.000600px;}
.y44{bottom:147.996000px;}
.y128{bottom:147.996450px;}
.y13b{bottom:148.076100px;}
.y125{bottom:148.256100px;}
.y124{bottom:149.336100px;}
.y161{bottom:149.349750px;}
.y110{bottom:150.508200px;}
.yc2{bottom:151.676100px;}
.yea{bottom:155.188200px;}
.y1a{bottom:157.500000px;}
.y43{bottom:161.496000px;}
.ya6{bottom:161.496600px;}
.y13a{bottom:166.616100px;}
.yad{bottom:166.796100px;}
.y123{bottom:167.876100px;}
.y160{bottom:167.889750px;}
.y19{bottom:171.000000px;}
.ya5{bottom:171.000750px;}
.ye9{bottom:171.388200px;}
.y93{bottom:173.997000px;}
.y68{bottom:174.996000px;}
.y10f{bottom:182.908200px;}
.yc1{bottom:184.076100px;}
.y42{bottom:184.500000px;}
.y139{bottom:185.156100px;}
.y96{bottom:185.336100px;}
.y122{bottom:186.416100px;}
.y15f{bottom:186.429750px;}
.y18{bottom:187.497000px;}
.ye8{bottom:187.588200px;}
.y67{bottom:188.496000px;}
.y41{bottom:198.000000px;}
.y10e{bottom:199.108200px;}
.yc0{bottom:200.276100px;}
.y66{bottom:201.996000px;}
.y92{bottom:202.616100px;}
.y138{bottom:203.696100px;}
.ye7{bottom:203.788200px;}
.y95{bottom:203.876100px;}
.ya4{bottom:204.236100px;}
.y89{bottom:204.416100px;}
.y121{bottom:204.956100px;}
.y15e{bottom:204.969750px;}
.y40{bottom:211.500000px;}
.y10d{bottom:215.308200px;}
.y3f{bottom:215.496000px;}
.ybf{bottom:216.476100px;}
.ye6{bottom:219.988200px;}
.y91{bottom:221.156100px;}
.y137{bottom:222.236100px;}
.y94{bottom:222.416100px;}
.ya3{bottom:222.776100px;}
.y88{bottom:222.956100px;}
.y120{bottom:223.496100px;}
.y15d{bottom:223.509750px;}
.y3e{bottom:225.000000px;}
.y3d{bottom:228.996000px;}
.y10c{bottom:231.508200px;}
.ybe{bottom:232.676100px;}
.ye5{bottom:236.188200px;}
.y3c{bottom:238.500000px;}
.y90{bottom:239.696100px;}
.y136{bottom:240.776100px;}
.y8f{bottom:240.956100px;}
.y87{bottom:241.496100px;}
.y11f{bottom:242.036100px;}
.y15c{bottom:242.049750px;}
.y98{bottom:242.496000px;}
.ybd{bottom:248.876100px;}
.y97{bottom:252.000000px;}
.y17{bottom:253.566600px;}
.y3b{bottom:255.996000px;}
.y65{bottom:258.236100px;}
.y135{bottom:259.316100px;}
.y8e{bottom:259.496100px;}
.ya2{bottom:259.856100px;}
.y86{bottom:260.036100px;}
.y11e{bottom:260.576100px;}
.y15b{bottom:260.589750px;}
.y10b{bottom:263.908200px;}
.ybc{bottom:265.076100px;}
.y7c{bottom:265.500000px;}
.ye4{bottom:268.588200px;}
.y99{bottom:269.496000px;}
.y16{bottom:272.106600px;}
.y64{bottom:276.776100px;}
.y134{bottom:277.856100px;}
.y8d{bottom:278.036100px;}
.y85{bottom:278.576100px;}
.y7b{bottom:279.000000px;}
.y11d{bottom:279.116100px;}
.y15a{bottom:279.129750px;}
.y10a{bottom:280.108200px;}
.ybb{bottom:281.276100px;}
.ye3{bottom:284.788200px;}
.y63{bottom:295.316100px;}
.y109{bottom:296.308200px;}
.y3a{bottom:296.368650px;}
.y133{bottom:296.396100px;}
.y8c{bottom:296.576100px;}
.ya1{bottom:296.936100px;}
.y84{bottom:297.116100px;}
.y11c{bottom:297.656100px;}
.y159{bottom:297.669750px;}
.ye2{bottom:300.988200px;}
.y15{bottom:308.646600px;}
.y108{bottom:312.508200px;}
.yba{bottom:313.676100px;}
.y62{bottom:313.856100px;}
.y39{bottom:314.908650px;}
.y132{bottom:314.936100px;}
.y7a{bottom:315.116100px;}
.y83{bottom:315.656100px;}
.y11b{bottom:316.196100px;}
.y158{bottom:316.209750px;}
.ye1{bottom:317.188200px;}
.y14{bottom:326.646600px;}
.y107{bottom:328.708200px;}
.yb9{bottom:329.876100px;}
.y61{bottom:332.396100px;}
.ye0{bottom:333.388200px;}
.y38{bottom:333.448650px;}
.y131{bottom:333.476100px;}
.y79{bottom:333.656100px;}
.y82{bottom:334.196100px;}
.y11a{bottom:334.736100px;}
.y157{bottom:334.749750px;}
.y13{bottom:344.646600px;}
.y106{bottom:344.908200px;}
.yb8{bottom:346.076100px;}
.ydf{bottom:349.588200px;}
.y60{bottom:350.936100px;}
.y37{bottom:351.988650px;}
.y130{bottom:352.016100px;}
.y78{bottom:352.196100px;}
.y81{bottom:352.736100px;}
.y119{bottom:353.276100px;}
.y156{bottom:353.289750px;}
.y105{bottom:361.108200px;}
.yb7{bottom:362.276100px;}
.y12{bottom:362.646600px;}
.yde{bottom:365.788200px;}
.y5f{bottom:369.476100px;}
.y36{bottom:370.528650px;}
.y12f{bottom:370.556100px;}
.y77{bottom:370.736100px;}
.y80{bottom:371.276100px;}
.y118{bottom:371.816100px;}
.y155{bottom:371.829750px;}
.y104{bottom:377.308200px;}
.yb6{bottom:378.476100px;}
.y11{bottom:380.646600px;}
.ydd{bottom:381.988200px;}
.y5e{bottom:388.016100px;}
.y35{bottom:389.068650px;}
.y76{bottom:389.276100px;}
.y7f{bottom:389.816100px;}
.y117{bottom:390.356100px;}
.y154{bottom:390.369750px;}
.y103{bottom:393.508200px;}
.yb5{bottom:394.676100px;}
.y10{bottom:398.646600px;}
.y5d{bottom:406.556100px;}
.y34{bottom:407.608650px;}
.y12e{bottom:407.636100px;}
.y75{bottom:407.816100px;}
.y116{bottom:408.896100px;}
.y153{bottom:408.909750px;}
.y102{bottom:409.708200px;}
.yb4{bottom:410.876100px;}
.ydc{bottom:414.388200px;}
.yf{bottom:424.146600px;}
.y5c{bottom:425.096100px;}
.y101{bottom:425.908200px;}
.y33{bottom:426.148650px;}
.y74{bottom:426.356100px;}
.y7e{bottom:426.896100px;}
.yb3{bottom:427.076100px;}
.y152{bottom:427.449750px;}
.ydb{bottom:430.588200px;}
.y100{bottom:442.108200px;}
.yb2{bottom:443.276100px;}
.y5b{bottom:443.636100px;}
.y32{bottom:444.688650px;}
.y73{bottom:444.896100px;}
.y115{bottom:445.976100px;}
.y151{bottom:445.989750px;}
.yda{bottom:446.788200px;}
.yff{bottom:458.308200px;}
.y5a{bottom:462.176100px;}
.yd9{bottom:462.988200px;}
.y31{bottom:463.228650px;}
.y72{bottom:463.436100px;}
.y114{bottom:464.516100px;}
.y150{bottom:464.529750px;}
.yfe{bottom:474.508200px;}
.yb1{bottom:475.676100px;}
.yd8{bottom:479.188200px;}
.y59{bottom:480.716100px;}
.y30{bottom:481.768650px;}
.y71{bottom:481.976100px;}
.ye{bottom:482.946600px;}
.y14f{bottom:483.069750px;}
.yb0{bottom:491.876100px;}
.y58{bottom:499.256100px;}
.y2f{bottom:500.308650px;}
.y70{bottom:500.516100px;}
.y14e{bottom:501.609750px;}
.yd{bottom:504.546600px;}
.yfd{bottom:509.248200px;}
.yd7{bottom:511.588200px;}
.y57{bottom:517.796100px;}
.y2e{bottom:518.848650px;}
.y6f{bottom:519.056100px;}
.y14d{bottom:520.149750px;}
.yaf{bottom:524.276100px;}
.yfc{bottom:525.448200px;}
.yd6{bottom:527.788200px;}
.y56{bottom:536.336100px;}
.y2d{bottom:537.388650px;}
.y6e{bottom:537.596100px;}
.y14c{bottom:538.689750px;}
.yc{bottom:540.246600px;}
.yae{bottom:540.476100px;}
.yfb{bottom:541.648200px;}
.yd5{bottom:543.988200px;}
.y55{bottom:554.876100px;}
.y2c{bottom:555.928650px;}
.y6d{bottom:556.136100px;}
.y14b{bottom:557.229750px;}
.yfa{bottom:557.848200px;}
.yd4{bottom:560.188200px;}
.yb{bottom:565.798500px;}
.ya0{bottom:573.416100px;}
.yf9{bottom:574.048200px;}
.y2b{bottom:574.468650px;}
.y6c{bottom:574.676100px;}
.y14a{bottom:575.769750px;}
.yd3{bottom:576.388200px;}
.yf8{bottom:590.248200px;}
.y54{bottom:591.956100px;}
.ya{bottom:592.498500px;}
.yd2{bottom:592.588200px;}
.y6b{bottom:593.216100px;}
.y149{bottom:594.309750px;}
.yf7{bottom:606.448200px;}
.y9f{bottom:610.496100px;}
.y2a{bottom:611.548650px;}
.y6a{bottom:611.756100px;}
.y148{bottom:612.849750px;}
.yf6{bottom:622.648200px;}
.yd1{bottom:624.988200px;}
.y9e{bottom:629.036100px;}
.y69{bottom:630.296100px;}
.y147{bottom:631.389750px;}
.y9{bottom:635.698500px;}
.yf5{bottom:638.848200px;}
.yd0{bottom:641.188200px;}
.y9d{bottom:647.576100px;}
.y53{bottom:648.836100px;}
.y146{bottom:649.929750px;}
.yf4{bottom:655.048200px;}
.ycf{bottom:657.388200px;}
.y8{bottom:662.698500px;}
.y29{bottom:666.088650px;}
.y9c{bottom:666.116100px;}
.y52{bottom:667.376100px;}
.y145{bottom:668.469750px;}
.yf3{bottom:671.248200px;}
.yce{bottom:673.588200px;}
.y28{bottom:684.628650px;}
.y9b{bottom:684.656100px;}
.y51{bottom:685.916100px;}
.y144{bottom:687.009750px;}
.yf2{bottom:687.448200px;}
.y7{bottom:689.698500px;}
.ycd{bottom:689.788200px;}
.yf1{bottom:703.648200px;}
.y50{bottom:704.456100px;}
.y143{bottom:705.549750px;}
.ycc{bottom:705.988200px;}
.yf0{bottom:719.848200px;}
.y27{bottom:721.708650px;}
.y9a{bottom:721.736100px;}
.ycb{bottom:722.188200px;}
.y4f{bottom:722.996100px;}
.y142{bottom:724.089750px;}
.yca{bottom:738.388200px;}
.y26{bottom:740.248650px;}
.y4e{bottom:741.536100px;}
.y141{bottom:742.629750px;}
.y6{bottom:743.698500px;}
.yef{bottom:754.588200px;}
.y25{bottom:758.788650px;}
.y4d{bottom:760.076100px;}
.y140{bottom:761.169750px;}
.y5{bottom:770.698500px;}
.yc9{bottom:770.788200px;}
.y24{bottom:777.328650px;}
.y4c{bottom:778.616100px;}
.y13f{bottom:779.709750px;}
.yc8{bottom:786.988200px;}
.y23{bottom:795.868650px;}
.y4b{bottom:797.156100px;}
.y4{bottom:797.698500px;}
.y13e{bottom:798.249900px;}
.yc7{bottom:803.188200px;}
.y4a{bottom:815.696100px;}
.yc6{bottom:819.388200px;}
.y3{bottom:824.698500px;}
.y22{bottom:832.948650px;}
.y49{bottom:834.236100px;}
.y13d{bottom:834.789900px;}
.y48{bottom:893.470500px;}
.y47{bottom:905.470500px;}
.y21{bottom:906.525150px;}
.h14{height:24.554320px;}
.hf{height:26.133187px;}
.h13{height:26.250375px;}
.h20{height:27.623610px;}
.hd{height:30.129187px;}
.h1b{height:30.246375px;}
.h15{height:33.328125px;}
.h2{height:36.852539px;}
.h18{height:36.955078px;}
.h1f{height:36.966797px;}
.h8{height:37.098633px;}
.h1c{height:41.074219px;}
.ha{height:41.220703px;}
.he{height:42.117188px;}
.h16{height:42.234375px;}
.h1a{height:42.306445px;}
.hc{height:42.457324px;}
.hb{height:42.608203px;}
.h1d{height:42.909961px;}
.h11{height:45.181641px;}
.h7{height:45.342773px;}
.h9{height:45.503906px;}
.h10{height:47.381836px;}
.h1e{height:47.513672px;}
.h17{height:52.792969px;}
.h12{height:54.225879px;}
.h19{height:54.376758px;}
.h6{height:57.708984px;}
.h5{height:60.970711px;}
.h3{height:74.197266px;}
.h4{height:78.390914px;}
.h0{height:970.948500px;}
.h1{height:971.250000px;}
.w1{width:616.500000px;}
.w0{width:616.536000px;}
.x0{left:0.000000px;}
.x5{left:55.062900px;}
.x6{left:56.976450px;}
.x8{left:69.094500px;}
.x2{left:76.663050px;}
.x1{left:78.236250px;}
.xd{left:81.337500px;}
.xb{left:83.458950px;}
.x7{left:85.062900px;}
.x4{left:90.694500px;}
.xa{left:100.418100px;}
.x47{left:101.562300px;}
.xc{left:102.937500px;}
.x3{left:106.662900px;}
.x44{left:108.812550px;}
.x48{left:115.397100px;}
.x28{left:119.632950px;}
.xe{left:131.192850px;}
.x29{left:139.375500px;}
.x56{left:144.917250px;}
.x45{left:147.843750px;}
.xf{left:149.124000px;}
.x2a{left:153.215550px;}
.x46{left:159.401400px;}
.x10{left:160.449000px;}
.x49{left:163.761150px;}
.x4a{left:177.595950px;}
.x57{left:181.801050px;}
.x4b{left:191.095950px;}
.x58{left:194.352450px;}
.x11{left:204.890100px;}
.x2b{left:210.700350px;}
.x12{left:216.215100px;}
.x34{left:222.161100px;}
.x2c{left:224.540400px;}
.x5d{left:227.190900px;}
.x13{left:230.068350px;}
.x14{left:241.393350px;}
.x4c{left:242.418300px;}
.x2d{left:246.847950px;}
.x15{left:248.732100px;}
.x4d{left:256.253100px;}
.x16{left:260.057100px;}
.x35{left:265.184250px;}
.x4e{left:271.994400px;}
.x17{left:273.910350px;}
.x18{left:285.235350px;}
.x36{left:292.955550px;}
.x37{left:298.655550px;}
.x38{left:307.161300px;}
.x19{left:315.815850px;}
.x39{left:317.921250px;}
.x1a{left:327.140850px;}
.x2e{left:334.475250px;}
.x1b{left:340.994250px;}
.x2f{left:348.315300px;}
.x3a{left:350.178750px;}
.x1c{left:352.319250px;}
.x4f{left:354.415500px;}
.x3b{left:358.684500px;}
.x50{left:360.407400px;}
.x3c{left:369.444450px;}
.x51{left:374.242350px;}
.x3d{left:377.950200px;}
.x59{left:380.192250px;}
.x5a{left:393.292350px;}
.x30{left:404.057400px;}
.x1d{left:413.458650px;}
.x31{left:417.897600px;}
.x5b{left:422.077800px;}
.x1e{left:424.783650px;}
.x52{left:427.074150px;}
.x3e{left:433.937400px;}
.x5c{left:435.158100px;}
.x1f{left:438.637050px;}
.x3f{left:444.697200px;}
.x20{left:449.962050px;}
.x32{left:452.222400px;}
.x25{left:455.241450px;}
.x33{left:466.062450px;}
.x26{left:471.660150px;}
.x53{left:483.295650px;}
.x40{left:487.402950px;}
.x21{left:494.818650px;}
.x41{left:495.908700px;}
.x54{left:497.130450px;}
.x22{left:506.143650px;}
.x55{left:509.872350px;}
.x42{left:525.666600px;}
.x43{left:534.172350px;}
.x27{left:539.872350px;}
.x9{left:541.222350px;}
.x23{left:543.632850px;}
.x24{left:554.957850px;}
@media print{
.v7{vertical-align:-18.292800pt;}
.vc{vertical-align:-15.984000pt;}
.v4{vertical-align:-14.208000pt;}
.v3{vertical-align:-10.656000pt;}
.v5{vertical-align:-6.416000pt;}
.vb{vertical-align:-5.328000pt;}
.v8{vertical-align:-3.552000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:3.552000pt;}
.va{vertical-align:14.208000pt;}
.v6{vertical-align:18.292800pt;}
.v2{vertical-align:24.864000pt;}
.v1{vertical-align:31.968000pt;}
.ls5{letter-spacing:-2.240000pt;}
.ls3c{letter-spacing:-1.776000pt;}
.ls16{letter-spacing:-1.184967pt;}
.lsf{letter-spacing:-1.098667pt;}
.ls6{letter-spacing:-0.960000pt;}
.ls17{letter-spacing:-0.920363pt;}
.ls23{letter-spacing:-0.549333pt;}
.ls34{letter-spacing:-0.512000pt;}
.ls4{letter-spacing:-0.373333pt;}
.ls24{letter-spacing:-0.320261pt;}
.ls7{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000267pt;}
.ls10{letter-spacing:0.000533pt;}
.ls0{letter-spacing:0.146667pt;}
.ls2b{letter-spacing:0.170667pt;}
.lsa{letter-spacing:0.176000pt;}
.ls9{letter-spacing:0.224000pt;}
.ls43{letter-spacing:0.274667pt;}
.ls12{letter-spacing:0.290133pt;}
.ls38{letter-spacing:0.294400pt;}
.ls47{letter-spacing:0.329600pt;}
.ls3f{letter-spacing:0.459733pt;}
.ls15{letter-spacing:0.512000pt;}
.ls2{letter-spacing:0.533333pt;}
.lsb{letter-spacing:0.549333pt;}
.ls3a{letter-spacing:0.640523pt;}
.ls20{letter-spacing:0.699733pt;}
.ls19{letter-spacing:0.763733pt;}
.ls1a{letter-spacing:0.768000pt;}
.ls13{letter-spacing:0.922667pt;}
.ls39{letter-spacing:0.956800pt;}
.ls3e{letter-spacing:0.960784pt;}
.ls2a{letter-spacing:1.024533pt;}
.ls1e{letter-spacing:1.060800pt;}
.ls21{letter-spacing:1.061333pt;}
.ls37{letter-spacing:1.098667pt;}
.ls45{letter-spacing:1.208533pt;}
.ls2e{letter-spacing:1.237333pt;}
.ls29{letter-spacing:1.365333pt;}
.ls48{letter-spacing:1.483200pt;}
.ls1{letter-spacing:1.560000pt;}
.ls27{letter-spacing:1.568533pt;}
.ls41{letter-spacing:1.593067pt;}
.ls2f{letter-spacing:1.621333pt;}
.ls3d{letter-spacing:1.648000pt;}
.ls1d{letter-spacing:1.749333pt;}
.lse{letter-spacing:1.760000pt;}
.ls42{letter-spacing:1.793067pt;}
.ls40{letter-spacing:2.252267pt;}
.ls8{letter-spacing:2.464000pt;}
.ls30{letter-spacing:2.550933pt;}
.ls36{letter-spacing:2.632000pt;}
.ls18{letter-spacing:2.702933pt;}
.ls1c{letter-spacing:2.721600pt;}
.ls32{letter-spacing:2.779200pt;}
.ls22{letter-spacing:2.779733pt;}
.ls35{letter-spacing:2.803733pt;}
.ls46{letter-spacing:2.911467pt;}
.lsd{letter-spacing:3.691733pt;}
.ls1f{letter-spacing:4.240000pt;}
.ls3b{letter-spacing:4.356267pt;}
.ls25{letter-spacing:4.440533pt;}
.ls1b{letter-spacing:4.662400pt;}
.ls11{letter-spacing:4.664000pt;}
.ls33{letter-spacing:4.744533pt;}
.ls14{letter-spacing:6.110933pt;}
.ls28{letter-spacing:6.188800pt;}
.ls2c{letter-spacing:7.085333pt;}
.ls3{letter-spacing:8.000000pt;}
.ls26{letter-spacing:11.225067pt;}
.ls31{letter-spacing:15.420800pt;}
.ls44{letter-spacing:15.809067pt;}
.ls2d{letter-spacing:40.789333pt;}
.ws103{word-spacing:-16.644800pt;}
.wsfb{word-spacing:-15.985600pt;}
.wseb{word-spacing:-15.381333pt;}
.wsfc{word-spacing:-15.326400pt;}
.ws10a{word-spacing:-15.216533pt;}
.wsfd{word-spacing:-14.941867pt;}
.ws105{word-spacing:-14.282667pt;}
.ws104{word-spacing:-14.062933pt;}
.wsfe{word-spacing:-14.008000pt;}
.wse{word-spacing:-13.733333pt;}
.ws9b{word-spacing:-13.184000pt;}
.ws81{word-spacing:-12.288000pt;}
.ws60{word-spacing:-12.032000pt;}
.wsab{word-spacing:-12.000000pt;}
.ws80{word-spacing:-11.904000pt;}
.ws2a{word-spacing:-11.434667pt;}
.ws1e{word-spacing:-11.178667pt;}
.ws6d{word-spacing:-10.837333pt;}
.wsf{word-spacing:-10.666667pt;}
.wsde{word-spacing:-10.224000pt;}
.wsec{word-spacing:-8.967317pt;}
.wsd2{word-spacing:-8.647056pt;}
.wsd{word-spacing:-8.006533pt;}
.ws43{word-spacing:-7.686272pt;}
.wscf{word-spacing:-6.996000pt;}
.ws1b{word-spacing:-6.821566pt;}
.ws96{word-spacing:-6.811733pt;}
.ws1d{word-spacing:-6.218667pt;}
.ws34{word-spacing:-5.932800pt;}
.ws1c{word-spacing:-5.298304pt;}
.ws3a{word-spacing:-5.218667pt;}
.wsf0{word-spacing:-4.834133pt;}
.ws2{word-spacing:-4.664000pt;}
.ws5e{word-spacing:-4.352000pt;}
.ws3e{word-spacing:-4.065067pt;}
.wsd9{word-spacing:-3.350933pt;}
.ws35{word-spacing:-3.296000pt;}
.wsed{word-spacing:-3.021333pt;}
.ws9f{word-spacing:-2.933333pt;}
.wsdf{word-spacing:-2.746667pt;}
.wsda{word-spacing:-2.691733pt;}
.ws8e{word-spacing:-2.581867pt;}
.ws89{word-spacing:-2.526933pt;}
.ws5{word-spacing:-2.464000pt;}
.ws107{word-spacing:-2.417067pt;}
.ws30{word-spacing:-2.307200pt;}
.ws79{word-spacing:-2.087467pt;}
.ws21{word-spacing:-2.032533pt;}
.ws31{word-spacing:-1.867733pt;}
.ws47{word-spacing:-1.812800pt;}
.ws78{word-spacing:-1.757867pt;}
.ws39{word-spacing:-1.749333pt;}
.ws77{word-spacing:-1.702933pt;}
.ws4b{word-spacing:-1.648000pt;}
.ws8{word-spacing:-1.584000pt;}
.ws76{word-spacing:-1.538133pt;}
.ws28{word-spacing:-1.428267pt;}
.ws3c{word-spacing:-1.373333pt;}
.wsd3{word-spacing:-1.263467pt;}
.ws16{word-spacing:-1.208533pt;}
.wsdb{word-spacing:-1.153600pt;}
.ws8f{word-spacing:-1.109333pt;}
.ws19{word-spacing:-1.098667pt;}
.wsa3{word-spacing:-0.988800pt;}
.ws95{word-spacing:-0.933867pt;}
.ws4a{word-spacing:-0.824000pt;}
.ws68{word-spacing:-0.769067pt;}
.wsef{word-spacing:-0.714133pt;}
.ws94{word-spacing:-0.659200pt;}
.ws10{word-spacing:-0.549333pt;}
.ws9{word-spacing:-0.533333pt;}
.wsc4{word-spacing:-0.528000pt;}
.ws37{word-spacing:-0.512000pt;}
.wscd{word-spacing:-0.480000pt;}
.ws93{word-spacing:-0.329600pt;}
.ws14{word-spacing:-0.274667pt;}
.ws29{word-spacing:-0.256000pt;}
.wsbe{word-spacing:-0.240000pt;}
.ws6{word-spacing:-0.224000pt;}
.ws71{word-spacing:-0.219733pt;}
.ws0{word-spacing:-0.205333pt;}
.ws7{word-spacing:-0.176000pt;}
.wsf3{word-spacing:-0.164800pt;}
.ws33{word-spacing:-0.109867pt;}
.ws1{word-spacing:-0.054933pt;}
.ws3{word-spacing:0.000000pt;}
.ws106{word-spacing:0.164800pt;}
.ws56{word-spacing:0.219733pt;}
.ws1f{word-spacing:0.373333pt;}
.wsd5{word-spacing:0.439467pt;}
.wsaa{word-spacing:0.512000pt;}
.ws46{word-spacing:0.549333pt;}
.ws53{word-spacing:0.597333pt;}
.ws49{word-spacing:0.604267pt;}
.ws51{word-spacing:0.659200pt;}
.wsf1{word-spacing:0.824000pt;}
.ws4{word-spacing:0.960000pt;}
.ws2c{word-spacing:1.043733pt;}
.ws11{word-spacing:1.098667pt;}
.ws4e{word-spacing:1.153600pt;}
.wsce{word-spacing:1.248000pt;}
.ws32{word-spacing:1.263467pt;}
.ws2d{word-spacing:1.373333pt;}
.ws36{word-spacing:1.428267pt;}
.wsbf{word-spacing:1.440000pt;}
.ws2b{word-spacing:1.538133pt;}
.ws64{word-spacing:1.648000pt;}
.wsb0{word-spacing:1.680000pt;}
.wsa2{word-spacing:1.702933pt;}
.ws13{word-spacing:1.757867pt;}
.ws6f{word-spacing:1.812800pt;}
.ws59{word-spacing:1.867733pt;}
.ws48{word-spacing:1.922667pt;}
.wse2{word-spacing:1.977600pt;}
.ws23{word-spacing:2.032533pt;}
.ws3b{word-spacing:2.087467pt;}
.ws5f{word-spacing:2.090667pt;}
.ws70{word-spacing:2.142400pt;}
.wsf4{word-spacing:2.197333pt;}
.wsf6{word-spacing:2.252267pt;}
.ws7b{word-spacing:2.307200pt;}
.ws58{word-spacing:2.362133pt;}
.ws17{word-spacing:2.417067pt;}
.ws2f{word-spacing:2.472000pt;}
.ws42{word-spacing:2.526933pt;}
.ws54{word-spacing:2.688000pt;}
.ws9e{word-spacing:2.801600pt;}
.ws100{word-spacing:2.856533pt;}
.wse7{word-spacing:2.911467pt;}
.wse4{word-spacing:3.021333pt;}
.ws27{word-spacing:3.076267pt;}
.wse9{word-spacing:3.186133pt;}
.ws5c{word-spacing:3.241067pt;}
.ws99{word-spacing:3.285333pt;}
.ws7c{word-spacing:3.296000pt;}
.ws20{word-spacing:3.405867pt;}
.wsb7{word-spacing:3.504000pt;}
.ws3f{word-spacing:3.515733pt;}
.wsc6{word-spacing:3.600000pt;}
.ws83{word-spacing:3.625600pt;}
.wsf7{word-spacing:3.790400pt;}
.ws6e{word-spacing:3.845333pt;}
.wse3{word-spacing:3.900267pt;}
.wsd0{word-spacing:3.955200pt;}
.ws4d{word-spacing:4.120000pt;}
.ws7d{word-spacing:4.174933pt;}
.ws6b{word-spacing:4.284800pt;}
.wsd6{word-spacing:4.394667pt;}
.ws8a{word-spacing:4.449600pt;}
.wsb6{word-spacing:4.608000pt;}
.ws63{word-spacing:4.614400pt;}
.ws38{word-spacing:4.650667pt;}
.wsc8{word-spacing:4.704000pt;}
.ws24{word-spacing:4.724267pt;}
.wsa9{word-spacing:4.834133pt;}
.ws5a{word-spacing:4.889067pt;}
.wsfa{word-spacing:4.998933pt;}
.wsee{word-spacing:5.053867pt;}
.ws90{word-spacing:5.108800pt;}
.wsd4{word-spacing:5.163733pt;}
.ws92{word-spacing:5.218667pt;}
.ws5b{word-spacing:5.328533pt;}
.ws4f{word-spacing:5.603200pt;}
.ws9d{word-spacing:5.658133pt;}
.ws3d{word-spacing:5.768000pt;}
.wsc3{word-spacing:5.808000pt;}
.wsb9{word-spacing:5.856000pt;}
.wsf8{word-spacing:5.877867pt;}
.ws26{word-spacing:5.932800pt;}
.wse5{word-spacing:5.987733pt;}
.wsb3{word-spacing:6.096000pt;}
.wsa6{word-spacing:6.097600pt;}
.wscb{word-spacing:6.144000pt;}
.wsb{word-spacing:6.218667pt;}
.ws67{word-spacing:6.262400pt;}
.wsa0{word-spacing:6.372267pt;}
.ws50{word-spacing:6.701867pt;}
.ws61{word-spacing:6.811733pt;}
.ws82{word-spacing:6.866667pt;}
.wse8{word-spacing:6.921600pt;}
.ws65{word-spacing:7.031467pt;}
.ws15{word-spacing:7.086400pt;}
.ws4c{word-spacing:7.141333pt;}
.wsb1{word-spacing:7.248000pt;}
.wsea{word-spacing:7.306133pt;}
.ws7e{word-spacing:7.361067pt;}
.wsf9{word-spacing:7.416000pt;}
.wsdd{word-spacing:7.466667pt;}
.ws98{word-spacing:7.470933pt;}
.ws8d{word-spacing:7.525867pt;}
.ws44{word-spacing:7.635733pt;}
.ws87{word-spacing:7.800533pt;}
.ws6a{word-spacing:7.910400pt;}
.ws8c{word-spacing:7.965333pt;}
.wsc5{word-spacing:7.968000pt;}
.wse1{word-spacing:8.130133pt;}
.wsa{word-spacing:8.234667pt;}
.ws1a{word-spacing:8.320000pt;}
.wsc0{word-spacing:8.352000pt;}
.ws5d{word-spacing:8.734400pt;}
.ws85{word-spacing:8.789333pt;}
.ws91{word-spacing:8.899200pt;}
.ws7a{word-spacing:9.009067pt;}
.wse6{word-spacing:9.064000pt;}
.ws7f{word-spacing:9.130667pt;}
.ws69{word-spacing:9.173867pt;}
.ws45{word-spacing:9.283733pt;}
.ws12{word-spacing:9.393600pt;}
.ws8b{word-spacing:9.448533pt;}
.ws9a{word-spacing:9.601621pt;}
.wsd1{word-spacing:9.613333pt;}
.ws9c{word-spacing:9.778133pt;}
.wsca{word-spacing:9.840000pt;}
.ws22{word-spacing:9.888000pt;}
.wsf5{word-spacing:10.052800pt;}
.wsf2{word-spacing:10.272533pt;}
.wsd8{word-spacing:10.327467pt;}
.ws57{word-spacing:10.547200pt;}
.wsc1{word-spacing:10.560000pt;}
.wsd7{word-spacing:10.657067pt;}
.ws62{word-spacing:10.712000pt;}
.wsa7{word-spacing:11.151467pt;}
.ws40{word-spacing:11.206400pt;}
.ws52{word-spacing:11.221333pt;}
.wse0{word-spacing:11.755733pt;}
.ws74{word-spacing:11.920533pt;}
.ws88{word-spacing:12.085333pt;}
.ws73{word-spacing:12.195200pt;}
.ws66{word-spacing:12.250133pt;}
.wsdc{word-spacing:12.414933pt;}
.wsa1{word-spacing:12.469867pt;}
.wsad{word-spacing:12.744533pt;}
.wsbd{word-spacing:12.864000pt;}
.ws25{word-spacing:13.129067pt;}
.ws84{word-spacing:13.238933pt;}
.wsbc{word-spacing:13.632000pt;}
.ws97{word-spacing:13.733333pt;}
.wsb4{word-spacing:13.776000pt;}
.ws41{word-spacing:14.008000pt;}
.wsc2{word-spacing:14.640000pt;}
.wsaf{word-spacing:15.216000pt;}
.ws86{word-spacing:15.271467pt;}
.ws109{word-spacing:15.381333pt;}
.ws55{word-spacing:15.436267pt;}
.wsb5{word-spacing:15.456000pt;}
.wsc9{word-spacing:15.600000pt;}
.wsa4{word-spacing:15.930667pt;}
.wsac{word-spacing:17.029333pt;}
.wsb2{word-spacing:17.232000pt;}
.wsa8{word-spacing:17.304000pt;}
.wscc{word-spacing:17.520000pt;}
.wsb8{word-spacing:17.904000pt;}
.ws2e{word-spacing:18.018133pt;}
.wsae{word-spacing:18.960000pt;}
.wsba{word-spacing:19.344000pt;}
.ws18{word-spacing:20.215467pt;}
.wsbb{word-spacing:20.496000pt;}
.ws75{word-spacing:21.162667pt;}
.wsc7{word-spacing:23.328000pt;}
.ws72{word-spacing:24.060800pt;}
.ws108{word-spacing:29.059733pt;}
.wsa5{word-spacing:32.136000pt;}
.wsff{word-spacing:41.474667pt;}
.ws102{word-spacing:49.055467pt;}
.ws101{word-spacing:59.382933pt;}
.ws6c{word-spacing:77.696000pt;}
.wsc{word-spacing:403.504000pt;}
._29{margin-left:-19.185600pt;}
._18{margin-left:-16.205333pt;}
._25{margin-left:-14.668800pt;}
._17{margin-left:-13.165333pt;}
._27{margin-left:-11.740800pt;}
._24{margin-left:-10.728480pt;}
._23{margin-left:-9.349653pt;}
._28{margin-left:-7.920000pt;}
._19{margin-left:-6.795253pt;}
._7{margin-left:-5.701333pt;}
._f{margin-left:-4.066667pt;}
._6{margin-left:-2.768000pt;}
._0{margin-left:-1.377600pt;}
._1{width:1.108800pt;}
._2{width:2.225067pt;}
._9{width:3.874133pt;}
._4{width:5.157333pt;}
._5{width:6.330667pt;}
._b{width:7.307733pt;}
._3{width:8.448000pt;}
._a{width:9.373333pt;}
._10{width:10.894987pt;}
._d{width:12.028693pt;}
._e{width:13.395307pt;}
._c{width:15.463733pt;}
._12{width:16.861280pt;}
._8{width:17.906027pt;}
._11{width:18.836640pt;}
._16{width:20.122080pt;}
._1c{width:21.178720pt;}
._1e{width:22.274187pt;}
._1b{width:23.493867pt;}
._14{width:24.648587pt;}
._21{width:25.566720pt;}
._20{width:26.873600pt;}
._26{width:28.397760pt;}
._2e{width:29.682187pt;}
._22{width:31.410880pt;}
._1f{width:36.669333pt;}
._2c{width:38.032000pt;}
._2a{width:41.449973pt;}
._1d{width:45.918400pt;}
._1a{width:49.537600pt;}
._2d{width:50.805333pt;}
._13{width:57.134933pt;}
._2b{width:100.571947pt;}
._2f{width:123.343093pt;}
._15{width:151.621867pt;}
.fs9{font-size:18.656000pt;}
.fsc{font-size:24.874667pt;}
.fse{font-size:27.984000pt;}
.fsa{font-size:32.000000pt;}
.fsd{font-size:32.026133pt;}
.fs0{font-size:37.333333pt;}
.fsb{font-size:42.666667pt;}
.fs4{font-size:43.530667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs8{font-size:54.933333pt;}
.fs2{font-size:55.968000pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:74.666667pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:41.318933pt;}
.y1{bottom:50.652267pt;}
.y20{bottom:68.000000pt;}
.y12d{bottom:68.000133pt;}
.y7d{bottom:71.552000pt;}
.yac{bottom:71.552133pt;}
.y1f{bottom:80.000000pt;}
.yee{bottom:80.345067pt;}
.y164{bottom:82.343200pt;}
.y46{bottom:83.552000pt;}
.y12c{bottom:83.552133pt;}
.yab{bottom:83.552267pt;}
.yc5{bottom:91.623200pt;}
.y1e{bottom:92.000000pt;}
.y12b{bottom:92.000267pt;}
.yaa{bottom:92.000400pt;}
.yed{bottom:94.745067pt;}
.y8b{bottom:95.552000pt;}
.y127{bottom:98.823200pt;}
.y163{bottom:99.795333pt;}
.y1d{bottom:104.000000pt;}
.ya9{bottom:104.000400pt;}
.y112{bottom:104.985067pt;}
.yc4{bottom:106.023200pt;}
.y8a{bottom:107.552000pt;}
.y12a{bottom:107.552267pt;}
.yec{bottom:109.145067pt;}
.y13c{bottom:115.143200pt;}
.y126{bottom:115.303200pt;}
.y45{bottom:116.000000pt;}
.y129{bottom:116.000400pt;}
.y162{bottom:116.275333pt;}
.y111{bottom:119.385067pt;}
.y1c{bottom:119.552000pt;}
.ya8{bottom:119.552400pt;}
.y113{bottom:119.996000pt;}
.yc3{bottom:120.423200pt;}
.yeb{bottom:123.545067pt;}
.y1b{bottom:128.000000pt;}
.ya7{bottom:128.000533pt;}
.y44{bottom:131.552000pt;}
.y128{bottom:131.552400pt;}
.y13b{bottom:131.623200pt;}
.y125{bottom:131.783200pt;}
.y124{bottom:132.743200pt;}
.y161{bottom:132.755333pt;}
.y110{bottom:133.785067pt;}
.yc2{bottom:134.823200pt;}
.yea{bottom:137.945067pt;}
.y1a{bottom:140.000000pt;}
.y43{bottom:143.552000pt;}
.ya6{bottom:143.552533pt;}
.y13a{bottom:148.103200pt;}
.yad{bottom:148.263200pt;}
.y123{bottom:149.223200pt;}
.y160{bottom:149.235333pt;}
.y19{bottom:152.000000pt;}
.ya5{bottom:152.000667pt;}
.ye9{bottom:152.345067pt;}
.y93{bottom:154.664000pt;}
.y68{bottom:155.552000pt;}
.y10f{bottom:162.585067pt;}
.yc1{bottom:163.623200pt;}
.y42{bottom:164.000000pt;}
.y139{bottom:164.583200pt;}
.y96{bottom:164.743200pt;}
.y122{bottom:165.703200pt;}
.y15f{bottom:165.715333pt;}
.y18{bottom:166.664000pt;}
.ye8{bottom:166.745067pt;}
.y67{bottom:167.552000pt;}
.y41{bottom:176.000000pt;}
.y10e{bottom:176.985067pt;}
.yc0{bottom:178.023200pt;}
.y66{bottom:179.552000pt;}
.y92{bottom:180.103200pt;}
.y138{bottom:181.063200pt;}
.ye7{bottom:181.145067pt;}
.y95{bottom:181.223200pt;}
.ya4{bottom:181.543200pt;}
.y89{bottom:181.703200pt;}
.y121{bottom:182.183200pt;}
.y15e{bottom:182.195333pt;}
.y40{bottom:188.000000pt;}
.y10d{bottom:191.385067pt;}
.y3f{bottom:191.552000pt;}
.ybf{bottom:192.423200pt;}
.ye6{bottom:195.545067pt;}
.y91{bottom:196.583200pt;}
.y137{bottom:197.543200pt;}
.y94{bottom:197.703200pt;}
.ya3{bottom:198.023200pt;}
.y88{bottom:198.183200pt;}
.y120{bottom:198.663200pt;}
.y15d{bottom:198.675333pt;}
.y3e{bottom:200.000000pt;}
.y3d{bottom:203.552000pt;}
.y10c{bottom:205.785067pt;}
.ybe{bottom:206.823200pt;}
.ye5{bottom:209.945067pt;}
.y3c{bottom:212.000000pt;}
.y90{bottom:213.063200pt;}
.y136{bottom:214.023200pt;}
.y8f{bottom:214.183200pt;}
.y87{bottom:214.663200pt;}
.y11f{bottom:215.143200pt;}
.y15c{bottom:215.155333pt;}
.y98{bottom:215.552000pt;}
.ybd{bottom:221.223200pt;}
.y97{bottom:224.000000pt;}
.y17{bottom:225.392533pt;}
.y3b{bottom:227.552000pt;}
.y65{bottom:229.543200pt;}
.y135{bottom:230.503200pt;}
.y8e{bottom:230.663200pt;}
.ya2{bottom:230.983200pt;}
.y86{bottom:231.143200pt;}
.y11e{bottom:231.623200pt;}
.y15b{bottom:231.635333pt;}
.y10b{bottom:234.585067pt;}
.ybc{bottom:235.623200pt;}
.y7c{bottom:236.000000pt;}
.ye4{bottom:238.745067pt;}
.y99{bottom:239.552000pt;}
.y16{bottom:241.872533pt;}
.y64{bottom:246.023200pt;}
.y134{bottom:246.983200pt;}
.y8d{bottom:247.143200pt;}
.y85{bottom:247.623200pt;}
.y7b{bottom:248.000000pt;}
.y11d{bottom:248.103200pt;}
.y15a{bottom:248.115333pt;}
.y10a{bottom:248.985067pt;}
.ybb{bottom:250.023200pt;}
.ye3{bottom:253.145067pt;}
.y63{bottom:262.503200pt;}
.y109{bottom:263.385067pt;}
.y3a{bottom:263.438800pt;}
.y133{bottom:263.463200pt;}
.y8c{bottom:263.623200pt;}
.ya1{bottom:263.943200pt;}
.y84{bottom:264.103200pt;}
.y11c{bottom:264.583200pt;}
.y159{bottom:264.595333pt;}
.ye2{bottom:267.545067pt;}
.y15{bottom:274.352533pt;}
.y108{bottom:277.785067pt;}
.yba{bottom:278.823200pt;}
.y62{bottom:278.983200pt;}
.y39{bottom:279.918800pt;}
.y132{bottom:279.943200pt;}
.y7a{bottom:280.103200pt;}
.y83{bottom:280.583200pt;}
.y11b{bottom:281.063200pt;}
.y158{bottom:281.075333pt;}
.ye1{bottom:281.945067pt;}
.y14{bottom:290.352533pt;}
.y107{bottom:292.185067pt;}
.yb9{bottom:293.223200pt;}
.y61{bottom:295.463200pt;}
.ye0{bottom:296.345067pt;}
.y38{bottom:296.398800pt;}
.y131{bottom:296.423200pt;}
.y79{bottom:296.583200pt;}
.y82{bottom:297.063200pt;}
.y11a{bottom:297.543200pt;}
.y157{bottom:297.555333pt;}
.y13{bottom:306.352533pt;}
.y106{bottom:306.585067pt;}
.yb8{bottom:307.623200pt;}
.ydf{bottom:310.745067pt;}
.y60{bottom:311.943200pt;}
.y37{bottom:312.878800pt;}
.y130{bottom:312.903200pt;}
.y78{bottom:313.063200pt;}
.y81{bottom:313.543200pt;}
.y119{bottom:314.023200pt;}
.y156{bottom:314.035333pt;}
.y105{bottom:320.985067pt;}
.yb7{bottom:322.023200pt;}
.y12{bottom:322.352533pt;}
.yde{bottom:325.145067pt;}
.y5f{bottom:328.423200pt;}
.y36{bottom:329.358800pt;}
.y12f{bottom:329.383200pt;}
.y77{bottom:329.543200pt;}
.y80{bottom:330.023200pt;}
.y118{bottom:330.503200pt;}
.y155{bottom:330.515333pt;}
.y104{bottom:335.385067pt;}
.yb6{bottom:336.423200pt;}
.y11{bottom:338.352533pt;}
.ydd{bottom:339.545067pt;}
.y5e{bottom:344.903200pt;}
.y35{bottom:345.838800pt;}
.y76{bottom:346.023200pt;}
.y7f{bottom:346.503200pt;}
.y117{bottom:346.983200pt;}
.y154{bottom:346.995333pt;}
.y103{bottom:349.785067pt;}
.yb5{bottom:350.823200pt;}
.y10{bottom:354.352533pt;}
.y5d{bottom:361.383200pt;}
.y34{bottom:362.318800pt;}
.y12e{bottom:362.343200pt;}
.y75{bottom:362.503200pt;}
.y116{bottom:363.463200pt;}
.y153{bottom:363.475333pt;}
.y102{bottom:364.185067pt;}
.yb4{bottom:365.223200pt;}
.ydc{bottom:368.345067pt;}
.yf{bottom:377.019200pt;}
.y5c{bottom:377.863200pt;}
.y101{bottom:378.585067pt;}
.y33{bottom:378.798800pt;}
.y74{bottom:378.983200pt;}
.y7e{bottom:379.463200pt;}
.yb3{bottom:379.623200pt;}
.y152{bottom:379.955333pt;}
.ydb{bottom:382.745067pt;}
.y100{bottom:392.985067pt;}
.yb2{bottom:394.023200pt;}
.y5b{bottom:394.343200pt;}
.y32{bottom:395.278800pt;}
.y73{bottom:395.463200pt;}
.y115{bottom:396.423200pt;}
.y151{bottom:396.435333pt;}
.yda{bottom:397.145067pt;}
.yff{bottom:407.385067pt;}
.y5a{bottom:410.823200pt;}
.yd9{bottom:411.545067pt;}
.y31{bottom:411.758800pt;}
.y72{bottom:411.943200pt;}
.y114{bottom:412.903200pt;}
.y150{bottom:412.915333pt;}
.yfe{bottom:421.785067pt;}
.yb1{bottom:422.823200pt;}
.yd8{bottom:425.945067pt;}
.y59{bottom:427.303200pt;}
.y30{bottom:428.238800pt;}
.y71{bottom:428.423200pt;}
.ye{bottom:429.285867pt;}
.y14f{bottom:429.395333pt;}
.yb0{bottom:437.223200pt;}
.y58{bottom:443.783200pt;}
.y2f{bottom:444.718800pt;}
.y70{bottom:444.903200pt;}
.y14e{bottom:445.875333pt;}
.yd{bottom:448.485867pt;}
.yfd{bottom:452.665067pt;}
.yd7{bottom:454.745067pt;}
.y57{bottom:460.263200pt;}
.y2e{bottom:461.198800pt;}
.y6f{bottom:461.383200pt;}
.y14d{bottom:462.355333pt;}
.yaf{bottom:466.023200pt;}
.yfc{bottom:467.065067pt;}
.yd6{bottom:469.145067pt;}
.y56{bottom:476.743200pt;}
.y2d{bottom:477.678800pt;}
.y6e{bottom:477.863200pt;}
.y14c{bottom:478.835333pt;}
.yc{bottom:480.219200pt;}
.yae{bottom:480.423200pt;}
.yfb{bottom:481.465067pt;}
.yd5{bottom:483.545067pt;}
.y55{bottom:493.223200pt;}
.y2c{bottom:494.158800pt;}
.y6d{bottom:494.343200pt;}
.y14b{bottom:495.315333pt;}
.yfa{bottom:495.865067pt;}
.yd4{bottom:497.945067pt;}
.yb{bottom:502.932000pt;}
.ya0{bottom:509.703200pt;}
.yf9{bottom:510.265067pt;}
.y2b{bottom:510.638800pt;}
.y6c{bottom:510.823200pt;}
.y14a{bottom:511.795333pt;}
.yd3{bottom:512.345067pt;}
.yf8{bottom:524.665067pt;}
.y54{bottom:526.183200pt;}
.ya{bottom:526.665333pt;}
.yd2{bottom:526.745067pt;}
.y6b{bottom:527.303200pt;}
.y149{bottom:528.275333pt;}
.yf7{bottom:539.065067pt;}
.y9f{bottom:542.663200pt;}
.y2a{bottom:543.598800pt;}
.y6a{bottom:543.783200pt;}
.y148{bottom:544.755333pt;}
.yf6{bottom:553.465067pt;}
.yd1{bottom:555.545067pt;}
.y9e{bottom:559.143200pt;}
.y69{bottom:560.263200pt;}
.y147{bottom:561.235333pt;}
.y9{bottom:565.065333pt;}
.yf5{bottom:567.865067pt;}
.yd0{bottom:569.945067pt;}
.y9d{bottom:575.623200pt;}
.y53{bottom:576.743200pt;}
.y146{bottom:577.715333pt;}
.yf4{bottom:582.265067pt;}
.ycf{bottom:584.345067pt;}
.y8{bottom:589.065333pt;}
.y29{bottom:592.078800pt;}
.y9c{bottom:592.103200pt;}
.y52{bottom:593.223200pt;}
.y145{bottom:594.195333pt;}
.yf3{bottom:596.665067pt;}
.yce{bottom:598.745067pt;}
.y28{bottom:608.558800pt;}
.y9b{bottom:608.583200pt;}
.y51{bottom:609.703200pt;}
.y144{bottom:610.675333pt;}
.yf2{bottom:611.065067pt;}
.y7{bottom:613.065333pt;}
.ycd{bottom:613.145067pt;}
.yf1{bottom:625.465067pt;}
.y50{bottom:626.183200pt;}
.y143{bottom:627.155333pt;}
.ycc{bottom:627.545067pt;}
.yf0{bottom:639.865067pt;}
.y27{bottom:641.518800pt;}
.y9a{bottom:641.543200pt;}
.ycb{bottom:641.945067pt;}
.y4f{bottom:642.663200pt;}
.y142{bottom:643.635333pt;}
.yca{bottom:656.345067pt;}
.y26{bottom:657.998800pt;}
.y4e{bottom:659.143200pt;}
.y141{bottom:660.115333pt;}
.y6{bottom:661.065333pt;}
.yef{bottom:670.745067pt;}
.y25{bottom:674.478800pt;}
.y4d{bottom:675.623200pt;}
.y140{bottom:676.595333pt;}
.y5{bottom:685.065333pt;}
.yc9{bottom:685.145067pt;}
.y24{bottom:690.958800pt;}
.y4c{bottom:692.103200pt;}
.y13f{bottom:693.075333pt;}
.yc8{bottom:699.545067pt;}
.y23{bottom:707.438800pt;}
.y4b{bottom:708.583200pt;}
.y4{bottom:709.065333pt;}
.y13e{bottom:709.555467pt;}
.yc7{bottom:713.945067pt;}
.y4a{bottom:725.063200pt;}
.yc6{bottom:728.345067pt;}
.y3{bottom:733.065333pt;}
.y22{bottom:740.398800pt;}
.y49{bottom:741.543200pt;}
.y13d{bottom:742.035467pt;}
.y48{bottom:794.196000pt;}
.y47{bottom:804.862667pt;}
.y21{bottom:805.800133pt;}
.h14{height:21.826062pt;}
.hf{height:23.229500pt;}
.h13{height:23.333667pt;}
.h20{height:24.554320pt;}
.hd{height:26.781500pt;}
.h1b{height:26.885667pt;}
.h15{height:29.625000pt;}
.h2{height:32.757812pt;}
.h18{height:32.848958pt;}
.h1f{height:32.859375pt;}
.h8{height:32.976562pt;}
.h1c{height:36.510417pt;}
.ha{height:36.640625pt;}
.he{height:37.437500pt;}
.h16{height:37.541667pt;}
.h1a{height:37.605729pt;}
.hc{height:37.739844pt;}
.hb{height:37.873958pt;}
.h1d{height:38.142187pt;}
.h11{height:40.161458pt;}
.h7{height:40.304688pt;}
.h9{height:40.447917pt;}
.h10{height:42.117188pt;}
.h1e{height:42.234375pt;}
.h17{height:46.927083pt;}
.h12{height:48.200781pt;}
.h19{height:48.334896pt;}
.h6{height:51.296875pt;}
.h5{height:54.196188pt;}
.h3{height:65.953125pt;}
.h4{height:69.680812pt;}
.h0{height:863.065333pt;}
.h1{height:863.333333pt;}
.w1{width:548.000000pt;}
.w0{width:548.032000pt;}
.x0{left:0.000000pt;}
.x5{left:48.944800pt;}
.x6{left:50.645733pt;}
.x8{left:61.417333pt;}
.x2{left:68.144933pt;}
.x1{left:69.543333pt;}
.xd{left:72.300000pt;}
.xb{left:74.185733pt;}
.x7{left:75.611467pt;}
.x4{left:80.617333pt;}
.xa{left:89.260533pt;}
.x47{left:90.277600pt;}
.xc{left:91.500000pt;}
.x3{left:94.811467pt;}
.x44{left:96.722267pt;}
.x48{left:102.575200pt;}
.x28{left:106.340400pt;}
.xe{left:116.615867pt;}
.x29{left:123.889333pt;}
.x56{left:128.815333pt;}
.x45{left:131.416667pt;}
.xf{left:132.554667pt;}
.x2a{left:136.191600pt;}
.x46{left:141.690133pt;}
.x10{left:142.621333pt;}
.x49{left:145.565467pt;}
.x4a{left:157.863067pt;}
.x57{left:161.600933pt;}
.x4b{left:169.863067pt;}
.x58{left:172.757733pt;}
.x11{left:182.124533pt;}
.x2b{left:187.289200pt;}
.x12{left:192.191200pt;}
.x34{left:197.476533pt;}
.x2c{left:199.591467pt;}
.x5d{left:201.947467pt;}
.x13{left:204.505200pt;}
.x14{left:214.571867pt;}
.x4c{left:215.482933pt;}
.x2d{left:219.420400pt;}
.x15{left:221.095200pt;}
.x4d{left:227.780533pt;}
.x16{left:231.161867pt;}
.x35{left:235.719333pt;}
.x4e{left:241.772800pt;}
.x17{left:243.475867pt;}
.x18{left:253.542533pt;}
.x36{left:260.404933pt;}
.x37{left:265.471600pt;}
.x38{left:273.032267pt;}
.x19{left:280.725200pt;}
.x39{left:282.596667pt;}
.x1a{left:290.791867pt;}
.x2e{left:297.311333pt;}
.x1b{left:303.106000pt;}
.x2f{left:309.613600pt;}
.x3a{left:311.270000pt;}
.x1c{left:313.172667pt;}
.x4f{left:315.036000pt;}
.x3b{left:318.830667pt;}
.x50{left:320.362133pt;}
.x3c{left:328.395067pt;}
.x51{left:332.659867pt;}
.x3d{left:335.955733pt;}
.x59{left:337.948667pt;}
.x5a{left:349.593200pt;}
.x30{left:359.162133pt;}
.x1d{left:367.518800pt;}
.x31{left:371.464533pt;}
.x5b{left:375.180267pt;}
.x1e{left:377.585467pt;}
.x52{left:379.621467pt;}
.x3e{left:385.722133pt;}
.x5c{left:386.807200pt;}
.x1f{left:389.899600pt;}
.x3f{left:395.286400pt;}
.x20{left:399.966267pt;}
.x32{left:401.975467pt;}
.x25{left:404.659067pt;}
.x33{left:414.277733pt;}
.x26{left:419.253467pt;}
.x53{left:429.596133pt;}
.x40{left:433.247067pt;}
.x21{left:439.838800pt;}
.x41{left:440.807733pt;}
.x54{left:441.893733pt;}
.x22{left:449.905467pt;}
.x55{left:453.219867pt;}
.x42{left:467.259200pt;}
.x43{left:474.819867pt;}
.x27{left:479.886533pt;}
.x9{left:481.086533pt;}
.x23{left:483.229200pt;}
.x24{left:493.295867pt;}
}




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