
    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_0cd85700615e5ed79d03e377.woff')format("woff");}.ff1{font-family:ff1;line-height:1.159000;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_77a7622851af215efd39b4ff.woff')format("woff");}.ff2{font-family:ff2;line-height:0.905000;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_16cb5da8d1c3ea48bd64ed64.woff')format("woff");}.ff3{font-family:ff3;line-height:0.919000;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_bcd36bd49a300f5cb1a49845.woff')format("woff");}.ff4{font-family:ff4;line-height:1.111000;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_fd51ac22106ea459c5f0a2a0.woff')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_6fb0057698ebd6287c69a509.woff')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_76a805e59e7fa817afd6eaaa.woff')format("woff");}.ff7{font-family:ff7;line-height:0.899000;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_bba168a29714e2bf45ae3986.woff')format("woff");}.ff8{font-family:ff8;line-height:0.388000;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_21aaabe7cd753d92b9365d20.woff')format("woff");}.ff9{font-family:ff9;line-height:0.673000;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_e9c5accf265fcdb43f3aa099.woff')format("woff");}.ffa{font-family:ffa;line-height:0.350000;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_bc7a66fb26cbd3fffb109246.woff')format("woff");}.ffb{font-family:ffb;line-height:0.696000;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_0e633fc67750d76f989f6532.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_26bd86752c751b372412efd6.woff')format("woff");}.ffd{font-family:ffd;line-height:0.700000;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_8ea1cc6d4c0023b2bd3c3a49.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_cbaf38d20e18535074d1121d.woff')format("woff");}.fff{font-family:fff;line-height:0.860000;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:-22.854000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.034000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.002100px;}
.lsc{letter-spacing:0.002700px;}
.lsb{letter-spacing:0.002712px;}
.ls5{letter-spacing:2.983882px;}
.ls6{letter-spacing:2.989883px;}
.lse{letter-spacing:10.910712px;}
.ls1{letter-spacing:14.530921px;}
.lsa{letter-spacing:18.188149px;}
.ls11{letter-spacing:18.426557px;}
.ls9{letter-spacing:21.608700px;}
.ls10{letter-spacing:22.265412px;}
.ls8{letter-spacing:26.318700px;}
.lsd{letter-spacing:28.634700px;}
.lsf{letter-spacing:29.456700px;}
.ls7{letter-spacing:29.887883px;}
.ls4{letter-spacing:30.636532px;}
.ls2{letter-spacing:32.726700px;}
.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;}
}
.wsa{word-spacing:-48.418425px;}
.ws68{word-spacing:-42.637126px;}
.ws2a{word-spacing:-37.636395px;}
.ws3e{word-spacing:-32.727300px;}
.ws0{word-spacing:-23.245312px;}
.ws27{word-spacing:-20.880017px;}
.ws2d{word-spacing:-20.417096px;}
.ws1{word-spacing:-19.367325px;}
.ws14{word-spacing:-19.145777px;}
.ws4b{word-spacing:-18.065470px;}
.wsca{word-spacing:-17.476378px;}
.ws1f{word-spacing:-16.887287px;}
.ws85{word-spacing:-16.821832px;}
.ws40{word-spacing:-16.139475px;}
.ws80{word-spacing:-15.970922px;}
.ws34{word-spacing:-15.774559px;}
.wsa3{word-spacing:-15.709104px;}
.ws51{word-spacing:-15.316376px;}
.wsb9{word-spacing:-15.250922px;}
.ws78{word-spacing:-15.120013px;}
.ws88{word-spacing:-14.989103px;}
.wsc2{word-spacing:-14.923649px;}
.ws98{word-spacing:-14.661830px;}
.wsc1{word-spacing:-14.596376px;}
.ws7e{word-spacing:-14.530921px;}
.wsbb{word-spacing:-14.465467px;}
.ws73{word-spacing:-14.334557px;}
.ws8d{word-spacing:-14.138194px;}
.ws50{word-spacing:-14.007284px;}
.ws7a{word-spacing:-13.941830px;}
.ws38{word-spacing:-13.876375px;}
.wse{word-spacing:-13.831218px;}
.ws5c{word-spacing:-13.810921px;}
.ws8a{word-spacing:-13.745466px;}
.ws99{word-spacing:-13.614557px;}
.ws52{word-spacing:-13.549102px;}
.ws8e{word-spacing:-13.521331px;}
.wsbc{word-spacing:-13.483648px;}
.ws30{word-spacing:-13.449600px;}
.ws6e{word-spacing:-13.418193px;}
.ws97{word-spacing:-13.287284px;}
.wsa6{word-spacing:-13.221829px;}
.wsc7{word-spacing:-13.090920px;}
.wsae{word-spacing:-12.894556px;}
.ws86{word-spacing:-12.763647px;}
.wsa2{word-spacing:-12.720661px;}
.wsa0{word-spacing:-12.698192px;}
.ws75{word-spacing:-12.632738px;}
.wsaf{word-spacing:-12.621900px;}
.ws7{word-spacing:-12.567283px;}
.ws77{word-spacing:-12.501829px;}
.ws71{word-spacing:-12.370919px;}
.ws82{word-spacing:-12.305465px;}
.ws13{word-spacing:-12.240010px;}
.ws32{word-spacing:-12.109101px;}
.ws6d{word-spacing:-11.978192px;}
.ws36{word-spacing:-11.847283px;}
.ws6a{word-spacing:-11.781828px;}
.ws94{word-spacing:-11.716373px;}
.wsa7{word-spacing:-11.650919px;}
.ws57{word-spacing:-11.585464px;}
.ws37{word-spacing:-11.389100px;}
.ws48{word-spacing:-11.323646px;}
.wsb1{word-spacing:-11.258191px;}
.ws22{word-spacing:-11.192737px;}
.ws49{word-spacing:-11.127282px;}
.ws6c{word-spacing:-10.996373px;}
.ws5{word-spacing:-10.930918px;}
.ws9{word-spacing:-10.865464px;}
.ws9d{word-spacing:-10.800009px;}
.ws43{word-spacing:-10.734554px;}
.ws5e{word-spacing:-10.669100px;}
.ws79{word-spacing:-10.538191px;}
.ws96{word-spacing:-10.472736px;}
.ws8b{word-spacing:-10.341827px;}
.wsb7{word-spacing:-10.276372px;}
.ws81{word-spacing:-10.210918px;}
.ws95{word-spacing:-10.145463px;}
.wsc0{word-spacing:-10.080008px;}
.wsb8{word-spacing:-9.883645px;}
.wsb6{word-spacing:-9.687281px;}
.wsb2{word-spacing:-9.556372px;}
.ws31{word-spacing:-9.490917px;}
.wsc8{word-spacing:-9.425462px;}
.ws44{word-spacing:-9.360008px;}
.wsc{word-spacing:-9.301405px;}
.ws87{word-spacing:-9.294553px;}
.ws72{word-spacing:-9.229099px;}
.ws39{word-spacing:-9.163644px;}
.ws91{word-spacing:-9.098189px;}
.wsb4{word-spacing:-9.032735px;}
.ws56{word-spacing:-8.967280px;}
.ws9c{word-spacing:-8.901826px;}
.ws35{word-spacing:-8.836371px;}
.ws9a{word-spacing:-8.705462px;}
.ws4c{word-spacing:-8.640007px;}
.wsa9{word-spacing:-8.574553px;}
.ws83{word-spacing:-8.443643px;}
.ws4a{word-spacing:-8.378189px;}
.ws55{word-spacing:-8.312734px;}
.ws7b{word-spacing:-8.247280px;}
.ws54{word-spacing:-7.985461px;}
.ws16{word-spacing:-7.920007px;}
.wsa8{word-spacing:-7.789097px;}
.wsbd{word-spacing:-7.723643px;}
.ws6f{word-spacing:-7.658188px;}
.ws70{word-spacing:-7.527279px;}
.ws59{word-spacing:-7.265461px;}
.ws5b{word-spacing:-7.200006px;}
.ws20{word-spacing:-7.170285px;}
.wsba{word-spacing:-7.134551px;}
.ws84{word-spacing:-7.003642px;}
.ws53{word-spacing:-6.938188px;}
.ws93{word-spacing:-6.872733px;}
.ws92{word-spacing:-6.807278px;}
.ws3a{word-spacing:-6.741824px;}
.wsb5{word-spacing:-6.676369px;}
.ws3b{word-spacing:-6.610915px;}
.ws5a{word-spacing:-6.545460px;}
.ws3d{word-spacing:-6.480005px;}
.ws5f{word-spacing:-6.414551px;}
.wsc6{word-spacing:-6.349096px;}
.ws7d{word-spacing:-6.283642px;}
.wsbe{word-spacing:-6.021823px;}
.wsb3{word-spacing:-5.956369px;}
.wsaa{word-spacing:-5.760005px;}
.ws41{word-spacing:-5.694550px;}
.wsc4{word-spacing:-5.629096px;}
.ws42{word-spacing:-5.498186px;}
.ws7f{word-spacing:-5.432732px;}
.ws7c{word-spacing:-5.367277px;}
.ws9f{word-spacing:-5.301823px;}
.ws33{word-spacing:-5.105459px;}
.wsad{word-spacing:-4.778186px;}
.ws25{word-spacing:-4.581822px;}
.ws5d{word-spacing:-4.516367px;}
.ws74{word-spacing:-4.450913px;}
.ws1b{word-spacing:-4.320004px;}
.wsc5{word-spacing:-4.254549px;}
.ws89{word-spacing:-4.189094px;}
.ws69{word-spacing:-4.123640px;}
.wsa5{word-spacing:-4.058185px;}
.ws8f{word-spacing:-3.927276px;}
.wsa4{word-spacing:-3.796367px;}
.ws64{word-spacing:-3.730912px;}
.wsc3{word-spacing:-3.469094px;}
.ws9b{word-spacing:-3.403639px;}
.ws6b{word-spacing:-3.272730px;}
.ws1c{word-spacing:-3.107354px;}
.ws8{word-spacing:-3.076366px;}
.wsab{word-spacing:-3.010912px;}
.ws9e{word-spacing:-2.945457px;}
.ws65{word-spacing:-2.683639px;}
.ws58{word-spacing:-2.421820px;}
.ws90{word-spacing:-2.356366px;}
.wsbf{word-spacing:-2.225456px;}
.ws3c{word-spacing:-2.160002px;}
.wsac{word-spacing:-2.094547px;}
.ws8c{word-spacing:-1.570910px;}
.wsc9{word-spacing:-1.505456px;}
.ws2b{word-spacing:-0.792048px;}
.ws2c{word-spacing:-0.786839px;}
.ws12{word-spacing:-0.780048px;}
.ws15{word-spacing:-0.777757px;}
.ws2e{word-spacing:-0.776257px;}
.ws1d{word-spacing:-0.773257px;}
.ws1e{word-spacing:-0.771048px;}
.ws21{word-spacing:-0.761966px;}
.ws29{word-spacing:-0.761257px;}
.ws10{word-spacing:-0.756757px;}
.ws26{word-spacing:-0.751466px;}
.ws24{word-spacing:-0.746966px;}
.ws23{word-spacing:-0.746175px;}
.ws17{word-spacing:-0.745466px;}
.wsf{word-spacing:-0.744675px;}
.ws11{word-spacing:-0.732675px;}
.ws28{word-spacing:-0.727384px;}
.wscb{word-spacing:-0.654546px;}
.ws4f{word-spacing:-0.392728px;}
.ws63{word-spacing:-0.065455px;}
.ws47{word-spacing:-0.053798px;}
.ws45{word-spacing:-0.047821px;}
.ws19{word-spacing:0.000000px;}
.ws66{word-spacing:18.130924px;}
.ws4e{word-spacing:18.345254px;}
.wsd4{word-spacing:18.348854px;}
.wsd0{word-spacing:18.351485px;}
.wsda{word-spacing:18.353130px;}
.wscc{word-spacing:18.353197px;}
.wsd8{word-spacing:18.354810px;}
.wscd{word-spacing:18.354958px;}
.wsd5{word-spacing:18.355179px;}
.wsd3{word-spacing:18.355509px;}
.wsce{word-spacing:18.356573px;}
.wsd7{word-spacing:18.357128px;}
.wsdb{word-spacing:18.364151px;}
.wsd9{word-spacing:18.372996px;}
.wscf{word-spacing:18.374379px;}
.wsd6{word-spacing:18.378303px;}
.wsd2{word-spacing:18.383714px;}
.ws46{word-spacing:18.399053px;}
.wsd1{word-spacing:19.690214px;}
.wsa1{word-spacing:19.934627px;}
.wsb0{word-spacing:20.036627px;}
.ws76{word-spacing:20.702627px;}
.ws18{word-spacing:20.945472px;}
.ws67{word-spacing:21.544745px;}
.ws3{word-spacing:23.312640px;}
.ws4{word-spacing:23.367292px;}
.ws61{word-spacing:26.252645px;}
.ws62{word-spacing:26.255345px;}
.ws60{word-spacing:26.255945px;}
.ws6{word-spacing:27.032750px;}
.ws2{word-spacing:27.098204px;}
.ws2f{word-spacing:27.975090px;}
.wsd{word-spacing:31.946243px;}
.wsb{word-spacing:31.952243px;}
.ws3f{word-spacing:2356.011001px;}
.ws4d{word-spacing:2378.920101px;}
.ws1a{word-spacing:2433.867033px;}
._17{margin-left:-8.091257px;}
._4{margin-left:-6.335930px;}
._3{margin-left:-5.040004px;}
._0{margin-left:-3.843225px;}
._1{margin-left:-2.664196px;}
._5{margin-left:-1.459444px;}
._8{width:1.027831px;}
._2{width:2.735927px;}
._12{width:8.667083px;}
._b{width:16.292199px;}
._f{width:18.165312px;}
._d{width:19.728341px;}
._1a{width:21.253910px;}
._14{width:22.556118px;}
._7{width:25.069112px;}
._9{width:26.129551px;}
._6{width:28.217911px;}
._c{width:29.640022px;}
._a{width:31.423278px;}
._10{width:32.971187px;}
._11{width:36.032805px;}
._e{width:40.175564px;}
._16{width:1285.305410px;}
._13{width:1318.032710px;}
._15{width:1640.141924px;}
._19{width:1921.269431px;}
._18{width:2133.885415px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865600px;}
.fs5{font-size:47.820600px;}
.fs7{font-size:53.798400px;}
.fs2{font-size:65.454600px;}
.fs3{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs1{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:117.418500px;}
.y2c{bottom:162.250500px;}
.y2b{bottom:183.904500px;}
.y14{bottom:195.741000px;}
.y13{bottom:216.066000px;}
.y2a{bottom:218.841000px;}
.y12{bottom:236.389500px;}
.y29{bottom:240.493500px;}
.y28{bottom:260.818500px;}
.y11{bottom:277.972500px;}
.y4b{bottom:293.097000px;}
.y27{bottom:295.755000px;}
.y10{bottom:298.296000px;}
.y4{bottom:299.908500px;}
.y26{bottom:317.407500px;}
.yf{bottom:318.621000px;}
.y4a{bottom:329.784000px;}
.y25{bottom:337.731000px;}
.y3{bottom:341.491500px;}
.yea{bottom:349.330500px;}
.y49{bottom:350.109000px;}
.ye{bottom:360.204000px;}
.ye9{bottom:369.654000px;}
.y48{bottom:370.432500px;}
.y24{bottom:373.348500px;}
.yb7{bottom:376.228500px;}
.yd{bottom:380.527500px;}
.y131{bottom:386.092500px;}
.ye8{bottom:389.977500px;}
.yb6{bottom:396.552000px;}
.yc{bottom:400.851000px;}
.y47{bottom:402.711000px;}
.y130{bottom:406.416000px;}
.ye7{bottom:410.301000px;}
.y140{bottom:411.795000px;}
.yb5{bottom:416.877000px;}
.y46{bottom:423.034500px;}
.y12f{bottom:426.739500px;}
.y65{bottom:429.012000px;}
.ye6{bottom:430.624500px;}
.y23{bottom:431.424000px;}
.y13f{bottom:432.120000px;}
.yb4{bottom:437.200500px;}
.y45{bottom:443.358000px;}
.y12e{bottom:447.063000px;}
.y64{bottom:449.335500px;}
.ye5{bottom:450.949500px;}
.y121{bottom:451.845000px;}
.y13e{bottom:452.443500px;}
.y22{bottom:453.076500px;}
.yb3{bottom:457.524000px;}
.yfc{bottom:464.995500px;}
.y12d{bottom:467.386500px;}
.y79{bottom:469.006500px;}
.yb{bottom:471.262500px;}
.ye4{bottom:471.273000px;}
.y120{bottom:472.170000px;}
.y13d{bottom:472.767000px;}
.y44{bottom:475.638000px;}
.y10f{bottom:477.549000px;}
.yb2{bottom:477.847500px;}
.y63{bottom:478.626000px;}
.yfb{bottom:485.320500px;}
.y12c{bottom:487.711500px;}
.y21{bottom:488.692500px;}
.y78{bottom:489.330000px;}
.ya{bottom:491.586000px;}
.ye3{bottom:491.596500px;}
.y11f{bottom:492.493500px;}
.y13c{bottom:493.090500px;}
.y43{bottom:495.961500px;}
.y10e{bottom:497.872500px;}
.yb1{bottom:498.171000px;}
.y62{bottom:498.949500px;}
.yfa{bottom:505.644000px;}
.y12b{bottom:508.035000px;}
.y77{bottom:509.655000px;}
.y9{bottom:511.911000px;}
.ye2{bottom:511.920000px;}
.y11e{bottom:512.817000px;}
.y13b{bottom:513.414000px;}
.y158{bottom:516.285000px;}
.y10d{bottom:518.196000px;}
.yb0{bottom:518.496000px;}
.yf9{bottom:525.967500px;}
.y42{bottom:528.240000px;}
.y12a{bottom:528.358500px;}
.y76{bottom:529.978500px;}
.y8{bottom:532.234500px;}
.ye1{bottom:532.243500px;}
.y157{bottom:532.723500px;}
.y11d{bottom:533.140500px;}
.yc8{bottom:533.739000px;}
.y61{bottom:534.217500px;}
.y10c{bottom:538.521000px;}
.yaf{bottom:538.819500px;}
.yf8{bottom:546.291000px;}
.y20{bottom:546.769500px;}
.y41{bottom:548.563500px;}
.y129{bottom:548.682000px;}
.y156{bottom:549.162000px;}
.y75{bottom:550.302000px;}
.y16c{bottom:551.463000px;}
.y7{bottom:552.558000px;}
.ye0{bottom:552.568500px;}
.y11c{bottom:553.464000px;}
.yc7{bottom:554.062500px;}
.y10b{bottom:558.844500px;}
.yae{bottom:559.143000px;}
.y143{bottom:561.832500px;}
.yce{bottom:562.729500px;}
.y155{bottom:565.600500px;}
.yf7{bottom:566.614500px;}
.y16b{bottom:568.116000px;}
.y1f{bottom:568.422000px;}
.y86{bottom:568.488000px;}
.y40{bottom:568.888500px;}
.y128{bottom:569.005500px;}
.y60{bottom:569.485500px;}
.y74{bottom:570.625500px;}
.y6{bottom:572.881500px;}
.ydf{bottom:572.892000px;}
.y11b{bottom:573.787500px;}
.yc6{bottom:574.386000px;}
.y2{bottom:576.388500px;}
.y10a{bottom:579.168000px;}
.y154{bottom:582.039000px;}
.y142{bottom:582.157500px;}
.ycd{bottom:583.053000px;}
.y16a{bottom:584.769000px;}
.yf6{bottom:586.939500px;}
.y127{bottom:589.330500px;}
.y73{bottom:590.949000px;}
.yad{bottom:591.421500px;}
.yde{bottom:593.215500px;}
.y11a{bottom:594.112500px;}
.yc5{bottom:594.709500px;}
.y5{bottom:597.457500px;}
.y5f{bottom:598.776000px;}
.y109{bottom:599.491500px;}
.y3f{bottom:601.167000px;}
.y169{bottom:601.423500px;}
.y141{bottom:602.481000px;}
.ycc{bottom:603.376500px;}
.y1e{bottom:604.038000px;}
.yf5{bottom:607.263000px;}
.y4e{bottom:607.788000px;}
.y85{bottom:609.136500px;}
.y126{bottom:609.654000px;}
.y72{bottom:611.274000px;}
.y153{bottom:612.673500px;}
.ydd{bottom:613.539000px;}
.y119{bottom:614.436000px;}
.yc4{bottom:615.033000px;}
.y168{bottom:618.076500px;}
.y5e{bottom:619.099500px;}
.y108{bottom:619.815000px;}
.y1{bottom:620.332500px;}
.y3e{bottom:621.490500px;}
.y13a{bottom:622.804500px;}
.ycb{bottom:623.701500px;}
.yf4{bottom:627.586500px;}
.y152{bottom:629.112000px;}
.y125{bottom:629.977500px;}
.ydc{bottom:633.862500px;}
.y167{bottom:634.729500px;}
.y118{bottom:634.759500px;}
.yc3{bottom:635.356500px;}
.y5d{bottom:639.423000px;}
.y107{bottom:640.140000px;}
.y84{bottom:641.415000px;}
.y3d{bottom:641.814000px;}
.y139{bottom:643.128000px;}
.yca{bottom:644.025000px;}
.yf3{bottom:647.910000px;}
.yac{bottom:650.002500px;}
.y124{bottom:650.301000px;}
.y166{bottom:651.382500px;}
.ydb{bottom:654.186000px;}
.y117{bottom:655.083000px;}
.yc2{bottom:655.681500px;}
.y5c{bottom:659.746500px;}
.y151{bottom:659.748000px;}
.y106{bottom:660.463500px;}
.y83{bottom:661.738500px;}
.y1d{bottom:662.115000px;}
.y138{bottom:663.451500px;}
.yc9{bottom:664.348500px;}
.yf2{bottom:668.233500px;}
.yab{bottom:670.326000px;}
.y123{bottom:670.624500px;}
.y71{bottom:673.440000px;}
.y3c{bottom:674.094000px;}
.y116{bottom:675.406500px;}
.yc1{bottom:676.005000px;}
.y105{bottom:680.787000px;}
.y1c{bottom:683.767500px;}
.y137{bottom:683.775000px;}
.y93{bottom:684.672000px;}
.y165{bottom:686.560500px;}
.yf1{bottom:688.558500px;}
.y5b{bottom:689.037000px;}
.y150{bottom:690.382500px;}
.yaa{bottom:690.649500px;}
.yda{bottom:692.443500px;}
.y82{bottom:694.018500px;}
.y3b{bottom:694.417500px;}
.y115{bottom:695.731500px;}
.yc0{bottom:696.328500px;}
.y104{bottom:701.110500px;}
.y164{bottom:703.213500px;}
.y136{bottom:704.100000px;}
.y92{bottom:704.995500px;}
.y14f{bottom:706.821000px;}
.yf0{bottom:708.882000px;}
.y5a{bottom:709.360500px;}
.ya9{bottom:710.973000px;}
.y114{bottom:716.055000px;}
.ybf{bottom:716.652000px;}
.y1b{bottom:719.383500px;}
.y163{bottom:719.866500px;}
.y103{bottom:721.434000px;}
.y135{bottom:724.423500px;}
.y91{bottom:725.320500px;}
.y3a{bottom:726.696000px;}
.y9d{bottom:728.607000px;}
.yef{bottom:729.205500px;}
.y59{bottom:729.685500px;}
.ya8{bottom:731.298000px;}
.y81{bottom:734.665500px;}
.y113{bottom:736.378500px;}
.y162{bottom:736.519500px;}
.ybe{bottom:736.975500px;}
.y14e{bottom:737.455500px;}
.yd9{bottom:740.263500px;}
.y102{bottom:741.759000px;}
.y90{bottom:745.644000px;}
.y39{bottom:747.019500px;}
.y9c{bottom:748.932000px;}
.yee{bottom:749.529000px;}
.ya7{bottom:751.621500px;}
.y161{bottom:753.174000px;}
.y14d{bottom:753.894000px;}
.yd8{bottom:756.702000px;}
.ybd{bottom:757.300500px;}
.y58{bottom:758.974500px;}
.y101{bottom:762.082500px;}
.y134{bottom:762.679500px;}
.y8f{bottom:765.967500px;}
.y38{bottom:767.344500px;}
.y9b{bottom:769.255500px;}
.yed{bottom:769.852500px;}
.ya6{bottom:771.945000px;}
.y112{bottom:774.634500px;}
.y80{bottom:775.312500px;}
.y1a{bottom:777.459000px;}
.yd7{bottom:778.854000px;}
.y57{bottom:779.299500px;}
.y100{bottom:782.406000px;}
.y14c{bottom:784.530000px;}
.y8e{bottom:786.291000px;}
.y160{bottom:788.352000px;}
.y4d{bottom:789.058500px;}
.y9a{bottom:789.579000px;}
.yec{bottom:790.176000px;}
.ya5{bottom:792.268500px;}
.y70{bottom:792.427500px;}
.ybc{bottom:795.556500px;}
.y7f{bottom:795.637500px;}
.y37{bottom:799.623000px;}
.y14b{bottom:800.967000px;}
.yff{bottom:802.729500px;}
.y15f{bottom:805.005000px;}
.yd6{bottom:806.017500px;}
.y8d{bottom:806.614500px;}
.y99{bottom:809.902500px;}
.y133{bottom:810.501000px;}
.y122{bottom:811.731000px;}
.ya4{bottom:812.592000px;}
.y6f{bottom:812.752500px;}
.y7e{bottom:815.961000px;}
.y36{bottom:819.946500px;}
.y19{bottom:820.666500px;}
.y111{bottom:822.456000px;}
.yfe{bottom:823.053000px;}
.yd5{bottom:828.169500px;}
.yeb{bottom:828.433500px;}
.y98{bottom:830.226000px;}
.y14a{bottom:831.603000px;}
.y132{bottom:832.653000px;}
.y6e{bottom:833.076000px;}
.yd4{bottom:838.894500px;}
.y15e{bottom:840.183000px;}
.y35{bottom:840.270000px;}
.ybb{bottom:843.376500px;}
.y110{bottom:844.608000px;}
.y8c{bottom:844.872000px;}
.y149{bottom:848.041500px;}
.y56{bottom:849.237000px;}
.y97{bottom:850.551000px;}
.y6d{bottom:853.399500px;}
.yd3{bottom:855.333000px;}
.y7d{bottom:856.608000px;}
.yfd{bottom:861.310500px;}
.y148{bottom:864.480000px;}
.yba{bottom:865.528500px;}
.y55{bottom:869.560500px;}
.y96{bottom:870.874500px;}
.y34{bottom:872.550000px;}
.y6c{bottom:873.723000px;}
.y15d{bottom:875.361000px;}
.y18{bottom:875.560500px;}
.yb9{bottom:876.253500px;}
.yd2{bottom:877.485000px;}
.yd1{bottom:888.208500px;}
.y54{bottom:889.884000px;}
.y15c{bottom:892.014000px;}
.ya3{bottom:892.428000px;}
.y8b{bottom:892.692000px;}
.y33{bottom:892.873500px;}
.y6b{bottom:894.046500px;}
.y147{bottom:895.114500px;}
.y7c{bottom:897.256500px;}
.yb8{bottom:898.405500px;}
.y15b{bottom:908.667000px;}
.ya2{bottom:908.866500px;}
.y95{bottom:909.130500px;}
.y53{bottom:910.207500px;}
.yd0{bottom:910.360500px;}
.y146{bottom:911.553000px;}
.y32{bottom:913.197000px;}
.y6a{bottom:914.371500px;}
.y8a{bottom:914.844000px;}
.y17{bottom:914.905500px;}
.y7b{bottom:917.580000px;}
.ya1{bottom:925.305000px;}
.y15a{bottom:925.320000px;}
.y94{bottom:925.569000px;}
.y145{bottom:927.991500px;}
.y89{bottom:931.282500px;}
.y69{bottom:934.695000px;}
.ycf{bottom:935.968500px;}
.y52{bottom:939.498000px;}
.ya0{bottom:941.743500px;}
.y159{bottom:941.973000px;}
.y31{bottom:945.475500px;}
.y68{bottom:955.018500px;}
.y88{bottom:956.889000px;}
.y16{bottom:958.113000px;}
.y9f{bottom:958.182000px;}
.y7a{bottom:958.227000px;}
.y144{bottom:958.626000px;}
.y51{bottom:959.821500px;}
.y30{bottom:965.799000px;}
.y67{bottom:975.342000px;}
.y50{bottom:980.146500px;}
.y9e{bottom:983.788500px;}
.y2f{bottom:998.079000px;}
.y4f{bottom:1000.470000px;}
.y87{bottom:1011.826500px;}
.y2e{bottom:1018.402500px;}
.y66{bottom:1037.509500px;}
.y15{bottom:1038.726000px;}
.y2d{bottom:1082.781000px;}
.hc{height:24.209280px;}
.hd{height:38.519654px;}
.h5{height:46.014584px;}
.h8{height:49.090950px;}
.h6{height:51.216077px;}
.h7{height:59.301868px;}
.ha{height:61.459121px;}
.hb{height:65.131930px;}
.h9{height:78.158098px;}
.h4{height:93.789499px;}
.h3{height:112.569300px;}
.h2{height:1188.000000px;}
.h0{height:1262.997000px;}
.h1{height:1263.000000px;}
.w0{width:892.498500px;}
.w1{width:892.500000px;}
.w2{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:108.000000px;}
.x3a{left:109.506000px;}
.x33{left:110.517000px;}
.x30{left:111.919500px;}
.xa{left:117.040500px;}
.x15{left:121.138500px;}
.x1c{left:124.744500px;}
.x32{left:127.558500px;}
.x17{left:128.956500px;}
.x6{left:130.416000px;}
.x21{left:132.067500px;}
.xf{left:133.404000px;}
.x1e{left:134.847000px;}
.x2e{left:137.140500px;}
.x22{left:140.274000px;}
.x28{left:142.804500px;}
.x2b{left:157.579500px;}
.x34{left:164.734500px;}
.x2f{left:183.010500px;}
.x37{left:215.217000px;}
.x27{left:231.333000px;}
.x1b{left:236.661000px;}
.x20{left:248.784000px;}
.x23{left:265.425000px;}
.x35{left:271.321500px;}
.x2c{left:296.035500px;}
.x38{left:310.735500px;}
.x1f{left:318.205500px;}
.x26{left:322.854000px;}
.x1{left:324.453000px;}
.x3{left:325.921500px;}
.x9{left:330.133500px;}
.xe{left:331.512000px;}
.x14{left:352.540500px;}
.xb{left:355.156500px;}
.x2{left:361.471500px;}
.x19{left:379.378500px;}
.x25{left:385.756500px;}
.x4{left:389.457000px;}
.x18{left:394.884000px;}
.x2d{left:397.333500px;}
.x2a{left:417.730500px;}
.x29{left:421.600500px;}
.x36{left:426.507000px;}
.x13{left:433.603500px;}
.x31{left:435.688500px;}
.x24{left:437.469000px;}
.x39{left:438.891000px;}
.x3b{left:489.642000px;}
.xd{left:605.008500px;}
.x11{left:634.087500px;}
.x1d{left:655.527000px;}
.x1a{left:695.370000px;}
.x12{left:705.276000px;}
.x8{left:736.689000px;}
.x16{left:746.479500px;}
.x10{left:780.420000px;}
.xc{left:788.607000px;}
.x7{left:796.794000px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.141333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.001867pt;}
.lsc{letter-spacing:0.002400pt;}
.lsb{letter-spacing:0.002411pt;}
.ls5{letter-spacing:2.652340pt;}
.ls6{letter-spacing:2.657673pt;}
.lse{letter-spacing:9.698411pt;}
.ls1{letter-spacing:12.916374pt;}
.lsa{letter-spacing:16.167244pt;}
.ls11{letter-spacing:16.379162pt;}
.ls9{letter-spacing:19.207733pt;}
.ls10{letter-spacing:19.791477pt;}
.ls8{letter-spacing:23.394400pt;}
.lsd{letter-spacing:25.453067pt;}
.lsf{letter-spacing:26.183733pt;}
.ls7{letter-spacing:26.567007pt;}
.ls4{letter-spacing:27.232473pt;}
.ls2{letter-spacing:29.090400pt;}
.wsa{word-spacing:-43.038600pt;}
.ws68{word-spacing:-37.899668pt;}
.ws2a{word-spacing:-33.454573pt;}
.ws3e{word-spacing:-29.090933pt;}
.ws0{word-spacing:-20.662500pt;}
.ws27{word-spacing:-18.560015pt;}
.ws2d{word-spacing:-18.148530pt;}
.ws1{word-spacing:-17.215400pt;}
.ws14{word-spacing:-17.018468pt;}
.ws4b{word-spacing:-16.058195pt;}
.wsca{word-spacing:-15.534558pt;}
.ws1f{word-spacing:-15.010922pt;}
.ws85{word-spacing:-14.952740pt;}
.ws40{word-spacing:-14.346200pt;}
.ws80{word-spacing:-14.196375pt;}
.ws34{word-spacing:-14.021830pt;}
.wsa3{word-spacing:-13.963648pt;}
.ws51{word-spacing:-13.614557pt;}
.wsb9{word-spacing:-13.556375pt;}
.ws78{word-spacing:-13.440011pt;}
.ws88{word-spacing:-13.323647pt;}
.wsc2{word-spacing:-13.265466pt;}
.ws98{word-spacing:-13.032738pt;}
.wsc1{word-spacing:-12.974556pt;}
.ws7e{word-spacing:-12.916374pt;}
.wsbb{word-spacing:-12.858193pt;}
.ws73{word-spacing:-12.741829pt;}
.ws8d{word-spacing:-12.567283pt;}
.ws50{word-spacing:-12.450919pt;}
.ws7a{word-spacing:-12.392738pt;}
.ws38{word-spacing:-12.334556pt;}
.wse{word-spacing:-12.294416pt;}
.ws5c{word-spacing:-12.276374pt;}
.ws8a{word-spacing:-12.218192pt;}
.ws99{word-spacing:-12.101828pt;}
.ws52{word-spacing:-12.043646pt;}
.ws8e{word-spacing:-12.018961pt;}
.wsbc{word-spacing:-11.985465pt;}
.ws30{word-spacing:-11.955200pt;}
.ws6e{word-spacing:-11.927283pt;}
.ws97{word-spacing:-11.810919pt;}
.wsa6{word-spacing:-11.752737pt;}
.wsc7{word-spacing:-11.636373pt;}
.wsae{word-spacing:-11.461828pt;}
.ws86{word-spacing:-11.345464pt;}
.wsa2{word-spacing:-11.307254pt;}
.wsa0{word-spacing:-11.287282pt;}
.ws75{word-spacing:-11.229100pt;}
.wsaf{word-spacing:-11.219467pt;}
.ws7{word-spacing:-11.170918pt;}
.ws77{word-spacing:-11.112737pt;}
.ws71{word-spacing:-10.996373pt;}
.ws82{word-spacing:-10.938191pt;}
.ws13{word-spacing:-10.880009pt;}
.ws32{word-spacing:-10.763645pt;}
.ws6d{word-spacing:-10.647282pt;}
.ws36{word-spacing:-10.530918pt;}
.ws6a{word-spacing:-10.472736pt;}
.ws94{word-spacing:-10.414554pt;}
.wsa7{word-spacing:-10.356372pt;}
.ws57{word-spacing:-10.298190pt;}
.ws37{word-spacing:-10.123645pt;}
.ws48{word-spacing:-10.065463pt;}
.wsb1{word-spacing:-10.007281pt;}
.ws22{word-spacing:-9.949099pt;}
.ws49{word-spacing:-9.890917pt;}
.ws6c{word-spacing:-9.774554pt;}
.ws5{word-spacing:-9.716372pt;}
.ws9{word-spacing:-9.658190pt;}
.ws9d{word-spacing:-9.600008pt;}
.ws43{word-spacing:-9.541826pt;}
.ws5e{word-spacing:-9.483644pt;}
.ws79{word-spacing:-9.367281pt;}
.ws96{word-spacing:-9.309099pt;}
.ws8b{word-spacing:-9.192735pt;}
.wsb7{word-spacing:-9.134553pt;}
.ws81{word-spacing:-9.076371pt;}
.ws95{word-spacing:-9.018189pt;}
.wsc0{word-spacing:-8.960007pt;}
.wsb8{word-spacing:-8.785462pt;}
.wsb6{word-spacing:-8.610916pt;}
.wsb2{word-spacing:-8.494553pt;}
.ws31{word-spacing:-8.436371pt;}
.wsc8{word-spacing:-8.378189pt;}
.ws44{word-spacing:-8.320007pt;}
.wsc{word-spacing:-8.267915pt;}
.ws87{word-spacing:-8.261825pt;}
.ws72{word-spacing:-8.203643pt;}
.ws39{word-spacing:-8.145461pt;}
.ws91{word-spacing:-8.087279pt;}
.wsb4{word-spacing:-8.029098pt;}
.ws56{word-spacing:-7.970916pt;}
.ws9c{word-spacing:-7.912734pt;}
.ws35{word-spacing:-7.854552pt;}
.ws9a{word-spacing:-7.738188pt;}
.ws4c{word-spacing:-7.680006pt;}
.wsa9{word-spacing:-7.621825pt;}
.ws83{word-spacing:-7.505461pt;}
.ws4a{word-spacing:-7.447279pt;}
.ws55{word-spacing:-7.389097pt;}
.ws7b{word-spacing:-7.330915pt;}
.ws54{word-spacing:-7.098188pt;}
.ws16{word-spacing:-7.040006pt;}
.wsa8{word-spacing:-6.923642pt;}
.wsbd{word-spacing:-6.865460pt;}
.ws6f{word-spacing:-6.807278pt;}
.ws70{word-spacing:-6.690915pt;}
.ws59{word-spacing:-6.458187pt;}
.ws5b{word-spacing:-6.400005pt;}
.ws20{word-spacing:-6.373586pt;}
.wsba{word-spacing:-6.341823pt;}
.ws84{word-spacing:-6.225460pt;}
.ws53{word-spacing:-6.167278pt;}
.ws93{word-spacing:-6.109096pt;}
.ws92{word-spacing:-6.050914pt;}
.ws3a{word-spacing:-5.992732pt;}
.wsb5{word-spacing:-5.934550pt;}
.ws3b{word-spacing:-5.876369pt;}
.ws5a{word-spacing:-5.818187pt;}
.ws3d{word-spacing:-5.760005pt;}
.ws5f{word-spacing:-5.701823pt;}
.wsc6{word-spacing:-5.643641pt;}
.ws7d{word-spacing:-5.585459pt;}
.wsbe{word-spacing:-5.352732pt;}
.wsb3{word-spacing:-5.294550pt;}
.wsaa{word-spacing:-5.120004pt;}
.ws41{word-spacing:-5.061822pt;}
.wsc4{word-spacing:-5.003641pt;}
.ws42{word-spacing:-4.887277pt;}
.ws7f{word-spacing:-4.829095pt;}
.ws7c{word-spacing:-4.770913pt;}
.ws9f{word-spacing:-4.712731pt;}
.ws33{word-spacing:-4.538186pt;}
.wsad{word-spacing:-4.247276pt;}
.ws25{word-spacing:-4.072731pt;}
.ws5d{word-spacing:-4.014549pt;}
.ws74{word-spacing:-3.956367pt;}
.ws1b{word-spacing:-3.840003pt;}
.wsc5{word-spacing:-3.781821pt;}
.ws89{word-spacing:-3.723639pt;}
.ws69{word-spacing:-3.665458pt;}
.wsa5{word-spacing:-3.607276pt;}
.ws8f{word-spacing:-3.490912pt;}
.wsa4{word-spacing:-3.374548pt;}
.ws64{word-spacing:-3.316366pt;}
.wsc3{word-spacing:-3.083639pt;}
.ws9b{word-spacing:-3.025457pt;}
.ws6b{word-spacing:-2.909093pt;}
.ws1c{word-spacing:-2.762093pt;}
.ws8{word-spacing:-2.734548pt;}
.wsab{word-spacing:-2.676366pt;}
.ws9e{word-spacing:-2.618184pt;}
.ws65{word-spacing:-2.385457pt;}
.ws58{word-spacing:-2.152729pt;}
.ws90{word-spacing:-2.094547pt;}
.wsbf{word-spacing:-1.978183pt;}
.ws3c{word-spacing:-1.920002pt;}
.wsac{word-spacing:-1.861820pt;}
.ws8c{word-spacing:-1.396365pt;}
.wsc9{word-spacing:-1.338183pt;}
.ws2b{word-spacing:-0.704042pt;}
.ws2c{word-spacing:-0.699412pt;}
.ws12{word-spacing:-0.693376pt;}
.ws15{word-spacing:-0.691339pt;}
.ws2e{word-spacing:-0.690006pt;}
.ws1d{word-spacing:-0.687339pt;}
.ws1e{word-spacing:-0.685376pt;}
.ws21{word-spacing:-0.677303pt;}
.ws29{word-spacing:-0.676673pt;}
.ws10{word-spacing:-0.672673pt;}
.ws26{word-spacing:-0.667970pt;}
.ws24{word-spacing:-0.663970pt;}
.ws23{word-spacing:-0.663267pt;}
.ws17{word-spacing:-0.662636pt;}
.wsf{word-spacing:-0.661933pt;}
.ws11{word-spacing:-0.651267pt;}
.ws28{word-spacing:-0.646564pt;}
.wscb{word-spacing:-0.581819pt;}
.ws4f{word-spacing:-0.349091pt;}
.ws63{word-spacing:-0.058182pt;}
.ws47{word-spacing:-0.047821pt;}
.ws45{word-spacing:-0.042507pt;}
.ws19{word-spacing:0.000000pt;}
.ws66{word-spacing:16.116377pt;}
.ws4e{word-spacing:16.306893pt;}
.wsd4{word-spacing:16.310093pt;}
.wsd0{word-spacing:16.312431pt;}
.wsda{word-spacing:16.313894pt;}
.wscc{word-spacing:16.313953pt;}
.wsd8{word-spacing:16.315387pt;}
.wscd{word-spacing:16.315518pt;}
.wsd5{word-spacing:16.315715pt;}
.wsd3{word-spacing:16.316008pt;}
.wsce{word-spacing:16.316954pt;}
.wsd7{word-spacing:16.317447pt;}
.wsdb{word-spacing:16.323690pt;}
.wsd9{word-spacing:16.331552pt;}
.wscf{word-spacing:16.332781pt;}
.wsd6{word-spacing:16.336270pt;}
.wsd2{word-spacing:16.341079pt;}
.ws46{word-spacing:16.354714pt;}
.wsd1{word-spacing:17.502413pt;}
.wsa1{word-spacing:17.719669pt;}
.wsb0{word-spacing:17.810335pt;}
.ws76{word-spacing:18.402335pt;}
.ws18{word-spacing:18.618197pt;}
.ws67{word-spacing:19.150885pt;}
.ws3{word-spacing:20.722347pt;}
.ws4{word-spacing:20.770926pt;}
.ws61{word-spacing:23.335685pt;}
.ws62{word-spacing:23.338085pt;}
.ws60{word-spacing:23.338618pt;}
.ws6{word-spacing:24.029111pt;}
.ws2{word-spacing:24.087293pt;}
.ws2f{word-spacing:24.866747pt;}
.wsd{word-spacing:28.396661pt;}
.wsb{word-spacing:28.401994pt;}
.ws3f{word-spacing:2094.232001pt;}
.ws4d{word-spacing:2114.595645pt;}
.ws1a{word-spacing:2163.437363pt;}
._17{margin-left:-7.192228pt;}
._4{margin-left:-5.631938pt;}
._3{margin-left:-4.480004pt;}
._0{margin-left:-3.416200pt;}
._1{margin-left:-2.368174pt;}
._5{margin-left:-1.297283pt;}
._8{width:0.913628pt;}
._2{width:2.431935pt;}
._12{width:7.704074pt;}
._b{width:14.481955pt;}
._f{width:16.146944pt;}
._d{width:17.536303pt;}
._1a{width:18.892365pt;}
._14{width:20.049883pt;}
._7{width:22.283655pt;}
._9{width:23.226268pt;}
._6{width:25.082588pt;}
._c{width:26.346686pt;}
._a{width:27.931802pt;}
._10{width:29.307722pt;}
._11{width:32.029160pt;}
._e{width:35.711612pt;}
._16{width:1142.493698pt;}
._13{width:1171.584631pt;}
._15{width:1457.903933pt;}
._19{width:1707.795050pt;}
._18{width:1896.787035pt;}
.fs6{font-size:31.880533pt;}
.fs5{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fs2{font-size:58.181867pt;}
.fs3{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs1{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:104.372000pt;}
.y2c{bottom:144.222667pt;}
.y2b{bottom:163.470667pt;}
.y14{bottom:173.992000pt;}
.y13{bottom:192.058667pt;}
.y2a{bottom:194.525333pt;}
.y12{bottom:210.124000pt;}
.y29{bottom:213.772000pt;}
.y28{bottom:231.838667pt;}
.y11{bottom:247.086667pt;}
.y4b{bottom:260.530667pt;}
.y27{bottom:262.893333pt;}
.y10{bottom:265.152000pt;}
.y4{bottom:266.585333pt;}
.y26{bottom:282.140000pt;}
.yf{bottom:283.218667pt;}
.y4a{bottom:293.141333pt;}
.y25{bottom:300.205333pt;}
.y3{bottom:303.548000pt;}
.yea{bottom:310.516000pt;}
.y49{bottom:311.208000pt;}
.ye{bottom:320.181333pt;}
.ye9{bottom:328.581333pt;}
.y48{bottom:329.273333pt;}
.y24{bottom:331.865333pt;}
.yb7{bottom:334.425333pt;}
.yd{bottom:338.246667pt;}
.y131{bottom:343.193333pt;}
.ye8{bottom:346.646667pt;}
.yb6{bottom:352.490667pt;}
.yc{bottom:356.312000pt;}
.y47{bottom:357.965333pt;}
.y130{bottom:361.258667pt;}
.ye7{bottom:364.712000pt;}
.y140{bottom:366.040000pt;}
.yb5{bottom:370.557333pt;}
.y46{bottom:376.030667pt;}
.y12f{bottom:379.324000pt;}
.y65{bottom:381.344000pt;}
.ye6{bottom:382.777333pt;}
.y23{bottom:383.488000pt;}
.y13f{bottom:384.106667pt;}
.yb4{bottom:388.622667pt;}
.y45{bottom:394.096000pt;}
.y12e{bottom:397.389333pt;}
.y64{bottom:399.409333pt;}
.ye5{bottom:400.844000pt;}
.y121{bottom:401.640000pt;}
.y13e{bottom:402.172000pt;}
.y22{bottom:402.734667pt;}
.yb3{bottom:406.688000pt;}
.yfc{bottom:413.329333pt;}
.y12d{bottom:415.454667pt;}
.y79{bottom:416.894667pt;}
.yb{bottom:418.900000pt;}
.ye4{bottom:418.909333pt;}
.y120{bottom:419.706667pt;}
.y13d{bottom:420.237333pt;}
.y44{bottom:422.789333pt;}
.y10f{bottom:424.488000pt;}
.yb2{bottom:424.753333pt;}
.y63{bottom:425.445333pt;}
.yfb{bottom:431.396000pt;}
.y12c{bottom:433.521333pt;}
.y21{bottom:434.393333pt;}
.y78{bottom:434.960000pt;}
.ya{bottom:436.965333pt;}
.ye3{bottom:436.974667pt;}
.y11f{bottom:437.772000pt;}
.y13c{bottom:438.302667pt;}
.y43{bottom:440.854667pt;}
.y10e{bottom:442.553333pt;}
.yb1{bottom:442.818667pt;}
.y62{bottom:443.510667pt;}
.yfa{bottom:449.461333pt;}
.y12b{bottom:451.586667pt;}
.y77{bottom:453.026667pt;}
.y9{bottom:455.032000pt;}
.ye2{bottom:455.040000pt;}
.y11e{bottom:455.837333pt;}
.y13b{bottom:456.368000pt;}
.y158{bottom:458.920000pt;}
.y10d{bottom:460.618667pt;}
.yb0{bottom:460.885333pt;}
.yf9{bottom:467.526667pt;}
.y42{bottom:469.546667pt;}
.y12a{bottom:469.652000pt;}
.y76{bottom:471.092000pt;}
.y8{bottom:473.097333pt;}
.ye1{bottom:473.105333pt;}
.y157{bottom:473.532000pt;}
.y11d{bottom:473.902667pt;}
.yc8{bottom:474.434667pt;}
.y61{bottom:474.860000pt;}
.y10c{bottom:478.685333pt;}
.yaf{bottom:478.950667pt;}
.yf8{bottom:485.592000pt;}
.y20{bottom:486.017333pt;}
.y41{bottom:487.612000pt;}
.y129{bottom:487.717333pt;}
.y156{bottom:488.144000pt;}
.y75{bottom:489.157333pt;}
.y16c{bottom:490.189333pt;}
.y7{bottom:491.162667pt;}
.ye0{bottom:491.172000pt;}
.y11c{bottom:491.968000pt;}
.yc7{bottom:492.500000pt;}
.y10b{bottom:496.750667pt;}
.yae{bottom:497.016000pt;}
.y143{bottom:499.406667pt;}
.yce{bottom:500.204000pt;}
.y155{bottom:502.756000pt;}
.yf7{bottom:503.657333pt;}
.y16b{bottom:504.992000pt;}
.y1f{bottom:505.264000pt;}
.y86{bottom:505.322667pt;}
.y40{bottom:505.678667pt;}
.y128{bottom:505.782667pt;}
.y60{bottom:506.209333pt;}
.y74{bottom:507.222667pt;}
.y6{bottom:509.228000pt;}
.ydf{bottom:509.237333pt;}
.y11b{bottom:510.033333pt;}
.yc6{bottom:510.565333pt;}
.y2{bottom:512.345333pt;}
.y10a{bottom:514.816000pt;}
.y154{bottom:517.368000pt;}
.y142{bottom:517.473333pt;}
.ycd{bottom:518.269333pt;}
.y16a{bottom:519.794667pt;}
.yf6{bottom:521.724000pt;}
.y127{bottom:523.849333pt;}
.y73{bottom:525.288000pt;}
.yad{bottom:525.708000pt;}
.yde{bottom:527.302667pt;}
.y11a{bottom:528.100000pt;}
.yc5{bottom:528.630667pt;}
.y5{bottom:531.073333pt;}
.y5f{bottom:532.245333pt;}
.y109{bottom:532.881333pt;}
.y3f{bottom:534.370667pt;}
.y169{bottom:534.598667pt;}
.y141{bottom:535.538667pt;}
.ycc{bottom:536.334667pt;}
.y1e{bottom:536.922667pt;}
.yf5{bottom:539.789333pt;}
.y4e{bottom:540.256000pt;}
.y85{bottom:541.454667pt;}
.y126{bottom:541.914667pt;}
.y72{bottom:543.354667pt;}
.y153{bottom:544.598667pt;}
.ydd{bottom:545.368000pt;}
.y119{bottom:546.165333pt;}
.yc4{bottom:546.696000pt;}
.y168{bottom:549.401333pt;}
.y5e{bottom:550.310667pt;}
.y108{bottom:550.946667pt;}
.y1{bottom:551.406667pt;}
.y3e{bottom:552.436000pt;}
.y13a{bottom:553.604000pt;}
.ycb{bottom:554.401333pt;}
.yf4{bottom:557.854667pt;}
.y152{bottom:559.210667pt;}
.y125{bottom:559.980000pt;}
.ydc{bottom:563.433333pt;}
.y167{bottom:564.204000pt;}
.y118{bottom:564.230667pt;}
.yc3{bottom:564.761333pt;}
.y5d{bottom:568.376000pt;}
.y107{bottom:569.013333pt;}
.y84{bottom:570.146667pt;}
.y3d{bottom:570.501333pt;}
.y139{bottom:571.669333pt;}
.yca{bottom:572.466667pt;}
.yf3{bottom:575.920000pt;}
.yac{bottom:577.780000pt;}
.y124{bottom:578.045333pt;}
.y166{bottom:579.006667pt;}
.ydb{bottom:581.498667pt;}
.y117{bottom:582.296000pt;}
.yc2{bottom:582.828000pt;}
.y5c{bottom:586.441333pt;}
.y151{bottom:586.442667pt;}
.y106{bottom:587.078667pt;}
.y83{bottom:588.212000pt;}
.y1d{bottom:588.546667pt;}
.y138{bottom:589.734667pt;}
.yc9{bottom:590.532000pt;}
.yf2{bottom:593.985333pt;}
.yab{bottom:595.845333pt;}
.y123{bottom:596.110667pt;}
.y71{bottom:598.613333pt;}
.y3c{bottom:599.194667pt;}
.y116{bottom:600.361333pt;}
.yc1{bottom:600.893333pt;}
.y105{bottom:605.144000pt;}
.y1c{bottom:607.793333pt;}
.y137{bottom:607.800000pt;}
.y93{bottom:608.597333pt;}
.y165{bottom:610.276000pt;}
.yf1{bottom:612.052000pt;}
.y5b{bottom:612.477333pt;}
.y150{bottom:613.673333pt;}
.yaa{bottom:613.910667pt;}
.yda{bottom:615.505333pt;}
.y82{bottom:616.905333pt;}
.y3b{bottom:617.260000pt;}
.y115{bottom:618.428000pt;}
.yc0{bottom:618.958667pt;}
.y104{bottom:623.209333pt;}
.y164{bottom:625.078667pt;}
.y136{bottom:625.866667pt;}
.y92{bottom:626.662667pt;}
.y14f{bottom:628.285333pt;}
.yf0{bottom:630.117333pt;}
.y5a{bottom:630.542667pt;}
.ya9{bottom:631.976000pt;}
.y114{bottom:636.493333pt;}
.ybf{bottom:637.024000pt;}
.y1b{bottom:639.452000pt;}
.y163{bottom:639.881333pt;}
.y103{bottom:641.274667pt;}
.y135{bottom:643.932000pt;}
.y91{bottom:644.729333pt;}
.y3a{bottom:645.952000pt;}
.y9d{bottom:647.650667pt;}
.yef{bottom:648.182667pt;}
.y59{bottom:648.609333pt;}
.ya8{bottom:650.042667pt;}
.y81{bottom:653.036000pt;}
.y113{bottom:654.558667pt;}
.y162{bottom:654.684000pt;}
.ybe{bottom:655.089333pt;}
.y14e{bottom:655.516000pt;}
.yd9{bottom:658.012000pt;}
.y102{bottom:659.341333pt;}
.y90{bottom:662.794667pt;}
.y39{bottom:664.017333pt;}
.y9c{bottom:665.717333pt;}
.yee{bottom:666.248000pt;}
.ya7{bottom:668.108000pt;}
.y161{bottom:669.488000pt;}
.y14d{bottom:670.128000pt;}
.yd8{bottom:672.624000pt;}
.ybd{bottom:673.156000pt;}
.y58{bottom:674.644000pt;}
.y101{bottom:677.406667pt;}
.y134{bottom:677.937333pt;}
.y8f{bottom:680.860000pt;}
.y38{bottom:682.084000pt;}
.y9b{bottom:683.782667pt;}
.yed{bottom:684.313333pt;}
.ya6{bottom:686.173333pt;}
.y112{bottom:688.564000pt;}
.y80{bottom:689.166667pt;}
.y1a{bottom:691.074667pt;}
.yd7{bottom:692.314667pt;}
.y57{bottom:692.710667pt;}
.y100{bottom:695.472000pt;}
.y14c{bottom:697.360000pt;}
.y8e{bottom:698.925333pt;}
.y160{bottom:700.757333pt;}
.y4d{bottom:701.385333pt;}
.y9a{bottom:701.848000pt;}
.yec{bottom:702.378667pt;}
.ya5{bottom:704.238667pt;}
.y70{bottom:704.380000pt;}
.ybc{bottom:707.161333pt;}
.y7f{bottom:707.233333pt;}
.y37{bottom:710.776000pt;}
.y14b{bottom:711.970667pt;}
.yff{bottom:713.537333pt;}
.y15f{bottom:715.560000pt;}
.yd6{bottom:716.460000pt;}
.y8d{bottom:716.990667pt;}
.y99{bottom:719.913333pt;}
.y133{bottom:720.445333pt;}
.y122{bottom:721.538667pt;}
.ya4{bottom:722.304000pt;}
.y6f{bottom:722.446667pt;}
.y7e{bottom:725.298667pt;}
.y36{bottom:728.841333pt;}
.y19{bottom:729.481333pt;}
.y111{bottom:731.072000pt;}
.yfe{bottom:731.602667pt;}
.yd5{bottom:736.150667pt;}
.yeb{bottom:736.385333pt;}
.y98{bottom:737.978667pt;}
.y14a{bottom:739.202667pt;}
.y132{bottom:740.136000pt;}
.y6e{bottom:740.512000pt;}
.yd4{bottom:745.684000pt;}
.y15e{bottom:746.829333pt;}
.y35{bottom:746.906667pt;}
.ybb{bottom:749.668000pt;}
.y110{bottom:750.762667pt;}
.y8c{bottom:750.997333pt;}
.y149{bottom:753.814667pt;}
.y56{bottom:754.877333pt;}
.y97{bottom:756.045333pt;}
.y6d{bottom:758.577333pt;}
.yd3{bottom:760.296000pt;}
.y7d{bottom:761.429333pt;}
.yfd{bottom:765.609333pt;}
.y148{bottom:768.426667pt;}
.yba{bottom:769.358667pt;}
.y55{bottom:772.942667pt;}
.y96{bottom:774.110667pt;}
.y34{bottom:775.600000pt;}
.y6c{bottom:776.642667pt;}
.y15d{bottom:778.098667pt;}
.y18{bottom:778.276000pt;}
.yb9{bottom:778.892000pt;}
.yd2{bottom:779.986667pt;}
.yd1{bottom:789.518667pt;}
.y54{bottom:791.008000pt;}
.y15c{bottom:792.901333pt;}
.ya3{bottom:793.269333pt;}
.y8b{bottom:793.504000pt;}
.y33{bottom:793.665333pt;}
.y6b{bottom:794.708000pt;}
.y147{bottom:795.657333pt;}
.y7c{bottom:797.561333pt;}
.yb8{bottom:798.582667pt;}
.y15b{bottom:807.704000pt;}
.ya2{bottom:807.881333pt;}
.y95{bottom:808.116000pt;}
.y53{bottom:809.073333pt;}
.yd0{bottom:809.209333pt;}
.y146{bottom:810.269333pt;}
.y32{bottom:811.730667pt;}
.y6a{bottom:812.774667pt;}
.y8a{bottom:813.194667pt;}
.y17{bottom:813.249333pt;}
.y7b{bottom:815.626667pt;}
.ya1{bottom:822.493333pt;}
.y15a{bottom:822.506667pt;}
.y94{bottom:822.728000pt;}
.y145{bottom:824.881333pt;}
.y89{bottom:827.806667pt;}
.y69{bottom:830.840000pt;}
.ycf{bottom:831.972000pt;}
.y52{bottom:835.109333pt;}
.ya0{bottom:837.105333pt;}
.y159{bottom:837.309333pt;}
.y31{bottom:840.422667pt;}
.y68{bottom:848.905333pt;}
.y88{bottom:850.568000pt;}
.y16{bottom:851.656000pt;}
.y9f{bottom:851.717333pt;}
.y7a{bottom:851.757333pt;}
.y144{bottom:852.112000pt;}
.y51{bottom:853.174667pt;}
.y30{bottom:858.488000pt;}
.y67{bottom:866.970667pt;}
.y50{bottom:871.241333pt;}
.y9e{bottom:874.478667pt;}
.y2f{bottom:887.181333pt;}
.y4f{bottom:889.306667pt;}
.y87{bottom:899.401333pt;}
.y2e{bottom:905.246667pt;}
.y66{bottom:922.230667pt;}
.y15{bottom:923.312000pt;}
.y2d{bottom:962.472000pt;}
.hc{height:21.519360pt;}
.hd{height:34.239693pt;}
.h5{height:40.901852pt;}
.h8{height:43.636400pt;}
.h6{height:45.525402pt;}
.h7{height:52.712771pt;}
.ha{height:54.630330pt;}
.hb{height:57.895049pt;}
.h9{height:69.473865pt;}
.h4{height:83.368444pt;}
.h3{height:100.061600pt;}
.h2{height:1056.000000pt;}
.h0{height:1122.664000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.332000pt;}
.w1{width:793.333333pt;}
.w2{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:96.000000pt;}
.x3a{left:97.338667pt;}
.x33{left:98.237333pt;}
.x30{left:99.484000pt;}
.xa{left:104.036000pt;}
.x15{left:107.678667pt;}
.x1c{left:110.884000pt;}
.x32{left:113.385333pt;}
.x17{left:114.628000pt;}
.x6{left:115.925333pt;}
.x21{left:117.393333pt;}
.xf{left:118.581333pt;}
.x1e{left:119.864000pt;}
.x2e{left:121.902667pt;}
.x22{left:124.688000pt;}
.x28{left:126.937333pt;}
.x2b{left:140.070667pt;}
.x34{left:146.430667pt;}
.x2f{left:162.676000pt;}
.x37{left:191.304000pt;}
.x27{left:205.629333pt;}
.x1b{left:210.365333pt;}
.x20{left:221.141333pt;}
.x23{left:235.933333pt;}
.x35{left:241.174667pt;}
.x2c{left:263.142667pt;}
.x38{left:276.209333pt;}
.x1f{left:282.849333pt;}
.x26{left:286.981333pt;}
.x1{left:288.402667pt;}
.x3{left:289.708000pt;}
.x9{left:293.452000pt;}
.xe{left:294.677333pt;}
.x14{left:313.369333pt;}
.xb{left:315.694667pt;}
.x2{left:321.308000pt;}
.x19{left:337.225333pt;}
.x25{left:342.894667pt;}
.x4{left:346.184000pt;}
.x18{left:351.008000pt;}
.x2d{left:353.185333pt;}
.x2a{left:371.316000pt;}
.x29{left:374.756000pt;}
.x36{left:379.117333pt;}
.x13{left:385.425333pt;}
.x31{left:387.278667pt;}
.x24{left:388.861333pt;}
.x39{left:390.125333pt;}
.x3b{left:435.237333pt;}
.xd{left:537.785333pt;}
.x11{left:563.633333pt;}
.x1d{left:582.690667pt;}
.x1a{left:618.106667pt;}
.x12{left:626.912000pt;}
.x8{left:654.834667pt;}
.x16{left:663.537333pt;}
.x10{left:693.706667pt;}
.xc{left:700.984000pt;}
.x7{left:708.261333pt;}
}




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