
    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_cc6d36607f99248bb2e704e1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.723000;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_dfc0a9362be608f0d4e5d88f.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b61c9d8bd11966f261935ae8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.894000;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_042f5bd84ccc2c0828d7236e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.706000;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_0017fda3e6b97a0fe6b56f74.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b9e1ed7070b761fe8bfe0668.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_da4268217067305bc28e6707.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_a3c300cf606ec171ca4540dd.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_01b3174b78d4807f092b116b.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a09f019a52757c536ca33fc8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.898000;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_ee1d8782737d9b366f0fdd65.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_ea4dcbe69182f19c0c3e64ab.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_e8e7c5310f9de04a623bcc13.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.664000;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_46394c31f1fb4bcd04f82b45.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.723000;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_d05019e2704c5cc127f9f95d.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_78042fded204c1a38f646994.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.049000;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);}
.v1{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.009509px;}
.ls14{letter-spacing:0.011557px;}
.ls19{letter-spacing:0.014320px;}
.ls10{letter-spacing:0.020320px;}
.lsd{letter-spacing:0.032222px;}
.ls13{letter-spacing:0.040222px;}
.lsc{letter-spacing:0.044159px;}
.ls11{letter-spacing:0.046222px;}
.ls4{letter-spacing:0.050159px;}
.ls2{letter-spacing:0.051067px;}
.ls5{letter-spacing:0.053579px;}
.lsa{letter-spacing:0.057067px;}
.ls16{letter-spacing:2.991035px;}
.ls7{letter-spacing:2.996983px;}
.ls1a{letter-spacing:2.997035px;}
.lsb{letter-spacing:2.997509px;}
.ls6{letter-spacing:3.005447px;}
.lse{letter-spacing:3.011447px;}
.ls3{letter-spacing:4.872476px;}
.ls18{letter-spacing:5.031664px;}
.ls1{letter-spacing:8.304065px;}
.ls8{letter-spacing:16.659067px;}
.ls17{letter-spacing:19.910383px;}
.ls12{letter-spacing:22.899035px;}
.ls1c{letter-spacing:22.904983px;}
.ls15{letter-spacing:22.913447px;}
.ls1b{letter-spacing:28.940983px;}
.lsf{letter-spacing:29.892583px;}
.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;}
}
.ws19{word-spacing:-29.887800px;}
.wsd{word-spacing:-24.101616px;}
.ws1c{word-spacing:-16.737168px;}
.ws6f{word-spacing:-16.617617px;}
.ws63{word-spacing:-16.378514px;}
.wsa8{word-spacing:-15.840534px;}
.ws99{word-spacing:-15.661207px;}
.wsbd{word-spacing:-15.541656px;}
.wsce{word-spacing:-15.422105px;}
.ws4c{word-spacing:-15.362329px;}
.ws94{word-spacing:-15.123227px;}
.ws2e{word-spacing:-14.645022px;}
.wsa2{word-spacing:-14.585246px;}
.wsc5{word-spacing:-14.346144px;}
.wscd{word-spacing:-14.107042px;}
.wsbf{word-spacing:-13.808164px;}
.ws5f{word-spacing:-13.748388px;}
.ws8b{word-spacing:-13.688612px;}
.ws91{word-spacing:-13.569061px;}
.ws6e{word-spacing:-13.389734px;}
.wsa7{word-spacing:-13.270183px;}
.ws84{word-spacing:-13.210408px;}
.ws96{word-spacing:-13.150632px;}
.wscc{word-spacing:-12.971305px;}
.ws89{word-spacing:-12.851754px;}
.ws14{word-spacing:-12.791978px;}
.ws33{word-spacing:-12.672427px;}
.ws90{word-spacing:-12.552876px;}
.wsc0{word-spacing:-12.493100px;}
.ws6a{word-spacing:-12.433325px;}
.ws53{word-spacing:-12.313774px;}
.ws97{word-spacing:-12.253998px;}
.ws18{word-spacing:-12.194222px;}
.ws51{word-spacing:-12.134447px;}
.ws34{word-spacing:-12.074671px;}
.ws28{word-spacing:-12.014896px;}
.wsa3{word-spacing:-11.955120px;}
.ws22{word-spacing:-11.835569px;}
.ws49{word-spacing:-11.775793px;}
.wsb7{word-spacing:-11.656242px;}
.ws8f{word-spacing:-11.596466px;}
.wsd0{word-spacing:-11.357364px;}
.ws3f{word-spacing:-11.297588px;}
.wsa1{word-spacing:-11.237813px;}
.wsa6{word-spacing:-11.118262px;}
.ws9a{word-spacing:-11.058486px;}
.ws4d{word-spacing:-10.938935px;}
.ws1e{word-spacing:-10.640057px;}
.wsb3{word-spacing:-10.580281px;}
.ws3b{word-spacing:-10.520506px;}
.ws3c{word-spacing:-10.341179px;}
.ws5b{word-spacing:-10.281403px;}
.ws72{word-spacing:-10.221628px;}
.wsa0{word-spacing:-10.161852px;}
.ws1d{word-spacing:-10.042301px;}
.wsaf{word-spacing:-9.986125px;}
.ws12{word-spacing:-9.982525px;}
.wsaa{word-spacing:-9.980734px;}
.ws68{word-spacing:-9.922750px;}
.ws60{word-spacing:-9.862974px;}
.ws36{word-spacing:-9.803198px;}
.wsb6{word-spacing:-9.743423px;}
.ws61{word-spacing:-9.683647px;}
.ws76{word-spacing:-9.623872px;}
.ws88{word-spacing:-9.564096px;}
.ws6c{word-spacing:-9.504320px;}
.ws44{word-spacing:-9.384769px;}
.ws7c{word-spacing:-9.324994px;}
.ws4b{word-spacing:-9.205442px;}
.ws24{word-spacing:-9.145667px;}
.ws32{word-spacing:-9.085891px;}
.ws31{word-spacing:-9.026116px;}
.ws9d{word-spacing:-8.966340px;}
.ws7b{word-spacing:-8.906564px;}
.ws59{word-spacing:-8.846789px;}
.ws2c{word-spacing:-8.787013px;}
.wsc7{word-spacing:-8.667462px;}
.ws27{word-spacing:-8.547911px;}
.ws30{word-spacing:-8.428360px;}
.ws8e{word-spacing:-8.368584px;}
.ws64{word-spacing:-8.308808px;}
.ws43{word-spacing:-8.249033px;}
.wsb8{word-spacing:-8.129482px;}
.ws75{word-spacing:-8.069706px;}
.wsab{word-spacing:-8.009930px;}
.ws38{word-spacing:-7.890379px;}
.ws16{word-spacing:-7.651277px;}
.ws15{word-spacing:-7.471950px;}
.ws1a{word-spacing:-7.412174px;}
.wsc1{word-spacing:-7.352399px;}
.ws78{word-spacing:-7.292623px;}
.ws26{word-spacing:-7.232848px;}
.wsa5{word-spacing:-7.113296px;}
.ws39{word-spacing:-7.053521px;}
.wsc8{word-spacing:-6.874194px;}
.ws86{word-spacing:-6.814418px;}
.ws45{word-spacing:-6.694867px;}
.ws57{word-spacing:-6.575316px;}
.ws73{word-spacing:-6.336214px;}
.ws55{word-spacing:-6.216662px;}
.ws41{word-spacing:-6.156887px;}
.ws8d{word-spacing:-6.097111px;}
.ws95{word-spacing:-5.977560px;}
.wsc9{word-spacing:-5.917784px;}
.wsba{word-spacing:-5.738458px;}
.ws4a{word-spacing:-5.499355px;}
.ws9b{word-spacing:-5.320028px;}
.ws25{word-spacing:-5.200477px;}
.ws71{word-spacing:-5.140702px;}
.ws6b{word-spacing:-5.080926px;}
.wsa9{word-spacing:-5.021150px;}
.ws29{word-spacing:-4.782048px;}
.ws7a{word-spacing:-4.722272px;}
.wsb1{word-spacing:-4.602721px;}
.ws98{word-spacing:-4.542946px;}
.ws3a{word-spacing:-4.483170px;}
.ws5c{word-spacing:-4.244068px;}
.ws21{word-spacing:-4.064741px;}
.wsac{word-spacing:-4.004965px;}
.wsae{word-spacing:-3.945190px;}
.ws5d{word-spacing:-3.885414px;}
.wsbe{word-spacing:-3.765863px;}
.ws10{word-spacing:-3.706087px;}
.ws92{word-spacing:-3.646312px;}
.ws9f{word-spacing:-3.586536px;}
.ws7d{word-spacing:-3.526760px;}
.ws74{word-spacing:-3.466985px;}
.ws5e{word-spacing:-3.227882px;}
.ws2b{word-spacing:-3.168107px;}
.ws35{word-spacing:-3.108331px;}
.ws48{word-spacing:-2.809453px;}
.ws42{word-spacing:-2.749678px;}
.ws62{word-spacing:-2.570351px;}
.ws77{word-spacing:-2.391024px;}
.ws7f{word-spacing:-2.271473px;}
.wsc6{word-spacing:-2.211697px;}
.ws17{word-spacing:-2.032370px;}
.wsa4{word-spacing:-1.793268px;}
.ws52{word-spacing:-1.315063px;}
.ws40{word-spacing:-1.075961px;}
.ws65{word-spacing:-0.798695px;}
.ws80{word-spacing:-0.478205px;}
.ws81{word-spacing:-0.358654px;}
.wsb{word-spacing:-0.268992px;}
.wse{word-spacing:0.000000px;}
.ws4e{word-spacing:0.004783px;}
.ws8{word-spacing:1.667750px;}
.ws7{word-spacing:1.775347px;}
.ws8a{word-spacing:1.853044px;}
.ws0{word-spacing:2.169140px;}
.ws6d{word-spacing:2.211697px;}
.wsa{word-spacing:2.689920px;}
.ws83{word-spacing:2.929004px;}
.ws3e{word-spacing:3.287658px;}
.ws1{word-spacing:3.299635px;}
.wsc{word-spacing:3.335501px;}
.ws69{word-spacing:3.347434px;}
.wsc4{word-spacing:3.646312px;}
.wsc3{word-spacing:3.825638px;}
.ws82{word-spacing:4.064741px;}
.ws3d{word-spacing:4.303843px;}
.ws23{word-spacing:4.602721px;}
.ws37{word-spacing:4.782048px;}
.ws6{word-spacing:5.003251px;}
.wsb2{word-spacing:5.499355px;}
.ws5a{word-spacing:5.798233px;}
.ws2a{word-spacing:6.097111px;}
.ws13{word-spacing:6.156887px;}
.ws67{word-spacing:6.276438px;}
.ws4{word-spacing:6.294413px;}
.wsb5{word-spacing:6.455765px;}
.ws87{word-spacing:6.575316px;}
.wsf{word-spacing:6.742733px;}
.ws2d{word-spacing:6.814464px;}
.ws5{word-spacing:7.262784px;}
.ws9c{word-spacing:7.352399px;}
.ws1b{word-spacing:7.412174px;}
.ws58{word-spacing:7.471950px;}
.ws2f{word-spacing:7.890379px;}
.ws2{word-spacing:7.908365px;}
.wscf{word-spacing:7.931570px;}
.wsad{word-spacing:8.189257px;}
.wscb{word-spacing:8.262278px;}
.ws9{word-spacing:8.822938px;}
.ws70{word-spacing:9.026116px;}
.ws3{word-spacing:9.360922px;}
.wsb0{word-spacing:9.564096px;}
.ws85{word-spacing:9.743423px;}
.ws4f{word-spacing:9.801608px;}
.ws50{word-spacing:9.803830px;}
.ws1f{word-spacing:9.862974px;}
.ws46{word-spacing:9.863260px;}
.ws20{word-spacing:9.922750px;}
.ws56{word-spacing:10.042301px;}
.ws54{word-spacing:10.460730px;}
.ws8c{word-spacing:10.520506px;}
.ws11{word-spacing:11.357364px;}
.ws79{word-spacing:12.134447px;}
.wsb4{word-spacing:12.194222px;}
.ws66{word-spacing:12.552876px;}
.ws7e{word-spacing:13.509286px;}
.ws9e{word-spacing:13.569061px;}
.wsc2{word-spacing:14.047266px;}
.ws47{word-spacing:14.405920px;}
.wsbc{word-spacing:15.573469px;}
.wsb9{word-spacing:18.330548px;}
.wsca{word-spacing:23.296044px;}
.wsbb{word-spacing:25.274641px;}
.ws93{word-spacing:61.974920px;}
._17{margin-left:-7.981079px;}
._d{margin-left:-6.240628px;}
._6{margin-left:-4.572864px;}
._0{margin-left:-2.582310px;}
._3{margin-left:-1.219444px;}
._4{width:1.165645px;}
._1{width:2.582310px;}
._20{width:14.782481px;}
._1b{width:16.707259px;}
._9{width:17.753459px;}
._13{width:18.888985px;}
._1a{width:20.873644px;}
._18{width:22.368034px;}
._8{width:23.384371px;}
._a{width:24.836928px;}
._b{width:25.948748px;}
._12{width:27.214819px;}
._e{width:28.423277px;}
._11{width:30.126724px;}
._2{width:31.131341px;}
._1e{width:32.541845px;}
._10{width:33.546080px;}
._1f{width:34.681807px;}
._1d{width:35.781733px;}
._7{width:37.192601px;}
._14{width:38.375935px;}
._23{width:39.498726px;}
._16{width:40.820758px;}
._5{width:42.267623px;}
._25{width:43.517467px;}
._15{width:45.369524px;}
._19{width:46.889027px;}
._1c{width:48.005789px;}
._21{width:49.050576px;}
._24{width:51.036616px;}
._22{width:54.527306px;}
._f{width:59.774257px;}
._c{width:71.732803px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.842800px;}
.fs2{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y14{bottom:63.168000px;}
.y3d{bottom:108.000000px;}
.yab{bottom:122.175000px;}
.y85{bottom:123.762000px;}
.y3c{bottom:125.932500px;}
.yf1{bottom:138.706500px;}
.yaa{bottom:140.107500px;}
.y84{bottom:141.694500px;}
.y131{bottom:143.865000px;}
.y15a{bottom:150.649500px;}
.y3b{bottom:155.575500px;}
.yf0{bottom:156.639000px;}
.ya9{bottom:158.040000px;}
.y130{bottom:161.797500px;}
.y159{bottom:168.583500px;}
.y83{bottom:169.288500px;}
.yef{bottom:174.571500px;}
.ya8{bottom:175.972500px;}
.y12f{bottom:179.731500px;}
.y3a{bottom:185.220000px;}
.y158{bottom:186.516000px;}
.yee{bottom:192.504000px;}
.y12e{bottom:197.664000px;}
.y5c{bottom:202.165500px;}
.ya7{bottom:203.566500px;}
.y116{bottom:204.172500px;}
.y157{bottom:204.448500px;}
.y82{bottom:208.155000px;}
.yed{bottom:210.436500px;}
.y39{bottom:214.863000px;}
.y12d{bottom:215.596500px;}
.y5b{bottom:220.098000px;}
.ycc{bottom:220.110000px;}
.y115{bottom:222.105000px;}
.y156{bottom:222.381000px;}
.y81{bottom:226.087500px;}
.yec{bottom:228.370500px;}
.y12c{bottom:233.529000px;}
.y5a{bottom:238.030500px;}
.ycb{bottom:238.042500px;}
.y114{bottom:240.037500px;}
.y155{bottom:240.313500px;}
.y80{bottom:244.020000px;}
.ya6{bottom:245.421000px;}
.yeb{bottom:246.303000px;}
.y38{bottom:247.128000px;}
.y12b{bottom:251.461500px;}
.yca{bottom:255.975000px;}
.y113{bottom:257.970000px;}
.y154{bottom:258.246000px;}
.y7f{bottom:261.952500px;}
.ya5{bottom:263.353500px;}
.yea{bottom:264.235500px;}
.y37{bottom:265.060500px;}
.y59{bottom:270.907500px;}
.yc9{bottom:273.907500px;}
.y112{bottom:275.902500px;}
.y153{bottom:276.180000px;}
.y12a{bottom:279.055500px;}
.y7e{bottom:279.885000px;}
.ya4{bottom:281.286000px;}
.ye9{bottom:282.168000px;}
.y36{bottom:282.993000px;}
.yc8{bottom:291.840000px;}
.y111{bottom:293.835000px;}
.y152{bottom:294.112500px;}
.y7d{bottom:297.817500px;}
.ya3{bottom:299.218500px;}
.ye8{bottom:300.100500px;}
.y58{bottom:300.796500px;}
.y35{bottom:300.925500px;}
.yc7{bottom:309.774000px;}
.y110{bottom:311.769000px;}
.y151{bottom:312.045000px;}
.y7c{bottom:315.751500px;}
.ya2{bottom:317.152500px;}
.y129{bottom:317.622000px;}
.ye7{bottom:318.033000px;}
.y57{bottom:318.729000px;}
.y34{bottom:318.859500px;}
.yc6{bottom:327.706500px;}
.y10f{bottom:329.701500px;}
.y150{bottom:329.977500px;}
.y7b{bottom:333.684000px;}
.ya1{bottom:335.085000px;}
.ye6{bottom:335.967000px;}
.y33{bottom:336.792000px;}
.yc5{bottom:345.639000px;}
.y128{bottom:346.813500px;}
.y10e{bottom:347.634000px;}
.y56{bottom:348.616500px;}
.ya0{bottom:353.017500px;}
.y32{bottom:354.724500px;}
.y14f{bottom:357.571500px;}
.ye5{bottom:363.561000px;}
.yc4{bottom:363.571500px;}
.y10d{bottom:365.566500px;}
.y7a{bottom:366.561000px;}
.y9f{bottom:370.950000px;}
.y127{bottom:376.005000px;}
.y55{bottom:378.504000px;}
.yc3{bottom:381.504000px;}
.y31{bottom:382.318500px;}
.y79{bottom:384.493500px;}
.y9e{bottom:388.882500px;}
.y10c{bottom:393.160500px;}
.y172{bottom:397.849500px;}
.y14e{bottom:399.426000px;}
.ye4{bottom:402.426000px;}
.y126{bottom:404.502000px;}
.yc2{bottom:409.098000px;}
.y54{bottom:411.381000px;}
.y78{bottom:414.381000px;}
.y171{bottom:415.782000px;}
.y14d{bottom:417.358500px;}
.ye3{bottom:420.358500px;}
.y30{bottom:421.078500px;}
.y9d{bottom:421.759500px;}
.y125{bottom:422.434500px;}
.y53{bottom:429.313500px;}
.y10b{bottom:432.025500px;}
.y170{bottom:433.714500px;}
.y14c{bottom:435.291000px;}
.ye2{bottom:438.291000px;}
.y2f{bottom:439.011000px;}
.y9c{bottom:439.692000px;}
.y124{bottom:440.367000px;}
.y77{bottom:444.268500px;}
.yc1{bottom:447.964500px;}
.y10a{bottom:449.959500px;}
.y16f{bottom:451.647000px;}
.y14b{bottom:453.223500px;}
.ye1{bottom:456.223500px;}
.y52{bottom:456.907500px;}
.y2e{bottom:461.808000px;}
.yc0{bottom:465.897000px;}
.y109{bottom:467.892000px;}
.y123{bottom:467.961000px;}
.y9b{bottom:469.581000px;}
.y14a{bottom:471.157500px;}
.y76{bottom:474.157500px;}
.y2b{bottom:479.439000px;}
.ybf{bottom:483.829500px;}
.y108{bottom:485.824500px;}
.y16e{bottom:487.513500px;}
.y149{bottom:489.090000px;}
.y75{bottom:492.090000px;}
.y2d{bottom:493.636500px;}
.y2c{bottom:498.118500px;}
.y51{bottom:498.762000px;}
.y9a{bottom:499.468500px;}
.ybe{bottom:501.762000px;}
.y107{bottom:503.757000px;}
.y16d{bottom:505.446000px;}
.y122{bottom:506.527500px;}
.y148{bottom:507.022500px;}
.ye0{bottom:510.022500px;}
.y50{bottom:516.694500px;}
.y99{bottom:517.401000px;}
.ybd{bottom:519.694500px;}
.y106{bottom:521.689500px;}
.y16c{bottom:523.378500px;}
.y2a{bottom:523.545000px;}
.y121{bottom:524.460000px;}
.y74{bottom:524.967000px;}
.ydf{bottom:527.955000px;}
.y147{bottom:534.616500px;}
.y4f{bottom:534.627000px;}
.ybc{bottom:537.627000px;}
.y105{bottom:539.622000px;}
.y16b{bottom:541.311000px;}
.y73{bottom:542.899500px;}
.yde{bottom:545.887500px;}
.y13{bottom:546.459000px;}
.y98{bottom:547.288500px;}
.y29{bottom:551.139000px;}
.y120{bottom:552.955500px;}
.ybb{bottom:555.561000px;}
.y104{bottom:557.556000px;}
.y16a{bottom:559.243500px;}
.y72{bottom:560.832000px;}
.ydd{bottom:563.820000px;}
.y97{bottom:565.221000px;}
.y4e{bottom:567.504000px;}
.y146{bottom:573.481500px;}
.yba{bottom:573.493500px;}
.y103{bottom:575.488500px;}
.y169{bottom:577.177500px;}
.y71{bottom:578.764500px;}
.ydc{bottom:581.754000px;}
.y11f{bottom:582.148500px;}
.y28{bottom:589.899000px;}
.y145{bottom:591.414000px;}
.yb9{bottom:591.426000px;}
.y102{bottom:593.421000px;}
.y96{bottom:595.110000px;}
.y70{bottom:596.697000px;}
.y4d{bottom:597.393000px;}
.ydb{bottom:599.686500px;}
.y12{bottom:600.256500px;}
.y27{bottom:607.831500px;}
.y144{bottom:609.348000px;}
.yb8{bottom:609.358500px;}
.y11e{bottom:611.340000px;}
.y101{bottom:611.353500px;}
.y95{bottom:613.042500px;}
.y11{bottom:616.695000px;}
.yda{bottom:617.619000px;}
.y6f{bottom:624.291000px;}
.y4c{bottom:627.280500px;}
.yb7{bottom:627.291000px;}
.y100{bottom:629.286000px;}
.y168{bottom:630.975000px;}
.y10{bottom:633.133500px;}
.yd9{bottom:635.551500px;}
.y26{bottom:640.096500px;}
.y11d{bottom:640.531500px;}
.y143{bottom:645.213000px;}
.yb6{bottom:645.223500px;}
.y94{bottom:645.919500px;}
.yff{bottom:647.218500px;}
.y167{bottom:648.907500px;}
.yf{bottom:649.572000px;}
.yd8{bottom:653.484000px;}
.y4b{bottom:657.168000px;}
.y142{bottom:663.145500px;}
.y6e{bottom:663.157500px;}
.y93{bottom:663.852000px;}
.yfe{bottom:665.152500px;}
.ye{bottom:666.010500px;}
.y166{bottom:666.840000px;}
.y11c{bottom:669.028500px;}
.y25{bottom:669.739500px;}
.yd7{bottom:671.416500px;}
.y141{bottom:681.078000px;}
.y6d{bottom:681.090000px;}
.y92{bottom:681.784500px;}
.yd{bottom:682.449000px;}
.y165{bottom:684.774000px;}
.y4a{bottom:687.055500px;}
.yd6{bottom:689.350500px;}
.yb5{bottom:690.751500px;}
.yfd{bottom:692.746500px;}
.y11b{bottom:696.622500px;}
.yc{bottom:698.887500px;}
.y140{bottom:699.010500px;}
.y24{bottom:699.384000px;}
.y91{bottom:699.717000px;}
.yd5{bottom:707.283000px;}
.y6c{bottom:708.684000px;}
.y164{bottom:714.661500px;}
.yb{bottom:715.326000px;}
.y13f{bottom:716.944500px;}
.y49{bottom:719.932500px;}
.y90{bottom:727.311000px;}
.y23{bottom:729.027000px;}
.yb4{bottom:729.616500px;}
.yfc{bottom:731.611500px;}
.ya{bottom:731.764500px;}
.yd4{bottom:734.877000px;}
.y11a{bottom:735.187500px;}
.y163{bottom:744.549000px;}
.y48{bottom:747.526500px;}
.yb3{bottom:747.549000px;}
.y9{bottom:748.201500px;}
.yfb{bottom:749.544000px;}
.y6b{bottom:750.538500px;}
.y119{bottom:753.120000px;}
.y22{bottom:761.292000px;}
.y13e{bottom:762.471000px;}
.y8{bottom:764.640000px;}
.yb2{bottom:765.481500px;}
.y6a{bottom:768.471000px;}
.y8f{bottom:769.165500px;}
.y118{bottom:771.054000px;}
.yd3{bottom:773.742000px;}
.y162{bottom:774.436500px;}
.yfa{bottom:777.138000px;}
.y21{bottom:779.224500px;}
.y7{bottom:781.078500px;}
.y47{bottom:786.393000px;}
.y69{bottom:786.403500px;}
.y8e{bottom:787.098000px;}
.yd2{bottom:791.674500px;}
.yb1{bottom:798.358500px;}
.y117{bottom:798.648000px;}
.y13d{bottom:801.336000px;}
.yf9{bottom:801.348000px;}
.y46{bottom:804.325500px;}
.y68{bottom:804.336000px;}
.y6{bottom:805.737000px;}
.y20{bottom:806.818500px;}
.yd1{bottom:809.608500px;}
.y13c{bottom:819.268500px;}
.y8d{bottom:819.975000px;}
.y67{bottom:822.268500px;}
.yb0{bottom:828.246000px;}
.y161{bottom:834.213000px;}
.y45{bottom:837.202500px;}
.y66{bottom:840.202500px;}
.y1f{bottom:845.578500px;}
.yf8{bottom:846.180000px;}
.y8c{bottom:849.862500px;}
.y160{bottom:852.145500px;}
.y13b{bottom:855.135000px;}
.y65{bottom:858.135000px;}
.y5{bottom:859.534500px;}
.y1e{bottom:863.511000px;}
.yf7{bottom:864.112500px;}
.y44{bottom:867.090000px;}
.y15f{bottom:870.078000px;}
.y13a{bottom:873.067500px;}
.y64{bottom:876.067500px;}
.yd0{bottom:879.055500px;}
.y8b{bottom:879.751500px;}
.y1d{bottom:881.443500px;}
.yf6{bottom:882.045000px;}
.y15e{bottom:888.010500px;}
.yaf{bottom:888.022500px;}
.y139{bottom:891.000000px;}
.y63{bottom:894.000000px;}
.y4{bottom:894.694500px;}
.y43{bottom:896.977500px;}
.y1c{bottom:899.377500px;}
.y138{bottom:908.932500px;}
.ycf{bottom:908.944500px;}
.y8a{bottom:909.639000px;}
.y62{bottom:911.932500px;}
.yf5{bottom:914.922000px;}
.y15d{bottom:915.604500px;}
.y3{bottom:915.616500px;}
.y1b{bottom:917.310000px;}
.yae{bottom:917.910000px;}
.y137{bottom:926.865000px;}
.y42{bottom:929.854500px;}
.y61{bottom:929.865000px;}
.y1a{bottom:935.242500px;}
.yce{bottom:938.832000px;}
.y89{bottom:942.516000px;}
.y136{bottom:944.799000px;}
.yf4{bottom:944.809500px;}
.y41{bottom:947.787000px;}
.y60{bottom:947.799000px;}
.y19{bottom:953.175000px;}
.y15c{bottom:957.459000px;}
.y5f{bottom:965.731500px;}
.y2{bottom:966.426000px;}
.ycd{bottom:968.719500px;}
.y135{bottom:972.393000px;}
.yf3{bottom:974.697000px;}
.y40{bottom:975.381000px;}
.y88{bottom:975.393000px;}
.yad{bottom:977.686500px;}
.y18{bottom:980.769000px;}
.y5e{bottom:983.664000px;}
.y1{bottom:987.348000px;}
.y15b{bottom:993.325500px;}
.y5d{bottom:1001.596500px;}
.yf2{bottom:1004.586000px;}
.y87{bottom:1005.280500px;}
.yac{bottom:1007.574000px;}
.y134{bottom:1011.258000px;}
.y3f{bottom:1014.246000px;}
.y17{bottom:1019.529000px;}
.y133{bottom:1029.190500px;}
.y3e{bottom:1032.180000px;}
.y86{bottom:1035.168000px;}
.y16{bottom:1037.461500px;}
.y132{bottom:1047.123000px;}
.y15{bottom:1065.055500px;}
.ha{height:0.000000px;}
.h9{height:29.833916px;}
.h4{height:37.658880px;}
.h5{height:40.348800px;}
.h7{height:44.831700px;}
.h3{height:47.772979px;}
.h8{height:50.211840px;}
.h2{height:51.216077px;}
.h6{height:60.254040px;}
.h1{height:73.027727px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:108.000000px;}
.xb{left:126.261000px;}
.xa{left:130.416000px;}
.x2{left:145.789500px;}
.x7{left:165.534000px;}
.x1{left:257.295000px;}
.xc{left:314.064000px;}
.x4{left:329.713500px;}
.x3{left:381.736500px;}
.x5{left:386.434500px;}
.x6{left:428.563500px;}
.xe{left:440.521500px;}
.xd{left:446.376000px;}
.x10{left:451.528500px;}
.x9{left:455.263500px;}
.xf{left:462.238500px;}
@media print{
.v1{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.008452pt;}
.ls14{letter-spacing:0.010273pt;}
.ls19{letter-spacing:0.012729pt;}
.ls10{letter-spacing:0.018062pt;}
.lsd{letter-spacing:0.028642pt;}
.ls13{letter-spacing:0.035753pt;}
.lsc{letter-spacing:0.039252pt;}
.ls11{letter-spacing:0.041086pt;}
.ls4{letter-spacing:0.044586pt;}
.ls2{letter-spacing:0.045393pt;}
.ls5{letter-spacing:0.047626pt;}
.lsa{letter-spacing:0.050726pt;}
.ls16{letter-spacing:2.658698pt;}
.ls7{letter-spacing:2.663985pt;}
.ls1a{letter-spacing:2.664031pt;}
.lsb{letter-spacing:2.664452pt;}
.ls6{letter-spacing:2.671508pt;}
.lse{letter-spacing:2.676842pt;}
.ls3{letter-spacing:4.331090pt;}
.ls18{letter-spacing:4.472590pt;}
.ls1{letter-spacing:7.381391pt;}
.ls8{letter-spacing:14.808060pt;}
.ls17{letter-spacing:17.698118pt;}
.ls12{letter-spacing:20.354698pt;}
.ls1c{letter-spacing:20.359985pt;}
.ls15{letter-spacing:20.367508pt;}
.ls1b{letter-spacing:25.725318pt;}
.lsf{letter-spacing:26.571185pt;}
.ws19{word-spacing:-26.566933pt;}
.wsd{word-spacing:-21.423659pt;}
.ws1c{word-spacing:-14.877483pt;}
.ws6f{word-spacing:-14.771215pt;}
.ws63{word-spacing:-14.558679pt;}
.wsa8{word-spacing:-14.080475pt;}
.ws99{word-spacing:-13.921073pt;}
.wsbd{word-spacing:-13.814805pt;}
.wsce{word-spacing:-13.708538pt;}
.ws4c{word-spacing:-13.655404pt;}
.ws94{word-spacing:-13.442868pt;}
.ws2e{word-spacing:-13.017797pt;}
.wsa2{word-spacing:-12.964663pt;}
.wsc5{word-spacing:-12.752128pt;}
.wscd{word-spacing:-12.539593pt;}
.wsbf{word-spacing:-12.273923pt;}
.ws5f{word-spacing:-12.220789pt;}
.ws8b{word-spacing:-12.167655pt;}
.ws91{word-spacing:-12.061388pt;}
.ws6e{word-spacing:-11.901986pt;}
.wsa7{word-spacing:-11.795718pt;}
.ws84{word-spacing:-11.742585pt;}
.ws96{word-spacing:-11.689451pt;}
.wscc{word-spacing:-11.530049pt;}
.ws89{word-spacing:-11.423781pt;}
.ws14{word-spacing:-11.370647pt;}
.ws33{word-spacing:-11.264380pt;}
.ws90{word-spacing:-11.158112pt;}
.wsc0{word-spacing:-11.104978pt;}
.ws6a{word-spacing:-11.051844pt;}
.ws53{word-spacing:-10.945577pt;}
.ws97{word-spacing:-10.892443pt;}
.ws18{word-spacing:-10.839309pt;}
.ws51{word-spacing:-10.786175pt;}
.ws34{word-spacing:-10.733041pt;}
.ws28{word-spacing:-10.679907pt;}
.wsa3{word-spacing:-10.626773pt;}
.ws22{word-spacing:-10.520506pt;}
.ws49{word-spacing:-10.467372pt;}
.wsb7{word-spacing:-10.361104pt;}
.ws8f{word-spacing:-10.307970pt;}
.wsd0{word-spacing:-10.095435pt;}
.ws3f{word-spacing:-10.042301pt;}
.wsa1{word-spacing:-9.989167pt;}
.wsa6{word-spacing:-9.882899pt;}
.ws9a{word-spacing:-9.829765pt;}
.ws4d{word-spacing:-9.723498pt;}
.ws1e{word-spacing:-9.457828pt;}
.wsb3{word-spacing:-9.404694pt;}
.ws3b{word-spacing:-9.351561pt;}
.ws3c{word-spacing:-9.192159pt;}
.ws5b{word-spacing:-9.139025pt;}
.ws72{word-spacing:-9.085891pt;}
.wsa0{word-spacing:-9.032757pt;}
.ws1d{word-spacing:-8.926490pt;}
.wsaf{word-spacing:-8.876556pt;}
.ws12{word-spacing:-8.873356pt;}
.wsaa{word-spacing:-8.871763pt;}
.ws68{word-spacing:-8.820222pt;}
.ws60{word-spacing:-8.767088pt;}
.ws36{word-spacing:-8.713954pt;}
.wsb6{word-spacing:-8.660820pt;}
.ws61{word-spacing:-8.607686pt;}
.ws76{word-spacing:-8.554553pt;}
.ws88{word-spacing:-8.501419pt;}
.ws6c{word-spacing:-8.448285pt;}
.ws44{word-spacing:-8.342017pt;}
.ws7c{word-spacing:-8.288883pt;}
.ws4b{word-spacing:-8.182615pt;}
.ws24{word-spacing:-8.129482pt;}
.ws32{word-spacing:-8.076348pt;}
.ws31{word-spacing:-8.023214pt;}
.ws9d{word-spacing:-7.970080pt;}
.ws7b{word-spacing:-7.916946pt;}
.ws59{word-spacing:-7.863812pt;}
.ws2c{word-spacing:-7.810678pt;}
.wsc7{word-spacing:-7.704411pt;}
.ws27{word-spacing:-7.598143pt;}
.ws30{word-spacing:-7.491875pt;}
.ws8e{word-spacing:-7.438741pt;}
.ws64{word-spacing:-7.385607pt;}
.ws43{word-spacing:-7.332474pt;}
.wsb8{word-spacing:-7.226206pt;}
.ws75{word-spacing:-7.173072pt;}
.wsab{word-spacing:-7.119938pt;}
.ws38{word-spacing:-7.013670pt;}
.ws16{word-spacing:-6.801135pt;}
.ws15{word-spacing:-6.641733pt;}
.ws1a{word-spacing:-6.588599pt;}
.wsc1{word-spacing:-6.535466pt;}
.ws78{word-spacing:-6.482332pt;}
.ws26{word-spacing:-6.429198pt;}
.wsa5{word-spacing:-6.322930pt;}
.ws39{word-spacing:-6.269796pt;}
.wsc8{word-spacing:-6.110395pt;}
.ws86{word-spacing:-6.057261pt;}
.ws45{word-spacing:-5.950993pt;}
.ws57{word-spacing:-5.844725pt;}
.ws73{word-spacing:-5.632190pt;}
.ws55{word-spacing:-5.525922pt;}
.ws41{word-spacing:-5.472788pt;}
.ws8d{word-spacing:-5.419654pt;}
.ws95{word-spacing:-5.313387pt;}
.wsc9{word-spacing:-5.260253pt;}
.wsba{word-spacing:-5.100851pt;}
.ws4a{word-spacing:-4.888316pt;}
.ws9b{word-spacing:-4.728914pt;}
.ws25{word-spacing:-4.622646pt;}
.ws71{word-spacing:-4.569513pt;}
.ws6b{word-spacing:-4.516379pt;}
.wsa9{word-spacing:-4.463245pt;}
.ws29{word-spacing:-4.250709pt;}
.ws7a{word-spacing:-4.197575pt;}
.wsb1{word-spacing:-4.091308pt;}
.ws98{word-spacing:-4.038174pt;}
.ws3a{word-spacing:-3.985040pt;}
.ws5c{word-spacing:-3.772505pt;}
.ws21{word-spacing:-3.613103pt;}
.wsac{word-spacing:-3.559969pt;}
.wsae{word-spacing:-3.506835pt;}
.ws5d{word-spacing:-3.453701pt;}
.wsbe{word-spacing:-3.347434pt;}
.ws10{word-spacing:-3.294300pt;}
.ws92{word-spacing:-3.241166pt;}
.ws9f{word-spacing:-3.188032pt;}
.ws7d{word-spacing:-3.134898pt;}
.ws74{word-spacing:-3.081764pt;}
.ws5e{word-spacing:-2.869229pt;}
.ws2b{word-spacing:-2.816095pt;}
.ws35{word-spacing:-2.762961pt;}
.ws48{word-spacing:-2.497292pt;}
.ws42{word-spacing:-2.444158pt;}
.ws62{word-spacing:-2.284756pt;}
.ws77{word-spacing:-2.125355pt;}
.ws7f{word-spacing:-2.019087pt;}
.wsc6{word-spacing:-1.965953pt;}
.ws17{word-spacing:-1.806551pt;}
.wsa4{word-spacing:-1.594016pt;}
.ws52{word-spacing:-1.168945pt;}
.ws40{word-spacing:-0.956410pt;}
.ws65{word-spacing:-0.709951pt;}
.ws80{word-spacing:-0.425071pt;}
.ws81{word-spacing:-0.318803pt;}
.wsb{word-spacing:-0.239104pt;}
.wse{word-spacing:0.000000pt;}
.ws4e{word-spacing:0.004252pt;}
.ws8{word-spacing:1.482445pt;}
.ws7{word-spacing:1.578086pt;}
.ws8a{word-spacing:1.647150pt;}
.ws0{word-spacing:1.928125pt;}
.ws6d{word-spacing:1.965953pt;}
.wsa{word-spacing:2.391040pt;}
.ws83{word-spacing:2.603559pt;}
.ws3e{word-spacing:2.922363pt;}
.ws1{word-spacing:2.933009pt;}
.wsc{word-spacing:2.964890pt;}
.ws69{word-spacing:2.975497pt;}
.wsc4{word-spacing:3.241166pt;}
.wsc3{word-spacing:3.400567pt;}
.ws82{word-spacing:3.613103pt;}
.ws3d{word-spacing:3.825638pt;}
.ws23{word-spacing:4.091308pt;}
.ws37{word-spacing:4.250709pt;}
.ws6{word-spacing:4.447334pt;}
.wsb2{word-spacing:4.888316pt;}
.ws5a{word-spacing:5.153985pt;}
.ws2a{word-spacing:5.419654pt;}
.ws13{word-spacing:5.472788pt;}
.ws67{word-spacing:5.579056pt;}
.ws4{word-spacing:5.595034pt;}
.wsb5{word-spacing:5.738458pt;}
.ws87{word-spacing:5.844725pt;}
.wsf{word-spacing:5.993540pt;}
.ws2d{word-spacing:6.057301pt;}
.ws5{word-spacing:6.455808pt;}
.ws9c{word-spacing:6.535466pt;}
.ws1b{word-spacing:6.588599pt;}
.ws58{word-spacing:6.641733pt;}
.ws2f{word-spacing:7.013670pt;}
.ws2{word-spacing:7.029658pt;}
.wscf{word-spacing:7.050285pt;}
.wsad{word-spacing:7.279340pt;}
.wscb{word-spacing:7.344247pt;}
.ws9{word-spacing:7.842611pt;}
.ws70{word-spacing:8.023214pt;}
.ws3{word-spacing:8.320819pt;}
.wsb0{word-spacing:8.501419pt;}
.ws85{word-spacing:8.660820pt;}
.ws4f{word-spacing:8.712541pt;}
.ws50{word-spacing:8.714515pt;}
.ws1f{word-spacing:8.767088pt;}
.ws46{word-spacing:8.767342pt;}
.ws20{word-spacing:8.820222pt;}
.ws56{word-spacing:8.926490pt;}
.ws54{word-spacing:9.298427pt;}
.ws8c{word-spacing:9.351561pt;}
.ws11{word-spacing:10.095435pt;}
.ws79{word-spacing:10.786175pt;}
.wsb4{word-spacing:10.839309pt;}
.ws66{word-spacing:11.158112pt;}
.ws7e{word-spacing:12.008254pt;}
.ws9e{word-spacing:12.061388pt;}
.wsc2{word-spacing:12.486459pt;}
.ws47{word-spacing:12.805262pt;}
.wsbc{word-spacing:13.843084pt;}
.wsb9{word-spacing:16.293821pt;}
.wsca{word-spacing:20.707595pt;}
.wsbb{word-spacing:22.466348pt;}
.ws93{word-spacing:55.088818pt;}
._17{margin-left:-7.094292pt;}
._d{margin-left:-5.547225pt;}
._6{margin-left:-4.064768pt;}
._0{margin-left:-2.295387pt;}
._3{margin-left:-1.083950pt;}
._4{width:1.036129pt;}
._1{width:2.295387pt;}
._20{width:13.139983pt;}
._1b{width:14.850897pt;}
._9{width:15.780852pt;}
._13{width:16.790209pt;}
._1a{width:18.554350pt;}
._18{width:19.882697pt;}
._8{width:20.786108pt;}
._a{width:22.077269pt;}
._b{width:23.065554pt;}
._12{width:24.190950pt;}
._e{width:25.265135pt;}
._11{width:26.779310pt;}
._2{width:27.672303pt;}
._1e{width:28.926084pt;}
._10{width:29.818738pt;}
._1f{width:30.828273pt;}
._1d{width:31.805985pt;}
._7{width:33.060090pt;}
._14{width:34.111942pt;}
._23{width:35.109979pt;}
._16{width:36.285118pt;}
._5{width:37.571220pt;}
._25{width:38.682193pt;}
._15{width:40.328466pt;}
._19{width:41.679135pt;}
._1c{width:42.671812pt;}
._21{width:43.600512pt;}
._24{width:45.365881pt;}
._22{width:48.468717pt;}
._f{width:53.132673pt;}
._c{width:63.762492pt;}
.fs5{font-size:37.193600pt;}
.fs2{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:56.149333pt;}
.y3d{bottom:96.000000pt;}
.yab{bottom:108.600000pt;}
.y85{bottom:110.010667pt;}
.y3c{bottom:111.940000pt;}
.yf1{bottom:123.294667pt;}
.yaa{bottom:124.540000pt;}
.y84{bottom:125.950667pt;}
.y131{bottom:127.880000pt;}
.y15a{bottom:133.910667pt;}
.y3b{bottom:138.289333pt;}
.yf0{bottom:139.234667pt;}
.ya9{bottom:140.480000pt;}
.y130{bottom:143.820000pt;}
.y159{bottom:149.852000pt;}
.y83{bottom:150.478667pt;}
.yef{bottom:155.174667pt;}
.ya8{bottom:156.420000pt;}
.y12f{bottom:159.761333pt;}
.y3a{bottom:164.640000pt;}
.y158{bottom:165.792000pt;}
.yee{bottom:171.114667pt;}
.y12e{bottom:175.701333pt;}
.y5c{bottom:179.702667pt;}
.ya7{bottom:180.948000pt;}
.y116{bottom:181.486667pt;}
.y157{bottom:181.732000pt;}
.y82{bottom:185.026667pt;}
.yed{bottom:187.054667pt;}
.y39{bottom:190.989333pt;}
.y12d{bottom:191.641333pt;}
.y5b{bottom:195.642667pt;}
.ycc{bottom:195.653333pt;}
.y115{bottom:197.426667pt;}
.y156{bottom:197.672000pt;}
.y81{bottom:200.966667pt;}
.yec{bottom:202.996000pt;}
.y12c{bottom:207.581333pt;}
.y5a{bottom:211.582667pt;}
.ycb{bottom:211.593333pt;}
.y114{bottom:213.366667pt;}
.y155{bottom:213.612000pt;}
.y80{bottom:216.906667pt;}
.ya6{bottom:218.152000pt;}
.yeb{bottom:218.936000pt;}
.y38{bottom:219.669333pt;}
.y12b{bottom:223.521333pt;}
.yca{bottom:227.533333pt;}
.y113{bottom:229.306667pt;}
.y154{bottom:229.552000pt;}
.y7f{bottom:232.846667pt;}
.ya5{bottom:234.092000pt;}
.yea{bottom:234.876000pt;}
.y37{bottom:235.609333pt;}
.y59{bottom:240.806667pt;}
.yc9{bottom:243.473333pt;}
.y112{bottom:245.246667pt;}
.y153{bottom:245.493333pt;}
.y12a{bottom:248.049333pt;}
.y7e{bottom:248.786667pt;}
.ya4{bottom:250.032000pt;}
.ye9{bottom:250.816000pt;}
.y36{bottom:251.549333pt;}
.yc8{bottom:259.413333pt;}
.y111{bottom:261.186667pt;}
.y152{bottom:261.433333pt;}
.y7d{bottom:264.726667pt;}
.ya3{bottom:265.972000pt;}
.ye8{bottom:266.756000pt;}
.y58{bottom:267.374667pt;}
.y35{bottom:267.489333pt;}
.yc7{bottom:275.354667pt;}
.y110{bottom:277.128000pt;}
.y151{bottom:277.373333pt;}
.y7c{bottom:280.668000pt;}
.ya2{bottom:281.913333pt;}
.y129{bottom:282.330667pt;}
.ye7{bottom:282.696000pt;}
.y57{bottom:283.314667pt;}
.y34{bottom:283.430667pt;}
.yc6{bottom:291.294667pt;}
.y10f{bottom:293.068000pt;}
.y150{bottom:293.313333pt;}
.y7b{bottom:296.608000pt;}
.ya1{bottom:297.853333pt;}
.ye6{bottom:298.637333pt;}
.y33{bottom:299.370667pt;}
.yc5{bottom:307.234667pt;}
.y128{bottom:308.278667pt;}
.y10e{bottom:309.008000pt;}
.y56{bottom:309.881333pt;}
.ya0{bottom:313.793333pt;}
.y32{bottom:315.310667pt;}
.y14f{bottom:317.841333pt;}
.ye5{bottom:323.165333pt;}
.yc4{bottom:323.174667pt;}
.y10d{bottom:324.948000pt;}
.y7a{bottom:325.832000pt;}
.y9f{bottom:329.733333pt;}
.y127{bottom:334.226667pt;}
.y55{bottom:336.448000pt;}
.yc3{bottom:339.114667pt;}
.y31{bottom:339.838667pt;}
.y79{bottom:341.772000pt;}
.y9e{bottom:345.673333pt;}
.y10c{bottom:349.476000pt;}
.y172{bottom:353.644000pt;}
.y14e{bottom:355.045333pt;}
.ye4{bottom:357.712000pt;}
.y126{bottom:359.557333pt;}
.yc2{bottom:363.642667pt;}
.y54{bottom:365.672000pt;}
.y78{bottom:368.338667pt;}
.y171{bottom:369.584000pt;}
.y14d{bottom:370.985333pt;}
.ye3{bottom:373.652000pt;}
.y30{bottom:374.292000pt;}
.y9d{bottom:374.897333pt;}
.y125{bottom:375.497333pt;}
.y53{bottom:381.612000pt;}
.y10b{bottom:384.022667pt;}
.y170{bottom:385.524000pt;}
.y14c{bottom:386.925333pt;}
.ye2{bottom:389.592000pt;}
.y2f{bottom:390.232000pt;}
.y9c{bottom:390.837333pt;}
.y124{bottom:391.437333pt;}
.y77{bottom:394.905333pt;}
.yc1{bottom:398.190667pt;}
.y10a{bottom:399.964000pt;}
.y16f{bottom:401.464000pt;}
.y14b{bottom:402.865333pt;}
.ye1{bottom:405.532000pt;}
.y52{bottom:406.140000pt;}
.y2e{bottom:410.496000pt;}
.yc0{bottom:414.130667pt;}
.y109{bottom:415.904000pt;}
.y123{bottom:415.965333pt;}
.y9b{bottom:417.405333pt;}
.y14a{bottom:418.806667pt;}
.y76{bottom:421.473333pt;}
.y2b{bottom:426.168000pt;}
.ybf{bottom:430.070667pt;}
.y108{bottom:431.844000pt;}
.y16e{bottom:433.345333pt;}
.y149{bottom:434.746667pt;}
.y75{bottom:437.413333pt;}
.y2d{bottom:438.788000pt;}
.y2c{bottom:442.772000pt;}
.y51{bottom:443.344000pt;}
.y9a{bottom:443.972000pt;}
.ybe{bottom:446.010667pt;}
.y107{bottom:447.784000pt;}
.y16d{bottom:449.285333pt;}
.y122{bottom:450.246667pt;}
.y148{bottom:450.686667pt;}
.ye0{bottom:453.353333pt;}
.y50{bottom:459.284000pt;}
.y99{bottom:459.912000pt;}
.ybd{bottom:461.950667pt;}
.y106{bottom:463.724000pt;}
.y16c{bottom:465.225333pt;}
.y2a{bottom:465.373333pt;}
.y121{bottom:466.186667pt;}
.y74{bottom:466.637333pt;}
.ydf{bottom:469.293333pt;}
.y147{bottom:475.214667pt;}
.y4f{bottom:475.224000pt;}
.ybc{bottom:477.890667pt;}
.y105{bottom:479.664000pt;}
.y16b{bottom:481.165333pt;}
.y73{bottom:482.577333pt;}
.yde{bottom:485.233333pt;}
.y13{bottom:485.741333pt;}
.y98{bottom:486.478667pt;}
.y29{bottom:489.901333pt;}
.y120{bottom:491.516000pt;}
.ybb{bottom:493.832000pt;}
.y104{bottom:495.605333pt;}
.y16a{bottom:497.105333pt;}
.y72{bottom:498.517333pt;}
.ydd{bottom:501.173333pt;}
.y97{bottom:502.418667pt;}
.y4e{bottom:504.448000pt;}
.y146{bottom:509.761333pt;}
.yba{bottom:509.772000pt;}
.y103{bottom:511.545333pt;}
.y169{bottom:513.046667pt;}
.y71{bottom:514.457333pt;}
.ydc{bottom:517.114667pt;}
.y11f{bottom:517.465333pt;}
.y28{bottom:524.354667pt;}
.y145{bottom:525.701333pt;}
.yb9{bottom:525.712000pt;}
.y102{bottom:527.485333pt;}
.y96{bottom:528.986667pt;}
.y70{bottom:530.397333pt;}
.y4d{bottom:531.016000pt;}
.ydb{bottom:533.054667pt;}
.y12{bottom:533.561333pt;}
.y27{bottom:540.294667pt;}
.y144{bottom:541.642667pt;}
.yb8{bottom:541.652000pt;}
.y11e{bottom:543.413333pt;}
.y101{bottom:543.425333pt;}
.y95{bottom:544.926667pt;}
.y11{bottom:548.173333pt;}
.yda{bottom:548.994667pt;}
.y6f{bottom:554.925333pt;}
.y4c{bottom:557.582667pt;}
.yb7{bottom:557.592000pt;}
.y100{bottom:559.365333pt;}
.y168{bottom:560.866667pt;}
.y10{bottom:562.785333pt;}
.yd9{bottom:564.934667pt;}
.y26{bottom:568.974667pt;}
.y11d{bottom:569.361333pt;}
.y143{bottom:573.522667pt;}
.yb6{bottom:573.532000pt;}
.y94{bottom:574.150667pt;}
.yff{bottom:575.305333pt;}
.y167{bottom:576.806667pt;}
.yf{bottom:577.397333pt;}
.yd8{bottom:580.874667pt;}
.y4b{bottom:584.149333pt;}
.y142{bottom:589.462667pt;}
.y6e{bottom:589.473333pt;}
.y93{bottom:590.090667pt;}
.yfe{bottom:591.246667pt;}
.ye{bottom:592.009333pt;}
.y166{bottom:592.746667pt;}
.y11c{bottom:594.692000pt;}
.y25{bottom:595.324000pt;}
.yd7{bottom:596.814667pt;}
.y141{bottom:605.402667pt;}
.y6d{bottom:605.413333pt;}
.y92{bottom:606.030667pt;}
.yd{bottom:606.621333pt;}
.y165{bottom:608.688000pt;}
.y4a{bottom:610.716000pt;}
.yd6{bottom:612.756000pt;}
.yb5{bottom:614.001333pt;}
.yfd{bottom:615.774667pt;}
.y11b{bottom:619.220000pt;}
.yc{bottom:621.233333pt;}
.y140{bottom:621.342667pt;}
.y24{bottom:621.674667pt;}
.y91{bottom:621.970667pt;}
.yd5{bottom:628.696000pt;}
.y6c{bottom:629.941333pt;}
.y164{bottom:635.254667pt;}
.yb{bottom:635.845333pt;}
.y13f{bottom:637.284000pt;}
.y49{bottom:639.940000pt;}
.y90{bottom:646.498667pt;}
.y23{bottom:648.024000pt;}
.yb4{bottom:648.548000pt;}
.yfc{bottom:650.321333pt;}
.ya{bottom:650.457333pt;}
.yd4{bottom:653.224000pt;}
.y11a{bottom:653.500000pt;}
.y163{bottom:661.821333pt;}
.y48{bottom:664.468000pt;}
.yb3{bottom:664.488000pt;}
.y9{bottom:665.068000pt;}
.yfb{bottom:666.261333pt;}
.y6b{bottom:667.145333pt;}
.y119{bottom:669.440000pt;}
.y22{bottom:676.704000pt;}
.y13e{bottom:677.752000pt;}
.y8{bottom:679.680000pt;}
.yb2{bottom:680.428000pt;}
.y6a{bottom:683.085333pt;}
.y8f{bottom:683.702667pt;}
.y118{bottom:685.381333pt;}
.yd3{bottom:687.770667pt;}
.y162{bottom:688.388000pt;}
.yfa{bottom:690.789333pt;}
.y21{bottom:692.644000pt;}
.y7{bottom:694.292000pt;}
.y47{bottom:699.016000pt;}
.y69{bottom:699.025333pt;}
.y8e{bottom:699.642667pt;}
.yd2{bottom:703.710667pt;}
.yb1{bottom:709.652000pt;}
.y117{bottom:709.909333pt;}
.y13d{bottom:712.298667pt;}
.yf9{bottom:712.309333pt;}
.y46{bottom:714.956000pt;}
.y68{bottom:714.965333pt;}
.y6{bottom:716.210667pt;}
.y20{bottom:717.172000pt;}
.yd1{bottom:719.652000pt;}
.y13c{bottom:728.238667pt;}
.y8d{bottom:728.866667pt;}
.y67{bottom:730.905333pt;}
.yb0{bottom:736.218667pt;}
.y161{bottom:741.522667pt;}
.y45{bottom:744.180000pt;}
.y66{bottom:746.846667pt;}
.y1f{bottom:751.625333pt;}
.yf8{bottom:752.160000pt;}
.y8c{bottom:755.433333pt;}
.y160{bottom:757.462667pt;}
.y13b{bottom:760.120000pt;}
.y65{bottom:762.786667pt;}
.y5{bottom:764.030667pt;}
.y1e{bottom:767.565333pt;}
.yf7{bottom:768.100000pt;}
.y44{bottom:770.746667pt;}
.y15f{bottom:773.402667pt;}
.y13a{bottom:776.060000pt;}
.y64{bottom:778.726667pt;}
.yd0{bottom:781.382667pt;}
.y8b{bottom:782.001333pt;}
.y1d{bottom:783.505333pt;}
.yf6{bottom:784.040000pt;}
.y15e{bottom:789.342667pt;}
.yaf{bottom:789.353333pt;}
.y139{bottom:792.000000pt;}
.y63{bottom:794.666667pt;}
.y4{bottom:795.284000pt;}
.y43{bottom:797.313333pt;}
.y1c{bottom:799.446667pt;}
.y138{bottom:807.940000pt;}
.ycf{bottom:807.950667pt;}
.y8a{bottom:808.568000pt;}
.y62{bottom:810.606667pt;}
.yf5{bottom:813.264000pt;}
.y15d{bottom:813.870667pt;}
.y3{bottom:813.881333pt;}
.y1b{bottom:815.386667pt;}
.yae{bottom:815.920000pt;}
.y137{bottom:823.880000pt;}
.y42{bottom:826.537333pt;}
.y61{bottom:826.546667pt;}
.y1a{bottom:831.326667pt;}
.yce{bottom:834.517333pt;}
.y89{bottom:837.792000pt;}
.y136{bottom:839.821333pt;}
.yf4{bottom:839.830667pt;}
.y41{bottom:842.477333pt;}
.y60{bottom:842.488000pt;}
.y19{bottom:847.266667pt;}
.y15c{bottom:851.074667pt;}
.y5f{bottom:858.428000pt;}
.y2{bottom:859.045333pt;}
.ycd{bottom:861.084000pt;}
.y135{bottom:864.349333pt;}
.yf3{bottom:866.397333pt;}
.y40{bottom:867.005333pt;}
.y88{bottom:867.016000pt;}
.yad{bottom:869.054667pt;}
.y18{bottom:871.794667pt;}
.y5e{bottom:874.368000pt;}
.y1{bottom:877.642667pt;}
.y15b{bottom:882.956000pt;}
.y5d{bottom:890.308000pt;}
.yf2{bottom:892.965333pt;}
.y87{bottom:893.582667pt;}
.yac{bottom:895.621333pt;}
.y134{bottom:898.896000pt;}
.y3f{bottom:901.552000pt;}
.y17{bottom:906.248000pt;}
.y133{bottom:914.836000pt;}
.y3e{bottom:917.493333pt;}
.y86{bottom:920.149333pt;}
.y16{bottom:922.188000pt;}
.y132{bottom:930.776000pt;}
.y15{bottom:946.716000pt;}
.ha{height:0.000000pt;}
.h9{height:26.519037pt;}
.h4{height:33.474560pt;}
.h5{height:35.865600pt;}
.h7{height:39.850400pt;}
.h3{height:42.464870pt;}
.h8{height:44.632747pt;}
.h2{height:45.525402pt;}
.h6{height:53.559147pt;}
.h1{height:64.913535pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:96.000000pt;}
.xb{left:112.232000pt;}
.xa{left:115.925333pt;}
.x2{left:129.590667pt;}
.x7{left:147.141333pt;}
.x1{left:228.706667pt;}
.xc{left:279.168000pt;}
.x4{left:293.078667pt;}
.x3{left:339.321333pt;}
.x5{left:343.497333pt;}
.x6{left:380.945333pt;}
.xe{left:391.574667pt;}
.xd{left:396.778667pt;}
.x10{left:401.358667pt;}
.x9{left:404.678667pt;}
.xf{left:410.878667pt;}
}




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