
    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_0e6825a8aaf1799d5d8e8091.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_ade99fcc4b8be345c57632fd.woff')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_a101c49c1d3af9915c303a27.woff')format("woff");}.ff3{font-family:ff3;line-height:0.959961;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_2d439f21a9ac75bd339da701.woff')format("woff");}.ff4{font-family:ff4;line-height:0.952000;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_d143ffbe8ad021da5e2335e5.woff')format("woff");}.ff5{font-family:ff5;line-height:0.952000;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_025e7b9c48eea3e4a3b7ebf0.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f74e474bbc869f0740906c28.woff')format("woff");}.ff7{font-family:ff7;line-height:0.888000;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_e86aa7401bbe70ab789b303d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.710000;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_b3ae22bd334ce311c4197251.woff')format("woff");}.ff9{font-family:ff9;line-height:0.952000;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_ee6f124ee1c1ab60002d0143.woff')format("woff");}.ffa{font-family:ffa;line-height:0.856934;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_2fa8950665a6195c15959074.woff')format("woff");}.ffb{font-family:ffb;line-height:0.431000;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_9ca53761f109fb7c588c6205.woff')format("woff");}.ffc{font-family:ffc;line-height:0.799000;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_5efdb41cce9c1d5bc8242f3f.woff')format("woff");}.ffd{font-family:ffd;line-height:0.046000;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_a692b6d9f249fbdda30584eb.woff')format("woff");}.ffe{font-family:ffe;line-height:0.932000;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_dac715b5f56258b40b2478dd.woff')format("woff");}.fff{font-family:fff;line-height:0.431000;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_32fc3ae47617b48ce94c3c5a.woff')format("woff");}.ff10{font-family:ff10;line-height:0.482000;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_df4856a483a262bdf076dfdc.woff')format("woff");}.ff11{font-family:ff11;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_5a148f49c190fa1da52412cf.woff')format("woff");}.ff12{font-family:ff12;line-height:0.856934;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:ff13;src:url('chunks/assets/font_40c6c022c817df8cf4982c9a.woff')format("woff");}.ff13{font-family:ff13;line-height:0.191000;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.244537,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051979,0.244537,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-23.910000px;}
.v2{vertical-align:-20.922000px;}
.v4{vertical-align:-9.000000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:16.944000px;}
.v5{vertical-align:21.768000px;}
.v1{vertical-align:23.016000px;}
.v6{vertical-align:40.590000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000144px;}
.ls25{letter-spacing:0.000199px;}
.ls3c{letter-spacing:0.000210px;}
.ls43{letter-spacing:0.000219px;}
.lsf{letter-spacing:0.000222px;}
.ls6{letter-spacing:0.000288px;}
.ls4e{letter-spacing:0.000294px;}
.ls10{letter-spacing:0.000300px;}
.ls3f{letter-spacing:0.000330px;}
.ls19{letter-spacing:0.000362px;}
.ls4d{letter-spacing:0.000375px;}
.ls27{letter-spacing:0.000380px;}
.ls22{letter-spacing:0.000386px;}
.ls34{letter-spacing:0.000393px;}
.ls3b{letter-spacing:0.000467px;}
.ls26{letter-spacing:0.000500px;}
.ls47{letter-spacing:0.000578px;}
.ls7{letter-spacing:0.000600px;}
.ls9{letter-spacing:0.003983px;}
.ls3d{letter-spacing:0.006361px;}
.ls4f{letter-spacing:0.006433px;}
.ls37{letter-spacing:0.006500px;}
.ls30{letter-spacing:0.840325px;}
.ls31{letter-spacing:1.140329px;}
.ls4c{letter-spacing:1.560386px;}
.ls4{letter-spacing:1.799964px;}
.ls3{letter-spacing:1.949961px;}
.ls1d{letter-spacing:2.154342px;}
.ls12{letter-spacing:2.274267px;}
.ls14{letter-spacing:2.984952px;}
.ls1a{letter-spacing:2.985120px;}
.ls16{letter-spacing:2.987751px;}
.ls48{letter-spacing:2.988096px;}
.ls13{letter-spacing:2.988276px;}
.ls15{letter-spacing:2.988348px;}
.ls42{letter-spacing:2.989608px;}
.lse{letter-spacing:2.989632px;}
.ls21{letter-spacing:2.991120px;}
.ls1f{letter-spacing:2.993751px;}
.ls4b{letter-spacing:3.060353px;}
.ls2{letter-spacing:3.119961px;}
.ls41{letter-spacing:3.120199px;}
.ls5{letter-spacing:3.899961px;}
.ls40{letter-spacing:4.140388px;}
.ls2e{letter-spacing:5.400393px;}
.ls39{letter-spacing:9.996467px;}
.ls1{letter-spacing:11.040294px;}
.ls54{letter-spacing:11.040357px;}
.ls53{letter-spacing:11.040387px;}
.ls55{letter-spacing:11.040395px;}
.ls2f{letter-spacing:12.993120px;}
.lsa{letter-spacing:13.200600px;}
.ls32{letter-spacing:13.332325px;}
.ls35{letter-spacing:13.332329px;}
.ls23{letter-spacing:13.338386px;}
.ls2d{letter-spacing:13.548467px;}
.ls2b{letter-spacing:13.554380px;}
.ls2c{letter-spacing:13.554393px;}
.ls49{letter-spacing:13.602096px;}
.ls50{letter-spacing:13.794144px;}
.ls18{letter-spacing:13.794467px;}
.ls52{letter-spacing:13.794600px;}
.ls11{letter-spacing:13.800144px;}
.ls44{letter-spacing:13.800433px;}
.ls17{letter-spacing:13.800467px;}
.ls51{letter-spacing:13.800600px;}
.ls1b{letter-spacing:14.022384px;}
.ls4a{letter-spacing:14.028096px;}
.ls45{letter-spacing:15.360386px;}
.ls1c{letter-spacing:15.954342px;}
.ls29{letter-spacing:16.674199px;}
.ls46{letter-spacing:16.689120px;}
.ls2a{letter-spacing:16.728179px;}
.ls3a{letter-spacing:16.785120px;}
.ls1e{letter-spacing:16.787751px;}
.ls20{letter-spacing:16.791120px;}
.ls38{letter-spacing:17.172179px;}
.lsd{letter-spacing:18.169632px;}
.ls3e{letter-spacing:19.195572px;}
.lsc{letter-spacing:21.831983px;}
.lsb{letter-spacing:26.688288px;}
.ls33{letter-spacing:34.302467px;}
.ls36{letter-spacing:51.984467px;}
.ls24{letter-spacing:54.072467px;}
.ls28{letter-spacing:1101.408393px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse{word-spacing:-59.999400px;}
.ws51{word-spacing:-55.007542px;}
.ws17{word-spacing:-50.423542px;}
.ws3f{word-spacing:-43.559564px;}
.ws27{word-spacing:-40.679661px;}
.ws1f{word-spacing:-40.607662px;}
.ws14{word-spacing:-36.671542px;}
.ws66{word-spacing:-34.847564px;}
.wsb{word-spacing:-33.899661px;}
.ws2d{word-spacing:-33.839662px;}
.ws1e{word-spacing:-31.679712px;}
.ws4c{word-spacing:-29.879701px;}
.ws34{word-spacing:-29.765038px;}
.ws25{word-spacing:-29.759702px;}
.ws22{word-spacing:-28.799712px;}
.ws39{word-spacing:-27.119661px;}
.ws15{word-spacing:-27.116941px;}
.ws12{word-spacing:-27.072883px;}
.ws11{word-spacing:-27.069733px;}
.ws4{word-spacing:-26.999700px;}
.ws52{word-spacing:-26.639734px;}
.ws65{word-spacing:-26.140954px;}
.ws69{word-spacing:-25.636954px;}
.ws5e{word-spacing:-25.636660px;}
.ws5c{word-spacing:-25.630954px;}
.ws5a{word-spacing:-25.630660px;}
.ws64{word-spacing:-24.335696px;}
.ws73{word-spacing:-23.999700px;}
.ws6b{word-spacing:-23.857309px;}
.ws75{word-spacing:-23.857114px;}
.ws5f{word-spacing:-23.856451px;}
.ws7a{word-spacing:-23.856117px;}
.ws5d{word-spacing:-23.855702px;}
.ws74{word-spacing:-23.853599px;}
.ws6c{word-spacing:-23.851537px;}
.ws6e{word-spacing:-23.812276px;}
.ws67{word-spacing:-23.812024px;}
.ws6d{word-spacing:-23.811599px;}
.ws59{word-spacing:-23.810932px;}
.ws62{word-spacing:-23.810773px;}
.ws78{word-spacing:-23.810270px;}
.ws60{word-spacing:-23.809194px;}
.ws76{word-spacing:-23.808118px;}
.ws1{word-spacing:-23.807702px;}
.ws77{word-spacing:-23.805251px;}
.ws68{word-spacing:-23.571895px;}
.ws3{word-spacing:-23.039712px;}
.ws6f{word-spacing:-22.945823px;}
.ws5b{word-spacing:-21.454408px;}
.ws24{word-spacing:-20.234880px;}
.ws1c{word-spacing:-16.961846px;}
.ws6{word-spacing:-16.949661px;}
.wsa{word-spacing:-16.799664px;}
.ws19{word-spacing:-16.763848px;}
.ws18{word-spacing:-16.565849px;}
.ws1a{word-spacing:-16.499850px;}
.ws2e{word-spacing:-15.719843px;}
.ws41{word-spacing:-15.659843px;}
.ws3c{word-spacing:-15.599844px;}
.ws40{word-spacing:-15.539845px;}
.ws43{word-spacing:-15.479845px;}
.ws46{word-spacing:-15.419846px;}
.ws47{word-spacing:-15.359846px;}
.ws32{word-spacing:-15.310267px;}
.ws33{word-spacing:-15.299847px;}
.ws28{word-spacing:-15.239848px;}
.ws4b{word-spacing:-15.179848px;}
.ws30{word-spacing:-15.119849px;}
.ws4a{word-spacing:-15.062416px;}
.ws54{word-spacing:-15.062145px;}
.ws57{word-spacing:-15.061923px;}
.ws56{word-spacing:-15.061742px;}
.ws31{word-spacing:-15.061519px;}
.ws55{word-spacing:-15.060390px;}
.ws20{word-spacing:-15.059849px;}
.ws42{word-spacing:-15.058180px;}
.ws38{word-spacing:-15.058090px;}
.ws37{word-spacing:-15.057687px;}
.ws3b{word-spacing:-15.056896px;}
.ws3e{word-spacing:-15.005136px;}
.ws53{word-spacing:-15.001921px;}
.ws58{word-spacing:-15.001883px;}
.ws21{word-spacing:-14.999850px;}
.ws2c{word-spacing:-14.999222px;}
.ws48{word-spacing:-14.999136px;}
.ws3d{word-spacing:-14.998848px;}
.ws3a{word-spacing:-14.998651px;}
.ws49{word-spacing:-14.998631px;}
.ws26{word-spacing:-14.998626px;}
.ws5{word-spacing:-14.879814px;}
.ws44{word-spacing:-14.261004px;}
.ws23{word-spacing:-13.967825px;}
.ws13{word-spacing:-13.438806px;}
.ws71{word-spacing:-12.575843px;}
.ws63{word-spacing:-12.527843px;}
.ws4e{word-spacing:-12.479844px;}
.ws4d{word-spacing:-12.431845px;}
.ws61{word-spacing:-12.383845px;}
.ws6a{word-spacing:-12.287846px;}
.ws72{word-spacing:-12.143848px;}
.ws2{word-spacing:-12.047849px;}
.ws79{word-spacing:-12.004000px;}
.ws70{word-spacing:-12.003481px;}
.ws10{word-spacing:-11.999850px;}
.ws16{word-spacing:-11.999568px;}
.ws8{word-spacing:-10.240649px;}
.ws7{word-spacing:-10.199850px;}
.ws9{word-spacing:-5.639887px;}
.ws2a{word-spacing:-3.448560px;}
.ws45{word-spacing:-3.443484px;}
.ws2b{word-spacing:-3.442560px;}
.wsc{word-spacing:-3.359966px;}
.wsd{word-spacing:-3.299967px;}
.ws50{word-spacing:-1.259987px;}
.ws4f{word-spacing:-1.199988px;}
.ws1d{word-spacing:-0.065699px;}
.ws2f{word-spacing:-0.059999px;}
.ws1b{word-spacing:-0.047999px;}
.ws29{word-spacing:-0.041999px;}
.wsf{word-spacing:-0.035999px;}
.ws0{word-spacing:0.000000px;}
.ws36{word-spacing:1007.023440px;}
.ws35{word-spacing:1060.105440px;}
._f{margin-left:-8.435912px;}
._8{margin-left:-7.011500px;}
._9{margin-left:-5.603916px;}
._4{margin-left:-4.211953px;}
._6{margin-left:-3.119961px;}
._2{margin-left:-2.051977px;}
._5{margin-left:-1.007987px;}
._7{width:1.019982px;}
._3{width:2.051977px;}
._d{width:3.770765px;}
._e{width:10.556175px;}
._a{width:12.023855px;}
._b{width:13.043874px;}
._0{width:14.543818px;}
._10{width:18.000732px;}
._1{width:1192.603073px;}
._c{width:1718.341073px;}
.fc5{color:rgb(167,208,57);}
.fc4{color:rgb(210,32,39);}
.fc3{color:rgb(47,122,181);}
.fc2{color:rgb(0,110,178);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:29.999400px;}
.fs14{font-size:33.724800px;}
.fsb{font-size:34.799400px;}
.fsc{font-size:35.999400px;}
.fsd{font-size:37.799400px;}
.fs9{font-size:40.799400px;}
.fs13{font-size:41.999400px;}
.fs5{font-size:42.000000px;}
.fs12{font-size:42.156000px;}
.fsf{font-size:46.371600px;}
.fs6{font-size:47.999400px;}
.fs0{font-size:48.000000px;}
.fs3{font-size:49.072383px;}
.fs1{font-size:54.000000px;}
.fsa{font-size:59.999400px;}
.fs10{font-size:65.699400px;}
.fse{font-size:65.999400px;}
.fs11{font-size:71.999400px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:96.000000px;}
.fs7{font-size:107.998800px;}
.y0{bottom:0.000000px;}
.yd8{bottom:39.301500px;}
.y95{bottom:39.391500px;}
.yd0{bottom:39.481500px;}
.yd4{bottom:39.571500px;}
.y5b{bottom:40.411500px;}
.y17{bottom:64.920000px;}
.y94{bottom:71.053500px;}
.y16d{bottom:79.123500px;}
.y5a{bottom:80.278500px;}
.y12a{bottom:86.053500px;}
.y93{bottom:89.803500px;}
.y16c{bottom:94.123500px;}
.y59{bottom:99.028500px;}
.y129{bottom:101.053500px;}
.y92{bottom:108.553500px;}
.y16b{bottom:109.123500px;}
.y128{bottom:116.053500px;}
.y58{bottom:117.778500px;}
.y16a{bottom:124.123500px;}
.y91{bottom:127.303500px;}
.y127{bottom:131.053500px;}
.y57{bottom:136.528500px;}
.y169{bottom:139.123500px;}
.y90{bottom:146.053500px;}
.y168{bottom:154.123500px;}
.y56{bottom:155.278500px;}
.y126{bottom:161.053500px;}
.y8f{bottom:164.803500px;}
.y167{bottom:169.123500px;}
.y55{bottom:174.028500px;}
.y125{bottom:176.053500px;}
.y100{bottom:183.483000px;}
.y8e{bottom:183.553500px;}
.yba{bottom:183.702000px;}
.y166{bottom:184.123500px;}
.y124{bottom:191.053500px;}
.y54{bottom:192.778500px;}
.y165{bottom:199.123500px;}
.y8d{bottom:202.303500px;}
.y123{bottom:206.053500px;}
.y53{bottom:211.528500px;}
.y164{bottom:214.123500px;}
.y8c{bottom:221.053500px;}
.yb9{bottom:221.133000px;}
.yff{bottom:228.174000px;}
.y163{bottom:229.123500px;}
.y52{bottom:230.278500px;}
.y122{bottom:236.053500px;}
.y8b{bottom:239.803500px;}
.y162{bottom:244.123500px;}
.yfe{bottom:246.924000px;}
.y51{bottom:249.028500px;}
.y121{bottom:251.053500px;}
.y8a{bottom:258.553500px;}
.yb8{bottom:258.877500px;}
.y161{bottom:259.123500px;}
.yfd{bottom:265.674000px;}
.y120{bottom:266.053500px;}
.y50{bottom:267.778500px;}
.y160{bottom:274.123500px;}
.y89{bottom:277.303500px;}
.yb7{bottom:277.627500px;}
.y11f{bottom:281.053500px;}
.yfc{bottom:284.424000px;}
.y4f{bottom:286.528500px;}
.y15f{bottom:289.123500px;}
.y88{bottom:296.053500px;}
.yfb{bottom:303.174000px;}
.y15e{bottom:304.123500px;}
.y4e{bottom:305.278500px;}
.yb6{bottom:307.447500px;}
.y11e{bottom:311.053500px;}
.y87{bottom:314.803500px;}
.yb5{bottom:317.736000px;}
.y15d{bottom:319.123500px;}
.yfa{bottom:321.924000px;}
.y86{bottom:333.553500px;}
.y15c{bottom:334.123500px;}
.yf9{bottom:340.674000px;}
.y4d{bottom:342.709500px;}
.y11d{bottom:344.733000px;}
.y15b{bottom:349.123500px;}
.y85{bottom:352.303500px;}
.yf8{bottom:359.424000px;}
.yb3{bottom:363.831000px;}
.y15a{bottom:364.123500px;}
.ycf{bottom:371.053500px;}
.y84{bottom:371.202000px;}
.yb2{bottom:374.119500px;}
.yf7{bottom:378.174000px;}
.y159{bottom:379.123500px;}
.y11c{bottom:379.633500px;}
.yb4{bottom:384.267000px;}
.yce{bottom:389.803500px;}
.y158{bottom:394.123500px;}
.yf6{bottom:396.924000px;}
.y11b{bottom:398.383500px;}
.y4c{bottom:405.513000px;}
.ycd{bottom:408.553500px;}
.y83{bottom:408.873000px;}
.y157{bottom:409.123500px;}
.yf5{bottom:415.674000px;}
.y11a{bottom:417.133500px;}
.yb1{bottom:419.034000px;}
.y156{bottom:424.123500px;}
.y4b{bottom:425.763000px;}
.ycc{bottom:427.303500px;}
.y82{bottom:427.623000px;}
.yf4{bottom:434.424000px;}
.y119{bottom:435.883500px;}
.yb0{bottom:437.784000px;}
.y155{bottom:439.123500px;}
.y4a{bottom:446.013000px;}
.ycb{bottom:446.053500px;}
.y81{bottom:446.373000px;}
.yf3{bottom:453.174000px;}
.y154{bottom:454.123500px;}
.y118{bottom:454.633500px;}
.yaf{bottom:456.534000px;}
.yca{bottom:464.803500px;}
.y80{bottom:465.123000px;}
.y49{bottom:466.263000px;}
.y153{bottom:469.123500px;}
.yf2{bottom:471.924000px;}
.y117{bottom:473.383500px;}
.yc9{bottom:483.553500px;}
.y7f{bottom:483.873000px;}
.y152{bottom:484.123500px;}
.yae{bottom:486.279000px;}
.y48{bottom:486.513000px;}
.yf1{bottom:490.674000px;}
.y116{bottom:492.133500px;}
.yad{bottom:496.567500px;}
.y151{bottom:499.123500px;}
.yc8{bottom:502.303500px;}
.y7e{bottom:502.623000px;}
.y47{bottom:506.763000px;}
.yf0{bottom:509.424000px;}
.y115{bottom:510.883500px;}
.y150{bottom:514.123500px;}
.yc7{bottom:521.053500px;}
.y7d{bottom:521.373000px;}
.y46{bottom:527.013000px;}
.yef{bottom:528.174000px;}
.y14f{bottom:529.123500px;}
.y114{bottom:529.633500px;}
.yac{bottom:539.584500px;}
.yc6{bottom:539.803500px;}
.y7c{bottom:540.123000px;}
.y14e{bottom:544.123500px;}
.yee{bottom:546.924000px;}
.y45{bottom:547.263000px;}
.y113{bottom:548.383500px;}
.yab{bottom:558.334500px;}
.yc5{bottom:558.553500px;}
.y7b{bottom:558.873000px;}
.y14d{bottom:559.123500px;}
.yed{bottom:565.674000px;}
.y44{bottom:567.513000px;}
.y14c{bottom:574.123500px;}
.yaa{bottom:577.084500px;}
.yc4{bottom:577.303500px;}
.y7a{bottom:577.623000px;}
.yec{bottom:584.424000px;}
.y112{bottom:585.813000px;}
.y43{bottom:587.763000px;}
.y14b{bottom:589.123500px;}
.ya9{bottom:595.834500px;}
.yc3{bottom:596.053500px;}
.y79{bottom:596.373000px;}
.yeb{bottom:603.174000px;}
.y14a{bottom:604.123500px;}
.y42{bottom:608.013000px;}
.yd3{bottom:614.088000px;}
.ya8{bottom:614.734500px;}
.yc2{bottom:614.803500px;}
.y78{bottom:615.123000px;}
.y149{bottom:619.123500px;}
.y111{bottom:620.713500px;}
.yea{bottom:621.924000px;}
.yd2{bottom:627.588000px;}
.y41{bottom:628.263000px;}
.yc1{bottom:633.553500px;}
.yd7{bottom:633.702000px;}
.y77{bottom:633.873000px;}
.y148{bottom:634.123500px;}
.y110{bottom:639.463500px;}
.ye9{bottom:640.674000px;}
.yd1{bottom:641.088000px;}
.y40{bottom:648.513000px;}
.y147{bottom:649.123500px;}
.yc0{bottom:652.303500px;}
.ya7{bottom:652.479000px;}
.y76{bottom:652.623000px;}
.y10f{bottom:658.213500px;}
.ye8{bottom:659.424000px;}
.y146{bottom:664.123500px;}
.y3f{bottom:668.763000px;}
.ybf{bottom:671.053500px;}
.ya6{bottom:671.229000px;}
.y75{bottom:671.523000px;}
.y10e{bottom:676.963500px;}
.ye7{bottom:678.174000px;}
.y145{bottom:679.123500px;}
.y3e{bottom:689.013000px;}
.ybe{bottom:689.803500px;}
.ya5{bottom:689.979000px;}
.y144{bottom:694.123500px;}
.y10d{bottom:695.713500px;}
.ye6{bottom:696.924000px;}
.ybd{bottom:708.553500px;}
.ya4{bottom:708.729000px;}
.y74{bottom:708.952500px;}
.y143{bottom:709.123500px;}
.y3d{bottom:709.263000px;}
.yd6{bottom:711.559500px;}
.y10c{bottom:714.463500px;}
.ye5{bottom:715.674000px;}
.ydd{bottom:718.627500px;}
.y2d{bottom:719.869500px;}
.y142{bottom:724.123500px;}
.yd5{bottom:725.059500px;}
.ya3{bottom:727.479000px;}
.y3c{bottom:729.513000px;}
.y2c{bottom:731.869500px;}
.ydc{bottom:732.127500px;}
.y10b{bottom:733.213500px;}
.ye4{bottom:734.424000px;}
.y141{bottom:739.123500px;}
.y2b{bottom:743.869500px;}
.ydb{bottom:745.627500px;}
.ya2{bottom:746.229000px;}
.y73{bottom:746.623500px;}
.y3b{bottom:749.763000px;}
.y10a{bottom:751.963500px;}
.ye3{bottom:753.174000px;}
.y140{bottom:754.123500px;}
.y2a{bottom:755.869500px;}
.yda{bottom:759.127500px;}
.ya1{bottom:764.979000px;}
.y72{bottom:765.373500px;}
.y29{bottom:767.869500px;}
.y13f{bottom:769.123500px;}
.y109{bottom:770.713500px;}
.ye2{bottom:771.924000px;}
.yd9{bottom:772.627500px;}
.y28{bottom:779.869500px;}
.ya0{bottom:783.729000px;}
.y71{bottom:784.123500px;}
.ybc{bottom:784.368000px;}
.y108{bottom:789.463500px;}
.ye1{bottom:790.674000px;}
.y27{bottom:797.847000px;}
.ybb{bottom:797.868000px;}
.y13e{bottom:799.123500px;}
.y9f{bottom:802.479000px;}
.y70{bottom:802.873500px;}
.y3a{bottom:804.063000px;}
.y107{bottom:808.213500px;}
.y26{bottom:809.847000px;}
.y13d{bottom:814.123500px;}
.y9e{bottom:821.229000px;}
.y6f{bottom:821.623500px;}
.y25{bottom:821.847000px;}
.y39{bottom:825.028500px;}
.y106{bottom:826.963500px;}
.y13c{bottom:829.123500px;}
.y24{bottom:833.847000px;}
.y9d{bottom:839.979000px;}
.y6e{bottom:840.373500px;}
.y13b{bottom:844.123500px;}
.y23{bottom:845.847000px;}
.y38{bottom:850.650000px;}
.y9c{bottom:858.729000px;}
.y6d{bottom:859.123500px;}
.ye0{bottom:861.189000px;}
.y105{bottom:864.393000px;}
.y13a{bottom:874.123500px;}
.y16{bottom:874.260000px;}
.ydf{bottom:874.689000px;}
.y9b{bottom:877.479000px;}
.y37{bottom:877.764000px;}
.y6c{bottom:877.873500px;}
.y22{bottom:881.410500px;}
.y15{bottom:886.260000px;}
.yde{bottom:888.189000px;}
.y139{bottom:889.123500px;}
.y36{bottom:892.017000px;}
.y21{bottom:893.733000px;}
.y9a{bottom:896.229000px;}
.y6b{bottom:896.623500px;}
.y14{bottom:898.260000px;}
.y104{bottom:899.293500px;}
.y7{bottom:903.150000px;}
.y138{bottom:904.123500px;}
.y35{bottom:907.017000px;}
.y20{bottom:913.234500px;}
.y99{bottom:914.979000px;}
.y6a{bottom:915.373500px;}
.y34{bottom:916.786500px;}
.y103{bottom:918.043500px;}
.y137{bottom:919.123500px;}
.y13{bottom:921.510000px;}
.y1f{bottom:925.558500px;}
.y6{bottom:932.250000px;}
.y12{bottom:933.510000px;}
.y98{bottom:933.729000px;}
.y69{bottom:934.123500px;}
.y102{bottom:936.793500px;}
.y33{bottom:937.017000px;}
.y1e{bottom:945.058500px;}
.y11{bottom:945.510000px;}
.y136{bottom:949.123500px;}
.y97{bottom:952.479000px;}
.y68{bottom:952.873500px;}
.y32{bottom:954.876000px;}
.y1d{bottom:957.382500px;}
.y10{bottom:957.510000px;}
.y135{bottom:964.123500px;}
.yf{bottom:969.510000px;}
.y96{bottom:971.379000px;}
.y67{bottom:971.623500px;}
.y5{bottom:972.630000px;}
.y31{bottom:972.876000px;}
.y101{bottom:974.223000px;}
.y1c{bottom:976.882500px;}
.y134{bottom:979.123500px;}
.ye{bottom:981.510000px;}
.y1b{bottom:988.683000px;}
.y66{bottom:990.373500px;}
.yd{bottom:993.510000px;}
.y133{bottom:994.123500px;}
.yc{bottom:1005.510000px;}
.y65{bottom:1009.123500px;}
.y30{bottom:1009.641000px;}
.y4{bottom:1011.165000px;}
.y132{bottom:1024.123500px;}
.y1a{bottom:1024.515000px;}
.y64{bottom:1027.873500px;}
.yb{bottom:1028.760000px;}
.y131{bottom:1039.123500px;}
.y3{bottom:1039.965000px;}
.ya{bottom:1040.760000px;}
.y2f{bottom:1041.141000px;}
.y63{bottom:1046.623500px;}
.y9{bottom:1052.760000px;}
.y130{bottom:1054.123500px;}
.y62{bottom:1065.373500px;}
.y12f{bottom:1069.123500px;}
.y8{bottom:1078.260000px;}
.y2{bottom:1081.485000px;}
.y2e{bottom:1081.944000px;}
.y61{bottom:1084.123500px;}
.y12e{bottom:1099.123500px;}
.y60{bottom:1102.873500px;}
.y12d{bottom:1114.123500px;}
.y5f{bottom:1121.623500px;}
.y12c{bottom:1129.123500px;}
.y5e{bottom:1140.373500px;}
.y12b{bottom:1144.123500px;}
.y19{bottom:1151.571000px;}
.y5d{bottom:1159.123500px;}
.y1{bottom:1176.375000px;}
.y18{bottom:1196.496000px;}
.y5c{bottom:1211.496000px;}
.h11{height:16.739721px;}
.hc{height:20.999580px;}
.h10{height:28.349550px;}
.hd{height:30.599550px;}
.hb{height:33.599580px;}
.h9{height:35.999550px;}
.h4{height:36.000000px;}
.h5{height:36.804287px;}
.he{height:41.999580px;}
.h1e{height:42.237600px;}
.h18{height:42.599574px;}
.h7{height:43.804688px;}
.h16{height:44.999550px;}
.h12{height:46.859574px;}
.hf{height:49.115550px;}
.h13{height:49.499550px;}
.h1{height:50.062500px;}
.h15{height:51.119574px;}
.h17{height:53.385000px;}
.h19{height:53.391000px;}
.h2{height:56.320312px;}
.h14{height:58.622700px;}
.h3{height:72.000000px;}
.h6{height:75.093750px;}
.ha{height:75.599160px;}
.h1d{height:83.189574px;}
.h1a{height:83.549570px;}
.h1c{height:85.589550px;}
.h1b{height:86.153550px;}
.h8{height:1262.835000px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.w1{width:892.920000px;}
.w2{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:58.500000px;}
.xc{left:63.780000px;}
.xb{left:178.582500px;}
.x1c{left:184.362000px;}
.xe{left:189.790500px;}
.x1b{left:191.032500px;}
.x19{left:193.975500px;}
.xf{left:200.998500px;}
.x1d{left:203.502000px;}
.xa{left:213.105000px;}
.x3{left:237.750000px;}
.x4{left:260.400000px;}
.x5{left:293.730000px;}
.x1e{left:316.828500px;}
.x6{left:377.700000px;}
.x20{left:439.257000px;}
.x10{left:442.857000px;}
.x17{left:455.838000px;}
.x13{left:462.828000px;}
.x11{left:470.440500px;}
.x18{left:487.648500px;}
.x14{left:494.533500px;}
.x12{left:503.662500px;}
.x15{left:505.320000px;}
.x16{left:509.808000px;}
.x1a{left:577.155000px;}
.x1f{left:598.369500px;}
.x7{left:605.490000px;}
.x9{left:627.990000px;}
.x8{left:634.410000px;}
.x1{left:695.730000px;}
.xd{left:723.123000px;}
@media print{
.v3{vertical-align:-21.253333pt;}
.v2{vertical-align:-18.597333pt;}
.v4{vertical-align:-8.000000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:15.061333pt;}
.v5{vertical-align:19.349333pt;}
.v1{vertical-align:20.458667pt;}
.v6{vertical-align:36.080000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000128pt;}
.ls25{letter-spacing:0.000177pt;}
.ls3c{letter-spacing:0.000187pt;}
.ls43{letter-spacing:0.000195pt;}
.lsf{letter-spacing:0.000197pt;}
.ls6{letter-spacing:0.000256pt;}
.ls4e{letter-spacing:0.000261pt;}
.ls10{letter-spacing:0.000267pt;}
.ls3f{letter-spacing:0.000293pt;}
.ls19{letter-spacing:0.000321pt;}
.ls4d{letter-spacing:0.000334pt;}
.ls27{letter-spacing:0.000338pt;}
.ls22{letter-spacing:0.000343pt;}
.ls34{letter-spacing:0.000349pt;}
.ls3b{letter-spacing:0.000415pt;}
.ls26{letter-spacing:0.000444pt;}
.ls47{letter-spacing:0.000514pt;}
.ls7{letter-spacing:0.000533pt;}
.ls9{letter-spacing:0.003541pt;}
.ls3d{letter-spacing:0.005655pt;}
.ls4f{letter-spacing:0.005719pt;}
.ls37{letter-spacing:0.005778pt;}
.ls30{letter-spacing:0.746956pt;}
.ls31{letter-spacing:1.013626pt;}
.ls4c{letter-spacing:1.387010pt;}
.ls4{letter-spacing:1.599968pt;}
.ls3{letter-spacing:1.733299pt;}
.ls1d{letter-spacing:1.914971pt;}
.ls12{letter-spacing:2.021570pt;}
.ls14{letter-spacing:2.653291pt;}
.ls1a{letter-spacing:2.653440pt;}
.ls16{letter-spacing:2.655779pt;}
.ls48{letter-spacing:2.656085pt;}
.ls13{letter-spacing:2.656245pt;}
.ls15{letter-spacing:2.656309pt;}
.ls42{letter-spacing:2.657429pt;}
.lse{letter-spacing:2.657451pt;}
.ls21{letter-spacing:2.658773pt;}
.ls1f{letter-spacing:2.661112pt;}
.ls4b{letter-spacing:2.720314pt;}
.ls2{letter-spacing:2.773299pt;}
.ls41{letter-spacing:2.773510pt;}
.ls5{letter-spacing:3.466632pt;}
.ls40{letter-spacing:3.680345pt;}
.ls2e{letter-spacing:4.800349pt;}
.ls39{letter-spacing:8.885748pt;}
.ls1{letter-spacing:9.813595pt;}
.ls54{letter-spacing:9.813651pt;}
.ls53{letter-spacing:9.813677pt;}
.ls55{letter-spacing:9.813685pt;}
.ls2f{letter-spacing:11.549440pt;}
.lsa{letter-spacing:11.733867pt;}
.ls32{letter-spacing:11.850956pt;}
.ls35{letter-spacing:11.850959pt;}
.ls23{letter-spacing:11.856343pt;}
.ls2d{letter-spacing:12.043081pt;}
.ls2b{letter-spacing:12.048338pt;}
.ls2c{letter-spacing:12.048349pt;}
.ls49{letter-spacing:12.090752pt;}
.ls50{letter-spacing:12.261461pt;}
.ls18{letter-spacing:12.261748pt;}
.ls52{letter-spacing:12.261867pt;}
.ls11{letter-spacing:12.266795pt;}
.ls44{letter-spacing:12.267052pt;}
.ls17{letter-spacing:12.267081pt;}
.ls51{letter-spacing:12.267200pt;}
.ls1b{letter-spacing:12.464341pt;}
.ls4a{letter-spacing:12.469419pt;}
.ls45{letter-spacing:13.653676pt;}
.ls1c{letter-spacing:14.181637pt;}
.ls29{letter-spacing:14.821510pt;}
.ls46{letter-spacing:14.834773pt;}
.ls2a{letter-spacing:14.869492pt;}
.ls3a{letter-spacing:14.920107pt;}
.ls1e{letter-spacing:14.922445pt;}
.ls20{letter-spacing:14.925440pt;}
.ls38{letter-spacing:15.264159pt;}
.lsd{letter-spacing:16.150784pt;}
.ls3e{letter-spacing:17.062731pt;}
.lsc{letter-spacing:19.406207pt;}
.lsb{letter-spacing:23.722923pt;}
.ls33{letter-spacing:30.491081pt;}
.ls36{letter-spacing:46.208415pt;}
.ls24{letter-spacing:48.064415pt;}
.ls28{letter-spacing:979.029683pt;}
.wse{word-spacing:-53.332800pt;}
.ws51{word-spacing:-48.895593pt;}
.ws17{word-spacing:-44.820926pt;}
.ws3f{word-spacing:-38.719613pt;}
.ws27{word-spacing:-36.159699pt;}
.ws1f{word-spacing:-36.095699pt;}
.ws14{word-spacing:-32.596926pt;}
.ws66{word-spacing:-30.975613pt;}
.wsb{word-spacing:-30.133032pt;}
.ws2d{word-spacing:-30.079699pt;}
.ws1e{word-spacing:-28.159744pt;}
.ws4c{word-spacing:-26.559734pt;}
.ws34{word-spacing:-26.457811pt;}
.ws25{word-spacing:-26.453069pt;}
.ws22{word-spacing:-25.599744pt;}
.ws39{word-spacing:-24.106365pt;}
.ws15{word-spacing:-24.103947pt;}
.ws12{word-spacing:-24.064785pt;}
.ws11{word-spacing:-24.061985pt;}
.ws4{word-spacing:-23.999733pt;}
.ws52{word-spacing:-23.679763pt;}
.ws65{word-spacing:-23.236403pt;}
.ws69{word-spacing:-22.788403pt;}
.ws5e{word-spacing:-22.788142pt;}
.ws5c{word-spacing:-22.783070pt;}
.ws5a{word-spacing:-22.782809pt;}
.ws64{word-spacing:-21.631730pt;}
.ws73{word-spacing:-21.333067pt;}
.ws6b{word-spacing:-21.206497pt;}
.ws75{word-spacing:-21.206324pt;}
.ws5f{word-spacing:-21.205734pt;}
.ws7a{word-spacing:-21.205437pt;}
.ws5d{word-spacing:-21.205068pt;}
.ws74{word-spacing:-21.203199pt;}
.ws6c{word-spacing:-21.201366pt;}
.ws6e{word-spacing:-21.166467pt;}
.ws67{word-spacing:-21.166243pt;}
.ws6d{word-spacing:-21.165866pt;}
.ws59{word-spacing:-21.165273pt;}
.ws62{word-spacing:-21.165131pt;}
.ws78{word-spacing:-21.164685pt;}
.ws60{word-spacing:-21.163728pt;}
.ws76{word-spacing:-21.162771pt;}
.ws1{word-spacing:-21.162402pt;}
.ws77{word-spacing:-21.160223pt;}
.ws68{word-spacing:-20.952796pt;}
.ws3{word-spacing:-20.479744pt;}
.ws6f{word-spacing:-20.396287pt;}
.ws5b{word-spacing:-19.070585pt;}
.ws24{word-spacing:-17.986560pt;}
.ws1c{word-spacing:-15.077196pt;}
.ws6{word-spacing:-15.066365pt;}
.wsa{word-spacing:-14.933035pt;}
.ws19{word-spacing:-14.901198pt;}
.ws18{word-spacing:-14.725199pt;}
.ws1a{word-spacing:-14.666533pt;}
.ws2e{word-spacing:-13.973194pt;}
.ws41{word-spacing:-13.919861pt;}
.ws3c{word-spacing:-13.866528pt;}
.ws40{word-spacing:-13.813195pt;}
.ws43{word-spacing:-13.759862pt;}
.ws46{word-spacing:-13.706530pt;}
.ws47{word-spacing:-13.653197pt;}
.ws32{word-spacing:-13.609126pt;}
.ws33{word-spacing:-13.599864pt;}
.ws28{word-spacing:-13.546531pt;}
.ws4b{word-spacing:-13.493198pt;}
.ws30{word-spacing:-13.439866pt;}
.ws4a{word-spacing:-13.388814pt;}
.ws54{word-spacing:-13.388573pt;}
.ws57{word-spacing:-13.388376pt;}
.ws56{word-spacing:-13.388215pt;}
.ws31{word-spacing:-13.388017pt;}
.ws55{word-spacing:-13.387013pt;}
.ws20{word-spacing:-13.386533pt;}
.ws42{word-spacing:-13.385049pt;}
.ws38{word-spacing:-13.384969pt;}
.ws37{word-spacing:-13.384611pt;}
.ws3b{word-spacing:-13.383908pt;}
.ws3e{word-spacing:-13.337899pt;}
.ws53{word-spacing:-13.335041pt;}
.ws58{word-spacing:-13.335007pt;}
.ws21{word-spacing:-13.333200pt;}
.ws2c{word-spacing:-13.332642pt;}
.ws48{word-spacing:-13.332565pt;}
.ws3d{word-spacing:-13.332309pt;}
.ws3a{word-spacing:-13.332134pt;}
.ws49{word-spacing:-13.332116pt;}
.ws26{word-spacing:-13.332112pt;}
.ws5{word-spacing:-13.226501pt;}
.ws44{word-spacing:-12.676448pt;}
.ws23{word-spacing:-12.415845pt;}
.ws13{word-spacing:-11.945605pt;}
.ws71{word-spacing:-11.178527pt;}
.ws63{word-spacing:-11.135861pt;}
.ws4e{word-spacing:-11.093195pt;}
.ws4d{word-spacing:-11.050529pt;}
.ws61{word-spacing:-11.007862pt;}
.ws6a{word-spacing:-10.922530pt;}
.ws72{word-spacing:-10.794532pt;}
.ws2{word-spacing:-10.709199pt;}
.ws79{word-spacing:-10.670222pt;}
.ws70{word-spacing:-10.669761pt;}
.ws10{word-spacing:-10.666533pt;}
.ws16{word-spacing:-10.666283pt;}
.ws8{word-spacing:-9.102799pt;}
.ws7{word-spacing:-9.066533pt;}
.ws9{word-spacing:-5.013233pt;}
.ws2a{word-spacing:-3.065387pt;}
.ws45{word-spacing:-3.060875pt;}
.ws2b{word-spacing:-3.060053pt;}
.wsc{word-spacing:-2.986637pt;}
.wsd{word-spacing:-2.933304pt;}
.ws50{word-spacing:-1.119989pt;}
.ws4f{word-spacing:-1.066656pt;}
.ws1d{word-spacing:-0.058399pt;}
.ws2f{word-spacing:-0.053333pt;}
.ws1b{word-spacing:-0.042666pt;}
.ws29{word-spacing:-0.037333pt;}
.wsf{word-spacing:-0.031999pt;}
.ws0{word-spacing:0.000000pt;}
.ws36{word-spacing:895.131947pt;}
.ws35{word-spacing:942.315947pt;}
._f{margin-left:-7.498589pt;}
._8{margin-left:-6.232444pt;}
._9{margin-left:-4.981259pt;}
._4{margin-left:-3.743958pt;}
._6{margin-left:-2.773299pt;}
._2{margin-left:-1.823980pt;}
._5{margin-left:-0.895989pt;}
._7{width:0.906651pt;}
._3{width:1.823980pt;}
._d{width:3.351791pt;}
._e{width:9.383267pt;}
._a{width:10.687871pt;}
._b{width:11.594555pt;}
._0{width:12.927838pt;}
._10{width:16.000651pt;}
._1{width:1060.091621pt;}
._c{width:1527.414287pt;}
.fs8{font-size:26.666133pt;}
.fs14{font-size:29.977600pt;}
.fsb{font-size:30.932800pt;}
.fsc{font-size:31.999467pt;}
.fsd{font-size:33.599467pt;}
.fs9{font-size:36.266133pt;}
.fs13{font-size:37.332800pt;}
.fs5{font-size:37.333333pt;}
.fs12{font-size:37.472000pt;}
.fsf{font-size:41.219200pt;}
.fs6{font-size:42.666133pt;}
.fs0{font-size:42.666667pt;}
.fs3{font-size:43.619896pt;}
.fs1{font-size:48.000000pt;}
.fsa{font-size:53.332800pt;}
.fs10{font-size:58.399467pt;}
.fse{font-size:58.666133pt;}
.fs11{font-size:63.999467pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:85.333333pt;}
.fs7{font-size:95.998933pt;}
.y0{bottom:0.000000pt;}
.yd8{bottom:34.934667pt;}
.y95{bottom:35.014667pt;}
.yd0{bottom:35.094667pt;}
.yd4{bottom:35.174667pt;}
.y5b{bottom:35.921333pt;}
.y17{bottom:57.706667pt;}
.y94{bottom:63.158667pt;}
.y16d{bottom:70.332000pt;}
.y5a{bottom:71.358667pt;}
.y12a{bottom:76.492000pt;}
.y93{bottom:79.825333pt;}
.y16c{bottom:83.665333pt;}
.y59{bottom:88.025333pt;}
.y129{bottom:89.825333pt;}
.y92{bottom:96.492000pt;}
.y16b{bottom:96.998667pt;}
.y128{bottom:103.158667pt;}
.y58{bottom:104.692000pt;}
.y16a{bottom:110.332000pt;}
.y91{bottom:113.158667pt;}
.y127{bottom:116.492000pt;}
.y57{bottom:121.358667pt;}
.y169{bottom:123.665333pt;}
.y90{bottom:129.825333pt;}
.y168{bottom:136.998667pt;}
.y56{bottom:138.025333pt;}
.y126{bottom:143.158667pt;}
.y8f{bottom:146.492000pt;}
.y167{bottom:150.332000pt;}
.y55{bottom:154.692000pt;}
.y125{bottom:156.492000pt;}
.y100{bottom:163.096000pt;}
.y8e{bottom:163.158667pt;}
.yba{bottom:163.290667pt;}
.y166{bottom:163.665333pt;}
.y124{bottom:169.825333pt;}
.y54{bottom:171.358667pt;}
.y165{bottom:176.998667pt;}
.y8d{bottom:179.825333pt;}
.y123{bottom:183.158667pt;}
.y53{bottom:188.025333pt;}
.y164{bottom:190.332000pt;}
.y8c{bottom:196.492000pt;}
.yb9{bottom:196.562667pt;}
.yff{bottom:202.821333pt;}
.y163{bottom:203.665333pt;}
.y52{bottom:204.692000pt;}
.y122{bottom:209.825333pt;}
.y8b{bottom:213.158667pt;}
.y162{bottom:216.998667pt;}
.yfe{bottom:219.488000pt;}
.y51{bottom:221.358667pt;}
.y121{bottom:223.158667pt;}
.y8a{bottom:229.825333pt;}
.yb8{bottom:230.113333pt;}
.y161{bottom:230.332000pt;}
.yfd{bottom:236.154667pt;}
.y120{bottom:236.492000pt;}
.y50{bottom:238.025333pt;}
.y160{bottom:243.665333pt;}
.y89{bottom:246.492000pt;}
.yb7{bottom:246.780000pt;}
.y11f{bottom:249.825333pt;}
.yfc{bottom:252.821333pt;}
.y4f{bottom:254.692000pt;}
.y15f{bottom:256.998667pt;}
.y88{bottom:263.158667pt;}
.yfb{bottom:269.488000pt;}
.y15e{bottom:270.332000pt;}
.y4e{bottom:271.358667pt;}
.yb6{bottom:273.286667pt;}
.y11e{bottom:276.492000pt;}
.y87{bottom:279.825333pt;}
.yb5{bottom:282.432000pt;}
.y15d{bottom:283.665333pt;}
.yfa{bottom:286.154667pt;}
.y86{bottom:296.492000pt;}
.y15c{bottom:296.998667pt;}
.yf9{bottom:302.821333pt;}
.y4d{bottom:304.630667pt;}
.y11d{bottom:306.429333pt;}
.y15b{bottom:310.332000pt;}
.y85{bottom:313.158667pt;}
.yf8{bottom:319.488000pt;}
.yb3{bottom:323.405333pt;}
.y15a{bottom:323.665333pt;}
.ycf{bottom:329.825333pt;}
.y84{bottom:329.957333pt;}
.yb2{bottom:332.550667pt;}
.yf7{bottom:336.154667pt;}
.y159{bottom:336.998667pt;}
.y11c{bottom:337.452000pt;}
.yb4{bottom:341.570667pt;}
.yce{bottom:346.492000pt;}
.y158{bottom:350.332000pt;}
.yf6{bottom:352.821333pt;}
.y11b{bottom:354.118667pt;}
.y4c{bottom:360.456000pt;}
.ycd{bottom:363.158667pt;}
.y83{bottom:363.442667pt;}
.y157{bottom:363.665333pt;}
.yf5{bottom:369.488000pt;}
.y11a{bottom:370.785333pt;}
.yb1{bottom:372.474667pt;}
.y156{bottom:376.998667pt;}
.y4b{bottom:378.456000pt;}
.ycc{bottom:379.825333pt;}
.y82{bottom:380.109333pt;}
.yf4{bottom:386.154667pt;}
.y119{bottom:387.452000pt;}
.yb0{bottom:389.141333pt;}
.y155{bottom:390.332000pt;}
.y4a{bottom:396.456000pt;}
.ycb{bottom:396.492000pt;}
.y81{bottom:396.776000pt;}
.yf3{bottom:402.821333pt;}
.y154{bottom:403.665333pt;}
.y118{bottom:404.118667pt;}
.yaf{bottom:405.808000pt;}
.yca{bottom:413.158667pt;}
.y80{bottom:413.442667pt;}
.y49{bottom:414.456000pt;}
.y153{bottom:416.998667pt;}
.yf2{bottom:419.488000pt;}
.y117{bottom:420.785333pt;}
.yc9{bottom:429.825333pt;}
.y7f{bottom:430.109333pt;}
.y152{bottom:430.332000pt;}
.yae{bottom:432.248000pt;}
.y48{bottom:432.456000pt;}
.yf1{bottom:436.154667pt;}
.y116{bottom:437.452000pt;}
.yad{bottom:441.393333pt;}
.y151{bottom:443.665333pt;}
.yc8{bottom:446.492000pt;}
.y7e{bottom:446.776000pt;}
.y47{bottom:450.456000pt;}
.yf0{bottom:452.821333pt;}
.y115{bottom:454.118667pt;}
.y150{bottom:456.998667pt;}
.yc7{bottom:463.158667pt;}
.y7d{bottom:463.442667pt;}
.y46{bottom:468.456000pt;}
.yef{bottom:469.488000pt;}
.y14f{bottom:470.332000pt;}
.y114{bottom:470.785333pt;}
.yac{bottom:479.630667pt;}
.yc6{bottom:479.825333pt;}
.y7c{bottom:480.109333pt;}
.y14e{bottom:483.665333pt;}
.yee{bottom:486.154667pt;}
.y45{bottom:486.456000pt;}
.y113{bottom:487.452000pt;}
.yab{bottom:496.297333pt;}
.yc5{bottom:496.492000pt;}
.y7b{bottom:496.776000pt;}
.y14d{bottom:496.998667pt;}
.yed{bottom:502.821333pt;}
.y44{bottom:504.456000pt;}
.y14c{bottom:510.332000pt;}
.yaa{bottom:512.964000pt;}
.yc4{bottom:513.158667pt;}
.y7a{bottom:513.442667pt;}
.yec{bottom:519.488000pt;}
.y112{bottom:520.722667pt;}
.y43{bottom:522.456000pt;}
.y14b{bottom:523.665333pt;}
.ya9{bottom:529.630667pt;}
.yc3{bottom:529.825333pt;}
.y79{bottom:530.109333pt;}
.yeb{bottom:536.154667pt;}
.y14a{bottom:536.998667pt;}
.y42{bottom:540.456000pt;}
.yd3{bottom:545.856000pt;}
.ya8{bottom:546.430667pt;}
.yc2{bottom:546.492000pt;}
.y78{bottom:546.776000pt;}
.y149{bottom:550.332000pt;}
.y111{bottom:551.745333pt;}
.yea{bottom:552.821333pt;}
.yd2{bottom:557.856000pt;}
.y41{bottom:558.456000pt;}
.yc1{bottom:563.158667pt;}
.yd7{bottom:563.290667pt;}
.y77{bottom:563.442667pt;}
.y148{bottom:563.665333pt;}
.y110{bottom:568.412000pt;}
.ye9{bottom:569.488000pt;}
.yd1{bottom:569.856000pt;}
.y40{bottom:576.456000pt;}
.y147{bottom:576.998667pt;}
.yc0{bottom:579.825333pt;}
.ya7{bottom:579.981333pt;}
.y76{bottom:580.109333pt;}
.y10f{bottom:585.078667pt;}
.ye8{bottom:586.154667pt;}
.y146{bottom:590.332000pt;}
.y3f{bottom:594.456000pt;}
.ybf{bottom:596.492000pt;}
.ya6{bottom:596.648000pt;}
.y75{bottom:596.909333pt;}
.y10e{bottom:601.745333pt;}
.ye7{bottom:602.821333pt;}
.y145{bottom:603.665333pt;}
.y3e{bottom:612.456000pt;}
.ybe{bottom:613.158667pt;}
.ya5{bottom:613.314667pt;}
.y144{bottom:616.998667pt;}
.y10d{bottom:618.412000pt;}
.ye6{bottom:619.488000pt;}
.ybd{bottom:629.825333pt;}
.ya4{bottom:629.981333pt;}
.y74{bottom:630.180000pt;}
.y143{bottom:630.332000pt;}
.y3d{bottom:630.456000pt;}
.yd6{bottom:632.497333pt;}
.y10c{bottom:635.078667pt;}
.ye5{bottom:636.154667pt;}
.ydd{bottom:638.780000pt;}
.y2d{bottom:639.884000pt;}
.y142{bottom:643.665333pt;}
.yd5{bottom:644.497333pt;}
.ya3{bottom:646.648000pt;}
.y3c{bottom:648.456000pt;}
.y2c{bottom:650.550667pt;}
.ydc{bottom:650.780000pt;}
.y10b{bottom:651.745333pt;}
.ye4{bottom:652.821333pt;}
.y141{bottom:656.998667pt;}
.y2b{bottom:661.217333pt;}
.ydb{bottom:662.780000pt;}
.ya2{bottom:663.314667pt;}
.y73{bottom:663.665333pt;}
.y3b{bottom:666.456000pt;}
.y10a{bottom:668.412000pt;}
.ye3{bottom:669.488000pt;}
.y140{bottom:670.332000pt;}
.y2a{bottom:671.884000pt;}
.yda{bottom:674.780000pt;}
.ya1{bottom:679.981333pt;}
.y72{bottom:680.332000pt;}
.y29{bottom:682.550667pt;}
.y13f{bottom:683.665333pt;}
.y109{bottom:685.078667pt;}
.ye2{bottom:686.154667pt;}
.yd9{bottom:686.780000pt;}
.y28{bottom:693.217333pt;}
.ya0{bottom:696.648000pt;}
.y71{bottom:696.998667pt;}
.ybc{bottom:697.216000pt;}
.y108{bottom:701.745333pt;}
.ye1{bottom:702.821333pt;}
.y27{bottom:709.197333pt;}
.ybb{bottom:709.216000pt;}
.y13e{bottom:710.332000pt;}
.y9f{bottom:713.314667pt;}
.y70{bottom:713.665333pt;}
.y3a{bottom:714.722667pt;}
.y107{bottom:718.412000pt;}
.y26{bottom:719.864000pt;}
.y13d{bottom:723.665333pt;}
.y9e{bottom:729.981333pt;}
.y6f{bottom:730.332000pt;}
.y25{bottom:730.530667pt;}
.y39{bottom:733.358667pt;}
.y106{bottom:735.078667pt;}
.y13c{bottom:736.998667pt;}
.y24{bottom:741.197333pt;}
.y9d{bottom:746.648000pt;}
.y6e{bottom:746.998667pt;}
.y13b{bottom:750.332000pt;}
.y23{bottom:751.864000pt;}
.y38{bottom:756.133333pt;}
.y9c{bottom:763.314667pt;}
.y6d{bottom:763.665333pt;}
.ye0{bottom:765.501333pt;}
.y105{bottom:768.349333pt;}
.y13a{bottom:776.998667pt;}
.y16{bottom:777.120000pt;}
.ydf{bottom:777.501333pt;}
.y9b{bottom:779.981333pt;}
.y37{bottom:780.234667pt;}
.y6c{bottom:780.332000pt;}
.y22{bottom:783.476000pt;}
.y15{bottom:787.786667pt;}
.yde{bottom:789.501333pt;}
.y139{bottom:790.332000pt;}
.y36{bottom:792.904000pt;}
.y21{bottom:794.429333pt;}
.y9a{bottom:796.648000pt;}
.y6b{bottom:796.998667pt;}
.y14{bottom:798.453333pt;}
.y104{bottom:799.372000pt;}
.y7{bottom:802.800000pt;}
.y138{bottom:803.665333pt;}
.y35{bottom:806.237333pt;}
.y20{bottom:811.764000pt;}
.y99{bottom:813.314667pt;}
.y6a{bottom:813.665333pt;}
.y34{bottom:814.921333pt;}
.y103{bottom:816.038667pt;}
.y137{bottom:816.998667pt;}
.y13{bottom:819.120000pt;}
.y1f{bottom:822.718667pt;}
.y6{bottom:828.666667pt;}
.y12{bottom:829.786667pt;}
.y98{bottom:829.981333pt;}
.y69{bottom:830.332000pt;}
.y102{bottom:832.705333pt;}
.y33{bottom:832.904000pt;}
.y1e{bottom:840.052000pt;}
.y11{bottom:840.453333pt;}
.y136{bottom:843.665333pt;}
.y97{bottom:846.648000pt;}
.y68{bottom:846.998667pt;}
.y32{bottom:848.778667pt;}
.y1d{bottom:851.006667pt;}
.y10{bottom:851.120000pt;}
.y135{bottom:856.998667pt;}
.yf{bottom:861.786667pt;}
.y96{bottom:863.448000pt;}
.y67{bottom:863.665333pt;}
.y5{bottom:864.560000pt;}
.y31{bottom:864.778667pt;}
.y101{bottom:865.976000pt;}
.y1c{bottom:868.340000pt;}
.y134{bottom:870.332000pt;}
.ye{bottom:872.453333pt;}
.y1b{bottom:878.829333pt;}
.y66{bottom:880.332000pt;}
.yd{bottom:883.120000pt;}
.y133{bottom:883.665333pt;}
.yc{bottom:893.786667pt;}
.y65{bottom:896.998667pt;}
.y30{bottom:897.458667pt;}
.y4{bottom:898.813333pt;}
.y132{bottom:910.332000pt;}
.y1a{bottom:910.680000pt;}
.y64{bottom:913.665333pt;}
.yb{bottom:914.453333pt;}
.y131{bottom:923.665333pt;}
.y3{bottom:924.413333pt;}
.ya{bottom:925.120000pt;}
.y2f{bottom:925.458667pt;}
.y63{bottom:930.332000pt;}
.y9{bottom:935.786667pt;}
.y130{bottom:936.998667pt;}
.y62{bottom:946.998667pt;}
.y12f{bottom:950.332000pt;}
.y8{bottom:958.453333pt;}
.y2{bottom:961.320000pt;}
.y2e{bottom:961.728000pt;}
.y61{bottom:963.665333pt;}
.y12e{bottom:976.998667pt;}
.y60{bottom:980.332000pt;}
.y12d{bottom:990.332000pt;}
.y5f{bottom:996.998667pt;}
.y12c{bottom:1003.665333pt;}
.y5e{bottom:1013.665333pt;}
.y12b{bottom:1016.998667pt;}
.y19{bottom:1023.618667pt;}
.y5d{bottom:1030.332000pt;}
.y1{bottom:1045.666667pt;}
.y18{bottom:1063.552000pt;}
.y5c{bottom:1076.885333pt;}
.h11{height:14.879752pt;}
.hc{height:18.666293pt;}
.h10{height:25.199600pt;}
.hd{height:27.199600pt;}
.hb{height:29.866293pt;}
.h9{height:31.999600pt;}
.h4{height:32.000000pt;}
.h5{height:32.714922pt;}
.he{height:37.332960pt;}
.h1e{height:37.544533pt;}
.h18{height:37.866288pt;}
.h7{height:38.937500pt;}
.h16{height:39.999600pt;}
.h12{height:41.652955pt;}
.hf{height:43.658267pt;}
.h13{height:43.999600pt;}
.h1{height:44.500000pt;}
.h15{height:45.439621pt;}
.h17{height:47.453333pt;}
.h19{height:47.458667pt;}
.h2{height:50.062500pt;}
.h14{height:52.109067pt;}
.h3{height:64.000000pt;}
.h6{height:66.750000pt;}
.ha{height:67.199253pt;}
.h1d{height:73.946288pt;}
.h1a{height:74.266285pt;}
.h1c{height:76.079600pt;}
.h1b{height:76.580933pt;}
.h8{height:1122.520000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.w1{width:793.706667pt;}
.w2{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:52.000000pt;}
.xc{left:56.693333pt;}
.xb{left:158.740000pt;}
.x1c{left:163.877333pt;}
.xe{left:168.702667pt;}
.x1b{left:169.806667pt;}
.x19{left:172.422667pt;}
.xf{left:178.665333pt;}
.x1d{left:180.890667pt;}
.xa{left:189.426667pt;}
.x3{left:211.333333pt;}
.x4{left:231.466667pt;}
.x5{left:261.093333pt;}
.x1e{left:281.625333pt;}
.x6{left:335.733333pt;}
.x20{left:390.450667pt;}
.x10{left:393.650667pt;}
.x17{left:405.189333pt;}
.x13{left:411.402667pt;}
.x11{left:418.169333pt;}
.x18{left:433.465333pt;}
.x14{left:439.585333pt;}
.x12{left:447.700000pt;}
.x15{left:449.173333pt;}
.x16{left:453.162667pt;}
.x1a{left:513.026667pt;}
.x1f{left:531.884000pt;}
.x7{left:538.213333pt;}
.x9{left:558.213333pt;}
.x8{left:563.920000pt;}
.x1{left:618.426667pt;}
.xd{left:642.776000pt;}
}




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