
    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_ce959cc2d28b5e84c5f84400.woff')format("woff");}.ff1{font-family:ff1;line-height:1.002000;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_a5224f82a25ef9bbf981bdb2.woff')format("woff");}.ff2{font-family:ff2;line-height:0.900000;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_92a49f70d9f2dce42f448de3.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_6051025f9be32b9f1fd48b87.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_d2267dff252c96664923b84e.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_b2a2b012abcf84faad39c6ef.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_ff3b1f225fba941f13e70f3f.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_65b94c7d643492adfe2bb1c5.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_23adfad16545ac8f0de8934f.woff')format("woff");}.ff9{font-family:ff9;line-height:0.887000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_3c7b32830521d1d1fe4ebaed.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_167c0fc5118d5fd75da4a10d.woff')format("woff");}.ffb{font-family:ffb;line-height:1.002000;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_887313b5680adb61a9e3c52b.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_05f990e9df7024a4a7c005e9.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_cd5b3bb57f4cce53eca50790.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_c367728a3a784200f63e7e2c.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_551d3c67b88a807a380607bb.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_55a0ec9e1f8aad6defce49a5.woff')format("woff");}.ff11{font-family:ff11;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.028000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.034000px;}
.ls7{letter-spacing:0.000000px;}
.ls2{letter-spacing:1.880823px;}
.ls0{letter-spacing:2.991113px;}
.ls4{letter-spacing:9.962338px;}
.ls10{letter-spacing:17.216316px;}
.ls8{letter-spacing:18.263781px;}
.ls5{letter-spacing:18.569781px;}
.lsa{letter-spacing:19.820823px;}
.lsf{letter-spacing:19.922316px;}
.ls1{letter-spacing:23.118305px;}
.ls9{letter-spacing:23.124305px;}
.lsc{letter-spacing:25.772316px;}
.lsd{letter-spacing:25.778316px;}
.ls11{letter-spacing:26.738316px;}
.ls6{letter-spacing:29.890178px;}
.lsb{letter-spacing:29.890893px;}
.ls3{letter-spacing:30.190893px;}
.lse{letter-spacing:30.548316px;}
.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;}
}
.ws35{word-spacing:-34.364992px;}
.ws5b{word-spacing:-19.959073px;}
.ws1{word-spacing:-16.196248px;}
.ws24{word-spacing:-15.829597px;}
.ws45{word-spacing:-15.743520px;}
.ws2a{word-spacing:-14.070444px;}
.ws11{word-spacing:-14.041288px;}
.ws16{word-spacing:-13.981513px;}
.ws51{word-spacing:-13.323981px;}
.ws3a{word-spacing:-13.204430px;}
.ws1e{word-spacing:-12.965328px;}
.ws5c{word-spacing:-12.666450px;}
.ws67{word-spacing:-12.653753px;}
.ws41{word-spacing:-12.563153px;}
.ws29{word-spacing:-12.307796px;}
.ws47{word-spacing:-12.221732px;}
.ws2e{word-spacing:-12.188245px;}
.ws3b{word-spacing:-11.951913px;}
.ws3d{word-spacing:-11.949142px;}
.wsb{word-spacing:-11.878687px;}
.ws2f{word-spacing:-11.829591px;}
.ws1c{word-spacing:-11.710040px;}
.ws68{word-spacing:-11.656242px;}
.ws52{word-spacing:-11.590489px;}
.ws3c{word-spacing:-11.547611px;}
.ws53{word-spacing:-11.470938px;}
.ws56{word-spacing:-11.351386px;}
.ws4c{word-spacing:-11.172060px;}
.ws26{word-spacing:-10.997732px;}
.ws4e{word-spacing:-10.932957px;}
.ws28{word-spacing:-10.693855px;}
.ws2d{word-spacing:-10.634079px;}
.ws33{word-spacing:-10.574304px;}
.wse{word-spacing:-10.514528px;}
.ws5d{word-spacing:-10.454752px;}
.ws5a{word-spacing:-10.335201px;}
.ws30{word-spacing:-10.275426px;}
.ws0{word-spacing:-9.976548px;}
.ws65{word-spacing:-9.953753px;}
.ws54{word-spacing:-9.916772px;}
.ws4b{word-spacing:-9.856996px;}
.ws1a{word-spacing:-9.797221px;}
.ws17{word-spacing:-9.773894px;}
.ws37{word-spacing:-9.617894px;}
.ws2b{word-spacing:-9.558118px;}
.ws22{word-spacing:-9.378792px;}
.ws4d{word-spacing:-9.319016px;}
.ws3{word-spacing:-9.242565px;}
.ws4a{word-spacing:-9.222444px;}
.ws34{word-spacing:-9.199465px;}
.wsc{word-spacing:-9.188767px;}
.ws66{word-spacing:-9.145667px;}
.ws5e{word-spacing:-9.079914px;}
.ws4f{word-spacing:-8.900587px;}
.ws10{word-spacing:-8.781036px;}
.ws1f{word-spacing:-8.422382px;}
.ws38{word-spacing:-8.362606px;}
.ws9{word-spacing:-8.220396px;}
.ws23{word-spacing:-8.123504px;}
.ws40{word-spacing:-8.063728px;}
.ws2c{word-spacing:-8.003953px;}
.ws25{word-spacing:-7.927227px;}
.wsf{word-spacing:-7.764850px;}
.ws46{word-spacing:-7.705075px;}
.ws60{word-spacing:-7.645299px;}
.ws20{word-spacing:-7.286646px;}
.ws57{word-spacing:-7.167094px;}
.ws39{word-spacing:-7.107319px;}
.ws7{word-spacing:-6.821637px;}
.ws27{word-spacing:-6.509563px;}
.ws58{word-spacing:-6.270460px;}
.ws59{word-spacing:-6.031358px;}
.ws44{word-spacing:-5.254275px;}
.ws21{word-spacing:-5.015173px;}
.ws49{word-spacing:-4.716295px;}
.ws8{word-spacing:-4.185516px;}
.ws3e{word-spacing:-3.998988px;}
.ws6{word-spacing:-3.970322px;}
.ws5{word-spacing:-3.808927px;}
.wsa{word-spacing:-3.593733px;}
.ws43{word-spacing:-3.247227px;}
.ws69{word-spacing:-3.162129px;}
.ws6a{word-spacing:-2.929004px;}
.ws42{word-spacing:-2.803476px;}
.ws14{word-spacing:-0.059776px;}
.ws4{word-spacing:-0.053798px;}
.ws32{word-spacing:0.000000px;}
.ws36{word-spacing:0.125529px;}
.ws62{word-spacing:0.537980px;}
.ws63{word-spacing:0.663509px;}
.ws61{word-spacing:0.676654px;}
.ws6b{word-spacing:0.783060px;}
.ws1d{word-spacing:9.862974px;}
.ws15{word-spacing:9.870566px;}
.ws13{word-spacing:9.930342px;}
.ws64{word-spacing:10.520506px;}
.ws12{word-spacing:16.557841px;}
.ws18{word-spacing:16.856719px;}
.ws72{word-spacing:16.880672px;}
.ws19{word-spacing:20.037163px;}
.ws1b{word-spacing:20.038963px;}
.ws5f{word-spacing:22.171800px;}
.ws2{word-spacing:23.312640px;}
.ws3f{word-spacing:25.387549px;}
.ws50{word-spacing:26.827469px;}
.ws31{word-spacing:31.322414px;}
.ws48{word-spacing:37.365728px;}
.ws84{word-spacing:41.848898px;}
.wsd{word-spacing:47.351068px;}
.ws87{word-spacing:58.944719px;}
.ws86{word-spacing:68.449040px;}
.ws6f{word-spacing:90.765928px;}
.ws85{word-spacing:108.259589px;}
.ws80{word-spacing:109.753979px;}
.ws70{word-spacing:127.985537px;}
.ws71{word-spacing:128.164864px;}
.ws6e{word-spacing:141.435047px;}
.ws55{word-spacing:178.735022px;}
.ws83{word-spacing:189.933648px;}
.ws7a{word-spacing:208.323944px;}
.ws75{word-spacing:219.980186px;}
.ws7e{word-spacing:228.109667px;}
.ws82{word-spacing:234.445881px;}
.ws7c{word-spacing:239.706134px;}
.ws79{word-spacing:244.727284px;}
.ws74{word-spacing:256.323750px;}
.ws7f{word-spacing:262.865858px;}
.ws7d{word-spacing:268.018515px;}
.ws77{word-spacing:271.267650px;}
.ws7b{word-spacing:279.471520px;}
.ws78{word-spacing:287.110841px;}
.ws73{word-spacing:299.508301px;}
.ws81{word-spacing:304.864194px;}
.ws76{word-spacing:316.693786px;}
.ws6c{word-spacing:326.440529px;}
.ws6d{word-spacing:404.516097px;}
._2{margin-left:-8.056807px;}
._4{margin-left:-6.336278px;}
._0{margin-left:-4.961375px;}
._7{margin-left:-3.114341px;}
._1{margin-left:-1.673717px;}
._5{width:1.506355px;}
._c{width:3.114341px;}
._19{width:4.212638px;}
._15{width:5.714527px;}
._46{width:6.989918px;}
._28{width:9.982525px;}
._e{width:16.903759px;}
._18{width:18.091454px;}
._10{width:19.212984px;}
._44{width:20.440979px;}
._b{width:21.836184px;}
._6{width:24.655895px;}
._f{width:26.002386px;}
._27{width:27.024581px;}
._11{width:28.453186px;}
._d{width:30.652918px;}
._9{width:32.715394px;}
._45{width:34.119902px;}
._17{width:35.148053px;}
._13{width:36.702218px;}
._8{width:40.133606px;}
._a{width:41.974685px;}
._3{width:43.072931px;}
._1a{width:47.993851px;}
._14{width:59.792385px;}
._23{width:71.730720px;}
._5d{width:75.078154px;}
._25{width:76.512768px;}
._29{width:80.697600px;}
._65{width:81.713245px;}
._1d{width:83.207635px;}
._4b{width:86.471363px;}
._54{width:89.842727px;}
._1e{width:91.456668px;}
._12{width:94.684920px;}
._47{width:110.214241px;}
._49{width:112.557455px;}
._53{width:116.084215px;}
._6b{width:122.605765px;}
._48{width:138.798943px;}
._52{width:142.325704px;}
._43{width:151.232268px;}
._26{width:153.623292px;}
._2b{width:157.383145px;}
._2d{width:161.991876px;}
._ad{width:164.382900px;}
._4d{width:184.168624px;}
._38{width:187.037852px;}
._50{width:191.102593px;}
._1f{width:196.888861px;}
._4a{width:209.668874px;}
._20{width:211.187195px;}
._42{width:214.654180px;}
._4f{width:217.344082px;}
._2f{width:218.539594px;}
._94{width:221.647925px;}
._31{width:225.234461px;}
._41{width:229.956733px;}
._90{width:233.244391px;}
._40{width:234.918108px;}
._86{width:238.205766px;}
._24{width:239.580605px;}
._3e{width:246.681936px;}
._3c{width:250.997744px;}
._3f{width:261.458474px;}
._51{width:265.463440px;}
._7c{width:271.261673px;}
._35{width:284.872535px;}
._1c{width:291.991841px;}
._2e{width:294.855060px;}
._21{width:296.720069px;}
._a4{width:301.496161px;}
._6a{width:303.600272px;}
._4c{width:307.306360px;}
._9d{width:327.737650px;}
._22{width:331.575253px;}
._3d{width:337.851691px;}
._4e{width:340.541593px;}
._82{width:346.160500px;}
._37{width:348.593324px;}
._2c{width:350.267041px;}
._73{width:355.545269px;}
._97{width:373.657276px;}
._71{width:385.558630px;}
._ae{width:391.769282px;}
._af{width:396.730657px;}
._74{width:405.344353px;}
._55{width:406.593631px;}
._5b{width:429.487686px;}
._8e{width:430.503871px;}
._58{width:431.937946px;}
._6e{width:433.677988px;}
._a0{width:442.704103px;}
._3a{width:445.567322px;}
._9c{width:446.858455px;}
._1b{width:453.517477px;}
._77{width:455.717209px;}
._70{width:463.978207px;}
._a3{width:465.831251px;}
._ac{width:470.374196px;}
._69{width:473.602079px;}
._9f{width:475.281805px;}
._a1{width:482.628194px;}
._30{width:484.062809px;}
._33{width:487.762886px;}
._ab{width:490.279471px;}
._68{width:493.740446px;}
._6f{width:500.321772px;}
._a6{width:502.354142px;}
._7b{width:504.003929px;}
._39{width:505.755396px;}
._aa{width:506.897088px;}
._6d{width:512.097565px;}
._7e{width:514.416848px;}
._a2{width:519.151086px;}
._5f{width:522.737622px;}
._8c{width:526.742587px;}
._7f{width:537.203317px;}
._a9{width:539.474790px;}
._5e{width:544.483975px;}
._88{width:546.827189px;}
._6c{width:548.441130px;}
._75{width:554.466500px;}
._a8{width:559.380065px;}
._60{width:562.906825px;}
._63{width:566.194483px;}
._83{width:572.518732px;}
._85{width:578.986462px;}
._81{width:580.361300px;}
._7d{width:582.214344px;}
._8f{width:590.762255px;}
._a7{width:591.838216px;}
._64{width:596.620264px;}
._5c{width:611.564164px;}
._8a{width:613.237880px;}
._9b{width:619.036114px;}
._8b{width:622.861752px;}
._9e{width:625.551654px;}
._96{width:627.942678px;}
._84{width:628.946898px;}
._98{width:633.023604px;}
._61{width:635.952608px;}
._9a{width:640.011340px;}
._67{width:641.452504px;}
._92{width:643.221301px;}
._95{width:644.727656px;}
._76{width:648.075090px;}
._79{width:652.355003px;}
._62{width:654.722147px;}
._72{width:664.346018px;}
._91{width:671.160437px;}
._89{width:672.654827px;}
._59{width:675.344729px;}
._5a{width:678.512836px;}
._99{width:687.957380px;}
._80{width:700.032052px;}
._7a{width:701.394925px;}
._93{width:705.830285px;}
._66{width:707.026337px;}
._87{width:709.536372px;}
._56{width:738.886256px;}
._a5{width:741.695645px;}
._2a{width:745.640834px;}
._78{width:751.128224px;}
._8d{width:752.515028px;}
._16{width:756.639545px;}
._32{width:758.193710px;}
._57{width:788.388823px;}
._34{width:806.193517px;}
._36{width:817.371554px;}
._3b{width:985.938746px;}
.fc0{color:rgb(0,0,0);}
.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;}
.y2e{bottom:40.207500px;}
.y2d{bottom:85.039500px;}
.y122{bottom:94.008000px;}
.y14f{bottom:95.800500px;}
.yf0{bottom:102.402000px;}
.y2c{bottom:110.449500px;}
.ycf{bottom:112.296000px;}
.y121{bottom:116.125500px;}
.y14e{bottom:117.918000px;}
.y5b{bottom:119.830500px;}
.yef{bottom:124.519500px;}
.y2b{bottom:128.382000px;}
.yce{bottom:134.413500px;}
.y120{bottom:137.644500px;}
.y5a{bottom:137.763000px;}
.y14d{bottom:139.437000px;}
.yee{bottom:146.038500px;}
.y2a{bottom:146.314500px;}
.y59{bottom:155.695500px;}
.ycd{bottom:155.932500px;}
.y11f{bottom:159.163500px;}
.y14c{bottom:160.956000px;}
.yed{bottom:167.557500px;}
.ycc{bottom:177.451500px;}
.y11e{bottom:180.682500px;}
.y14b{bottom:182.476500px;}
.y58{bottom:183.277500px;}
.y29{bottom:184.189500px;}
.yec{bottom:189.076500px;}
.ycb{bottom:198.970500px;}
.y28{bottom:202.123500px;}
.y11d{bottom:202.201500px;}
.y14a{bottom:203.995500px;}
.yeb{bottom:210.597000px;}
.y27{bottom:220.056000px;}
.yca{bottom:220.489500px;}
.y11c{bottom:223.720500px;}
.y57{bottom:225.105000px;}
.y149{bottom:225.514500px;}
.yea{bottom:232.116000px;}
.y26{bottom:237.988500px;}
.yc9{bottom:242.008500px;}
.y56{bottom:243.037500px;}
.y11b{bottom:245.241000px;}
.y148{bottom:247.033500px;}
.ye9{bottom:253.635000px;}
.y55{bottom:260.970000px;}
.yc8{bottom:263.529000px;}
.y25{bottom:265.638000px;}
.y11a{bottom:266.760000px;}
.y9a{bottom:267.973500px;}
.y147{bottom:268.552500px;}
.ye8{bottom:275.154000px;}
.y54{bottom:278.904000px;}
.y24{bottom:283.570500px;}
.yc7{bottom:285.048000px;}
.y99{bottom:285.906000px;}
.y119{bottom:288.279000px;}
.y146{bottom:290.071500px;}
.ye7{bottom:296.673000px;}
.y53{bottom:296.836500px;}
.y23{bottom:301.503000px;}
.yc6{bottom:306.567000px;}
.y118{bottom:309.798000px;}
.y98{bottom:309.817500px;}
.y145{bottom:311.590500px;}
.y52{bottom:314.769000px;}
.ye6{bottom:318.192000px;}
.yc5{bottom:328.086000px;}
.y22{bottom:329.152500px;}
.y117{bottom:331.317000px;}
.y51{bottom:332.701500px;}
.y144{bottom:333.111000px;}
.y97{bottom:333.727500px;}
.ye5{bottom:339.711000px;}
.y7c{bottom:344.130000px;}
.yc4{bottom:349.605000px;}
.y50{bottom:350.634000px;}
.y116{bottom:352.836000px;}
.y21{bottom:354.562500px;}
.y143{bottom:354.630000px;}
.y96{bottom:357.637500px;}
.ye4{bottom:361.231500px;}
.y7b{bottom:362.064000px;}
.y4f{bottom:368.566500px;}
.yc3{bottom:371.124000px;}
.y115{bottom:374.355000px;}
.y142{bottom:376.149000px;}
.y7a{bottom:379.996500px;}
.y95{bottom:381.547500px;}
.ye3{bottom:382.750500px;}
.y4e{bottom:386.500500px;}
.y20{bottom:387.289500px;}
.yc2{bottom:392.643000px;}
.y114{bottom:395.875500px;}
.y141{bottom:397.668000px;}
.ye2{bottom:404.269500px;}
.y94{bottom:405.459000px;}
.y79{bottom:407.578500px;}
.yc1{bottom:414.163500px;}
.y113{bottom:417.394500px;}
.y140{bottom:419.187000px;}
.y4d{bottom:419.227500px;}
.y93{bottom:423.391500px;}
.ye1{bottom:425.788500px;}
.yc0{bottom:435.682500px;}
.y1f{bottom:435.739500px;}
.y112{bottom:438.913500px;}
.y13f{bottom:440.706000px;}
.ye0{bottom:447.307500px;}
.y78{bottom:453.141000px;}
.y1e{bottom:453.672000px;}
.y92{bottom:456.118500px;}
.ybf{bottom:457.201500px;}
.y111{bottom:460.432500px;}
.y13e{bottom:462.226500px;}
.ydf{bottom:468.826500px;}
.y1d{bottom:471.606000px;}
.y4c{bottom:472.375500px;}
.ybe{bottom:478.720500px;}
.y110{bottom:481.951500px;}
.y13d{bottom:483.745500px;}
.y77{bottom:487.837500px;}
.y1c{bottom:489.538500px;}
.yde{bottom:490.345500px;}
.ybd{bottom:500.239500px;}
.y10f{bottom:503.470500px;}
.y13c{bottom:505.264500px;}
.y91{bottom:505.533000px;}
.y4b{bottom:507.073500px;}
.y1b{bottom:507.471000px;}
.y76{bottom:509.356500px;}
.ydd{bottom:511.866000px;}
.yaf{bottom:515.410500px;}
.ybc{bottom:521.758500px;}
.y90{bottom:523.465500px;}
.y10e{bottom:524.989500px;}
.y1a{bottom:525.403500px;}
.y13b{bottom:526.783500px;}
.y4a{bottom:528.592500px;}
.y75{bottom:530.875500px;}
.ydc{bottom:533.385000px;}
.ybb{bottom:543.277500px;}
.y19{bottom:543.336000px;}
.y10d{bottom:546.510000px;}
.y13a{bottom:548.302500px;}
.y49{bottom:550.111500px;}
.y74{bottom:552.396000px;}
.y8f{bottom:553.353000px;}
.ydb{bottom:554.904000px;}
.y18{bottom:561.268500px;}
.yba{bottom:564.798000px;}
.y10c{bottom:568.029000px;}
.y139{bottom:569.821500px;}
.y8e{bottom:571.285500px;}
.y48{bottom:571.630500px;}
.y73{bottom:573.915000px;}
.yda{bottom:576.423000px;}
.y17{bottom:579.202500px;}
.yb9{bottom:586.317000px;}
.y8d{bottom:589.218000px;}
.y10b{bottom:589.548000px;}
.y138{bottom:591.340500px;}
.y47{bottom:593.149500px;}
.y72{bottom:595.434000px;}
.y16{bottom:597.135000px;}
.yd9{bottom:597.942000px;}
.yb8{bottom:607.836000px;}
.y10a{bottom:611.067000px;}
.y137{bottom:612.861000px;}
.y46{bottom:614.670000px;}
.y15{bottom:615.067500px;}
.y71{bottom:616.953000px;}
.yd8{bottom:619.461000px;}
.y8c{bottom:628.057500px;}
.yb7{bottom:629.355000px;}
.y109{bottom:632.586000px;}
.y14{bottom:633.000000px;}
.y136{bottom:634.380000px;}
.y45{bottom:636.189000px;}
.y70{bottom:639.070500px;}
.yd7{bottom:640.980000px;}
.yb6{bottom:650.874000px;}
.y13{bottom:650.932500px;}
.y108{bottom:654.105000px;}
.y135{bottom:655.899000px;}
.y44{bottom:657.708000px;}
.y8b{bottom:657.945000px;}
.yd6{bottom:662.500500px;}
.yb5{bottom:672.393000px;}
.y107{bottom:675.624000px;}
.y6f{bottom:677.064000px;}
.y134{bottom:677.418000px;}
.y43{bottom:679.227000px;}
.y12{bottom:683.661000px;}
.yd5{bottom:684.019500px;}
.yae{bottom:687.637500px;}
.yb4{bottom:693.912000px;}
.y6e{bottom:694.996500px;}
.y8a{bottom:696.784500px;}
.y106{bottom:697.144500px;}
.y133{bottom:698.937000px;}
.y42{bottom:700.746000px;}
.yd4{bottom:705.538500px;}
.y6d{bottom:712.929000px;}
.y89{bottom:714.717000px;}
.yb3{bottom:715.432500px;}
.y105{bottom:718.663500px;}
.y132{bottom:720.456000px;}
.yad{bottom:722.335500px;}
.y41{bottom:722.863500px;}
.yd3{bottom:727.057500px;}
.y11{bottom:732.111000px;}
.y88{bottom:732.649500px;}
.yb2{bottom:737.548500px;}
.y104{bottom:740.182500px;}
.y131{bottom:741.975000px;}
.yac{bottom:743.854500px;}
.y10{bottom:748.548000px;}
.yd2{bottom:748.576500px;}
.y6c{bottom:755.503500px;}
.y40{bottom:757.951500px;}
.y87{bottom:760.231500px;}
.y103{bottom:761.701500px;}
.y130{bottom:763.495500px;}
.yf{bottom:764.986500px;}
.yab{bottom:765.373500px;}
.yd1{bottom:770.694000px;}
.yb1{bottom:774.877500px;}
.y3f{bottom:775.884000px;}
.ye{bottom:781.425000px;}
.y102{bottom:783.220500px;}
.y12f{bottom:785.014500px;}
.yaa{bottom:786.892500px;}
.y6b{bottom:790.200000px;}
.yb0{bottom:792.810000px;}
.yd{bottom:797.863500px;}
.y101{bottom:804.739500px;}
.y86{bottom:804.964500px;}
.y12e{bottom:806.533500px;}
.yd0{bottom:807.874500px;}
.ya9{bottom:808.413000px;}
.y3e{bottom:808.612500px;}
.y6a{bottom:811.719000px;}
.yc{bottom:814.302000px;}
.y100{bottom:826.258500px;}
.y12d{bottom:828.052500px;}
.ya8{bottom:829.932000px;}
.yb{bottom:830.740500px;}
.y69{bottom:833.238000px;}
.y85{bottom:838.747500px;}
.ya{bottom:847.179000px;}
.yff{bottom:847.779000px;}
.y12c{bottom:849.571500px;}
.ya7{bottom:851.451000px;}
.y68{bottom:854.757000px;}
.y3d{bottom:858.025500px;}
.y84{bottom:860.268000px;}
.y9{bottom:863.617500px;}
.yfe{bottom:869.298000px;}
.y12b{bottom:871.090500px;}
.ya6{bottom:872.970000px;}
.y3c{bottom:875.958000px;}
.y67{bottom:876.277500px;}
.y8{bottom:881.446500px;}
.y83{bottom:881.787000px;}
.yfd{bottom:890.817000px;}
.y12a{bottom:892.609500px;}
.y3b{bottom:893.890500px;}
.ya5{bottom:894.489000px;}
.y66{bottom:898.393500px;}
.y82{bottom:903.306000px;}
.y3a{bottom:911.823000px;}
.yfc{bottom:912.336000px;}
.y129{bottom:914.130000px;}
.ya4{bottom:916.008000px;}
.y81{bottom:924.825000px;}
.y7{bottom:929.643000px;}
.yfb{bottom:933.855000px;}
.y128{bottom:935.649000px;}
.y65{bottom:937.216500px;}
.ya3{bottom:937.527000px;}
.y80{bottom:946.344000px;}
.y39{bottom:950.662500px;}
.y64{bottom:955.150500px;}
.yfa{bottom:955.374000px;}
.y127{bottom:957.168000px;}
.ya2{bottom:959.047500px;}
.y6{bottom:965.170500px;}
.y7f{bottom:967.863000px;}
.y38{bottom:968.595000px;}
.yf9{bottom:976.894500px;}
.y126{bottom:978.687000px;}
.ya1{bottom:980.566500px;}
.y37{bottom:986.527500px;}
.y7e{bottom:989.382000px;}
.y63{bottom:997.723500px;}
.yf8{bottom:998.413500px;}
.y125{bottom:1000.804500px;}
.ya0{bottom:1002.085500px;}
.y36{bottom:1004.461500px;}
.y5{bottom:1005.286500px;}
.y7d{bottom:1010.902500px;}
.yf7{bottom:1019.932500px;}
.y35{bottom:1022.394000px;}
.y9f{bottom:1023.604500px;}
.y4{bottom:1023.885000px;}
.y62{bottom:1032.421500px;}
.y124{bottom:1038.996000px;}
.y34{bottom:1040.326500px;}
.yf6{bottom:1041.451500px;}
.y9e{bottom:1045.123500px;}
.y61{bottom:1053.940500px;}
.yf5{bottom:1062.970500px;}
.y9d{bottom:1066.642500px;}
.y3{bottom:1067.217000px;}
.y60{bottom:1075.459500px;}
.y33{bottom:1079.164500px;}
.yf4{bottom:1084.489500px;}
.y9c{bottom:1088.161500px;}
.y5f{bottom:1096.978500px;}
.y32{bottom:1097.098500px;}
.y2{bottom:1100.094000px;}
.yf3{bottom:1106.607000px;}
.y9b{bottom:1110.279000px;}
.y5e{bottom:1118.497500px;}
.y31{bottom:1126.986000px;}
.y5d{bottom:1140.016500px;}
.y123{bottom:1140.615000px;}
.yf2{bottom:1144.798500px;}
.y30{bottom:1144.918500px;}
.y5c{bottom:1162.134000px;}
.yf1{bottom:1162.732500px;}
.y2f{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.544042px;}
.hb{height:44.891476px;}
.h2{height:44.951251px;}
.hc{height:50.283571px;}
.h7{height:51.287808px;}
.h4{height:59.699702px;}
.h9{height:60.426194px;}
.h3{height:73.131019px;}
.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;}
.x1a{left:40.207500px;}
.xb{left:85.039500px;}
.xc{left:107.457000px;}
.x2{left:109.467000px;}
.xe{left:115.756500px;}
.x21{left:119.137500px;}
.x1d{left:120.174000px;}
.xa{left:122.400000px;}
.xd{left:124.443000px;}
.x18{left:139.312500px;}
.x9{left:143.128500px;}
.x12{left:153.246000px;}
.xf{left:194.665500px;}
.x14{left:203.632500px;}
.x13{left:225.340500px;}
.x1c{left:227.967000px;}
.x20{left:233.632500px;}
.x10{left:268.107000px;}
.x5{left:269.206500px;}
.x15{left:270.597000px;}
.x6{left:279.078000px;}
.x11{left:282.549000px;}
.x1f{left:319.588500px;}
.x3{left:325.873500px;}
.x1{left:377.503500px;}
.x4{left:389.746500px;}
.x7{left:405.495000px;}
.x17{left:412.927500px;}
.x8{left:416.023500px;}
.x1b{left:504.549000px;}
.x1e{left:639.748500px;}
.x22{left:640.786500px;}
.x19{left:990.532500px;}
.x16{left:1220.535000px;}
@media print{
.v2{vertical-align:-23.136000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.141333pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2{letter-spacing:1.671842pt;}
.ls0{letter-spacing:2.658767pt;}
.ls4{letter-spacing:8.855412pt;}
.ls10{letter-spacing:15.303392pt;}
.ls8{letter-spacing:16.234472pt;}
.ls5{letter-spacing:16.506472pt;}
.lsa{letter-spacing:17.618509pt;}
.lsf{letter-spacing:17.708725pt;}
.ls1{letter-spacing:20.549605pt;}
.ls9{letter-spacing:20.554938pt;}
.lsc{letter-spacing:22.908725pt;}
.lsd{letter-spacing:22.914059pt;}
.ls11{letter-spacing:23.767392pt;}
.ls6{letter-spacing:26.569047pt;}
.lsb{letter-spacing:26.569682pt;}
.ls3{letter-spacing:26.836349pt;}
.lse{letter-spacing:27.154059pt;}
.ws35{word-spacing:-30.546660pt;}
.ws5b{word-spacing:-17.741398pt;}
.ws1{word-spacing:-14.396665pt;}
.ws24{word-spacing:-14.070753pt;}
.ws45{word-spacing:-13.994240pt;}
.ws2a{word-spacing:-12.507062pt;}
.ws11{word-spacing:-12.481145pt;}
.ws16{word-spacing:-12.428011pt;}
.ws51{word-spacing:-11.843539pt;}
.ws3a{word-spacing:-11.737271pt;}
.ws1e{word-spacing:-11.524736pt;}
.ws5c{word-spacing:-11.259066pt;}
.ws67{word-spacing:-11.247781pt;}
.ws41{word-spacing:-11.167247pt;}
.ws29{word-spacing:-10.940263pt;}
.ws47{word-spacing:-10.863761pt;}
.ws2e{word-spacing:-10.833995pt;}
.ws3b{word-spacing:-10.623923pt;}
.ws3d{word-spacing:-10.621460pt;}
.wsb{word-spacing:-10.558833pt;}
.ws2f{word-spacing:-10.515192pt;}
.ws1c{word-spacing:-10.408924pt;}
.ws68{word-spacing:-10.361104pt;}
.ws52{word-spacing:-10.302657pt;}
.ws3c{word-spacing:-10.264543pt;}
.ws53{word-spacing:-10.196389pt;}
.ws56{word-spacing:-10.090121pt;}
.ws4c{word-spacing:-9.930720pt;}
.ws26{word-spacing:-9.775761pt;}
.ws4e{word-spacing:-9.718184pt;}
.ws28{word-spacing:-9.505649pt;}
.ws2d{word-spacing:-9.452515pt;}
.ws33{word-spacing:-9.399381pt;}
.wse{word-spacing:-9.346247pt;}
.ws5d{word-spacing:-9.293113pt;}
.ws5a{word-spacing:-9.186846pt;}
.ws30{word-spacing:-9.133712pt;}
.ws0{word-spacing:-8.868042pt;}
.ws65{word-spacing:-8.847781pt;}
.ws54{word-spacing:-8.814908pt;}
.ws4b{word-spacing:-8.761775pt;}
.ws1a{word-spacing:-8.708641pt;}
.ws17{word-spacing:-8.687905pt;}
.ws37{word-spacing:-8.549239pt;}
.ws2b{word-spacing:-8.496105pt;}
.ws22{word-spacing:-8.336704pt;}
.ws4d{word-spacing:-8.283570pt;}
.ws3{word-spacing:-8.215613pt;}
.ws4a{word-spacing:-8.197728pt;}
.ws34{word-spacing:-8.177302pt;}
.wsc{word-spacing:-8.167793pt;}
.ws66{word-spacing:-8.129482pt;}
.ws5e{word-spacing:-8.071034pt;}
.ws4f{word-spacing:-7.911633pt;}
.ws10{word-spacing:-7.805365pt;}
.ws1f{word-spacing:-7.486562pt;}
.ws38{word-spacing:-7.433428pt;}
.ws9{word-spacing:-7.307018pt;}
.ws23{word-spacing:-7.220892pt;}
.ws40{word-spacing:-7.167759pt;}
.ws2c{word-spacing:-7.114625pt;}
.ws25{word-spacing:-7.046424pt;}
.wsf{word-spacing:-6.902089pt;}
.ws46{word-spacing:-6.848955pt;}
.ws60{word-spacing:-6.795822pt;}
.ws20{word-spacing:-6.477018pt;}
.ws57{word-spacing:-6.370751pt;}
.ws39{word-spacing:-6.317617pt;}
.ws7{word-spacing:-6.063677pt;}
.ws27{word-spacing:-5.786278pt;}
.ws58{word-spacing:-5.573743pt;}
.ws59{word-spacing:-5.361207pt;}
.ws44{word-spacing:-4.670467pt;}
.ws21{word-spacing:-4.457931pt;}
.ws49{word-spacing:-4.192262pt;}
.ws8{word-spacing:-3.720458pt;}
.ws3e{word-spacing:-3.554656pt;}
.ws6{word-spacing:-3.529175pt;}
.ws5{word-spacing:-3.385713pt;}
.wsa{word-spacing:-3.194429pt;}
.ws43{word-spacing:-2.886424pt;}
.ws69{word-spacing:-2.810782pt;}
.ws6a{word-spacing:-2.603559pt;}
.ws42{word-spacing:-2.491978pt;}
.ws14{word-spacing:-0.053134pt;}
.ws4{word-spacing:-0.047821pt;}
.ws32{word-spacing:0.000000pt;}
.ws36{word-spacing:0.111581pt;}
.ws62{word-spacing:0.478205pt;}
.ws63{word-spacing:0.589786pt;}
.ws61{word-spacing:0.601471pt;}
.ws6b{word-spacing:0.696054pt;}
.ws1d{word-spacing:8.767088pt;}
.ws15{word-spacing:8.773837pt;}
.ws13{word-spacing:8.826970pt;}
.ws64{word-spacing:9.351561pt;}
.ws12{word-spacing:14.718081pt;}
.ws18{word-spacing:14.983750pt;}
.ws72{word-spacing:15.005042pt;}
.ws19{word-spacing:17.810811pt;}
.ws1b{word-spacing:17.812411pt;}
.ws5f{word-spacing:19.708266pt;}
.ws2{word-spacing:20.722347pt;}
.ws3f{word-spacing:22.566710pt;}
.ws50{word-spacing:23.846639pt;}
.ws31{word-spacing:27.842146pt;}
.ws48{word-spacing:33.213980pt;}
.ws84{word-spacing:37.199020pt;}
.wsd{word-spacing:42.089838pt;}
.ws87{word-spacing:52.395306pt;}
.ws86{word-spacing:60.843591pt;}
.ws6f{word-spacing:80.680825pt;}
.ws85{word-spacing:96.230746pt;}
.ws80{word-spacing:97.559093pt;}
.ws70{word-spacing:113.764922pt;}
.ws71{word-spacing:113.924324pt;}
.ws6e{word-spacing:125.720042pt;}
.ws55{word-spacing:158.875575pt;}
.ws83{word-spacing:168.829910pt;}
.ws7a{word-spacing:185.176839pt;}
.ws75{word-spacing:195.537943pt;}
.ws7e{word-spacing:202.764149pt;}
.ws82{word-spacing:208.396338pt;}
.ws7c{word-spacing:213.072119pt;}
.ws79{word-spacing:217.535364pt;}
.ws74{word-spacing:227.843334pt;}
.ws7f{word-spacing:233.658540pt;}
.ws7d{word-spacing:238.238680pt;}
.ws77{word-spacing:241.126800pt;}
.ws7b{word-spacing:248.419129pt;}
.ws78{word-spacing:255.209637pt;}
.ws73{word-spacing:266.229601pt;}
.ws81{word-spacing:270.990395pt;}
.ws76{word-spacing:281.505587pt;}
.ws6c{word-spacing:290.169359pt;}
.ws6d{word-spacing:359.569864pt;}
._2{margin-left:-7.161606pt;}
._4{margin-left:-5.632247pt;}
._0{margin-left:-4.410111pt;}
._7{margin-left:-2.768303pt;}
._1{margin-left:-1.487748pt;}
._5{width:1.338982pt;}
._c{width:2.768303pt;}
._19{width:3.744567pt;}
._15{width:5.079580pt;}
._46{width:6.213260pt;}
._28{width:8.873356pt;}
._e{width:15.025564pt;}
._18{width:16.081292pt;}
._10{width:17.078208pt;}
._44{width:18.169759pt;}
._b{width:19.409941pt;}
._6{width:21.916351pt;}
._f{width:23.113232pt;}
._27{width:24.021850pt;}
._11{width:25.291721pt;}
._d{width:27.247038pt;}
._9{width:29.080350pt;}
._45{width:30.328802pt;}
._17{width:31.242714pt;}
._13{width:32.624194pt;}
._8{width:35.674317pt;}
._a{width:37.310831pt;}
._3{width:38.287050pt;}
._1a{width:42.661201pt;}
._14{width:53.148787pt;}
._23{width:63.760640pt;}
._5d{width:66.736137pt;}
._25{width:68.011349pt;}
._29{width:71.731200pt;}
._65{width:72.633996pt;}
._1d{width:73.962342pt;}
._4b{width:76.863434pt;}
._54{width:79.860202pt;}
._1e{width:81.294816pt;}
._12{width:84.164373pt;}
._47{width:97.968214pt;}
._49{width:100.051071pt;}
._53{width:103.185969pt;}
._6b{width:108.982902pt;}
._48{width:123.376838pt;}
._52{width:126.511737pt;}
._43{width:134.428683pt;}
._26{width:136.554037pt;}
._2b{width:139.896129pt;}
._2d{width:143.992779pt;}
._ad{width:146.118133pt;}
._4d{width:163.705443pt;}
._38{width:166.255869pt;}
._50{width:169.868972pt;}
._1f{width:175.012321pt;}
._4a{width:186.372333pt;}
._20{width:187.721951pt;}
._42{width:190.803715pt;}
._4f{width:193.194739pt;}
._2f{width:194.257417pt;}
._94{width:197.020378pt;}
._31{width:200.208410pt;}
._41{width:204.405985pt;}
._90{width:207.328348pt;}
._40{width:208.816096pt;}
._86{width:211.738459pt;}
._24{width:212.960538pt;}
._3e{width:219.272832pt;}
._3c{width:223.109106pt;}
._3f{width:232.407533pt;}
._51{width:235.967502pt;}
._7c{width:241.121487pt;}
._35{width:253.220031pt;}
._1c{width:259.548303pt;}
._2e{width:262.093387pt;}
._21{width:263.751172pt;}
._a4{width:267.996588pt;}
._6a{width:269.866909pt;}
._4c{width:273.161209pt;}
._9d{width:291.322355pt;}
._22{width:294.733558pt;}
._3d{width:300.312614pt;}
._4e{width:302.703638pt;}
._82{width:307.698222pt;}
._37{width:309.860733pt;}
._2c{width:311.348481pt;}
._73{width:316.040239pt;}
._97{width:332.139801pt;}
._71{width:342.718782pt;}
._ae{width:348.239362pt;}
._af{width:352.649473pt;}
._74{width:360.306092pt;}
._55{width:361.416561pt;}
._5b{width:381.766832pt;}
._8e{width:382.670108pt;}
._58{width:383.944841pt;}
._6e{width:385.491545pt;}
._a0{width:393.514758pt;}
._3a{width:396.059842pt;}
._9c{width:397.207516pt;}
._1b{width:403.126646pt;}
._77{width:405.081964pt;}
._70{width:412.425073pt;}
._a3{width:414.072223pt;}
._ac{width:418.110397pt;}
._69{width:420.979626pt;}
._9f{width:422.472716pt;}
._a1{width:429.002839pt;}
._30{width:430.278052pt;}
._33{width:433.567010pt;}
._ab{width:435.803974pt;}
._68{width:438.880397pt;}
._6f{width:444.730464pt;}
._a6{width:446.537015pt;}
._7b{width:448.003492pt;}
._39{width:449.560352pt;}
._aa{width:450.575189pt;}
._6d{width:455.197836pt;}
._7e{width:457.259421pt;}
._a2{width:461.467632pt;}
._5f{width:464.655664pt;}
._8c{width:468.215633pt;}
._7f{width:477.514060pt;}
._a9{width:479.533147pt;}
._5e{width:483.985756pt;}
._88{width:486.068612pt;}
._6c{width:487.503227pt;}
._75{width:492.859111pt;}
._a8{width:497.226724pt;}
._60{width:500.361622pt;}
._63{width:503.283985pt;}
._83{width:508.905539pt;}
._85{width:514.654633pt;}
._81{width:515.876711pt;}
._7d{width:517.523861pt;}
._8f{width:525.122004pt;}
._a7{width:526.078414pt;}
._64{width:530.329123pt;}
._5c{width:543.612590pt;}
._8a{width:545.100338pt;}
._9b{width:550.254323pt;}
._8b{width:553.654891pt;}
._9e{width:556.045915pt;}
._96{width:558.171269pt;}
._84{width:559.063909pt;}
._98{width:562.687648pt;}
._61{width:565.291207pt;}
._9a{width:568.898969pt;}
._67{width:570.180003pt;}
._92{width:571.752268pt;}
._95{width:573.091250pt;}
._76{width:576.066747pt;}
._79{width:579.871114pt;}
._62{width:581.975242pt;}
._72{width:590.529794pt;}
._91{width:596.587055pt;}
._89{width:597.915402pt;}
._59{width:600.306426pt;}
._5a{width:603.122521pt;}
._99{width:611.517671pt;}
._80{width:622.250713pt;}
._7a{width:623.462156pt;}
._93{width:627.404698pt;}
._66{width:628.467855pt;}
._87{width:630.698997pt;}
._56{width:656.787783pt;}
._a5{width:659.285018pt;}
._2a{width:662.791853pt;}
._78{width:667.669533pt;}
._8d{width:668.902247pt;}
._16{width:672.568484pt;}
._32{width:673.949965pt;}
._57{width:700.790065pt;}
._34{width:716.616460pt;}
._36{width:726.552493pt;}
._3b{width:876.389997pt;}
.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;}
.y2e{bottom:35.740000pt;}
.y2d{bottom:75.590667pt;}
.y122{bottom:83.562667pt;}
.y14f{bottom:85.156000pt;}
.yf0{bottom:91.024000pt;}
.y2c{bottom:98.177333pt;}
.ycf{bottom:99.818667pt;}
.y121{bottom:103.222667pt;}
.y14e{bottom:104.816000pt;}
.y5b{bottom:106.516000pt;}
.yef{bottom:110.684000pt;}
.y2b{bottom:114.117333pt;}
.yce{bottom:119.478667pt;}
.y120{bottom:122.350667pt;}
.y5a{bottom:122.456000pt;}
.y14d{bottom:123.944000pt;}
.yee{bottom:129.812000pt;}
.y2a{bottom:130.057333pt;}
.y59{bottom:138.396000pt;}
.ycd{bottom:138.606667pt;}
.y11f{bottom:141.478667pt;}
.y14c{bottom:143.072000pt;}
.yed{bottom:148.940000pt;}
.ycc{bottom:157.734667pt;}
.y11e{bottom:160.606667pt;}
.y14b{bottom:162.201333pt;}
.y58{bottom:162.913333pt;}
.y29{bottom:163.724000pt;}
.yec{bottom:168.068000pt;}
.ycb{bottom:176.862667pt;}
.y28{bottom:179.665333pt;}
.y11d{bottom:179.734667pt;}
.y14a{bottom:181.329333pt;}
.yeb{bottom:187.197333pt;}
.y27{bottom:195.605333pt;}
.yca{bottom:195.990667pt;}
.y11c{bottom:198.862667pt;}
.y57{bottom:200.093333pt;}
.y149{bottom:200.457333pt;}
.yea{bottom:206.325333pt;}
.y26{bottom:211.545333pt;}
.yc9{bottom:215.118667pt;}
.y56{bottom:216.033333pt;}
.y11b{bottom:217.992000pt;}
.y148{bottom:219.585333pt;}
.ye9{bottom:225.453333pt;}
.y55{bottom:231.973333pt;}
.yc8{bottom:234.248000pt;}
.y25{bottom:236.122667pt;}
.y11a{bottom:237.120000pt;}
.y9a{bottom:238.198667pt;}
.y147{bottom:238.713333pt;}
.ye8{bottom:244.581333pt;}
.y54{bottom:247.914667pt;}
.y24{bottom:252.062667pt;}
.yc7{bottom:253.376000pt;}
.y99{bottom:254.138667pt;}
.y119{bottom:256.248000pt;}
.y146{bottom:257.841333pt;}
.ye7{bottom:263.709333pt;}
.y53{bottom:263.854667pt;}
.y23{bottom:268.002667pt;}
.yc6{bottom:272.504000pt;}
.y118{bottom:275.376000pt;}
.y98{bottom:275.393333pt;}
.y145{bottom:276.969333pt;}
.y52{bottom:279.794667pt;}
.ye6{bottom:282.837333pt;}
.yc5{bottom:291.632000pt;}
.y22{bottom:292.580000pt;}
.y117{bottom:294.504000pt;}
.y51{bottom:295.734667pt;}
.y144{bottom:296.098667pt;}
.y97{bottom:296.646667pt;}
.ye5{bottom:301.965333pt;}
.y7c{bottom:305.893333pt;}
.yc4{bottom:310.760000pt;}
.y50{bottom:311.674667pt;}
.y116{bottom:313.632000pt;}
.y21{bottom:315.166667pt;}
.y143{bottom:315.226667pt;}
.y96{bottom:317.900000pt;}
.ye4{bottom:321.094667pt;}
.y7b{bottom:321.834667pt;}
.y4f{bottom:327.614667pt;}
.yc3{bottom:329.888000pt;}
.y115{bottom:332.760000pt;}
.y142{bottom:334.354667pt;}
.y7a{bottom:337.774667pt;}
.y95{bottom:339.153333pt;}
.ye3{bottom:340.222667pt;}
.y4e{bottom:343.556000pt;}
.y20{bottom:344.257333pt;}
.yc2{bottom:349.016000pt;}
.y114{bottom:351.889333pt;}
.y141{bottom:353.482667pt;}
.ye2{bottom:359.350667pt;}
.y94{bottom:360.408000pt;}
.y79{bottom:362.292000pt;}
.yc1{bottom:368.145333pt;}
.y113{bottom:371.017333pt;}
.y140{bottom:372.610667pt;}
.y4d{bottom:372.646667pt;}
.y93{bottom:376.348000pt;}
.ye1{bottom:378.478667pt;}
.yc0{bottom:387.273333pt;}
.y1f{bottom:387.324000pt;}
.y112{bottom:390.145333pt;}
.y13f{bottom:391.738667pt;}
.ye0{bottom:397.606667pt;}
.y78{bottom:402.792000pt;}
.y1e{bottom:403.264000pt;}
.y92{bottom:405.438667pt;}
.ybf{bottom:406.401333pt;}
.y111{bottom:409.273333pt;}
.y13e{bottom:410.868000pt;}
.ydf{bottom:416.734667pt;}
.y1d{bottom:419.205333pt;}
.y4c{bottom:419.889333pt;}
.ybe{bottom:425.529333pt;}
.y110{bottom:428.401333pt;}
.y13d{bottom:429.996000pt;}
.y77{bottom:433.633333pt;}
.y1c{bottom:435.145333pt;}
.yde{bottom:435.862667pt;}
.ybd{bottom:444.657333pt;}
.y10f{bottom:447.529333pt;}
.y13c{bottom:449.124000pt;}
.y91{bottom:449.362667pt;}
.y4b{bottom:450.732000pt;}
.y1b{bottom:451.085333pt;}
.y76{bottom:452.761333pt;}
.ydd{bottom:454.992000pt;}
.yaf{bottom:458.142667pt;}
.ybc{bottom:463.785333pt;}
.y90{bottom:465.302667pt;}
.y10e{bottom:466.657333pt;}
.y1a{bottom:467.025333pt;}
.y13b{bottom:468.252000pt;}
.y4a{bottom:469.860000pt;}
.y75{bottom:471.889333pt;}
.ydc{bottom:474.120000pt;}
.ybb{bottom:482.913333pt;}
.y19{bottom:482.965333pt;}
.y10d{bottom:485.786667pt;}
.y13a{bottom:487.380000pt;}
.y49{bottom:488.988000pt;}
.y74{bottom:491.018667pt;}
.y8f{bottom:491.869333pt;}
.ydb{bottom:493.248000pt;}
.y18{bottom:498.905333pt;}
.yba{bottom:502.042667pt;}
.y10c{bottom:504.914667pt;}
.y139{bottom:506.508000pt;}
.y8e{bottom:507.809333pt;}
.y48{bottom:508.116000pt;}
.y73{bottom:510.146667pt;}
.yda{bottom:512.376000pt;}
.y17{bottom:514.846667pt;}
.yb9{bottom:521.170667pt;}
.y8d{bottom:523.749333pt;}
.y10b{bottom:524.042667pt;}
.y138{bottom:525.636000pt;}
.y47{bottom:527.244000pt;}
.y72{bottom:529.274667pt;}
.y16{bottom:530.786667pt;}
.yd9{bottom:531.504000pt;}
.yb8{bottom:540.298667pt;}
.y10a{bottom:543.170667pt;}
.y137{bottom:544.765333pt;}
.y46{bottom:546.373333pt;}
.y15{bottom:546.726667pt;}
.y71{bottom:548.402667pt;}
.yd8{bottom:550.632000pt;}
.y8c{bottom:558.273333pt;}
.yb7{bottom:559.426667pt;}
.y109{bottom:562.298667pt;}
.y14{bottom:562.666667pt;}
.y136{bottom:563.893333pt;}
.y45{bottom:565.501333pt;}
.y70{bottom:568.062667pt;}
.yd7{bottom:569.760000pt;}
.yb6{bottom:578.554667pt;}
.y13{bottom:578.606667pt;}
.y108{bottom:581.426667pt;}
.y135{bottom:583.021333pt;}
.y44{bottom:584.629333pt;}
.y8b{bottom:584.840000pt;}
.yd6{bottom:588.889333pt;}
.yb5{bottom:597.682667pt;}
.y107{bottom:600.554667pt;}
.y6f{bottom:601.834667pt;}
.y134{bottom:602.149333pt;}
.y43{bottom:603.757333pt;}
.y12{bottom:607.698667pt;}
.yd5{bottom:608.017333pt;}
.yae{bottom:611.233333pt;}
.yb4{bottom:616.810667pt;}
.y6e{bottom:617.774667pt;}
.y8a{bottom:619.364000pt;}
.y106{bottom:619.684000pt;}
.y133{bottom:621.277333pt;}
.y42{bottom:622.885333pt;}
.yd4{bottom:627.145333pt;}
.y6d{bottom:633.714667pt;}
.y89{bottom:635.304000pt;}
.yb3{bottom:635.940000pt;}
.y105{bottom:638.812000pt;}
.y132{bottom:640.405333pt;}
.yad{bottom:642.076000pt;}
.y41{bottom:642.545333pt;}
.yd3{bottom:646.273333pt;}
.y11{bottom:650.765333pt;}
.y88{bottom:651.244000pt;}
.yb2{bottom:655.598667pt;}
.y104{bottom:657.940000pt;}
.y131{bottom:659.533333pt;}
.yac{bottom:661.204000pt;}
.y10{bottom:665.376000pt;}
.yd2{bottom:665.401333pt;}
.y6c{bottom:671.558667pt;}
.y40{bottom:673.734667pt;}
.y87{bottom:675.761333pt;}
.y103{bottom:677.068000pt;}
.y130{bottom:678.662667pt;}
.yf{bottom:679.988000pt;}
.yab{bottom:680.332000pt;}
.yd1{bottom:685.061333pt;}
.yb1{bottom:688.780000pt;}
.y3f{bottom:689.674667pt;}
.ye{bottom:694.600000pt;}
.y102{bottom:696.196000pt;}
.y12f{bottom:697.790667pt;}
.yaa{bottom:699.460000pt;}
.y6b{bottom:702.400000pt;}
.yb0{bottom:704.720000pt;}
.yd{bottom:709.212000pt;}
.y101{bottom:715.324000pt;}
.y86{bottom:715.524000pt;}
.y12e{bottom:716.918667pt;}
.yd0{bottom:718.110667pt;}
.ya9{bottom:718.589333pt;}
.y3e{bottom:718.766667pt;}
.y6a{bottom:721.528000pt;}
.yc{bottom:723.824000pt;}
.y100{bottom:734.452000pt;}
.y12d{bottom:736.046667pt;}
.ya8{bottom:737.717333pt;}
.yb{bottom:738.436000pt;}
.y69{bottom:740.656000pt;}
.y85{bottom:745.553333pt;}
.ya{bottom:753.048000pt;}
.yff{bottom:753.581333pt;}
.y12c{bottom:755.174667pt;}
.ya7{bottom:756.845333pt;}
.y68{bottom:759.784000pt;}
.y3d{bottom:762.689333pt;}
.y84{bottom:764.682667pt;}
.y9{bottom:767.660000pt;}
.yfe{bottom:772.709333pt;}
.y12b{bottom:774.302667pt;}
.ya6{bottom:775.973333pt;}
.y3c{bottom:778.629333pt;}
.y67{bottom:778.913333pt;}
.y8{bottom:783.508000pt;}
.y83{bottom:783.810667pt;}
.yfd{bottom:791.837333pt;}
.y12a{bottom:793.430667pt;}
.y3b{bottom:794.569333pt;}
.ya5{bottom:795.101333pt;}
.y66{bottom:798.572000pt;}
.y82{bottom:802.938667pt;}
.y3a{bottom:810.509333pt;}
.yfc{bottom:810.965333pt;}
.y129{bottom:812.560000pt;}
.ya4{bottom:814.229333pt;}
.y81{bottom:822.066667pt;}
.y7{bottom:826.349333pt;}
.yfb{bottom:830.093333pt;}
.y128{bottom:831.688000pt;}
.y65{bottom:833.081333pt;}
.ya3{bottom:833.357333pt;}
.y80{bottom:841.194667pt;}
.y39{bottom:845.033333pt;}
.y64{bottom:849.022667pt;}
.yfa{bottom:849.221333pt;}
.y127{bottom:850.816000pt;}
.ya2{bottom:852.486667pt;}
.y6{bottom:857.929333pt;}
.y7f{bottom:860.322667pt;}
.y38{bottom:860.973333pt;}
.yf9{bottom:868.350667pt;}
.y126{bottom:869.944000pt;}
.ya1{bottom:871.614667pt;}
.y37{bottom:876.913333pt;}
.y7e{bottom:879.450667pt;}
.y63{bottom:886.865333pt;}
.yf8{bottom:887.478667pt;}
.y125{bottom:889.604000pt;}
.ya0{bottom:890.742667pt;}
.y36{bottom:892.854667pt;}
.y5{bottom:893.588000pt;}
.y7d{bottom:898.580000pt;}
.yf7{bottom:906.606667pt;}
.y35{bottom:908.794667pt;}
.y9f{bottom:909.870667pt;}
.y4{bottom:910.120000pt;}
.y62{bottom:917.708000pt;}
.y124{bottom:923.552000pt;}
.y34{bottom:924.734667pt;}
.yf6{bottom:925.734667pt;}
.y9e{bottom:928.998667pt;}
.y61{bottom:936.836000pt;}
.yf5{bottom:944.862667pt;}
.y9d{bottom:948.126667pt;}
.y3{bottom:948.637333pt;}
.y60{bottom:955.964000pt;}
.y33{bottom:959.257333pt;}
.yf4{bottom:963.990667pt;}
.y9c{bottom:967.254667pt;}
.y5f{bottom:975.092000pt;}
.y32{bottom:975.198667pt;}
.y2{bottom:977.861333pt;}
.yf3{bottom:983.650667pt;}
.y9b{bottom:986.914667pt;}
.y5e{bottom:994.220000pt;}
.y31{bottom:1001.765333pt;}
.y5d{bottom:1013.348000pt;}
.y123{bottom:1013.880000pt;}
.yf2{bottom:1017.598667pt;}
.y30{bottom:1017.705333pt;}
.y5c{bottom:1033.008000pt;}
.yf1{bottom:1033.540000pt;}
.y2f{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.928037pt;}
.hb{height:39.903534pt;}
.h2{height:39.956668pt;}
.hc{height:44.696508pt;}
.h7{height:45.589163pt;}
.h4{height:53.066402pt;}
.h9{height:53.712173pt;}
.h3{height:65.005350pt;}
.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;}
.x1a{left:35.740000pt;}
.xb{left:75.590667pt;}
.xc{left:95.517333pt;}
.x2{left:97.304000pt;}
.xe{left:102.894667pt;}
.x21{left:105.900000pt;}
.x1d{left:106.821333pt;}
.xa{left:108.800000pt;}
.xd{left:110.616000pt;}
.x18{left:123.833333pt;}
.x9{left:127.225333pt;}
.x12{left:136.218667pt;}
.xf{left:173.036000pt;}
.x14{left:181.006667pt;}
.x13{left:200.302667pt;}
.x1c{left:202.637333pt;}
.x20{left:207.673333pt;}
.x10{left:238.317333pt;}
.x5{left:239.294667pt;}
.x15{left:240.530667pt;}
.x6{left:248.069333pt;}
.x11{left:251.154667pt;}
.x1f{left:284.078667pt;}
.x3{left:289.665333pt;}
.x1{left:335.558667pt;}
.x4{left:346.441333pt;}
.x7{left:360.440000pt;}
.x17{left:367.046667pt;}
.x8{left:369.798667pt;}
.x1b{left:448.488000pt;}
.x1e{left:568.665333pt;}
.x22{left:569.588000pt;}
.x19{left:880.473333pt;}
.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; }
  