
    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_16553678a52f5582cb08f441.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.996000;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_17827e04556cabcafe0f891c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.024000;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_db74f5f448436ac61f2b34bc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.984000;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_4f4d89c8be3ae6edc1f8bc64.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.074100;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_1e3d317762634bcecf43a8c5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.966016;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_856dfcb179c937e5e9c41e78.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.089000;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_0ae3d281de269f15cf69ea56.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9363cbaf5c82ca6d69966ece.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.851000;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_a74e75f5d5ebe76ba4998c0e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.045000;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_0fce6cc90b68ca97957c9220.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.024000;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_16553678a52f5582cb08f441.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.996000;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_9d85537a1d3f2b0df01abd7e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.754000;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_f8c75795b1e1e9d32d7c74f0.woff2')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_45c105474e996959384fe7a2.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.703000;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;}
.m2{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,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);}
.v4{vertical-align:-39.978000px;}
.v7{vertical-align:-33.978000px;}
.v3{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.980000px;}
.v6{vertical-align:21.978000px;}
.v5{vertical-align:33.977400px;}
.v1{vertical-align:35.976000px;}
.ls33{letter-spacing:-3.960000px;}
.ls2d{letter-spacing:-0.792000px;}
.ls15{letter-spacing:-0.648000px;}
.ls2f{letter-spacing:-0.612000px;}
.ls7{letter-spacing:-0.540000px;}
.ls1c{letter-spacing:-0.528000px;}
.ls2a{letter-spacing:-0.510000px;}
.ls9{letter-spacing:-0.480000px;}
.ls26{letter-spacing:-0.459000px;}
.lsa{letter-spacing:-0.420000px;}
.ls29{letter-spacing:-0.408000px;}
.ls11{letter-spacing:-0.390000px;}
.lsb{letter-spacing:-0.360000px;}
.ls27{letter-spacing:-0.357000px;}
.ls22{letter-spacing:-0.306000px;}
.lsc{letter-spacing:-0.300000px;}
.ls16{letter-spacing:-0.270000px;}
.ls1e{letter-spacing:-0.255000px;}
.lsd{letter-spacing:-0.244860px;}
.ls14{letter-spacing:-0.240000px;}
.lsf{letter-spacing:-0.209880px;}
.ls1d{letter-spacing:-0.204000px;}
.ls25{letter-spacing:-0.192390px;}
.ls10{letter-spacing:-0.174900px;}
.ls23{letter-spacing:-0.153000px;}
.lse{letter-spacing:-0.120000px;}
.ls24{letter-spacing:-0.102000px;}
.ls12{letter-spacing:-0.060000px;}
.ls2b{letter-spacing:-0.051000px;}
.ls8{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.000120px;}
.ls31{letter-spacing:0.025500px;}
.ls13{letter-spacing:0.069960px;}
.ls2e{letter-spacing:0.102000px;}
.ls5{letter-spacing:0.120000px;}
.ls30{letter-spacing:0.204000px;}
.ls18{letter-spacing:0.228000px;}
.ls2{letter-spacing:0.240000px;}
.ls28{letter-spacing:0.255000px;}
.ls3{letter-spacing:0.300000px;}
.ls20{letter-spacing:0.324000px;}
.ls6{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.408000px;}
.ls32{letter-spacing:0.462000px;}
.ls2c{letter-spacing:0.510000px;}
.ls1f{letter-spacing:0.540000px;}
.ls38{letter-spacing:0.594000px;}
.ls4{letter-spacing:0.600000px;}
.ls36{letter-spacing:0.990000px;}
.ls1a{letter-spacing:1.140000px;}
.ls1{letter-spacing:1.199400px;}
.ls0{letter-spacing:1.200000px;}
.ls37{letter-spacing:1.716000px;}
.ls1b{letter-spacing:1.980000px;}
.ls19{letter-spacing:3.180000px;}
.ls34{letter-spacing:3.416400px;}
.ls35{letter-spacing:16.194600px;}
.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;}
}
.ws14f{word-spacing:-18.216000px;}
.ws137{word-spacing:-17.490000px;}
.ws150{word-spacing:-17.094000px;}
.ws130{word-spacing:-16.962000px;}
.ws3d{word-spacing:-16.500000px;}
.ws0{word-spacing:-15.840000px;}
.ws101{word-spacing:-15.708000px;}
.ws25{word-spacing:-14.400000px;}
.ws4{word-spacing:-14.100000px;}
.ws1{word-spacing:-13.464000px;}
.ws7{word-spacing:-12.852000px;}
.ws9e{word-spacing:-12.648000px;}
.ws124{word-spacing:-12.597000px;}
.ws12f{word-spacing:-12.540000px;}
.ws72{word-spacing:-12.495000px;}
.ws26{word-spacing:-12.240000px;}
.ws6{word-spacing:-9.619500px;}
.wsb1{word-spacing:-9.427110px;}
.ws5{word-spacing:-8.814960px;}
.ws27{word-spacing:-8.745000px;}
.ws3{word-spacing:-8.570100px;}
.ws2{word-spacing:-8.500140px;}
.ws135{word-spacing:-5.610000px;}
.ws115{word-spacing:-4.158000px;}
.ws153{word-spacing:-3.960000px;}
.ws22{word-spacing:-3.774000px;}
.wscb{word-spacing:-3.366000px;}
.ws23{word-spacing:-3.348000px;}
.ws7b{word-spacing:-3.300000px;}
.ws3a{word-spacing:-3.180000px;}
.ws10c{word-spacing:-3.168000px;}
.ws69{word-spacing:-3.102000px;}
.ws45{word-spacing:-3.036000px;}
.ws11{word-spacing:-3.000000px;}
.ws14d{word-spacing:-2.970000px;}
.ws122{word-spacing:-2.958000px;}
.ws8e{word-spacing:-2.904000px;}
.ws4d{word-spacing:-2.838000px;}
.wsd2{word-spacing:-2.772000px;}
.ws106{word-spacing:-2.640000px;}
.wsa2{word-spacing:-2.574000px;}
.ws71{word-spacing:-2.550000px;}
.ws12{word-spacing:-2.520000px;}
.ws158{word-spacing:-2.508000px;}
.ws12a{word-spacing:-2.499000px;}
.ws34{word-spacing:-2.460000px;}
.ws3f{word-spacing:-2.442000px;}
.wsb{word-spacing:-2.400000px;}
.wsfc{word-spacing:-2.397000px;}
.ws155{word-spacing:-2.376000px;}
.ws32{word-spacing:-2.280000px;}
.wsbe{word-spacing:-2.244000px;}
.wsc0{word-spacing:-2.193000px;}
.wsba{word-spacing:-2.178000px;}
.ws33{word-spacing:-2.160000px;}
.wsfa{word-spacing:-2.142000px;}
.wsef{word-spacing:-2.112000px;}
.ws18{word-spacing:-2.100000px;}
.ws7f{word-spacing:-2.046000px;}
.wsb0{word-spacing:-2.040000px;}
.wsae{word-spacing:-1.989000px;}
.ws3c{word-spacing:-1.980000px;}
.ws19{word-spacing:-1.950000px;}
.wsc2{word-spacing:-1.938000px;}
.ws7c{word-spacing:-1.914000px;}
.ws99{word-spacing:-1.848000px;}
.wsd{word-spacing:-1.800000px;}
.ws104{word-spacing:-1.782000px;}
.wse8{word-spacing:-1.734000px;}
.wsa5{word-spacing:-1.716000px;}
.ws8f{word-spacing:-1.650000px;}
.wsa7{word-spacing:-1.632000px;}
.ws100{word-spacing:-1.581000px;}
.wsab{word-spacing:-1.530000px;}
.ws6e{word-spacing:-1.518000px;}
.wse{word-spacing:-1.500000px;}
.ws59{word-spacing:-1.479000px;}
.ws56{word-spacing:-1.452000px;}
.ws17{word-spacing:-1.440000px;}
.ws108{word-spacing:-1.428000px;}
.wscc{word-spacing:-1.386000px;}
.wsaa{word-spacing:-1.377000px;}
.ws24{word-spacing:-1.350000px;}
.ws132{word-spacing:-1.320000px;}
.ws5a{word-spacing:-1.275000px;}
.ws82{word-spacing:-1.260000px;}
.ws8a{word-spacing:-1.254000px;}
.ws12b{word-spacing:-1.224000px;}
.ws9{word-spacing:-1.200000px;}
.ws98{word-spacing:-1.188000px;}
.ws3b{word-spacing:-1.140000px;}
.ws84{word-spacing:-1.134000px;}
.wsc1{word-spacing:-1.122000px;}
.wsd0{word-spacing:-1.071000px;}
.wsd1{word-spacing:-1.056000px;}
.wsf9{word-spacing:-1.020000px;}
.ws145{word-spacing:-0.990000px;}
.ws4b{word-spacing:-0.924000px;}
.ws117{word-spacing:-0.858000px;}
.wsf4{word-spacing:-0.816000px;}
.ws4c{word-spacing:-0.792000px;}
.ws9d{word-spacing:-0.765000px;}
.ws4e{word-spacing:-0.726000px;}
.wse6{word-spacing:-0.714000px;}
.wsa9{word-spacing:-0.663000px;}
.ws65{word-spacing:-0.660000px;}
.ws109{word-spacing:-0.612000px;}
.ws83{word-spacing:-0.600000px;}
.ws7e{word-spacing:-0.594000px;}
.wsff{word-spacing:-0.561000px;}
.wsf7{word-spacing:-0.528000px;}
.wsa8{word-spacing:-0.510000px;}
.ws10{word-spacing:-0.480000px;}
.wsa4{word-spacing:-0.462000px;}
.wse5{word-spacing:-0.408000px;}
.ws119{word-spacing:-0.396000px;}
.ws31{word-spacing:-0.360000px;}
.ws81{word-spacing:-0.357000px;}
.ws10f{word-spacing:-0.330000px;}
.ws118{word-spacing:-0.306000px;}
.wscf{word-spacing:-0.264000px;}
.ws38{word-spacing:-0.240000px;}
.ws39{word-spacing:-0.228000px;}
.ws9c{word-spacing:-0.204000px;}
.wsf1{word-spacing:-0.198000px;}
.ws44{word-spacing:-0.132000px;}
.ws123{word-spacing:-0.102000px;}
.wscd{word-spacing:-0.066000px;}
.ws13f{word-spacing:-0.056100px;}
.wsf2{word-spacing:-0.051000px;}
.ws8{word-spacing:0.000000px;}
.wsaf{word-spacing:0.051000px;}
.wsf5{word-spacing:0.066000px;}
.wse9{word-spacing:0.102000px;}
.ws8b{word-spacing:0.132000px;}
.ws21{word-spacing:0.174900px;}
.wse3{word-spacing:0.198000px;}
.ws14{word-spacing:0.209880px;}
.ws10a{word-spacing:0.255000px;}
.ws105{word-spacing:0.264000px;}
.wse4{word-spacing:0.306000px;}
.ws91{word-spacing:0.330000px;}
.wsad{word-spacing:0.357000px;}
.wsd4{word-spacing:0.396000px;}
.wsc{word-spacing:0.420000px;}
.ws12c{word-spacing:0.459000px;}
.ws6a{word-spacing:0.462000px;}
.wsc7{word-spacing:0.528000px;}
.wsa{word-spacing:0.540000px;}
.ws86{word-spacing:0.594000px;}
.ws13{word-spacing:0.600000px;}
.wse7{word-spacing:0.612000px;}
.wsa3{word-spacing:0.660000px;}
.ws128{word-spacing:0.663000px;}
.ws1f{word-spacing:0.720000px;}
.ws8d{word-spacing:0.726000px;}
.wsf8{word-spacing:0.765000px;}
.ws51{word-spacing:0.792000px;}
.wsf3{word-spacing:0.816000px;}
.ws9f{word-spacing:0.858000px;}
.ws8c{word-spacing:0.924000px;}
.ws89{word-spacing:0.990000px;}
.ws63{word-spacing:1.056000px;}
.ws1a{word-spacing:1.080000px;}
.ws7d{word-spacing:1.122000px;}
.ws10d{word-spacing:1.188000px;}
.ws9b{word-spacing:1.254000px;}
.ws6d{word-spacing:1.320000px;}
.ws66{word-spacing:1.386000px;}
.wsed{word-spacing:1.452000px;}
.ws11a{word-spacing:1.518000px;}
.ws93{word-spacing:1.584000px;}
.ws28{word-spacing:1.620000px;}
.ws10b{word-spacing:1.650000px;}
.ws13c{word-spacing:1.716000px;}
.wsf6{word-spacing:1.782000px;}
.ws68{word-spacing:1.848000px;}
.ws85{word-spacing:1.914000px;}
.ws35{word-spacing:1.980000px;}
.ws52{word-spacing:2.046000px;}
.wsa1{word-spacing:2.112000px;}
.wsbf{word-spacing:2.178000px;}
.ws50{word-spacing:2.244000px;}
.ws7a{word-spacing:2.310000px;}
.wsbb{word-spacing:2.376000px;}
.ws133{word-spacing:2.442000px;}
.ws1c{word-spacing:2.460000px;}
.ws11b{word-spacing:2.508000px;}
.ws61{word-spacing:2.574000px;}
.ws129{word-spacing:2.601000px;}
.ws4a{word-spacing:2.640000px;}
.ws67{word-spacing:2.706000px;}
.ws88{word-spacing:2.772000px;}
.wsb9{word-spacing:2.838000px;}
.ws10e{word-spacing:2.904000px;}
.ws1d{word-spacing:2.940000px;}
.wsda{word-spacing:2.970000px;}
.ws20{word-spacing:3.000000px;}
.wsca{word-spacing:3.036000px;}
.wse2{word-spacing:3.102000px;}
.wsd3{word-spacing:3.168000px;}
.ws102{word-spacing:3.234000px;}
.wse1{word-spacing:3.300000px;}
.ws36{word-spacing:3.360000px;}
.ws6b{word-spacing:3.366000px;}
.ws116{word-spacing:3.432000px;}
.ws49{word-spacing:3.498000px;}
.ws90{word-spacing:3.564000px;}
.wsf{word-spacing:3.600000px;}
.wsb6{word-spacing:3.630000px;}
.ws2a{word-spacing:3.660000px;}
.wsde{word-spacing:3.696000px;}
.ws87{word-spacing:3.762000px;}
.wsfe{word-spacing:3.828000px;}
.wsea{word-spacing:3.876000px;}
.ws134{word-spacing:3.894000px;}
.ws5c{word-spacing:3.960000px;}
.ws121{word-spacing:4.026000px;}
.wsdb{word-spacing:4.092000px;}
.ws92{word-spacing:4.158000px;}
.ws70{word-spacing:4.224000px;}
.ws15{word-spacing:4.260000px;}
.wsa6{word-spacing:4.290000px;}
.wsfd{word-spacing:4.356000px;}
.wsc9{word-spacing:4.422000px;}
.ws16{word-spacing:4.440000px;}
.ws64{word-spacing:4.554000px;}
.ws53{word-spacing:4.620000px;}
.ws79{word-spacing:4.686000px;}
.ws47{word-spacing:4.752000px;}
.ws2c{word-spacing:4.800000px;}
.wsd5{word-spacing:4.818000px;}
.wsc8{word-spacing:4.884000px;}
.ws103{word-spacing:4.950000px;}
.ws5e{word-spacing:5.016000px;}
.wsce{word-spacing:5.082000px;}
.ws42{word-spacing:5.148000px;}
.wsac{word-spacing:5.202000px;}
.ws9a{word-spacing:5.214000px;}
.ws1e{word-spacing:5.280000px;}
.ws80{word-spacing:5.346000px;}
.ws14b{word-spacing:5.412000px;}
.wsd8{word-spacing:5.478000px;}
.ws154{word-spacing:5.544000px;}
.ws11c{word-spacing:5.610000px;}
.ws96{word-spacing:5.676000px;}
.ws6c{word-spacing:5.742000px;}
.wsd6{word-spacing:5.808000px;}
.ws55{word-spacing:5.874000px;}
.wsd9{word-spacing:5.940000px;}
.wsb4{word-spacing:6.006000px;}
.ws2e{word-spacing:6.060000px;}
.wsb7{word-spacing:6.072000px;}
.ws40{word-spacing:6.138000px;}
.wsb3{word-spacing:6.204000px;}
.wsa0{word-spacing:6.336000px;}
.wsfb{word-spacing:6.375000px;}
.ws62{word-spacing:6.468000px;}
.wsf0{word-spacing:6.534000px;}
.ws97{word-spacing:6.600000px;}
.wsd7{word-spacing:6.666000px;}
.ws125{word-spacing:6.732000px;}
.ws48{word-spacing:6.798000px;}
.ws148{word-spacing:6.864000px;}
.ws6f{word-spacing:6.930000px;}
.ws2b{word-spacing:6.960000px;}
.ws58{word-spacing:6.996000px;}
.ws46{word-spacing:7.062000px;}
.ws54{word-spacing:7.194000px;}
.ws5f{word-spacing:7.326000px;}
.wsc6{word-spacing:7.392000px;}
.ws5d{word-spacing:7.458000px;}
.ws5b{word-spacing:7.590000px;}
.ws127{word-spacing:7.656000px;}
.ws1b{word-spacing:7.680000px;}
.wsee{word-spacing:7.722000px;}
.wsdf{word-spacing:7.788000px;}
.ws94{word-spacing:7.854000px;}
.wsbc{word-spacing:7.986000px;}
.ws120{word-spacing:8.052000px;}
.ws131{word-spacing:8.118000px;}
.ws29{word-spacing:8.160000px;}
.ws159{word-spacing:8.250000px;}
.ws41{word-spacing:8.316000px;}
.wsb2{word-spacing:8.382000px;}
.ws2d{word-spacing:8.640000px;}
.wsb5{word-spacing:8.646000px;}
.ws126{word-spacing:8.712000px;}
.ws3e{word-spacing:8.778000px;}
.ws114{word-spacing:8.844000px;}
.ws60{word-spacing:8.910000px;}
.wse0{word-spacing:9.042000px;}
.ws95{word-spacing:9.108000px;}
.wsb8{word-spacing:9.174000px;}
.wsdc{word-spacing:9.306000px;}
.wsec{word-spacing:9.372000px;}
.wseb{word-spacing:9.438000px;}
.ws144{word-spacing:9.504000px;}
.wsdd{word-spacing:9.702000px;}
.ws14c{word-spacing:10.230000px;}
.wsbd{word-spacing:10.428000px;}
.ws107{word-spacing:10.494000px;}
.ws2f{word-spacing:10.680000px;}
.ws146{word-spacing:10.890000px;}
.ws30{word-spacing:11.100000px;}
.ws13d{word-spacing:11.154000px;}
.ws4f{word-spacing:11.616000px;}
.ws143{word-spacing:11.880000px;}
.ws142{word-spacing:12.078000px;}
.ws147{word-spacing:12.210000px;}
.ws57{word-spacing:12.606000px;}
.ws14e{word-spacing:13.398000px;}
.ws140{word-spacing:13.596000px;}
.ws157{word-spacing:13.662000px;}
.ws156{word-spacing:13.728000px;}
.ws13b{word-spacing:13.794000px;}
.ws149{word-spacing:14.322000px;}
.ws37{word-spacing:14.580000px;}
.ws43{word-spacing:14.586000px;}
.ws13e{word-spacing:15.444000px;}
.ws14a{word-spacing:16.104000px;}
.ws138{word-spacing:16.170000px;}
.ws141{word-spacing:17.226000px;}
.ws151{word-spacing:24.882000px;}
.ws136{word-spacing:29.898000px;}
.ws152{word-spacing:34.914000px;}
.ws139{word-spacing:67.716000px;}
.ws13a{word-spacing:92.664000px;}
.ws11f{word-spacing:158.613600px;}
.ws77{word-spacing:181.657200px;}
.ws111{word-spacing:182.078400px;}
.ws110{word-spacing:182.317800px;}
.ws11e{word-spacing:190.581600px;}
.ws11d{word-spacing:190.821600px;}
.ws75{word-spacing:204.607200px;}
.ws112{word-spacing:205.081800px;}
.ws12d{word-spacing:213.585600px;}
.ws74{word-spacing:216.092400px;}
.ws73{word-spacing:216.093000px;}
.ws78{word-spacing:224.595600px;}
.ws76{word-spacing:224.597400px;}
.wsc4{word-spacing:235.609800px;}
.ws12e{word-spacing:236.589600px;}
.wsc5{word-spacing:258.613200px;}
.wsc3{word-spacing:258.853200px;}
.ws113{word-spacing:267.937800px;}
._20{margin-left:-27.766200px;}
._1f{margin-left:-26.080200px;}
._8{margin-left:-23.278200px;}
._19{margin-left:-21.076800px;}
._1c{margin-left:-16.214400px;}
._2c{margin-left:-14.949600px;}
._5{margin-left:-9.255720px;}
._31{margin-left:-8.146200px;}
._4{margin-left:-6.636000px;}
._3{margin-left:-5.493480px;}
._7{margin-left:-4.362600px;}
._0{margin-left:-2.880000px;}
._1{margin-left:-1.872000px;}
._2{width:1.188000px;}
._1d{width:2.448000px;}
._6{width:3.757920px;}
._2d{width:5.093400px;}
._9{width:6.508200px;}
._1e{width:27.336180px;}
._2b{width:31.875180px;}
._1b{width:34.017180px;}
._1a{width:35.546580px;}
._13{width:36.669180px;}
._12{width:47.442000px;}
._a{width:53.256000px;}
._b{width:54.582000px;}
._c{width:55.857000px;}
._32{width:75.286200px;}
._2a{width:162.925200px;}
._29{width:179.350800px;}
._11{width:181.857000px;}
._26{width:193.852200px;}
._14{width:210.806400px;}
._22{width:216.854400px;}
._2f{width:219.204000px;}
._25{width:220.375800px;}
._30{width:221.867400px;}
._10{width:227.863200px;}
._e{width:236.369400px;}
._24{width:239.857800px;}
._d{width:251.153400px;}
._16{width:255.885000px;}
._f{width:259.372800px;}
._15{width:270.385200px;}
._18{width:278.889000px;}
._28{width:283.993200px;}
._27{width:297.709200px;}
._2e{width:305.568000px;}
._17{width:380.834400px;}
._21{width:386.121000px;}
._23{width:390.153000px;}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:34.980000px;}
.fsa{font-size:38.478000px;}
.fs5{font-size:41.976000px;}
.fsb{font-size:51.000000px;}
.fsd{font-size:52.800000px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:56.100000px;}
.fsc{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs9{font-size:78.000000px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:53.499750px;}
.y6f{bottom:99.921300px;}
.y135{bottom:105.165300px;}
.y22{bottom:105.924600px;}
.y6e{bottom:116.121300px;}
.y134{bottom:124.965300px;}
.y87{bottom:126.115800px;}
.y12a{bottom:130.833000px;}
.y49{bottom:131.394900px;}
.y21{bottom:131.969100px;}
.yb5{bottom:132.321300px;}
.y6d{bottom:142.315800px;}
.y133{bottom:144.765300px;}
.y86{bottom:145.915800px;}
.yb4{bottom:148.521300px;}
.y48{bottom:150.144900px;}
.y129{bottom:150.632850px;}
.yba{bottom:152.121300px;}
.yda{bottom:158.515800px;}
.y132{bottom:164.565300px;}
.y110{bottom:164.721300px;}
.yb9{bottom:168.321300px;}
.y128{bottom:170.432850px;}
.yb3{bottom:174.715800px;}
.y47{bottom:177.398850px;}
.y96{bottom:178.377000px;}
.yd3{bottom:180.216000px;}
.y113{bottom:180.921300px;}
.y6c{bottom:184.365300px;}
.yb2{bottom:184.521300px;}
.yfa{bottom:188.106900px;}
.y127{bottom:190.232850px;}
.y10f{bottom:190.915800px;}
.yd7{bottom:194.515800px;}
.y85{bottom:195.661350px;}
.y46{bottom:196.148850px;}
.y112{bottom:197.121300px;}
.y95{bottom:198.177000px;}
.y20{bottom:198.912000px;}
.yd2{bottom:200.016000px;}
.yb1{bottom:200.721300px;}
.y6b{bottom:204.165300px;}
.yd6{bottom:204.321300px;}
.yf9{bottom:207.906900px;}
.y126{bottom:210.032850px;}
.yb8{bottom:210.715800px;}
.y45{bottom:214.898850px;}
.y1f{bottom:215.412000px;}
.y84{bottom:215.461350px;}
.ye0{bottom:216.921300px;}
.y94{bottom:217.977000px;}
.yd1{bottom:219.816000px;}
.yb7{bottom:220.521300px;}
.y111{bottom:223.315800px;}
.y6a{bottom:223.965300px;}
.yb0{bottom:226.915800px;}
.yf8{bottom:227.707050px;}
.y125{bottom:229.833000px;}
.ydf{bottom:233.121300px;}
.y44{bottom:233.648850px;}
.y83{bottom:235.261350px;}
.y1e{bottom:236.164050px;}
.yaf{bottom:236.721300px;}
.y93{bottom:237.777000px;}
.y10e{bottom:239.114850px;}
.yd0{bottom:239.616000px;}
.y69{bottom:243.765300px;}
.yf7{bottom:247.506900px;}
.y124{bottom:249.632850px;}
.y43{bottom:252.398850px;}
.y1d{bottom:252.664050px;}
.yae{bottom:252.921300px;}
.y82{bottom:255.061350px;}
.y92{bottom:257.577000px;}
.y10d{bottom:258.914850px;}
.yde{bottom:259.315800px;}
.ycf{bottom:259.416000px;}
.yb6{bottom:262.915800px;}
.y68{bottom:263.565300px;}
.yf6{bottom:267.306900px;}
.yad{bottom:269.121300px;}
.y1c{bottom:269.164050px;}
.y123{bottom:269.432850px;}
.y42{bottom:271.148850px;}
.yd5{bottom:272.721300px;}
.y81{bottom:274.861350px;}
.y91{bottom:277.377000px;}
.y10c{bottom:278.714850px;}
.ye3{bottom:279.115800px;}
.yce{bottom:279.216000px;}
.y67{bottom:283.365300px;}
.yac{bottom:285.321300px;}
.y1b{bottom:285.664050px;}
.yf5{bottom:287.106900px;}
.yd9{bottom:288.921300px;}
.y122{bottom:289.232850px;}
.y41{bottom:289.898850px;}
.y80{bottom:294.661350px;}
.ydd{bottom:295.315800px;}
.y90{bottom:297.177000px;}
.y10b{bottom:298.514850px;}
.yd4{bottom:298.915800px;}
.ycd{bottom:299.016000px;}
.ydc{bottom:301.521300px;}
.y1a{bottom:302.164050px;}
.y66{bottom:303.165300px;}
.ye2{bottom:305.121300px;}
.yf4{bottom:306.906900px;}
.y40{bottom:308.648850px;}
.y121{bottom:309.032850px;}
.yab{bottom:311.515800px;}
.y7f{bottom:314.461350px;}
.yd8{bottom:315.115800px;}
.y8f{bottom:316.977000px;}
.y10a{bottom:318.314850px;}
.y19{bottom:318.664050px;}
.ycc{bottom:318.816000px;}
.yaa{bottom:321.321300px;}
.y65{bottom:322.965300px;}
.yf3{bottom:326.706900px;}
.y3f{bottom:327.398850px;}
.ydb{bottom:327.715800px;}
.y120{bottom:328.832850px;}
.ye1{bottom:331.315800px;}
.y7e{bottom:334.261350px;}
.y18{bottom:335.164050px;}
.y8e{bottom:336.777000px;}
.ya9{bottom:337.521300px;}
.y109{bottom:338.114850px;}
.ycb{bottom:338.616000px;}
.y64{bottom:342.765300px;}
.yf2{bottom:346.506900px;}
.y11f{bottom:348.632850px;}
.y17{bottom:351.664050px;}
.ya8{bottom:353.721300px;}
.y7d{bottom:354.061350px;}
.y8d{bottom:356.577000px;}
.yca{bottom:358.416000px;}
.y63{bottom:362.565300px;}
.y3e{bottom:364.148850px;}
.yf1{bottom:366.306900px;}
.y16{bottom:368.164050px;}
.y11e{bottom:368.432850px;}
.ya7{bottom:369.921300px;}
.y7c{bottom:373.861350px;}
.y8c{bottom:376.377000px;}
.yc9{bottom:378.216000px;}
.y3d{bottom:382.148850px;}
.y62{bottom:382.365300px;}
.yf0{bottom:386.107050px;}
.ya6{bottom:386.121300px;}
.y15{bottom:388.915950px;}
.y7b{bottom:393.661350px;}
.y8b{bottom:396.177000px;}
.y108{bottom:397.514850px;}
.yc8{bottom:398.016000px;}
.y61{bottom:402.165300px;}
.y3c{bottom:404.400750px;}
.yef{bottom:405.906900px;}
.y11d{bottom:408.032850px;}
.ya5{bottom:412.315800px;}
.y7a{bottom:413.461350px;}
.y8a{bottom:415.977000px;}
.yc7{bottom:417.816000px;}
.y60{bottom:421.965300px;}
.y3b{bottom:422.400750px;}
.y107{bottom:424.264200px;}
.yee{bottom:425.706900px;}
.y14{bottom:427.668000px;}
.y79{bottom:433.261350px;}
.y89{bottom:435.777000px;}
.yc6{bottom:437.616000px;}
.y3a{bottom:440.400750px;}
.y5f{bottom:441.765300px;}
.yed{bottom:445.506900px;}
.y106{bottom:449.775900px;}
.y78{bottom:453.061350px;}
.y88{bottom:455.577000px;}
.yc5{bottom:457.416000px;}
.y39{bottom:458.400750px;}
.y5e{bottom:461.565300px;}
.yec{bottom:465.307050px;}
.y11c{bottom:467.432850px;}
.y77{bottom:472.861350px;}
.y105{bottom:475.287750px;}
.y38{bottom:476.400750px;}
.yc4{bottom:477.216000px;}
.y5d{bottom:481.365300px;}
.yeb{bottom:485.106900px;}
.y11b{bottom:487.232850px;}
.y13{bottom:490.419900px;}
.y76{bottom:492.661350px;}
.y37{bottom:494.400750px;}
.yc3{bottom:497.016000px;}
.y5c{bottom:501.165300px;}
.yea{bottom:504.906900px;}
.y104{bottom:505.270350px;}
.y11a{bottom:507.032850px;}
.y36{bottom:512.400750px;}
.y75{bottom:512.461350px;}
.y12{bottom:512.671800px;}
.ya4{bottom:515.754900px;}
.yc2{bottom:516.816000px;}
.y5b{bottom:520.965300px;}
.ye9{bottom:524.706900px;}
.y119{bottom:526.832850px;}
.y11{bottom:529.171800px;}
.y35{bottom:530.400750px;}
.y74{bottom:532.261350px;}
.yc1{bottom:536.616000px;}
.ya3{bottom:538.006950px;}
.y103{bottom:538.613250px;}
.y5a{bottom:540.765300px;}
.ye8{bottom:544.506900px;}
.y118{bottom:546.632850px;}
.y34{bottom:548.400750px;}
.y10{bottom:549.923850px;}
.y73{bottom:552.061350px;}
.y59{bottom:560.565150px;}
.y102{bottom:561.615300px;}
.ye7{bottom:564.307050px;}
.ya2{bottom:564.756300px;}
.y33{bottom:566.400750px;}
.yf{bottom:566.423850px;}
.y117{bottom:566.432850px;}
.y58{bottom:580.365300px;}
.ye{bottom:582.923850px;}
.ye6{bottom:584.106900px;}
.y32{bottom:584.400750px;}
.y116{bottom:586.232850px;}
.ya1{bottom:590.268150px;}
.y72{bottom:591.661350px;}
.yc0{bottom:596.016000px;}
.yd{bottom:599.423850px;}
.y57{bottom:600.165300px;}
.ye5{bottom:603.906900px;}
.y115{bottom:606.032850px;}
.y71{bottom:611.461350px;}
.ya0{bottom:615.780000px;}
.yc{bottom:615.923850px;}
.y56{bottom:619.965300px;}
.y31{bottom:620.400750px;}
.ybf{bottom:622.765350px;}
.ye4{bottom:623.706900px;}
.y114{bottom:625.832850px;}
.yb{bottom:632.423850px;}
.y30{bottom:638.400750px;}
.y55{bottom:639.765300px;}
.y9f{bottom:641.291700px;}
.ybe{bottom:648.277200px;}
.ya{bottom:648.923850px;}
.y54{bottom:659.565150px;}
.y2f{bottom:660.652800px;}
.y9{bottom:665.423850px;}
.y9e{bottom:666.803550px;}
.y2e{bottom:678.652800px;}
.y53{bottom:679.365300px;}
.ybd{bottom:680.865000px;}
.y8{bottom:681.923850px;}
.y131{bottom:685.331700px;}
.y101{bottom:687.540450px;}
.y9d{bottom:692.315400px;}
.y2d{bottom:696.652800px;}
.y52{bottom:699.165300px;}
.y7{bottom:706.927800px;}
.y130{bottom:712.081200px;}
.y2c{bottom:714.652800px;}
.y100{bottom:715.039800px;}
.ybc{bottom:716.813250px;}
.y9c{bottom:717.827250px;}
.y51{bottom:718.965300px;}
.y2b{bottom:732.652800px;}
.y12f{bottom:737.592900px;}
.y50{bottom:738.765300px;}
.ybb{bottom:739.815150px;}
.yff{bottom:740.551500px;}
.y9b{bottom:743.338950px;}
.y6{bottom:746.527800px;}
.y2a{bottom:750.652800px;}
.y4f{bottom:758.565150px;}
.y12e{bottom:763.104750px;}
.yfe{bottom:766.063350px;}
.y29{bottom:768.652800px;}
.y9a{bottom:768.850800px;}
.y4e{bottom:778.365300px;}
.y5{bottom:785.077800px;}
.y28{bottom:786.652800px;}
.y12d{bottom:788.616600px;}
.y4d{bottom:798.165300px;}
.yfd{bottom:798.651150px;}
.y27{bottom:804.652800px;}
.y99{bottom:805.272750px;}
.y4c{bottom:817.965300px;}
.y12c{bottom:821.204250px;}
.y26{bottom:822.652800px;}
.y98{bottom:823.272750px;}
.y4{bottom:823.627800px;}
.yfc{bottom:834.599550px;}
.y70{bottom:837.765150px;}
.y25{bottom:840.652800px;}
.y3{bottom:852.127800px;}
.y97{bottom:856.904550px;}
.y12b{bottom:857.152650px;}
.y4b{bottom:857.565150px;}
.yfb{bottom:857.601450px;}
.y24{bottom:858.652800px;}
.y1{bottom:892.371600px;}
.y23{bottom:902.835000px;}
.y4a{bottom:903.082650px;}
.hb{height:27.511770px;}
.h14{height:36.465000px;}
.h4{height:38.610000px;}
.h15{height:38.760000px;}
.h7{height:42.900000px;}
.h3{height:43.632000px;}
.h10{height:44.246400px;}
.hc{height:44.550000px;}
.h9{height:44.990700px;}
.h11{height:47.190000px;}
.h17{height:48.000000px;}
.h2{height:48.480000px;}
.h13{height:49.489770px;}
.hf{height:50.160000px;}
.hd{height:52.380000px;}
.he{height:52.800000px;}
.h8{height:57.618000px;}
.h19{height:58.080000px;}
.ha{height:60.060000px;}
.h12{height:61.489170px;}
.h16{height:61.489770px;}
.h18{height:61.490370px;}
.h6{height:65.988840px;}
.h5{height:68.640000px;}
.h0{height:956.692500px;}
.h1{height:957.000000px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.x1{left:85.227450px;}
.x8{left:91.060200px;}
.xe{left:106.339350px;}
.x1b{left:125.937600px;}
.x10{left:154.141950px;}
.x11{left:163.824450px;}
.x1c{left:166.080450px;}
.xa{left:171.802650px;}
.x5{left:186.261600px;}
.xf{left:191.581350px;}
.x7{left:214.936950px;}
.x1f{left:216.901800px;}
.x1d{left:225.193200px;}
.x1a{left:234.760050px;}
.x1e{left:235.876050px;}
.x12{left:263.922600px;}
.x13{left:266.119950px;}
.xd{left:273.461400px;}
.x20{left:275.010300px;}
.x21{left:280.441800px;}
.x6{left:281.947650px;}
.x9{left:295.620750px;}
.xb{left:323.381850px;}
.x4{left:326.756850px;}
.x14{left:345.767100px;}
.x15{left:351.159300px;}
.xc{left:379.014750px;}
.x16{left:423.486450px;}
.x2{left:431.059050px;}
.x17{left:436.198650px;}
.x3{left:441.954750px;}
.x19{left:495.910950px;}
.x18{left:513.318000px;}
@media print{
.v4{vertical-align:-35.536000pt;}
.v7{vertical-align:-30.202667pt;}
.v3{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.760000pt;}
.v6{vertical-align:19.536000pt;}
.v5{vertical-align:30.202133pt;}
.v1{vertical-align:31.978667pt;}
.ls33{letter-spacing:-3.520000pt;}
.ls2d{letter-spacing:-0.704000pt;}
.ls15{letter-spacing:-0.576000pt;}
.ls2f{letter-spacing:-0.544000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls1c{letter-spacing:-0.469333pt;}
.ls2a{letter-spacing:-0.453333pt;}
.ls9{letter-spacing:-0.426667pt;}
.ls26{letter-spacing:-0.408000pt;}
.lsa{letter-spacing:-0.373333pt;}
.ls29{letter-spacing:-0.362667pt;}
.ls11{letter-spacing:-0.346667pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls27{letter-spacing:-0.317333pt;}
.ls22{letter-spacing:-0.272000pt;}
.lsc{letter-spacing:-0.266667pt;}
.ls16{letter-spacing:-0.240000pt;}
.ls1e{letter-spacing:-0.226667pt;}
.lsd{letter-spacing:-0.217653pt;}
.ls14{letter-spacing:-0.213333pt;}
.lsf{letter-spacing:-0.186560pt;}
.ls1d{letter-spacing:-0.181333pt;}
.ls25{letter-spacing:-0.171013pt;}
.ls10{letter-spacing:-0.155467pt;}
.ls23{letter-spacing:-0.136000pt;}
.lse{letter-spacing:-0.106667pt;}
.ls24{letter-spacing:-0.090667pt;}
.ls12{letter-spacing:-0.053333pt;}
.ls2b{letter-spacing:-0.045333pt;}
.ls8{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.000107pt;}
.ls31{letter-spacing:0.022667pt;}
.ls13{letter-spacing:0.062187pt;}
.ls2e{letter-spacing:0.090667pt;}
.ls5{letter-spacing:0.106667pt;}
.ls30{letter-spacing:0.181333pt;}
.ls18{letter-spacing:0.202667pt;}
.ls2{letter-spacing:0.213333pt;}
.ls28{letter-spacing:0.226667pt;}
.ls3{letter-spacing:0.266667pt;}
.ls20{letter-spacing:0.288000pt;}
.ls6{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.362667pt;}
.ls32{letter-spacing:0.410667pt;}
.ls2c{letter-spacing:0.453333pt;}
.ls1f{letter-spacing:0.480000pt;}
.ls38{letter-spacing:0.528000pt;}
.ls4{letter-spacing:0.533333pt;}
.ls36{letter-spacing:0.880000pt;}
.ls1a{letter-spacing:1.013333pt;}
.ls1{letter-spacing:1.066133pt;}
.ls0{letter-spacing:1.066667pt;}
.ls37{letter-spacing:1.525333pt;}
.ls1b{letter-spacing:1.760000pt;}
.ls19{letter-spacing:2.826667pt;}
.ls34{letter-spacing:3.036800pt;}
.ls35{letter-spacing:14.395200pt;}
.ws14f{word-spacing:-16.192000pt;}
.ws137{word-spacing:-15.546667pt;}
.ws150{word-spacing:-15.194667pt;}
.ws130{word-spacing:-15.077333pt;}
.ws3d{word-spacing:-14.666667pt;}
.ws0{word-spacing:-14.080000pt;}
.ws101{word-spacing:-13.962667pt;}
.ws25{word-spacing:-12.800000pt;}
.ws4{word-spacing:-12.533333pt;}
.ws1{word-spacing:-11.968000pt;}
.ws7{word-spacing:-11.424000pt;}
.ws9e{word-spacing:-11.242667pt;}
.ws124{word-spacing:-11.197333pt;}
.ws12f{word-spacing:-11.146667pt;}
.ws72{word-spacing:-11.106667pt;}
.ws26{word-spacing:-10.880000pt;}
.ws6{word-spacing:-8.550667pt;}
.wsb1{word-spacing:-8.379653pt;}
.ws5{word-spacing:-7.835520pt;}
.ws27{word-spacing:-7.773333pt;}
.ws3{word-spacing:-7.617867pt;}
.ws2{word-spacing:-7.555680pt;}
.ws135{word-spacing:-4.986667pt;}
.ws115{word-spacing:-3.696000pt;}
.ws153{word-spacing:-3.520000pt;}
.ws22{word-spacing:-3.354667pt;}
.wscb{word-spacing:-2.992000pt;}
.ws23{word-spacing:-2.976000pt;}
.ws7b{word-spacing:-2.933333pt;}
.ws3a{word-spacing:-2.826667pt;}
.ws10c{word-spacing:-2.816000pt;}
.ws69{word-spacing:-2.757333pt;}
.ws45{word-spacing:-2.698667pt;}
.ws11{word-spacing:-2.666667pt;}
.ws14d{word-spacing:-2.640000pt;}
.ws122{word-spacing:-2.629333pt;}
.ws8e{word-spacing:-2.581333pt;}
.ws4d{word-spacing:-2.522667pt;}
.wsd2{word-spacing:-2.464000pt;}
.ws106{word-spacing:-2.346667pt;}
.wsa2{word-spacing:-2.288000pt;}
.ws71{word-spacing:-2.266667pt;}
.ws12{word-spacing:-2.240000pt;}
.ws158{word-spacing:-2.229333pt;}
.ws12a{word-spacing:-2.221333pt;}
.ws34{word-spacing:-2.186667pt;}
.ws3f{word-spacing:-2.170667pt;}
.wsb{word-spacing:-2.133333pt;}
.wsfc{word-spacing:-2.130667pt;}
.ws155{word-spacing:-2.112000pt;}
.ws32{word-spacing:-2.026667pt;}
.wsbe{word-spacing:-1.994667pt;}
.wsc0{word-spacing:-1.949333pt;}
.wsba{word-spacing:-1.936000pt;}
.ws33{word-spacing:-1.920000pt;}
.wsfa{word-spacing:-1.904000pt;}
.wsef{word-spacing:-1.877333pt;}
.ws18{word-spacing:-1.866667pt;}
.ws7f{word-spacing:-1.818667pt;}
.wsb0{word-spacing:-1.813333pt;}
.wsae{word-spacing:-1.768000pt;}
.ws3c{word-spacing:-1.760000pt;}
.ws19{word-spacing:-1.733333pt;}
.wsc2{word-spacing:-1.722667pt;}
.ws7c{word-spacing:-1.701333pt;}
.ws99{word-spacing:-1.642667pt;}
.wsd{word-spacing:-1.600000pt;}
.ws104{word-spacing:-1.584000pt;}
.wse8{word-spacing:-1.541333pt;}
.wsa5{word-spacing:-1.525333pt;}
.ws8f{word-spacing:-1.466667pt;}
.wsa7{word-spacing:-1.450667pt;}
.ws100{word-spacing:-1.405333pt;}
.wsab{word-spacing:-1.360000pt;}
.ws6e{word-spacing:-1.349333pt;}
.wse{word-spacing:-1.333333pt;}
.ws59{word-spacing:-1.314667pt;}
.ws56{word-spacing:-1.290667pt;}
.ws17{word-spacing:-1.280000pt;}
.ws108{word-spacing:-1.269333pt;}
.wscc{word-spacing:-1.232000pt;}
.wsaa{word-spacing:-1.224000pt;}
.ws24{word-spacing:-1.200000pt;}
.ws132{word-spacing:-1.173333pt;}
.ws5a{word-spacing:-1.133333pt;}
.ws82{word-spacing:-1.120000pt;}
.ws8a{word-spacing:-1.114667pt;}
.ws12b{word-spacing:-1.088000pt;}
.ws9{word-spacing:-1.066667pt;}
.ws98{word-spacing:-1.056000pt;}
.ws3b{word-spacing:-1.013333pt;}
.ws84{word-spacing:-1.008000pt;}
.wsc1{word-spacing:-0.997333pt;}
.wsd0{word-spacing:-0.952000pt;}
.wsd1{word-spacing:-0.938667pt;}
.wsf9{word-spacing:-0.906667pt;}
.ws145{word-spacing:-0.880000pt;}
.ws4b{word-spacing:-0.821333pt;}
.ws117{word-spacing:-0.762667pt;}
.wsf4{word-spacing:-0.725333pt;}
.ws4c{word-spacing:-0.704000pt;}
.ws9d{word-spacing:-0.680000pt;}
.ws4e{word-spacing:-0.645333pt;}
.wse6{word-spacing:-0.634667pt;}
.wsa9{word-spacing:-0.589333pt;}
.ws65{word-spacing:-0.586667pt;}
.ws109{word-spacing:-0.544000pt;}
.ws83{word-spacing:-0.533333pt;}
.ws7e{word-spacing:-0.528000pt;}
.wsff{word-spacing:-0.498667pt;}
.wsf7{word-spacing:-0.469333pt;}
.wsa8{word-spacing:-0.453333pt;}
.ws10{word-spacing:-0.426667pt;}
.wsa4{word-spacing:-0.410667pt;}
.wse5{word-spacing:-0.362667pt;}
.ws119{word-spacing:-0.352000pt;}
.ws31{word-spacing:-0.320000pt;}
.ws81{word-spacing:-0.317333pt;}
.ws10f{word-spacing:-0.293333pt;}
.ws118{word-spacing:-0.272000pt;}
.wscf{word-spacing:-0.234667pt;}
.ws38{word-spacing:-0.213333pt;}
.ws39{word-spacing:-0.202667pt;}
.ws9c{word-spacing:-0.181333pt;}
.wsf1{word-spacing:-0.176000pt;}
.ws44{word-spacing:-0.117333pt;}
.ws123{word-spacing:-0.090667pt;}
.wscd{word-spacing:-0.058667pt;}
.ws13f{word-spacing:-0.049867pt;}
.wsf2{word-spacing:-0.045333pt;}
.ws8{word-spacing:0.000000pt;}
.wsaf{word-spacing:0.045333pt;}
.wsf5{word-spacing:0.058667pt;}
.wse9{word-spacing:0.090667pt;}
.ws8b{word-spacing:0.117333pt;}
.ws21{word-spacing:0.155467pt;}
.wse3{word-spacing:0.176000pt;}
.ws14{word-spacing:0.186560pt;}
.ws10a{word-spacing:0.226667pt;}
.ws105{word-spacing:0.234667pt;}
.wse4{word-spacing:0.272000pt;}
.ws91{word-spacing:0.293333pt;}
.wsad{word-spacing:0.317333pt;}
.wsd4{word-spacing:0.352000pt;}
.wsc{word-spacing:0.373333pt;}
.ws12c{word-spacing:0.408000pt;}
.ws6a{word-spacing:0.410667pt;}
.wsc7{word-spacing:0.469333pt;}
.wsa{word-spacing:0.480000pt;}
.ws86{word-spacing:0.528000pt;}
.ws13{word-spacing:0.533333pt;}
.wse7{word-spacing:0.544000pt;}
.wsa3{word-spacing:0.586667pt;}
.ws128{word-spacing:0.589333pt;}
.ws1f{word-spacing:0.640000pt;}
.ws8d{word-spacing:0.645333pt;}
.wsf8{word-spacing:0.680000pt;}
.ws51{word-spacing:0.704000pt;}
.wsf3{word-spacing:0.725333pt;}
.ws9f{word-spacing:0.762667pt;}
.ws8c{word-spacing:0.821333pt;}
.ws89{word-spacing:0.880000pt;}
.ws63{word-spacing:0.938667pt;}
.ws1a{word-spacing:0.960000pt;}
.ws7d{word-spacing:0.997333pt;}
.ws10d{word-spacing:1.056000pt;}
.ws9b{word-spacing:1.114667pt;}
.ws6d{word-spacing:1.173333pt;}
.ws66{word-spacing:1.232000pt;}
.wsed{word-spacing:1.290667pt;}
.ws11a{word-spacing:1.349333pt;}
.ws93{word-spacing:1.408000pt;}
.ws28{word-spacing:1.440000pt;}
.ws10b{word-spacing:1.466667pt;}
.ws13c{word-spacing:1.525333pt;}
.wsf6{word-spacing:1.584000pt;}
.ws68{word-spacing:1.642667pt;}
.ws85{word-spacing:1.701333pt;}
.ws35{word-spacing:1.760000pt;}
.ws52{word-spacing:1.818667pt;}
.wsa1{word-spacing:1.877333pt;}
.wsbf{word-spacing:1.936000pt;}
.ws50{word-spacing:1.994667pt;}
.ws7a{word-spacing:2.053333pt;}
.wsbb{word-spacing:2.112000pt;}
.ws133{word-spacing:2.170667pt;}
.ws1c{word-spacing:2.186667pt;}
.ws11b{word-spacing:2.229333pt;}
.ws61{word-spacing:2.288000pt;}
.ws129{word-spacing:2.312000pt;}
.ws4a{word-spacing:2.346667pt;}
.ws67{word-spacing:2.405333pt;}
.ws88{word-spacing:2.464000pt;}
.wsb9{word-spacing:2.522667pt;}
.ws10e{word-spacing:2.581333pt;}
.ws1d{word-spacing:2.613333pt;}
.wsda{word-spacing:2.640000pt;}
.ws20{word-spacing:2.666667pt;}
.wsca{word-spacing:2.698667pt;}
.wse2{word-spacing:2.757333pt;}
.wsd3{word-spacing:2.816000pt;}
.ws102{word-spacing:2.874667pt;}
.wse1{word-spacing:2.933333pt;}
.ws36{word-spacing:2.986667pt;}
.ws6b{word-spacing:2.992000pt;}
.ws116{word-spacing:3.050667pt;}
.ws49{word-spacing:3.109333pt;}
.ws90{word-spacing:3.168000pt;}
.wsf{word-spacing:3.200000pt;}
.wsb6{word-spacing:3.226667pt;}
.ws2a{word-spacing:3.253333pt;}
.wsde{word-spacing:3.285333pt;}
.ws87{word-spacing:3.344000pt;}
.wsfe{word-spacing:3.402667pt;}
.wsea{word-spacing:3.445333pt;}
.ws134{word-spacing:3.461333pt;}
.ws5c{word-spacing:3.520000pt;}
.ws121{word-spacing:3.578667pt;}
.wsdb{word-spacing:3.637333pt;}
.ws92{word-spacing:3.696000pt;}
.ws70{word-spacing:3.754667pt;}
.ws15{word-spacing:3.786667pt;}
.wsa6{word-spacing:3.813333pt;}
.wsfd{word-spacing:3.872000pt;}
.wsc9{word-spacing:3.930667pt;}
.ws16{word-spacing:3.946667pt;}
.ws64{word-spacing:4.048000pt;}
.ws53{word-spacing:4.106667pt;}
.ws79{word-spacing:4.165333pt;}
.ws47{word-spacing:4.224000pt;}
.ws2c{word-spacing:4.266667pt;}
.wsd5{word-spacing:4.282667pt;}
.wsc8{word-spacing:4.341333pt;}
.ws103{word-spacing:4.400000pt;}
.ws5e{word-spacing:4.458667pt;}
.wsce{word-spacing:4.517333pt;}
.ws42{word-spacing:4.576000pt;}
.wsac{word-spacing:4.624000pt;}
.ws9a{word-spacing:4.634667pt;}
.ws1e{word-spacing:4.693333pt;}
.ws80{word-spacing:4.752000pt;}
.ws14b{word-spacing:4.810667pt;}
.wsd8{word-spacing:4.869333pt;}
.ws154{word-spacing:4.928000pt;}
.ws11c{word-spacing:4.986667pt;}
.ws96{word-spacing:5.045333pt;}
.ws6c{word-spacing:5.104000pt;}
.wsd6{word-spacing:5.162667pt;}
.ws55{word-spacing:5.221333pt;}
.wsd9{word-spacing:5.280000pt;}
.wsb4{word-spacing:5.338667pt;}
.ws2e{word-spacing:5.386667pt;}
.wsb7{word-spacing:5.397333pt;}
.ws40{word-spacing:5.456000pt;}
.wsb3{word-spacing:5.514667pt;}
.wsa0{word-spacing:5.632000pt;}
.wsfb{word-spacing:5.666667pt;}
.ws62{word-spacing:5.749333pt;}
.wsf0{word-spacing:5.808000pt;}
.ws97{word-spacing:5.866667pt;}
.wsd7{word-spacing:5.925333pt;}
.ws125{word-spacing:5.984000pt;}
.ws48{word-spacing:6.042667pt;}
.ws148{word-spacing:6.101333pt;}
.ws6f{word-spacing:6.160000pt;}
.ws2b{word-spacing:6.186667pt;}
.ws58{word-spacing:6.218667pt;}
.ws46{word-spacing:6.277333pt;}
.ws54{word-spacing:6.394667pt;}
.ws5f{word-spacing:6.512000pt;}
.wsc6{word-spacing:6.570667pt;}
.ws5d{word-spacing:6.629333pt;}
.ws5b{word-spacing:6.746667pt;}
.ws127{word-spacing:6.805333pt;}
.ws1b{word-spacing:6.826667pt;}
.wsee{word-spacing:6.864000pt;}
.wsdf{word-spacing:6.922667pt;}
.ws94{word-spacing:6.981333pt;}
.wsbc{word-spacing:7.098667pt;}
.ws120{word-spacing:7.157333pt;}
.ws131{word-spacing:7.216000pt;}
.ws29{word-spacing:7.253333pt;}
.ws159{word-spacing:7.333333pt;}
.ws41{word-spacing:7.392000pt;}
.wsb2{word-spacing:7.450667pt;}
.ws2d{word-spacing:7.680000pt;}
.wsb5{word-spacing:7.685333pt;}
.ws126{word-spacing:7.744000pt;}
.ws3e{word-spacing:7.802667pt;}
.ws114{word-spacing:7.861333pt;}
.ws60{word-spacing:7.920000pt;}
.wse0{word-spacing:8.037333pt;}
.ws95{word-spacing:8.096000pt;}
.wsb8{word-spacing:8.154667pt;}
.wsdc{word-spacing:8.272000pt;}
.wsec{word-spacing:8.330667pt;}
.wseb{word-spacing:8.389333pt;}
.ws144{word-spacing:8.448000pt;}
.wsdd{word-spacing:8.624000pt;}
.ws14c{word-spacing:9.093333pt;}
.wsbd{word-spacing:9.269333pt;}
.ws107{word-spacing:9.328000pt;}
.ws2f{word-spacing:9.493333pt;}
.ws146{word-spacing:9.680000pt;}
.ws30{word-spacing:9.866667pt;}
.ws13d{word-spacing:9.914667pt;}
.ws4f{word-spacing:10.325333pt;}
.ws143{word-spacing:10.560000pt;}
.ws142{word-spacing:10.736000pt;}
.ws147{word-spacing:10.853333pt;}
.ws57{word-spacing:11.205333pt;}
.ws14e{word-spacing:11.909333pt;}
.ws140{word-spacing:12.085333pt;}
.ws157{word-spacing:12.144000pt;}
.ws156{word-spacing:12.202667pt;}
.ws13b{word-spacing:12.261333pt;}
.ws149{word-spacing:12.730667pt;}
.ws37{word-spacing:12.960000pt;}
.ws43{word-spacing:12.965333pt;}
.ws13e{word-spacing:13.728000pt;}
.ws14a{word-spacing:14.314667pt;}
.ws138{word-spacing:14.373333pt;}
.ws141{word-spacing:15.312000pt;}
.ws151{word-spacing:22.117333pt;}
.ws136{word-spacing:26.576000pt;}
.ws152{word-spacing:31.034667pt;}
.ws139{word-spacing:60.192000pt;}
.ws13a{word-spacing:82.368000pt;}
.ws11f{word-spacing:140.989867pt;}
.ws77{word-spacing:161.473067pt;}
.ws111{word-spacing:161.847467pt;}
.ws110{word-spacing:162.060267pt;}
.ws11e{word-spacing:169.405867pt;}
.ws11d{word-spacing:169.619200pt;}
.ws75{word-spacing:181.873067pt;}
.ws112{word-spacing:182.294933pt;}
.ws12d{word-spacing:189.853867pt;}
.ws74{word-spacing:192.082133pt;}
.ws73{word-spacing:192.082667pt;}
.ws78{word-spacing:199.640533pt;}
.ws76{word-spacing:199.642133pt;}
.wsc4{word-spacing:209.430933pt;}
.ws12e{word-spacing:210.301867pt;}
.wsc5{word-spacing:229.878400pt;}
.wsc3{word-spacing:230.091733pt;}
.ws113{word-spacing:238.166933pt;}
._20{margin-left:-24.681067pt;}
._1f{margin-left:-23.182400pt;}
._8{margin-left:-20.691733pt;}
._19{margin-left:-18.734933pt;}
._1c{margin-left:-14.412800pt;}
._2c{margin-left:-13.288533pt;}
._5{margin-left:-8.227307pt;}
._31{margin-left:-7.241067pt;}
._4{margin-left:-5.898667pt;}
._3{margin-left:-4.883093pt;}
._7{margin-left:-3.877867pt;}
._0{margin-left:-2.560000pt;}
._1{margin-left:-1.664000pt;}
._2{width:1.056000pt;}
._1d{width:2.176000pt;}
._6{width:3.340373pt;}
._2d{width:4.527467pt;}
._9{width:5.785067pt;}
._1e{width:24.298827pt;}
._2b{width:28.333493pt;}
._1b{width:30.237493pt;}
._1a{width:31.596960pt;}
._13{width:32.594827pt;}
._12{width:42.170667pt;}
._a{width:47.338667pt;}
._b{width:48.517333pt;}
._c{width:49.650667pt;}
._32{width:66.921067pt;}
._2a{width:144.822400pt;}
._29{width:159.422933pt;}
._11{width:161.650667pt;}
._26{width:172.313067pt;}
._14{width:187.383467pt;}
._22{width:192.759467pt;}
._2f{width:194.848000pt;}
._25{width:195.889600pt;}
._30{width:197.215467pt;}
._10{width:202.545067pt;}
._e{width:210.106133pt;}
._24{width:213.206933pt;}
._d{width:223.247467pt;}
._16{width:227.453333pt;}
._f{width:230.553600pt;}
._15{width:240.342400pt;}
._18{width:247.901333pt;}
._28{width:252.438400pt;}
._27{width:264.630400pt;}
._2e{width:271.616000pt;}
._17{width:338.519467pt;}
._21{width:343.218667pt;}
._23{width:346.802667pt;}
.fs8{font-size:31.093333pt;}
.fsa{font-size:34.202667pt;}
.fs5{font-size:37.312000pt;}
.fsb{font-size:45.333333pt;}
.fsd{font-size:46.933333pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:49.866667pt;}
.fsc{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs9{font-size:69.333333pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:47.555333pt;}
.y6f{bottom:88.818933pt;}
.y135{bottom:93.480267pt;}
.y22{bottom:94.155200pt;}
.y6e{bottom:103.218933pt;}
.y134{bottom:111.080267pt;}
.y87{bottom:112.102933pt;}
.y12a{bottom:116.296000pt;}
.y49{bottom:116.795467pt;}
.y21{bottom:117.305867pt;}
.yb5{bottom:117.618933pt;}
.y6d{bottom:126.502933pt;}
.y133{bottom:128.680267pt;}
.y86{bottom:129.702933pt;}
.yb4{bottom:132.018933pt;}
.y48{bottom:133.462133pt;}
.y129{bottom:133.895867pt;}
.yba{bottom:135.218933pt;}
.yda{bottom:140.902933pt;}
.y132{bottom:146.280267pt;}
.y110{bottom:146.418933pt;}
.yb9{bottom:149.618933pt;}
.y128{bottom:151.495867pt;}
.yb3{bottom:155.302933pt;}
.y47{bottom:157.687867pt;}
.y96{bottom:158.557333pt;}
.yd3{bottom:160.192000pt;}
.y113{bottom:160.818933pt;}
.y6c{bottom:163.880267pt;}
.yb2{bottom:164.018933pt;}
.yfa{bottom:167.206133pt;}
.y127{bottom:169.095867pt;}
.y10f{bottom:169.702933pt;}
.yd7{bottom:172.902933pt;}
.y85{bottom:173.921200pt;}
.y46{bottom:174.354533pt;}
.y112{bottom:175.218933pt;}
.y95{bottom:176.157333pt;}
.y20{bottom:176.810667pt;}
.yd2{bottom:177.792000pt;}
.yb1{bottom:178.418933pt;}
.y6b{bottom:181.480267pt;}
.yd6{bottom:181.618933pt;}
.yf9{bottom:184.806133pt;}
.y126{bottom:186.695867pt;}
.yb8{bottom:187.302933pt;}
.y45{bottom:191.021200pt;}
.y1f{bottom:191.477333pt;}
.y84{bottom:191.521200pt;}
.ye0{bottom:192.818933pt;}
.y94{bottom:193.757333pt;}
.yd1{bottom:195.392000pt;}
.yb7{bottom:196.018933pt;}
.y111{bottom:198.502933pt;}
.y6a{bottom:199.080267pt;}
.yb0{bottom:201.702933pt;}
.yf8{bottom:202.406267pt;}
.y125{bottom:204.296000pt;}
.ydf{bottom:207.218933pt;}
.y44{bottom:207.687867pt;}
.y83{bottom:209.121200pt;}
.y1e{bottom:209.923600pt;}
.yaf{bottom:210.418933pt;}
.y93{bottom:211.357333pt;}
.y10e{bottom:212.546533pt;}
.yd0{bottom:212.992000pt;}
.y69{bottom:216.680267pt;}
.yf7{bottom:220.006133pt;}
.y124{bottom:221.895867pt;}
.y43{bottom:224.354533pt;}
.y1d{bottom:224.590267pt;}
.yae{bottom:224.818933pt;}
.y82{bottom:226.721200pt;}
.y92{bottom:228.957333pt;}
.y10d{bottom:230.146533pt;}
.yde{bottom:230.502933pt;}
.ycf{bottom:230.592000pt;}
.yb6{bottom:233.702933pt;}
.y68{bottom:234.280267pt;}
.yf6{bottom:237.606133pt;}
.yad{bottom:239.218933pt;}
.y1c{bottom:239.256933pt;}
.y123{bottom:239.495867pt;}
.y42{bottom:241.021200pt;}
.yd5{bottom:242.418933pt;}
.y81{bottom:244.321200pt;}
.y91{bottom:246.557333pt;}
.y10c{bottom:247.746533pt;}
.ye3{bottom:248.102933pt;}
.yce{bottom:248.192000pt;}
.y67{bottom:251.880267pt;}
.yac{bottom:253.618933pt;}
.y1b{bottom:253.923600pt;}
.yf5{bottom:255.206133pt;}
.yd9{bottom:256.818933pt;}
.y122{bottom:257.095867pt;}
.y41{bottom:257.687867pt;}
.y80{bottom:261.921200pt;}
.ydd{bottom:262.502933pt;}
.y90{bottom:264.157333pt;}
.y10b{bottom:265.346533pt;}
.yd4{bottom:265.702933pt;}
.ycd{bottom:265.792000pt;}
.ydc{bottom:268.018933pt;}
.y1a{bottom:268.590267pt;}
.y66{bottom:269.480267pt;}
.ye2{bottom:271.218933pt;}
.yf4{bottom:272.806133pt;}
.y40{bottom:274.354533pt;}
.y121{bottom:274.695867pt;}
.yab{bottom:276.902933pt;}
.y7f{bottom:279.521200pt;}
.yd8{bottom:280.102933pt;}
.y8f{bottom:281.757333pt;}
.y10a{bottom:282.946533pt;}
.y19{bottom:283.256933pt;}
.ycc{bottom:283.392000pt;}
.yaa{bottom:285.618933pt;}
.y65{bottom:287.080267pt;}
.yf3{bottom:290.406133pt;}
.y3f{bottom:291.021200pt;}
.ydb{bottom:291.302933pt;}
.y120{bottom:292.295867pt;}
.ye1{bottom:294.502933pt;}
.y7e{bottom:297.121200pt;}
.y18{bottom:297.923600pt;}
.y8e{bottom:299.357333pt;}
.ya9{bottom:300.018933pt;}
.y109{bottom:300.546533pt;}
.ycb{bottom:300.992000pt;}
.y64{bottom:304.680267pt;}
.yf2{bottom:308.006133pt;}
.y11f{bottom:309.895867pt;}
.y17{bottom:312.590267pt;}
.ya8{bottom:314.418933pt;}
.y7d{bottom:314.721200pt;}
.y8d{bottom:316.957333pt;}
.yca{bottom:318.592000pt;}
.y63{bottom:322.280267pt;}
.y3e{bottom:323.687867pt;}
.yf1{bottom:325.606133pt;}
.y16{bottom:327.256933pt;}
.y11e{bottom:327.495867pt;}
.ya7{bottom:328.818933pt;}
.y7c{bottom:332.321200pt;}
.y8c{bottom:334.557333pt;}
.yc9{bottom:336.192000pt;}
.y3d{bottom:339.687867pt;}
.y62{bottom:339.880267pt;}
.yf0{bottom:343.206267pt;}
.ya6{bottom:343.218933pt;}
.y15{bottom:345.703067pt;}
.y7b{bottom:349.921200pt;}
.y8b{bottom:352.157333pt;}
.y108{bottom:353.346533pt;}
.yc8{bottom:353.792000pt;}
.y61{bottom:357.480267pt;}
.y3c{bottom:359.467333pt;}
.yef{bottom:360.806133pt;}
.y11d{bottom:362.695867pt;}
.ya5{bottom:366.502933pt;}
.y7a{bottom:367.521200pt;}
.y8a{bottom:369.757333pt;}
.yc7{bottom:371.392000pt;}
.y60{bottom:375.080267pt;}
.y3b{bottom:375.467333pt;}
.y107{bottom:377.123733pt;}
.yee{bottom:378.406133pt;}
.y14{bottom:380.149333pt;}
.y79{bottom:385.121200pt;}
.y89{bottom:387.357333pt;}
.yc6{bottom:388.992000pt;}
.y3a{bottom:391.467333pt;}
.y5f{bottom:392.680267pt;}
.yed{bottom:396.006133pt;}
.y106{bottom:399.800800pt;}
.y78{bottom:402.721200pt;}
.y88{bottom:404.957333pt;}
.yc5{bottom:406.592000pt;}
.y39{bottom:407.467333pt;}
.y5e{bottom:410.280267pt;}
.yec{bottom:413.606267pt;}
.y11c{bottom:415.495867pt;}
.y77{bottom:420.321200pt;}
.y105{bottom:422.478000pt;}
.y38{bottom:423.467333pt;}
.yc4{bottom:424.192000pt;}
.y5d{bottom:427.880267pt;}
.yeb{bottom:431.206133pt;}
.y11b{bottom:433.095867pt;}
.y13{bottom:435.928800pt;}
.y76{bottom:437.921200pt;}
.y37{bottom:439.467333pt;}
.yc3{bottom:441.792000pt;}
.y5c{bottom:445.480267pt;}
.yea{bottom:448.806133pt;}
.y104{bottom:449.129200pt;}
.y11a{bottom:450.695867pt;}
.y36{bottom:455.467333pt;}
.y75{bottom:455.521200pt;}
.y12{bottom:455.708267pt;}
.ya4{bottom:458.448800pt;}
.yc2{bottom:459.392000pt;}
.y5b{bottom:463.080267pt;}
.ye9{bottom:466.406133pt;}
.y119{bottom:468.295867pt;}
.y11{bottom:470.374933pt;}
.y35{bottom:471.467333pt;}
.y74{bottom:473.121200pt;}
.yc1{bottom:476.992000pt;}
.ya3{bottom:478.228400pt;}
.y103{bottom:478.767333pt;}
.y5a{bottom:480.680267pt;}
.ye8{bottom:484.006133pt;}
.y118{bottom:485.895867pt;}
.y34{bottom:487.467333pt;}
.y10{bottom:488.821200pt;}
.y73{bottom:490.721200pt;}
.y59{bottom:498.280133pt;}
.y102{bottom:499.213600pt;}
.ye7{bottom:501.606267pt;}
.ya2{bottom:502.005600pt;}
.y33{bottom:503.467333pt;}
.yf{bottom:503.487867pt;}
.y117{bottom:503.495867pt;}
.y58{bottom:515.880267pt;}
.ye{bottom:518.154533pt;}
.ye6{bottom:519.206133pt;}
.y32{bottom:519.467333pt;}
.y116{bottom:521.095867pt;}
.ya1{bottom:524.682800pt;}
.y72{bottom:525.921200pt;}
.yc0{bottom:529.792000pt;}
.yd{bottom:532.821200pt;}
.y57{bottom:533.480267pt;}
.ye5{bottom:536.806133pt;}
.y115{bottom:538.695867pt;}
.y71{bottom:543.521200pt;}
.ya0{bottom:547.360000pt;}
.yc{bottom:547.487867pt;}
.y56{bottom:551.080267pt;}
.y31{bottom:551.467333pt;}
.ybf{bottom:553.569200pt;}
.ye4{bottom:554.406133pt;}
.y114{bottom:556.295867pt;}
.yb{bottom:562.154533pt;}
.y30{bottom:567.467333pt;}
.y55{bottom:568.680267pt;}
.y9f{bottom:570.037067pt;}
.ybe{bottom:576.246400pt;}
.ya{bottom:576.821200pt;}
.y54{bottom:586.280133pt;}
.y2f{bottom:587.246933pt;}
.y9{bottom:591.487867pt;}
.y9e{bottom:592.714267pt;}
.y2e{bottom:603.246933pt;}
.y53{bottom:603.880267pt;}
.ybd{bottom:605.213333pt;}
.y8{bottom:606.154533pt;}
.y131{bottom:609.183733pt;}
.y101{bottom:611.147067pt;}
.y9d{bottom:615.391467pt;}
.y2d{bottom:619.246933pt;}
.y52{bottom:621.480267pt;}
.y7{bottom:628.380267pt;}
.y130{bottom:632.961067pt;}
.y2c{bottom:635.246933pt;}
.y100{bottom:635.590933pt;}
.ybc{bottom:637.167333pt;}
.y9c{bottom:638.068667pt;}
.y51{bottom:639.080267pt;}
.y2b{bottom:651.246933pt;}
.y12f{bottom:655.638133pt;}
.y50{bottom:656.680267pt;}
.ybb{bottom:657.613467pt;}
.yff{bottom:658.268000pt;}
.y9b{bottom:660.745733pt;}
.y6{bottom:663.580267pt;}
.y2a{bottom:667.246933pt;}
.y4f{bottom:674.280133pt;}
.y12e{bottom:678.315333pt;}
.yfe{bottom:680.945200pt;}
.y29{bottom:683.246933pt;}
.y9a{bottom:683.422933pt;}
.y4e{bottom:691.880267pt;}
.y5{bottom:697.846933pt;}
.y28{bottom:699.246933pt;}
.y12d{bottom:700.992533pt;}
.y4d{bottom:709.480267pt;}
.yfd{bottom:709.912133pt;}
.y27{bottom:715.246933pt;}
.y99{bottom:715.798000pt;}
.y4c{bottom:727.080267pt;}
.y12c{bottom:729.959333pt;}
.y26{bottom:731.246933pt;}
.y98{bottom:731.798000pt;}
.y4{bottom:732.113600pt;}
.yfc{bottom:741.866267pt;}
.y70{bottom:744.680133pt;}
.y25{bottom:747.246933pt;}
.y3{bottom:757.446933pt;}
.y97{bottom:761.692933pt;}
.y12b{bottom:761.913467pt;}
.y4b{bottom:762.280133pt;}
.yfb{bottom:762.312400pt;}
.y24{bottom:763.246933pt;}
.y1{bottom:793.219200pt;}
.y23{bottom:802.520000pt;}
.y4a{bottom:802.740133pt;}
.hb{height:24.454907pt;}
.h14{height:32.413333pt;}
.h4{height:34.320000pt;}
.h15{height:34.453333pt;}
.h7{height:38.133333pt;}
.h3{height:38.784000pt;}
.h10{height:39.330133pt;}
.hc{height:39.600000pt;}
.h9{height:39.991733pt;}
.h11{height:41.946667pt;}
.h17{height:42.666667pt;}
.h2{height:43.093333pt;}
.h13{height:43.990907pt;}
.hf{height:44.586667pt;}
.hd{height:46.560000pt;}
.he{height:46.933333pt;}
.h8{height:51.216000pt;}
.h19{height:51.626667pt;}
.ha{height:53.386667pt;}
.h12{height:54.657040pt;}
.h16{height:54.657573pt;}
.h18{height:54.658107pt;}
.h6{height:58.656747pt;}
.h5{height:61.013333pt;}
.h0{height:850.393333pt;}
.h1{height:850.666667pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.757733pt;}
.x8{left:80.942400pt;}
.xe{left:94.523867pt;}
.x1b{left:111.944533pt;}
.x10{left:137.015067pt;}
.x11{left:145.621733pt;}
.x1c{left:147.627067pt;}
.xa{left:152.713467pt;}
.x5{left:165.565867pt;}
.xf{left:170.294533pt;}
.x7{left:191.055067pt;}
.x1f{left:192.801600pt;}
.x1d{left:200.171733pt;}
.x1a{left:208.675600pt;}
.x1e{left:209.667600pt;}
.x12{left:234.597867pt;}
.x13{left:236.551067pt;}
.xd{left:243.076800pt;}
.x20{left:244.453600pt;}
.x21{left:249.281600pt;}
.x6{left:250.620133pt;}
.x9{left:262.774000pt;}
.xb{left:287.450533pt;}
.x4{left:290.450533pt;}
.x14{left:307.348533pt;}
.x15{left:312.141600pt;}
.xc{left:336.902000pt;}
.x16{left:376.432400pt;}
.x2{left:383.163600pt;}
.x17{left:387.732133pt;}
.x3{left:392.848667pt;}
.x19{left:440.809733pt;}
.x18{left:456.282667pt;}
}




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