
    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_2bf6918d21ad4a803d4e8cd7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.902000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c1c325d84feab5386eeb5f91.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_48f27b332015d2ba317e31f8.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b4b488904e1991bb40bfbf1f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.308000;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_d081cbc87d1330664d56014e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.049000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f50b8428c013b2d58051fab0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.697000;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_bc7b3047b37d1476c7e7a7e2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.004000;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_5b0b7ce172ecf0a567bf5417.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.612000;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_47452973fa13d0d69fbbcbd4.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_85f73b3d97ce1439241ffee6.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.004000;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_154d14fdf05e854d7259aa11.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_5e648ce4a3a6e1c72a15d130.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_b7a83ce5f6359f6f83154b6c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.697000;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_6743c1d95d001d17cbc64300.woff2')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_79f190840ad08798668515c9.woff2')format("woff");}.fff{font-family:fff;line-height:0.699000;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_78f9906d780bc91cbf357177.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.108000;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_65715d0dffca9941c8c42a2f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.301000;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.690000px;}
.v3{vertical-align:22.854000px;}
.ls8{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000557px;}
.ls0{letter-spacing:0.000564px;}
.lse{letter-spacing:0.001002px;}
.ls11{letter-spacing:0.002246px;}
.ls7{letter-spacing:2.986118px;}
.lsa{letter-spacing:2.986894px;}
.ls10{letter-spacing:12.282557px;}
.lsf{letter-spacing:12.283002px;}
.lsd{letter-spacing:12.288557px;}
.ls3{letter-spacing:16.529937px;}
.ls4{letter-spacing:16.535937px;}
.ls5{letter-spacing:18.425937px;}
.ls12{letter-spacing:18.428246px;}
.ls6{letter-spacing:18.730894px;}
.lsb{letter-spacing:27.598894px;}
.ls9{letter-spacing:29.883008px;}
.ls1{letter-spacing:30.624532px;}
.ls2{letter-spacing:30.630532px;}
.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;}
}
.ws3{word-spacing:-29.881822px;}
.ws26{word-spacing:-27.641618px;}
.ws89{word-spacing:-16.611639px;}
.ws63{word-spacing:-16.372537px;}
.ws5f{word-spacing:-16.133434px;}
.ws9a{word-spacing:-15.774781px;}
.ws57{word-spacing:-15.715005px;}
.ws3c{word-spacing:-15.595454px;}
.ws4c{word-spacing:-14.997698px;}
.ws68{word-spacing:-14.937922px;}
.wsea{word-spacing:-14.730002px;}
.wsc3{word-spacing:-14.579269px;}
.wsa0{word-spacing:-14.519493px;}
.ws6e{word-spacing:-14.399942px;}
.wsc7{word-spacing:-14.340166px;}
.wscc{word-spacing:-14.280391px;}
.ws23{word-spacing:-14.160840px;}
.ws24{word-spacing:-14.101064px;}
.wsf{word-spacing:-14.084421px;}
.ws7e{word-spacing:-13.861962px;}
.ws95{word-spacing:-13.742410px;}
.ws73{word-spacing:-13.622859px;}
.ws32{word-spacing:-13.503308px;}
.ws81{word-spacing:-13.443532px;}
.ws10a{word-spacing:-13.438840px;}
.ws52{word-spacing:-13.323981px;}
.ws60{word-spacing:-13.264206px;}
.ws84{word-spacing:-13.144654px;}
.wsf5{word-spacing:-13.116050px;}
.ws3e{word-spacing:-13.084879px;}
.ws94{word-spacing:-13.025103px;}
.wse2{word-spacing:-13.008453px;}
.ws8d{word-spacing:-12.965328px;}
.ws87{word-spacing:-12.905552px;}
.wse1{word-spacing:-12.900856px;}
.wsb4{word-spacing:-12.847058px;}
.ws75{word-spacing:-12.845776px;}
.ws71{word-spacing:-12.606674px;}
.ws28{word-spacing:-12.546898px;}
.wsd{word-spacing:-12.524268px;}
.ws2f{word-spacing:-12.487123px;}
.wsd7{word-spacing:-12.416671px;}
.ws29{word-spacing:-12.367572px;}
.ws59{word-spacing:-12.307796px;}
.ws8b{word-spacing:-12.248020px;}
.ws10b{word-spacing:-12.201477px;}
.ws80{word-spacing:-12.068694px;}
.ws77{word-spacing:-12.008918px;}
.wsca{word-spacing:-11.949142px;}
.ws64{word-spacing:-11.889367px;}
.wsf4{word-spacing:-11.878687px;}
.wsde{word-spacing:-11.717292px;}
.ws98{word-spacing:-11.710040px;}
.ws12{word-spacing:-11.663493px;}
.ws8c{word-spacing:-11.650264px;}
.ws6d{word-spacing:-11.590489px;}
.wsb{word-spacing:-11.555896px;}
.ws51{word-spacing:-11.530713px;}
.ws22{word-spacing:-11.470938px;}
.wse0{word-spacing:-11.448300px;}
.ws6f{word-spacing:-11.411162px;}
.wsfa{word-spacing:-11.394501px;}
.wsf6{word-spacing:-11.340703px;}
.ws42{word-spacing:-11.291611px;}
.wsfc{word-spacing:-11.233106px;}
.wsc5{word-spacing:-11.172060px;}
.ws1b{word-spacing:-11.125509px;}
.ws39{word-spacing:-11.052508px;}
.wsbf{word-spacing:-10.910316px;}
.ws9c{word-spacing:-10.873182px;}
.wse{word-spacing:-10.856517px;}
.wsa8{word-spacing:-10.813406px;}
.ws53{word-spacing:-10.753630px;}
.wsf9{word-spacing:-10.695122px;}
.ws70{word-spacing:-10.634079px;}
.wsee{word-spacing:-10.587525px;}
.ws102{word-spacing:-10.479928px;}
.ws7f{word-spacing:-10.454752px;}
.ws65{word-spacing:-10.394977px;}
.wse8{word-spacing:-10.372332px;}
.ws6a{word-spacing:-10.335201px;}
.ws54{word-spacing:-10.275426px;}
.wsd5{word-spacing:-10.264735px;}
.ws7a{word-spacing:-10.215650px;}
.ws106{word-spacing:-10.157138px;}
.ws6c{word-spacing:-10.155874px;}
.ws44{word-spacing:-10.096099px;}
.ws79{word-spacing:-10.036323px;}
.ws1{word-spacing:-9.976548px;}
.wsfb{word-spacing:-9.834348px;}
.ws96{word-spacing:-9.797221px;}
.ws85{word-spacing:-9.737445px;}
.ws36{word-spacing:-9.677670px;}
.wsfe{word-spacing:-9.619154px;}
.ws82{word-spacing:-9.617894px;}
.ws66{word-spacing:-9.558118px;}
.ws21{word-spacing:-9.498343px;}
.wsa4{word-spacing:-9.438567px;}
.wsb2{word-spacing:-9.296364px;}
.wsae{word-spacing:-9.259240px;}
.ws4{word-spacing:-9.242565px;}
.wsff{word-spacing:-9.218868px;}
.wsd8{word-spacing:-9.207012px;}
.ws1d{word-spacing:-9.201917px;}
.ws3b{word-spacing:-9.199465px;}
.ws1c{word-spacing:-9.188999px;}
.ws6{word-spacing:-9.188767px;}
.ws83{word-spacing:-9.079914px;}
.ws69{word-spacing:-9.020138px;}
.wscf{word-spacing:-8.840811px;}
.ws111{word-spacing:-8.812178px;}
.ws55{word-spacing:-8.781036px;}
.ws49{word-spacing:-8.721260px;}
.ws48{word-spacing:-8.661484px;}
.wsfd{word-spacing:-8.543186px;}
.ws9f{word-spacing:-8.482158px;}
.wse9{word-spacing:-8.445627px;}
.ws67{word-spacing:-8.422382px;}
.ws72{word-spacing:-8.362606px;}
.ws8{word-spacing:-8.327992px;}
.ws8f{word-spacing:-8.302831px;}
.wsef{word-spacing:-8.274194px;}
.ws3d{word-spacing:-8.243055px;}
.ws3a{word-spacing:-8.183280px;}
.wsa1{word-spacing:-8.123504px;}
.ws2a{word-spacing:-8.063728px;}
.ws91{word-spacing:-8.003953px;}
.wsa2{word-spacing:-7.944177px;}
.ws5c{word-spacing:-7.884402px;}
.ws43{word-spacing:-7.824626px;}
.ws2e{word-spacing:-7.764850px;}
.wsa5{word-spacing:-7.705075px;}
.ws20{word-spacing:-7.645299px;}
.wsab{word-spacing:-7.525748px;}
.wsa{word-spacing:-7.521016px;}
.ws8a{word-spacing:-7.406197px;}
.ws50{word-spacing:-7.226870px;}
.wsdf{word-spacing:-7.198226px;}
.ws58{word-spacing:-7.107319px;}
.ws5d{word-spacing:-7.047543px;}
.wsf3{word-spacing:-7.036831px;}
.ws4a{word-spacing:-6.987768px;}
.ws13{word-spacing:-6.929234px;}
.ws33{word-spacing:-6.868216px;}
.wsf8{word-spacing:-6.821637px;}
.ws7d{word-spacing:-6.808441px;}
.wscd{word-spacing:-6.748665px;}
.wsc{word-spacing:-6.660242px;}
.ws5b{word-spacing:-6.629114px;}
.wsf7{word-spacing:-6.606444px;}
.ws5a{word-spacing:-6.569338px;}
.ws47{word-spacing:-6.509563px;}
.wse7{word-spacing:-6.498847px;}
.ws90{word-spacing:-6.449787px;}
.ws16{word-spacing:-6.445048px;}
.wsf1{word-spacing:-6.283653px;}
.ws56{word-spacing:-6.270460px;}
.ws9{word-spacing:-6.176056px;}
.ws46{word-spacing:-6.150909px;}
.ws10{word-spacing:-6.122258px;}
.wsc6{word-spacing:-6.091134px;}
.ws74{word-spacing:-6.031358px;}
.ws37{word-spacing:-5.971582px;}
.ws6b{word-spacing:-5.852031px;}
.ws34{word-spacing:-5.732480px;}
.wsd6{word-spacing:-5.691871px;}
.ws9e{word-spacing:-5.672704px;}
.wsa7{word-spacing:-5.612929px;}
.ws9b{word-spacing:-5.553153px;}
.wsf0{word-spacing:-5.530476px;}
.ws88{word-spacing:-5.493378px;}
.wsa9{word-spacing:-5.433602px;}
.ws25{word-spacing:-5.373826px;}
.ws3f{word-spacing:-5.314051px;}
.ws31{word-spacing:-5.254275px;}
.ws61{word-spacing:-5.194500px;}
.ws11{word-spacing:-5.153887px;}
.ws38{word-spacing:-5.134724px;}
.ws100{word-spacing:-5.046290px;}
.wsc8{word-spacing:-4.895622px;}
.wsc9{word-spacing:-4.835846px;}
.wsd1{word-spacing:-4.777298px;}
.wsc4{word-spacing:-4.776070px;}
.ws7c{word-spacing:-4.716295px;}
.wsf2{word-spacing:-4.669701px;}
.wsce{word-spacing:-4.596744px;}
.ws62{word-spacing:-4.536968px;}
.ws1f{word-spacing:-4.477192px;}
.ws2b{word-spacing:-4.417417px;}
.ws15{word-spacing:-4.400709px;}
.ws93{word-spacing:-4.357641px;}
.ws14{word-spacing:-4.185516px;}
.ws9d{word-spacing:-4.118539px;}
.ws4f{word-spacing:-4.058763px;}
.wsa6{word-spacing:-3.998988px;}
.ws4e{word-spacing:-3.939212px;}
.ws112{word-spacing:-3.647532px;}
.ws18{word-spacing:-3.593733px;}
.wsaa{word-spacing:-3.580558px;}
.ws10d{word-spacing:-3.539935px;}
.wsa3{word-spacing:-3.401232px;}
.ws2c{word-spacing:-3.341456px;}
.ws78{word-spacing:-3.281680px;}
.ws109{word-spacing:-3.270943px;}
.ws8e{word-spacing:-3.162129px;}
.ws113{word-spacing:-3.109548px;}
.ws35{word-spacing:-3.102354px;}
.wsad{word-spacing:-3.042578px;}
.ws92{word-spacing:-2.982802px;}
.ws7b{word-spacing:-2.923027px;}
.ws40{word-spacing:-2.803476px;}
.ws2d{word-spacing:-2.743700px;}
.ws86{word-spacing:-2.683924px;}
.ws5e{word-spacing:-2.564373px;}
.ws10f{word-spacing:-2.463967px;}
.ws19{word-spacing:-2.410168px;}
.wsac{word-spacing:-2.325271px;}
.ws97{word-spacing:-2.205720px;}
.ws17{word-spacing:-2.141176px;}
.ws30{word-spacing:-1.548188px;}
.ws110{word-spacing:-1.441797px;}
.ws107{word-spacing:-1.011410px;}
.ws45{word-spacing:-0.950432px;}
.ws105{word-spacing:-0.850015px;}
.ws4b{word-spacing:-0.830881px;}
.ws101{word-spacing:-0.581023px;}
.wscb{word-spacing:-0.532003px;}
.ws41{word-spacing:-0.472227px;}
.ws10c{word-spacing:-0.096837px;}
.ws5{word-spacing:-0.053798px;}
.ws2{word-spacing:-0.041843px;}
.ws27{word-spacing:0.000000px;}
.ws103{word-spacing:0.172155px;}
.ws108{word-spacing:0.387348px;}
.ws10e{word-spacing:0.925332px;}
.ws104{word-spacing:0.979131px;}
.ws76{word-spacing:10.544486px;}
.wsdd{word-spacing:11.631214px;}
.wsb0{word-spacing:12.230206px;}
.wsb1{word-spacing:12.236206px;}
.wsd4{word-spacing:12.491988px;}
.wsd9{word-spacing:13.298964px;}
.wsb3{word-spacing:14.744047px;}
.wsd2{word-spacing:16.311675px;}
.wsbc{word-spacing:18.371570px;}
.wsda{word-spacing:18.786401px;}
.wsdb{word-spacing:19.270587px;}
.wsd3{word-spacing:19.700974px;}
.wsbd{word-spacing:21.392830px;}
.wsdc{word-spacing:24.542830px;}
.ws4d{word-spacing:26.827469px;}
.ws1a{word-spacing:27.606115px;}
.ws7{word-spacing:29.834008px;}
.ws0{word-spacing:31.418178px;}
.wsd0{word-spacing:33.468812px;}
.ws99{word-spacing:34.376948px;}
.wsed{word-spacing:35.302510px;}
.wseb{word-spacing:36.539873px;}
.wse5{word-spacing:41.435528px;}
.wse6{word-spacing:41.489326px;}
.wse3{word-spacing:41.704520px;}
.wsec{word-spacing:45.793198px;}
.wse4{word-spacing:58.866209px;}
.wsc0{word-spacing:59.015629px;}
.wsb5{word-spacing:59.716224px;}
.wsaf{word-spacing:62.521336px;}
.ws1e{word-spacing:80.625869px;}
.wsba{word-spacing:83.990062px;}
.wsb9{word-spacing:88.106949px;}
.wsbb{word-spacing:91.683233px;}
.wsb8{word-spacing:92.328814px;}
.wsb7{word-spacing:120.814424px;}
.wsb6{word-spacing:122.881283px;}
.wsbe{word-spacing:137.033889px;}
.wsc2{word-spacing:143.543628px;}
.wsc1{word-spacing:162.719981px;}
._18{margin-left:-7.101389px;}
._c{margin-left:-5.759966px;}
._3{margin-left:-4.626662px;}
._0{margin-left:-2.668393px;}
._4{margin-left:-1.506355px;}
._2{width:1.673717px;}
._1{width:2.989728px;}
._6{width:10.042301px;}
._5{width:17.134196px;}
._8{width:18.389376px;}
._b{width:19.847921px;}
._a{width:20.959727px;}
._d{width:22.824736px;}
._24{width:23.875708px;}
._11{width:24.904916px;}
._f{width:26.877511px;}
._9{width:28.144764px;}
._25{width:29.911910px;}
._20{width:43.873189px;}
._26{width:47.960680px;}
._1d{width:59.048292px;}
._10{width:68.741940px;}
._1f{width:72.036058px;}
._e{width:80.697600px;}
._12{width:104.760668px;}
._19{width:106.160767px;}
._1e{width:114.326292px;}
._14{width:118.569444px;}
._15{width:119.970432px;}
._22{width:126.587635px;}
._16{width:127.663603px;}
._17{width:132.613056px;}
._13{width:137.768252px;}
._23{width:143.049946px;}
._27{width:146.739312px;}
._7{width:170.648525px;}
._1c{width:182.968358px;}
._1b{width:201.851597px;}
._1a{width:209.006784px;}
._21{width:211.069146px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs4{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs5{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y9f{bottom:193.617000px;}
.y157{bottom:193.824000px;}
.y27{bottom:199.330500px;}
.y110{bottom:202.744500px;}
.y156{bottom:210.261000px;}
.y9e{bottom:211.549500px;}
.y12e{bottom:213.250500px;}
.yf1{bottom:213.847500px;}
.y78{bottom:215.769000px;}
.yb9{bottom:220.441500px;}
.y26{bottom:220.528500px;}
.y10f{bottom:220.678500px;}
.y155{bottom:226.699500px;}
.y9d{bottom:229.482000px;}
.y12d{bottom:229.689000px;}
.yf0{bottom:231.780000px;}
.y52{bottom:234.171000px;}
.y7f{bottom:237.757500px;}
.yb8{bottom:238.374000px;}
.y25{bottom:238.461000px;}
.y10e{bottom:238.611000px;}
.y77{bottom:240.148500px;}
.y154{bottom:243.138000px;}
.y12c{bottom:246.127500px;}
.y9c{bottom:247.414500px;}
.yef{bottom:249.712500px;}
.y51{bottom:252.105000px;}
.y7e{bottom:255.691500px;}
.yb7{bottom:256.306500px;}
.y24{bottom:256.393500px;}
.y76{bottom:258.082500px;}
.y153{bottom:259.576500px;}
.y12b{bottom:262.564500px;}
.y9b{bottom:265.347000px;}
.yee{bottom:267.646500px;}
.y10d{bottom:268.498500px;}
.y50{bottom:270.037500px;}
.y7d{bottom:273.624000px;}
.yb6{bottom:274.239000px;}
.y23{bottom:274.326000px;}
.y75{bottom:276.015000px;}
.yc8{bottom:277.749000px;}
.y9a{bottom:283.279500px;}
.yed{bottom:285.579000px;}
.y4f{bottom:287.970000px;}
.y7c{bottom:291.556500px;}
.yb5{bottom:292.171500px;}
.y22{bottom:292.258500px;}
.y152{bottom:292.453500px;}
.y74{bottom:293.947500px;}
.yc7{bottom:295.681500px;}
.y12a{bottom:296.937000px;}
.y99{bottom:301.213500px;}
.yec{bottom:303.511500px;}
.y4e{bottom:305.902500px;}
.y151{bottom:308.892000px;}
.y7b{bottom:309.489000px;}
.yb4{bottom:310.104000px;}
.y21{bottom:310.191000px;}
.y73{bottom:311.880000px;}
.yc6{bottom:313.614000px;}
.y98{bottom:319.146000px;}
.yeb{bottom:321.444000px;}
.y4d{bottom:323.835000px;}
.y150{bottom:325.330500px;}
.y10c{bottom:326.962500px;}
.y7a{bottom:327.421500px;}
.yb3{bottom:328.038000px;}
.y20{bottom:328.125000px;}
.y72{bottom:329.812500px;}
.yc5{bottom:331.546500px;}
.y97{bottom:337.078500px;}
.yea{bottom:339.376500px;}
.y4c{bottom:341.767500px;}
.y14f{bottom:341.769000px;}
.y129{bottom:344.757000px;}
.yb2{bottom:345.970500px;}
.y10b{bottom:346.689000px;}
.y71{bottom:347.745000px;}
.yc4{bottom:349.480500px;}
.y79{bottom:357.310500px;}
.y14e{bottom:358.207500px;}
.y4b{bottom:359.701500px;}
.y1f{bottom:360.429000px;}
.y128{bottom:361.195500px;}
.yb1{bottom:363.903000px;}
.y70{bottom:365.679000px;}
.y96{bottom:366.352500px;}
.y10a{bottom:366.414000px;}
.yc3{bottom:367.413000px;}
.y14d{bottom:374.644500px;}
.ye9{bottom:375.243000px;}
.y4a{bottom:377.634000px;}
.yb0{bottom:381.835500px;}
.y6f{bottom:383.611500px;}
.yc2{bottom:385.345500px;}
.y109{bottom:386.140500px;}
.y14c{bottom:391.083000px;}
.ye8{bottom:393.175500px;}
.y49{bottom:395.566500px;}
.yaf{bottom:399.768000px;}
.y6e{bottom:401.544000px;}
.yc1{bottom:403.278000px;}
.y95{bottom:403.996500px;}
.y108{bottom:406.464000px;}
.y1e{bottom:406.726500px;}
.y14b{bottom:407.521500px;}
.ye7{bottom:411.108000px;}
.y127{bottom:413.499000px;}
.yae{bottom:417.700500px;}
.y6d{bottom:419.476500px;}
.yc0{bottom:421.210500px;}
.y1d{bottom:423.165000px;}
.y14a{bottom:423.960000px;}
.y48{bottom:425.454000px;}
.ye6{bottom:429.040500px;}
.y126{bottom:431.431500px;}
.yad{bottom:435.634500px;}
.y6c{bottom:437.409000px;}
.ybf{bottom:439.143000px;}
.y107{bottom:439.324500px;}
.y149{bottom:440.398500px;}
.y47{bottom:443.386500px;}
.ye5{bottom:446.973000px;}
.y125{bottom:449.364000px;}
.y94{bottom:451.203000px;}
.yac{bottom:453.567000px;}
.y1c{bottom:455.151000px;}
.y6b{bottom:455.341500px;}
.y148{bottom:456.837000px;}
.ybe{bottom:457.077000px;}
.y46{bottom:461.320500px;}
.ye4{bottom:464.907000px;}
.y124{bottom:467.298000px;}
.y93{bottom:469.135500px;}
.yab{bottom:471.499500px;}
.y1b{bottom:471.589500px;}
.y6a{bottom:473.275500px;}
.ybd{bottom:475.009500px;}
.y45{bottom:479.253000px;}
.ye3{bottom:482.839500px;}
.y123{bottom:485.230500px;}
.y92{bottom:487.069500px;}
.y1a{bottom:488.028000px;}
.yaa{bottom:489.432000px;}
.y147{bottom:489.714000px;}
.y69{bottom:491.208000px;}
.ybc{bottom:492.942000px;}
.y44{bottom:497.185500px;}
.ye2{bottom:500.772000px;}
.y122{bottom:503.163000px;}
.y19{bottom:504.466500px;}
.y91{bottom:505.002000px;}
.y146{bottom:506.152500px;}
.ya9{bottom:507.364500px;}
.y68{bottom:509.140500px;}
.y43{bottom:515.118000px;}
.ye1{bottom:518.704500px;}
.y18{bottom:520.905000px;}
.y121{bottom:521.095500px;}
.y145{bottom:522.591000px;}
.ybb{bottom:522.829500px;}
.y90{bottom:522.934500px;}
.y106{bottom:524.155500px;}
.ya8{bottom:525.297000px;}
.y67{bottom:527.073000px;}
.y42{bottom:533.050500px;}
.ye0{bottom:536.637000px;}
.y17{bottom:537.343500px;}
.y120{bottom:539.028000px;}
.y8f{bottom:540.867000px;}
.y105{bottom:542.238000px;}
.y66{bottom:545.005500px;}
.y41{bottom:550.983000px;}
.ya7{bottom:553.111500px;}
.y16{bottom:553.782000px;}
.ydf{bottom:554.569500px;}
.y144{bottom:555.466500px;}
.y11f{bottom:556.960500px;}
.y8e{bottom:558.799500px;}
.y104{bottom:560.319000px;}
.y65{bottom:562.939500px;}
.y40{bottom:568.917000px;}
.y15{bottom:570.220500px;}
.y143{bottom:571.905000px;}
.yde{bottom:572.503500px;}
.y11e{bottom:574.894500px;}
.y8d{bottom:576.732000px;}
.yba{bottom:577.393500px;}
.y103{bottom:578.401500px;}
.y64{bottom:580.872000px;}
.y14{bottom:586.659000px;}
.y3f{bottom:586.849500px;}
.y142{bottom:588.343500px;}
.ydd{bottom:590.436000px;}
.y11d{bottom:592.827000px;}
.y8c{bottom:594.666000px;}
.y102{bottom:597.082500px;}
.y63{bottom:598.804500px;}
.y13{bottom:603.097500px;}
.y3e{bottom:604.782000px;}
.ya6{bottom:606.637500px;}
.ydc{bottom:608.368500px;}
.y11c{bottom:610.759500px;}
.y8b{bottom:612.598500px;}
.y62{bottom:616.737000px;}
.y12{bottom:619.534500px;}
.y141{bottom:621.220500px;}
.y3d{bottom:622.714500px;}
.ydb{bottom:626.301000px;}
.y11b{bottom:628.692000px;}
.y101{bottom:628.792500px;}
.y8a{bottom:630.531000px;}
.y61{bottom:634.669500px;}
.y11{bottom:635.973000px;}
.y140{bottom:637.659000px;}
.y3c{bottom:640.647000px;}
.yda{bottom:644.233500px;}
.y11a{bottom:646.624500px;}
.y89{bottom:648.463500px;}
.y10{bottom:652.411500px;}
.y60{bottom:652.602000px;}
.y13f{bottom:654.097500px;}
.y3b{bottom:658.579500px;}
.yd9{bottom:662.166000px;}
.y119{bottom:664.558500px;}
.y88{bottom:666.396000px;}
.yf{bottom:668.850000px;}
.y5f{bottom:670.536000px;}
.y3a{bottom:676.513500px;}
.yd8{bottom:680.100000px;}
.y118{bottom:682.491000px;}
.y87{bottom:684.330000px;}
.ye{bottom:685.288500px;}
.y13e{bottom:686.974500px;}
.y5e{bottom:688.468500px;}
.y39{bottom:694.446000px;}
.yd7{bottom:698.032500px;}
.y117{bottom:700.423500px;}
.yd{bottom:701.727000px;}
.y86{bottom:702.262500px;}
.y13d{bottom:703.411500px;}
.y5d{bottom:706.401000px;}
.y100{bottom:707.599500px;}
.y38{bottom:712.378500px;}
.yd6{bottom:715.965000px;}
.yc{bottom:718.165500px;}
.y116{bottom:718.356000px;}
.y13c{bottom:719.850000px;}
.y85{bottom:720.195000px;}
.yff{bottom:724.038000px;}
.y5c{bottom:724.333500px;}
.y37{bottom:730.311000px;}
.yd5{bottom:733.897500px;}
.yb{bottom:734.604000px;}
.y115{bottom:736.288500px;}
.y84{bottom:738.127500px;}
.y5b{bottom:742.266000px;}
.y36{bottom:748.243500px;}
.ya{bottom:751.042500px;}
.yd4{bottom:751.830000px;}
.y13b{bottom:752.727000px;}
.y114{bottom:754.221000px;}
.y83{bottom:756.060000px;}
.y5a{bottom:760.198500px;}
.yfd{bottom:762.642000px;}
.y35{bottom:766.176000px;}
.y13a{bottom:769.165500px;}
.yd3{bottom:769.764000px;}
.y113{bottom:772.155000px;}
.y82{bottom:773.992500px;}
.yf2{bottom:784.029000px;}
.y34{bottom:784.110000px;}
.y139{bottom:785.604000px;}
.yd2{bottom:787.696500px;}
.y112{bottom:790.087500px;}
.y59{bottom:796.065000px;}
.yf3{bottom:800.242500px;}
.y33{bottom:802.042500px;}
.y81{bottom:803.268000px;}
.yd1{bottom:805.629000px;}
.y9{bottom:808.173000px;}
.yf8{bottom:812.367000px;}
.y138{bottom:818.481000px;}
.y8{bottom:818.898000px;}
.y32{bottom:819.975000px;}
.ya5{bottom:821.134500px;}
.yd0{bottom:823.561500px;}
.yf9{bottom:825.100500px;}
.y111{bottom:825.952500px;}
.y137{bottom:834.919500px;}
.y31{bottom:837.907500px;}
.ya4{bottom:839.067000px;}
.y7{bottom:841.050000px;}
.ycf{bottom:841.494000px;}
.y58{bottom:843.885000px;}
.yfe{bottom:845.937000px;}
.y136{bottom:851.358000px;}
.y80{bottom:854.976000px;}
.yfa{bottom:855.222000px;}
.y30{bottom:855.840000px;}
.ya3{bottom:856.999500px;}
.yce{bottom:859.426500px;}
.y57{bottom:861.817500px;}
.yf4{bottom:864.280500px;}
.y6{bottom:866.656500px;}
.y135{bottom:867.796500px;}
.y2f{bottom:873.774000px;}
.ya2{bottom:874.933500px;}
.ycd{bottom:877.360500px;}
.y56{bottom:879.751500px;}
.y134{bottom:884.233500px;}
.y5{bottom:884.589000px;}
.y2e{bottom:891.706500px;}
.ya1{bottom:892.866000px;}
.ycc{bottom:895.293000px;}
.y55{bottom:897.684000px;}
.yfb{bottom:899.170500px;}
.y133{bottom:900.672000px;}
.y4{bottom:902.521500px;}
.y2d{bottom:909.639000px;}
.ycb{bottom:913.225500px;}
.y54{bottom:915.616500px;}
.y132{bottom:917.110500px;}
.y3{bottom:920.455500px;}
.ya0{bottom:920.679000px;}
.y2c{bottom:927.571500px;}
.yf5{bottom:928.320000px;}
.yca{bottom:931.158000px;}
.y53{bottom:933.549000px;}
.y2b{bottom:945.504000px;}
.y131{bottom:949.987500px;}
.yc9{bottom:961.045500px;}
.y2a{bottom:963.436500px;}
.y130{bottom:966.426000px;}
.y2{bottom:972.403500px;}
.yfc{bottom:978.004500px;}
.y29{bottom:981.370500px;}
.y12f{bottom:982.864500px;}
.yf6{bottom:992.359500px;}
.y1{bottom:999.303000px;}
.yf7{bottom:1002.754500px;}
.y28{bottom:1038.157500px;}
.h4{height:24.245146px;}
.hb{height:36.421517px;}
.hd{height:37.712678px;}
.h5{height:40.402598px;}
.ha{height:41.902696px;}
.h7{height:44.891476px;}
.hc{height:47.099146px;}
.h8{height:49.933890px;}
.h9{height:49.939890px;}
.h6{height:50.283571px;}
.h2{height:53.072100px;}
.h3{height:53.078100px;}
.h1{height:60.426194px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xa{left:202.146000px;}
.x1e{left:204.928500px;}
.x1d{left:206.101500px;}
.x4{left:209.707500px;}
.xd{left:211.489500px;}
.x20{left:215.697000px;}
.x1c{left:217.093500px;}
.xc{left:222.814500px;}
.xb{left:224.562000px;}
.x1{left:227.133000px;}
.xe{left:228.174000px;}
.x1f{left:230.856000px;}
.x9{left:244.666500px;}
.x7{left:249.228000px;}
.x19{left:282.493500px;}
.x3{left:284.466000px;}
.x6{left:295.467000px;}
.x12{left:311.626500px;}
.x1b{left:315.883500px;}
.x2{left:319.207500px;}
.x1a{left:321.123000px;}
.x10{left:323.598000px;}
.x13{left:328.107000px;}
.xf{left:336.097500px;}
.x8{left:349.705500px;}
.x5{left:358.275000px;}
.x11{left:383.085000px;}
.x14{left:386.878500px;}
.x18{left:433.452000px;}
.x15{left:453.753000px;}
.x16{left:524.085000px;}
.x17{left:587.505000px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.280000pt;}
.v3{vertical-align:20.314667pt;}
.ls8{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000495pt;}
.ls0{letter-spacing:0.000501pt;}
.lse{letter-spacing:0.000891pt;}
.ls11{letter-spacing:0.001997pt;}
.ls7{letter-spacing:2.654327pt;}
.lsa{letter-spacing:2.655017pt;}
.ls10{letter-spacing:10.917828pt;}
.lsf{letter-spacing:10.918224pt;}
.lsd{letter-spacing:10.923162pt;}
.ls3{letter-spacing:14.693277pt;}
.ls4{letter-spacing:14.698610pt;}
.ls5{letter-spacing:16.378610pt;}
.ls12{letter-spacing:16.380663pt;}
.ls6{letter-spacing:16.649684pt;}
.lsb{letter-spacing:24.532350pt;}
.ls9{letter-spacing:26.562673pt;}
.ls1{letter-spacing:27.221806pt;}
.ls2{letter-spacing:27.227139pt;}
.ws3{word-spacing:-26.561620pt;}
.ws26{word-spacing:-24.570327pt;}
.ws89{word-spacing:-14.765902pt;}
.ws63{word-spacing:-14.553366pt;}
.ws5f{word-spacing:-14.340831pt;}
.ws9a{word-spacing:-14.022027pt;}
.ws57{word-spacing:-13.968894pt;}
.ws3c{word-spacing:-13.862626pt;}
.ws4c{word-spacing:-13.331287pt;}
.ws68{word-spacing:-13.278153pt;}
.wsea{word-spacing:-13.093335pt;}
.wsc3{word-spacing:-12.959350pt;}
.wsa0{word-spacing:-12.906216pt;}
.ws6e{word-spacing:-12.799948pt;}
.wsc7{word-spacing:-12.746815pt;}
.wscc{word-spacing:-12.693681pt;}
.ws23{word-spacing:-12.587413pt;}
.ws24{word-spacing:-12.534279pt;}
.wsf{word-spacing:-12.519485pt;}
.ws7e{word-spacing:-12.321744pt;}
.ws95{word-spacing:-12.215476pt;}
.ws73{word-spacing:-12.109208pt;}
.ws32{word-spacing:-12.002940pt;}
.ws81{word-spacing:-11.949807pt;}
.ws10a{word-spacing:-11.945636pt;}
.ws52{word-spacing:-11.843539pt;}
.ws60{word-spacing:-11.790405pt;}
.ws84{word-spacing:-11.684137pt;}
.wsf5{word-spacing:-11.658711pt;}
.ws3e{word-spacing:-11.631003pt;}
.ws94{word-spacing:-11.577870pt;}
.wse2{word-spacing:-11.563069pt;}
.ws8d{word-spacing:-11.524736pt;}
.ws87{word-spacing:-11.471602pt;}
.wse1{word-spacing:-11.467428pt;}
.wsb4{word-spacing:-11.419607pt;}
.ws75{word-spacing:-11.418468pt;}
.ws71{word-spacing:-11.205932pt;}
.ws28{word-spacing:-11.152799pt;}
.wsd{word-spacing:-11.132682pt;}
.ws2f{word-spacing:-11.099665pt;}
.wsd7{word-spacing:-11.037041pt;}
.ws29{word-spacing:-10.993397pt;}
.ws59{word-spacing:-10.940263pt;}
.ws8b{word-spacing:-10.887129pt;}
.ws10b{word-spacing:-10.845757pt;}
.ws80{word-spacing:-10.727728pt;}
.ws77{word-spacing:-10.674594pt;}
.wsca{word-spacing:-10.621460pt;}
.ws64{word-spacing:-10.568326pt;}
.wsf4{word-spacing:-10.558833pt;}
.wsde{word-spacing:-10.415370pt;}
.ws98{word-spacing:-10.408924pt;}
.ws12{word-spacing:-10.367549pt;}
.ws8c{word-spacing:-10.355791pt;}
.ws6d{word-spacing:-10.302657pt;}
.wsb{word-spacing:-10.271908pt;}
.ws51{word-spacing:-10.249523pt;}
.ws22{word-spacing:-10.196389pt;}
.wse0{word-spacing:-10.176266pt;}
.ws6f{word-spacing:-10.143255pt;}
.wsfa{word-spacing:-10.128445pt;}
.wsf6{word-spacing:-10.080625pt;}
.ws42{word-spacing:-10.036987pt;}
.wsfc{word-spacing:-9.984983pt;}
.wsc5{word-spacing:-9.930720pt;}
.ws1b{word-spacing:-9.889341pt;}
.ws39{word-spacing:-9.824452pt;}
.wsbf{word-spacing:-9.698058pt;}
.ws9c{word-spacing:-9.665050pt;}
.wse{word-spacing:-9.650237pt;}
.wsa8{word-spacing:-9.611916pt;}
.ws53{word-spacing:-9.558783pt;}
.wsf9{word-spacing:-9.506775pt;}
.ws70{word-spacing:-9.452515pt;}
.wsee{word-spacing:-9.411133pt;}
.ws102{word-spacing:-9.315492pt;}
.ws7f{word-spacing:-9.293113pt;}
.ws65{word-spacing:-9.239979pt;}
.wse8{word-spacing:-9.219850pt;}
.ws6a{word-spacing:-9.186846pt;}
.ws54{word-spacing:-9.133712pt;}
.wsd5{word-spacing:-9.124209pt;}
.ws7a{word-spacing:-9.080578pt;}
.ws106{word-spacing:-9.028567pt;}
.ws6c{word-spacing:-9.027444pt;}
.ws44{word-spacing:-8.974310pt;}
.ws79{word-spacing:-8.921176pt;}
.ws1{word-spacing:-8.868042pt;}
.wsfb{word-spacing:-8.741642pt;}
.ws96{word-spacing:-8.708641pt;}
.ws85{word-spacing:-8.655507pt;}
.ws36{word-spacing:-8.602373pt;}
.wsfe{word-spacing:-8.550359pt;}
.ws82{word-spacing:-8.549239pt;}
.ws66{word-spacing:-8.496105pt;}
.ws21{word-spacing:-8.442971pt;}
.wsa4{word-spacing:-8.389838pt;}
.wsb2{word-spacing:-8.263434pt;}
.wsae{word-spacing:-8.230436pt;}
.ws4{word-spacing:-8.215613pt;}
.wsff{word-spacing:-8.194550pt;}
.wsd8{word-spacing:-8.184011pt;}
.ws1d{word-spacing:-8.179482pt;}
.ws3b{word-spacing:-8.177302pt;}
.ws1c{word-spacing:-8.167999pt;}
.ws6{word-spacing:-8.167793pt;}
.ws83{word-spacing:-8.071034pt;}
.ws69{word-spacing:-8.017900pt;}
.wscf{word-spacing:-7.858499pt;}
.ws111{word-spacing:-7.833047pt;}
.ws55{word-spacing:-7.805365pt;}
.ws49{word-spacing:-7.752231pt;}
.ws48{word-spacing:-7.699097pt;}
.wsfd{word-spacing:-7.593943pt;}
.ws9f{word-spacing:-7.539696pt;}
.wse9{word-spacing:-7.507224pt;}
.ws67{word-spacing:-7.486562pt;}
.ws72{word-spacing:-7.433428pt;}
.ws8{word-spacing:-7.402660pt;}
.ws8f{word-spacing:-7.380294pt;}
.wsef{word-spacing:-7.354839pt;}
.ws3d{word-spacing:-7.327160pt;}
.ws3a{word-spacing:-7.274026pt;}
.wsa1{word-spacing:-7.220892pt;}
.ws2a{word-spacing:-7.167759pt;}
.ws91{word-spacing:-7.114625pt;}
.wsa2{word-spacing:-7.061491pt;}
.ws5c{word-spacing:-7.008357pt;}
.ws43{word-spacing:-6.955223pt;}
.ws2e{word-spacing:-6.902089pt;}
.wsa5{word-spacing:-6.848955pt;}
.ws20{word-spacing:-6.795822pt;}
.wsab{word-spacing:-6.689554pt;}
.wsa{word-spacing:-6.685348pt;}
.ws8a{word-spacing:-6.583286pt;}
.ws50{word-spacing:-6.423884pt;}
.wsdf{word-spacing:-6.398423pt;}
.ws58{word-spacing:-6.317617pt;}
.ws5d{word-spacing:-6.264483pt;}
.wsf3{word-spacing:-6.254961pt;}
.ws4a{word-spacing:-6.211349pt;}
.ws13{word-spacing:-6.159319pt;}
.ws33{word-spacing:-6.105081pt;}
.wsf8{word-spacing:-6.063677pt;}
.ws7d{word-spacing:-6.051947pt;}
.wscd{word-spacing:-5.998814pt;}
.wsc{word-spacing:-5.920215pt;}
.ws5b{word-spacing:-5.892546pt;}
.wsf7{word-spacing:-5.872394pt;}
.ws5a{word-spacing:-5.839412pt;}
.ws47{word-spacing:-5.786278pt;}
.wse7{word-spacing:-5.776753pt;}
.ws90{word-spacing:-5.733144pt;}
.ws16{word-spacing:-5.728932pt;}
.wsf1{word-spacing:-5.585469pt;}
.ws56{word-spacing:-5.573743pt;}
.ws9{word-spacing:-5.489828pt;}
.ws46{word-spacing:-5.467475pt;}
.ws10{word-spacing:-5.442007pt;}
.wsc6{word-spacing:-5.414341pt;}
.ws74{word-spacing:-5.361207pt;}
.ws37{word-spacing:-5.308073pt;}
.ws6b{word-spacing:-5.201806pt;}
.ws34{word-spacing:-5.095538pt;}
.wsd6{word-spacing:-5.059441pt;}
.ws9e{word-spacing:-5.042404pt;}
.wsa7{word-spacing:-4.989270pt;}
.ws9b{word-spacing:-4.936136pt;}
.wsf0{word-spacing:-4.915978pt;}
.ws88{word-spacing:-4.883002pt;}
.wsa9{word-spacing:-4.829868pt;}
.ws25{word-spacing:-4.776735pt;}
.ws3f{word-spacing:-4.723601pt;}
.ws31{word-spacing:-4.670467pt;}
.ws61{word-spacing:-4.617333pt;}
.ws11{word-spacing:-4.581233pt;}
.ws38{word-spacing:-4.564199pt;}
.ws100{word-spacing:-4.485591pt;}
.wsc8{word-spacing:-4.351664pt;}
.wsc9{word-spacing:-4.298530pt;}
.wsd1{word-spacing:-4.246487pt;}
.wsc4{word-spacing:-4.245396pt;}
.ws7c{word-spacing:-4.192262pt;}
.wsf2{word-spacing:-4.150845pt;}
.wsce{word-spacing:-4.085994pt;}
.ws62{word-spacing:-4.032860pt;}
.ws1f{word-spacing:-3.979727pt;}
.ws2b{word-spacing:-3.926593pt;}
.ws15{word-spacing:-3.911741pt;}
.ws93{word-spacing:-3.873459pt;}
.ws14{word-spacing:-3.720458pt;}
.ws9d{word-spacing:-3.660923pt;}
.ws4f{word-spacing:-3.607790pt;}
.wsa6{word-spacing:-3.554656pt;}
.ws4e{word-spacing:-3.501522pt;}
.ws112{word-spacing:-3.242250pt;}
.ws18{word-spacing:-3.194429pt;}
.wsaa{word-spacing:-3.182719pt;}
.ws10d{word-spacing:-3.146609pt;}
.wsa3{word-spacing:-3.023317pt;}
.ws2c{word-spacing:-2.970183pt;}
.ws78{word-spacing:-2.917049pt;}
.ws109{word-spacing:-2.907505pt;}
.ws8e{word-spacing:-2.810782pt;}
.ws113{word-spacing:-2.764042pt;}
.ws35{word-spacing:-2.757648pt;}
.wsad{word-spacing:-2.704514pt;}
.ws92{word-spacing:-2.651380pt;}
.ws7b{word-spacing:-2.598246pt;}
.ws40{word-spacing:-2.491978pt;}
.ws2d{word-spacing:-2.438844pt;}
.ws86{word-spacing:-2.385711pt;}
.ws5e{word-spacing:-2.279443pt;}
.ws10f{word-spacing:-2.190193pt;}
.ws19{word-spacing:-2.142372pt;}
.wsac{word-spacing:-2.066907pt;}
.ws97{word-spacing:-1.960640pt;}
.ws17{word-spacing:-1.903268pt;}
.ws30{word-spacing:-1.376167pt;}
.ws110{word-spacing:-1.281597pt;}
.ws107{word-spacing:-0.899031pt;}
.ws45{word-spacing:-0.844828pt;}
.ws105{word-spacing:-0.755569pt;}
.ws4b{word-spacing:-0.738561pt;}
.ws101{word-spacing:-0.516465pt;}
.wscb{word-spacing:-0.472891pt;}
.ws41{word-spacing:-0.419758pt;}
.ws10c{word-spacing:-0.086077pt;}
.ws5{word-spacing:-0.047821pt;}
.ws2{word-spacing:-0.037194pt;}
.ws27{word-spacing:0.000000pt;}
.ws103{word-spacing:0.153027pt;}
.ws108{word-spacing:0.344310pt;}
.ws10e{word-spacing:0.822518pt;}
.ws104{word-spacing:0.870339pt;}
.ws76{word-spacing:9.372877pt;}
.wsdd{word-spacing:10.338857pt;}
.wsb0{word-spacing:10.871294pt;}
.wsb1{word-spacing:10.876628pt;}
.wsd4{word-spacing:11.103990pt;}
.wsd9{word-spacing:11.821302pt;}
.wsb3{word-spacing:13.105819pt;}
.wsd2{word-spacing:14.499267pt;}
.wsbc{word-spacing:16.330284pt;}
.wsda{word-spacing:16.699023pt;}
.wsdb{word-spacing:17.129411pt;}
.wsd3{word-spacing:17.511977pt;}
.wsbd{word-spacing:19.015849pt;}
.wsdc{word-spacing:21.815849pt;}
.ws4d{word-spacing:23.846639pt;}
.ws1a{word-spacing:24.538769pt;}
.ws7{word-spacing:26.519119pt;}
.ws0{word-spacing:27.927269pt;}
.wsd0{word-spacing:29.750055pt;}
.ws99{word-spacing:30.557287pt;}
.wsed{word-spacing:31.380009pt;}
.wseb{word-spacing:32.479887pt;}
.wse5{word-spacing:36.831580pt;}
.wse6{word-spacing:36.879401pt;}
.wse3{word-spacing:37.070684pt;}
.wsec{word-spacing:40.705065pt;}
.wse4{word-spacing:52.325519pt;}
.wsc0{word-spacing:52.458337pt;}
.wsb5{word-spacing:53.081088pt;}
.wsaf{word-spacing:55.574521pt;}
.ws1e{word-spacing:71.667439pt;}
.wsba{word-spacing:74.657833pt;}
.wsb9{word-spacing:78.317288pt;}
.wsbb{word-spacing:81.496207pt;}
.wsb8{word-spacing:82.070057pt;}
.wsb7{word-spacing:107.390599pt;}
.wsb6{word-spacing:109.227807pt;}
.wsbe{word-spacing:121.807901pt;}
.wsc2{word-spacing:127.594336pt;}
.wsc1{word-spacing:144.639983pt;}
._18{margin-left:-6.312346pt;}
._c{margin-left:-5.119970pt;}
._3{margin-left:-4.112589pt;}
._0{margin-left:-2.371905pt;}
._4{margin-left:-1.338982pt;}
._2{width:1.487748pt;}
._1{width:2.657536pt;}
._6{width:8.926490pt;}
._5{width:15.230397pt;}
._8{width:16.346112pt;}
._b{width:17.642596pt;}
._a{width:18.630868pt;}
._d{width:20.288654pt;}
._24{width:21.222851pt;}
._11{width:22.137703pt;}
._f{width:23.891121pt;}
._9{width:25.017568pt;}
._25{width:26.588365pt;}
._20{width:38.998390pt;}
._26{width:42.631715pt;}
._1d{width:52.487371pt;}
._10{width:61.103947pt;}
._1f{width:64.032051pt;}
._e{width:71.731200pt;}
._12{width:93.120594pt;}
._19{width:94.365126pt;}
._1e{width:101.623371pt;}
._14{width:105.395062pt;}
._15{width:106.640384pt;}
._22{width:112.522342pt;}
._16{width:113.478758pt;}
._17{width:117.878272pt;}
._13{width:122.460669pt;}
._23{width:127.155507pt;}
._27{width:130.434944pt;}
._7{width:151.687578pt;}
._1c{width:162.638541pt;}
._1b{width:179.423642pt;}
._1a{width:185.783808pt;}
._21{width:187.617019pt;}
.fs3{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs4{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs5{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y9f{bottom:172.104000pt;}
.y157{bottom:172.288000pt;}
.y27{bottom:177.182667pt;}
.y110{bottom:180.217333pt;}
.y156{bottom:186.898667pt;}
.y9e{bottom:188.044000pt;}
.y12e{bottom:189.556000pt;}
.yf1{bottom:190.086667pt;}
.y78{bottom:191.794667pt;}
.yb9{bottom:195.948000pt;}
.y26{bottom:196.025333pt;}
.y10f{bottom:196.158667pt;}
.y155{bottom:201.510667pt;}
.y9d{bottom:203.984000pt;}
.y12d{bottom:204.168000pt;}
.yf0{bottom:206.026667pt;}
.y52{bottom:208.152000pt;}
.y7f{bottom:211.340000pt;}
.yb8{bottom:211.888000pt;}
.y25{bottom:211.965333pt;}
.y10e{bottom:212.098667pt;}
.y77{bottom:213.465333pt;}
.y154{bottom:216.122667pt;}
.y12c{bottom:218.780000pt;}
.y9c{bottom:219.924000pt;}
.yef{bottom:221.966667pt;}
.y51{bottom:224.093333pt;}
.y7e{bottom:227.281333pt;}
.yb7{bottom:227.828000pt;}
.y24{bottom:227.905333pt;}
.y76{bottom:229.406667pt;}
.y153{bottom:230.734667pt;}
.y12b{bottom:233.390667pt;}
.y9b{bottom:235.864000pt;}
.yee{bottom:237.908000pt;}
.y10d{bottom:238.665333pt;}
.y50{bottom:240.033333pt;}
.y7d{bottom:243.221333pt;}
.yb6{bottom:243.768000pt;}
.y23{bottom:243.845333pt;}
.y75{bottom:245.346667pt;}
.yc8{bottom:246.888000pt;}
.y9a{bottom:251.804000pt;}
.yed{bottom:253.848000pt;}
.y4f{bottom:255.973333pt;}
.y7c{bottom:259.161333pt;}
.yb5{bottom:259.708000pt;}
.y22{bottom:259.785333pt;}
.y152{bottom:259.958667pt;}
.y74{bottom:261.286667pt;}
.yc7{bottom:262.828000pt;}
.y12a{bottom:263.944000pt;}
.y99{bottom:267.745333pt;}
.yec{bottom:269.788000pt;}
.y4e{bottom:271.913333pt;}
.y151{bottom:274.570667pt;}
.y7b{bottom:275.101333pt;}
.yb4{bottom:275.648000pt;}
.y21{bottom:275.725333pt;}
.y73{bottom:277.226667pt;}
.yc6{bottom:278.768000pt;}
.y98{bottom:283.685333pt;}
.yeb{bottom:285.728000pt;}
.y4d{bottom:287.853333pt;}
.y150{bottom:289.182667pt;}
.y10c{bottom:290.633333pt;}
.y7a{bottom:291.041333pt;}
.yb3{bottom:291.589333pt;}
.y20{bottom:291.666667pt;}
.y72{bottom:293.166667pt;}
.yc5{bottom:294.708000pt;}
.y97{bottom:299.625333pt;}
.yea{bottom:301.668000pt;}
.y4c{bottom:303.793333pt;}
.y14f{bottom:303.794667pt;}
.y129{bottom:306.450667pt;}
.yb2{bottom:307.529333pt;}
.y10b{bottom:308.168000pt;}
.y71{bottom:309.106667pt;}
.yc4{bottom:310.649333pt;}
.y79{bottom:317.609333pt;}
.y14e{bottom:318.406667pt;}
.y4b{bottom:319.734667pt;}
.y1f{bottom:320.381333pt;}
.y128{bottom:321.062667pt;}
.yb1{bottom:323.469333pt;}
.y70{bottom:325.048000pt;}
.y96{bottom:325.646667pt;}
.y10a{bottom:325.701333pt;}
.yc3{bottom:326.589333pt;}
.y14d{bottom:333.017333pt;}
.ye9{bottom:333.549333pt;}
.y4a{bottom:335.674667pt;}
.yb0{bottom:339.409333pt;}
.y6f{bottom:340.988000pt;}
.yc2{bottom:342.529333pt;}
.y109{bottom:343.236000pt;}
.y14c{bottom:347.629333pt;}
.ye8{bottom:349.489333pt;}
.y49{bottom:351.614667pt;}
.yaf{bottom:355.349333pt;}
.y6e{bottom:356.928000pt;}
.yc1{bottom:358.469333pt;}
.y95{bottom:359.108000pt;}
.y108{bottom:361.301333pt;}
.y1e{bottom:361.534667pt;}
.y14b{bottom:362.241333pt;}
.ye7{bottom:365.429333pt;}
.y127{bottom:367.554667pt;}
.yae{bottom:371.289333pt;}
.y6d{bottom:372.868000pt;}
.yc0{bottom:374.409333pt;}
.y1d{bottom:376.146667pt;}
.y14a{bottom:376.853333pt;}
.y48{bottom:378.181333pt;}
.ye6{bottom:381.369333pt;}
.y126{bottom:383.494667pt;}
.yad{bottom:387.230667pt;}
.y6c{bottom:388.808000pt;}
.ybf{bottom:390.349333pt;}
.y107{bottom:390.510667pt;}
.y149{bottom:391.465333pt;}
.y47{bottom:394.121333pt;}
.ye5{bottom:397.309333pt;}
.y125{bottom:399.434667pt;}
.y94{bottom:401.069333pt;}
.yac{bottom:403.170667pt;}
.y1c{bottom:404.578667pt;}
.y6b{bottom:404.748000pt;}
.y148{bottom:406.077333pt;}
.ybe{bottom:406.290667pt;}
.y46{bottom:410.062667pt;}
.ye4{bottom:413.250667pt;}
.y124{bottom:415.376000pt;}
.y93{bottom:417.009333pt;}
.yab{bottom:419.110667pt;}
.y1b{bottom:419.190667pt;}
.y6a{bottom:420.689333pt;}
.ybd{bottom:422.230667pt;}
.y45{bottom:426.002667pt;}
.ye3{bottom:429.190667pt;}
.y123{bottom:431.316000pt;}
.y92{bottom:432.950667pt;}
.y1a{bottom:433.802667pt;}
.yaa{bottom:435.050667pt;}
.y147{bottom:435.301333pt;}
.y69{bottom:436.629333pt;}
.ybc{bottom:438.170667pt;}
.y44{bottom:441.942667pt;}
.ye2{bottom:445.130667pt;}
.y122{bottom:447.256000pt;}
.y19{bottom:448.414667pt;}
.y91{bottom:448.890667pt;}
.y146{bottom:449.913333pt;}
.ya9{bottom:450.990667pt;}
.y68{bottom:452.569333pt;}
.y43{bottom:457.882667pt;}
.ye1{bottom:461.070667pt;}
.y18{bottom:463.026667pt;}
.y121{bottom:463.196000pt;}
.y145{bottom:464.525333pt;}
.ybb{bottom:464.737333pt;}
.y90{bottom:464.830667pt;}
.y106{bottom:465.916000pt;}
.ya8{bottom:466.930667pt;}
.y67{bottom:468.509333pt;}
.y42{bottom:473.822667pt;}
.ye0{bottom:477.010667pt;}
.y17{bottom:477.638667pt;}
.y120{bottom:479.136000pt;}
.y8f{bottom:480.770667pt;}
.y105{bottom:481.989333pt;}
.y66{bottom:484.449333pt;}
.y41{bottom:489.762667pt;}
.ya7{bottom:491.654667pt;}
.y16{bottom:492.250667pt;}
.ydf{bottom:492.950667pt;}
.y144{bottom:493.748000pt;}
.y11f{bottom:495.076000pt;}
.y8e{bottom:496.710667pt;}
.y104{bottom:498.061333pt;}
.y65{bottom:500.390667pt;}
.y40{bottom:505.704000pt;}
.y15{bottom:506.862667pt;}
.y143{bottom:508.360000pt;}
.yde{bottom:508.892000pt;}
.y11e{bottom:511.017333pt;}
.y8d{bottom:512.650667pt;}
.yba{bottom:513.238667pt;}
.y103{bottom:514.134667pt;}
.y64{bottom:516.330667pt;}
.y14{bottom:521.474667pt;}
.y3f{bottom:521.644000pt;}
.y142{bottom:522.972000pt;}
.ydd{bottom:524.832000pt;}
.y11d{bottom:526.957333pt;}
.y8c{bottom:528.592000pt;}
.y102{bottom:530.740000pt;}
.y63{bottom:532.270667pt;}
.y13{bottom:536.086667pt;}
.y3e{bottom:537.584000pt;}
.ya6{bottom:539.233333pt;}
.ydc{bottom:540.772000pt;}
.y11c{bottom:542.897333pt;}
.y8b{bottom:544.532000pt;}
.y62{bottom:548.210667pt;}
.y12{bottom:550.697333pt;}
.y141{bottom:552.196000pt;}
.y3d{bottom:553.524000pt;}
.ydb{bottom:556.712000pt;}
.y11b{bottom:558.837333pt;}
.y101{bottom:558.926667pt;}
.y8a{bottom:560.472000pt;}
.y61{bottom:564.150667pt;}
.y11{bottom:565.309333pt;}
.y140{bottom:566.808000pt;}
.y3c{bottom:569.464000pt;}
.yda{bottom:572.652000pt;}
.y11a{bottom:574.777333pt;}
.y89{bottom:576.412000pt;}
.y10{bottom:579.921333pt;}
.y60{bottom:580.090667pt;}
.y13f{bottom:581.420000pt;}
.y3b{bottom:585.404000pt;}
.yd9{bottom:588.592000pt;}
.y119{bottom:590.718667pt;}
.y88{bottom:592.352000pt;}
.yf{bottom:594.533333pt;}
.y5f{bottom:596.032000pt;}
.y3a{bottom:601.345333pt;}
.yd8{bottom:604.533333pt;}
.y118{bottom:606.658667pt;}
.y87{bottom:608.293333pt;}
.ye{bottom:609.145333pt;}
.y13e{bottom:610.644000pt;}
.y5e{bottom:611.972000pt;}
.y39{bottom:617.285333pt;}
.yd7{bottom:620.473333pt;}
.y117{bottom:622.598667pt;}
.yd{bottom:623.757333pt;}
.y86{bottom:624.233333pt;}
.y13d{bottom:625.254667pt;}
.y5d{bottom:627.912000pt;}
.y100{bottom:628.977333pt;}
.y38{bottom:633.225333pt;}
.yd6{bottom:636.413333pt;}
.yc{bottom:638.369333pt;}
.y116{bottom:638.538667pt;}
.y13c{bottom:639.866667pt;}
.y85{bottom:640.173333pt;}
.yff{bottom:643.589333pt;}
.y5c{bottom:643.852000pt;}
.y37{bottom:649.165333pt;}
.yd5{bottom:652.353333pt;}
.yb{bottom:652.981333pt;}
.y115{bottom:654.478667pt;}
.y84{bottom:656.113333pt;}
.y5b{bottom:659.792000pt;}
.y36{bottom:665.105333pt;}
.ya{bottom:667.593333pt;}
.yd4{bottom:668.293333pt;}
.y13b{bottom:669.090667pt;}
.y114{bottom:670.418667pt;}
.y83{bottom:672.053333pt;}
.y5a{bottom:675.732000pt;}
.yfd{bottom:677.904000pt;}
.y35{bottom:681.045333pt;}
.y13a{bottom:683.702667pt;}
.yd3{bottom:684.234667pt;}
.y113{bottom:686.360000pt;}
.y82{bottom:687.993333pt;}
.yf2{bottom:696.914667pt;}
.y34{bottom:696.986667pt;}
.y139{bottom:698.314667pt;}
.yd2{bottom:700.174667pt;}
.y112{bottom:702.300000pt;}
.y59{bottom:707.613333pt;}
.yf3{bottom:711.326667pt;}
.y33{bottom:712.926667pt;}
.y81{bottom:714.016000pt;}
.yd1{bottom:716.114667pt;}
.y9{bottom:718.376000pt;}
.yf8{bottom:722.104000pt;}
.y138{bottom:727.538667pt;}
.y8{bottom:727.909333pt;}
.y32{bottom:728.866667pt;}
.ya5{bottom:729.897333pt;}
.yd0{bottom:732.054667pt;}
.yf9{bottom:733.422667pt;}
.y111{bottom:734.180000pt;}
.y137{bottom:742.150667pt;}
.y31{bottom:744.806667pt;}
.ya4{bottom:745.837333pt;}
.y7{bottom:747.600000pt;}
.ycf{bottom:747.994667pt;}
.y58{bottom:750.120000pt;}
.yfe{bottom:751.944000pt;}
.y136{bottom:756.762667pt;}
.y80{bottom:759.978667pt;}
.yfa{bottom:760.197333pt;}
.y30{bottom:760.746667pt;}
.ya3{bottom:761.777333pt;}
.yce{bottom:763.934667pt;}
.y57{bottom:766.060000pt;}
.yf4{bottom:768.249333pt;}
.y6{bottom:770.361333pt;}
.y135{bottom:771.374667pt;}
.y2f{bottom:776.688000pt;}
.ya2{bottom:777.718667pt;}
.ycd{bottom:779.876000pt;}
.y56{bottom:782.001333pt;}
.y134{bottom:785.985333pt;}
.y5{bottom:786.301333pt;}
.y2e{bottom:792.628000pt;}
.ya1{bottom:793.658667pt;}
.ycc{bottom:795.816000pt;}
.y55{bottom:797.941333pt;}
.yfb{bottom:799.262667pt;}
.y133{bottom:800.597333pt;}
.y4{bottom:802.241333pt;}
.y2d{bottom:808.568000pt;}
.ycb{bottom:811.756000pt;}
.y54{bottom:813.881333pt;}
.y132{bottom:815.209333pt;}
.y3{bottom:818.182667pt;}
.ya0{bottom:818.381333pt;}
.y2c{bottom:824.508000pt;}
.yf5{bottom:825.173333pt;}
.yca{bottom:827.696000pt;}
.y53{bottom:829.821333pt;}
.y2b{bottom:840.448000pt;}
.y131{bottom:844.433333pt;}
.yc9{bottom:854.262667pt;}
.y2a{bottom:856.388000pt;}
.y130{bottom:859.045333pt;}
.y2{bottom:864.358667pt;}
.yfc{bottom:869.337333pt;}
.y29{bottom:872.329333pt;}
.y12f{bottom:873.657333pt;}
.yf6{bottom:882.097333pt;}
.y1{bottom:888.269333pt;}
.yf7{bottom:891.337333pt;}
.y28{bottom:922.806667pt;}
.h4{height:21.551241pt;}
.hb{height:32.374682pt;}
.hd{height:33.522381pt;}
.h5{height:35.913421pt;}
.ha{height:37.246841pt;}
.h7{height:39.903534pt;}
.hc{height:41.865907pt;}
.h8{height:44.385680pt;}
.h9{height:44.391013pt;}
.h6{height:44.696508pt;}
.h2{height:47.175200pt;}
.h3{height:47.180533pt;}
.h1{height:53.712173pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa{left:179.685333pt;}
.x1e{left:182.158667pt;}
.x1d{left:183.201333pt;}
.x4{left:186.406667pt;}
.xd{left:187.990667pt;}
.x20{left:191.730667pt;}
.x1c{left:192.972000pt;}
.xc{left:198.057333pt;}
.xb{left:199.610667pt;}
.x1{left:201.896000pt;}
.xe{left:202.821333pt;}
.x1f{left:205.205333pt;}
.x9{left:217.481333pt;}
.x7{left:221.536000pt;}
.x19{left:251.105333pt;}
.x3{left:252.858667pt;}
.x6{left:262.637333pt;}
.x12{left:277.001333pt;}
.x1b{left:280.785333pt;}
.x2{left:283.740000pt;}
.x1a{left:285.442667pt;}
.x10{left:287.642667pt;}
.x13{left:291.650667pt;}
.xf{left:298.753333pt;}
.x8{left:310.849333pt;}
.x5{left:318.466667pt;}
.x11{left:340.520000pt;}
.x14{left:343.892000pt;}
.x18{left:385.290667pt;}
.x15{left:403.336000pt;}
.x16{left:465.853333pt;}
.x17{left:522.226667pt;}
}




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