
    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_32e1fd79dcb4ebbed8ec5fd2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.001000;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_1f174e35dee9df0c130a9083.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.887000;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_203d71de84b4c5274e25f666.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910000;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_584dce2682c133263b9f4ecb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.923000;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_79e36cba8af90601255684d1.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f40dcd0d200f3d59f58072a0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.999000;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_e8e62e02bb274979b442da2c.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_b37a6126f95a5c25162dca8b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.726000;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_17ddb518379f8cacc9984132.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.697000;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_bd60927c0c3acad9521494c3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.922000;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_ab3438b746fc5f5dfafcbb5a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.623000;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_49818fa04cbf5bac972a5cf8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.887000;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_d04627539492046806809b3b.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_54679846f1b55b2aadacd40e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_30b9a477c9cab7b5a920f44f.woff2')format("woff");}.fff{font-family:fff;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_4cc0514755eff2fbfeb0c029.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.866000;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:ff11;src:url('chunks/assets/font_59bdcb9d7303c43a7f222343.woff2')format("woff");}.ff11{font-family:ff11;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;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-9.822000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:58.206000px;}
.ls0{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.002696px;}
.ls37{letter-spacing:0.002700px;}
.ls2a{letter-spacing:0.002706px;}
.ls30{letter-spacing:0.005424px;}
.ls2b{letter-spacing:0.379058px;}
.ls2c{letter-spacing:2.989289px;}
.ls29{letter-spacing:3.767414px;}
.ls28{letter-spacing:4.184292px;}
.ls1f{letter-spacing:4.722272px;}
.ls4{letter-spacing:5.021150px;}
.ls13{letter-spacing:5.379804px;}
.ls9{letter-spacing:5.499355px;}
.ls11{letter-spacing:5.559131px;}
.ls18{letter-spacing:5.738458px;}
.lse{letter-spacing:5.798233px;}
.ls27{letter-spacing:5.858009px;}
.ls25{letter-spacing:6.037336px;}
.ls26{letter-spacing:6.097111px;}
.ls1d{letter-spacing:7.292623px;}
.ls20{letter-spacing:7.352399px;}
.ls1e{letter-spacing:7.830604px;}
.ls22{letter-spacing:7.890379px;}
.lsd{letter-spacing:8.787013px;}
.lsa{letter-spacing:8.846789px;}
.ls34{letter-spacing:10.910712px;}
.ls2f{letter-spacing:14.543412px;}
.ls2e{letter-spacing:17.539289px;}
.ls36{letter-spacing:18.179412px;}
.ls33{letter-spacing:21.169289px;}
.ls35{letter-spacing:21.818700px;}
.ls32{letter-spacing:24.811289px;}
.ls1{letter-spacing:32.727300px;}
.ls2{letter-spacing:32.729412px;}
.ls24{letter-spacing:33.024532px;}
.ls3{letter-spacing:43.935066px;}
.ls1c{letter-spacing:44.473046px;}
.lsf{letter-spacing:44.771924px;}
.ls5{letter-spacing:45.011027px;}
.ls15{letter-spacing:45.130578px;}
.ls19{letter-spacing:45.250129px;}
.ls16{letter-spacing:45.309905px;}
.lsb{letter-spacing:45.369680px;}
.ls7{letter-spacing:45.429456px;}
.ls6{letter-spacing:45.489232px;}
.ls21{letter-spacing:45.549007px;}
.ls8{letter-spacing:45.788110px;}
.ls23{letter-spacing:46.027212px;}
.ls1b{letter-spacing:46.146763px;}
.ls12{letter-spacing:46.206539px;}
.lsc{letter-spacing:46.266314px;}
.ls10{letter-spacing:46.385866px;}
.ls14{letter-spacing:46.445641px;}
.ls1a{letter-spacing:46.505417px;}
.ls17{letter-spacing:46.565192px;}
.ls31{letter-spacing:864.997488px;}
.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;}
}
.ws12{word-spacing:-48.418425px;}
.ws32{word-spacing:-43.994842px;}
.ws1a{word-spacing:-35.934575px;}
.ws2a{word-spacing:-32.727300px;}
.ws0{word-spacing:-23.245312px;}
.ws21{word-spacing:-20.749108px;}
.ws2b{word-spacing:-20.160017px;}
.ws22{word-spacing:-18.065470px;}
.ws77{word-spacing:-17.672742px;}
.ws2c{word-spacing:-17.541833px;}
.ws1{word-spacing:-16.139475px;}
.ws19{word-spacing:-16.036377px;}
.wsb9{word-spacing:-15.250922px;}
.wsac{word-spacing:-14.989103px;}
.wsbf{word-spacing:-14.792740px;}
.wsbb{word-spacing:-14.727285px;}
.ws23{word-spacing:-14.530921px;}
.ws79{word-spacing:-14.334557px;}
.ws15{word-spacing:-13.483648px;}
.ws1c{word-spacing:-13.449600px;}
.wsba{word-spacing:-13.287284px;}
.ws5b{word-spacing:-13.025465px;}
.ws28{word-spacing:-12.960011px;}
.wsc0{word-spacing:-12.829102px;}
.wsbc{word-spacing:-12.763647px;}
.ws24{word-spacing:-12.632738px;}
.ws14{word-spacing:-12.567283px;}
.ws17{word-spacing:-12.501829px;}
.wsb7{word-spacing:-12.370919px;}
.ws76{word-spacing:-11.945091px;}
.wsa8{word-spacing:-11.585464px;}
.ws1f{word-spacing:-11.520010px;}
.wsa9{word-spacing:-11.454555px;}
.ws2d{word-spacing:-11.389100px;}
.ws29{word-spacing:-11.258191px;}
.wsb{word-spacing:-11.237813px;}
.ws7{word-spacing:-11.118262px;}
.wsbe{word-spacing:-11.061827px;}
.ws6{word-spacing:-10.930918px;}
.ws1b{word-spacing:-10.865464px;}
.ws8f{word-spacing:-10.800009px;}
.wsb8{word-spacing:-10.734554px;}
.ws1d{word-spacing:-10.669100px;}
.ws10{word-spacing:-10.640057px;}
.ws59{word-spacing:-10.407281px;}
.ws20{word-spacing:-10.014554px;}
.ws11{word-spacing:-9.982525px;}
.ws2e{word-spacing:-9.949099px;}
.ws8{word-spacing:-9.623872px;}
.wsd{word-spacing:-9.444545px;}
.wsa0{word-spacing:-9.294553px;}
.ws1e{word-spacing:-9.229099px;}
.wsb4{word-spacing:-8.554067px;}
.wsf{word-spacing:-8.547911px;}
.wsc{word-spacing:-8.488135px;}
.ws2f{word-spacing:-8.378189px;}
.ws8e{word-spacing:-8.369091px;}
.wsa1{word-spacing:-8.116370px;}
.ws9{word-spacing:-8.069706px;}
.ws30{word-spacing:-8.050916px;}
.wsa2{word-spacing:-7.527279px;}
.ws5a{word-spacing:-7.396370px;}
.ws78{word-spacing:-7.200006px;}
.ws74{word-spacing:-6.807278px;}
.ws26{word-spacing:-6.741824px;}
.wsbd{word-spacing:-6.676369px;}
.wsa3{word-spacing:-6.545460px;}
.ws27{word-spacing:-5.890914px;}
.ws49{word-spacing:-5.798233px;}
.ws43{word-spacing:-5.618906px;}
.ws6c{word-spacing:-5.559131px;}
.ws44{word-spacing:-5.439580px;}
.wsaa{word-spacing:-5.432732px;}
.ws48{word-spacing:-5.080926px;}
.ws54{word-spacing:-4.782048px;}
.wsab{word-spacing:-4.712731px;}
.ws93{word-spacing:-4.244068px;}
.wsa4{word-spacing:-4.123640px;}
.wsb3{word-spacing:-3.796367px;}
.ws18{word-spacing:-3.272730px;}
.ws16{word-spacing:-3.207275px;}
.wsb1{word-spacing:-2.356366px;}
.wsa{word-spacing:-2.331248px;}
.wse{word-spacing:-1.673717px;}
.ws31{word-spacing:-1.636365px;}
.wsaf{word-spacing:-0.261818px;}
.ws9c{word-spacing:-0.065455px;}
.ws3b{word-spacing:-0.059776px;}
.ws9d{word-spacing:-0.047821px;}
.ws25{word-spacing:-0.003888px;}
.ws5{word-spacing:0.000000px;}
.wsb6{word-spacing:2.552729px;}
.wsb2{word-spacing:2.813134px;}
.wsb5{word-spacing:2.880002px;}
.ws52{word-spacing:8.308808px;}
.wsb0{word-spacing:8.540908px;}
.ws90{word-spacing:8.547911px;}
.ws58{word-spacing:8.667462px;}
.ws3e{word-spacing:8.727238px;}
.ws39{word-spacing:8.787013px;}
.ws63{word-spacing:9.743423px;}
.ws6b{word-spacing:9.803198px;}
.wsae{word-spacing:12.779274px;}
.ws9b{word-spacing:18.100285px;}
.ws9f{word-spacing:18.130924px;}
.ws4{word-spacing:23.312640px;}
.ws3{word-spacing:23.367292px;}
.ws9e{word-spacing:27.518957px;}
.ws2{word-spacing:27.975090px;}
.ws97{word-spacing:31.800619px;}
.ws7d{word-spacing:32.989198px;}
.ws40{word-spacing:33.295009px;}
.wsad{word-spacing:34.298210px;}
.ws8a{word-spacing:34.561198px;}
.ws87{word-spacing:34.610072px;}
.ws46{word-spacing:34.669848px;}
.ws81{word-spacing:34.729624px;}
.ws50{word-spacing:34.908950px;}
.ws55{word-spacing:35.028502px;}
.ws7f{word-spacing:35.083198px;}
.ws6d{word-spacing:35.207828px;}
.ws38{word-spacing:35.267604px;}
.ws5e{word-spacing:35.327380px;}
.ws98{word-spacing:35.387155px;}
.ws6e{word-spacing:35.745809px;}
.ws56{word-spacing:35.984911px;}
.ws61{word-spacing:36.283789px;}
.ws33{word-spacing:36.761994px;}
.ws72{word-spacing:37.001096px;}
.ws5c{word-spacing:37.598852px;}
.ws70{word-spacing:37.658628px;}
.ws6f{word-spacing:38.435711px;}
.ws89{word-spacing:42.799330px;}
.ws3f{word-spacing:43.875290px;}
.ws68{word-spacing:44.413271px;}
.ws99{word-spacing:44.712149px;}
.ws7c{word-spacing:44.891476px;}
.ws5f{word-spacing:44.951251px;}
.ws69{word-spacing:45.190354px;}
.ws9a{word-spacing:45.309905px;}
.ws3c{word-spacing:45.429456px;}
.ws73{word-spacing:45.489232px;}
.ws6a{word-spacing:45.608783px;}
.ws36{word-spacing:45.788110px;}
.ws34{word-spacing:45.967436px;}
.ws4f{word-spacing:46.086988px;}
.ws3d{word-spacing:46.206539px;}
.ws47{word-spacing:46.266314px;}
.ws41{word-spacing:46.326090px;}
.ws53{word-spacing:46.385866px;}
.ws42{word-spacing:46.445641px;}
.ws35{word-spacing:46.505417px;}
.ws3a{word-spacing:46.565192px;}
.ws4a{word-spacing:46.624968px;}
.ws8d{word-spacing:46.804295px;}
.ws67{word-spacing:46.983622px;}
.ws51{word-spacing:47.043397px;}
.ws64{word-spacing:47.162948px;}
.ws4b{word-spacing:47.282500px;}
.ws62{word-spacing:47.342275px;}
.ws4d{word-spacing:47.461826px;}
.ws57{word-spacing:47.521602px;}
.ws83{word-spacing:47.700929px;}
.ws4c{word-spacing:47.820480px;}
.ws84{word-spacing:47.914885px;}
.ws71{word-spacing:47.940031px;}
.ws37{word-spacing:47.999807px;}
.ws66{word-spacing:48.059582px;}
.ws92{word-spacing:48.119358px;}
.ws8b{word-spacing:48.166885px;}
.ws7a{word-spacing:48.179134px;}
.ws45{word-spacing:48.238909px;}
.ws95{word-spacing:48.340885px;}
.ws96{word-spacing:48.364885px;}
.ws91{word-spacing:48.418236px;}
.ws65{word-spacing:48.478012px;}
.ws7b{word-spacing:48.657338px;}
.ws60{word-spacing:48.717114px;}
.ws4e{word-spacing:48.836665px;}
.ws80{word-spacing:48.889814px;}
.ws7e{word-spacing:48.896441px;}
.ws94{word-spacing:48.907814px;}
.ws86{word-spacing:48.919814px;}
.ws5d{word-spacing:49.075768px;}
.ws75{word-spacing:68.661875px;}
.ws8c{word-spacing:183.625198px;}
.ws82{word-spacing:185.197198px;}
.ws88{word-spacing:334.261198px;}
.ws85{word-spacing:336.145198px;}
.wsa7{word-spacing:468.935345px;}
.wsa5{word-spacing:501.662645px;}
.wsa6{word-spacing:680.073294px;}
.ws13{word-spacing:2338.195905px;}
._25{margin-left:-43.875290px;}
._12{margin-left:-33.269498px;}
._11{margin-left:-32.088052px;}
._1{margin-left:-8.091257px;}
._13{margin-left:-6.283642px;}
._2{margin-left:-5.040004px;}
._d{margin-left:-3.727596px;}
._0{margin-left:-2.668393px;}
._8{margin-left:-1.595087px;}
._6{width:1.613941px;}
._19{width:2.640608px;}
._28{width:4.069492px;}
._26{width:5.200477px;}
._27{width:6.515540px;}
._33{width:7.999449px;}
._39{width:17.330224px;}
._43{width:19.529940px;}
._c{width:21.476758px;}
._7{width:23.290975px;}
._3c{width:25.658180px;}
._b{width:26.817736px;}
._5{width:27.982778px;}
._3{width:29.439325px;}
._a{width:31.421016px;}
._14{width:34.021147px;}
._18{width:36.261848px;}
._3d{width:37.799433px;}
._1c{width:39.076396px;}
._29{width:40.647240px;}
._24{width:43.038600px;}
._3b{width:44.183670px;}
._32{width:45.250129px;}
._2a{width:46.679993px;}
._3a{width:47.691427px;}
._9{width:48.695605px;}
._2b{width:49.972402px;}
._17{width:53.668389px;}
._1b{width:54.963010px;}
._4a{width:56.478585px;}
._e{width:60.545505px;}
._10{width:66.894601px;}
._1f{width:67.941875px;}
._2f{width:71.803696px;}
._30{width:76.435727px;}
._23{width:80.697600px;}
._22{width:96.836850px;}
._2d{width:121.745556px;}
._38{width:125.853950px;}
._37{width:150.072152px;}
._46{width:171.818325px;}
._31{width:196.360484px;}
._49{width:274.909320px;}
._34{width:291.862061px;}
._2e{width:300.851765px;}
._48{width:309.272985px;}
._45{width:343.636650px;}
._2c{width:374.057794px;}
._44{width:412.363980px;}
._40{width:431.762358px;}
._3e{width:508.501542px;}
._41{width:558.913542px;}
._47{width:584.182305px;}
._42{width:685.636935px;}
._3f{width:718.520214px;}
._36{width:921.077131px;}
._35{width:926.575318px;}
._15{width:934.626233px;}
._4{width:955.898978px;}
._16{width:1006.822657px;}
._1d{width:1318.417909px;}
._1e{width:1520.772176px;}
._20{width:1540.146738px;}
._1a{width:1626.400655px;}
._21{width:1741.681451px;}
._f{width:1909.688164px;}
.fc9{color:transparent;}
.fc8{color:rgb(0,0,153);}
.fc5{color:rgb(255,128,0);}
.fc7{color:rgb(0,128,0);}
.fc4{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,128);}
.fc6{color:rgb(102,102,102);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(229,229,229);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs6{font-size:47.820600px;}
.fs4{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs3{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y14{bottom:59.431500px;}
.y7{bottom:104.263500px;}
.y57{bottom:108.570000px;}
.y80{bottom:109.662000px;}
.yce{bottom:118.332000px;}
.y101{bottom:120.124500px;}
.y56{bottom:126.504000px;}
.y7f{bottom:127.596000px;}
.ycd{bottom:136.264500px;}
.y100{bottom:138.057000px;}
.y7e{bottom:145.528500px;}
.ycc{bottom:154.197000px;}
.yff{bottom:155.989500px;}
.y55{bottom:162.369000px;}
.y7d{bottom:163.461000px;}
.ycb{bottom:172.131000px;}
.yfe{bottom:173.922000px;}
.y142{bottom:174.090000px;}
.y54{bottom:180.301500px;}
.y7c{bottom:181.393500px;}
.y9c{bottom:189.015000px;}
.yca{bottom:190.063500px;}
.yfd{bottom:191.854500px;}
.y53{bottom:198.234000px;}
.y7b{bottom:199.326000px;}
.y141{bottom:205.621500px;}
.yc9{bottom:207.996000px;}
.y9b{bottom:209.340000px;}
.yfc{bottom:209.787000px;}
.y52{bottom:216.166500px;}
.y7a{bottom:217.258500px;}
.yc8{bottom:225.928500px;}
.yfb{bottom:227.721000px;}
.y51{bottom:234.100500px;}
.y11d{bottom:234.301500px;}
.y140{bottom:237.153000px;}
.y9a{bottom:240.231000px;}
.yc7{bottom:243.861000px;}
.y79{bottom:245.503500px;}
.yfa{bottom:245.653500px;}
.y11c{bottom:254.625000px;}
.y13f{bottom:257.478000px;}
.yc6{bottom:261.793500px;}
.yf9{bottom:263.586000px;}
.y78{bottom:265.827000px;}
.y50{bottom:269.965500px;}
.yc5{bottom:279.727500px;}
.yf8{bottom:281.518500px;}
.y11b{bottom:283.158000px;}
.y77{bottom:286.150500px;}
.y4f{bottom:287.898000px;}
.y13e{bottom:289.009500px;}
.y99{bottom:297.499500px;}
.yc4{bottom:297.660000px;}
.yf7{bottom:299.451000px;}
.y4e{bottom:305.830500px;}
.y76{bottom:306.474000px;}
.y13d{bottom:309.333000px;}
.yc3{bottom:315.592500px;}
.yf6{bottom:317.383500px;}
.y4d{bottom:323.763000px;}
.y11a{bottom:324.306000px;}
.y98{bottom:327.687000px;}
.yc2{bottom:333.525000px;}
.yf5{bottom:335.317500px;}
.y75{bottom:337.366500px;}
.y13c{bottom:340.864500px;}
.y4c{bottom:341.697000px;}
.y97{bottom:345.619500px;}
.yc1{bottom:351.457500px;}
.yf4{bottom:353.250000px;}
.y119{bottom:356.464500px;}
.y4b{bottom:359.629500px;}
.y13b{bottom:361.188000px;}
.y96{bottom:363.552000px;}
.yc0{bottom:369.390000px;}
.yf3{bottom:371.182500px;}
.y74{bottom:374.491500px;}
.y118{bottom:376.788000px;}
.y4a{bottom:377.562000px;}
.y95{bottom:381.484500px;}
.ybf{bottom:387.324000px;}
.yf2{bottom:389.115000px;}
.y13a{bottom:392.080500px;}
.y49{bottom:395.494500px;}
.y94{bottom:399.417000px;}
.ybe{bottom:405.256500px;}
.yf1{bottom:407.047500px;}
.y117{bottom:407.680500px;}
.y48{bottom:413.427000px;}
.ybd{bottom:423.189000px;}
.yf0{bottom:424.980000px;}
.y47{bottom:431.359500px;}
.y93{bottom:435.283500px;}
.y139{bottom:435.898500px;}
.ybc{bottom:441.121500px;}
.y2e{bottom:442.765500px;}
.yef{bottom:442.914000px;}
.y116{bottom:444.807000px;}
.y150{bottom:450.372000px;}
.y73{bottom:451.017000px;}
.y92{bottom:453.216000px;}
.y138{bottom:456.223500px;}
.ybb{bottom:459.054000px;}
.y46{bottom:459.604500px;}
.yee{bottom:460.846500px;}
.y2d{bottom:463.089000px;}
.y14f{bottom:470.695500px;}
.y91{bottom:471.148500px;}
.y72{bottom:471.340500px;}
.y137{bottom:476.547000px;}
.yba{bottom:476.986500px;}
.yed{bottom:478.779000px;}
.y45{bottom:479.928000px;}
.y2c{bottom:483.412500px;}
.y90{bottom:489.081000px;}
.y14e{bottom:491.019000px;}
.y71{bottom:491.665500px;}
.yb9{bottom:494.920500px;}
.y115{bottom:496.363500px;}
.yec{bottom:496.711500px;}
.y136{bottom:496.870500px;}
.y44{bottom:500.251500px;}
.y2b{bottom:503.736000px;}
.y8f{bottom:507.013500px;}
.y14d{bottom:511.344000px;}
.y70{bottom:511.989000px;}
.yb8{bottom:512.853000px;}
.yeb{bottom:514.644000px;}
.y135{bottom:517.194000px;}
.y43{bottom:520.575000px;}
.y8e{bottom:524.946000px;}
.y114{bottom:527.896500px;}
.yb7{bottom:530.785500px;}
.y14c{bottom:531.667500px;}
.y6f{bottom:532.312500px;}
.yea{bottom:532.576500px;}
.y134{bottom:537.517500px;}
.y2a{bottom:540.423000px;}
.y113{bottom:548.220000px;}
.yb6{bottom:548.718000px;}
.ye9{bottom:550.510500px;}
.y42{bottom:551.467500px;}
.y14b{bottom:551.991000px;}
.y133{bottom:557.842500px;}
.y29{bottom:560.748000px;}
.y8d{bottom:560.812500px;}
.y6e{bottom:560.845500px;}
.yb5{bottom:566.650500px;}
.ye8{bottom:568.443000px;}
.y14a{bottom:572.314500px;}
.y132{bottom:578.166000px;}
.y8c{bottom:578.745000px;}
.y112{bottom:579.751500px;}
.y28{bottom:581.071500px;}
.yb4{bottom:584.583000px;}
.ye7{bottom:586.375500px;}
.y41{bottom:588.592500px;}
.y149{bottom:592.638000px;}
.y8b{bottom:596.677500px;}
.y131{bottom:598.489500px;}
.y6d{bottom:601.993500px;}
.yb3{bottom:602.517000px;}
.ye6{bottom:604.308000px;}
.y111{bottom:611.283000px;}
.y148{bottom:612.961500px;}
.y8a{bottom:614.610000px;}
.y27{bottom:617.758500px;}
.y130{bottom:618.813000px;}
.yb2{bottom:620.449500px;}
.ye5{bottom:622.240500px;}
.y110{bottom:631.606500px;}
.y6c{bottom:637.335000px;}
.y26{bottom:638.082000px;}
.yb1{bottom:638.382000px;}
.y12f{bottom:639.136500px;}
.y40{bottom:640.150500px;}
.ye4{bottom:640.173000px;}
.y147{bottom:643.854000px;}
.y89{bottom:650.476500px;}
.yb0{bottom:656.314500px;}
.y6b{bottom:657.658500px;}
.ye3{bottom:658.107000px;}
.y25{bottom:658.405500px;}
.y12e{bottom:659.460000px;}
.y3f{bottom:660.475500px;}
.y10f{bottom:663.139500px;}
.y88{bottom:668.409000px;}
.yaf{bottom:674.247000px;}
.ye2{bottom:676.039500px;}
.y12d{bottom:679.785000px;}
.y87{bottom:686.341500px;}
.y146{bottom:687.673500px;}
.y6a{bottom:688.549500px;}
.y3e{bottom:692.007000px;}
.yae{bottom:692.179500px;}
.ye1{bottom:693.972000px;}
.y24{bottom:695.094000px;}
.y10e{bottom:696.912000px;}
.y12c{bottom:700.108500px;}
.y86{bottom:704.274000px;}
.yad{bottom:710.113500px;}
.ye0{bottom:711.904500px;}
.y3d{bottom:712.330500px;}
.y23{bottom:715.417500px;}
.y145{bottom:719.205000px;}
.y12b{bottom:720.432000px;}
.y10d{bottom:727.804500px;}
.yac{bottom:728.046000px;}
.ydf{bottom:729.837000px;}
.y22{bottom:735.741000px;}
.y85{bottom:740.140500px;}
.y12a{bottom:740.755500px;}
.y3c{bottom:743.862000px;}
.y69{bottom:745.818000px;}
.yab{bottom:745.978500px;}
.yde{bottom:747.769500px;}
.y144{bottom:750.736500px;}
.y84{bottom:758.073000px;}
.y6{bottom:763.357500px;}
.yaa{bottom:763.911000px;}
.y3b{bottom:764.185500px;}
.ydd{bottom:765.703500px;}
.y10c{bottom:771.622500px;}
.y21{bottom:772.428000px;}
.y129{bottom:774.529500px;}
.y68{bottom:776.005500px;}
.y143{bottom:782.268000px;}
.ydc{bottom:783.636000px;}
.y5{bottom:783.681000px;}
.ya9{bottom:792.154500px;}
.y20{bottom:792.753000px;}
.y67{bottom:793.938000px;}
.y128{bottom:794.853000px;}
.y3a{bottom:795.717000px;}
.ydb{bottom:801.568500px;}
.y10b{bottom:803.154000px;}
.y4{bottom:804.004500px;}
.y66{bottom:811.870500px;}
.ya8{bottom:812.479500px;}
.y1f{bottom:813.076500px;}
.y39{bottom:816.042000px;}
.yda{bottom:819.501000px;}
.y127{bottom:825.745500px;}
.y65{bottom:829.803000px;}
.ya7{bottom:832.803000px;}
.y10a{bottom:834.687000px;}
.yd9{bottom:837.433500px;}
.y38{bottom:846.933000px;}
.y83{bottom:847.737000px;}
.y1e{bottom:849.763500px;}
.ya6{bottom:853.126500px;}
.yd8{bottom:855.367500px;}
.y126{bottom:862.870500px;}
.y64{bottom:865.669500px;}
.y109{bottom:868.459500px;}
.y1d{bottom:870.087000px;}
.yd7{bottom:873.300000px;}
.ya5{bottom:873.450000px;}
.y63{bottom:883.602000px;}
.y1c{bottom:890.410500px;}
.y37{bottom:890.752500px;}
.yd6{bottom:891.232500px;}
.y108{bottom:901.483500px;}
.y62{bottom:901.534500px;}
.ya4{bottom:904.342500px;}
.yd5{bottom:909.165000px;}
.y36{bottom:911.076000px;}
.y125{bottom:914.428500px;}
.y61{bottom:919.467000px;}
.y107{bottom:919.743000px;}
.y1b{bottom:927.099000px;}
.y124{bottom:934.752000px;}
.y3{bottom:937.203000px;}
.y60{bottom:937.399500px;}
.yd4{bottom:937.408500px;}
.ya3{bottom:941.467500px;}
.y35{bottom:942.607500px;}
.y13{bottom:945.993000px;}
.y1a{bottom:947.422500px;}
.y5f{bottom:955.333500px;}
.y106{bottom:956.505000px;}
.yd3{bottom:957.733500px;}
.y34{bottom:962.931000px;}
.y12{bottom:963.925500px;}
.y2{bottom:964.102500px;}
.y123{bottom:966.283500px;}
.y19{bottom:967.746000px;}
.y82{bottom:973.266000px;}
.y105{bottom:976.828500px;}
.yd2{bottom:978.057000px;}
.y11{bottom:981.858000px;}
.y5e{bottom:991.198500px;}
.y33{bottom:994.464000px;}
.y122{bottom:997.816500px;}
.ya2{bottom:998.010000px;}
.yd1{bottom:998.380500px;}
.y10{bottom:999.790500px;}
.y18{bottom:1004.433000px;}
.y104{bottom:1007.719500px;}
.y5d{bottom:1009.131000px;}
.y1{bottom:1012.261500px;}
.y32{bottom:1014.787500px;}
.yf{bottom:1017.723000px;}
.y17{bottom:1024.758000px;}
.ya1{bottom:1026.543000px;}
.y5c{bottom:1027.063500px;}
.yd0{bottom:1029.271500px;}
.y121{bottom:1029.348000px;}
.ye{bottom:1035.657000px;}
.y103{bottom:1044.846000px;}
.y5b{bottom:1044.996000px;}
.y16{bottom:1045.081500px;}
.y31{bottom:1046.319000px;}
.ya0{bottom:1046.868000px;}
.y120{bottom:1049.671500px;}
.yd{bottom:1053.589500px;}
.y5a{bottom:1062.930000px;}
.y30{bottom:1066.642500px;}
.y9f{bottom:1067.191500px;}
.yc{bottom:1071.522000px;}
.y81{bottom:1080.862500px;}
.y15{bottom:1081.768500px;}
.y11f{bottom:1083.444000px;}
.ycf{bottom:1086.540000px;}
.yb{bottom:1089.454500px;}
.y9e{bottom:1095.724500px;}
.y2f{bottom:1097.535000px;}
.y59{bottom:1098.795000px;}
.y11e{bottom:1103.769000px;}
.ya{bottom:1107.387000px;}
.y102{bottom:1109.853000px;}
.y58{bottom:1116.727500px;}
.y9{bottom:1134.660000px;}
.y9d{bottom:1136.872500px;}
.y8{bottom:1194.555000px;}
.hc{height:24.245146px;}
.he{height:31.657237px;}
.hb{height:41.484266px;}
.h9{height:44.831700px;}
.h6{height:45.425492px;}
.h5{height:46.145493px;}
.h8{height:49.090950px;}
.h7{height:49.781453px;}
.ha{height:53.798400px;}
.hd{height:58.206000px;}
.h4{height:59.737577px;}
.h3{height:64.557900px;}
.h2{height:92.981250px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:89.569500px;}
.x15{left:95.049000px;}
.x8{left:108.000000px;}
.xe{left:109.255500px;}
.x1f{left:116.590500px;}
.xd{left:128.910000px;}
.xc{left:132.546000px;}
.xf{left:139.261500px;}
.x20{left:142.363500px;}
.xa{left:148.909500px;}
.x21{left:150.954000px;}
.x18{left:191.889000px;}
.x17{left:206.661000px;}
.x13{left:212.979000px;}
.x3{left:214.840500px;}
.x2{left:217.954500px;}
.x14{left:221.707500px;}
.x10{left:227.752500px;}
.x12{left:243.829500px;}
.x11{left:245.844000px;}
.x1e{left:260.070000px;}
.x1{left:265.498500px;}
.x5{left:334.008000px;}
.x6{left:339.070500px;}
.x19{left:343.723500px;}
.x4{left:374.760000px;}
.x7{left:398.049000px;}
.x1a{left:409.950000px;}
.x9{left:413.580000px;}
.x1b{left:425.632500px;}
.x22{left:438.274500px;}
.xb{left:442.366500px;}
.x1c{left:475.333500px;}
.x1d{left:498.868500px;}
@media print{
.v2{vertical-align:-8.730667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:51.738667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.002397pt;}
.ls37{letter-spacing:0.002400pt;}
.ls2a{letter-spacing:0.002405pt;}
.ls30{letter-spacing:0.004822pt;}
.ls2b{letter-spacing:0.336940pt;}
.ls2c{letter-spacing:2.657146pt;}
.ls29{letter-spacing:3.348813pt;}
.ls28{letter-spacing:3.719371pt;}
.ls1f{letter-spacing:4.197575pt;}
.ls4{letter-spacing:4.463245pt;}
.ls13{letter-spacing:4.782048pt;}
.ls9{letter-spacing:4.888316pt;}
.ls11{letter-spacing:4.941450pt;}
.ls18{letter-spacing:5.100851pt;}
.lse{letter-spacing:5.153985pt;}
.ls27{letter-spacing:5.207119pt;}
.ls25{letter-spacing:5.366521pt;}
.ls26{letter-spacing:5.419654pt;}
.ls1d{letter-spacing:6.482332pt;}
.ls20{letter-spacing:6.535466pt;}
.ls1e{letter-spacing:6.960537pt;}
.ls22{letter-spacing:7.013670pt;}
.lsd{letter-spacing:7.810678pt;}
.lsa{letter-spacing:7.863812pt;}
.ls34{letter-spacing:9.698411pt;}
.ls2f{letter-spacing:12.927477pt;}
.ls2e{letter-spacing:15.590479pt;}
.ls36{letter-spacing:16.159477pt;}
.ls33{letter-spacing:18.817146pt;}
.ls35{letter-spacing:19.394400pt;}
.ls32{letter-spacing:22.054479pt;}
.ls1{letter-spacing:29.090933pt;}
.ls2{letter-spacing:29.092811pt;}
.ls24{letter-spacing:29.355139pt;}
.ls3{letter-spacing:39.053392pt;}
.ls1c{letter-spacing:39.531597pt;}
.lsf{letter-spacing:39.797266pt;}
.ls5{letter-spacing:40.009802pt;}
.ls15{letter-spacing:40.116069pt;}
.ls19{letter-spacing:40.222337pt;}
.ls16{letter-spacing:40.275471pt;}
.lsb{letter-spacing:40.328605pt;}
.ls7{letter-spacing:40.381739pt;}
.ls6{letter-spacing:40.434873pt;}
.ls21{letter-spacing:40.488006pt;}
.ls8{letter-spacing:40.700542pt;}
.ls23{letter-spacing:40.913077pt;}
.ls1b{letter-spacing:41.019345pt;}
.ls12{letter-spacing:41.072479pt;}
.lsc{letter-spacing:41.125613pt;}
.ls10{letter-spacing:41.231881pt;}
.ls14{letter-spacing:41.285014pt;}
.ls1a{letter-spacing:41.338148pt;}
.ls17{letter-spacing:41.391282pt;}
.ls31{letter-spacing:768.886656pt;}
.ws12{word-spacing:-43.038600pt;}
.ws32{word-spacing:-39.106526pt;}
.ws1a{word-spacing:-31.941845pt;}
.ws2a{word-spacing:-29.090933pt;}
.ws0{word-spacing:-20.662500pt;}
.ws21{word-spacing:-18.443652pt;}
.ws2b{word-spacing:-17.920015pt;}
.ws22{word-spacing:-16.058195pt;}
.ws77{word-spacing:-15.709104pt;}
.ws2c{word-spacing:-15.592740pt;}
.ws1{word-spacing:-14.346200pt;}
.ws19{word-spacing:-14.254557pt;}
.wsb9{word-spacing:-13.556375pt;}
.wsac{word-spacing:-13.323647pt;}
.wsbf{word-spacing:-13.149102pt;}
.wsbb{word-spacing:-13.090920pt;}
.ws23{word-spacing:-12.916374pt;}
.ws79{word-spacing:-12.741829pt;}
.ws15{word-spacing:-11.985465pt;}
.ws1c{word-spacing:-11.955200pt;}
.wsba{word-spacing:-11.810919pt;}
.ws5b{word-spacing:-11.578191pt;}
.ws28{word-spacing:-11.520010pt;}
.wsc0{word-spacing:-11.403646pt;}
.wsbc{word-spacing:-11.345464pt;}
.ws24{word-spacing:-11.229100pt;}
.ws14{word-spacing:-11.170918pt;}
.ws17{word-spacing:-11.112737pt;}
.wsb7{word-spacing:-10.996373pt;}
.ws76{word-spacing:-10.617859pt;}
.wsa8{word-spacing:-10.298190pt;}
.ws1f{word-spacing:-10.240009pt;}
.wsa9{word-spacing:-10.181827pt;}
.ws2d{word-spacing:-10.123645pt;}
.ws29{word-spacing:-10.007281pt;}
.wsb{word-spacing:-9.989167pt;}
.ws7{word-spacing:-9.882899pt;}
.wsbe{word-spacing:-9.832735pt;}
.ws6{word-spacing:-9.716372pt;}
.ws1b{word-spacing:-9.658190pt;}
.ws8f{word-spacing:-9.600008pt;}
.wsb8{word-spacing:-9.541826pt;}
.ws1d{word-spacing:-9.483644pt;}
.ws10{word-spacing:-9.457828pt;}
.ws59{word-spacing:-9.250917pt;}
.ws20{word-spacing:-8.901826pt;}
.ws11{word-spacing:-8.873356pt;}
.ws2e{word-spacing:-8.843644pt;}
.ws8{word-spacing:-8.554553pt;}
.wsd{word-spacing:-8.395151pt;}
.wsa0{word-spacing:-8.261825pt;}
.ws1e{word-spacing:-8.203643pt;}
.wsb4{word-spacing:-7.603615pt;}
.wsf{word-spacing:-7.598143pt;}
.wsc{word-spacing:-7.545009pt;}
.ws2f{word-spacing:-7.447279pt;}
.ws8e{word-spacing:-7.439192pt;}
.wsa1{word-spacing:-7.214551pt;}
.ws9{word-spacing:-7.173072pt;}
.ws30{word-spacing:-7.156370pt;}
.wsa2{word-spacing:-6.690915pt;}
.ws5a{word-spacing:-6.574551pt;}
.ws78{word-spacing:-6.400005pt;}
.ws74{word-spacing:-6.050914pt;}
.ws26{word-spacing:-5.992732pt;}
.wsbd{word-spacing:-5.934550pt;}
.wsa3{word-spacing:-5.818187pt;}
.ws27{word-spacing:-5.236368pt;}
.ws49{word-spacing:-5.153985pt;}
.ws43{word-spacing:-4.994583pt;}
.ws6c{word-spacing:-4.941450pt;}
.ws44{word-spacing:-4.835182pt;}
.wsaa{word-spacing:-4.829095pt;}
.ws48{word-spacing:-4.516379pt;}
.ws54{word-spacing:-4.250709pt;}
.wsab{word-spacing:-4.189094pt;}
.ws93{word-spacing:-3.772505pt;}
.wsa4{word-spacing:-3.665458pt;}
.wsb3{word-spacing:-3.374548pt;}
.ws18{word-spacing:-2.909093pt;}
.ws16{word-spacing:-2.850911pt;}
.wsb1{word-spacing:-2.094547pt;}
.wsa{word-spacing:-2.072221pt;}
.wse{word-spacing:-1.487748pt;}
.ws31{word-spacing:-1.454547pt;}
.wsaf{word-spacing:-0.232727pt;}
.ws9c{word-spacing:-0.058182pt;}
.ws3b{word-spacing:-0.053134pt;}
.ws9d{word-spacing:-0.042507pt;}
.ws25{word-spacing:-0.003456pt;}
.ws5{word-spacing:0.000000pt;}
.wsb6{word-spacing:2.269093pt;}
.wsb2{word-spacing:2.500564pt;}
.wsb5{word-spacing:2.560002pt;}
.ws52{word-spacing:7.385607pt;}
.wsb0{word-spacing:7.591919pt;}
.ws90{word-spacing:7.598143pt;}
.ws58{word-spacing:7.704411pt;}
.ws3e{word-spacing:7.757545pt;}
.ws39{word-spacing:7.810678pt;}
.ws63{word-spacing:8.660820pt;}
.ws6b{word-spacing:8.713954pt;}
.wsae{word-spacing:11.359355pt;}
.ws9b{word-spacing:16.089142pt;}
.ws9f{word-spacing:16.116377pt;}
.ws4{word-spacing:20.722347pt;}
.ws3{word-spacing:20.770926pt;}
.ws9e{word-spacing:24.461295pt;}
.ws2{word-spacing:24.866747pt;}
.ws97{word-spacing:28.267217pt;}
.ws7d{word-spacing:29.323732pt;}
.ws40{word-spacing:29.595564pt;}
.wsad{word-spacing:30.487298pt;}
.ws8a{word-spacing:30.721065pt;}
.ws87{word-spacing:30.764509pt;}
.ws46{word-spacing:30.817643pt;}
.ws81{word-spacing:30.870777pt;}
.ws50{word-spacing:31.030178pt;}
.ws55{word-spacing:31.136446pt;}
.ws7f{word-spacing:31.185065pt;}
.ws6d{word-spacing:31.295847pt;}
.ws38{word-spacing:31.348981pt;}
.ws5e{word-spacing:31.402115pt;}
.ws98{word-spacing:31.455249pt;}
.ws6e{word-spacing:31.774052pt;}
.ws56{word-spacing:31.986588pt;}
.ws61{word-spacing:32.252257pt;}
.ws33{word-spacing:32.677328pt;}
.ws72{word-spacing:32.889863pt;}
.ws5c{word-spacing:33.421202pt;}
.ws70{word-spacing:33.474336pt;}
.ws6f{word-spacing:34.165076pt;}
.ws89{word-spacing:38.043849pt;}
.ws3f{word-spacing:39.000258pt;}
.ws68{word-spacing:39.478463pt;}
.ws99{word-spacing:39.744132pt;}
.ws7c{word-spacing:39.903534pt;}
.ws5f{word-spacing:39.956668pt;}
.ws69{word-spacing:40.169203pt;}
.ws9a{word-spacing:40.275471pt;}
.ws3c{word-spacing:40.381739pt;}
.ws73{word-spacing:40.434873pt;}
.ws6a{word-spacing:40.541140pt;}
.ws36{word-spacing:40.700542pt;}
.ws34{word-spacing:40.859943pt;}
.ws4f{word-spacing:40.966211pt;}
.ws3d{word-spacing:41.072479pt;}
.ws47{word-spacing:41.125613pt;}
.ws41{word-spacing:41.178747pt;}
.ws53{word-spacing:41.231881pt;}
.ws42{word-spacing:41.285014pt;}
.ws35{word-spacing:41.338148pt;}
.ws3a{word-spacing:41.391282pt;}
.ws4a{word-spacing:41.444416pt;}
.ws8d{word-spacing:41.603818pt;}
.ws67{word-spacing:41.763219pt;}
.ws51{word-spacing:41.816353pt;}
.ws64{word-spacing:41.922621pt;}
.ws4b{word-spacing:42.028889pt;}
.ws62{word-spacing:42.082022pt;}
.ws4d{word-spacing:42.188290pt;}
.ws57{word-spacing:42.241424pt;}
.ws83{word-spacing:42.400826pt;}
.ws4c{word-spacing:42.507093pt;}
.ws84{word-spacing:42.591009pt;}
.ws71{word-spacing:42.613361pt;}
.ws37{word-spacing:42.666495pt;}
.ws66{word-spacing:42.719629pt;}
.ws92{word-spacing:42.772763pt;}
.ws8b{word-spacing:42.815009pt;}
.ws7a{word-spacing:42.825897pt;}
.ws45{word-spacing:42.879030pt;}
.ws95{word-spacing:42.969676pt;}
.ws96{word-spacing:42.991009pt;}
.ws91{word-spacing:43.038432pt;}
.ws65{word-spacing:43.091566pt;}
.ws7b{word-spacing:43.250967pt;}
.ws60{word-spacing:43.304101pt;}
.ws4e{word-spacing:43.410369pt;}
.ws80{word-spacing:43.457613pt;}
.ws7e{word-spacing:43.463503pt;}
.ws94{word-spacing:43.473613pt;}
.ws86{word-spacing:43.484279pt;}
.ws5d{word-spacing:43.622905pt;}
.ws75{word-spacing:61.032778pt;}
.ws8c{word-spacing:163.222398pt;}
.ws82{word-spacing:164.619732pt;}
.ws88{word-spacing:297.121065pt;}
.ws85{word-spacing:298.795732pt;}
.wsa7{word-spacing:416.831418pt;}
.wsa5{word-spacing:445.922351pt;}
.wsa6{word-spacing:604.509595pt;}
.ws13{word-spacing:2078.396360pt;}
._25{margin-left:-39.000258pt;}
._12{margin-left:-29.572887pt;}
._11{margin-left:-28.522713pt;}
._1{margin-left:-7.192228pt;}
._13{margin-left:-5.585459pt;}
._2{margin-left:-4.480004pt;}
._d{margin-left:-3.313419pt;}
._0{margin-left:-2.371905pt;}
._8{margin-left:-1.417855pt;}
._6{width:1.434614pt;}
._19{width:2.347207pt;}
._28{width:3.617326pt;}
._26{width:4.622646pt;}
._27{width:5.791591pt;}
._33{width:7.110621pt;}
._39{width:15.404643pt;}
._43{width:17.359947pt;}
._c{width:19.090451pt;}
._7{width:20.703089pt;}
._3c{width:22.807271pt;}
._b{width:23.837987pt;}
._5{width:24.873581pt;}
._3{width:26.168289pt;}
._a{width:27.929792pt;}
._14{width:30.241019pt;}
._18{width:32.232754pt;}
._3d{width:33.599496pt;}
._1c{width:34.734574pt;}
._29{width:36.130880pt;}
._24{width:38.256533pt;}
._3b{width:39.274373pt;}
._32{width:40.222337pt;}
._2a{width:41.493327pt;}
._3a{width:42.392380pt;}
._9{width:43.284982pt;}
._2b{width:44.419913pt;}
._17{width:47.705235pt;}
._1b{width:48.856009pt;}
._4a{width:50.203186pt;}
._e{width:53.818227pt;}
._10{width:59.461868pt;}
._1f{width:60.392778pt;}
._2f{width:63.825508pt;}
._30{width:67.942869pt;}
._23{width:71.731200pt;}
._22{width:86.077200pt;}
._2d{width:108.218272pt;}
._38{width:111.870178pt;}
._37{width:133.397469pt;}
._46{width:152.727400pt;}
._31{width:174.542652pt;}
._49{width:244.363840pt;}
._34{width:259.432943pt;}
._2e{width:267.423791pt;}
._48{width:274.909320pt;}
._45{width:305.454800pt;}
._2c{width:332.495817pt;}
._44{width:366.545760pt;}
._40{width:383.788763pt;}
._3e{width:452.001371pt;}
._41{width:496.812037pt;}
._47{width:519.273160pt;}
._42{width:609.455053pt;}
._3f{width:638.684634pt;}
._36{width:818.735228pt;}
._35{width:823.622505pt;}
._15{width:830.778874pt;}
._4{width:849.687981pt;}
._16{width:894.953473pt;}
._1d{width:1171.927030pt;}
._1e{width:1351.797490pt;}
._20{width:1369.019323pt;}
._1a{width:1445.689471pt;}
._21{width:1548.161290pt;}
._f{width:1697.500590pt;}
.fs5{font-size:31.880533pt;}
.fs6{font-size:42.507200pt;}
.fs4{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs3{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:52.828000pt;}
.y7{bottom:92.678667pt;}
.y57{bottom:96.506667pt;}
.y80{bottom:97.477333pt;}
.yce{bottom:105.184000pt;}
.y101{bottom:106.777333pt;}
.y56{bottom:112.448000pt;}
.y7f{bottom:113.418667pt;}
.ycd{bottom:121.124000pt;}
.y100{bottom:122.717333pt;}
.y7e{bottom:129.358667pt;}
.ycc{bottom:137.064000pt;}
.yff{bottom:138.657333pt;}
.y55{bottom:144.328000pt;}
.y7d{bottom:145.298667pt;}
.ycb{bottom:153.005333pt;}
.yfe{bottom:154.597333pt;}
.y142{bottom:154.746667pt;}
.y54{bottom:160.268000pt;}
.y7c{bottom:161.238667pt;}
.y9c{bottom:168.013333pt;}
.yca{bottom:168.945333pt;}
.yfd{bottom:170.537333pt;}
.y53{bottom:176.208000pt;}
.y7b{bottom:177.178667pt;}
.y141{bottom:182.774667pt;}
.yc9{bottom:184.885333pt;}
.y9b{bottom:186.080000pt;}
.yfc{bottom:186.477333pt;}
.y52{bottom:192.148000pt;}
.y7a{bottom:193.118667pt;}
.yc8{bottom:200.825333pt;}
.yfb{bottom:202.418667pt;}
.y51{bottom:208.089333pt;}
.y11d{bottom:208.268000pt;}
.y140{bottom:210.802667pt;}
.y9a{bottom:213.538667pt;}
.yc7{bottom:216.765333pt;}
.y79{bottom:218.225333pt;}
.yfa{bottom:218.358667pt;}
.y11c{bottom:226.333333pt;}
.y13f{bottom:228.869333pt;}
.yc6{bottom:232.705333pt;}
.yf9{bottom:234.298667pt;}
.y78{bottom:236.290667pt;}
.y50{bottom:239.969333pt;}
.yc5{bottom:248.646667pt;}
.yf8{bottom:250.238667pt;}
.y11b{bottom:251.696000pt;}
.y77{bottom:254.356000pt;}
.y4f{bottom:255.909333pt;}
.y13e{bottom:256.897333pt;}
.y99{bottom:264.444000pt;}
.yc4{bottom:264.586667pt;}
.yf7{bottom:266.178667pt;}
.y4e{bottom:271.849333pt;}
.y76{bottom:272.421333pt;}
.y13d{bottom:274.962667pt;}
.yc3{bottom:280.526667pt;}
.yf6{bottom:282.118667pt;}
.y4d{bottom:287.789333pt;}
.y11a{bottom:288.272000pt;}
.y98{bottom:291.277333pt;}
.yc2{bottom:296.466667pt;}
.yf5{bottom:298.060000pt;}
.y75{bottom:299.881333pt;}
.y13c{bottom:302.990667pt;}
.y4c{bottom:303.730667pt;}
.y97{bottom:307.217333pt;}
.yc1{bottom:312.406667pt;}
.yf4{bottom:314.000000pt;}
.y119{bottom:316.857333pt;}
.y4b{bottom:319.670667pt;}
.y13b{bottom:321.056000pt;}
.y96{bottom:323.157333pt;}
.yc0{bottom:328.346667pt;}
.yf3{bottom:329.940000pt;}
.y74{bottom:332.881333pt;}
.y118{bottom:334.922667pt;}
.y4a{bottom:335.610667pt;}
.y95{bottom:339.097333pt;}
.ybf{bottom:344.288000pt;}
.yf2{bottom:345.880000pt;}
.y13a{bottom:348.516000pt;}
.y49{bottom:351.550667pt;}
.y94{bottom:355.037333pt;}
.ybe{bottom:360.228000pt;}
.yf1{bottom:361.820000pt;}
.y117{bottom:362.382667pt;}
.y48{bottom:367.490667pt;}
.ybd{bottom:376.168000pt;}
.yf0{bottom:377.760000pt;}
.y47{bottom:383.430667pt;}
.y93{bottom:386.918667pt;}
.y139{bottom:387.465333pt;}
.ybc{bottom:392.108000pt;}
.y2e{bottom:393.569333pt;}
.yef{bottom:393.701333pt;}
.y116{bottom:395.384000pt;}
.y150{bottom:400.330667pt;}
.y73{bottom:400.904000pt;}
.y92{bottom:402.858667pt;}
.y138{bottom:405.532000pt;}
.ybb{bottom:408.048000pt;}
.y46{bottom:408.537333pt;}
.yee{bottom:409.641333pt;}
.y2d{bottom:411.634667pt;}
.y14f{bottom:418.396000pt;}
.y91{bottom:418.798667pt;}
.y72{bottom:418.969333pt;}
.y137{bottom:423.597333pt;}
.yba{bottom:423.988000pt;}
.yed{bottom:425.581333pt;}
.y45{bottom:426.602667pt;}
.y2c{bottom:429.700000pt;}
.y90{bottom:434.738667pt;}
.y14e{bottom:436.461333pt;}
.y71{bottom:437.036000pt;}
.yb9{bottom:439.929333pt;}
.y115{bottom:441.212000pt;}
.yec{bottom:441.521333pt;}
.y136{bottom:441.662667pt;}
.y44{bottom:444.668000pt;}
.y2b{bottom:447.765333pt;}
.y8f{bottom:450.678667pt;}
.y14d{bottom:454.528000pt;}
.y70{bottom:455.101333pt;}
.yb8{bottom:455.869333pt;}
.yeb{bottom:457.461333pt;}
.y135{bottom:459.728000pt;}
.y43{bottom:462.733333pt;}
.y8e{bottom:466.618667pt;}
.y114{bottom:469.241333pt;}
.yb7{bottom:471.809333pt;}
.y14c{bottom:472.593333pt;}
.y6f{bottom:473.166667pt;}
.yea{bottom:473.401333pt;}
.y134{bottom:477.793333pt;}
.y2a{bottom:480.376000pt;}
.y113{bottom:487.306667pt;}
.yb6{bottom:487.749333pt;}
.ye9{bottom:489.342667pt;}
.y42{bottom:490.193333pt;}
.y14b{bottom:490.658667pt;}
.y133{bottom:495.860000pt;}
.y29{bottom:498.442667pt;}
.y8d{bottom:498.500000pt;}
.y6e{bottom:498.529333pt;}
.yb5{bottom:503.689333pt;}
.ye8{bottom:505.282667pt;}
.y14a{bottom:508.724000pt;}
.y132{bottom:513.925333pt;}
.y8c{bottom:514.440000pt;}
.y112{bottom:515.334667pt;}
.y28{bottom:516.508000pt;}
.yb4{bottom:519.629333pt;}
.ye7{bottom:521.222667pt;}
.y41{bottom:523.193333pt;}
.y149{bottom:526.789333pt;}
.y8b{bottom:530.380000pt;}
.y131{bottom:531.990667pt;}
.y6d{bottom:535.105333pt;}
.yb3{bottom:535.570667pt;}
.ye6{bottom:537.162667pt;}
.y111{bottom:543.362667pt;}
.y148{bottom:544.854667pt;}
.y8a{bottom:546.320000pt;}
.y27{bottom:549.118667pt;}
.y130{bottom:550.056000pt;}
.yb2{bottom:551.510667pt;}
.ye5{bottom:553.102667pt;}
.y110{bottom:561.428000pt;}
.y6c{bottom:566.520000pt;}
.y26{bottom:567.184000pt;}
.yb1{bottom:567.450667pt;}
.y12f{bottom:568.121333pt;}
.y40{bottom:569.022667pt;}
.ye4{bottom:569.042667pt;}
.y147{bottom:572.314667pt;}
.y89{bottom:578.201333pt;}
.yb0{bottom:583.390667pt;}
.y6b{bottom:584.585333pt;}
.ye3{bottom:584.984000pt;}
.y25{bottom:585.249333pt;}
.y12e{bottom:586.186667pt;}
.y3f{bottom:587.089333pt;}
.y10f{bottom:589.457333pt;}
.y88{bottom:594.141333pt;}
.yaf{bottom:599.330667pt;}
.ye2{bottom:600.924000pt;}
.y12d{bottom:604.253333pt;}
.y87{bottom:610.081333pt;}
.y146{bottom:611.265333pt;}
.y6a{bottom:612.044000pt;}
.y3e{bottom:615.117333pt;}
.yae{bottom:615.270667pt;}
.ye1{bottom:616.864000pt;}
.y24{bottom:617.861333pt;}
.y10e{bottom:619.477333pt;}
.y12c{bottom:622.318667pt;}
.y86{bottom:626.021333pt;}
.yad{bottom:631.212000pt;}
.ye0{bottom:632.804000pt;}
.y3d{bottom:633.182667pt;}
.y23{bottom:635.926667pt;}
.y145{bottom:639.293333pt;}
.y12b{bottom:640.384000pt;}
.y10d{bottom:646.937333pt;}
.yac{bottom:647.152000pt;}
.ydf{bottom:648.744000pt;}
.y22{bottom:653.992000pt;}
.y85{bottom:657.902667pt;}
.y12a{bottom:658.449333pt;}
.y3c{bottom:661.210667pt;}
.y69{bottom:662.949333pt;}
.yab{bottom:663.092000pt;}
.yde{bottom:664.684000pt;}
.y144{bottom:667.321333pt;}
.y84{bottom:673.842667pt;}
.y6{bottom:678.540000pt;}
.yaa{bottom:679.032000pt;}
.y3b{bottom:679.276000pt;}
.ydd{bottom:680.625333pt;}
.y10c{bottom:685.886667pt;}
.y21{bottom:686.602667pt;}
.y129{bottom:688.470667pt;}
.y68{bottom:689.782667pt;}
.y143{bottom:695.349333pt;}
.ydc{bottom:696.565333pt;}
.y5{bottom:696.605333pt;}
.ya9{bottom:704.137333pt;}
.y20{bottom:704.669333pt;}
.y67{bottom:705.722667pt;}
.y128{bottom:706.536000pt;}
.y3a{bottom:707.304000pt;}
.ydb{bottom:712.505333pt;}
.y10b{bottom:713.914667pt;}
.y4{bottom:714.670667pt;}
.y66{bottom:721.662667pt;}
.ya8{bottom:722.204000pt;}
.y1f{bottom:722.734667pt;}
.y39{bottom:725.370667pt;}
.yda{bottom:728.445333pt;}
.y127{bottom:733.996000pt;}
.y65{bottom:737.602667pt;}
.ya7{bottom:740.269333pt;}
.y10a{bottom:741.944000pt;}
.yd9{bottom:744.385333pt;}
.y38{bottom:752.829333pt;}
.y83{bottom:753.544000pt;}
.y1e{bottom:755.345333pt;}
.ya6{bottom:758.334667pt;}
.yd8{bottom:760.326667pt;}
.y126{bottom:766.996000pt;}
.y64{bottom:769.484000pt;}
.y109{bottom:771.964000pt;}
.y1d{bottom:773.410667pt;}
.yd7{bottom:776.266667pt;}
.ya5{bottom:776.400000pt;}
.y63{bottom:785.424000pt;}
.y1c{bottom:791.476000pt;}
.y37{bottom:791.780000pt;}
.yd6{bottom:792.206667pt;}
.y108{bottom:801.318667pt;}
.y62{bottom:801.364000pt;}
.ya4{bottom:803.860000pt;}
.yd5{bottom:808.146667pt;}
.y36{bottom:809.845333pt;}
.y125{bottom:812.825333pt;}
.y61{bottom:817.304000pt;}
.y107{bottom:817.549333pt;}
.y1b{bottom:824.088000pt;}
.y124{bottom:830.890667pt;}
.y3{bottom:833.069333pt;}
.y60{bottom:833.244000pt;}
.yd4{bottom:833.252000pt;}
.ya3{bottom:836.860000pt;}
.y35{bottom:837.873333pt;}
.y13{bottom:840.882667pt;}
.y1a{bottom:842.153333pt;}
.y5f{bottom:849.185333pt;}
.y106{bottom:850.226667pt;}
.yd3{bottom:851.318667pt;}
.y34{bottom:855.938667pt;}
.y12{bottom:856.822667pt;}
.y2{bottom:856.980000pt;}
.y123{bottom:858.918667pt;}
.y19{bottom:860.218667pt;}
.y82{bottom:865.125333pt;}
.y105{bottom:868.292000pt;}
.yd2{bottom:869.384000pt;}
.y11{bottom:872.762667pt;}
.y5e{bottom:881.065333pt;}
.y33{bottom:883.968000pt;}
.y122{bottom:886.948000pt;}
.ya2{bottom:887.120000pt;}
.yd1{bottom:887.449333pt;}
.y10{bottom:888.702667pt;}
.y18{bottom:892.829333pt;}
.y104{bottom:895.750667pt;}
.y5d{bottom:897.005333pt;}
.y1{bottom:899.788000pt;}
.y32{bottom:902.033333pt;}
.yf{bottom:904.642667pt;}
.y17{bottom:910.896000pt;}
.ya1{bottom:912.482667pt;}
.y5c{bottom:912.945333pt;}
.yd0{bottom:914.908000pt;}
.y121{bottom:914.976000pt;}
.ye{bottom:920.584000pt;}
.y103{bottom:928.752000pt;}
.y5b{bottom:928.885333pt;}
.y16{bottom:928.961333pt;}
.y31{bottom:930.061333pt;}
.ya0{bottom:930.549333pt;}
.y120{bottom:933.041333pt;}
.yd{bottom:936.524000pt;}
.y5a{bottom:944.826667pt;}
.y30{bottom:948.126667pt;}
.y9f{bottom:948.614667pt;}
.yc{bottom:952.464000pt;}
.y81{bottom:960.766667pt;}
.y15{bottom:961.572000pt;}
.y11f{bottom:963.061333pt;}
.ycf{bottom:965.813333pt;}
.yb{bottom:968.404000pt;}
.y9e{bottom:973.977333pt;}
.y2f{bottom:975.586667pt;}
.y59{bottom:976.706667pt;}
.y11e{bottom:981.128000pt;}
.ya{bottom:984.344000pt;}
.y102{bottom:986.536000pt;}
.y58{bottom:992.646667pt;}
.y9{bottom:1008.586667pt;}
.y9d{bottom:1010.553333pt;}
.y8{bottom:1061.826667pt;}
.hc{height:21.551241pt;}
.he{height:28.139766pt;}
.hb{height:36.874903pt;}
.h9{height:39.850400pt;}
.h6{height:40.378215pt;}
.h5{height:41.018216pt;}
.h8{height:43.636400pt;}
.h7{height:44.250180pt;}
.ha{height:47.820800pt;}
.hd{height:51.738667pt;}
.h4{height:53.100068pt;}
.h3{height:57.384800pt;}
.h2{height:82.650000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:79.617333pt;}
.x15{left:84.488000pt;}
.x8{left:96.000000pt;}
.xe{left:97.116000pt;}
.x1f{left:103.636000pt;}
.xd{left:114.586667pt;}
.xc{left:117.818667pt;}
.xf{left:123.788000pt;}
.x20{left:126.545333pt;}
.xa{left:132.364000pt;}
.x21{left:134.181333pt;}
.x18{left:170.568000pt;}
.x17{left:183.698667pt;}
.x13{left:189.314667pt;}
.x3{left:190.969333pt;}
.x2{left:193.737333pt;}
.x14{left:197.073333pt;}
.x10{left:202.446667pt;}
.x12{left:216.737333pt;}
.x11{left:218.528000pt;}
.x1e{left:231.173333pt;}
.x1{left:235.998667pt;}
.x5{left:296.896000pt;}
.x6{left:301.396000pt;}
.x19{left:305.532000pt;}
.x4{left:333.120000pt;}
.x7{left:353.821333pt;}
.x1a{left:364.400000pt;}
.x9{left:367.626667pt;}
.x1b{left:378.340000pt;}
.x22{left:389.577333pt;}
.xb{left:393.214667pt;}
.x1c{left:422.518667pt;}
.x1d{left:443.438667pt;}
}




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