
    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_d316e705f486fa0504b63e12.woff')format("woff");}.ff1{font-family:ff1;line-height:1.117000;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_581701b5bf503b2d0da25fa7.woff')format("woff");}.ff2{font-family:ff2;line-height:0.902000;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_e63cd8334b67860a4d9f0012.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_b8d97aed3a11bb7460b163fb.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8ac0fe7900e3865142803952.woff')format("woff");}.ff5{font-family:ff5;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a324259872cbd8b0ea7db585.woff')format("woff");}.ff6{font-family:ff6;line-height:0.844000;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_8b0c1a2b8466a6f74f84256f.woff')format("woff");}.ff7{font-family:ff7;line-height:0.707000;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_d455c0256798996a49823263.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_734a43fd2286f37449ff18d8.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ea95a0ed0cc802ab6bdee81f.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_33b68021cafd108b5a6e7415.woff')format("woff");}.ffb{font-family:ffb;line-height:0.451000;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_b413431720d1b2c5f6ada10d.woff')format("woff");}.ffc{font-family:ffc;line-height:1.117000;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_3ab945926804823b2e36b2b1.woff')format("woff");}.ffd{font-family:ffd;line-height:1.058000;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_f069ce2700a65c704eca8faa.woff')format("woff");}.ffe{font-family:ffe;line-height:0.924000;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_55ff85079e33c18c1f5b6338.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_e00c8e185ad4d2456c9d644c.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_bc7e4c10b02960d4c525b770.woff')format("woff");}.ff11{font-family:ff11;line-height:0.528000;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:ff12;src:url('chunks/assets/font_65b2a6d7ec0c63812bb0b35c.woff')format("woff");}.ff12{font-family:ff12;line-height:0.909000;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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-26.034000px;}
.v3{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.028000px;}
.lsd{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.001866px;}
.ls2{letter-spacing:0.002338px;}
.ls3{letter-spacing:0.004200px;}
.ls0{letter-spacing:2.991113px;}
.ls5{letter-spacing:9.956338px;}
.ls1{letter-spacing:9.962338px;}
.ls15{letter-spacing:17.216316px;}
.ls14{letter-spacing:19.922316px;}
.lsa{letter-spacing:20.880579px;}
.lsb{letter-spacing:21.186579px;}
.ls6{letter-spacing:21.821781px;}
.lse{letter-spacing:21.958200px;}
.ls13{letter-spacing:23.738316px;}
.ls12{letter-spacing:24.734316px;}
.lsf{letter-spacing:25.772316px;}
.ls10{letter-spacing:25.778316px;}
.ls8{letter-spacing:25.804200px;}
.ls16{letter-spacing:26.738316px;}
.lsc{letter-spacing:29.890178px;}
.ls4{letter-spacing:29.971923px;}
.ls11{letter-spacing:30.548316px;}
.ls7{letter-spacing:34.723923px;}
.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;}
}
.ws17{word-spacing:-38.937826px;}
.ws41{word-spacing:-34.364992px;}
.ws72{word-spacing:-30.545332px;}
.ws1e{word-spacing:-28.955301px;}
.ws15{word-spacing:-17.279799px;}
.ws47{word-spacing:-16.979803px;}
.ws46{word-spacing:-16.973779px;}
.ws1{word-spacing:-16.196248px;}
.ws2f{word-spacing:-15.829597px;}
.ws4f{word-spacing:-15.743520px;}
.ws4b{word-spacing:-15.364524px;}
.wsc{word-spacing:-15.106591px;}
.ws42{word-spacing:-14.160840px;}
.ws36{word-spacing:-14.070444px;}
.ws26{word-spacing:-13.503308px;}
.ws5d{word-spacing:-13.323981px;}
.ws2c{word-spacing:-13.264206px;}
.ws48{word-spacing:-13.204430px;}
.ws67{word-spacing:-12.666450px;}
.ws75{word-spacing:-12.653753px;}
.ws34{word-spacing:-12.307796px;}
.ws51{word-spacing:-12.221732px;}
.ws3a{word-spacing:-12.188245px;}
.ws45{word-spacing:-11.889367px;}
.ws3b{word-spacing:-11.829591px;}
.ws76{word-spacing:-11.656242px;}
.ws5e{word-spacing:-11.590489px;}
.ws60{word-spacing:-11.470938px;}
.ws63{word-spacing:-11.351386px;}
.ws99{word-spacing:-11.231835px;}
.ws58{word-spacing:-11.172060px;}
.ws8{word-spacing:-11.125509px;}
.ws31{word-spacing:-10.997732px;}
.ws5a{word-spacing:-10.932957px;}
.ws4a{word-spacing:-10.873182px;}
.ws33{word-spacing:-10.693855px;}
.ws39{word-spacing:-10.634079px;}
.ws3d{word-spacing:-10.574304px;}
.ws10{word-spacing:-10.514528px;}
.ws68{word-spacing:-10.454752px;}
.ws66{word-spacing:-10.335201px;}
.ws2b{word-spacing:-10.275426px;}
.ws5{word-spacing:-10.210936px;}
.ws23{word-spacing:-10.036323px;}
.ws0{word-spacing:-9.976548px;}
.ws73{word-spacing:-9.953753px;}
.ws61{word-spacing:-9.916772px;}
.ws57{word-spacing:-9.856996px;}
.ws28{word-spacing:-9.797221px;}
.ws25{word-spacing:-9.677670px;}
.ws37{word-spacing:-9.558118px;}
.ws59{word-spacing:-9.319016px;}
.ws3{word-spacing:-9.242565px;}
.ws55{word-spacing:-9.222444px;}
.ws3e{word-spacing:-9.199465px;}
.wse{word-spacing:-9.188767px;}
.ws74{word-spacing:-9.145667px;}
.ws12{word-spacing:-9.079914px;}
.ws5b{word-spacing:-8.900587px;}
.ws2e{word-spacing:-8.840811px;}
.ws5f{word-spacing:-8.781036px;}
.ws1d{word-spacing:-8.601709px;}
.ws44{word-spacing:-8.541933px;}
.ws56{word-spacing:-8.422382px;}
.ws7{word-spacing:-8.381791px;}
.ws43{word-spacing:-8.302831px;}
.ws6{word-spacing:-8.166597px;}
.ws2d{word-spacing:-8.123504px;}
.ws38{word-spacing:-8.003953px;}
.ws24{word-spacing:-7.944177px;}
.ws30{word-spacing:-7.927227px;}
.ws1f{word-spacing:-7.824626px;}
.ws52{word-spacing:-7.764850px;}
.ws50{word-spacing:-7.705075px;}
.ws6a{word-spacing:-7.645299px;}
.ws11{word-spacing:-7.167094px;}
.ws40{word-spacing:-7.047543px;}
.wsa{word-spacing:-7.036831px;}
.ws14{word-spacing:-6.951841px;}
.ws1a{word-spacing:-6.927992px;}
.ws9{word-spacing:-6.875436px;}
.ws32{word-spacing:-6.509563px;}
.ws64{word-spacing:-6.270460px;}
.ws3f{word-spacing:-6.150909px;}
.ws65{word-spacing:-6.031358px;}
.ws13{word-spacing:-5.911807px;}
.wsb{word-spacing:-5.799468px;}
.wsd{word-spacing:-5.584274px;}
.ws4e{word-spacing:-5.254275px;}
.ws71{word-spacing:-5.134724px;}
.ws6f{word-spacing:-5.128956px;}
.ws70{word-spacing:-4.782048px;}
.ws54{word-spacing:-4.716295px;}
.ws22{word-spacing:-4.058763px;}
.ws4d{word-spacing:-3.247227px;}
.ws77{word-spacing:-3.162129px;}
.ws78{word-spacing:-2.929004px;}
.ws4c{word-spacing:-2.803476px;}
.ws2a{word-spacing:-1.787290px;}
.ws18{word-spacing:-0.059776px;}
.ws4{word-spacing:-0.053798px;}
.ws35{word-spacing:0.000000px;}
.ws6c{word-spacing:0.537980px;}
.ws6d{word-spacing:0.663509px;}
.ws6b{word-spacing:0.676654px;}
.ws79{word-spacing:0.783060px;}
.ws1c{word-spacing:5.804211px;}
.ws6e{word-spacing:10.520506px;}
.ws27{word-spacing:16.287746px;}
.ws29{word-spacing:16.856719px;}
.ws81{word-spacing:16.880672px;}
.ws20{word-spacing:20.084602px;}
.ws16{word-spacing:21.578992px;}
.ws69{word-spacing:22.171800px;}
.ws1b{word-spacing:22.896763px;}
.ws19{word-spacing:22.900963px;}
.ws2{word-spacing:23.312640px;}
.ws49{word-spacing:25.387549px;}
.ws21{word-spacing:26.361040px;}
.ws5c{word-spacing:26.827469px;}
.ws3c{word-spacing:31.322414px;}
.ws53{word-spacing:37.365728px;}
.wsa0{word-spacing:41.848898px;}
.wsf{word-spacing:47.351068px;}
.ws9e{word-spacing:58.944719px;}
.ws7d{word-spacing:96.151710px;}
.ws7f{word-spacing:97.729785px;}
.ws9f{word-spacing:118.242114px;}
.ws62{word-spacing:178.735022px;}
.ws93{word-spacing:182.321558px;}
.ws9a{word-spacing:182.620436px;}
.ws96{word-spacing:189.933648px;}
.ws89{word-spacing:208.323944px;}
.ws9d{word-spacing:209.220578px;}
.ws98{word-spacing:218.485796px;}
.ws84{word-spacing:219.980186px;}
.ws9c{word-spacing:229.125852px;}
.ws97{word-spacing:242.396036px;}
.ws9b{word-spacing:249.031127px;}
.ws92{word-spacing:262.865858px;}
.ws8c{word-spacing:268.018515px;}
.ws7e{word-spacing:268.757075px;}
.ws80{word-spacing:268.936402px;}
.ws90{word-spacing:272.788608px;}
.ws8a{word-spacing:279.471520px;}
.ws7c{word-spacing:282.206585px;}
.ws87{word-spacing:287.110841px;}
.ws8e{word-spacing:295.072951px;}
.ws82{word-spacing:299.508301px;}
.ws94{word-spacing:304.864194px;}
.ws85{word-spacing:316.693786px;}
.ws7a{word-spacing:326.440529px;}
.ws8d{word-spacing:368.881205px;}
.ws91{word-spacing:373.842580px;}
.ws95{word-spacing:375.217419px;}
.ws8b{word-spacing:380.477672px;}
.ws88{word-spacing:385.498822px;}
.ws8f{word-spacing:395.302020px;}
.ws83{word-spacing:397.095288px;}
.ws7b{word-spacing:404.516097px;}
.ws86{word-spacing:412.039188px;}
._2{margin-left:-8.056807px;}
._0{margin-left:-4.961375px;}
._4c{margin-left:-3.822033px;}
._4{margin-left:-2.685602px;}
._1{margin-left:-1.673717px;}
._5{width:1.506355px;}
._d{width:2.685602px;}
._4d{width:3.838537px;}
._1a{width:5.714527px;}
._4e{width:6.898957px;}
._11{width:8.491470px;}
._2d{width:10.491498px;}
._8{width:15.485327px;}
._1d{width:17.696404px;}
._3b{width:19.004922px;}
._13{width:20.225033px;}
._9{width:21.644856px;}
._c{width:23.587554px;}
._6{width:24.655895px;}
._18{width:26.044628px;}
._7{width:27.060595px;}
._2e{width:28.453186px;}
._1b{width:29.538919px;}
._10{width:30.545332px;}
._a{width:31.758955px;}
._1c{width:33.087580px;}
._e{width:34.107937px;}
._b{width:35.315616px;}
._16{width:37.052273px;}
._f{width:38.674813px;}
._1f{width:40.859755px;}
._3{width:43.072931px;}
._12{width:44.763892px;}
._1e{width:48.576998px;}
._14{width:50.988587px;}
._19{width:60.441253px;}
._28{width:71.730720px;}
._65{width:75.078154px;}
._2b{width:76.512768px;}
._2f{width:80.697600px;}
._6d{width:81.713245px;}
._22{width:83.207635px;}
._53{width:86.471363px;}
._5c{width:89.842727px;}
._23{width:91.456668px;}
._15{width:94.684920px;}
._4f{width:110.046880px;}
._51{width:112.557455px;}
._5b{width:116.084215px;}
._73{width:122.177027px;}
._50{width:138.798943px;}
._5a{width:142.325704px;}
._4b{width:151.232268px;}
._b4{width:152.415815px;}
._2c{width:153.623292px;}
._31{width:157.811884px;}
._33{width:161.991876px;}
._c8{width:164.382900px;}
._55{width:184.168624px;}
._3e{width:187.037852px;}
._58{width:191.102593px;}
._24{width:196.888861px;}
._b7{width:201.921977px;}
._52{width:209.668874px;}
._25{width:211.187195px;}
._4a{width:214.654180px;}
._57{width:217.344082px;}
._35{width:218.539594px;}
._9a{width:221.647925px;}
._49{width:223.321642px;}
._37{width:225.234461px;}
._ab{width:226.609300px;}
._47{width:229.956733px;}
._96{width:233.244391px;}
._46{width:234.918108px;}
._8c{width:238.205766px;}
._29{width:239.580605px;}
._48{width:244.721306px;}
._44{width:246.681936px;}
._9f{width:248.008964px;}
._7e{width:250.029370px;}
._42{width:252.009630px;}
._a1{width:254.345178px;}
._45{width:261.458474px;}
._59{width:265.463440px;}
._83{width:271.261673px;}
._3c{width:285.301273px;}
._21{width:291.824479px;}
._34{width:295.283798px;}
._26{width:297.148807px;}
._bf{width:301.496161px;}
._72{width:303.600272px;}
._54{width:307.306360px;}
._ba{width:327.737650px;}
._27{width:331.575253px;}
._b5{width:336.524663px;}
._43{width:337.851691px;}
._56{width:340.541593px;}
._89{width:346.160500px;}
._2a{width:347.774441px;}
._32{width:350.033948px;}
._7a{width:355.545269px;}
._aa{width:362.088055px;}
._9e{width:373.657276px;}
._b3{width:377.889378px;}
._78{width:385.129891px;}
._b2{width:394.805873px;}
._b9{width:402.110461px;}
._7b{width:406.589332px;}
._c7{width:408.566226px;}
._94{width:430.503871px;}
._c1{width:432.476466px;}
._75{width:434.922966px;}
._bd{width:443.411795px;}
._40{width:445.567322px;}
._a9{width:450.994937px;}
._20{width:454.529363px;}
._b1{width:461.395891px;}
._77{width:463.978207px;}
._b8{width:466.010578px;}
._b6{width:470.852401px;}
._71{width:473.602079px;}
._bc{width:475.989497px;}
._9d{width:483.225950px;}
._36{width:485.074694px;}
._c4{width:486.573384px;}
._39{width:488.191625px;}
._c6{width:489.861042px;}
._c5{width:493.029149px;}
._70{width:494.169185px;}
._76{width:500.321772px;}
._b0{width:502.055264px;}
._82{width:504.310472px;}
._3f{width:506.338543px;}
._a7{width:507.793722px;}
._74{width:512.097565px;}
._85{width:514.416848px;}
._be{width:519.151086px;}
._67{width:522.737622px;}
._92{width:526.742587px;}
._a0{width:529.185721px;}
._86{width:537.203317px;}
._c3{width:539.056361px;}
._a8{width:540.837664px;}
._66{width:544.483975px;}
._8e{width:546.827189px;}
._5d{width:548.544416px;}
._7c{width:554.466500px;}
._c2{width:558.961636px;}
._68{width:562.906825px;}
._6b{width:566.194483px;}
._63{width:570.259224px;}
._af{width:571.693838px;}
._60{width:572.709484px;}
._8b{width:578.986462px;}
._88{width:580.361300px;}
._84{width:582.214344px;}
._95{width:590.762255px;}
._c0{width:591.838216px;}
._6c{width:596.620264px;}
._a2{width:605.586604px;}
._64{width:611.564164px;}
._90{width:613.237880px;}
._a6{width:618.976338px;}
._91{width:622.861752px;}
._bb{width:625.551654px;}
._9c{width:627.942678px;}
._8a{width:628.946898px;}
._69{width:635.952608px;}
._ae{width:640.440078px;}
._6f{width:641.452504px;}
._98{width:643.221301px;}
._9b{width:644.727656px;}
._7d{width:648.075090px;}
._80{width:652.144130px;}
._6a{width:654.722147px;}
._79{width:664.346018px;}
._97{width:671.160437px;}
._8f{width:672.654827px;}
._a3{width:674.329084px;}
._61{width:675.344729px;}
._62{width:678.512836px;}
._a4{width:686.164652px;}
._ad{width:687.957380px;}
._a5{width:694.294134px;}
._87{width:700.032052px;}
._81{width:702.363300px;}
._99{width:705.830285px;}
._6e{width:707.026337px;}
._8d{width:709.536372px;}
._5e{width:737.511353px;}
._ac{width:741.695645px;}
._30{width:745.640834px;}
._7f{width:751.128224px;}
._93{width:752.515028px;}
._17{width:756.639545px;}
._38{width:758.193710px;}
._5f{width:788.389285px;}
._3a{width:806.193517px;}
._3d{width:817.371554px;}
._41{width:985.938746px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.842800px;}
.fs3{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs0{font-size:59.775600px;}
.fs2{font-size:71.731200px;}
.fs5{font-size:86.077200px;}
.fs1{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y2d{bottom:40.207500px;}
.y151{bottom:83.311500px;}
.y83{bottom:85.039500px;}
.y121{bottom:88.056000px;}
.y5a{bottom:92.434500px;}
.yb0{bottom:97.015500px;}
.y106{bottom:102.402000px;}
.y82{bottom:102.972000px;}
.y150{bottom:105.429000px;}
.y120{bottom:110.173500px;}
.y59{bottom:110.367000px;}
.y2c{bottom:111.313500px;}
.ye5{bottom:112.296000px;}
.y81{bottom:120.904500px;}
.yaf{bottom:120.925500px;}
.y105{bottom:124.519500px;}
.y14f{bottom:126.948000px;}
.y2b{bottom:129.246000px;}
.y11f{bottom:131.692500px;}
.ye4{bottom:134.413500px;}
.y58{bottom:143.094000px;}
.yae{bottom:144.835500px;}
.y104{bottom:146.038500px;}
.y2a{bottom:147.178500px;}
.y14e{bottom:148.467000px;}
.y80{bottom:148.486500px;}
.y11e{bottom:153.211500px;}
.ye3{bottom:155.932500px;}
.y103{bottom:167.557500px;}
.yad{bottom:168.747000px;}
.y14d{bottom:169.987500px;}
.y11d{bottom:174.730500px;}
.y29{bottom:177.066000px;}
.ye2{bottom:177.451500px;}
.y102{bottom:189.076500px;}
.y14c{bottom:191.506500px;}
.yac{bottom:192.657000px;}
.y7f{bottom:193.494000px;}
.y57{bottom:196.243500px;}
.y11c{bottom:196.249500px;}
.ye1{bottom:198.970500px;}
.y28{bottom:206.955000px;}
.yab{bottom:210.589500px;}
.y101{bottom:210.597000px;}
.y14b{bottom:213.025500px;}
.y11b{bottom:217.768500px;}
.ye0{bottom:220.489500px;}
.y7e{bottom:228.192000px;}
.y56{bottom:230.940000px;}
.y100{bottom:232.116000px;}
.yaa{bottom:234.499500px;}
.y14a{bottom:234.544500px;}
.y11a{bottom:239.289000px;}
.y27{bottom:239.682000px;}
.ydf{bottom:242.008500px;}
.y7d{bottom:249.711000px;}
.ya9{bottom:252.432000px;}
.y55{bottom:252.459000px;}
.yff{bottom:253.635000px;}
.y149{bottom:256.063500px;}
.y119{bottom:257.221500px;}
.yde{bottom:263.529000px;}
.y7c{bottom:271.230000px;}
.y54{bottom:273.978000px;}
.yfe{bottom:275.154000px;}
.ya8{bottom:276.343500px;}
.y148{bottom:277.582500px;}
.y118{bottom:278.740500px;}
.ydd{bottom:285.048000px;}
.y26{bottom:289.095000px;}
.y7b{bottom:292.749000px;}
.ya7{bottom:294.276000px;}
.y53{bottom:295.498500px;}
.yfd{bottom:296.673000px;}
.y147{bottom:299.101500px;}
.y117{bottom:300.259500px;}
.ydc{bottom:306.567000px;}
.y25{bottom:307.029000px;}
.y7a{bottom:314.268000px;}
.y52{bottom:317.017500px;}
.yfc{bottom:318.192000px;}
.y146{bottom:320.622000px;}
.y116{bottom:321.778500px;}
.y24{bottom:324.961500px;}
.ya6{bottom:327.003000px;}
.ydb{bottom:328.086000px;}
.y79{bottom:335.788500px;}
.y51{bottom:338.536500px;}
.yfb{bottom:339.711000px;}
.y145{bottom:342.141000px;}
.y23{bottom:342.894000px;}
.y115{bottom:343.297500px;}
.yda{bottom:349.605000px;}
.y78{bottom:357.307500px;}
.y50{bottom:360.055500px;}
.y22{bottom:360.826500px;}
.yfa{bottom:361.231500px;}
.y144{bottom:363.660000px;}
.y114{bottom:364.818000px;}
.yd9{bottom:371.124000px;}
.ya5{bottom:376.417500px;}
.y21{bottom:378.759000px;}
.y77{bottom:379.423500px;}
.y4f{bottom:381.574500px;}
.yf9{bottom:382.750500px;}
.y143{bottom:385.776000px;}
.y113{bottom:386.337000px;}
.yd8{bottom:392.643000px;}
.ya4{bottom:394.350000px;}
.y20{bottom:396.691500px;}
.y4e{bottom:403.093500px;}
.yf8{bottom:404.269500px;}
.y112{bottom:407.856000px;}
.yd7{bottom:414.163500px;}
.y1f{bottom:414.625500px;}
.y76{bottom:416.128500px;}
.y142{bottom:423.969000px;}
.ya3{bottom:424.237500px;}
.y4d{bottom:424.612500px;}
.yf7{bottom:425.788500px;}
.y111{bottom:429.375000px;}
.y1e{bottom:432.558000px;}
.y75{bottom:434.062500px;}
.yd6{bottom:435.682500px;}
.ya2{bottom:442.170000px;}
.y4c{bottom:446.133000px;}
.yf6{bottom:447.307500px;}
.y1d{bottom:450.490500px;}
.y110{bottom:450.894000px;}
.y74{bottom:451.995000px;}
.yd5{bottom:457.201500px;}
.ya1{bottom:460.102500px;}
.y4b{bottom:467.652000px;}
.y1c{bottom:468.423000px;}
.yf5{bottom:468.826500px;}
.y10f{bottom:472.413000px;}
.yd4{bottom:478.720500px;}
.y141{bottom:481.951500px;}
.y1b{bottom:486.355500px;}
.y4a{bottom:489.768000px;}
.yf4{bottom:490.345500px;}
.y10e{bottom:493.932000px;}
.y73{bottom:494.014500px;}
.ya0{bottom:498.942000px;}
.yd3{bottom:500.239500px;}
.y140{bottom:503.470500px;}
.y1a{bottom:504.288000px;}
.yf3{bottom:511.866000px;}
.yc5{bottom:515.410500px;}
.y10d{bottom:515.452500px;}
.yd2{bottom:521.758500px;}
.y19{bottom:522.222000px;}
.y49{bottom:524.856000px;}
.y13f{bottom:524.989500px;}
.y72{bottom:528.711000px;}
.y9f{bottom:528.829500px;}
.yf2{bottom:533.385000px;}
.y10c{bottom:536.971500px;}
.y18{bottom:540.154500px;}
.y48{bottom:542.790000px;}
.yd1{bottom:543.277500px;}
.y13e{bottom:546.510000px;}
.y71{bottom:550.230000px;}
.yf1{bottom:554.904000px;}
.y17{bottom:558.087000px;}
.y10b{bottom:558.490500px;}
.yd0{bottom:564.798000px;}
.y9e{bottom:567.669000px;}
.y13d{bottom:568.029000px;}
.y70{bottom:571.749000px;}
.y47{bottom:575.517000px;}
.y16{bottom:576.019500px;}
.yf0{bottom:576.423000px;}
.y10a{bottom:580.009500px;}
.y9d{bottom:585.601500px;}
.ycf{bottom:586.317000px;}
.y13c{bottom:589.548000px;}
.y6f{bottom:593.268000px;}
.y15{bottom:593.952000px;}
.yef{bottom:597.942000px;}
.y109{bottom:601.528500px;}
.y9c{bottom:603.534000px;}
.yce{bottom:607.836000px;}
.y13b{bottom:611.067000px;}
.y14{bottom:611.884500px;}
.y6e{bottom:614.788500px;}
.yee{bottom:619.461000px;}
.y108{bottom:623.047500px;}
.y46{bottom:624.930000px;}
.ycd{bottom:629.355000px;}
.y9b{bottom:631.116000px;}
.y13a{bottom:632.586000px;}
.y6d{bottom:636.904500px;}
.yed{bottom:640.980000px;}
.y45{bottom:642.864000px;}
.y107{bottom:644.566500px;}
.y13{bottom:644.613000px;}
.ycc{bottom:650.874000px;}
.y139{bottom:654.105000px;}
.y44{bottom:660.796500px;}
.yec{bottom:662.500500px;}
.ycb{bottom:672.393000px;}
.y6c{bottom:674.440500px;}
.y138{bottom:675.624000px;}
.y9a{bottom:675.849000px;}
.y43{bottom:678.729000px;}
.yeb{bottom:684.019500px;}
.yc4{bottom:687.637500px;}
.y6b{bottom:692.373000px;}
.yca{bottom:693.912000px;}
.y12{bottom:694.026000px;}
.y137{bottom:697.144500px;}
.yea{bottom:705.538500px;}
.y99{bottom:709.633500px;}
.y11{bottom:710.464500px;}
.yc9{bottom:715.432500px;}
.y42{bottom:717.567000px;}
.y136{bottom:718.663500px;}
.yc3{bottom:722.335500px;}
.y10{bottom:726.903000px;}
.ye9{bottom:727.057500px;}
.y98{bottom:731.152500px;}
.y6a{bottom:734.392500px;}
.y41{bottom:735.501000px;}
.yc8{bottom:737.548500px;}
.y135{bottom:740.182500px;}
.yf{bottom:743.341500px;}
.yc2{bottom:743.854500px;}
.ye8{bottom:748.576500px;}
.y97{bottom:752.671500px;}
.y40{bottom:753.433500px;}
.ye{bottom:759.780000px;}
.y134{bottom:761.701500px;}
.yc1{bottom:765.373500px;}
.y69{bottom:769.089000px;}
.ye7{bottom:770.694000px;}
.y3f{bottom:771.366000px;}
.y96{bottom:774.190500px;}
.yc7{bottom:774.877500px;}
.yd{bottom:776.218500px;}
.y133{bottom:783.220500px;}
.yc0{bottom:786.892500px;}
.y3e{bottom:789.298500px;}
.y68{bottom:790.608000px;}
.yc{bottom:792.657000px;}
.yc6{bottom:792.810000px;}
.y95{bottom:795.709500px;}
.y132{bottom:804.739500px;}
.y3d{bottom:807.231000px;}
.ye6{bottom:807.874500px;}
.ybf{bottom:808.413000px;}
.yb{bottom:809.095500px;}
.y67{bottom:812.127000px;}
.y94{bottom:817.228500px;}
.y3c{bottom:825.163500px;}
.ya{bottom:825.532500px;}
.y131{bottom:826.258500px;}
.ybe{bottom:829.932000px;}
.y66{bottom:833.646000px;}
.y93{bottom:838.747500px;}
.y9{bottom:841.971000px;}
.y3b{bottom:843.097500px;}
.y130{bottom:847.779000px;}
.ybd{bottom:851.451000px;}
.y65{bottom:855.166500px;}
.y92{bottom:860.268000px;}
.y8{bottom:865.398000px;}
.y12f{bottom:869.298000px;}
.ybc{bottom:872.970000px;}
.y64{bottom:876.685500px;}
.y91{bottom:881.787000px;}
.y3a{bottom:881.935500px;}
.y12e{bottom:890.817000px;}
.ybb{bottom:894.489000px;}
.y63{bottom:898.801500px;}
.y39{bottom:899.868000px;}
.y90{bottom:903.306000px;}
.y12d{bottom:912.336000px;}
.yba{bottom:916.008000px;}
.y7{bottom:919.191000px;}
.y8f{bottom:924.825000px;}
.y38{bottom:929.757000px;}
.y62{bottom:932.602500px;}
.y12c{bottom:933.855000px;}
.yb9{bottom:937.527000px;}
.y8e{bottom:946.344000px;}
.y37{bottom:947.689500px;}
.y61{bottom:950.535000px;}
.y6{bottom:954.718500px;}
.y12b{bottom:955.374000px;}
.yb8{bottom:959.047500px;}
.y36{bottom:965.622000px;}
.y8d{bottom:967.863000px;}
.y60{bottom:968.467500px;}
.y12a{bottom:976.894500px;}
.yb7{bottom:980.566500px;}
.y8c{bottom:989.382000px;}
.y5{bottom:994.836000px;}
.y5f{bottom:996.049500px;}
.y129{bottom:998.413500px;}
.yb6{bottom:1002.085500px;}
.y35{bottom:1004.461500px;}
.y8b{bottom:1010.902500px;}
.y4{bottom:1013.434500px;}
.y128{bottom:1019.932500px;}
.yb5{bottom:1023.604500px;}
.y8a{bottom:1032.421500px;}
.y34{bottom:1034.349000px;}
.y5e{bottom:1037.322000px;}
.y127{bottom:1041.451500px;}
.yb4{bottom:1045.123500px;}
.y33{bottom:1052.281500px;}
.y89{bottom:1053.940500px;}
.y5d{bottom:1055.254500px;}
.y126{bottom:1062.970500px;}
.yb3{bottom:1066.642500px;}
.y3{bottom:1067.217000px;}
.y32{bottom:1070.214000px;}
.y5c{bottom:1073.187000px;}
.y88{bottom:1075.459500px;}
.y125{bottom:1084.489500px;}
.yb2{bottom:1088.161500px;}
.y5b{bottom:1091.121000px;}
.y87{bottom:1096.978500px;}
.y2{bottom:1100.094000px;}
.y124{bottom:1106.607000px;}
.y31{bottom:1109.053500px;}
.yb1{bottom:1110.279000px;}
.y86{bottom:1118.497500px;}
.y30{bottom:1126.986000px;}
.y85{bottom:1140.016500px;}
.y152{bottom:1140.615000px;}
.y123{bottom:1144.798500px;}
.y2f{bottom:1144.918500px;}
.y84{bottom:1162.134000px;}
.y122{bottom:1162.732500px;}
.y2e{bottom:1162.851000px;}
.y1{bottom:1220.535000px;}
.h5{height:33.665702px;}
.hf{height:33.713523px;}
.h8{height:37.712678px;}
.h6{height:40.402598px;}
.ha{height:41.603818px;}
.hb{height:44.891476px;}
.hc{height:50.283571px;}
.h7{height:51.287808px;}
.h2{height:51.825445px;}
.h4{height:59.693702px;}
.h9{height:60.426194px;}
.h3{height:72.304680px;}
.hd{height:892.914000px;}
.he{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w2{width:1262.835000px;}
.w3{width:1263.000000px;}
.x0{left:0.000000px;}
.x19{left:40.207500px;}
.xb{left:85.039500px;}
.x1d{left:102.330000px;}
.xc{left:107.457000px;}
.x2{left:109.467000px;}
.xe{left:115.756500px;}
.xa{left:122.400000px;}
.xd{left:124.443000px;}
.x9{left:143.128500px;}
.x12{left:153.246000px;}
.xf{left:194.665500px;}
.x14{left:203.632500px;}
.x13{left:225.340500px;}
.x1c{left:227.967000px;}
.x1e{left:233.632500px;}
.x10{left:268.107000px;}
.x5{left:269.206500px;}
.x15{left:270.597000px;}
.x6{left:279.078000px;}
.x11{left:282.549000px;}
.x3{left:287.287500px;}
.x20{left:319.588500px;}
.x1{left:377.503500px;}
.x4{left:389.746500px;}
.x7{left:405.495000px;}
.x17{left:412.927500px;}
.x8{left:416.023500px;}
.x1a{left:504.549000px;}
.x1b{left:635.136000px;}
.x1f{left:657.802500px;}
.x18{left:1008.129000px;}
.x16{left:1220.535000px;}
@media print{
.v2{vertical-align:-23.141333pt;}
.v3{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.136000pt;}
.lsd{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.001659pt;}
.ls2{letter-spacing:0.002079pt;}
.ls3{letter-spacing:0.003733pt;}
.ls0{letter-spacing:2.658767pt;}
.ls5{letter-spacing:8.850079pt;}
.ls1{letter-spacing:8.855412pt;}
.ls15{letter-spacing:15.303392pt;}
.ls14{letter-spacing:17.708725pt;}
.lsa{letter-spacing:18.560515pt;}
.lsb{letter-spacing:18.832515pt;}
.ls6{letter-spacing:19.397138pt;}
.lse{letter-spacing:19.518400pt;}
.ls13{letter-spacing:21.100725pt;}
.ls12{letter-spacing:21.986059pt;}
.lsf{letter-spacing:22.908725pt;}
.ls10{letter-spacing:22.914059pt;}
.ls8{letter-spacing:22.937067pt;}
.ls16{letter-spacing:23.767392pt;}
.lsc{letter-spacing:26.569047pt;}
.ls4{letter-spacing:26.641710pt;}
.ls11{letter-spacing:27.154059pt;}
.ls7{letter-spacing:30.865710pt;}
.ws17{word-spacing:-34.611401pt;}
.ws41{word-spacing:-30.546660pt;}
.ws72{word-spacing:-27.151406pt;}
.ws1e{word-spacing:-25.738045pt;}
.ws15{word-spacing:-15.359821pt;}
.ws47{word-spacing:-15.093158pt;}
.ws46{word-spacing:-15.087804pt;}
.ws1{word-spacing:-14.396665pt;}
.ws2f{word-spacing:-14.070753pt;}
.ws4f{word-spacing:-13.994240pt;}
.ws4b{word-spacing:-13.657355pt;}
.wsc{word-spacing:-13.428081pt;}
.ws42{word-spacing:-12.587413pt;}
.ws36{word-spacing:-12.507062pt;}
.ws26{word-spacing:-12.002940pt;}
.ws5d{word-spacing:-11.843539pt;}
.ws2c{word-spacing:-11.790405pt;}
.ws48{word-spacing:-11.737271pt;}
.ws67{word-spacing:-11.259066pt;}
.ws75{word-spacing:-11.247781pt;}
.ws34{word-spacing:-10.940263pt;}
.ws51{word-spacing:-10.863761pt;}
.ws3a{word-spacing:-10.833995pt;}
.ws45{word-spacing:-10.568326pt;}
.ws3b{word-spacing:-10.515192pt;}
.ws76{word-spacing:-10.361104pt;}
.ws5e{word-spacing:-10.302657pt;}
.ws60{word-spacing:-10.196389pt;}
.ws63{word-spacing:-10.090121pt;}
.ws99{word-spacing:-9.983854pt;}
.ws58{word-spacing:-9.930720pt;}
.ws8{word-spacing:-9.889341pt;}
.ws31{word-spacing:-9.775761pt;}
.ws5a{word-spacing:-9.718184pt;}
.ws4a{word-spacing:-9.665050pt;}
.ws33{word-spacing:-9.505649pt;}
.ws39{word-spacing:-9.452515pt;}
.ws3d{word-spacing:-9.399381pt;}
.ws10{word-spacing:-9.346247pt;}
.ws68{word-spacing:-9.293113pt;}
.ws66{word-spacing:-9.186846pt;}
.ws2b{word-spacing:-9.133712pt;}
.ws5{word-spacing:-9.076388pt;}
.ws23{word-spacing:-8.921176pt;}
.ws0{word-spacing:-8.868042pt;}
.ws73{word-spacing:-8.847781pt;}
.ws61{word-spacing:-8.814908pt;}
.ws57{word-spacing:-8.761775pt;}
.ws28{word-spacing:-8.708641pt;}
.ws25{word-spacing:-8.602373pt;}
.ws37{word-spacing:-8.496105pt;}
.ws59{word-spacing:-8.283570pt;}
.ws3{word-spacing:-8.215613pt;}
.ws55{word-spacing:-8.197728pt;}
.ws3e{word-spacing:-8.177302pt;}
.wse{word-spacing:-8.167793pt;}
.ws74{word-spacing:-8.129482pt;}
.ws12{word-spacing:-8.071034pt;}
.ws5b{word-spacing:-7.911633pt;}
.ws2e{word-spacing:-7.858499pt;}
.ws5f{word-spacing:-7.805365pt;}
.ws1d{word-spacing:-7.645963pt;}
.ws44{word-spacing:-7.592830pt;}
.ws56{word-spacing:-7.486562pt;}
.ws7{word-spacing:-7.450481pt;}
.ws43{word-spacing:-7.380294pt;}
.ws6{word-spacing:-7.259197pt;}
.ws2d{word-spacing:-7.220892pt;}
.ws38{word-spacing:-7.114625pt;}
.ws24{word-spacing:-7.061491pt;}
.ws30{word-spacing:-7.046424pt;}
.ws1f{word-spacing:-6.955223pt;}
.ws52{word-spacing:-6.902089pt;}
.ws50{word-spacing:-6.848955pt;}
.ws6a{word-spacing:-6.795822pt;}
.ws11{word-spacing:-6.370751pt;}
.ws40{word-spacing:-6.264483pt;}
.wsa{word-spacing:-6.254961pt;}
.ws14{word-spacing:-6.179414pt;}
.ws1a{word-spacing:-6.158215pt;}
.ws9{word-spacing:-6.111498pt;}
.ws32{word-spacing:-5.786278pt;}
.ws64{word-spacing:-5.573743pt;}
.ws3f{word-spacing:-5.467475pt;}
.ws65{word-spacing:-5.361207pt;}
.ws13{word-spacing:-5.254939pt;}
.wsb{word-spacing:-5.155082pt;}
.wsd{word-spacing:-4.963799pt;}
.ws4e{word-spacing:-4.670467pt;}
.ws71{word-spacing:-4.564199pt;}
.ws6f{word-spacing:-4.559072pt;}
.ws70{word-spacing:-4.250709pt;}
.ws54{word-spacing:-4.192262pt;}
.ws22{word-spacing:-3.607790pt;}
.ws4d{word-spacing:-2.886424pt;}
.ws77{word-spacing:-2.810782pt;}
.ws78{word-spacing:-2.603559pt;}
.ws4c{word-spacing:-2.491978pt;}
.ws2a{word-spacing:-1.588703pt;}
.ws18{word-spacing:-0.053134pt;}
.ws4{word-spacing:-0.047821pt;}
.ws35{word-spacing:0.000000pt;}
.ws6c{word-spacing:0.478205pt;}
.ws6d{word-spacing:0.589786pt;}
.ws6b{word-spacing:0.601471pt;}
.ws79{word-spacing:0.696054pt;}
.ws1c{word-spacing:5.159298pt;}
.ws6e{word-spacing:9.351561pt;}
.ws27{word-spacing:14.477996pt;}
.ws29{word-spacing:14.983750pt;}
.ws81{word-spacing:15.005042pt;}
.ws20{word-spacing:17.852979pt;}
.ws16{word-spacing:19.181326pt;}
.ws69{word-spacing:19.708266pt;}
.ws1b{word-spacing:20.352678pt;}
.ws19{word-spacing:20.356411pt;}
.ws2{word-spacing:20.722347pt;}
.ws49{word-spacing:22.566710pt;}
.ws21{word-spacing:23.432035pt;}
.ws5c{word-spacing:23.846639pt;}
.ws3c{word-spacing:27.842146pt;}
.ws53{word-spacing:33.213980pt;}
.wsa0{word-spacing:37.199020pt;}
.wsf{word-spacing:42.089838pt;}
.ws9e{word-spacing:52.395306pt;}
.ws7d{word-spacing:85.468186pt;}
.ws7f{word-spacing:86.870920pt;}
.ws9f{word-spacing:105.104102pt;}
.ws62{word-spacing:158.875575pt;}
.ws93{word-spacing:162.063607pt;}
.ws9a{word-spacing:162.329276pt;}
.ws96{word-spacing:168.829910pt;}
.ws89{word-spacing:185.176839pt;}
.ws9d{word-spacing:185.973847pt;}
.ws98{word-spacing:194.209596pt;}
.ws84{word-spacing:195.537943pt;}
.ws9c{word-spacing:203.667424pt;}
.ws97{word-spacing:215.463143pt;}
.ws9b{word-spacing:221.361002pt;}
.ws92{word-spacing:233.658540pt;}
.ws8c{word-spacing:238.238680pt;}
.ws7e{word-spacing:238.895178pt;}
.ws80{word-spacing:239.054580pt;}
.ws90{word-spacing:242.478762pt;}
.ws8a{word-spacing:248.419129pt;}
.ws7c{word-spacing:250.850298pt;}
.ws87{word-spacing:255.209637pt;}
.ws8e{word-spacing:262.287068pt;}
.ws82{word-spacing:266.229601pt;}
.ws94{word-spacing:270.990395pt;}
.ws85{word-spacing:281.505587pt;}
.ws7a{word-spacing:290.169359pt;}
.ws8d{word-spacing:327.894405pt;}
.ws91{word-spacing:332.304516pt;}
.ws95{word-spacing:333.526594pt;}
.ws8b{word-spacing:338.202375pt;}
.ws88{word-spacing:342.665620pt;}
.ws8f{word-spacing:351.379574pt;}
.ws83{word-spacing:352.973590pt;}
.ws7b{word-spacing:359.569864pt;}
.ws86{word-spacing:366.257056pt;}
._2{margin-left:-7.161606pt;}
._0{margin-left:-4.410111pt;}
._4c{margin-left:-3.397363pt;}
._4{margin-left:-2.387202pt;}
._1{margin-left:-1.487748pt;}
._5{width:1.338982pt;}
._d{width:2.387202pt;}
._4d{width:3.412033pt;}
._1a{width:5.079580pt;}
._4e{width:6.132407pt;}
._11{width:7.547973pt;}
._2d{width:9.325776pt;}
._8{width:13.764735pt;}
._1d{width:15.730137pt;}
._3b{width:16.893264pt;}
._13{width:17.977807pt;}
._9{width:19.239872pt;}
._c{width:20.966715pt;}
._6{width:21.916351pt;}
._18{width:23.150780pt;}
._7{width:24.053862pt;}
._2e{width:25.291721pt;}
._1b{width:26.256817pt;}
._10{width:27.151406pt;}
._a{width:28.230182pt;}
._1c{width:29.411182pt;}
._e{width:30.318166pt;}
._b{width:31.391659pt;}
._16{width:32.935354pt;}
._f{width:34.377612pt;}
._1f{width:36.319782pt;}
._3{width:38.287050pt;}
._12{width:39.790126pt;}
._1e{width:43.179554pt;}
._14{width:45.323188pt;}
._19{width:53.725558pt;}
._28{width:63.760640pt;}
._65{width:66.736137pt;}
._2b{width:68.011349pt;}
._2f{width:71.731200pt;}
._6d{width:72.633996pt;}
._22{width:73.962342pt;}
._53{width:76.863434pt;}
._5c{width:79.860202pt;}
._23{width:81.294816pt;}
._15{width:84.164373pt;}
._4f{width:97.819449pt;}
._51{width:100.051071pt;}
._5b{width:103.185969pt;}
._73{width:108.601802pt;}
._50{width:123.376838pt;}
._5a{width:126.511737pt;}
._4b{width:134.428683pt;}
._b4{width:135.480724pt;}
._2c{width:136.554037pt;}
._31{width:140.277230pt;}
._33{width:143.992779pt;}
._c8{width:146.118133pt;}
._55{width:163.705443pt;}
._3e{width:166.255869pt;}
._58{width:169.868972pt;}
._24{width:175.012321pt;}
._b7{width:179.486202pt;}
._52{width:186.372333pt;}
._25{width:187.721951pt;}
._4a{width:190.803715pt;}
._57{width:193.194739pt;}
._35{width:194.257417pt;}
._9a{width:197.020378pt;}
._49{width:198.508126pt;}
._37{width:200.208410pt;}
._ab{width:201.430489pt;}
._47{width:204.405985pt;}
._96{width:207.328348pt;}
._46{width:208.816096pt;}
._8c{width:211.738459pt;}
._29{width:212.960538pt;}
._48{width:217.530050pt;}
._44{width:219.272832pt;}
._9f{width:220.452413pt;}
._7e{width:222.248329pt;}
._42{width:224.008560pt;}
._a1{width:226.084603pt;}
._45{width:232.407533pt;}
._59{width:235.967502pt;}
._83{width:241.121487pt;}
._3c{width:253.601132pt;}
._21{width:259.399537pt;}
._34{width:262.474487pt;}
._26{width:264.132273pt;}
._bf{width:267.996588pt;}
._72{width:269.866909pt;}
._54{width:273.161209pt;}
._ba{width:291.322355pt;}
._27{width:294.733558pt;}
._b5{width:299.133034pt;}
._43{width:300.312614pt;}
._56{width:302.703638pt;}
._89{width:307.698222pt;}
._2a{width:309.132836pt;}
._32{width:311.141287pt;}
._7a{width:316.040239pt;}
._aa{width:321.856049pt;}
._9e{width:332.139801pt;}
._b3{width:335.901669pt;}
._78{width:342.337681pt;}
._b2{width:350.938554pt;}
._b9{width:357.431521pt;}
._7b{width:361.412739pt;}
._c7{width:363.169979pt;}
._94{width:382.670108pt;}
._c1{width:384.423525pt;}
._75{width:386.598192pt;}
._bd{width:394.143818pt;}
._40{width:396.059842pt;}
._a9{width:400.884388pt;}
._20{width:404.026100pt;}
._b1{width:410.129681pt;}
._77{width:412.425073pt;}
._b8{width:414.231625pt;}
._b6{width:418.535468pt;}
._71{width:420.979626pt;}
._bc{width:423.101775pt;}
._9d{width:429.534178pt;}
._36{width:431.177506pt;}
._c4{width:432.509675pt;}
._39{width:433.948111pt;}
._c6{width:435.432037pt;}
._c5{width:438.248132pt;}
._70{width:439.261498pt;}
._76{width:444.730464pt;}
._b0{width:446.271346pt;}
._82{width:448.275975pt;}
._3f{width:450.078705pt;}
._a7{width:451.372197pt;}
._74{width:455.197836pt;}
._85{width:457.259421pt;}
._be{width:461.467632pt;}
._67{width:464.655664pt;}
._92{width:468.215633pt;}
._a0{width:470.387308pt;}
._86{width:477.514060pt;}
._c3{width:479.161210pt;}
._a8{width:480.744590pt;}
._66{width:483.985756pt;}
._8e{width:486.068612pt;}
._5d{width:487.595037pt;}
._7c{width:492.859111pt;}
._c2{width:496.854787pt;}
._68{width:500.361622pt;}
._6b{width:503.283985pt;}
._63{width:506.897088pt;}
._af{width:508.172301pt;}
._60{width:509.075097pt;}
._8b{width:514.654633pt;}
._88{width:515.876711pt;}
._84{width:517.523861pt;}
._95{width:525.122004pt;}
._c0{width:526.078414pt;}
._6c{width:530.329123pt;}
._a2{width:538.299203pt;}
._64{width:543.612590pt;}
._90{width:545.100338pt;}
._a6{width:550.201189pt;}
._91{width:553.654891pt;}
._bb{width:556.045915pt;}
._9c{width:558.171269pt;}
._8a{width:559.063909pt;}
._69{width:565.291207pt;}
._ae{width:569.280069pt;}
._6f{width:570.180003pt;}
._98{width:571.752268pt;}
._9b{width:573.091250pt;}
._7d{width:576.066747pt;}
._80{width:579.683671pt;}
._6a{width:581.975242pt;}
._79{width:590.529794pt;}
._97{width:596.587055pt;}
._8f{width:597.915402pt;}
._a3{width:599.403630pt;}
._61{width:600.306426pt;}
._62{width:603.122521pt;}
._a4{width:609.924135pt;}
._ad{width:611.517671pt;}
._a5{width:617.150341pt;}
._87{width:622.250713pt;}
._81{width:624.322933pt;}
._99{width:627.404698pt;}
._6e{width:628.467855pt;}
._8d{width:630.698997pt;}
._5e{width:655.565647pt;}
._ac{width:659.285018pt;}
._30{width:662.791853pt;}
._7f{width:667.669533pt;}
._93{width:668.902247pt;}
._17{width:672.568484pt;}
._38{width:673.949965pt;}
._5f{width:700.790476pt;}
._3a{width:716.616460pt;}
._3d{width:726.552493pt;}
._41{width:876.389997pt;}
.fs6{font-size:37.193600pt;}
.fs3{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs0{font-size:53.133867pt;}
.fs2{font-size:63.761067pt;}
.fs5{font-size:76.513067pt;}
.fs1{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:35.740000pt;}
.y151{bottom:74.054667pt;}
.y83{bottom:75.590667pt;}
.y121{bottom:78.272000pt;}
.y5a{bottom:82.164000pt;}
.yb0{bottom:86.236000pt;}
.y106{bottom:91.024000pt;}
.y82{bottom:91.530667pt;}
.y150{bottom:93.714667pt;}
.y120{bottom:97.932000pt;}
.y59{bottom:98.104000pt;}
.y2c{bottom:98.945333pt;}
.ye5{bottom:99.818667pt;}
.y81{bottom:107.470667pt;}
.yaf{bottom:107.489333pt;}
.y105{bottom:110.684000pt;}
.y14f{bottom:112.842667pt;}
.y2b{bottom:114.885333pt;}
.y11f{bottom:117.060000pt;}
.ye4{bottom:119.478667pt;}
.y58{bottom:127.194667pt;}
.yae{bottom:128.742667pt;}
.y104{bottom:129.812000pt;}
.y2a{bottom:130.825333pt;}
.y14e{bottom:131.970667pt;}
.y80{bottom:131.988000pt;}
.y11e{bottom:136.188000pt;}
.ye3{bottom:138.606667pt;}
.y103{bottom:148.940000pt;}
.yad{bottom:149.997333pt;}
.y14d{bottom:151.100000pt;}
.y11d{bottom:155.316000pt;}
.y29{bottom:157.392000pt;}
.ye2{bottom:157.734667pt;}
.y102{bottom:168.068000pt;}
.y14c{bottom:170.228000pt;}
.yac{bottom:171.250667pt;}
.y7f{bottom:171.994667pt;}
.y57{bottom:174.438667pt;}
.y11c{bottom:174.444000pt;}
.ye1{bottom:176.862667pt;}
.y28{bottom:183.960000pt;}
.yab{bottom:187.190667pt;}
.y101{bottom:187.197333pt;}
.y14b{bottom:189.356000pt;}
.y11b{bottom:193.572000pt;}
.ye0{bottom:195.990667pt;}
.y7e{bottom:202.837333pt;}
.y56{bottom:205.280000pt;}
.y100{bottom:206.325333pt;}
.yaa{bottom:208.444000pt;}
.y14a{bottom:208.484000pt;}
.y11a{bottom:212.701333pt;}
.y27{bottom:213.050667pt;}
.ydf{bottom:215.118667pt;}
.y7d{bottom:221.965333pt;}
.ya9{bottom:224.384000pt;}
.y55{bottom:224.408000pt;}
.yff{bottom:225.453333pt;}
.y149{bottom:227.612000pt;}
.y119{bottom:228.641333pt;}
.yde{bottom:234.248000pt;}
.y7c{bottom:241.093333pt;}
.y54{bottom:243.536000pt;}
.yfe{bottom:244.581333pt;}
.ya8{bottom:245.638667pt;}
.y148{bottom:246.740000pt;}
.y118{bottom:247.769333pt;}
.ydd{bottom:253.376000pt;}
.y26{bottom:256.973333pt;}
.y7b{bottom:260.221333pt;}
.ya7{bottom:261.578667pt;}
.y53{bottom:262.665333pt;}
.yfd{bottom:263.709333pt;}
.y147{bottom:265.868000pt;}
.y117{bottom:266.897333pt;}
.ydc{bottom:272.504000pt;}
.y25{bottom:272.914667pt;}
.y7a{bottom:279.349333pt;}
.y52{bottom:281.793333pt;}
.yfc{bottom:282.837333pt;}
.y146{bottom:284.997333pt;}
.y116{bottom:286.025333pt;}
.y24{bottom:288.854667pt;}
.ya6{bottom:290.669333pt;}
.ydb{bottom:291.632000pt;}
.y79{bottom:298.478667pt;}
.y51{bottom:300.921333pt;}
.yfb{bottom:301.965333pt;}
.y145{bottom:304.125333pt;}
.y23{bottom:304.794667pt;}
.y115{bottom:305.153333pt;}
.yda{bottom:310.760000pt;}
.y78{bottom:317.606667pt;}
.y50{bottom:320.049333pt;}
.y22{bottom:320.734667pt;}
.yfa{bottom:321.094667pt;}
.y144{bottom:323.253333pt;}
.y114{bottom:324.282667pt;}
.yd9{bottom:329.888000pt;}
.ya5{bottom:334.593333pt;}
.y21{bottom:336.674667pt;}
.y77{bottom:337.265333pt;}
.y4f{bottom:339.177333pt;}
.yf9{bottom:340.222667pt;}
.y143{bottom:342.912000pt;}
.y113{bottom:343.410667pt;}
.yd8{bottom:349.016000pt;}
.ya4{bottom:350.533333pt;}
.y20{bottom:352.614667pt;}
.y4e{bottom:358.305333pt;}
.yf8{bottom:359.350667pt;}
.y112{bottom:362.538667pt;}
.yd7{bottom:368.145333pt;}
.y1f{bottom:368.556000pt;}
.y76{bottom:369.892000pt;}
.y142{bottom:376.861333pt;}
.ya3{bottom:377.100000pt;}
.y4d{bottom:377.433333pt;}
.yf7{bottom:378.478667pt;}
.y111{bottom:381.666667pt;}
.y1e{bottom:384.496000pt;}
.y75{bottom:385.833333pt;}
.yd6{bottom:387.273333pt;}
.ya2{bottom:393.040000pt;}
.y4c{bottom:396.562667pt;}
.yf6{bottom:397.606667pt;}
.y1d{bottom:400.436000pt;}
.y110{bottom:400.794667pt;}
.y74{bottom:401.773333pt;}
.yd5{bottom:406.401333pt;}
.ya1{bottom:408.980000pt;}
.y4b{bottom:415.690667pt;}
.y1c{bottom:416.376000pt;}
.yf5{bottom:416.734667pt;}
.y10f{bottom:419.922667pt;}
.yd4{bottom:425.529333pt;}
.y141{bottom:428.401333pt;}
.y1b{bottom:432.316000pt;}
.y4a{bottom:435.349333pt;}
.yf4{bottom:435.862667pt;}
.y10e{bottom:439.050667pt;}
.y73{bottom:439.124000pt;}
.ya0{bottom:443.504000pt;}
.yd3{bottom:444.657333pt;}
.y140{bottom:447.529333pt;}
.y1a{bottom:448.256000pt;}
.yf3{bottom:454.992000pt;}
.yc5{bottom:458.142667pt;}
.y10d{bottom:458.180000pt;}
.yd2{bottom:463.785333pt;}
.y19{bottom:464.197333pt;}
.y49{bottom:466.538667pt;}
.y13f{bottom:466.657333pt;}
.y72{bottom:469.965333pt;}
.y9f{bottom:470.070667pt;}
.yf2{bottom:474.120000pt;}
.y10c{bottom:477.308000pt;}
.y18{bottom:480.137333pt;}
.y48{bottom:482.480000pt;}
.yd1{bottom:482.913333pt;}
.y13e{bottom:485.786667pt;}
.y71{bottom:489.093333pt;}
.yf1{bottom:493.248000pt;}
.y17{bottom:496.077333pt;}
.y10b{bottom:496.436000pt;}
.yd0{bottom:502.042667pt;}
.y9e{bottom:504.594667pt;}
.y13d{bottom:504.914667pt;}
.y70{bottom:508.221333pt;}
.y47{bottom:511.570667pt;}
.y16{bottom:512.017333pt;}
.yf0{bottom:512.376000pt;}
.y10a{bottom:515.564000pt;}
.y9d{bottom:520.534667pt;}
.ycf{bottom:521.170667pt;}
.y13c{bottom:524.042667pt;}
.y6f{bottom:527.349333pt;}
.y15{bottom:527.957333pt;}
.yef{bottom:531.504000pt;}
.y109{bottom:534.692000pt;}
.y9c{bottom:536.474667pt;}
.yce{bottom:540.298667pt;}
.y13b{bottom:543.170667pt;}
.y14{bottom:543.897333pt;}
.y6e{bottom:546.478667pt;}
.yee{bottom:550.632000pt;}
.y108{bottom:553.820000pt;}
.y46{bottom:555.493333pt;}
.ycd{bottom:559.426667pt;}
.y9b{bottom:560.992000pt;}
.y13a{bottom:562.298667pt;}
.y6d{bottom:566.137333pt;}
.yed{bottom:569.760000pt;}
.y45{bottom:571.434667pt;}
.y107{bottom:572.948000pt;}
.y13{bottom:572.989333pt;}
.ycc{bottom:578.554667pt;}
.y139{bottom:581.426667pt;}
.y44{bottom:587.374667pt;}
.yec{bottom:588.889333pt;}
.ycb{bottom:597.682667pt;}
.y6c{bottom:599.502667pt;}
.y138{bottom:600.554667pt;}
.y9a{bottom:600.754667pt;}
.y43{bottom:603.314667pt;}
.yeb{bottom:608.017333pt;}
.yc4{bottom:611.233333pt;}
.y6b{bottom:615.442667pt;}
.yca{bottom:616.810667pt;}
.y12{bottom:616.912000pt;}
.y137{bottom:619.684000pt;}
.yea{bottom:627.145333pt;}
.y99{bottom:630.785333pt;}
.y11{bottom:631.524000pt;}
.yc9{bottom:635.940000pt;}
.y42{bottom:637.837333pt;}
.y136{bottom:638.812000pt;}
.yc3{bottom:642.076000pt;}
.y10{bottom:646.136000pt;}
.ye9{bottom:646.273333pt;}
.y98{bottom:649.913333pt;}
.y6a{bottom:652.793333pt;}
.y41{bottom:653.778667pt;}
.yc8{bottom:655.598667pt;}
.y135{bottom:657.940000pt;}
.yf{bottom:660.748000pt;}
.yc2{bottom:661.204000pt;}
.ye8{bottom:665.401333pt;}
.y97{bottom:669.041333pt;}
.y40{bottom:669.718667pt;}
.ye{bottom:675.360000pt;}
.y134{bottom:677.068000pt;}
.yc1{bottom:680.332000pt;}
.y69{bottom:683.634667pt;}
.ye7{bottom:685.061333pt;}
.y3f{bottom:685.658667pt;}
.y96{bottom:688.169333pt;}
.yc7{bottom:688.780000pt;}
.yd{bottom:689.972000pt;}
.y133{bottom:696.196000pt;}
.yc0{bottom:699.460000pt;}
.y3e{bottom:701.598667pt;}
.y68{bottom:702.762667pt;}
.yc{bottom:704.584000pt;}
.yc6{bottom:704.720000pt;}
.y95{bottom:707.297333pt;}
.y132{bottom:715.324000pt;}
.y3d{bottom:717.538667pt;}
.ye6{bottom:718.110667pt;}
.ybf{bottom:718.589333pt;}
.yb{bottom:719.196000pt;}
.y67{bottom:721.890667pt;}
.y94{bottom:726.425333pt;}
.y3c{bottom:733.478667pt;}
.ya{bottom:733.806667pt;}
.y131{bottom:734.452000pt;}
.ybe{bottom:737.717333pt;}
.y66{bottom:741.018667pt;}
.y93{bottom:745.553333pt;}
.y9{bottom:748.418667pt;}
.y3b{bottom:749.420000pt;}
.y130{bottom:753.581333pt;}
.ybd{bottom:756.845333pt;}
.y65{bottom:760.148000pt;}
.y92{bottom:764.682667pt;}
.y8{bottom:769.242667pt;}
.y12f{bottom:772.709333pt;}
.ybc{bottom:775.973333pt;}
.y64{bottom:779.276000pt;}
.y91{bottom:783.810667pt;}
.y3a{bottom:783.942667pt;}
.y12e{bottom:791.837333pt;}
.ybb{bottom:795.101333pt;}
.y63{bottom:798.934667pt;}
.y39{bottom:799.882667pt;}
.y90{bottom:802.938667pt;}
.y12d{bottom:810.965333pt;}
.yba{bottom:814.229333pt;}
.y7{bottom:817.058667pt;}
.y8f{bottom:822.066667pt;}
.y38{bottom:826.450667pt;}
.y62{bottom:828.980000pt;}
.y12c{bottom:830.093333pt;}
.yb9{bottom:833.357333pt;}
.y8e{bottom:841.194667pt;}
.y37{bottom:842.390667pt;}
.y61{bottom:844.920000pt;}
.y6{bottom:848.638667pt;}
.y12b{bottom:849.221333pt;}
.yb8{bottom:852.486667pt;}
.y36{bottom:858.330667pt;}
.y8d{bottom:860.322667pt;}
.y60{bottom:860.860000pt;}
.y12a{bottom:868.350667pt;}
.yb7{bottom:871.614667pt;}
.y8c{bottom:879.450667pt;}
.y5{bottom:884.298667pt;}
.y5f{bottom:885.377333pt;}
.y129{bottom:887.478667pt;}
.yb6{bottom:890.742667pt;}
.y35{bottom:892.854667pt;}
.y8b{bottom:898.580000pt;}
.y4{bottom:900.830667pt;}
.y128{bottom:906.606667pt;}
.yb5{bottom:909.870667pt;}
.y8a{bottom:917.708000pt;}
.y34{bottom:919.421333pt;}
.y5e{bottom:922.064000pt;}
.y127{bottom:925.734667pt;}
.yb4{bottom:928.998667pt;}
.y33{bottom:935.361333pt;}
.y89{bottom:936.836000pt;}
.y5d{bottom:938.004000pt;}
.y126{bottom:944.862667pt;}
.yb3{bottom:948.126667pt;}
.y3{bottom:948.637333pt;}
.y32{bottom:951.301333pt;}
.y5c{bottom:953.944000pt;}
.y88{bottom:955.964000pt;}
.y125{bottom:963.990667pt;}
.yb2{bottom:967.254667pt;}
.y5b{bottom:969.885333pt;}
.y87{bottom:975.092000pt;}
.y2{bottom:977.861333pt;}
.y124{bottom:983.650667pt;}
.y31{bottom:985.825333pt;}
.yb1{bottom:986.914667pt;}
.y86{bottom:994.220000pt;}
.y30{bottom:1001.765333pt;}
.y85{bottom:1013.348000pt;}
.y152{bottom:1013.880000pt;}
.y123{bottom:1017.598667pt;}
.y2f{bottom:1017.705333pt;}
.y84{bottom:1033.008000pt;}
.y122{bottom:1033.540000pt;}
.y2e{bottom:1033.645333pt;}
.y1{bottom:1084.920000pt;}
.h5{height:29.925069pt;}
.hf{height:29.967576pt;}
.h8{height:33.522381pt;}
.h6{height:35.913421pt;}
.ha{height:36.981171pt;}
.hb{height:39.903534pt;}
.hc{height:44.696508pt;}
.h7{height:45.589163pt;}
.h2{height:46.067062pt;}
.h4{height:53.061069pt;}
.h9{height:53.712173pt;}
.h3{height:64.270827pt;}
.hd{height:793.701333pt;}
.he{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w2{width:1122.520000pt;}
.w3{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x19{left:35.740000pt;}
.xb{left:75.590667pt;}
.x1d{left:90.960000pt;}
.xc{left:95.517333pt;}
.x2{left:97.304000pt;}
.xe{left:102.894667pt;}
.xa{left:108.800000pt;}
.xd{left:110.616000pt;}
.x9{left:127.225333pt;}
.x12{left:136.218667pt;}
.xf{left:173.036000pt;}
.x14{left:181.006667pt;}
.x13{left:200.302667pt;}
.x1c{left:202.637333pt;}
.x1e{left:207.673333pt;}
.x10{left:238.317333pt;}
.x5{left:239.294667pt;}
.x15{left:240.530667pt;}
.x6{left:248.069333pt;}
.x11{left:251.154667pt;}
.x3{left:255.366667pt;}
.x20{left:284.078667pt;}
.x1{left:335.558667pt;}
.x4{left:346.441333pt;}
.x7{left:360.440000pt;}
.x17{left:367.046667pt;}
.x8{left:369.798667pt;}
.x1a{left:448.488000pt;}
.x1b{left:564.565333pt;}
.x1f{left:584.713333pt;}
.x18{left:896.114667pt;}
.x16{left:1084.920000pt;}
}




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