
    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_7ccb7cb4eb9092eb26ef2eae.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_48663c9be135993fb60743b5.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_daa334c9f26c24cd05a56809.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.694000;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_b236348f3ec62ab98b350edf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.696000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_28d7c3e22c52070dc02ea309.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5a698c6cd7b0611f62c083a0.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_09ec6c770305d050a140d85c.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ee16a1c1973767d304527140.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_c16eaa73bd71915bf9b47cb0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d32cd39148721b3c5d66baef.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c5c484bca04e600f0c1f439f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.704000;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_6e130dbd6151b11c06652638.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.752000;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_6e4d4c2c7aa621ba5e6deb83.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.703450;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_2adffb02470d6711267a76ea.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.580000;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_239e1b920e515f41a8ce3e86.woff2')format("woff");}.fff{font-family:fff;line-height:0.752000;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:-22.854000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.v3{vertical-align:22.854000px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.001872px;}
.ls1{letter-spacing:2.984525px;}
.ls0{letter-spacing:2.990525px;}
.ls9{letter-spacing:18.429487px;}
.ls7{letter-spacing:21.420532px;}
.ls8{letter-spacing:23.886538px;}
.ls6{letter-spacing:29.889030px;}
.ls3{letter-spacing:30.630532px;}
.ls2{letter-spacing:30.636532px;}
.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;}
}
.ws2{word-spacing:-16.605662px;}
.ws3d{word-spacing:-15.359443px;}
.ws83{word-spacing:-3.156152px;}
.ws13{word-spacing:-3.093408px;}
.ws3c{word-spacing:-2.976825px;}
.wsaf{word-spacing:-2.917049px;}
.ws2c{word-spacing:-2.857274px;}
.wsb7{word-spacing:-2.797498px;}
.wsb{word-spacing:-2.663021px;}
.ws68{word-spacing:-2.618171px;}
.ws2b{word-spacing:-2.498620px;}
.ws80{word-spacing:-2.438844px;}
.ws70{word-spacing:-2.199742px;}
.ws96{word-spacing:-1.960640px;}
.wsba{word-spacing:-1.900864px;}
.ws77{word-spacing:-1.841088px;}
.ws7d{word-spacing:-1.601986px;}
.ws59{word-spacing:-1.362884px;}
.ws98{word-spacing:-1.303108px;}
.ws6e{word-spacing:-1.243332px;}
.ws63{word-spacing:-1.183557px;}
.ws64{word-spacing:-1.123781px;}
.ws32{word-spacing:-0.884679px;}
.ws56{word-spacing:-0.585801px;}
.ws38{word-spacing:-0.466250px;}
.ws3f{word-spacing:-0.406474px;}
.wsc3{word-spacing:-0.349690px;}
.wsa4{word-spacing:-0.227147px;}
.ws21{word-spacing:-0.167372px;}
.ws17{word-spacing:-0.059776px;}
.ws9a{word-spacing:-0.053798px;}
.ws8b{word-spacing:-0.047820px;}
.ws22{word-spacing:0.000000px;}
.wsa9{word-spacing:0.071731px;}
.wsa3{word-spacing:0.131506px;}
.ws1c{word-spacing:0.191282px;}
.wsbb{word-spacing:0.251058px;}
.ws44{word-spacing:0.370609px;}
.ws85{word-spacing:0.430384px;}
.ws20{word-spacing:0.490160px;}
.ws9b{word-spacing:0.549936px;}
.ws8f{word-spacing:0.726278px;}
.ws79{word-spacing:0.729262px;}
.ws72{word-spacing:0.789038px;}
.ws29{word-spacing:0.908589px;}
.wsa7{word-spacing:0.995270px;}
.wsa8{word-spacing:1.267243px;}
.wsd4{word-spacing:1.371859px;}
.ws71{word-spacing:1.386794px;}
.ws25{word-spacing:1.446570px;}
.ws26{word-spacing:1.506345px;}
.ws35{word-spacing:1.566121px;}
.ws7a{word-spacing:1.625896px;}
.ws6f{word-spacing:1.685672px;}
.wsa2{word-spacing:1.805223px;}
.ws47{word-spacing:1.864999px;}
.ws41{word-spacing:1.924774px;}
.ws30{word-spacing:2.044326px;}
.ws34{word-spacing:2.223652px;}
.ws4b{word-spacing:2.283428px;}
.ws53{word-spacing:2.343204px;}
.ws39{word-spacing:2.402979px;}
.ws2e{word-spacing:2.462755px;}
.wsad{word-spacing:2.522530px;}
.wsd1{word-spacing:2.555424px;}
.ws66{word-spacing:2.582306px;}
.wsb6{word-spacing:2.821408px;}
.wsc4{word-spacing:2.932013px;}
.ws51{word-spacing:2.940960px;}
.ws4{word-spacing:3.039610px;}
.wscd{word-spacing:3.060138px;}
.ws3{word-spacing:3.093408px;}
.ws31{word-spacing:3.120286px;}
.ws50{word-spacing:3.239838px;}
.ws1{word-spacing:3.299613px;}
.ws1f{word-spacing:3.359389px;}
.wsbd{word-spacing:3.362400px;}
.wsab{word-spacing:3.419164px;}
.ws2d{word-spacing:3.538716px;}
.wsae{word-spacing:3.718042px;}
.wscf{word-spacing:3.738989px;}
.ws76{word-spacing:3.837594px;}
.ws4c{word-spacing:3.897369px;}
.wsc6{word-spacing:3.954182px;}
.ws9d{word-spacing:4.016920px;}
.ws78{word-spacing:4.136472px;}
.wscc{word-spacing:4.169376px;}
.ws93{word-spacing:4.196247px;}
.ws45{word-spacing:4.256023px;}
.ws61{word-spacing:4.375574px;}
.ws27{word-spacing:4.554901px;}
.wsb3{word-spacing:4.734228px;}
.wsac{word-spacing:4.853779px;}
.ws99{word-spacing:4.868755px;}
.wsd{word-spacing:4.922554px;}
.ws52{word-spacing:4.973330px;}
.ws40{word-spacing:5.092881px;}
.wsd0{word-spacing:5.137747px;}
.ws48{word-spacing:5.152657px;}
.ws11{word-spacing:5.191546px;}
.ws4e{word-spacing:5.212432px;}
.ws92{word-spacing:5.272208px;}
.ws36{word-spacing:5.331984px;}
.ws7b{word-spacing:5.451535px;}
.ws24{word-spacing:5.511310px;}
.ws55{word-spacing:5.630862px;}
.wsb0{word-spacing:5.750413px;}
.ws2f{word-spacing:5.810188px;}
.ws37{word-spacing:5.869964px;}
.ws1d{word-spacing:6.168842px;}
.ws5e{word-spacing:6.228618px;}
.wsce{word-spacing:6.267514px;}
.wsbf{word-spacing:6.321312px;}
.wsb9{word-spacing:6.348169px;}
.ws86{word-spacing:6.407944px;}
.wsb1{word-spacing:6.467720px;}
.ws49{word-spacing:6.527496px;}
.wsa{word-spacing:6.536506px;}
.wsa1{word-spacing:6.587271px;}
.ws9{word-spacing:6.644102px;}
.ws3e{word-spacing:6.647047px;}
.ws1e{word-spacing:6.706822px;}
.wse{word-spacing:6.751699px;}
.wsc1{word-spacing:6.859296px;}
.ws46{word-spacing:6.886149px;}
.ws15{word-spacing:6.945925px;}
.ws95{word-spacing:7.005700px;}
.ws8a{word-spacing:7.065476px;}
.ws33{word-spacing:7.125252px;}
.ws43{word-spacing:7.185027px;}
.ws75{word-spacing:7.304578px;}
.wsf{word-spacing:7.343482px;}
.ws18{word-spacing:7.356438px;}
.ws1a{word-spacing:7.364354px;}
.wsc{word-spacing:7.451078px;}
.ws97{word-spacing:7.543681px;}
.ws58{word-spacing:7.603456px;}
.ws9f{word-spacing:7.663232px;}
.ws8c{word-spacing:7.782783px;}
.ws9e{word-spacing:7.842559px;}
.ws9c{word-spacing:7.962110px;}
.ws23{word-spacing:8.021886px;}
.wsc0{word-spacing:8.042861px;}
.ws87{word-spacing:8.081661px;}
.wsd2{word-spacing:8.096659px;}
.ws1b{word-spacing:8.201212px;}
.wsc5{word-spacing:8.258054px;}
.ws60{word-spacing:8.260988px;}
.wsb4{word-spacing:8.500090px;}
.ws7c{word-spacing:8.559866px;}
.ws69{word-spacing:8.798968px;}
.ws88{word-spacing:8.858744px;}
.ws4f{word-spacing:8.918520px;}
.ws82{word-spacing:8.978295px;}
.ws42{word-spacing:9.097846px;}
.ws4a{word-spacing:9.157622px;}
.wsc2{word-spacing:9.172627px;}
.ws10{word-spacing:9.334022px;}
.ws84{word-spacing:9.336949px;}
.ws8{word-spacing:9.387821px;}
.ws62{word-spacing:9.516276px;}
.ws28{word-spacing:9.695602px;}
.ws6{word-spacing:9.764410px;}
.ws89{word-spacing:9.874929px;}
.wsbe{word-spacing:9.979603px;}
.ws8d{word-spacing:9.994480px;}
.ws7{word-spacing:10.087200px;}
.ws74{word-spacing:10.114032px;}
.wsb5{word-spacing:10.233583px;}
.ws5f{word-spacing:10.353134px;}
.ws57{word-spacing:10.544486px;}
.ws73{word-spacing:10.592236px;}
.ws5b{word-spacing:10.652012px;}
.ws5c{word-spacing:10.950890px;}
.ws2a{word-spacing:11.010666px;}
.ws54{word-spacing:11.070441px;}
.ws7e{word-spacing:11.309544px;}
.wsb2{word-spacing:11.429095px;}
.wscb{word-spacing:11.432160px;}
.ws16{word-spacing:11.488870px;}
.ws5a{word-spacing:11.548646px;}
.ws91{word-spacing:12.206178px;}
.ws3b{word-spacing:12.385504px;}
.ws67{word-spacing:12.445280px;}
.ws94{word-spacing:13.282138px;}
.ws12{word-spacing:14.095181px;}
.ws81{word-spacing:14.110424px;}
.ws7f{word-spacing:14.110514px;}
.ws65{word-spacing:15.404324px;}
.wsd3{word-spacing:18.354202px;}
.wsbc{word-spacing:18.370662px;}
.wsca{word-spacing:18.373175px;}
.wsc9{word-spacing:18.373517px;}
.wsd5{word-spacing:18.393850px;}
.ws6a{word-spacing:18.571274px;}
.wsa0{word-spacing:19.863374px;}
.ws90{word-spacing:21.389750px;}
.ws5d{word-spacing:22.736894px;}
.ws4d{word-spacing:22.834279px;}
.ws19{word-spacing:25.045976px;}
.ws3a{word-spacing:26.827469px;}
.ws6b{word-spacing:28.190362px;}
.ws8e{word-spacing:29.538340px;}
.ws5{word-spacing:29.829450px;}
.ws0{word-spacing:32.192873px;}
.wsb8{word-spacing:33.854300px;}
.wsc7{word-spacing:51.727162px;}
.ws6c{word-spacing:56.434522px;}
.wsaa{word-spacing:68.682164px;}
.wsa5{word-spacing:70.980989px;}
.ws14{word-spacing:80.625869px;}
.ws6d{word-spacing:84.678682px;}
.wsc8{word-spacing:102.781843px;}
.wsa6{word-spacing:132.810159px;}
._4{margin-left:-29.786962px;}
._3{margin-left:-28.214083px;}
._c{margin-left:-25.978661px;}
._6{margin-left:-23.252708px;}
._5{margin-left:-6.582108px;}
._9{margin-left:-4.626662px;}
._1{margin-left:-2.754470px;}
._2{margin-left:-1.673717px;}
._7{width:1.506355px;}
._8{width:3.126274px;}
._0{width:5.422864px;}
._19{width:10.582790px;}
._14{width:12.928298px;}
._1a{width:16.102216px;}
._d{width:17.124556px;}
._12{width:18.436216px;}
._10{width:20.938229px;}
._e{width:23.479918px;}
._18{width:24.900322px;}
._20{width:27.198269px;}
._a{width:28.623980px;}
._13{width:29.887800px;}
._25{width:31.477238px;}
._24{width:34.060354px;}
._1e{width:35.859811px;}
._1d{width:39.296942px;}
._1f{width:42.775694px;}
._1c{width:45.035227px;}
._23{width:49.357243px;}
._15{width:56.488320px;}
._11{width:68.741940px;}
._f{width:80.697600px;}
._17{width:84.732480px;}
._16{width:112.976640px;}
._1b{width:142.996147px;}
._21{width:169.542869px;}
._b{width:170.648525px;}
._22{width:321.670214px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:29.208240px;}
.fs3{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs6{font-size:47.244600px;}
.fs4{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs5{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.ye9{bottom:7.871942px;}
.y11e{bottom:11.354825px;}
.ye2{bottom:19.683045px;}
.y11c{bottom:28.879769px;}
.ye3{bottom:62.970910px;}
.y11d{bottom:72.266054px;}
.ye4{bottom:106.258775px;}
.ye5{bottom:149.605931px;}
.y11f{bottom:165.392268px;}
.ye6{bottom:192.893796px;}
.y6f{bottom:193.615500px;}
.y26{bottom:193.617000px;}
.y4f{bottom:199.330500px;}
.ybb{bottom:210.054000px;}
.y9f{bottom:210.055500px;}
.y25{bottom:211.549500px;}
.y104{bottom:215.769000px;}
.yee{bottom:222.640178px;}
.y4e{bottom:223.180500px;}
.y9e{bottom:226.492500px;}
.y6e{bottom:229.482000px;}
.y24{bottom:229.743000px;}
.ye0{bottom:229.746000px;}
.y124{bottom:232.217617px;}
.yed{bottom:234.451328px;}
.ye7{bottom:236.181661px;}
.y103{bottom:239.433000px;}
.y123{bottom:240.980089px;}
.y4d{bottom:241.113000px;}
.y9d{bottom:242.931000px;}
.yec{bottom:246.262478px;}
.y6d{bottom:247.414500px;}
.y23{bottom:247.677000px;}
.ydf{bottom:247.680000px;}
.y11a{bottom:247.732500px;}
.y122{bottom:249.742561px;}
.y102{bottom:257.538000px;}
.yeb{bottom:258.073628px;}
.y121{bottom:258.505033px;}
.y9c{bottom:259.369500px;}
.y84{bottom:263.188500px;}
.y6c{bottom:265.347000px;}
.y22{bottom:265.609500px;}
.yde{bottom:265.612500px;}
.y119{bottom:265.665000px;}
.yea{bottom:269.884778px;}
.y17d{bottom:274.521000px;}
.y101{bottom:275.641500px;}
.y9b{bottom:275.808000px;}
.y4c{bottom:278.068500px;}
.ye8{bottom:279.469526px;}
.y83{bottom:281.121000px;}
.y6b{bottom:283.279500px;}
.y21{bottom:283.542000px;}
.ydd{bottom:283.545000px;}
.y118{bottom:283.599000px;}
.y17c{bottom:290.959500px;}
.y9a{bottom:292.246500px;}
.y100{bottom:293.574000px;}
.y82{bottom:299.055000px;}
.y6a{bottom:301.213500px;}
.y20{bottom:301.474500px;}
.ydc{bottom:301.477500px;}
.y117{bottom:301.531500px;}
.y17b{bottom:307.398000px;}
.y99{bottom:308.685000px;}
.yff{bottom:311.679000px;}
.y152{bottom:313.593000px;}
.y81{bottom:316.987500px;}
.y69{bottom:319.146000px;}
.y1f{bottom:319.407000px;}
.ydb{bottom:319.410000px;}
.y116{bottom:319.782000px;}
.y17a{bottom:323.836500px;}
.y98{bottom:325.123500px;}
.y4b{bottom:326.979000px;}
.y151{bottom:331.525500px;}
.y132{bottom:334.081500px;}
.y80{bottom:335.086500px;}
.y68{bottom:337.078500px;}
.y1e{bottom:337.339500px;}
.yda{bottom:337.342500px;}
.y115{bottom:337.714500px;}
.y179{bottom:340.273500px;}
.y97{bottom:341.562000px;}
.yfe{bottom:342.252000px;}
.y4a{bottom:344.911500px;}
.y150{bottom:350.142000px;}
.y7f{bottom:353.019000px;}
.y67{bottom:355.011000px;}
.y1d{bottom:355.273500px;}
.yd9{bottom:355.540500px;}
.y114{bottom:355.648500px;}
.y178{bottom:356.712000px;}
.y96{bottom:358.000500px;}
.yfd{bottom:360.186000px;}
.y49{bottom:362.845500px;}
.y14f{bottom:368.074500px;}
.y7e{bottom:370.951500px;}
.y66{bottom:372.943500px;}
.y177{bottom:373.150500px;}
.yd8{bottom:373.473000px;}
.y113{bottom:373.581000px;}
.yba{bottom:374.437500px;}
.y95{bottom:374.439000px;}
.yfc{bottom:378.118500px;}
.y48{bottom:380.778000px;}
.y131{bottom:381.894000px;}
.y14e{bottom:386.007000px;}
.y7d{bottom:388.884000px;}
.y176{bottom:389.589000px;}
.y65{bottom:390.876000px;}
.yd7{bottom:391.405500px;}
.y112{bottom:391.513500px;}
.y1c{bottom:392.446500px;}
.yfb{bottom:396.051000px;}
.y130{bottom:399.826500px;}
.y14d{bottom:403.939500px;}
.y175{bottom:406.027500px;}
.y7c{bottom:406.983000px;}
.y94{bottom:407.314500px;}
.yd6{bottom:409.339500px;}
.y111{bottom:409.446000px;}
.y47{bottom:411.319500px;}
.y12f{bottom:417.759000px;}
.y64{bottom:420.153000px;}
.y14c{bottom:421.872000px;}
.y174{bottom:422.466000px;}
.yb9{bottom:423.664500px;}
.y93{bottom:423.753000px;}
.y7b{bottom:424.915500px;}
.yfa{bottom:426.796500px;}
.y110{bottom:427.696500px;}
.y46{bottom:429.469500px;}
.y12e{bottom:435.691500px;}
.y173{bottom:438.904500px;}
.y14b{bottom:439.806000px;}
.y92{bottom:440.191500px;}
.yd5{bottom:440.551500px;}
.yb8{bottom:441.877500px;}
.y7a{bottom:442.848000px;}
.y1b{bottom:444.240000px;}
.y10f{bottom:445.630500px;}
.y45{bottom:447.403500px;}
.y12d{bottom:453.624000px;}
.y172{bottom:455.343000px;}
.y14a{bottom:458.421000px;}
.yb7{bottom:459.811500px;}
.y1a{bottom:460.678500px;}
.y79{bottom:460.780500px;}
.y10e{bottom:463.563000px;}
.y63{bottom:464.374500px;}
.y44{bottom:465.553500px;}
.y171{bottom:471.781500px;}
.y12c{bottom:472.153500px;}
.yf9{bottom:472.485000px;}
.y149{bottom:476.353500px;}
.y91{bottom:477.408000px;}
.yb6{bottom:477.744000px;}
.y78{bottom:478.714500px;}
.y10d{bottom:481.495500px;}
.y62{bottom:482.307000px;}
.y43{bottom:483.486000px;}
.yd4{bottom:486.706500px;}
.y170{bottom:488.220000px;}
.y12b{bottom:490.086000px;}
.yf8{bottom:490.417500px;}
.y19{bottom:493.816500px;}
.y148{bottom:494.286000px;}
.y90{bottom:495.340500px;}
.yb5{bottom:495.676500px;}
.y77{bottom:496.647000px;}
.y10c{bottom:499.428000px;}
.yd3{bottom:504.639000px;}
.y16f{bottom:504.657000px;}
.y12a{bottom:508.018500px;}
.yf7{bottom:508.351500px;}
.y18{bottom:510.255000px;}
.y147{bottom:512.218500px;}
.y8f{bottom:513.274500px;}
.yb4{bottom:513.609000px;}
.y42{bottom:514.246500px;}
.y76{bottom:514.579500px;}
.y10b{bottom:517.360500px;}
.y61{bottom:517.561500px;}
.y16e{bottom:521.095500px;}
.yd2{bottom:522.571500px;}
.y129{bottom:525.952500px;}
.yf6{bottom:526.455000px;}
.y17{bottom:526.693500px;}
.y146{bottom:530.835000px;}
.y8e{bottom:531.207000px;}
.yb3{bottom:531.541500px;}
.y41{bottom:532.179000px;}
.y75{bottom:532.512000px;}
.y10a{bottom:535.293000px;}
.y16d{bottom:537.534000px;}
.y16{bottom:543.132000px;}
.yf5{bottom:544.387500px;}
.y128{bottom:544.480500px;}
.y145{bottom:548.767500px;}
.y8d{bottom:549.139500px;}
.yb2{bottom:549.475500px;}
.y40{bottom:550.111500px;}
.y16c{bottom:553.972500px;}
.y15{bottom:559.569000px;}
.yd1{bottom:559.761000px;}
.yf4{bottom:562.320000px;}
.y127{bottom:562.413000px;}
.y74{bottom:563.230500px;}
.y60{bottom:564.771000px;}
.y109{bottom:566.136000px;}
.y144{bottom:566.700000px;}
.y8c{bottom:567.072000px;}
.yb1{bottom:567.688500px;}
.y3f{bottom:568.044000px;}
.y16b{bottom:570.411000px;}
.y14{bottom:576.007500px;}
.yf3{bottom:580.254000px;}
.y5f{bottom:582.705000px;}
.y108{bottom:584.388000px;}
.y143{bottom:584.632500px;}
.y8b{bottom:585.004500px;}
.yb0{bottom:585.621000px;}
.y3e{bottom:585.978000px;}
.y16a{bottom:586.849500px;}
.y13{bottom:592.446000px;}
.yf2{bottom:598.186500px;}
.y5e{bottom:600.637500px;}
.y107{bottom:602.638500px;}
.y169{bottom:603.288000px;}
.yaf{bottom:603.553500px;}
.y3d{bottom:603.910500px;}
.y12{bottom:608.884500px;}
.y73{bottom:608.892000px;}
.yd0{bottom:608.905500px;}
.y126{bottom:615.927000px;}
.yf1{bottom:616.119000px;}
.y5d{bottom:618.570000px;}
.y168{bottom:619.726500px;}
.y106{bottom:620.571000px;}
.yae{bottom:621.487500px;}
.y3c{bottom:622.060500px;}
.y8a{bottom:622.549500px;}
.y142{bottom:623.913000px;}
.y11{bottom:625.323000px;}
.y72{bottom:626.824500px;}
.ycf{bottom:626.839500px;}
.y125{bottom:632.365500px;}
.y167{bottom:636.165000px;}
.y5c{bottom:636.502500px;}
.yad{bottom:639.420000px;}
.y3b{bottom:639.993000px;}
.y89{bottom:640.482000px;}
.y10{bottom:641.761500px;}
.y71{bottom:644.758500px;}
.yce{bottom:645.036000px;}
.y166{bottom:652.603500px;}
.y5b{bottom:654.435000px;}
.yac{bottom:657.352500px;}
.y3a{bottom:657.927000px;}
.yf{bottom:658.200000px;}
.y88{bottom:659.581500px;}
.ycd{bottom:662.968500px;}
.y11b{bottom:663.748500px;}
.yf0{bottom:668.784000px;}
.y165{bottom:669.040500px;}
.y5a{bottom:672.367500px;}
.y105{bottom:672.783000px;}
.ye{bottom:674.638500px;}
.y141{bottom:675.147000px;}
.yab{bottom:675.285000px;}
.y39{bottom:675.859500px;}
.y87{bottom:677.514000px;}
.ycc{bottom:680.902500px;}
.yef{bottom:685.222500px;}
.y164{bottom:685.479000px;}
.y59{bottom:690.301500px;}
.yd{bottom:691.077000px;}
.y140{bottom:693.079500px;}
.yaa{bottom:693.217500px;}
.y38{bottom:694.009500px;}
.y86{bottom:695.446500px;}
.y70{bottom:696.664500px;}
.ycb{bottom:698.835000px;}
.y163{bottom:701.917500px;}
.y120{bottom:708.400658px;}
.y13f{bottom:711.013500px;}
.ya9{bottom:711.150000px;}
.y37{bottom:711.942000px;}
.ye1{bottom:716.604000px;}
.yca{bottom:717.031500px;}
.y162{bottom:718.356000px;}
.y58{bottom:719.578500px;}
.y13e{bottom:728.946000px;}
.y36{bottom:729.876000px;}
.y161{bottom:734.794500px;}
.yc9{bottom:734.965500px;}
.y57{bottom:737.358000px;}
.ya8{bottom:742.444500px;}
.y13d{bottom:746.878500px;}
.y35{bottom:747.808500px;}
.y85{bottom:749.355000px;}
.y160{bottom:751.233000px;}
.yc8{bottom:752.898000px;}
.yc{bottom:754.377000px;}
.y56{bottom:755.137500px;}
.y13c{bottom:764.811000px;}
.y34{bottom:765.958500px;}
.y15f{bottom:767.671500px;}
.yc7{bottom:770.830500px;}
.y55{bottom:772.918500px;}
.yb{bottom:776.529000px;}
.y13b{bottom:782.743500px;}
.y33{bottom:783.891000px;}
.y15e{bottom:784.110000px;}
.ya{bottom:787.254000px;}
.ya7{bottom:788.682000px;}
.yc6{bottom:788.763000px;}
.y54{bottom:790.851000px;}
.y15d{bottom:800.548500px;}
.y13a{bottom:801.360000px;}
.y32{bottom:801.825000px;}
.y9{bottom:803.692500px;}
.ya6{bottom:806.614500px;}
.yc5{bottom:806.695500px;}
.y15c{bottom:816.987000px;}
.y139{bottom:819.292500px;}
.y31{bottom:819.757500px;}
.y53{bottom:819.975000px;}
.y8{bottom:820.131000px;}
.ya5{bottom:824.547000px;}
.yc4{bottom:824.893500px;}
.y15b{bottom:833.424000px;}
.y138{bottom:837.225000px;}
.y30{bottom:837.690000px;}
.y52{bottom:837.907500px;}
.y7{bottom:842.283000px;}
.ya4{bottom:842.479500px;}
.yc3{bottom:842.826000px;}
.y15a{bottom:849.862500px;}
.y137{bottom:855.157500px;}
.y2f{bottom:855.622500px;}
.y51{bottom:855.840000px;}
.y6{bottom:858.720000px;}
.ya3{bottom:860.694000px;}
.yc2{bottom:860.758500px;}
.y159{bottom:866.301000px;}
.y136{bottom:873.090000px;}
.y2e{bottom:873.555000px;}
.y50{bottom:873.774000px;}
.ya2{bottom:878.626500px;}
.yc1{bottom:878.692500px;}
.y158{bottom:882.739500px;}
.y5{bottom:884.328000px;}
.y135{bottom:891.024000px;}
.y2d{bottom:891.706500px;}
.ya1{bottom:896.559000px;}
.yc0{bottom:896.625000px;}
.y157{bottom:899.178000px;}
.y4{bottom:902.260500px;}
.y134{bottom:908.956500px;}
.y2c{bottom:909.639000px;}
.ya0{bottom:914.491500px;}
.ybf{bottom:914.557500px;}
.y156{bottom:915.616500px;}
.y3{bottom:920.193000px;}
.y133{bottom:926.889000px;}
.y2b{bottom:927.571500px;}
.y155{bottom:932.055000px;}
.ybe{bottom:932.490000px;}
.y2a{bottom:945.504000px;}
.y154{bottom:948.493500px;}
.y29{bottom:963.436500px;}
.y153{bottom:964.932000px;}
.ybd{bottom:966.426000px;}
.y2{bottom:972.403500px;}
.y28{bottom:981.370500px;}
.ybc{bottom:982.864500px;}
.y1{bottom:999.303000px;}
.y27{bottom:1038.157500px;}
.h10{height:21.292807px;}
.h4{height:24.209280px;}
.hd{height:34.441313px;}
.h9{height:37.336090px;}
.h5{height:40.348800px;}
.h8{height:41.842920px;}
.h7{height:44.831700px;}
.ha{height:44.837700px;}
.he{height:47.725000px;}
.h3{height:49.892047px;}
.h2{height:49.898047px;}
.h6{height:50.211840px;}
.hb{height:50.728903px;}
.h1{height:60.254040px;}
.h11{height:269.884138px;}
.hc{height:297.640980px;}
.hf{height:350.498880px;}
.h0{height:1188.000000px;}
.w3{width:285.997350px;}
.w2{width:340.154295px;}
.w1{width:425.201400px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x21{left:7.886347px;}
.x1a{left:17.553377px;}
.x19{left:24.120140px;}
.x1f{left:25.411291px;}
.x1e{left:34.340615px;}
.x1b{left:49.265370px;}
.x20{left:160.870467px;}
.xe{left:202.147500px;}
.x12{left:206.256000px;}
.x15{left:208.456500px;}
.x10{left:211.486500px;}
.x1d{left:217.090500px;}
.x3{left:219.694500px;}
.x1{left:221.155500px;}
.xf{left:224.563500px;}
.x11{left:227.551500px;}
.xd{left:244.666500px;}
.x4{left:247.278000px;}
.x18{left:248.919000px;}
.x6{left:251.877000px;}
.x9{left:283.819500px;}
.x13{left:286.335000px;}
.x2{left:291.244500px;}
.x1c{left:292.953135px;}
.x14{left:296.229000px;}
.x22{left:327.364013px;}
.xb{left:333.396000px;}
.x17{left:350.427000px;}
.xc{left:363.826500px;}
.x16{left:367.416000px;}
.x8{left:371.115000px;}
.xa{left:375.261000px;}
.x7{left:385.386000px;}
.x5{left:408.517500px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.v3{vertical-align:20.314667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.001664pt;}
.ls1{letter-spacing:2.652911pt;}
.ls0{letter-spacing:2.658245pt;}
.ls9{letter-spacing:16.381766pt;}
.ls7{letter-spacing:19.040473pt;}
.ls8{letter-spacing:21.232479pt;}
.ls6{letter-spacing:26.568027pt;}
.ls3{letter-spacing:27.227139pt;}
.ls2{letter-spacing:27.232473pt;}
.ws2{word-spacing:-14.760588pt;}
.ws3d{word-spacing:-13.652838pt;}
.ws83{word-spacing:-2.805468pt;}
.ws13{word-spacing:-2.749696pt;}
.ws3c{word-spacing:-2.646067pt;}
.wsaf{word-spacing:-2.592933pt;}
.ws2c{word-spacing:-2.539799pt;}
.wsb7{word-spacing:-2.486665pt;}
.wsb{word-spacing:-2.367130pt;}
.ws68{word-spacing:-2.327263pt;}
.ws2b{word-spacing:-2.220996pt;}
.ws80{word-spacing:-2.167862pt;}
.ws70{word-spacing:-1.955326pt;}
.ws96{word-spacing:-1.742791pt;}
.wsba{word-spacing:-1.689657pt;}
.ws77{word-spacing:-1.636523pt;}
.ws7d{word-spacing:-1.423988pt;}
.ws59{word-spacing:-1.211452pt;}
.ws98{word-spacing:-1.158318pt;}
.ws6e{word-spacing:-1.105184pt;}
.ws63{word-spacing:-1.052051pt;}
.ws64{word-spacing:-0.998917pt;}
.ws32{word-spacing:-0.786381pt;}
.ws56{word-spacing:-0.520712pt;}
.ws38{word-spacing:-0.414444pt;}
.ws3f{word-spacing:-0.361310pt;}
.wsc3{word-spacing:-0.310835pt;}
.wsa4{word-spacing:-0.201909pt;}
.ws21{word-spacing:-0.148775pt;}
.ws17{word-spacing:-0.053134pt;}
.ws9a{word-spacing:-0.047821pt;}
.ws8b{word-spacing:-0.042507pt;}
.ws22{word-spacing:0.000000pt;}
.wsa9{word-spacing:0.063761pt;}
.wsa3{word-spacing:0.116895pt;}
.ws1c{word-spacing:0.170028pt;}
.wsbb{word-spacing:0.223162pt;}
.ws44{word-spacing:0.329430pt;}
.ws85{word-spacing:0.382564pt;}
.ws20{word-spacing:0.435698pt;}
.ws9b{word-spacing:0.488832pt;}
.ws8f{word-spacing:0.645581pt;}
.ws79{word-spacing:0.648233pt;}
.ws72{word-spacing:0.701367pt;}
.ws29{word-spacing:0.807635pt;}
.wsa7{word-spacing:0.884685pt;}
.wsa8{word-spacing:1.126438pt;}
.wsd4{word-spacing:1.219430pt;}
.ws71{word-spacing:1.232706pt;}
.ws25{word-spacing:1.285840pt;}
.ws26{word-spacing:1.338973pt;}
.ws35{word-spacing:1.392107pt;}
.ws7a{word-spacing:1.445241pt;}
.ws6f{word-spacing:1.498375pt;}
.wsa2{word-spacing:1.604643pt;}
.ws47{word-spacing:1.657777pt;}
.ws41{word-spacing:1.710911pt;}
.ws30{word-spacing:1.817178pt;}
.ws34{word-spacing:1.976580pt;}
.ws4b{word-spacing:2.029714pt;}
.ws53{word-spacing:2.082848pt;}
.ws39{word-spacing:2.135981pt;}
.ws2e{word-spacing:2.189115pt;}
.wsad{word-spacing:2.242249pt;}
.wsd1{word-spacing:2.271488pt;}
.ws66{word-spacing:2.295383pt;}
.wsb6{word-spacing:2.507919pt;}
.wsc4{word-spacing:2.606234pt;}
.ws51{word-spacing:2.614186pt;}
.ws4{word-spacing:2.701875pt;}
.wscd{word-spacing:2.720123pt;}
.ws3{word-spacing:2.749696pt;}
.ws31{word-spacing:2.773588pt;}
.ws50{word-spacing:2.879856pt;}
.ws1{word-spacing:2.932989pt;}
.ws1f{word-spacing:2.986123pt;}
.wsbd{word-spacing:2.988800pt;}
.wsab{word-spacing:3.039257pt;}
.ws2d{word-spacing:3.145525pt;}
.wsae{word-spacing:3.304927pt;}
.wscf{word-spacing:3.323546pt;}
.ws76{word-spacing:3.411194pt;}
.ws4c{word-spacing:3.464328pt;}
.wsc6{word-spacing:3.514829pt;}
.ws9d{word-spacing:3.570596pt;}
.ws78{word-spacing:3.676864pt;}
.wscc{word-spacing:3.706112pt;}
.ws93{word-spacing:3.729997pt;}
.ws45{word-spacing:3.783131pt;}
.ws61{word-spacing:3.889399pt;}
.ws27{word-spacing:4.048801pt;}
.wsb3{word-spacing:4.208202pt;}
.wsac{word-spacing:4.314470pt;}
.ws99{word-spacing:4.327782pt;}
.wsd{word-spacing:4.375603pt;}
.ws52{word-spacing:4.420738pt;}
.ws40{word-spacing:4.527005pt;}
.wsd0{word-spacing:4.566886pt;}
.ws48{word-spacing:4.580139pt;}
.ws11{word-spacing:4.614707pt;}
.ws4e{word-spacing:4.633273pt;}
.ws92{word-spacing:4.686407pt;}
.ws36{word-spacing:4.739541pt;}
.ws7b{word-spacing:4.845809pt;}
.ws24{word-spacing:4.898943pt;}
.ws55{word-spacing:5.005210pt;}
.wsb0{word-spacing:5.111478pt;}
.ws2f{word-spacing:5.164612pt;}
.ws37{word-spacing:5.217746pt;}
.ws1d{word-spacing:5.483415pt;}
.ws5e{word-spacing:5.536549pt;}
.wsce{word-spacing:5.571123pt;}
.wsbf{word-spacing:5.618944pt;}
.wsb9{word-spacing:5.642817pt;}
.ws86{word-spacing:5.695951pt;}
.wsb1{word-spacing:5.749084pt;}
.ws49{word-spacing:5.802218pt;}
.wsa{word-spacing:5.810227pt;}
.wsa1{word-spacing:5.855352pt;}
.ws9{word-spacing:5.905869pt;}
.ws3e{word-spacing:5.908486pt;}
.ws1e{word-spacing:5.961620pt;}
.wse{word-spacing:6.001510pt;}
.wsc1{word-spacing:6.097152pt;}
.ws46{word-spacing:6.121021pt;}
.ws15{word-spacing:6.174155pt;}
.ws95{word-spacing:6.227289pt;}
.ws8a{word-spacing:6.280423pt;}
.ws33{word-spacing:6.333557pt;}
.ws43{word-spacing:6.386691pt;}
.ws75{word-spacing:6.492959pt;}
.wsf{word-spacing:6.527539pt;}
.ws18{word-spacing:6.539056pt;}
.ws1a{word-spacing:6.546092pt;}
.wsc{word-spacing:6.623181pt;}
.ws97{word-spacing:6.705494pt;}
.ws58{word-spacing:6.758628pt;}
.ws9f{word-spacing:6.811762pt;}
.ws8c{word-spacing:6.918029pt;}
.ws9e{word-spacing:6.971163pt;}
.ws9c{word-spacing:7.077431pt;}
.ws23{word-spacing:7.130565pt;}
.wsc0{word-spacing:7.149210pt;}
.ws87{word-spacing:7.183699pt;}
.wsd2{word-spacing:7.197030pt;}
.ws1b{word-spacing:7.289967pt;}
.wsc5{word-spacing:7.340493pt;}
.ws60{word-spacing:7.343100pt;}
.wsb4{word-spacing:7.555636pt;}
.ws7c{word-spacing:7.608770pt;}
.ws69{word-spacing:7.821305pt;}
.ws88{word-spacing:7.874439pt;}
.ws4f{word-spacing:7.927573pt;}
.ws82{word-spacing:7.980707pt;}
.ws42{word-spacing:8.086975pt;}
.ws4a{word-spacing:8.140108pt;}
.wsc2{word-spacing:8.153446pt;}
.ws10{word-spacing:8.296909pt;}
.ws84{word-spacing:8.299510pt;}
.ws8{word-spacing:8.344730pt;}
.ws62{word-spacing:8.458912pt;}
.ws28{word-spacing:8.618313pt;}
.ws6{word-spacing:8.679475pt;}
.ws89{word-spacing:8.777715pt;}
.wsbe{word-spacing:8.870758pt;}
.ws8d{word-spacing:8.883983pt;}
.ws7{word-spacing:8.966400pt;}
.ws74{word-spacing:8.990250pt;}
.wsb5{word-spacing:9.096518pt;}
.ws5f{word-spacing:9.202786pt;}
.ws57{word-spacing:9.372877pt;}
.ws73{word-spacing:9.415321pt;}
.ws5b{word-spacing:9.468455pt;}
.ws5c{word-spacing:9.734124pt;}
.ws2a{word-spacing:9.787258pt;}
.ws54{word-spacing:9.840392pt;}
.ws7e{word-spacing:10.052928pt;}
.wsb2{word-spacing:10.159195pt;}
.wscb{word-spacing:10.161920pt;}
.ws16{word-spacing:10.212329pt;}
.ws5a{word-spacing:10.265463pt;}
.ws91{word-spacing:10.849936pt;}
.ws3b{word-spacing:11.009337pt;}
.ws67{word-spacing:11.062471pt;}
.ws94{word-spacing:11.806345pt;}
.ws12{word-spacing:12.529050pt;}
.ws81{word-spacing:12.542599pt;}
.ws7f{word-spacing:12.542679pt;}
.ws65{word-spacing:13.692733pt;}
.wsd3{word-spacing:16.314846pt;}
.wsbc{word-spacing:16.329477pt;}
.wsca{word-spacing:16.331711pt;}
.wsc9{word-spacing:16.332015pt;}
.wsd5{word-spacing:16.350089pt;}
.ws6a{word-spacing:16.507799pt;}
.wsa0{word-spacing:17.656333pt;}
.ws90{word-spacing:19.013111pt;}
.ws5d{word-spacing:20.210573pt;}
.ws4d{word-spacing:20.297137pt;}
.ws19{word-spacing:22.263090pt;}
.ws3a{word-spacing:23.846639pt;}
.ws6b{word-spacing:25.058099pt;}
.ws8e{word-spacing:26.256302pt;}
.ws5{word-spacing:26.515067pt;}
.ws0{word-spacing:28.615887pt;}
.wsb8{word-spacing:30.092711pt;}
.wsc7{word-spacing:45.979699pt;}
.ws6c{word-spacing:50.164019pt;}
.wsaa{word-spacing:61.050813pt;}
.wsa5{word-spacing:63.094212pt;}
.ws14{word-spacing:71.667439pt;}
.ws6d{word-spacing:75.269939pt;}
.wsc8{word-spacing:91.361638pt;}
.wsa6{word-spacing:118.053475pt;}
._4{margin-left:-26.477300pt;}
._3{margin-left:-25.079185pt;}
._c{margin-left:-23.092143pt;}
._6{margin-left:-20.669074pt;}
._5{margin-left:-5.850762pt;}
._9{margin-left:-4.112589pt;}
._1{margin-left:-2.448418pt;}
._2{margin-left:-1.487748pt;}
._7{width:1.338982pt;}
._8{width:2.778910pt;}
._0{width:4.820323pt;}
._19{width:9.406925pt;}
._14{width:11.491821pt;}
._1a{width:14.313081pt;}
._d{width:15.221827pt;}
._12{width:16.387748pt;}
._10{width:18.611759pt;}
._e{width:20.871038pt;}
._18{width:22.133620pt;}
._20{width:24.176239pt;}
._a{width:25.443538pt;}
._13{width:26.566933pt;}
._25{width:27.979767pt;}
._24{width:30.275870pt;}
._1e{width:31.875388pt;}
._1d{width:34.930615pt;}
._1f{width:38.022839pt;}
._1c{width:40.031313pt;}
._23{width:43.873105pt;}
._15{width:50.211840pt;}
._11{width:61.103947pt;}
._f{width:71.731200pt;}
._17{width:75.317760pt;}
._16{width:100.423680pt;}
._1b{width:127.107686pt;}
._21{width:150.704772pt;}
._b{width:151.687578pt;}
._22{width:285.929079pt;}
.fs7{font-size:25.962880pt;}
.fs3{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs6{font-size:41.995200pt;}
.fs4{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs5{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.ye9{bottom:6.997282pt;}
.y11e{bottom:10.093178pt;}
.ye2{bottom:17.496040pt;}
.y11c{bottom:25.670906pt;}
.ye3{bottom:55.974142pt;}
.y11d{bottom:64.236492pt;}
.ye4{bottom:94.452244pt;}
.ye5{bottom:132.983050pt;}
.y11f{bottom:147.015349pt;}
.ye6{bottom:171.461152pt;}
.y6f{bottom:172.102667pt;}
.y26{bottom:172.104000pt;}
.y4f{bottom:177.182667pt;}
.ybb{bottom:186.714667pt;}
.y9f{bottom:186.716000pt;}
.y25{bottom:188.044000pt;}
.y104{bottom:191.794667pt;}
.yee{bottom:197.902380pt;}
.y4e{bottom:198.382667pt;}
.y9e{bottom:201.326667pt;}
.y6e{bottom:203.984000pt;}
.y24{bottom:204.216000pt;}
.ye0{bottom:204.218667pt;}
.y124{bottom:206.415660pt;}
.yed{bottom:208.401180pt;}
.ye7{bottom:209.939254pt;}
.y103{bottom:212.829333pt;}
.y123{bottom:214.204524pt;}
.y4d{bottom:214.322667pt;}
.y9d{bottom:215.938667pt;}
.yec{bottom:218.899980pt;}
.y6d{bottom:219.924000pt;}
.y23{bottom:220.157333pt;}
.ydf{bottom:220.160000pt;}
.y11a{bottom:220.206667pt;}
.y122{bottom:221.993388pt;}
.y102{bottom:228.922667pt;}
.yeb{bottom:229.398780pt;}
.y121{bottom:229.782252pt;}
.y9c{bottom:230.550667pt;}
.y84{bottom:233.945333pt;}
.y6c{bottom:235.864000pt;}
.y22{bottom:236.097333pt;}
.yde{bottom:236.100000pt;}
.y119{bottom:236.146667pt;}
.yea{bottom:239.897580pt;}
.y17d{bottom:244.018667pt;}
.y101{bottom:245.014667pt;}
.y9b{bottom:245.162667pt;}
.y4c{bottom:247.172000pt;}
.ye8{bottom:248.417356pt;}
.y83{bottom:249.885333pt;}
.y6b{bottom:251.804000pt;}
.y21{bottom:252.037333pt;}
.ydd{bottom:252.040000pt;}
.y118{bottom:252.088000pt;}
.y17c{bottom:258.630667pt;}
.y9a{bottom:259.774667pt;}
.y100{bottom:260.954667pt;}
.y82{bottom:265.826667pt;}
.y6a{bottom:267.745333pt;}
.y20{bottom:267.977333pt;}
.ydc{bottom:267.980000pt;}
.y117{bottom:268.028000pt;}
.y17b{bottom:273.242667pt;}
.y99{bottom:274.386667pt;}
.yff{bottom:277.048000pt;}
.y152{bottom:278.749333pt;}
.y81{bottom:281.766667pt;}
.y69{bottom:283.685333pt;}
.y1f{bottom:283.917333pt;}
.ydb{bottom:283.920000pt;}
.y116{bottom:284.250667pt;}
.y17a{bottom:287.854667pt;}
.y98{bottom:288.998667pt;}
.y4b{bottom:290.648000pt;}
.y151{bottom:294.689333pt;}
.y132{bottom:296.961333pt;}
.y80{bottom:297.854667pt;}
.y68{bottom:299.625333pt;}
.y1e{bottom:299.857333pt;}
.yda{bottom:299.860000pt;}
.y115{bottom:300.190667pt;}
.y179{bottom:302.465333pt;}
.y97{bottom:303.610667pt;}
.yfe{bottom:304.224000pt;}
.y4a{bottom:306.588000pt;}
.y150{bottom:311.237333pt;}
.y7f{bottom:313.794667pt;}
.y67{bottom:315.565333pt;}
.y1d{bottom:315.798667pt;}
.yd9{bottom:316.036000pt;}
.y114{bottom:316.132000pt;}
.y178{bottom:317.077333pt;}
.y96{bottom:318.222667pt;}
.yfd{bottom:320.165333pt;}
.y49{bottom:322.529333pt;}
.y14f{bottom:327.177333pt;}
.y7e{bottom:329.734667pt;}
.y66{bottom:331.505333pt;}
.y177{bottom:331.689333pt;}
.yd8{bottom:331.976000pt;}
.y113{bottom:332.072000pt;}
.yba{bottom:332.833333pt;}
.y95{bottom:332.834667pt;}
.yfc{bottom:336.105333pt;}
.y48{bottom:338.469333pt;}
.y131{bottom:339.461333pt;}
.y14e{bottom:343.117333pt;}
.y7d{bottom:345.674667pt;}
.y176{bottom:346.301333pt;}
.y65{bottom:347.445333pt;}
.yd7{bottom:347.916000pt;}
.y112{bottom:348.012000pt;}
.y1c{bottom:348.841333pt;}
.yfb{bottom:352.045333pt;}
.y130{bottom:355.401333pt;}
.y14d{bottom:359.057333pt;}
.y175{bottom:360.913333pt;}
.y7c{bottom:361.762667pt;}
.y94{bottom:362.057333pt;}
.yd6{bottom:363.857333pt;}
.y111{bottom:363.952000pt;}
.y47{bottom:365.617333pt;}
.y12f{bottom:371.341333pt;}
.y64{bottom:373.469333pt;}
.y14c{bottom:374.997333pt;}
.y174{bottom:375.525333pt;}
.yb9{bottom:376.590667pt;}
.y93{bottom:376.669333pt;}
.y7b{bottom:377.702667pt;}
.yfa{bottom:379.374667pt;}
.y110{bottom:380.174667pt;}
.y46{bottom:381.750667pt;}
.y12e{bottom:387.281333pt;}
.y173{bottom:390.137333pt;}
.y14b{bottom:390.938667pt;}
.y92{bottom:391.281333pt;}
.yd5{bottom:391.601333pt;}
.yb8{bottom:392.780000pt;}
.y7a{bottom:393.642667pt;}
.y1b{bottom:394.880000pt;}
.y10f{bottom:396.116000pt;}
.y45{bottom:397.692000pt;}
.y12d{bottom:403.221333pt;}
.y172{bottom:404.749333pt;}
.y14a{bottom:407.485333pt;}
.yb7{bottom:408.721333pt;}
.y1a{bottom:409.492000pt;}
.y79{bottom:409.582667pt;}
.y10e{bottom:412.056000pt;}
.y63{bottom:412.777333pt;}
.y44{bottom:413.825333pt;}
.y171{bottom:419.361333pt;}
.y12c{bottom:419.692000pt;}
.yf9{bottom:419.986667pt;}
.y149{bottom:423.425333pt;}
.y91{bottom:424.362667pt;}
.yb6{bottom:424.661333pt;}
.y78{bottom:425.524000pt;}
.y10d{bottom:427.996000pt;}
.y62{bottom:428.717333pt;}
.y43{bottom:429.765333pt;}
.yd4{bottom:432.628000pt;}
.y170{bottom:433.973333pt;}
.y12b{bottom:435.632000pt;}
.yf8{bottom:435.926667pt;}
.y19{bottom:438.948000pt;}
.y148{bottom:439.365333pt;}
.y90{bottom:440.302667pt;}
.yb5{bottom:440.601333pt;}
.y77{bottom:441.464000pt;}
.y10c{bottom:443.936000pt;}
.yd3{bottom:448.568000pt;}
.y16f{bottom:448.584000pt;}
.y12a{bottom:451.572000pt;}
.yf7{bottom:451.868000pt;}
.y18{bottom:453.560000pt;}
.y147{bottom:455.305333pt;}
.y8f{bottom:456.244000pt;}
.yb4{bottom:456.541333pt;}
.y42{bottom:457.108000pt;}
.y76{bottom:457.404000pt;}
.y10b{bottom:459.876000pt;}
.y61{bottom:460.054667pt;}
.y16e{bottom:463.196000pt;}
.yd2{bottom:464.508000pt;}
.y129{bottom:467.513333pt;}
.yf6{bottom:467.960000pt;}
.y17{bottom:468.172000pt;}
.y146{bottom:471.853333pt;}
.y8e{bottom:472.184000pt;}
.yb3{bottom:472.481333pt;}
.y41{bottom:473.048000pt;}
.y75{bottom:473.344000pt;}
.y10a{bottom:475.816000pt;}
.y16d{bottom:477.808000pt;}
.y16{bottom:482.784000pt;}
.yf5{bottom:483.900000pt;}
.y128{bottom:483.982667pt;}
.y145{bottom:487.793333pt;}
.y8d{bottom:488.124000pt;}
.yb2{bottom:488.422667pt;}
.y40{bottom:488.988000pt;}
.y16c{bottom:492.420000pt;}
.y15{bottom:497.394667pt;}
.yd1{bottom:497.565333pt;}
.yf4{bottom:499.840000pt;}
.y127{bottom:499.922667pt;}
.y74{bottom:500.649333pt;}
.y60{bottom:502.018667pt;}
.y109{bottom:503.232000pt;}
.y144{bottom:503.733333pt;}
.y8c{bottom:504.064000pt;}
.yb1{bottom:504.612000pt;}
.y3f{bottom:504.928000pt;}
.y16b{bottom:507.032000pt;}
.y14{bottom:512.006667pt;}
.yf3{bottom:515.781333pt;}
.y5f{bottom:517.960000pt;}
.y108{bottom:519.456000pt;}
.y143{bottom:519.673333pt;}
.y8b{bottom:520.004000pt;}
.yb0{bottom:520.552000pt;}
.y3e{bottom:520.869333pt;}
.y16a{bottom:521.644000pt;}
.y13{bottom:526.618667pt;}
.yf2{bottom:531.721333pt;}
.y5e{bottom:533.900000pt;}
.y107{bottom:535.678667pt;}
.y169{bottom:536.256000pt;}
.yaf{bottom:536.492000pt;}
.y3d{bottom:536.809333pt;}
.y12{bottom:541.230667pt;}
.y73{bottom:541.237333pt;}
.yd0{bottom:541.249333pt;}
.y126{bottom:547.490667pt;}
.yf1{bottom:547.661333pt;}
.y5d{bottom:549.840000pt;}
.y168{bottom:550.868000pt;}
.y106{bottom:551.618667pt;}
.yae{bottom:552.433333pt;}
.y3c{bottom:552.942667pt;}
.y8a{bottom:553.377333pt;}
.y142{bottom:554.589333pt;}
.y11{bottom:555.842667pt;}
.y72{bottom:557.177333pt;}
.ycf{bottom:557.190667pt;}
.y125{bottom:562.102667pt;}
.y167{bottom:565.480000pt;}
.y5c{bottom:565.780000pt;}
.yad{bottom:568.373333pt;}
.y3b{bottom:568.882667pt;}
.y89{bottom:569.317333pt;}
.y10{bottom:570.454667pt;}
.y71{bottom:573.118667pt;}
.yce{bottom:573.365333pt;}
.y166{bottom:580.092000pt;}
.y5b{bottom:581.720000pt;}
.yac{bottom:584.313333pt;}
.y3a{bottom:584.824000pt;}
.yf{bottom:585.066667pt;}
.y88{bottom:586.294667pt;}
.ycd{bottom:589.305333pt;}
.y11b{bottom:589.998667pt;}
.yf0{bottom:594.474667pt;}
.y165{bottom:594.702667pt;}
.y5a{bottom:597.660000pt;}
.y105{bottom:598.029333pt;}
.ye{bottom:599.678667pt;}
.y141{bottom:600.130667pt;}
.yab{bottom:600.253333pt;}
.y39{bottom:600.764000pt;}
.y87{bottom:602.234667pt;}
.ycc{bottom:605.246667pt;}
.yef{bottom:609.086667pt;}
.y164{bottom:609.314667pt;}
.y59{bottom:613.601333pt;}
.yd{bottom:614.290667pt;}
.y140{bottom:616.070667pt;}
.yaa{bottom:616.193333pt;}
.y38{bottom:616.897333pt;}
.y86{bottom:618.174667pt;}
.y70{bottom:619.257333pt;}
.ycb{bottom:621.186667pt;}
.y163{bottom:623.926667pt;}
.y120{bottom:629.689474pt;}
.y13f{bottom:632.012000pt;}
.ya9{bottom:632.133333pt;}
.y37{bottom:632.837333pt;}
.ye1{bottom:636.981333pt;}
.yca{bottom:637.361333pt;}
.y162{bottom:638.538667pt;}
.y58{bottom:639.625333pt;}
.y13e{bottom:647.952000pt;}
.y36{bottom:648.778667pt;}
.y161{bottom:653.150667pt;}
.yc9{bottom:653.302667pt;}
.y57{bottom:655.429333pt;}
.ya8{bottom:659.950667pt;}
.y13d{bottom:663.892000pt;}
.y35{bottom:664.718667pt;}
.y85{bottom:666.093333pt;}
.y160{bottom:667.762667pt;}
.yc8{bottom:669.242667pt;}
.yc{bottom:670.557333pt;}
.y56{bottom:671.233333pt;}
.y13c{bottom:679.832000pt;}
.y34{bottom:680.852000pt;}
.y15f{bottom:682.374667pt;}
.yc7{bottom:685.182667pt;}
.y55{bottom:687.038667pt;}
.yb{bottom:690.248000pt;}
.y13b{bottom:695.772000pt;}
.y33{bottom:696.792000pt;}
.y15e{bottom:696.986667pt;}
.ya{bottom:699.781333pt;}
.ya7{bottom:701.050667pt;}
.yc6{bottom:701.122667pt;}
.y54{bottom:702.978667pt;}
.y15d{bottom:711.598667pt;}
.y13a{bottom:712.320000pt;}
.y32{bottom:712.733333pt;}
.y9{bottom:714.393333pt;}
.ya6{bottom:716.990667pt;}
.yc5{bottom:717.062667pt;}
.y15c{bottom:726.210667pt;}
.y139{bottom:728.260000pt;}
.y31{bottom:728.673333pt;}
.y53{bottom:728.866667pt;}
.y8{bottom:729.005333pt;}
.ya5{bottom:732.930667pt;}
.yc4{bottom:733.238667pt;}
.y15b{bottom:740.821333pt;}
.y138{bottom:744.200000pt;}
.y30{bottom:744.613333pt;}
.y52{bottom:744.806667pt;}
.y7{bottom:748.696000pt;}
.ya4{bottom:748.870667pt;}
.yc3{bottom:749.178667pt;}
.y15a{bottom:755.433333pt;}
.y137{bottom:760.140000pt;}
.y2f{bottom:760.553333pt;}
.y51{bottom:760.746667pt;}
.y6{bottom:763.306667pt;}
.ya3{bottom:765.061333pt;}
.yc2{bottom:765.118667pt;}
.y159{bottom:770.045333pt;}
.y136{bottom:776.080000pt;}
.y2e{bottom:776.493333pt;}
.y50{bottom:776.688000pt;}
.ya2{bottom:781.001333pt;}
.yc1{bottom:781.060000pt;}
.y158{bottom:784.657333pt;}
.y5{bottom:786.069333pt;}
.y135{bottom:792.021333pt;}
.y2d{bottom:792.628000pt;}
.ya1{bottom:796.941333pt;}
.yc0{bottom:797.000000pt;}
.y157{bottom:799.269333pt;}
.y4{bottom:802.009333pt;}
.y134{bottom:807.961333pt;}
.y2c{bottom:808.568000pt;}
.ya0{bottom:812.881333pt;}
.ybf{bottom:812.940000pt;}
.y156{bottom:813.881333pt;}
.y3{bottom:817.949333pt;}
.y133{bottom:823.901333pt;}
.y2b{bottom:824.508000pt;}
.y155{bottom:828.493333pt;}
.ybe{bottom:828.880000pt;}
.y2a{bottom:840.448000pt;}
.y154{bottom:843.105333pt;}
.y29{bottom:856.388000pt;}
.y153{bottom:857.717333pt;}
.ybd{bottom:859.045333pt;}
.y2{bottom:864.358667pt;}
.y28{bottom:872.329333pt;}
.ybc{bottom:873.657333pt;}
.y1{bottom:888.269333pt;}
.y27{bottom:922.806667pt;}
.h10{height:18.926940pt;}
.h4{height:21.519360pt;}
.hd{height:30.614501pt;}
.h9{height:33.187635pt;}
.h5{height:35.865600pt;}
.h8{height:37.193707pt;}
.h7{height:39.850400pt;}
.ha{height:39.855733pt;}
.he{height:42.422223pt;}
.h3{height:44.348486pt;}
.h2{height:44.353820pt;}
.h6{height:44.632747pt;}
.hb{height:45.092358pt;}
.h1{height:53.559147pt;}
.h11{height:239.897011pt;}
.hc{height:264.569760pt;}
.hf{height:311.554560pt;}
.h0{height:1056.000000pt;}
.w3{width:254.219867pt;}
.w2{width:302.359373pt;}
.w1{width:377.956800pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x21{left:7.010086pt;}
.x1a{left:15.603002pt;}
.x19{left:21.440124pt;}
.x1f{left:22.587814pt;}
.x1e{left:30.524991pt;}
.x1b{left:43.791440pt;}
.x20{left:142.995971pt;}
.xe{left:179.686667pt;}
.x12{left:183.338667pt;}
.x15{left:185.294667pt;}
.x10{left:187.988000pt;}
.x1d{left:192.969333pt;}
.x3{left:195.284000pt;}
.x1{left:196.582667pt;}
.xf{left:199.612000pt;}
.x11{left:202.268000pt;}
.xd{left:217.481333pt;}
.x4{left:219.802667pt;}
.x18{left:221.261333pt;}
.x6{left:223.890667pt;}
.x9{left:252.284000pt;}
.x13{left:254.520000pt;}
.x2{left:258.884000pt;}
.x1c{left:260.402786pt;}
.x14{left:263.314667pt;}
.x22{left:290.990234pt;}
.xb{left:296.352000pt;}
.x17{left:311.490667pt;}
.xc{left:323.401333pt;}
.x16{left:326.592000pt;}
.x8{left:329.880000pt;}
.xa{left:333.565333pt;}
.x7{left:342.565333pt;}
.x5{left:363.126667pt;}
}




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