
    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_aedb5451c5caa9779d053aca.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.193359;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_dbfc65ea4f1be7344ea8fe2d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.111816;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_0d597928a3662116a3e7d98a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926270;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_6ad06ec86b237ee923016ef1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.979980;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_ecc8b13e6714c27e5b712a09.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.108887;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_86f4b0fbc9e7c9f37a7b6352.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.193359;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_2542fc95eeaedc813fb7e4a9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.193359;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_472ac8780e02ae21bcff3bc9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.206055;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_8f40bafe666a4ef10288f3dd.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.193359;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_d8c50c71d7cb6d7e14e5588c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.984375;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_c3b814dcacba66e2bca3314e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000977;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_0dcec1212724ef2f3ec7097f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.775879;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_7ccbb0010cf429fcfc4c1b80.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.054688;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_9c5607711b24dae84c097c9b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.712402;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-19.779000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.800000px;}
.v4{vertical-align:21.006000px;}
.v8{vertical-align:29.325000px;}
.v3{vertical-align:31.050000px;}
.v5{vertical-align:34.240200px;}
.v6{vertical-align:38.819400px;}
.v9{vertical-align:50.337000px;}
.v7{vertical-align:62.100000px;}
.lsa{letter-spacing:-0.900000px;}
.lsd{letter-spacing:-0.780000px;}
.ls24{letter-spacing:-0.720000px;}
.ls20{letter-spacing:-0.660000px;}
.ls14{letter-spacing:-0.612000px;}
.ls9{letter-spacing:-0.600000px;}
.lsf{letter-spacing:-0.594000px;}
.ls22{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.480000px;}
.ls1{letter-spacing:-0.420000px;}
.ls2{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.336000px;}
.ls7{letter-spacing:-0.300000px;}
.ls5{letter-spacing:-0.240000px;}
.ls8{letter-spacing:-0.180000px;}
.lsc{letter-spacing:-0.120000px;}
.ls6{letter-spacing:-0.060000px;}
.ls1c{letter-spacing:-0.036000px;}
.ls0{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.000600px;}
.ls16{letter-spacing:0.001200px;}
.ls18{letter-spacing:0.006600px;}
.ls17{letter-spacing:0.007800px;}
.ls11{letter-spacing:0.010200px;}
.ls13{letter-spacing:0.015000px;}
.lsb{letter-spacing:0.015600px;}
.lse{letter-spacing:0.026400px;}
.ls1b{letter-spacing:0.061800px;}
.ls15{letter-spacing:0.121800px;}
.ls10{letter-spacing:0.177000px;}
.ls1a{letter-spacing:0.252600px;}
.ls1e{letter-spacing:0.480000px;}
.ls1f{letter-spacing:0.720000px;}
.ls1d{letter-spacing:0.780000px;}
.ls21{letter-spacing:6.780000px;}
.ls23{letter-spacing:7.512000px;}
.ls12{letter-spacing:165.402000px;}
.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;}
}
.ws63{word-spacing:-60.000000px;}
.wsb8{word-spacing:-16.680000px;}
.ws74{word-spacing:-15.000000px;}
.wsa0{word-spacing:-14.940000px;}
.ws96{word-spacing:-12.750000px;}
.ws0{word-spacing:-10.008000px;}
.ws62{word-spacing:-9.000000px;}
.ws9f{word-spacing:-8.964000px;}
.ws86{word-spacing:-8.100000px;}
.ws64{word-spacing:-2.100000px;}
.ws4{word-spacing:-1.500000px;}
.wsd1{word-spacing:-1.440000px;}
.wsc9{word-spacing:-1.380000px;}
.ws10{word-spacing:-1.344000px;}
.wsb{word-spacing:-1.320000px;}
.ws5a{word-spacing:-1.260000px;}
.ws50{word-spacing:-1.200000px;}
.ws17{word-spacing:-1.140000px;}
.ws9b{word-spacing:-1.080000px;}
.wsab{word-spacing:-1.020000px;}
.ws5d{word-spacing:-0.960000px;}
.ws49{word-spacing:-0.900000px;}
.wsa1{word-spacing:-0.840000px;}
.ws7a{word-spacing:-0.780000px;}
.ws28{word-spacing:-0.720000px;}
.ws69{word-spacing:-0.600000px;}
.ws98{word-spacing:-0.540000px;}
.ws12{word-spacing:-0.480000px;}
.ws45{word-spacing:-0.420000px;}
.ws11{word-spacing:-0.384000px;}
.wsb2{word-spacing:-0.300000px;}
.ws59{word-spacing:-0.240000px;}
.ws6d{word-spacing:-0.180000px;}
.ws35{word-spacing:-0.120000px;}
.wsa2{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.ws78{word-spacing:0.060000px;}
.ws2a{word-spacing:0.120000px;}
.wsba{word-spacing:0.180000px;}
.wsc7{word-spacing:0.240000px;}
.wsf{word-spacing:0.336000px;}
.wse{word-spacing:0.360000px;}
.ws9a{word-spacing:0.420000px;}
.ws76{word-spacing:0.480000px;}
.ws2d{word-spacing:0.600000px;}
.ws99{word-spacing:0.612000px;}
.ws66{word-spacing:0.660000px;}
.ws6{word-spacing:0.720000px;}
.ws7b{word-spacing:0.840000px;}
.ws3b{word-spacing:0.900000px;}
.ws47{word-spacing:1.020000px;}
.ws55{word-spacing:1.080000px;}
.ws44{word-spacing:1.140000px;}
.ws4a{word-spacing:1.200000px;}
.ws13{word-spacing:1.260000px;}
.ws32{word-spacing:1.320000px;}
.ws2b{word-spacing:1.380000px;}
.ws4f{word-spacing:1.440000px;}
.ws1a{word-spacing:1.500000px;}
.ws6f{word-spacing:1.560000px;}
.ws37{word-spacing:1.620000px;}
.wsc1{word-spacing:1.740000px;}
.ws82{word-spacing:1.800000px;}
.ws1e{word-spacing:1.860000px;}
.ws24{word-spacing:1.920000px;}
.ws3a{word-spacing:1.980000px;}
.ws68{word-spacing:2.040000px;}
.wsb5{word-spacing:2.100000px;}
.ws21{word-spacing:2.160000px;}
.ws26{word-spacing:2.220000px;}
.ws4c{word-spacing:2.280000px;}
.wsd6{word-spacing:2.340000px;}
.ws1{word-spacing:2.400000px;}
.ws9e{word-spacing:2.430000px;}
.ws52{word-spacing:2.460000px;}
.ws51{word-spacing:2.520000px;}
.ws6b{word-spacing:2.580000px;}
.ws29{word-spacing:2.640000px;}
.ws97{word-spacing:2.700000px;}
.ws48{word-spacing:2.760000px;}
.wsc5{word-spacing:2.820000px;}
.ws7{word-spacing:2.880000px;}
.ws75{word-spacing:2.940000px;}
.ws14{word-spacing:3.000000px;}
.ws2e{word-spacing:3.060000px;}
.ws46{word-spacing:3.120000px;}
.ws19{word-spacing:3.180000px;}
.ws34{word-spacing:3.240000px;}
.wsb3{word-spacing:3.300000px;}
.ws20{word-spacing:3.360000px;}
.ws15{word-spacing:3.420000px;}
.ws60{word-spacing:3.480000px;}
.wsac{word-spacing:3.540000px;}
.wsbc{word-spacing:3.600000px;}
.ws56{word-spacing:3.660000px;}
.ws42{word-spacing:3.720000px;}
.ws27{word-spacing:3.780000px;}
.wsb9{word-spacing:3.840000px;}
.wsa3{word-spacing:3.900000px;}
.ws5{word-spacing:3.960000px;}
.ws9c{word-spacing:4.020000px;}
.ws70{word-spacing:4.080000px;}
.ws2c{word-spacing:4.140000px;}
.ws4b{word-spacing:4.200000px;}
.wscc{word-spacing:4.260000px;}
.wsc{word-spacing:4.320000px;}
.ws33{word-spacing:4.380000px;}
.ws3c{word-spacing:4.440000px;}
.wsc4{word-spacing:4.500000px;}
.wsa{word-spacing:4.560000px;}
.wsc8{word-spacing:4.620000px;}
.wsa5{word-spacing:4.740000px;}
.wsa8{word-spacing:4.800000px;}
.wsd4{word-spacing:4.860000px;}
.ws1f{word-spacing:4.920000px;}
.ws8{word-spacing:4.980000px;}
.ws4e{word-spacing:5.100000px;}
.ws22{word-spacing:5.160000px;}
.ws9d{word-spacing:5.220000px;}
.ws73{word-spacing:5.280000px;}
.ws72{word-spacing:5.340000px;}
.ws6e{word-spacing:5.400000px;}
.ws18{word-spacing:5.460000px;}
.ws4d{word-spacing:5.520000px;}
.ws3d{word-spacing:5.580000px;}
.ws1d{word-spacing:5.640000px;}
.ws54{word-spacing:5.700000px;}
.ws2f{word-spacing:5.760000px;}
.ws5b{word-spacing:5.820000px;}
.ws38{word-spacing:5.880000px;}
.ws65{word-spacing:5.940000px;}
.ws1b{word-spacing:6.000000px;}
.ws43{word-spacing:6.060000px;}
.ws5c{word-spacing:6.120000px;}
.ws9{word-spacing:6.180000px;}
.wscd{word-spacing:6.240000px;}
.wsc6{word-spacing:6.300000px;}
.wsd{word-spacing:6.360000px;}
.wsae{word-spacing:6.420000px;}
.wsad{word-spacing:6.480000px;}
.wsb6{word-spacing:6.600000px;}
.wsb4{word-spacing:6.660000px;}
.ws3e{word-spacing:6.720000px;}
.ws5f{word-spacing:6.780000px;}
.ws79{word-spacing:6.840000px;}
.wsc3{word-spacing:6.960000px;}
.ws80{word-spacing:7.020000px;}
.ws1c{word-spacing:7.140000px;}
.ws57{word-spacing:7.200000px;}
.ws23{word-spacing:7.260000px;}
.ws41{word-spacing:7.320000px;}
.ws40{word-spacing:7.500000px;}
.wsa9{word-spacing:7.560000px;}
.ws67{word-spacing:7.620000px;}
.ws3f{word-spacing:7.680000px;}
.ws6c{word-spacing:7.740000px;}
.wsb7{word-spacing:7.800000px;}
.ws39{word-spacing:7.860000px;}
.ws7f{word-spacing:7.920000px;}
.wscb{word-spacing:8.040000px;}
.ws5e{word-spacing:8.160000px;}
.ws25{word-spacing:8.280000px;}
.wsca{word-spacing:8.340000px;}
.ws16{word-spacing:8.400000px;}
.ws71{word-spacing:8.460000px;}
.ws81{word-spacing:8.580000px;}
.wsaf{word-spacing:8.760000px;}
.wsb0{word-spacing:8.820000px;}
.wsa4{word-spacing:8.880000px;}
.wscf{word-spacing:8.940000px;}
.ws53{word-spacing:9.000000px;}
.ws31{word-spacing:9.120000px;}
.wsa6{word-spacing:9.180000px;}
.wsd3{word-spacing:9.300000px;}
.ws6a{word-spacing:9.360000px;}
.ws30{word-spacing:9.540000px;}
.wsbf{word-spacing:9.660000px;}
.wsc0{word-spacing:9.720000px;}
.wsa7{word-spacing:9.840000px;}
.ws58{word-spacing:9.900000px;}
.ws61{word-spacing:10.020000px;}
.ws7d{word-spacing:10.200000px;}
.ws36{word-spacing:10.380000px;}
.wsbb{word-spacing:10.440000px;}
.ws2{word-spacing:10.584000px;}
.wsd5{word-spacing:10.740000px;}
.wsaa{word-spacing:10.800000px;}
.ws7e{word-spacing:10.860000px;}
.wsce{word-spacing:11.040000px;}
.wsd2{word-spacing:11.820000px;}
.ws77{word-spacing:12.060000px;}
.wsd0{word-spacing:12.180000px;}
.wsbd{word-spacing:12.960000px;}
.ws7c{word-spacing:13.080000px;}
.wsb1{word-spacing:14.340000px;}
.wsc2{word-spacing:15.000000px;}
.wsbe{word-spacing:15.840000px;}
.ws90{word-spacing:22.083000px;}
.ws95{word-spacing:27.810300px;}
.ws92{word-spacing:28.662000px;}
.ws94{word-spacing:31.161000px;}
.ws8f{word-spacing:35.547000px;}
.ws8b{word-spacing:46.980000px;}
.ws8a{word-spacing:50.112000px;}
.ws85{word-spacing:51.624000px;}
.ws89{word-spacing:60.102000px;}
.ws93{word-spacing:60.333000px;}
.ws8d{word-spacing:61.576200px;}
.ws91{word-spacing:63.087000px;}
.ws84{word-spacing:75.006000px;}
.ws87{word-spacing:82.045200px;}
.ws8e{word-spacing:113.454000px;}
.ws8c{word-spacing:130.680000px;}
.ws88{word-spacing:135.648000px;}
.ws83{word-spacing:792.018000px;}
._5{margin-left:-11.166000px;}
._3{margin-left:-8.547000px;}
._4{margin-left:-7.014000px;}
._0{margin-left:-5.670000px;}
._7{margin-left:-4.566600px;}
._1{margin-left:-3.229200px;}
._2{margin-left:-1.625400px;}
._9{width:1.500000px;}
._b{width:2.761200px;}
._2f{width:3.948000px;}
._8{width:7.260000px;}
._2e{width:12.960000px;}
._a{width:25.020000px;}
._21{width:40.473000px;}
._27{width:43.232700px;}
._6{width:45.600000px;}
._15{width:48.006000px;}
._17{width:53.244000px;}
._1f{width:55.794000px;}
._2d{width:57.036000px;}
._d{width:61.128000px;}
._1d{width:65.973000px;}
._22{width:68.085000px;}
._20{width:70.227000px;}
._13{width:73.926000px;}
._23{width:79.377000px;}
._f{width:81.270000px;}
._1e{width:82.344000px;}
._12{width:86.724000px;}
._1c{width:95.727000px;}
._26{width:99.960000px;}
._c{width:104.058000px;}
._29{width:108.477000px;}
._1a{width:110.517000px;}
._11{width:111.618000px;}
._2c{width:112.710000px;}
._24{width:117.708000px;}
._e{width:119.718000px;}
._28{width:121.701300px;}
._19{width:130.254000px;}
._2a{width:143.127000px;}
._16{width:144.180000px;}
._10{width:147.960000px;}
._14{width:153.954000px;}
._25{width:157.335000px;}
._2b{width:159.345000px;}
._1b{width:197.727000px;}
._18{width:219.045000px;}
.fc1{color:rgb(31,25,26);}
.fc2{color:rgb(47,47,47);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.600000px;}
.fs5{font-size:32.400000px;}
.fs4{font-size:36.000000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:63.779550px;}
.y97{bottom:106.072200px;}
.y46{bottom:106.132200px;}
.yba{bottom:106.207500px;}
.y184{bottom:106.237200px;}
.y159{bottom:106.237500px;}
.ycb{bottom:106.265550px;}
.ye9{bottom:106.293900px;}
.yfc{bottom:106.294500px;}
.y1f{bottom:106.299150px;}
.y12e{bottom:106.303800px;}
.y223{bottom:106.357200px;}
.y1ef{bottom:106.387200px;}
.y71{bottom:106.402200px;}
.y1aa{bottom:106.447200px;}
.y125{bottom:106.547550px;}
.y1e{bottom:120.699150px;}
.y45{bottom:124.147200px;}
.y158{bottom:124.267500px;}
.yfb{bottom:124.305000px;}
.y12d{bottom:124.312800px;}
.ye8{bottom:124.323900px;}
.y222{bottom:124.492200px;}
.y214{bottom:124.522200px;}
.y183{bottom:124.672200px;}
.y1a9{bottom:124.687200px;}
.y1ee{bottom:124.747200px;}
.y1cd{bottom:124.762200px;}
.y96{bottom:125.257200px;}
.y70{bottom:125.272200px;}
.yb9{bottom:125.557500px;}
.yca{bottom:125.615550px;}
.y124{bottom:136.357050px;}
.y44{bottom:142.162200px;}
.y157{bottom:142.297500px;}
.yfa{bottom:142.315350px;}
.ye7{bottom:142.353900px;}
.y221{bottom:142.627200px;}
.y213{bottom:142.912200px;}
.y182{bottom:143.107200px;}
.y1cc{bottom:143.122200px;}
.y6f{bottom:144.142200px;}
.yb8{bottom:144.907500px;}
.yc9{bottom:144.965550px;}
.y1a8{bottom:149.302200px;}
.y1ed{bottom:149.482200px;}
.y95{bottom:152.932200px;}
.yf9{bottom:160.307400px;}
.y156{bottom:160.327500px;}
.ye6{bottom:160.378650px;}
.y123{bottom:160.990050px;}
.y1cb{bottom:161.482200px;}
.y181{bottom:161.542200px;}
.y6e{bottom:163.012200px;}
.y1d{bottom:163.733100px;}
.yb7{bottom:164.257500px;}
.yc8{bottom:164.315550px;}
.y1a7{bottom:167.542200px;}
.y1ec{bottom:167.842200px;}
.y212{bottom:168.532200px;}
.y94{bottom:172.117200px;}
.y43{bottom:178.177200px;}
.yf8{bottom:178.322400px;}
.y155{bottom:178.357500px;}
.ye5{bottom:178.408650px;}
.y180{bottom:179.977200px;}
.y1c{bottom:181.733100px;}
.y6d{bottom:181.882200px;}
.yb6{bottom:183.607500px;}
.yc7{bottom:183.665550px;}
.y122{bottom:185.623050px;}
.y1a6{bottom:185.782200px;}
.y1eb{bottom:186.202200px;}
.y1ca{bottom:186.217200px;}
.y211{bottom:186.922200px;}
.y42{bottom:196.192200px;}
.yf7{bottom:196.337400px;}
.y154{bottom:196.387500px;}
.ye4{bottom:196.438650px;}
.y17f{bottom:198.412200px;}
.y1b{bottom:199.733100px;}
.y93{bottom:199.792200px;}
.y6c{bottom:200.752200px;}
.yb5{bottom:202.957500px;}
.yc6{bottom:203.015550px;}
.y1a5{bottom:204.022200px;}
.y1ea{bottom:204.562200px;}
.y1c9{bottom:204.577200px;}
.y210{bottom:205.312200px;}
.y121{bottom:210.256050px;}
.y41{bottom:214.207200px;}
.yf6{bottom:214.352400px;}
.y153{bottom:214.417500px;}
.ye3{bottom:214.467000px;}
.y17e{bottom:216.847200px;}
.y1a{bottom:217.733100px;}
.y92{bottom:218.977200px;}
.y6b{bottom:219.622200px;}
.yb4{bottom:222.307500px;}
.yc5{bottom:222.365550px;}
.y1a4{bottom:228.637200px;}
.y1e9{bottom:229.297200px;}
.y1c8{bottom:229.312200px;}
.y20f{bottom:230.932200px;}
.y40{bottom:232.222200px;}
.yf5{bottom:232.367400px;}
.y152{bottom:232.447500px;}
.ye2{bottom:232.495200px;}
.y120{bottom:234.889050px;}
.y17d{bottom:235.282200px;}
.y19{bottom:235.733100px;}
.y6a{bottom:238.492200px;}
.yb3{bottom:241.657500px;}
.y1a3{bottom:246.877200px;}
.y1e8{bottom:247.657200px;}
.y1c7{bottom:247.672200px;}
.y20e{bottom:249.322200px;}
.yf4{bottom:250.368600px;}
.y151{bottom:250.477500px;}
.ye1{bottom:250.519950px;}
.y17c{bottom:253.717200px;}
.y18{bottom:253.733100px;}
.y69{bottom:257.362200px;}
.y11f{bottom:259.522050px;}
.yb2{bottom:261.007500px;}
.yc4{bottom:261.065550px;}
.y3f{bottom:262.987200px;}
.y91{bottom:265.837200px;}
.y1e7{bottom:266.017200px;}
.y1c6{bottom:266.032200px;}
.y20d{bottom:267.712200px;}
.yf3{bottom:268.383600px;}
.y150{bottom:268.507500px;}
.ye0{bottom:268.549950px;}
.y1a2{bottom:271.492200px;}
.y17{bottom:271.733100px;}
.y17b{bottom:272.152200px;}
.y68{bottom:276.232200px;}
.yb1{bottom:280.357500px;}
.y3e{bottom:281.002200px;}
.y11e{bottom:284.155050px;}
.y1c5{bottom:284.392200px;}
.y90{bottom:285.022200px;}
.yf2{bottom:286.398600px;}
.y14f{bottom:286.537500px;}
.ydf{bottom:286.579950px;}
.y1a1{bottom:289.732200px;}
.y16{bottom:289.733100px;}
.y17a{bottom:290.587200px;}
.y1e6{bottom:290.752200px;}
.y20c{bottom:293.332200px;}
.y67{bottom:295.102200px;}
.y3d{bottom:299.017200px;}
.y8f{bottom:304.207200px;}
.yf1{bottom:304.408950px;}
.y14e{bottom:304.567500px;}
.yde{bottom:304.606500px;}
.y15{bottom:307.733100px;}
.y1a0{bottom:307.972200px;}
.y11d{bottom:308.788050px;}
.y179{bottom:309.022200px;}
.y1e5{bottom:309.112200px;}
.y1c4{bottom:309.127200px;}
.y20b{bottom:311.722200px;}
.y66{bottom:313.972200px;}
.y3c{bottom:317.032200px;}
.yb0{bottom:319.057500px;}
.yc3{bottom:319.115550px;}
.yf0{bottom:322.400850px;}
.y14d{bottom:322.597500px;}
.ydd{bottom:322.636500px;}
.y8e{bottom:323.392200px;}
.y14{bottom:325.733100px;}
.y178{bottom:327.457200px;}
.y1e4{bottom:327.472200px;}
.y1c3{bottom:327.487200px;}
.y20a{bottom:330.112200px;}
.y11a{bottom:331.294800px;}
.y19f{bottom:332.587200px;}
.y65{bottom:332.842200px;}
.y11c{bottom:333.421050px;}
.y119{bottom:333.427350px;}
.y3b{bottom:335.047200px;}
.yaf{bottom:338.407500px;}
.yc2{bottom:338.465550px;}
.yef{bottom:340.415850px;}
.y14c{bottom:340.627500px;}
.ydc{bottom:340.662900px;}
.y118{bottom:340.758600px;}
.y8d{bottom:342.577200px;}
.y13{bottom:343.733100px;}
.y1c2{bottom:345.847200px;}
.y177{bottom:345.892200px;}
.y11b{bottom:348.083550px;}
.y19e{bottom:350.827200px;}
.y64{bottom:351.712200px;}
.y1e3{bottom:352.207200px;}
.y3a{bottom:353.062200px;}
.y209{bottom:355.732200px;}
.yae{bottom:357.757500px;}
.yc1{bottom:357.815550px;}
.yee{bottom:358.430850px;}
.y14b{bottom:358.657500px;}
.ydb{bottom:358.692900px;}
.y12{bottom:361.733100px;}
.y8c{bottom:361.762200px;}
.y176{bottom:364.327200px;}
.y19d{bottom:369.067200px;}
.y1e2{bottom:370.567200px;}
.y63{bottom:370.582200px;}
.y117{bottom:372.722850px;}
.y208{bottom:374.122200px;}
.yed{bottom:376.445850px;}
.y14a{bottom:376.687500px;}
.yda{bottom:376.701900px;}
.yad{bottom:377.107500px;}
.yc0{bottom:377.165550px;}
.y11{bottom:379.733100px;}
.y8b{bottom:380.947200px;}
.y175{bottom:382.762200px;}
.y115{bottom:387.385350px;}
.y1e1{bottom:388.927200px;}
.y1c1{bottom:388.942200px;}
.y39{bottom:389.077200px;}
.y62{bottom:389.452200px;}
.y19c{bottom:393.682200px;}
.yec{bottom:394.460850px;}
.y149{bottom:394.717500px;}
.yd9{bottom:394.731900px;}
.yac{bottom:396.457500px;}
.y10{bottom:397.733100px;}
.y207{bottom:399.742200px;}
.y8a{bottom:400.132200px;}
.y174{bottom:401.197200px;}
.y116{bottom:402.047850px;}
.y1c0{bottom:407.302200px;}
.y61{bottom:408.322200px;}
.y19b{bottom:411.922200px;}
.yeb{bottom:412.475850px;}
.y148{bottom:412.747500px;}
.yd8{bottom:412.761900px;}
.y1e0{bottom:413.662200px;}
.yab{bottom:415.807500px;}
.y206{bottom:418.132200px;}
.y89{bottom:419.317200px;}
.y173{bottom:419.632200px;}
.y60{bottom:427.192200px;}
.y19a{bottom:430.162200px;}
.y147{bottom:430.777500px;}
.yd7{bottom:430.791900px;}
.y1df{bottom:432.022200px;}
.y1bf{bottom:432.037200px;}
.yf{bottom:433.733100px;}
.y114{bottom:433.911450px;}
.yaa{bottom:435.157500px;}
.y205{bottom:436.522200px;}
.y172{bottom:438.067200px;}
.y88{bottom:438.502200px;}
.y38{bottom:440.107200px;}
.y5f{bottom:446.062200px;}
.y12c{bottom:448.569300px;}
.y146{bottom:448.807500px;}
.yd6{bottom:448.821900px;}
.y1de{bottom:450.382200px;}
.y1be{bottom:450.397200px;}
.ybf{bottom:454.507500px;}
.y199{bottom:454.777200px;}
.yea{bottom:455.996700px;}
.y171{bottom:456.502200px;}
.y87{bottom:457.687200px;}
.y37{bottom:458.122200px;}
.y113{bottom:458.616450px;}
.y204{bottom:462.142200px;}
.y5e{bottom:464.932200px;}
.y12b{bottom:466.578300px;}
.y145{bottom:466.837500px;}
.yd5{bottom:466.851900px;}
.y1bd{bottom:468.757200px;}
.y198{bottom:473.017200px;}
.ya9{bottom:473.857500px;}
.y170{bottom:474.937200px;}
.y1dd{bottom:475.117200px;}
.y86{bottom:476.872200px;}
.y36{bottom:480.382200px;}
.y203{bottom:480.532200px;}
.y5d{bottom:483.802200px;}
.y144{bottom:484.867500px;}
.yd4{bottom:484.881900px;}
.y1bc{bottom:487.117200px;}
.y197{bottom:491.257200px;}
.y112{bottom:492.816450px;}
.ybe{bottom:493.207500px;}
.y16f{bottom:493.372200px;}
.y1dc{bottom:493.477200px;}
.y85{bottom:496.057200px;}
.y35{bottom:498.397200px;}
.y202{bottom:498.922200px;}
.y5c{bottom:502.672200px;}
.y143{bottom:502.897500px;}
.yd3{bottom:502.911900px;}
.ye{bottom:505.733100px;}
.y196{bottom:509.497200px;}
.y111{bottom:510.816450px;}
.y16e{bottom:511.807200px;}
.y1db{bottom:511.837200px;}
.y1bb{bottom:511.852200px;}
.ya8{bottom:512.557500px;}
.y84{bottom:515.242200px;}
.y34{bottom:516.412200px;}
.yd{bottom:520.133100px;}
.y142{bottom:520.927500px;}
.yd2{bottom:520.941900px;}
.y5b{bottom:521.542200px;}
.y201{bottom:524.542200px;}
.y110{bottom:528.816450px;}
.y1ba{bottom:530.212200px;}
.y16d{bottom:530.242200px;}
.ya7{bottom:531.907500px;}
.y195{bottom:534.112200px;}
.y33{bottom:534.427200px;}
.yc{bottom:534.533100px;}
.y1da{bottom:536.572200px;}
.y141{bottom:538.957500px;}
.yd1{bottom:538.971900px;}
.y5a{bottom:540.412200px;}
.y200{bottom:542.932200px;}
.y10f{bottom:546.816450px;}
.y1b9{bottom:548.572200px;}
.y16c{bottom:548.677200px;}
.yb{bottom:548.933100px;}
.ya6{bottom:551.257500px;}
.y194{bottom:552.352200px;}
.y32{bottom:552.442200px;}
.y83{bottom:553.612200px;}
.y1d9{bottom:554.932200px;}
.y140{bottom:556.987500px;}
.yd0{bottom:557.001900px;}
.y59{bottom:559.282200px;}
.y1ff{bottom:561.322200px;}
.y10e{bottom:564.816450px;}
.y16b{bottom:567.112200px;}
.ya{bottom:567.585000px;}
.y31{bottom:570.457200px;}
.y193{bottom:570.592200px;}
.ya5{bottom:570.607500px;}
.y82{bottom:572.797200px;}
.y1d8{bottom:573.292200px;}
.y1b8{bottom:573.307200px;}
.y13f{bottom:575.017500px;}
.ycf{bottom:575.031900px;}
.y58{bottom:578.152200px;}
.y10d{bottom:582.816450px;}
.y16a{bottom:585.547200px;}
.y9{bottom:585.585000px;}
.y1fe{bottom:586.942200px;}
.y30{bottom:588.472200px;}
.ya4{bottom:589.957500px;}
.y1d7{bottom:591.652200px;}
.y1b7{bottom:591.667200px;}
.y81{bottom:591.982200px;}
.y13e{bottom:593.047500px;}
.yce{bottom:593.061900px;}
.y57{bottom:597.022200px;}
.y10c{bottom:600.816450px;}
.y169{bottom:603.982200px;}
.y1fd{bottom:605.332200px;}
.y2f{bottom:606.487200px;}
.y192{bottom:607.087200px;}
.ya3{bottom:609.307500px;}
.y1b6{bottom:610.027200px;}
.y13d{bottom:611.077500px;}
.y80{bottom:611.167200px;}
.y56{bottom:615.892200px;}
.y1d6{bottom:616.387200px;}
.y10b{bottom:618.816450px;}
.y168{bottom:622.417200px;}
.y1fc{bottom:623.722200px;}
.y2e{bottom:624.502200px;}
.ybd{bottom:628.657500px;}
.y8{bottom:628.785000px;}
.y13c{bottom:629.107500px;}
.ycd{bottom:629.119650px;}
.y7f{bottom:630.352200px;}
.y1d5{bottom:634.747200px;}
.y55{bottom:634.762200px;}
.y10a{bottom:636.816450px;}
.y167{bottom:640.852200px;}
.y2d{bottom:642.517200px;}
.ycc{bottom:645.346650px;}
.y13b{bottom:647.137500px;}
.ya2{bottom:648.007500px;}
.y1fb{bottom:649.342200px;}
.y7e{bottom:649.537200px;}
.y1d4{bottom:653.107200px;}
.y1b5{bottom:653.122200px;}
.y54{bottom:653.632200px;}
.y7{bottom:653.985000px;}
.y109{bottom:654.816450px;}
.y166{bottom:659.287200px;}
.y2c{bottom:660.532200px;}
.y191{bottom:661.822200px;}
.y13a{bottom:665.167500px;}
.y220{bottom:666.862200px;}
.ybc{bottom:667.357500px;}
.y1fa{bottom:667.732200px;}
.y7d{bottom:668.722200px;}
.y1b4{bottom:671.482200px;}
.y53{bottom:672.502200px;}
.y108{bottom:672.816450px;}
.y165{bottom:677.722200px;}
.y2b{bottom:678.547200px;}
.y190{bottom:680.062200px;}
.y139{bottom:683.197500px;}
.y21f{bottom:684.997200px;}
.y1f9{bottom:686.122200px;}
.ya1{bottom:686.707500px;}
.y7c{bottom:687.907200px;}
.y52{bottom:691.372200px;}
.y164{bottom:696.157200px;}
.y1b3{bottom:696.217200px;}
.y2a{bottom:696.562200px;}
.y18f{bottom:698.302200px;}
.y138{bottom:701.227500px;}
.y1d3{bottom:702.592200px;}
.y21e{bottom:703.132200px;}
.y6{bottom:704.385000px;}
.ya0{bottom:706.057500px;}
.y7b{bottom:707.092200px;}
.y107{bottom:708.816450px;}
.y51{bottom:710.242200px;}
.y1f8{bottom:711.742200px;}
.y29{bottom:714.577200px;}
.y163{bottom:714.592200px;}
.y18e{bottom:716.542200px;}
.y137{bottom:719.257500px;}
.y1d2{bottom:720.952200px;}
.y21d{bottom:721.267200px;}
.y9f{bottom:725.407500px;}
.y7a{bottom:726.277200px;}
.y50{bottom:729.112200px;}
.y5{bottom:729.585000px;}
.y1f7{bottom:730.132200px;}
.y106{bottom:732.352950px;}
.y28{bottom:732.592200px;}
.y1b2{bottom:732.937200px;}
.y162{bottom:733.027200px;}
.y18d{bottom:734.782200px;}
.y136{bottom:737.287500px;}
.y1d1{bottom:739.312200px;}
.y9e{bottom:744.757500px;}
.y79{bottom:745.462200px;}
.y21c{bottom:746.632200px;}
.y105{bottom:747.877950px;}
.y4f{bottom:747.982200px;}
.y1f6{bottom:748.522200px;}
.y27{bottom:750.607200px;}
.y161{bottom:751.462200px;}
.y18c{bottom:753.022200px;}
.y135{bottom:755.317500px;}
.y1b1{bottom:757.672200px;}
.y9d{bottom:764.107500px;}
.y78{bottom:764.647200px;}
.y21b{bottom:764.767200px;}
.y4e{bottom:766.852200px;}
.y104{bottom:769.761450px;}
.y160{bottom:769.897200px;}
.y18b{bottom:771.262200px;}
.y134{bottom:773.347500px;}
.y1f5{bottom:774.142200px;}
.y1b0{bottom:776.032200px;}
.y1d0{bottom:782.407200px;}
.y21a{bottom:782.902200px;}
.y9c{bottom:783.457500px;}
.y77{bottom:783.832200px;}
.y103{bottom:785.286450px;}
.y4d{bottom:785.722200px;}
.y26{bottom:786.622200px;}
.y15f{bottom:788.332200px;}
.y18a{bottom:789.502200px;}
.y12a{bottom:790.857450px;}
.y133{bottom:791.377500px;}
.y1f4{bottom:792.532200px;}
.y1af{bottom:794.392200px;}
.y1cf{bottom:800.767200px;}
.y219{bottom:801.037200px;}
.y9b{bottom:802.807500px;}
.y76{bottom:803.017200px;}
.y4c{bottom:804.592200px;}
.y102{bottom:805.227600px;}
.y15e{bottom:806.767200px;}
.y101{bottom:807.167550px;}
.y189{bottom:807.742200px;}
.y129{bottom:808.871400px;}
.y132{bottom:809.407500px;}
.y1f3{bottom:810.922200px;}
.y100{bottom:814.930050px;}
.y1ae{bottom:819.127200px;}
.y218{bottom:819.172200px;}
.y9a{bottom:822.157500px;}
.y75{bottom:822.202200px;}
.y25{bottom:822.637200px;}
.y4b{bottom:823.462200px;}
.y15d{bottom:825.202200px;}
.y188{bottom:825.982200px;}
.y128{bottom:826.885350px;}
.y131{bottom:827.437500px;}
.y1f2{bottom:836.542200px;}
.y1ad{bottom:837.487200px;}
.y24{bottom:840.652200px;}
.y74{bottom:841.387200px;}
.ybb{bottom:841.507500px;}
.y4a{bottom:842.332200px;}
.y15c{bottom:843.637200px;}
.y187{bottom:844.222200px;}
.y217{bottom:844.537200px;}
.yff{bottom:844.576050px;}
.y127{bottom:844.899300px;}
.y130{bottom:845.467500px;}
.y1f1{bottom:854.932200px;}
.y1ac{bottom:855.847200px;}
.y73{bottom:860.572200px;}
.y99{bottom:860.857500px;}
.y49{bottom:861.202200px;}
.y15b{bottom:862.072200px;}
.y1ce{bottom:862.222200px;}
.y186{bottom:862.462200px;}
.y216{bottom:862.672200px;}
.y23{bottom:862.912200px;}
.y126{bottom:862.913250px;}
.y12f{bottom:863.497500px;}
.yfe{bottom:875.335050px;}
.y72{bottom:879.757200px;}
.y48{bottom:880.072200px;}
.y15a{bottom:880.507200px;}
.y1f0{bottom:880.552200px;}
.y1ab{bottom:880.582200px;}
.y185{bottom:880.702200px;}
.y215{bottom:880.807200px;}
.y22{bottom:880.927200px;}
.y21{bottom:898.942200px;}
.y98{bottom:899.557500px;}
.yfd{bottom:900.040050px;}
.y4{bottom:914.629350px;}
.y3{bottom:930.829350px;}
.y2{bottom:947.029350px;}
.y47{bottom:948.413550px;}
.y20{bottom:948.413700px;}
.h24{height:22.441992px;}
.h25{height:35.336426px;}
.h21{height:37.253906px;}
.h20{height:37.403320px;}
.h1a{height:39.603516px;}
.h7{height:42.187500px;}
.h2{height:43.804688px;}
.h8{height:45.000000px;}
.h1f{height:47.165039px;}
.h3{height:48.673828px;}
.h19{height:49.280273px;}
.hd{height:49.939453px;}
.h6{height:52.734375px;}
.h9{height:54.755859px;}
.ha{height:55.488281px;}
.h26{height:55.492481px;}
.h13{height:55.494881px;}
.h12{height:55.495481px;}
.h10{height:55.502081px;}
.hf{height:55.502681px;}
.h18{height:55.506281px;}
.h15{height:55.506881px;}
.h11{height:55.509281px;}
.h16{height:55.543481px;}
.he{height:55.572281px;}
.h17{height:55.580081px;}
.h14{height:55.580681px;}
.hc{height:55.622681px;}
.hb{height:55.720481px;}
.h4{height:63.000000px;}
.h22{height:66.728320px;}
.h1b{height:70.653516px;}
.h5{height:73.828125px;}
.h1d{height:78.422916px;}
.h23{height:89.906824px;}
.h1c{height:93.953461px;}
.h1e{height:112.039453px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x2{left:76.535400px;}
.x3{left:81.101100px;}
.x18{left:82.533900px;}
.xe{left:97.799400px;}
.x21{left:99.476100px;}
.x7{left:104.537250px;}
.x16{left:108.840600px;}
.xb{left:111.120000px;}
.x13{left:119.045400px;}
.x5{left:120.917100px;}
.x9{left:137.220000px;}
.x12{left:140.300400px;}
.xa{left:156.756000px;}
.x17{left:168.596400px;}
.xf{left:181.932000px;}
.xc{left:195.972000px;}
.x19{left:211.674900px;}
.x20{left:223.221300px;}
.x4{left:247.022100px;}
.x24{left:275.859450px;}
.x11{left:277.535400px;}
.x6{left:281.168100px;}
.x8{left:304.600050px;}
.x23{left:309.630600px;}
.x22{left:320.039100px;}
.x25{left:321.190200px;}
.x15{left:323.541750px;}
.xd{left:328.934400px;}
.x10{left:330.800400px;}
.x14{left:334.314000px;}
.x1{left:337.782150px;}
.x1a{left:395.763750px;}
.x1e{left:456.023550px;}
.x1f{left:501.732300px;}
.x1c{left:559.218300px;}
.x1b{left:560.302050px;}
.x1d{left:583.494300px;}
@media print{
.v2{vertical-align:-17.581333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.600000pt;}
.v4{vertical-align:18.672000pt;}
.v8{vertical-align:26.066667pt;}
.v3{vertical-align:27.600000pt;}
.v5{vertical-align:30.435733pt;}
.v6{vertical-align:34.506133pt;}
.v9{vertical-align:44.744000pt;}
.v7{vertical-align:55.200000pt;}
.lsa{letter-spacing:-0.800000pt;}
.lsd{letter-spacing:-0.693333pt;}
.ls24{letter-spacing:-0.640000pt;}
.ls20{letter-spacing:-0.586667pt;}
.ls14{letter-spacing:-0.544000pt;}
.ls9{letter-spacing:-0.533333pt;}
.lsf{letter-spacing:-0.528000pt;}
.ls22{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.426667pt;}
.ls1{letter-spacing:-0.373333pt;}
.ls2{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.298667pt;}
.ls7{letter-spacing:-0.266667pt;}
.ls5{letter-spacing:-0.213333pt;}
.ls8{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:-0.106667pt;}
.ls6{letter-spacing:-0.053333pt;}
.ls1c{letter-spacing:-0.032000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.000533pt;}
.ls16{letter-spacing:0.001067pt;}
.ls18{letter-spacing:0.005867pt;}
.ls17{letter-spacing:0.006933pt;}
.ls11{letter-spacing:0.009067pt;}
.ls13{letter-spacing:0.013333pt;}
.lsb{letter-spacing:0.013867pt;}
.lse{letter-spacing:0.023467pt;}
.ls1b{letter-spacing:0.054933pt;}
.ls15{letter-spacing:0.108267pt;}
.ls10{letter-spacing:0.157333pt;}
.ls1a{letter-spacing:0.224533pt;}
.ls1e{letter-spacing:0.426667pt;}
.ls1f{letter-spacing:0.640000pt;}
.ls1d{letter-spacing:0.693333pt;}
.ls21{letter-spacing:6.026667pt;}
.ls23{letter-spacing:6.677333pt;}
.ls12{letter-spacing:147.024000pt;}
.ws63{word-spacing:-53.333333pt;}
.wsb8{word-spacing:-14.826667pt;}
.ws74{word-spacing:-13.333333pt;}
.wsa0{word-spacing:-13.280000pt;}
.ws96{word-spacing:-11.333333pt;}
.ws0{word-spacing:-8.896000pt;}
.ws62{word-spacing:-8.000000pt;}
.ws9f{word-spacing:-7.968000pt;}
.ws86{word-spacing:-7.200000pt;}
.ws64{word-spacing:-1.866667pt;}
.ws4{word-spacing:-1.333333pt;}
.wsd1{word-spacing:-1.280000pt;}
.wsc9{word-spacing:-1.226667pt;}
.ws10{word-spacing:-1.194667pt;}
.wsb{word-spacing:-1.173333pt;}
.ws5a{word-spacing:-1.120000pt;}
.ws50{word-spacing:-1.066667pt;}
.ws17{word-spacing:-1.013333pt;}
.ws9b{word-spacing:-0.960000pt;}
.wsab{word-spacing:-0.906667pt;}
.ws5d{word-spacing:-0.853333pt;}
.ws49{word-spacing:-0.800000pt;}
.wsa1{word-spacing:-0.746667pt;}
.ws7a{word-spacing:-0.693333pt;}
.ws28{word-spacing:-0.640000pt;}
.ws69{word-spacing:-0.533333pt;}
.ws98{word-spacing:-0.480000pt;}
.ws12{word-spacing:-0.426667pt;}
.ws45{word-spacing:-0.373333pt;}
.ws11{word-spacing:-0.341333pt;}
.wsb2{word-spacing:-0.266667pt;}
.ws59{word-spacing:-0.213333pt;}
.ws6d{word-spacing:-0.160000pt;}
.ws35{word-spacing:-0.106667pt;}
.wsa2{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.ws78{word-spacing:0.053333pt;}
.ws2a{word-spacing:0.106667pt;}
.wsba{word-spacing:0.160000pt;}
.wsc7{word-spacing:0.213333pt;}
.wsf{word-spacing:0.298667pt;}
.wse{word-spacing:0.320000pt;}
.ws9a{word-spacing:0.373333pt;}
.ws76{word-spacing:0.426667pt;}
.ws2d{word-spacing:0.533333pt;}
.ws99{word-spacing:0.544000pt;}
.ws66{word-spacing:0.586667pt;}
.ws6{word-spacing:0.640000pt;}
.ws7b{word-spacing:0.746667pt;}
.ws3b{word-spacing:0.800000pt;}
.ws47{word-spacing:0.906667pt;}
.ws55{word-spacing:0.960000pt;}
.ws44{word-spacing:1.013333pt;}
.ws4a{word-spacing:1.066667pt;}
.ws13{word-spacing:1.120000pt;}
.ws32{word-spacing:1.173333pt;}
.ws2b{word-spacing:1.226667pt;}
.ws4f{word-spacing:1.280000pt;}
.ws1a{word-spacing:1.333333pt;}
.ws6f{word-spacing:1.386667pt;}
.ws37{word-spacing:1.440000pt;}
.wsc1{word-spacing:1.546667pt;}
.ws82{word-spacing:1.600000pt;}
.ws1e{word-spacing:1.653333pt;}
.ws24{word-spacing:1.706667pt;}
.ws3a{word-spacing:1.760000pt;}
.ws68{word-spacing:1.813333pt;}
.wsb5{word-spacing:1.866667pt;}
.ws21{word-spacing:1.920000pt;}
.ws26{word-spacing:1.973333pt;}
.ws4c{word-spacing:2.026667pt;}
.wsd6{word-spacing:2.080000pt;}
.ws1{word-spacing:2.133333pt;}
.ws9e{word-spacing:2.160000pt;}
.ws52{word-spacing:2.186667pt;}
.ws51{word-spacing:2.240000pt;}
.ws6b{word-spacing:2.293333pt;}
.ws29{word-spacing:2.346667pt;}
.ws97{word-spacing:2.400000pt;}
.ws48{word-spacing:2.453333pt;}
.wsc5{word-spacing:2.506667pt;}
.ws7{word-spacing:2.560000pt;}
.ws75{word-spacing:2.613333pt;}
.ws14{word-spacing:2.666667pt;}
.ws2e{word-spacing:2.720000pt;}
.ws46{word-spacing:2.773333pt;}
.ws19{word-spacing:2.826667pt;}
.ws34{word-spacing:2.880000pt;}
.wsb3{word-spacing:2.933333pt;}
.ws20{word-spacing:2.986667pt;}
.ws15{word-spacing:3.040000pt;}
.ws60{word-spacing:3.093333pt;}
.wsac{word-spacing:3.146667pt;}
.wsbc{word-spacing:3.200000pt;}
.ws56{word-spacing:3.253333pt;}
.ws42{word-spacing:3.306667pt;}
.ws27{word-spacing:3.360000pt;}
.wsb9{word-spacing:3.413333pt;}
.wsa3{word-spacing:3.466667pt;}
.ws5{word-spacing:3.520000pt;}
.ws9c{word-spacing:3.573333pt;}
.ws70{word-spacing:3.626667pt;}
.ws2c{word-spacing:3.680000pt;}
.ws4b{word-spacing:3.733333pt;}
.wscc{word-spacing:3.786667pt;}
.wsc{word-spacing:3.840000pt;}
.ws33{word-spacing:3.893333pt;}
.ws3c{word-spacing:3.946667pt;}
.wsc4{word-spacing:4.000000pt;}
.wsa{word-spacing:4.053333pt;}
.wsc8{word-spacing:4.106667pt;}
.wsa5{word-spacing:4.213333pt;}
.wsa8{word-spacing:4.266667pt;}
.wsd4{word-spacing:4.320000pt;}
.ws1f{word-spacing:4.373333pt;}
.ws8{word-spacing:4.426667pt;}
.ws4e{word-spacing:4.533333pt;}
.ws22{word-spacing:4.586667pt;}
.ws9d{word-spacing:4.640000pt;}
.ws73{word-spacing:4.693333pt;}
.ws72{word-spacing:4.746667pt;}
.ws6e{word-spacing:4.800000pt;}
.ws18{word-spacing:4.853333pt;}
.ws4d{word-spacing:4.906667pt;}
.ws3d{word-spacing:4.960000pt;}
.ws1d{word-spacing:5.013333pt;}
.ws54{word-spacing:5.066667pt;}
.ws2f{word-spacing:5.120000pt;}
.ws5b{word-spacing:5.173333pt;}
.ws38{word-spacing:5.226667pt;}
.ws65{word-spacing:5.280000pt;}
.ws1b{word-spacing:5.333333pt;}
.ws43{word-spacing:5.386667pt;}
.ws5c{word-spacing:5.440000pt;}
.ws9{word-spacing:5.493333pt;}
.wscd{word-spacing:5.546667pt;}
.wsc6{word-spacing:5.600000pt;}
.wsd{word-spacing:5.653333pt;}
.wsae{word-spacing:5.706667pt;}
.wsad{word-spacing:5.760000pt;}
.wsb6{word-spacing:5.866667pt;}
.wsb4{word-spacing:5.920000pt;}
.ws3e{word-spacing:5.973333pt;}
.ws5f{word-spacing:6.026667pt;}
.ws79{word-spacing:6.080000pt;}
.wsc3{word-spacing:6.186667pt;}
.ws80{word-spacing:6.240000pt;}
.ws1c{word-spacing:6.346667pt;}
.ws57{word-spacing:6.400000pt;}
.ws23{word-spacing:6.453333pt;}
.ws41{word-spacing:6.506667pt;}
.ws40{word-spacing:6.666667pt;}
.wsa9{word-spacing:6.720000pt;}
.ws67{word-spacing:6.773333pt;}
.ws3f{word-spacing:6.826667pt;}
.ws6c{word-spacing:6.880000pt;}
.wsb7{word-spacing:6.933333pt;}
.ws39{word-spacing:6.986667pt;}
.ws7f{word-spacing:7.040000pt;}
.wscb{word-spacing:7.146667pt;}
.ws5e{word-spacing:7.253333pt;}
.ws25{word-spacing:7.360000pt;}
.wsca{word-spacing:7.413333pt;}
.ws16{word-spacing:7.466667pt;}
.ws71{word-spacing:7.520000pt;}
.ws81{word-spacing:7.626667pt;}
.wsaf{word-spacing:7.786667pt;}
.wsb0{word-spacing:7.840000pt;}
.wsa4{word-spacing:7.893333pt;}
.wscf{word-spacing:7.946667pt;}
.ws53{word-spacing:8.000000pt;}
.ws31{word-spacing:8.106667pt;}
.wsa6{word-spacing:8.160000pt;}
.wsd3{word-spacing:8.266667pt;}
.ws6a{word-spacing:8.320000pt;}
.ws30{word-spacing:8.480000pt;}
.wsbf{word-spacing:8.586667pt;}
.wsc0{word-spacing:8.640000pt;}
.wsa7{word-spacing:8.746667pt;}
.ws58{word-spacing:8.800000pt;}
.ws61{word-spacing:8.906667pt;}
.ws7d{word-spacing:9.066667pt;}
.ws36{word-spacing:9.226667pt;}
.wsbb{word-spacing:9.280000pt;}
.ws2{word-spacing:9.408000pt;}
.wsd5{word-spacing:9.546667pt;}
.wsaa{word-spacing:9.600000pt;}
.ws7e{word-spacing:9.653333pt;}
.wsce{word-spacing:9.813333pt;}
.wsd2{word-spacing:10.506667pt;}
.ws77{word-spacing:10.720000pt;}
.wsd0{word-spacing:10.826667pt;}
.wsbd{word-spacing:11.520000pt;}
.ws7c{word-spacing:11.626667pt;}
.wsb1{word-spacing:12.746667pt;}
.wsc2{word-spacing:13.333333pt;}
.wsbe{word-spacing:14.080000pt;}
.ws90{word-spacing:19.629333pt;}
.ws95{word-spacing:24.720267pt;}
.ws92{word-spacing:25.477333pt;}
.ws94{word-spacing:27.698667pt;}
.ws8f{word-spacing:31.597333pt;}
.ws8b{word-spacing:41.760000pt;}
.ws8a{word-spacing:44.544000pt;}
.ws85{word-spacing:45.888000pt;}
.ws89{word-spacing:53.424000pt;}
.ws93{word-spacing:53.629333pt;}
.ws8d{word-spacing:54.734400pt;}
.ws91{word-spacing:56.077333pt;}
.ws84{word-spacing:66.672000pt;}
.ws87{word-spacing:72.929067pt;}
.ws8e{word-spacing:100.848000pt;}
.ws8c{word-spacing:116.160000pt;}
.ws88{word-spacing:120.576000pt;}
.ws83{word-spacing:704.016000pt;}
._5{margin-left:-9.925333pt;}
._3{margin-left:-7.597333pt;}
._4{margin-left:-6.234667pt;}
._0{margin-left:-5.040000pt;}
._7{margin-left:-4.059200pt;}
._1{margin-left:-2.870400pt;}
._2{margin-left:-1.444800pt;}
._9{width:1.333333pt;}
._b{width:2.454400pt;}
._2f{width:3.509333pt;}
._8{width:6.453333pt;}
._2e{width:11.520000pt;}
._a{width:22.240000pt;}
._21{width:35.976000pt;}
._27{width:38.429067pt;}
._6{width:40.533333pt;}
._15{width:42.672000pt;}
._17{width:47.328000pt;}
._1f{width:49.594667pt;}
._2d{width:50.698667pt;}
._d{width:54.336000pt;}
._1d{width:58.642667pt;}
._22{width:60.520000pt;}
._20{width:62.424000pt;}
._13{width:65.712000pt;}
._23{width:70.557333pt;}
._f{width:72.240000pt;}
._1e{width:73.194667pt;}
._12{width:77.088000pt;}
._1c{width:85.090667pt;}
._26{width:88.853333pt;}
._c{width:92.496000pt;}
._29{width:96.424000pt;}
._1a{width:98.237333pt;}
._11{width:99.216000pt;}
._2c{width:100.186667pt;}
._24{width:104.629333pt;}
._e{width:106.416000pt;}
._28{width:108.178933pt;}
._19{width:115.781333pt;}
._2a{width:127.224000pt;}
._16{width:128.160000pt;}
._10{width:131.520000pt;}
._14{width:136.848000pt;}
._25{width:139.853333pt;}
._2b{width:141.640000pt;}
._1b{width:175.757333pt;}
._18{width:194.706667pt;}
.fs7{font-size:27.200000pt;}
.fs5{font-size:28.800000pt;}
.fs4{font-size:32.000000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:56.692933pt;}
.y97{bottom:94.286400pt;}
.y46{bottom:94.339733pt;}
.yba{bottom:94.406667pt;}
.y184{bottom:94.433067pt;}
.y159{bottom:94.433333pt;}
.ycb{bottom:94.458267pt;}
.ye9{bottom:94.483467pt;}
.yfc{bottom:94.484000pt;}
.y1f{bottom:94.488133pt;}
.y12e{bottom:94.492267pt;}
.y223{bottom:94.539733pt;}
.y1ef{bottom:94.566400pt;}
.y71{bottom:94.579733pt;}
.y1aa{bottom:94.619733pt;}
.y125{bottom:94.708933pt;}
.y1e{bottom:107.288133pt;}
.y45{bottom:110.353067pt;}
.y158{bottom:110.460000pt;}
.yfb{bottom:110.493333pt;}
.y12d{bottom:110.500267pt;}
.ye8{bottom:110.510133pt;}
.y222{bottom:110.659733pt;}
.y214{bottom:110.686400pt;}
.y183{bottom:110.819733pt;}
.y1a9{bottom:110.833067pt;}
.y1ee{bottom:110.886400pt;}
.y1cd{bottom:110.899733pt;}
.y96{bottom:111.339733pt;}
.y70{bottom:111.353067pt;}
.yb9{bottom:111.606667pt;}
.yca{bottom:111.658267pt;}
.y124{bottom:121.206267pt;}
.y44{bottom:126.366400pt;}
.y157{bottom:126.486667pt;}
.yfa{bottom:126.502533pt;}
.ye7{bottom:126.536800pt;}
.y221{bottom:126.779733pt;}
.y213{bottom:127.033067pt;}
.y182{bottom:127.206400pt;}
.y1cc{bottom:127.219733pt;}
.y6f{bottom:128.126400pt;}
.yb8{bottom:128.806667pt;}
.yc9{bottom:128.858267pt;}
.y1a8{bottom:132.713067pt;}
.y1ed{bottom:132.873067pt;}
.y95{bottom:135.939733pt;}
.yf9{bottom:142.495467pt;}
.y156{bottom:142.513333pt;}
.ye6{bottom:142.558800pt;}
.y123{bottom:143.102267pt;}
.y1cb{bottom:143.539733pt;}
.y181{bottom:143.593067pt;}
.y6e{bottom:144.899733pt;}
.y1d{bottom:145.540533pt;}
.yb7{bottom:146.006667pt;}
.yc8{bottom:146.058267pt;}
.y1a7{bottom:148.926400pt;}
.y1ec{bottom:149.193067pt;}
.y212{bottom:149.806400pt;}
.y94{bottom:152.993067pt;}
.y43{bottom:158.379733pt;}
.yf8{bottom:158.508800pt;}
.y155{bottom:158.540000pt;}
.ye5{bottom:158.585467pt;}
.y180{bottom:159.979733pt;}
.y1c{bottom:161.540533pt;}
.y6d{bottom:161.673067pt;}
.yb6{bottom:163.206667pt;}
.yc7{bottom:163.258267pt;}
.y122{bottom:164.998267pt;}
.y1a6{bottom:165.139733pt;}
.y1eb{bottom:165.513067pt;}
.y1ca{bottom:165.526400pt;}
.y211{bottom:166.153067pt;}
.y42{bottom:174.393067pt;}
.yf7{bottom:174.522133pt;}
.y154{bottom:174.566667pt;}
.ye4{bottom:174.612133pt;}
.y17f{bottom:176.366400pt;}
.y1b{bottom:177.540533pt;}
.y93{bottom:177.593067pt;}
.y6c{bottom:178.446400pt;}
.yb5{bottom:180.406667pt;}
.yc6{bottom:180.458267pt;}
.y1a5{bottom:181.353067pt;}
.y1ea{bottom:181.833067pt;}
.y1c9{bottom:181.846400pt;}
.y210{bottom:182.499733pt;}
.y121{bottom:186.894267pt;}
.y41{bottom:190.406400pt;}
.yf6{bottom:190.535467pt;}
.y153{bottom:190.593333pt;}
.ye3{bottom:190.637333pt;}
.y17e{bottom:192.753067pt;}
.y1a{bottom:193.540533pt;}
.y92{bottom:194.646400pt;}
.y6b{bottom:195.219733pt;}
.yb4{bottom:197.606667pt;}
.yc5{bottom:197.658267pt;}
.y1a4{bottom:203.233067pt;}
.y1e9{bottom:203.819733pt;}
.y1c8{bottom:203.833067pt;}
.y20f{bottom:205.273067pt;}
.y40{bottom:206.419733pt;}
.yf5{bottom:206.548800pt;}
.y152{bottom:206.620000pt;}
.ye2{bottom:206.662400pt;}
.y120{bottom:208.790267pt;}
.y17d{bottom:209.139733pt;}
.y19{bottom:209.540533pt;}
.y6a{bottom:211.993067pt;}
.yb3{bottom:214.806667pt;}
.y1a3{bottom:219.446400pt;}
.y1e8{bottom:220.139733pt;}
.y1c7{bottom:220.153067pt;}
.y20e{bottom:221.619733pt;}
.yf4{bottom:222.549867pt;}
.y151{bottom:222.646667pt;}
.ye1{bottom:222.684400pt;}
.y17c{bottom:225.526400pt;}
.y18{bottom:225.540533pt;}
.y69{bottom:228.766400pt;}
.y11f{bottom:230.686267pt;}
.yb2{bottom:232.006667pt;}
.yc4{bottom:232.058267pt;}
.y3f{bottom:233.766400pt;}
.y91{bottom:236.299733pt;}
.y1e7{bottom:236.459733pt;}
.y1c6{bottom:236.473067pt;}
.y20d{bottom:237.966400pt;}
.yf3{bottom:238.563200pt;}
.y150{bottom:238.673333pt;}
.ye0{bottom:238.711067pt;}
.y1a2{bottom:241.326400pt;}
.y17{bottom:241.540533pt;}
.y17b{bottom:241.913067pt;}
.y68{bottom:245.539733pt;}
.yb1{bottom:249.206667pt;}
.y3e{bottom:249.779733pt;}
.y11e{bottom:252.582267pt;}
.y1c5{bottom:252.793067pt;}
.y90{bottom:253.353067pt;}
.yf2{bottom:254.576533pt;}
.y14f{bottom:254.700000pt;}
.ydf{bottom:254.737733pt;}
.y1a1{bottom:257.539733pt;}
.y16{bottom:257.540533pt;}
.y17a{bottom:258.299733pt;}
.y1e6{bottom:258.446400pt;}
.y20c{bottom:260.739733pt;}
.y67{bottom:262.313067pt;}
.y3d{bottom:265.793067pt;}
.y8f{bottom:270.406400pt;}
.yf1{bottom:270.585733pt;}
.y14e{bottom:270.726667pt;}
.yde{bottom:270.761333pt;}
.y15{bottom:273.540533pt;}
.y1a0{bottom:273.753067pt;}
.y11d{bottom:274.478267pt;}
.y179{bottom:274.686400pt;}
.y1e5{bottom:274.766400pt;}
.y1c4{bottom:274.779733pt;}
.y20b{bottom:277.086400pt;}
.y66{bottom:279.086400pt;}
.y3c{bottom:281.806400pt;}
.yb0{bottom:283.606667pt;}
.yc3{bottom:283.658267pt;}
.yf0{bottom:286.578533pt;}
.y14d{bottom:286.753333pt;}
.ydd{bottom:286.788000pt;}
.y8e{bottom:287.459733pt;}
.y14{bottom:289.540533pt;}
.y178{bottom:291.073067pt;}
.y1e4{bottom:291.086400pt;}
.y1c3{bottom:291.099733pt;}
.y20a{bottom:293.433067pt;}
.y11a{bottom:294.484267pt;}
.y19f{bottom:295.633067pt;}
.y65{bottom:295.859733pt;}
.y11c{bottom:296.374267pt;}
.y119{bottom:296.379867pt;}
.y3b{bottom:297.819733pt;}
.yaf{bottom:300.806667pt;}
.yc2{bottom:300.858267pt;}
.yef{bottom:302.591867pt;}
.y14c{bottom:302.780000pt;}
.ydc{bottom:302.811467pt;}
.y118{bottom:302.896533pt;}
.y8d{bottom:304.513067pt;}
.y13{bottom:305.540533pt;}
.y1c2{bottom:307.419733pt;}
.y177{bottom:307.459733pt;}
.y11b{bottom:309.407600pt;}
.y19e{bottom:311.846400pt;}
.y64{bottom:312.633067pt;}
.y1e3{bottom:313.073067pt;}
.y3a{bottom:313.833067pt;}
.y209{bottom:316.206400pt;}
.yae{bottom:318.006667pt;}
.yc1{bottom:318.058267pt;}
.yee{bottom:318.605200pt;}
.y14b{bottom:318.806667pt;}
.ydb{bottom:318.838133pt;}
.y12{bottom:321.540533pt;}
.y8c{bottom:321.566400pt;}
.y176{bottom:323.846400pt;}
.y19d{bottom:328.059733pt;}
.y1e2{bottom:329.393067pt;}
.y63{bottom:329.406400pt;}
.y117{bottom:331.309200pt;}
.y208{bottom:332.553067pt;}
.yed{bottom:334.618533pt;}
.y14a{bottom:334.833333pt;}
.yda{bottom:334.846133pt;}
.yad{bottom:335.206667pt;}
.yc0{bottom:335.258267pt;}
.y11{bottom:337.540533pt;}
.y8b{bottom:338.619733pt;}
.y175{bottom:340.233067pt;}
.y115{bottom:344.342533pt;}
.y1e1{bottom:345.713067pt;}
.y1c1{bottom:345.726400pt;}
.y39{bottom:345.846400pt;}
.y62{bottom:346.179733pt;}
.y19c{bottom:349.939733pt;}
.yec{bottom:350.631867pt;}
.y149{bottom:350.860000pt;}
.yd9{bottom:350.872800pt;}
.yac{bottom:352.406667pt;}
.y10{bottom:353.540533pt;}
.y207{bottom:355.326400pt;}
.y8a{bottom:355.673067pt;}
.y174{bottom:356.619733pt;}
.y116{bottom:357.375867pt;}
.y1c0{bottom:362.046400pt;}
.y61{bottom:362.953067pt;}
.y19b{bottom:366.153067pt;}
.yeb{bottom:366.645200pt;}
.y148{bottom:366.886667pt;}
.yd8{bottom:366.899467pt;}
.y1e0{bottom:367.699733pt;}
.yab{bottom:369.606667pt;}
.y206{bottom:371.673067pt;}
.y89{bottom:372.726400pt;}
.y173{bottom:373.006400pt;}
.y60{bottom:379.726400pt;}
.y19a{bottom:382.366400pt;}
.y147{bottom:382.913333pt;}
.yd7{bottom:382.926133pt;}
.y1df{bottom:384.019733pt;}
.y1bf{bottom:384.033067pt;}
.yf{bottom:385.540533pt;}
.y114{bottom:385.699067pt;}
.yaa{bottom:386.806667pt;}
.y205{bottom:388.019733pt;}
.y172{bottom:389.393067pt;}
.y88{bottom:389.779733pt;}
.y38{bottom:391.206400pt;}
.y5f{bottom:396.499733pt;}
.y12c{bottom:398.728267pt;}
.y146{bottom:398.940000pt;}
.yd6{bottom:398.952800pt;}
.y1de{bottom:400.339733pt;}
.y1be{bottom:400.353067pt;}
.ybf{bottom:404.006667pt;}
.y199{bottom:404.246400pt;}
.yea{bottom:405.330400pt;}
.y171{bottom:405.779733pt;}
.y87{bottom:406.833067pt;}
.y37{bottom:407.219733pt;}
.y113{bottom:407.659067pt;}
.y204{bottom:410.793067pt;}
.y5e{bottom:413.273067pt;}
.y12b{bottom:414.736267pt;}
.y145{bottom:414.966667pt;}
.yd5{bottom:414.979467pt;}
.y1bd{bottom:416.673067pt;}
.y198{bottom:420.459733pt;}
.ya9{bottom:421.206667pt;}
.y170{bottom:422.166400pt;}
.y1dd{bottom:422.326400pt;}
.y86{bottom:423.886400pt;}
.y36{bottom:427.006400pt;}
.y203{bottom:427.139733pt;}
.y5d{bottom:430.046400pt;}
.y144{bottom:430.993333pt;}
.yd4{bottom:431.006133pt;}
.y1bc{bottom:432.993067pt;}
.y197{bottom:436.673067pt;}
.y112{bottom:438.059067pt;}
.ybe{bottom:438.406667pt;}
.y16f{bottom:438.553067pt;}
.y1dc{bottom:438.646400pt;}
.y85{bottom:440.939733pt;}
.y35{bottom:443.019733pt;}
.y202{bottom:443.486400pt;}
.y5c{bottom:446.819733pt;}
.y143{bottom:447.020000pt;}
.yd3{bottom:447.032800pt;}
.ye{bottom:449.540533pt;}
.y196{bottom:452.886400pt;}
.y111{bottom:454.059067pt;}
.y16e{bottom:454.939733pt;}
.y1db{bottom:454.966400pt;}
.y1bb{bottom:454.979733pt;}
.ya8{bottom:455.606667pt;}
.y84{bottom:457.993067pt;}
.y34{bottom:459.033067pt;}
.yd{bottom:462.340533pt;}
.y142{bottom:463.046667pt;}
.yd2{bottom:463.059467pt;}
.y5b{bottom:463.593067pt;}
.y201{bottom:466.259733pt;}
.y110{bottom:470.059067pt;}
.y1ba{bottom:471.299733pt;}
.y16d{bottom:471.326400pt;}
.ya7{bottom:472.806667pt;}
.y195{bottom:474.766400pt;}
.y33{bottom:475.046400pt;}
.yc{bottom:475.140533pt;}
.y1da{bottom:476.953067pt;}
.y141{bottom:479.073333pt;}
.yd1{bottom:479.086133pt;}
.y5a{bottom:480.366400pt;}
.y200{bottom:482.606400pt;}
.y10f{bottom:486.059067pt;}
.y1b9{bottom:487.619733pt;}
.y16c{bottom:487.713067pt;}
.yb{bottom:487.940533pt;}
.ya6{bottom:490.006667pt;}
.y194{bottom:490.979733pt;}
.y32{bottom:491.059733pt;}
.y83{bottom:492.099733pt;}
.y1d9{bottom:493.273067pt;}
.y140{bottom:495.100000pt;}
.yd0{bottom:495.112800pt;}
.y59{bottom:497.139733pt;}
.y1ff{bottom:498.953067pt;}
.y10e{bottom:502.059067pt;}
.y16b{bottom:504.099733pt;}
.ya{bottom:504.520000pt;}
.y31{bottom:507.073067pt;}
.y193{bottom:507.193067pt;}
.ya5{bottom:507.206667pt;}
.y82{bottom:509.153067pt;}
.y1d8{bottom:509.593067pt;}
.y1b8{bottom:509.606400pt;}
.y13f{bottom:511.126667pt;}
.ycf{bottom:511.139467pt;}
.y58{bottom:513.913067pt;}
.y10d{bottom:518.059067pt;}
.y16a{bottom:520.486400pt;}
.y9{bottom:520.520000pt;}
.y1fe{bottom:521.726400pt;}
.y30{bottom:523.086400pt;}
.ya4{bottom:524.406667pt;}
.y1d7{bottom:525.913067pt;}
.y1b7{bottom:525.926400pt;}
.y81{bottom:526.206400pt;}
.y13e{bottom:527.153333pt;}
.yce{bottom:527.166133pt;}
.y57{bottom:530.686400pt;}
.y10c{bottom:534.059067pt;}
.y169{bottom:536.873067pt;}
.y1fd{bottom:538.073067pt;}
.y2f{bottom:539.099733pt;}
.y192{bottom:539.633067pt;}
.ya3{bottom:541.606667pt;}
.y1b6{bottom:542.246400pt;}
.y13d{bottom:543.180000pt;}
.y80{bottom:543.259733pt;}
.y56{bottom:547.459733pt;}
.y1d6{bottom:547.899733pt;}
.y10b{bottom:550.059067pt;}
.y168{bottom:553.259733pt;}
.y1fc{bottom:554.419733pt;}
.y2e{bottom:555.113067pt;}
.ybd{bottom:558.806667pt;}
.y8{bottom:558.920000pt;}
.y13c{bottom:559.206667pt;}
.ycd{bottom:559.217467pt;}
.y7f{bottom:560.313067pt;}
.y1d5{bottom:564.219733pt;}
.y55{bottom:564.233067pt;}
.y10a{bottom:566.059067pt;}
.y167{bottom:569.646400pt;}
.y2d{bottom:571.126400pt;}
.ycc{bottom:573.641467pt;}
.y13b{bottom:575.233333pt;}
.ya2{bottom:576.006667pt;}
.y1fb{bottom:577.193067pt;}
.y7e{bottom:577.366400pt;}
.y1d4{bottom:580.539733pt;}
.y1b5{bottom:580.553067pt;}
.y54{bottom:581.006400pt;}
.y7{bottom:581.320000pt;}
.y109{bottom:582.059067pt;}
.y166{bottom:586.033067pt;}
.y2c{bottom:587.139733pt;}
.y191{bottom:588.286400pt;}
.y13a{bottom:591.260000pt;}
.y220{bottom:592.766400pt;}
.ybc{bottom:593.206667pt;}
.y1fa{bottom:593.539733pt;}
.y7d{bottom:594.419733pt;}
.y1b4{bottom:596.873067pt;}
.y53{bottom:597.779733pt;}
.y108{bottom:598.059067pt;}
.y165{bottom:602.419733pt;}
.y2b{bottom:603.153067pt;}
.y190{bottom:604.499733pt;}
.y139{bottom:607.286667pt;}
.y21f{bottom:608.886400pt;}
.y1f9{bottom:609.886400pt;}
.ya1{bottom:610.406667pt;}
.y7c{bottom:611.473067pt;}
.y52{bottom:614.553067pt;}
.y164{bottom:618.806400pt;}
.y1b3{bottom:618.859733pt;}
.y2a{bottom:619.166400pt;}
.y18f{bottom:620.713067pt;}
.y138{bottom:623.313333pt;}
.y1d3{bottom:624.526400pt;}
.y21e{bottom:625.006400pt;}
.y6{bottom:626.120000pt;}
.ya0{bottom:627.606667pt;}
.y7b{bottom:628.526400pt;}
.y107{bottom:630.059067pt;}
.y51{bottom:631.326400pt;}
.y1f8{bottom:632.659733pt;}
.y29{bottom:635.179733pt;}
.y163{bottom:635.193067pt;}
.y18e{bottom:636.926400pt;}
.y137{bottom:639.340000pt;}
.y1d2{bottom:640.846400pt;}
.y21d{bottom:641.126400pt;}
.y9f{bottom:644.806667pt;}
.y7a{bottom:645.579733pt;}
.y50{bottom:648.099733pt;}
.y5{bottom:648.520000pt;}
.y1f7{bottom:649.006400pt;}
.y106{bottom:650.980400pt;}
.y28{bottom:651.193067pt;}
.y1b2{bottom:651.499733pt;}
.y162{bottom:651.579733pt;}
.y18d{bottom:653.139733pt;}
.y136{bottom:655.366667pt;}
.y1d1{bottom:657.166400pt;}
.y9e{bottom:662.006667pt;}
.y79{bottom:662.633067pt;}
.y21c{bottom:663.673067pt;}
.y105{bottom:664.780400pt;}
.y4f{bottom:664.873067pt;}
.y1f6{bottom:665.353067pt;}
.y27{bottom:667.206400pt;}
.y161{bottom:667.966400pt;}
.y18c{bottom:669.353067pt;}
.y135{bottom:671.393333pt;}
.y1b1{bottom:673.486400pt;}
.y9d{bottom:679.206667pt;}
.y78{bottom:679.686400pt;}
.y21b{bottom:679.793067pt;}
.y4e{bottom:681.646400pt;}
.y104{bottom:684.232400pt;}
.y160{bottom:684.353067pt;}
.y18b{bottom:685.566400pt;}
.y134{bottom:687.420000pt;}
.y1f5{bottom:688.126400pt;}
.y1b0{bottom:689.806400pt;}
.y1d0{bottom:695.473067pt;}
.y21a{bottom:695.913067pt;}
.y9c{bottom:696.406667pt;}
.y77{bottom:696.739733pt;}
.y103{bottom:698.032400pt;}
.y4d{bottom:698.419733pt;}
.y26{bottom:699.219733pt;}
.y15f{bottom:700.739733pt;}
.y18a{bottom:701.779733pt;}
.y12a{bottom:702.984400pt;}
.y133{bottom:703.446667pt;}
.y1f4{bottom:704.473067pt;}
.y1af{bottom:706.126400pt;}
.y1cf{bottom:711.793067pt;}
.y219{bottom:712.033067pt;}
.y9b{bottom:713.606667pt;}
.y76{bottom:713.793067pt;}
.y4c{bottom:715.193067pt;}
.y102{bottom:715.757867pt;}
.y15e{bottom:717.126400pt;}
.y101{bottom:717.482267pt;}
.y189{bottom:717.993067pt;}
.y129{bottom:718.996800pt;}
.y132{bottom:719.473333pt;}
.y1f3{bottom:720.819733pt;}
.y100{bottom:724.382267pt;}
.y1ae{bottom:728.113067pt;}
.y218{bottom:728.153067pt;}
.y9a{bottom:730.806667pt;}
.y75{bottom:730.846400pt;}
.y25{bottom:731.233067pt;}
.y4b{bottom:731.966400pt;}
.y15d{bottom:733.513067pt;}
.y188{bottom:734.206400pt;}
.y128{bottom:735.009200pt;}
.y131{bottom:735.500000pt;}
.y1f2{bottom:743.593067pt;}
.y1ad{bottom:744.433067pt;}
.y24{bottom:747.246400pt;}
.y74{bottom:747.899733pt;}
.ybb{bottom:748.006667pt;}
.y4a{bottom:748.739733pt;}
.y15c{bottom:749.899733pt;}
.y187{bottom:750.419733pt;}
.y217{bottom:750.699733pt;}
.yff{bottom:750.734267pt;}
.y127{bottom:751.021600pt;}
.y130{bottom:751.526667pt;}
.y1f1{bottom:759.939733pt;}
.y1ac{bottom:760.753067pt;}
.y73{bottom:764.953067pt;}
.y99{bottom:765.206667pt;}
.y49{bottom:765.513067pt;}
.y15b{bottom:766.286400pt;}
.y1ce{bottom:766.419733pt;}
.y186{bottom:766.633067pt;}
.y216{bottom:766.819733pt;}
.y23{bottom:767.033067pt;}
.y126{bottom:767.034000pt;}
.y12f{bottom:767.553333pt;}
.yfe{bottom:778.075600pt;}
.y72{bottom:782.006400pt;}
.y48{bottom:782.286400pt;}
.y15a{bottom:782.673067pt;}
.y1f0{bottom:782.713067pt;}
.y1ab{bottom:782.739733pt;}
.y185{bottom:782.846400pt;}
.y215{bottom:782.939733pt;}
.y22{bottom:783.046400pt;}
.y21{bottom:799.059733pt;}
.y98{bottom:799.606667pt;}
.yfd{bottom:800.035600pt;}
.y4{bottom:813.003867pt;}
.y3{bottom:827.403867pt;}
.y2{bottom:841.803867pt;}
.y47{bottom:843.034267pt;}
.y20{bottom:843.034400pt;}
.h24{height:19.948437pt;}
.h25{height:31.410156pt;}
.h21{height:33.114583pt;}
.h20{height:33.247396pt;}
.h1a{height:35.203125pt;}
.h7{height:37.500000pt;}
.h2{height:38.937500pt;}
.h8{height:40.000000pt;}
.h1f{height:41.924479pt;}
.h3{height:43.265625pt;}
.h19{height:43.804688pt;}
.hd{height:44.390625pt;}
.h6{height:46.875000pt;}
.h9{height:48.671875pt;}
.ha{height:49.322917pt;}
.h26{height:49.326650pt;}
.h13{height:49.328783pt;}
.h12{height:49.329317pt;}
.h10{height:49.335183pt;}
.hf{height:49.335717pt;}
.h18{height:49.338917pt;}
.h15{height:49.339450pt;}
.h11{height:49.341583pt;}
.h16{height:49.371983pt;}
.he{height:49.397583pt;}
.h17{height:49.404517pt;}
.h14{height:49.405050pt;}
.hc{height:49.442383pt;}
.hb{height:49.529317pt;}
.h4{height:56.000000pt;}
.h22{height:59.314063pt;}
.h1b{height:62.803125pt;}
.h5{height:65.625000pt;}
.h1d{height:69.709258pt;}
.h23{height:79.917177pt;}
.h1c{height:83.514188pt;}
.h1e{height:99.590625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x2{left:68.031467pt;}
.x3{left:72.089867pt;}
.x18{left:73.363467pt;}
.xe{left:86.932800pt;}
.x21{left:88.423200pt;}
.x7{left:92.922000pt;}
.x16{left:96.747200pt;}
.xb{left:98.773333pt;}
.x13{left:105.818133pt;}
.x5{left:107.481867pt;}
.x9{left:121.973333pt;}
.x12{left:124.711467pt;}
.xa{left:139.338667pt;}
.x17{left:149.863467pt;}
.xf{left:161.717333pt;}
.xc{left:174.197333pt;}
.x19{left:188.155467pt;}
.x20{left:198.418933pt;}
.x4{left:219.575200pt;}
.x24{left:245.208400pt;}
.x11{left:246.698133pt;}
.x6{left:249.927200pt;}
.x8{left:270.755600pt;}
.x23{left:275.227200pt;}
.x22{left:284.479200pt;}
.x25{left:285.502400pt;}
.x15{left:287.592667pt;}
.xd{left:292.386133pt;}
.x10{left:294.044800pt;}
.x14{left:297.168000pt;}
.x1{left:300.250800pt;}
.x1a{left:351.790000pt;}
.x1e{left:405.354267pt;}
.x1f{left:445.984267pt;}
.x1c{left:497.082933pt;}
.x1b{left:498.046267pt;}
.x1d{left:518.661600pt;}
}




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