
    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_69da72ef81734ad4890186bb.woff')format("woff");}.ff1{font-family:ff1;line-height:0.942000;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_01f70344656a08c56ec71038.woff')format("woff");}.ff2{font-family:ff2;line-height:1.033000;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_731ac525bb1c95ac24186b90.woff')format("woff");}.ff3{font-family:ff3;line-height:0.937000;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_f8a19c047d47207a026e3f4c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.969000;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_3807db0dc22280e69a6c9731.woff')format("woff");}.ff5{font-family:ff5;line-height:0.681641;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_05c81e81057402d821553a76.woff')format("woff");}.ff6{font-family:ff6;line-height:0.959000;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_23157abd99e92ddae479106c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.730000;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_656ced3f8c3f4b4cc117b4c9.woff')format("woff");}.ff8{font-family:ff8;line-height:0.954102;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_3b8404c91ae612a2bb5da886.woff')format("woff");}.ff9{font-family:ff9;line-height:0.937000;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_dbfc7e9321172cb914d91a7f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.700000;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_a199c3cf444fa40dc9d44d13.woff')format("woff");}.ffb{font-family:ffb;line-height:0.861816;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_6ab4fa0782ff57d93552ebef.woff')format("woff");}.ffc{font-family:ffc;line-height:0.694824;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;}
.m3{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);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,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);}
.v8{vertical-align:-26.561964px;}
.v3{vertical-align:-19.980000px;}
.v7{vertical-align:-17.401761px;}
.v6{vertical-align:-14.855802px;}
.v4{vertical-align:-9.160203px;}
.v5{vertical-align:-5.695599px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:15.984000px;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:23.975400px;}
.ls25{letter-spacing:-5.280000px;}
.ls16{letter-spacing:-3.195000px;}
.ls19{letter-spacing:-1.536000px;}
.ls18{letter-spacing:-1.440000px;}
.ls27{letter-spacing:-1.008000px;}
.ls26{letter-spacing:-0.960000px;}
.ls1f{letter-spacing:-0.912000px;}
.ls2a{letter-spacing:-0.900000px;}
.ls7{letter-spacing:-0.810000px;}
.ls1b{letter-spacing:-0.768000px;}
.ls1a{letter-spacing:-0.576000px;}
.ls6{letter-spacing:-0.540000px;}
.ls1d{letter-spacing:-0.480000px;}
.ls2e{letter-spacing:-0.432000px;}
.ls2f{letter-spacing:-0.363792px;}
.ls1c{letter-spacing:-0.336000px;}
.ls2d{letter-spacing:-0.324000px;}
.ls17{letter-spacing:-0.240000px;}
.ls1e{letter-spacing:-0.192000px;}
.ls30{letter-spacing:-0.144000px;}
.ls29{letter-spacing:-0.120000px;}
.ls24{letter-spacing:-0.104988px;}
.ls22{letter-spacing:-0.078741px;}
.ls21{letter-spacing:-0.052494px;}
.ls20{letter-spacing:-0.026247px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.020400px;}
.ls3{letter-spacing:0.021000px;}
.ls13{letter-spacing:0.026247px;}
.ls12{letter-spacing:0.052494px;}
.ls15{letter-spacing:0.078741px;}
.ls23{letter-spacing:0.104988px;}
.ls14{letter-spacing:0.131235px;}
.ls2c{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.209880px;}
.ls28{letter-spacing:0.300000px;}
.ls2b{letter-spacing:0.384000px;}
.lsa{letter-spacing:9.685143px;}
.lse{letter-spacing:10.000107px;}
.lsc{letter-spacing:10.236330px;}
.lsd{letter-spacing:10.315071px;}
.ls9{letter-spacing:10.630035px;}
.lsb{letter-spacing:10.682529px;}
.lsf{letter-spacing:16.955562px;}
.ls11{letter-spacing:23.018619px;}
.ls10{letter-spacing:23.963511px;}
.ls0{letter-spacing:43.199928px;}
.ls2{letter-spacing:43.220544px;}
.ls1{letter-spacing:43.220976px;}
.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:-54.000000px;}
.ws86{word-spacing:-26.247000px;}
.ws8{word-spacing:-20.748000px;}
.ws6{word-spacing:-17.784000px;}
.wsf3{word-spacing:-14.820000px;}
.ws2{word-spacing:-13.338000px;}
.ws4{word-spacing:-12.798000px;}
.wsf5{word-spacing:-12.258000px;}
.wsf4{word-spacing:-11.826000px;}
.ws7{word-spacing:-11.718000px;}
.ws5{word-spacing:-11.448000px;}
.wsf7{word-spacing:-11.280000px;}
.ws0{word-spacing:-11.214000px;}
.wsf8{word-spacing:-11.040000px;}
.ws1{word-spacing:-10.896000px;}
.ws135{word-spacing:-10.752000px;}
.wsf9{word-spacing:-10.656000px;}
.ws74{word-spacing:-10.176000px;}
.ws77{word-spacing:-9.840000px;}
.ws9{word-spacing:-8.150340px;}
.ws87{word-spacing:-6.063057px;}
.ws88{word-spacing:-6.010563px;}
.wsf6{word-spacing:-5.988576px;}
.ws85{word-spacing:-5.931822px;}
.ws39{word-spacing:-4.320000px;}
.wsb8{word-spacing:-3.660000px;}
.ws9e{word-spacing:-3.600000px;}
.ws8e{word-spacing:-3.300000px;}
.ws142{word-spacing:-3.120000px;}
.wsfc{word-spacing:-3.024000px;}
.ws12f{word-spacing:-2.928000px;}
.ws45{word-spacing:-2.640000px;}
.ws1b{word-spacing:-2.520000px;}
.wseb{word-spacing:-2.340000px;}
.wsff{word-spacing:-2.322000px;}
.ws5e{word-spacing:-2.280000px;}
.wse5{word-spacing:-2.220000px;}
.ws123{word-spacing:-2.160000px;}
.wsba{word-spacing:-2.100000px;}
.ws5a{word-spacing:-2.040000px;}
.ws37{word-spacing:-1.980000px;}
.ws3f{word-spacing:-1.860000px;}
.ws30{word-spacing:-1.740000px;}
.wscb{word-spacing:-1.620000px;}
.ws119{word-spacing:-1.584000px;}
.wsd8{word-spacing:-1.500000px;}
.wsbe{word-spacing:-1.440000px;}
.ws3c{word-spacing:-1.380000px;}
.ws90{word-spacing:-1.320000px;}
.wsef{word-spacing:-1.296000px;}
.ws8f{word-spacing:-1.260000px;}
.ws102{word-spacing:-1.188000px;}
.wsbb{word-spacing:-1.140000px;}
.wsf2{word-spacing:-0.972000px;}
.ws130{word-spacing:-0.960000px;}
.ws28{word-spacing:-0.936000px;}
.ws12{word-spacing:-0.780000px;}
.wsc5{word-spacing:-0.720000px;}
.wse3{word-spacing:-0.660000px;}
.ws131{word-spacing:-0.624000px;}
.ws32{word-spacing:-0.600000px;}
.ws136{word-spacing:-0.576000px;}
.ws36{word-spacing:-0.540000px;}
.ws5d{word-spacing:-0.480000px;}
.ws66{word-spacing:-0.432000px;}
.ws53{word-spacing:-0.420000px;}
.wsde{word-spacing:-0.360000px;}
.wsc{word-spacing:-0.324000px;}
.ws51{word-spacing:-0.300000px;}
.wsb7{word-spacing:-0.216000px;}
.ws6a{word-spacing:-0.180000px;}
.wsb0{word-spacing:-0.131235px;}
.ws8c{word-spacing:-0.120000px;}
.ws26{word-spacing:-0.113400px;}
.wsac{word-spacing:-0.104988px;}
.ws13c{word-spacing:-0.096000px;}
.wsae{word-spacing:-0.078741px;}
.wsed{word-spacing:-0.060000px;}
.wsaf{word-spacing:-0.052494px;}
.wsa{word-spacing:0.000000px;}
.wsa9{word-spacing:0.026247px;}
.ws115{word-spacing:0.048000px;}
.wsaa{word-spacing:0.052494px;}
.wsab{word-spacing:0.078741px;}
.ws10d{word-spacing:0.096000px;}
.wsad{word-spacing:0.104988px;}
.ws2f{word-spacing:0.180000px;}
.ws16{word-spacing:0.240000px;}
.ws1f{word-spacing:0.300000px;}
.ws1c{word-spacing:0.420000px;}
.wsfe{word-spacing:0.432000px;}
.wsa5{word-spacing:0.480000px;}
.ws9a{word-spacing:0.504000px;}
.ws27{word-spacing:0.540000px;}
.wse4{word-spacing:0.600000px;}
.ws103{word-spacing:0.702000px;}
.wsf{word-spacing:0.720000px;}
.ws144{word-spacing:0.768000px;}
.ws1e{word-spacing:0.780000px;}
.ws29{word-spacing:0.840000px;}
.ws64{word-spacing:0.900000px;}
.ws12a{word-spacing:0.960000px;}
.ws109{word-spacing:1.008000px;}
.ws31{word-spacing:1.020000px;}
.wsce{word-spacing:1.080000px;}
.wsbd{word-spacing:1.140000px;}
.wsc8{word-spacing:1.260000px;}
.wsf0{word-spacing:1.296000px;}
.wsca{word-spacing:1.440000px;}
.ws11b{word-spacing:1.488000px;}
.ws60{word-spacing:1.560000px;}
.ws100{word-spacing:1.566000px;}
.ws117{word-spacing:1.584000px;}
.ws8d{word-spacing:1.620000px;}
.wsfa{word-spacing:1.674000px;}
.ws2d{word-spacing:1.680000px;}
.wsd9{word-spacing:1.800000px;}
.ws73{word-spacing:1.860000px;}
.ws21{word-spacing:1.920000px;}
.ws71{word-spacing:1.980000px;}
.ws134{word-spacing:2.064000px;}
.ws25{word-spacing:2.154600px;}
.ws46{word-spacing:2.160000px;}
.ws138{word-spacing:2.208000px;}
.ws67{word-spacing:2.340000px;}
.ws139{word-spacing:2.352000px;}
.ws10{word-spacing:2.400000px;}
.ws129{word-spacing:2.496000px;}
.ws58{word-spacing:2.520000px;}
.ws112{word-spacing:2.544000px;}
.ws4d{word-spacing:2.580000px;}
.ws14{word-spacing:2.640000px;}
.ws3a{word-spacing:2.700000px;}
.ws116{word-spacing:2.736000px;}
.ws50{word-spacing:2.760000px;}
.ws127{word-spacing:2.784000px;}
.ws105{word-spacing:2.808000px;}
.ws3b{word-spacing:2.820000px;}
.ws17{word-spacing:2.880000px;}
.ws2e{word-spacing:2.940000px;}
.wsd3{word-spacing:3.060000px;}
.wsa6{word-spacing:3.120000px;}
.wse9{word-spacing:3.180000px;}
.ws89{word-spacing:3.195000px;}
.ws121{word-spacing:3.216000px;}
.ws3e{word-spacing:3.240000px;}
.ws108{word-spacing:3.264000px;}
.ws63{word-spacing:3.300000px;}
.ws5f{word-spacing:3.480000px;}
.wsc3{word-spacing:3.540000px;}
.ws141{word-spacing:3.552000px;}
.wsd7{word-spacing:3.600000px;}
.wsfb{word-spacing:3.618000px;}
.wscd{word-spacing:3.660000px;}
.ws68{word-spacing:3.720000px;}
.wsa0{word-spacing:3.840000px;}
.ws12c{word-spacing:3.888000px;}
.wsc7{word-spacing:3.960000px;}
.ws11c{word-spacing:4.032000px;}
.ws69{word-spacing:4.080000px;}
.wsd{word-spacing:4.104000px;}
.ws140{word-spacing:4.128000px;}
.wsd5{word-spacing:4.140000px;}
.ws43{word-spacing:4.200000px;}
.ws104{word-spacing:4.212000px;}
.ws124{word-spacing:4.224000px;}
.wsc4{word-spacing:4.260000px;}
.ws128{word-spacing:4.272000px;}
.ws15{word-spacing:4.320000px;}
.ws48{word-spacing:4.440000px;}
.ws137{word-spacing:4.464000px;}
.ws11{word-spacing:4.500000px;}
.ws6f{word-spacing:4.560000px;}
.ws12b{word-spacing:4.608000px;}
.wsdb{word-spacing:4.680000px;}
.ws70{word-spacing:4.740000px;}
.ws2c{word-spacing:4.920000px;}
.ws10f{word-spacing:4.944000px;}
.ws55{word-spacing:5.040000px;}
.ws13d{word-spacing:5.088000px;}
.ws2b{word-spacing:5.100000px;}
.wsa1{word-spacing:5.160000px;}
.wse8{word-spacing:5.220000px;}
.ws10a{word-spacing:5.376000px;}
.wsb9{word-spacing:5.400000px;}
.wsbc{word-spacing:5.460000px;}
.ws107{word-spacing:5.472000px;}
.ws35{word-spacing:5.520000px;}
.ws146{word-spacing:5.568000px;}
.ws47{word-spacing:5.580000px;}
.ws118{word-spacing:5.616000px;}
.ws23{word-spacing:5.640000px;}
.ws1d{word-spacing:5.700000px;}
.ws113{word-spacing:5.808000px;}
.ws5b{word-spacing:5.820000px;}
.ws65{word-spacing:5.880000px;}
.wsfd{word-spacing:5.886000px;}
.ws133{word-spacing:5.904000px;}
.ws41{word-spacing:6.000000px;}
.ws93{word-spacing:6.120000px;}
.ws8b{word-spacing:6.240000px;}
.ws12e{word-spacing:6.288000px;}
.wsa2{word-spacing:6.360000px;}
.ws22{word-spacing:6.420000px;}
.ws145{word-spacing:6.432000px;}
.ws8a{word-spacing:6.480000px;}
.ws11f{word-spacing:6.528000px;}
.ws9d{word-spacing:6.600000px;}
.ws143{word-spacing:6.624000px;}
.ws101{word-spacing:6.642000px;}
.ws6b{word-spacing:6.720000px;}
.wsf1{word-spacing:6.804000px;}
.wse2{word-spacing:6.840000px;}
.ws92{word-spacing:6.900000px;}
.ws94{word-spacing:7.080000px;}
.ws11e{word-spacing:7.104000px;}
.wsb{word-spacing:7.128000px;}
.ws4b{word-spacing:7.200000px;}
.ws49{word-spacing:7.260000px;}
.ws96{word-spacing:7.320000px;}
.ws20{word-spacing:7.560000px;}
.ws4c{word-spacing:7.680000px;}
.ws52{word-spacing:7.740000px;}
.wsa8{word-spacing:7.776000px;}
.ws42{word-spacing:7.800000px;}
.ws19{word-spacing:7.860000px;}
.wsda{word-spacing:7.920000px;}
.wsc9{word-spacing:7.980000px;}
.wsd1{word-spacing:8.040000px;}
.ws3d{word-spacing:8.100000px;}
.ws4e{word-spacing:8.280000px;}
.wsd2{word-spacing:8.340000px;}
.ws9b{word-spacing:8.400000px;}
.ws18{word-spacing:8.460000px;}
.wsa7{word-spacing:8.478000px;}
.ws120{word-spacing:8.544000px;}
.ws13a{word-spacing:8.640000px;}
.ws6c{word-spacing:8.760000px;}
.wsc0{word-spacing:8.820000px;}
.wsdc{word-spacing:9.000000px;}
.wsbf{word-spacing:9.120000px;}
.wscc{word-spacing:9.180000px;}
.ws4a{word-spacing:9.360000px;}
.ws147{word-spacing:9.408000px;}
.ws98{word-spacing:9.420000px;}
.ws12d{word-spacing:9.456000px;}
.wsc6{word-spacing:9.540000px;}
.wsec{word-spacing:9.660000px;}
.ws13e{word-spacing:9.696000px;}
.ws132{word-spacing:9.744000px;}
.ws114{word-spacing:9.888000px;}
.ws56{word-spacing:9.900000px;}
.ws122{word-spacing:9.984000px;}
.ws5c{word-spacing:10.080000px;}
.ws13{word-spacing:10.140000px;}
.wse{word-spacing:10.200000px;}
.ws10b{word-spacing:10.272000px;}
.ws59{word-spacing:10.440000px;}
.ws11d{word-spacing:10.464000px;}
.ws54{word-spacing:10.500000px;}
.ws111{word-spacing:10.512000px;}
.ws110{word-spacing:10.608000px;}
.ws6d{word-spacing:10.620000px;}
.ws61{word-spacing:10.680000px;}
.ws10c{word-spacing:10.800000px;}
.ws126{word-spacing:10.944000px;}
.wse0{word-spacing:11.040000px;}
.ws11a{word-spacing:11.136000px;}
.ws10e{word-spacing:11.184000px;}
.wse1{word-spacing:11.220000px;}
.wsa4{word-spacing:11.232000px;}
.ws106{word-spacing:11.280000px;}
.ws2a{word-spacing:11.340000px;}
.ws40{word-spacing:11.400000px;}
.ws44{word-spacing:11.460000px;}
.ws72{word-spacing:11.700000px;}
.ws62{word-spacing:11.880000px;}
.ws57{word-spacing:11.940000px;}
.ws24{word-spacing:12.060000px;}
.wsa3{word-spacing:12.204000px;}
.wsd6{word-spacing:12.360000px;}
.wse7{word-spacing:12.540000px;}
.ws38{word-spacing:12.600000px;}
.wsea{word-spacing:12.660000px;}
.ws33{word-spacing:13.140000px;}
.ws91{word-spacing:13.320000px;}
.ws125{word-spacing:13.536000px;}
.ws9f{word-spacing:13.560000px;}
.wscf{word-spacing:14.400000px;}
.ws6e{word-spacing:14.580000px;}
.wsc1{word-spacing:14.616000px;}
.ws95{word-spacing:15.120000px;}
.ws13f{word-spacing:15.312000px;}
.wsee{word-spacing:15.540000px;}
.ws97{word-spacing:15.720000px;}
.ws1a{word-spacing:16.080000px;}
.ws34{word-spacing:16.200000px;}
.ws9c{word-spacing:16.440000px;}
.wsdf{word-spacing:16.860000px;}
.wsd0{word-spacing:16.980000px;}
.ws83{word-spacing:17.086797px;}
.ws84{word-spacing:17.716725px;}
.ws4f{word-spacing:17.760000px;}
.wsdd{word-spacing:18.120000px;}
.ws13b{word-spacing:19.680000px;}
.wse6{word-spacing:20.820000px;}
.wsd4{word-spacing:21.600000px;}
.wsc2{word-spacing:28.512000px;}
.ws99{word-spacing:32.400000px;}
.wsb5{word-spacing:42.091200px;}
.wsb4{word-spacing:45.844200px;}
.wsb1{word-spacing:52.715400px;}
.wsb2{word-spacing:53.668200px;}
.wsb6{word-spacing:87.622800px;}
.wsb3{word-spacing:94.426200px;}
.ws7f{word-spacing:298.486800px;}
.ws79{word-spacing:307.630800px;}
.ws7e{word-spacing:313.342800px;}
.ws81{word-spacing:318.891000px;}
.ws7a{word-spacing:322.990800px;}
.ws7d{word-spacing:332.039400px;}
.ws78{word-spacing:338.398800px;}
.ws7b{word-spacing:339.315600px;}
.ws76{word-spacing:339.671400px;}
.ws7c{word-spacing:347.955000px;}
.ws80{word-spacing:350.016000px;}
.ws75{word-spacing:359.375400px;}
.ws82{word-spacing:360.671400px;}
._a{margin-left:-2823.568200px;}
._b{margin-left:-9.240000px;}
._3{margin-left:-7.842600px;}
._9{margin-left:-5.898000px;}
._5{margin-left:-4.569000px;}
._1{margin-left:-3.036600px;}
._0{margin-left:-1.134000px;}
._2{width:1.440000px;}
._8{width:2.724000px;}
._15{width:5.280000px;}
._7{width:15.839400px;}
._6{width:16.944000px;}
._4{width:22.320000px;}
._c{width:31.071600px;}
._24{width:37.786200px;}
._34{width:39.424800px;}
._16{width:42.654600px;}
._25{width:48.717600px;}
._17{width:62.021400px;}
._23{width:67.430400px;}
._30{width:98.518800px;}
._27{width:102.771000px;}
._19{width:105.322200px;}
._1e{width:107.022600px;}
._2d{width:110.038800px;}
._1b{width:118.542600px;}
._29{width:121.558800px;}
._21{width:130.096200px;}
._35{width:145.290000px;}
._31{width:156.810000px;}
._1a{width:158.046000px;}
._1f{width:159.747000px;}
._2c{width:162.298200px;}
._2a{width:168.330000px;}
._18{width:169.532400px;}
._28{width:173.818200px;}
._1c{width:182.787000px;}
._11{width:228.502200px;}
._20{width:236.960400px;}
._12{width:288.411000px;}
._13{width:291.982200px;}
._14{width:332.734200px;}
._22{width:336.572400px;}
._10{width:345.982200px;}
._f{width:348.814200px;}
._1d{width:448.238400px;}
._e{width:482.796600px;}
._2e{width:932.332800px;}
._33{width:970.642800px;}
._2f{width:978.562800px;}
._32{width:1031.218800px;}
._26{width:1249.894800px;}
._2b{width:1296.898800px;}
._d{width:2397.381000px;}
.fc3{color:rgb(112,109,110);}
.fc1{color:rgb(31,100,48);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:24.982200px;}
.fsb{font-size:26.247000px;}
.fsd{font-size:27.984000px;}
.fs8{font-size:34.980000px;}
.fs9{font-size:37.800000px;}
.fs2{font-size:41.976000px;}
.fs3{font-size:42.000000px;}
.fsa{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.fs0{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.ydd{bottom:1.738200px;}
.ye6{bottom:1.738500px;}
.ye0{bottom:1.738800px;}
.yee{bottom:1.739100px;}
.ye3{bottom:1.739400px;}
.yda{bottom:1.740150px;}
.yeb{bottom:1.745700px;}
.y25{bottom:64.661700px;}
.y24{bottom:77.261700px;}
.y23{bottom:89.861700px;}
.y108{bottom:125.291250px;}
.y107{bottom:129.634800px;}
.y138{bottom:143.267700px;}
.y5e{bottom:143.291250px;}
.y20{bottom:143.291400px;}
.y69{bottom:144.283350px;}
.y106{bottom:144.634800px;}
.y137{bottom:161.267700px;}
.y5d{bottom:161.291250px;}
.y1f{bottom:161.291400px;}
.y68{bottom:162.283350px;}
.y105{bottom:165.264150px;}
.y136{bottom:179.267700px;}
.y5c{bottom:179.291250px;}
.y1e{bottom:179.291400px;}
.y104{bottom:185.893650px;}
.y135{bottom:197.267700px;}
.y5b{bottom:197.291250px;}
.y1d{bottom:197.291400px;}
.y103{bottom:206.523000px;}
.y134{bottom:215.267700px;}
.y67{bottom:215.291250px;}
.y1c{bottom:215.291400px;}
.y102{bottom:227.152350px;}
.y133{bottom:233.267700px;}
.y66{bottom:233.291250px;}
.y1b{bottom:233.291400px;}
.y5a{bottom:241.771500px;}
.yb4{bottom:246.049350px;}
.y101{bottom:247.781850px;}
.y132{bottom:251.267700px;}
.y65{bottom:251.291250px;}
.y1a{bottom:251.291400px;}
.y10d{bottom:253.741800px;}
.yb3{bottom:264.049350px;}
.y100{bottom:268.411200px;}
.y131{bottom:269.267700px;}
.y64{bottom:269.291250px;}
.y19{bottom:269.291400px;}
.y59{bottom:272.527500px;}
.y130{bottom:287.267700px;}
.y63{bottom:287.291250px;}
.y18{bottom:287.291400px;}
.yff{bottom:289.040550px;}
.ybf{bottom:293.623615px;}
.yc2{bottom:294.575068px;}
.yc3{bottom:295.132817px;}
.yc5{bottom:295.697128px;}
.yca{bottom:296.268000px;}
.ybd{bottom:297.029163px;}
.ycb{bottom:297.455677px;}
.ycd{bottom:302.593527px;}
.yc4{bottom:302.718200px;}
.ycc{bottom:303.065973px;}
.yc7{bottom:304.712972px;}
.yc1{bottom:305.008251px;}
.y12f{bottom:305.267700px;}
.y62{bottom:305.291250px;}
.y17{bottom:305.291400px;}
.ybb{bottom:306.596194px;}
.yfe{bottom:309.669900px;}
.yba{bottom:310.703850px;}
.ybc{bottom:312.521455px;}
.y10c{bottom:313.771500px;}
.ybe{bottom:315.454557px;}
.yc9{bottom:318.394221px;}
.y90{bottom:320.031600px;}
.yce{bottom:322.593741px;}
.y12e{bottom:323.267700px;}
.y58{bottom:323.291250px;}
.y16{bottom:323.291400px;}
.yc6{bottom:324.634445px;}
.yc0{bottom:326.438926px;}
.yc8{bottom:330.015080px;}
.y8f{bottom:338.031600px;}
.yfd{bottom:339.225600px;}
.y12d{bottom:341.267700px;}
.y57{bottom:341.291250px;}
.y15{bottom:341.291400px;}
.y10b{bottom:344.527500px;}
.yd7{bottom:345.568500px;}
.ycf{bottom:345.647250px;}
.yd9{bottom:353.868000px;}
.yd8{bottom:355.607977px;}
.y8e{bottom:356.031600px;}
.y12c{bottom:359.267700px;}
.y56{bottom:359.291250px;}
.y22{bottom:359.291400px;}
.yd0{bottom:360.036997px;}
.ydc{bottom:363.910500px;}
.ydb{bottom:365.649000px;}
.ydf{bottom:373.950000px;}
.yd1{bottom:374.426744px;}
.yb9{bottom:374.588580px;}
.yde{bottom:375.689100px;}
.y12b{bottom:377.267700px;}
.y55{bottom:377.291250px;}
.y21{bottom:377.291400px;}
.ye2{bottom:384.069000px;}
.ye1{bottom:385.808700px;}
.y14{bottom:386.329200px;}
.yb8{bottom:387.948303px;}
.yd2{bottom:388.816492px;}
.y61{bottom:392.031450px;}
.ye5{bottom:394.110000px;}
.y12a{bottom:395.267700px;}
.y54{bottom:395.291250px;}
.y8d{bottom:395.291400px;}
.ye4{bottom:395.848800px;}
.yd3{bottom:403.206239px;}
.ye8{bottom:404.149500px;}
.ye7{bottom:405.889200px;}
.yb7{bottom:413.007626px;}
.y129{bottom:413.267700px;}
.y53{bottom:413.291250px;}
.y8c{bottom:413.291400px;}
.yea{bottom:414.262500px;}
.ye9{bottom:416.008500px;}
.yd4{bottom:417.514794px;}
.yed{bottom:424.309500px;}
.yec{bottom:426.048600px;}
.yb6{bottom:427.791249px;}
.y128{bottom:431.267700px;}
.y52{bottom:431.291250px;}
.y8b{bottom:431.291400px;}
.yd5{bottom:431.904541px;}
.yf0{bottom:434.350500px;}
.yef{bottom:436.089000px;}
.yb5{bottom:441.780900px;}
.yf5{bottom:446.031450px;}
.yf1{bottom:446.208000px;}
.yd6{bottom:446.294288px;}
.y127{bottom:449.267700px;}
.y51{bottom:449.291250px;}
.y8a{bottom:449.291400px;}
.y13{bottom:462.604800px;}
.yf4{bottom:464.031450px;}
.y126{bottom:467.267700px;}
.y50{bottom:467.291250px;}
.y89{bottom:467.291400px;}
.yb2{bottom:475.364250px;}
.yf3{bottom:482.031450px;}
.y125{bottom:485.267700px;}
.y4f{bottom:485.291250px;}
.y88{bottom:485.291400px;}
.y12{bottom:489.108600px;}
.yb1{bottom:490.364250px;}
.y124{bottom:503.267700px;}
.y4e{bottom:503.291250px;}
.y87{bottom:503.291400px;}
.yb0{bottom:505.364250px;}
.y123{bottom:521.267700px;}
.y4d{bottom:521.291250px;}
.y86{bottom:521.291400px;}
.yaf{bottom:529.196100px;}
.y122{bottom:539.267700px;}
.y4c{bottom:539.291250px;}
.y85{bottom:539.291400px;}
.y11{bottom:549.628350px;}
.yae{bottom:549.825450px;}
.y121{bottom:557.267700px;}
.y4b{bottom:557.291250px;}
.y84{bottom:557.291400px;}
.y10{bottom:567.628350px;}
.yad{bottom:570.454800px;}
.y120{bottom:575.267700px;}
.y4a{bottom:575.291250px;}
.y83{bottom:575.291400px;}
.y60{bottom:590.031450px;}
.yac{bottom:591.084150px;}
.y11f{bottom:593.267700px;}
.y49{bottom:593.291250px;}
.yf{bottom:594.132300px;}
.y11e{bottom:611.267700px;}
.y48{bottom:611.291250px;}
.yab{bottom:611.713650px;}
.y82{bottom:619.771650px;}
.y11d{bottom:629.267700px;}
.y47{bottom:629.291250px;}
.yaa{bottom:632.343000px;}
.y11c{bottom:647.267700px;}
.y46{bottom:647.291250px;}
.ye{bottom:650.400000px;}
.y81{bottom:650.527650px;}
.ya9{bottom:652.972350px;}
.y11b{bottom:665.267700px;}
.y45{bottom:665.291250px;}
.yd{bottom:668.400000px;}
.ya8{bottom:673.601700px;}
.y11a{bottom:683.267700px;}
.y44{bottom:683.291250px;}
.yc{bottom:686.400000px;}
.y10a{bottom:686.527500px;}
.ya7{bottom:694.231200px;}
.y119{bottom:701.267700px;}
.y43{bottom:701.291250px;}
.y80{bottom:701.291400px;}
.ya6{bottom:714.860550px;}
.y118{bottom:719.267700px;}
.y42{bottom:719.291250px;}
.y7f{bottom:719.291400px;}
.yb{bottom:721.407900px;}
.ya5{bottom:735.489900px;}
.y117{bottom:737.267700px;}
.y41{bottom:737.291250px;}
.y7e{bottom:737.291400px;}
.y116{bottom:755.267700px;}
.y40{bottom:755.291250px;}
.y7d{bottom:755.291400px;}
.ya4{bottom:756.119250px;}
.yf6{bottom:758.527500px;}
.ya{bottom:769.171650px;}
.y115{bottom:773.267700px;}
.y3f{bottom:773.291250px;}
.y7c{bottom:773.291400px;}
.ya3{bottom:776.748750px;}
.y114{bottom:791.267700px;}
.y3e{bottom:791.291250px;}
.y7b{bottom:791.291400px;}
.y9{bottom:795.675600px;}
.ya2{bottom:797.378100px;}
.y3d{bottom:809.291250px;}
.y7a{bottom:809.291400px;}
.y8{bottom:813.675600px;}
.ya1{bottom:818.007450px;}
.y113{bottom:822.023550px;}
.y3c{bottom:827.291250px;}
.y79{bottom:827.291400px;}
.y7{bottom:831.675600px;}
.ya0{bottom:838.636800px;}
.y3b{bottom:845.291250px;}
.y6{bottom:849.675600px;}
.y9f{bottom:859.266300px;}
.y78{bottom:860.031600px;}
.y3a{bottom:863.291250px;}
.y149{bottom:868.315500px;}
.y5{bottom:876.179700px;}
.y9e{bottom:879.895650px;}
.y39{bottom:881.291250px;}
.y148{bottom:886.315500px;}
.y38{bottom:899.291250px;}
.y77{bottom:899.291400px;}
.y9d{bottom:900.525000px;}
.y147{bottom:904.315500px;}
.y4{bottom:915.778200px;}
.y37{bottom:917.291250px;}
.y76{bottom:917.291400px;}
.y9c{bottom:921.154500px;}
.y146{bottom:922.315500px;}
.y36{bottom:935.291250px;}
.y75{bottom:935.291400px;}
.y112{bottom:937.741950px;}
.y145{bottom:940.315500px;}
.y9b{bottom:941.783700px;}
.y35{bottom:953.291250px;}
.y74{bottom:953.291400px;}
.y3{bottom:953.578200px;}
.y10f{bottom:955.741950px;}
.y144{bottom:958.315500px;}
.y9a{bottom:962.413200px;}
.y5f{bottom:968.031450px;}
.y34{bottom:971.291250px;}
.y73{bottom:971.291400px;}
.y143{bottom:976.315500px;}
.y99{bottom:983.042550px;}
.yf2{bottom:986.005500px;}
.y33{bottom:989.291250px;}
.y72{bottom:989.291400px;}
.y2{bottom:991.378200px;}
.y142{bottom:994.315500px;}
.y98{bottom:1003.671900px;}
.y32{bottom:1007.291250px;}
.y71{bottom:1007.291400px;}
.y141{bottom:1012.315500px;}
.yfc{bottom:1021.671900px;}
.y97{bottom:1024.301400px;}
.y31{bottom:1025.291250px;}
.y70{bottom:1025.291400px;}
.y1{bottom:1029.178200px;}
.y140{bottom:1030.315500px;}
.yfb{bottom:1042.301250px;}
.y30{bottom:1043.291250px;}
.y6f{bottom:1043.291400px;}
.y96{bottom:1044.930750px;}
.y111{bottom:1045.741800px;}
.y13f{bottom:1048.315500px;}
.y2f{bottom:1061.291250px;}
.y6e{bottom:1061.291400px;}
.yfa{bottom:1062.930600px;}
.y10e{bottom:1063.741800px;}
.y95{bottom:1065.560100px;}
.y13e{bottom:1066.315500px;}
.y2e{bottom:1079.291250px;}
.y6d{bottom:1079.291400px;}
.yf9{bottom:1083.560100px;}
.y13d{bottom:1084.315500px;}
.y94{bottom:1086.189450px;}
.y2d{bottom:1097.291250px;}
.y6c{bottom:1097.291400px;}
.y13c{bottom:1102.315500px;}
.yf8{bottom:1104.189450px;}
.y93{bottom:1106.818950px;}
.y2c{bottom:1115.291250px;}
.y13b{bottom:1120.315500px;}
.yf7{bottom:1124.818800px;}
.y28{bottom:1126.725000px;}
.y2b{bottom:1133.291250px;}
.y6b{bottom:1136.134500px;}
.y92{bottom:1136.374500px;}
.y13a{bottom:1138.315500px;}
.y109{bottom:1150.819500px;}
.y2a{bottom:1151.291250px;}
.y110{bottom:1153.189500px;}
.y6a{bottom:1154.134500px;}
.y91{bottom:1154.374500px;}
.y139{bottom:1156.315500px;}
.y27{bottom:1166.037750px;}
.y26{bottom:1183.789800px;}
.y29{bottom:1193.518650px;}
.h14{height:7.984500px;}
.h13{height:7.986000px;}
.h15{height:7.992000px;}
.h12{height:17.077676px;}
.h11{height:17.942285px;}
.hd{height:27.575100px;}
.he{height:32.827500px;}
.hf{height:33.947754px;}
.h4{height:34.176000px;}
.h10{height:34.272000px;}
.h5{height:35.016000px;}
.h6{height:36.528000px;}
.h17{height:37.279824px;}
.h7{height:39.555000px;}
.h8{height:41.094000px;}
.h16{height:43.950000px;}
.hc{height:45.660000px;}
.hb{height:46.599780px;}
.h9{height:52.740000px;}
.h3{height:54.792000px;}
.ha{height:61.530000px;}
.h2{height:92.295000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:11.922000px;}
.w4{width:12.438000px;}
.w2{width:13.339500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x36{left:6.641100px;}
.x1{left:93.543300px;}
.x38{left:97.795200px;}
.xd{left:110.551200px;}
.x10{left:127.559100px;}
.x3{left:145.222950px;}
.x2{left:211.839150px;}
.x4{left:254.111400px;}
.xc{left:264.158100px;}
.x5{left:309.205350px;}
.xb{left:375.582450px;}
.x6{left:430.891050px;}
.x8{left:455.455950px;}
.x12{left:459.708750px;}
.x34{left:463.671060px;}
.x33{left:466.912500px;}
.xe{left:472.464450px;}
.x1e{left:475.134150px;}
.x20{left:483.435000px;}
.x7{left:487.575750px;}
.xf{left:489.472350px;}
.x21{left:497.667436px;}
.x22{left:511.821130px;}
.x23{left:525.974825px;}
.x11{left:532.396650px;}
.x37{left:535.636650px;}
.x24{left:540.207261px;}
.x39{left:542.439900px;}
.x25{left:554.360956px;}
.x26{left:568.514650px;}
.x1f{left:574.439674px;}
.x17{left:577.799100px;}
.x27{left:582.747086px;}
.x1d{left:595.937400px;}
.x1b{left:598.114950px;}
.xa{left:601.212750px;}
.x16{left:603.208950px;}
.x1a{left:604.420950px;}
.x18{left:607.048950px;}
.x15{left:608.285100px;}
.x19{left:609.382800px;}
.x14{left:610.618800px;}
.x1c{left:613.756800px;}
.x13{left:615.592800px;}
.x28{left:625.286911px;}
.x29{left:639.440606px;}
.x2a{left:653.673042px;}
.x2b{left:667.826737px;}
.x2c{left:681.980431px;}
.x2d{left:696.212867px;}
.x9{left:702.419100px;}
.x2e{left:710.366562px;}
.x2f{left:724.520257px;}
.x30{left:738.752692px;}
.x31{left:752.906387px;}
.x32{left:767.060082px;}
.x35{left:775.947300px;}
@media print{
.v8{vertical-align:-23.610635pt;}
.v3{vertical-align:-17.760000pt;}
.v7{vertical-align:-15.468232pt;}
.v6{vertical-align:-13.205157pt;}
.v4{vertical-align:-8.142403pt;}
.v5{vertical-align:-5.062755pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:14.208000pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:21.311467pt;}
.ls25{letter-spacing:-4.693333pt;}
.ls16{letter-spacing:-2.840000pt;}
.ls19{letter-spacing:-1.365333pt;}
.ls18{letter-spacing:-1.280000pt;}
.ls27{letter-spacing:-0.896000pt;}
.ls26{letter-spacing:-0.853333pt;}
.ls1f{letter-spacing:-0.810667pt;}
.ls2a{letter-spacing:-0.800000pt;}
.ls7{letter-spacing:-0.720000pt;}
.ls1b{letter-spacing:-0.682667pt;}
.ls1a{letter-spacing:-0.512000pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls1d{letter-spacing:-0.426667pt;}
.ls2e{letter-spacing:-0.384000pt;}
.ls2f{letter-spacing:-0.323371pt;}
.ls1c{letter-spacing:-0.298667pt;}
.ls2d{letter-spacing:-0.288000pt;}
.ls17{letter-spacing:-0.213333pt;}
.ls1e{letter-spacing:-0.170667pt;}
.ls30{letter-spacing:-0.128000pt;}
.ls29{letter-spacing:-0.106667pt;}
.ls24{letter-spacing:-0.093323pt;}
.ls22{letter-spacing:-0.069992pt;}
.ls21{letter-spacing:-0.046661pt;}
.ls20{letter-spacing:-0.023331pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.018133pt;}
.ls3{letter-spacing:0.018667pt;}
.ls13{letter-spacing:0.023331pt;}
.ls12{letter-spacing:0.046661pt;}
.ls15{letter-spacing:0.069992pt;}
.ls23{letter-spacing:0.093323pt;}
.ls14{letter-spacing:0.116653pt;}
.ls2c{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.186560pt;}
.ls28{letter-spacing:0.266667pt;}
.ls2b{letter-spacing:0.341333pt;}
.lsa{letter-spacing:8.609016pt;}
.lse{letter-spacing:8.888984pt;}
.lsc{letter-spacing:9.098960pt;}
.lsd{letter-spacing:9.168952pt;}
.ls9{letter-spacing:9.448920pt;}
.lsb{letter-spacing:9.495581pt;}
.lsf{letter-spacing:15.071611pt;}
.ls11{letter-spacing:20.460995pt;}
.ls10{letter-spacing:21.300899pt;}
.ls0{letter-spacing:38.399936pt;}
.ls2{letter-spacing:38.418261pt;}
.ls1{letter-spacing:38.418645pt;}
.ws3{word-spacing:-48.000000pt;}
.ws86{word-spacing:-23.330667pt;}
.ws8{word-spacing:-18.442667pt;}
.ws6{word-spacing:-15.808000pt;}
.wsf3{word-spacing:-13.173333pt;}
.ws2{word-spacing:-11.856000pt;}
.ws4{word-spacing:-11.376000pt;}
.wsf5{word-spacing:-10.896000pt;}
.wsf4{word-spacing:-10.512000pt;}
.ws7{word-spacing:-10.416000pt;}
.ws5{word-spacing:-10.176000pt;}
.wsf7{word-spacing:-10.026667pt;}
.ws0{word-spacing:-9.968000pt;}
.wsf8{word-spacing:-9.813333pt;}
.ws1{word-spacing:-9.685333pt;}
.ws135{word-spacing:-9.557333pt;}
.wsf9{word-spacing:-9.472000pt;}
.ws74{word-spacing:-9.045333pt;}
.ws77{word-spacing:-8.746667pt;}
.ws9{word-spacing:-7.244747pt;}
.ws87{word-spacing:-5.389384pt;}
.ws88{word-spacing:-5.342723pt;}
.wsf6{word-spacing:-5.323179pt;}
.ws85{word-spacing:-5.272731pt;}
.ws39{word-spacing:-3.840000pt;}
.wsb8{word-spacing:-3.253333pt;}
.ws9e{word-spacing:-3.200000pt;}
.ws8e{word-spacing:-2.933333pt;}
.ws142{word-spacing:-2.773333pt;}
.wsfc{word-spacing:-2.688000pt;}
.ws12f{word-spacing:-2.602667pt;}
.ws45{word-spacing:-2.346667pt;}
.ws1b{word-spacing:-2.240000pt;}
.wseb{word-spacing:-2.080000pt;}
.wsff{word-spacing:-2.064000pt;}
.ws5e{word-spacing:-2.026667pt;}
.wse5{word-spacing:-1.973333pt;}
.ws123{word-spacing:-1.920000pt;}
.wsba{word-spacing:-1.866667pt;}
.ws5a{word-spacing:-1.813333pt;}
.ws37{word-spacing:-1.760000pt;}
.ws3f{word-spacing:-1.653333pt;}
.ws30{word-spacing:-1.546667pt;}
.wscb{word-spacing:-1.440000pt;}
.ws119{word-spacing:-1.408000pt;}
.wsd8{word-spacing:-1.333333pt;}
.wsbe{word-spacing:-1.280000pt;}
.ws3c{word-spacing:-1.226667pt;}
.ws90{word-spacing:-1.173333pt;}
.wsef{word-spacing:-1.152000pt;}
.ws8f{word-spacing:-1.120000pt;}
.ws102{word-spacing:-1.056000pt;}
.wsbb{word-spacing:-1.013333pt;}
.wsf2{word-spacing:-0.864000pt;}
.ws130{word-spacing:-0.853333pt;}
.ws28{word-spacing:-0.832000pt;}
.ws12{word-spacing:-0.693333pt;}
.wsc5{word-spacing:-0.640000pt;}
.wse3{word-spacing:-0.586667pt;}
.ws131{word-spacing:-0.554667pt;}
.ws32{word-spacing:-0.533333pt;}
.ws136{word-spacing:-0.512000pt;}
.ws36{word-spacing:-0.480000pt;}
.ws5d{word-spacing:-0.426667pt;}
.ws66{word-spacing:-0.384000pt;}
.ws53{word-spacing:-0.373333pt;}
.wsde{word-spacing:-0.320000pt;}
.wsc{word-spacing:-0.288000pt;}
.ws51{word-spacing:-0.266667pt;}
.wsb7{word-spacing:-0.192000pt;}
.ws6a{word-spacing:-0.160000pt;}
.wsb0{word-spacing:-0.116653pt;}
.ws8c{word-spacing:-0.106667pt;}
.ws26{word-spacing:-0.100800pt;}
.wsac{word-spacing:-0.093323pt;}
.ws13c{word-spacing:-0.085333pt;}
.wsae{word-spacing:-0.069992pt;}
.wsed{word-spacing:-0.053333pt;}
.wsaf{word-spacing:-0.046661pt;}
.wsa{word-spacing:0.000000pt;}
.wsa9{word-spacing:0.023331pt;}
.ws115{word-spacing:0.042667pt;}
.wsaa{word-spacing:0.046661pt;}
.wsab{word-spacing:0.069992pt;}
.ws10d{word-spacing:0.085333pt;}
.wsad{word-spacing:0.093323pt;}
.ws2f{word-spacing:0.160000pt;}
.ws16{word-spacing:0.213333pt;}
.ws1f{word-spacing:0.266667pt;}
.ws1c{word-spacing:0.373333pt;}
.wsfe{word-spacing:0.384000pt;}
.wsa5{word-spacing:0.426667pt;}
.ws9a{word-spacing:0.448000pt;}
.ws27{word-spacing:0.480000pt;}
.wse4{word-spacing:0.533333pt;}
.ws103{word-spacing:0.624000pt;}
.wsf{word-spacing:0.640000pt;}
.ws144{word-spacing:0.682667pt;}
.ws1e{word-spacing:0.693333pt;}
.ws29{word-spacing:0.746667pt;}
.ws64{word-spacing:0.800000pt;}
.ws12a{word-spacing:0.853333pt;}
.ws109{word-spacing:0.896000pt;}
.ws31{word-spacing:0.906667pt;}
.wsce{word-spacing:0.960000pt;}
.wsbd{word-spacing:1.013333pt;}
.wsc8{word-spacing:1.120000pt;}
.wsf0{word-spacing:1.152000pt;}
.wsca{word-spacing:1.280000pt;}
.ws11b{word-spacing:1.322667pt;}
.ws60{word-spacing:1.386667pt;}
.ws100{word-spacing:1.392000pt;}
.ws117{word-spacing:1.408000pt;}
.ws8d{word-spacing:1.440000pt;}
.wsfa{word-spacing:1.488000pt;}
.ws2d{word-spacing:1.493333pt;}
.wsd9{word-spacing:1.600000pt;}
.ws73{word-spacing:1.653333pt;}
.ws21{word-spacing:1.706667pt;}
.ws71{word-spacing:1.760000pt;}
.ws134{word-spacing:1.834667pt;}
.ws25{word-spacing:1.915200pt;}
.ws46{word-spacing:1.920000pt;}
.ws138{word-spacing:1.962667pt;}
.ws67{word-spacing:2.080000pt;}
.ws139{word-spacing:2.090667pt;}
.ws10{word-spacing:2.133333pt;}
.ws129{word-spacing:2.218667pt;}
.ws58{word-spacing:2.240000pt;}
.ws112{word-spacing:2.261333pt;}
.ws4d{word-spacing:2.293333pt;}
.ws14{word-spacing:2.346667pt;}
.ws3a{word-spacing:2.400000pt;}
.ws116{word-spacing:2.432000pt;}
.ws50{word-spacing:2.453333pt;}
.ws127{word-spacing:2.474667pt;}
.ws105{word-spacing:2.496000pt;}
.ws3b{word-spacing:2.506667pt;}
.ws17{word-spacing:2.560000pt;}
.ws2e{word-spacing:2.613333pt;}
.wsd3{word-spacing:2.720000pt;}
.wsa6{word-spacing:2.773333pt;}
.wse9{word-spacing:2.826667pt;}
.ws89{word-spacing:2.840000pt;}
.ws121{word-spacing:2.858667pt;}
.ws3e{word-spacing:2.880000pt;}
.ws108{word-spacing:2.901333pt;}
.ws63{word-spacing:2.933333pt;}
.ws5f{word-spacing:3.093333pt;}
.wsc3{word-spacing:3.146667pt;}
.ws141{word-spacing:3.157333pt;}
.wsd7{word-spacing:3.200000pt;}
.wsfb{word-spacing:3.216000pt;}
.wscd{word-spacing:3.253333pt;}
.ws68{word-spacing:3.306667pt;}
.wsa0{word-spacing:3.413333pt;}
.ws12c{word-spacing:3.456000pt;}
.wsc7{word-spacing:3.520000pt;}
.ws11c{word-spacing:3.584000pt;}
.ws69{word-spacing:3.626667pt;}
.wsd{word-spacing:3.648000pt;}
.ws140{word-spacing:3.669333pt;}
.wsd5{word-spacing:3.680000pt;}
.ws43{word-spacing:3.733333pt;}
.ws104{word-spacing:3.744000pt;}
.ws124{word-spacing:3.754667pt;}
.wsc4{word-spacing:3.786667pt;}
.ws128{word-spacing:3.797333pt;}
.ws15{word-spacing:3.840000pt;}
.ws48{word-spacing:3.946667pt;}
.ws137{word-spacing:3.968000pt;}
.ws11{word-spacing:4.000000pt;}
.ws6f{word-spacing:4.053333pt;}
.ws12b{word-spacing:4.096000pt;}
.wsdb{word-spacing:4.160000pt;}
.ws70{word-spacing:4.213333pt;}
.ws2c{word-spacing:4.373333pt;}
.ws10f{word-spacing:4.394667pt;}
.ws55{word-spacing:4.480000pt;}
.ws13d{word-spacing:4.522667pt;}
.ws2b{word-spacing:4.533333pt;}
.wsa1{word-spacing:4.586667pt;}
.wse8{word-spacing:4.640000pt;}
.ws10a{word-spacing:4.778667pt;}
.wsb9{word-spacing:4.800000pt;}
.wsbc{word-spacing:4.853333pt;}
.ws107{word-spacing:4.864000pt;}
.ws35{word-spacing:4.906667pt;}
.ws146{word-spacing:4.949333pt;}
.ws47{word-spacing:4.960000pt;}
.ws118{word-spacing:4.992000pt;}
.ws23{word-spacing:5.013333pt;}
.ws1d{word-spacing:5.066667pt;}
.ws113{word-spacing:5.162667pt;}
.ws5b{word-spacing:5.173333pt;}
.ws65{word-spacing:5.226667pt;}
.wsfd{word-spacing:5.232000pt;}
.ws133{word-spacing:5.248000pt;}
.ws41{word-spacing:5.333333pt;}
.ws93{word-spacing:5.440000pt;}
.ws8b{word-spacing:5.546667pt;}
.ws12e{word-spacing:5.589333pt;}
.wsa2{word-spacing:5.653333pt;}
.ws22{word-spacing:5.706667pt;}
.ws145{word-spacing:5.717333pt;}
.ws8a{word-spacing:5.760000pt;}
.ws11f{word-spacing:5.802667pt;}
.ws9d{word-spacing:5.866667pt;}
.ws143{word-spacing:5.888000pt;}
.ws101{word-spacing:5.904000pt;}
.ws6b{word-spacing:5.973333pt;}
.wsf1{word-spacing:6.048000pt;}
.wse2{word-spacing:6.080000pt;}
.ws92{word-spacing:6.133333pt;}
.ws94{word-spacing:6.293333pt;}
.ws11e{word-spacing:6.314667pt;}
.wsb{word-spacing:6.336000pt;}
.ws4b{word-spacing:6.400000pt;}
.ws49{word-spacing:6.453333pt;}
.ws96{word-spacing:6.506667pt;}
.ws20{word-spacing:6.720000pt;}
.ws4c{word-spacing:6.826667pt;}
.ws52{word-spacing:6.880000pt;}
.wsa8{word-spacing:6.912000pt;}
.ws42{word-spacing:6.933333pt;}
.ws19{word-spacing:6.986667pt;}
.wsda{word-spacing:7.040000pt;}
.wsc9{word-spacing:7.093333pt;}
.wsd1{word-spacing:7.146667pt;}
.ws3d{word-spacing:7.200000pt;}
.ws4e{word-spacing:7.360000pt;}
.wsd2{word-spacing:7.413333pt;}
.ws9b{word-spacing:7.466667pt;}
.ws18{word-spacing:7.520000pt;}
.wsa7{word-spacing:7.536000pt;}
.ws120{word-spacing:7.594667pt;}
.ws13a{word-spacing:7.680000pt;}
.ws6c{word-spacing:7.786667pt;}
.wsc0{word-spacing:7.840000pt;}
.wsdc{word-spacing:8.000000pt;}
.wsbf{word-spacing:8.106667pt;}
.wscc{word-spacing:8.160000pt;}
.ws4a{word-spacing:8.320000pt;}
.ws147{word-spacing:8.362667pt;}
.ws98{word-spacing:8.373333pt;}
.ws12d{word-spacing:8.405333pt;}
.wsc6{word-spacing:8.480000pt;}
.wsec{word-spacing:8.586667pt;}
.ws13e{word-spacing:8.618667pt;}
.ws132{word-spacing:8.661333pt;}
.ws114{word-spacing:8.789333pt;}
.ws56{word-spacing:8.800000pt;}
.ws122{word-spacing:8.874667pt;}
.ws5c{word-spacing:8.960000pt;}
.ws13{word-spacing:9.013333pt;}
.wse{word-spacing:9.066667pt;}
.ws10b{word-spacing:9.130667pt;}
.ws59{word-spacing:9.280000pt;}
.ws11d{word-spacing:9.301333pt;}
.ws54{word-spacing:9.333333pt;}
.ws111{word-spacing:9.344000pt;}
.ws110{word-spacing:9.429333pt;}
.ws6d{word-spacing:9.440000pt;}
.ws61{word-spacing:9.493333pt;}
.ws10c{word-spacing:9.600000pt;}
.ws126{word-spacing:9.728000pt;}
.wse0{word-spacing:9.813333pt;}
.ws11a{word-spacing:9.898667pt;}
.ws10e{word-spacing:9.941333pt;}
.wse1{word-spacing:9.973333pt;}
.wsa4{word-spacing:9.984000pt;}
.ws106{word-spacing:10.026667pt;}
.ws2a{word-spacing:10.080000pt;}
.ws40{word-spacing:10.133333pt;}
.ws44{word-spacing:10.186667pt;}
.ws72{word-spacing:10.400000pt;}
.ws62{word-spacing:10.560000pt;}
.ws57{word-spacing:10.613333pt;}
.ws24{word-spacing:10.720000pt;}
.wsa3{word-spacing:10.848000pt;}
.wsd6{word-spacing:10.986667pt;}
.wse7{word-spacing:11.146667pt;}
.ws38{word-spacing:11.200000pt;}
.wsea{word-spacing:11.253333pt;}
.ws33{word-spacing:11.680000pt;}
.ws91{word-spacing:11.840000pt;}
.ws125{word-spacing:12.032000pt;}
.ws9f{word-spacing:12.053333pt;}
.wscf{word-spacing:12.800000pt;}
.ws6e{word-spacing:12.960000pt;}
.wsc1{word-spacing:12.992000pt;}
.ws95{word-spacing:13.440000pt;}
.ws13f{word-spacing:13.610667pt;}
.wsee{word-spacing:13.813333pt;}
.ws97{word-spacing:13.973333pt;}
.ws1a{word-spacing:14.293333pt;}
.ws34{word-spacing:14.400000pt;}
.ws9c{word-spacing:14.613333pt;}
.wsdf{word-spacing:14.986667pt;}
.wsd0{word-spacing:15.093333pt;}
.ws83{word-spacing:15.188264pt;}
.ws84{word-spacing:15.748200pt;}
.ws4f{word-spacing:15.786667pt;}
.wsdd{word-spacing:16.106667pt;}
.ws13b{word-spacing:17.493333pt;}
.wse6{word-spacing:18.506667pt;}
.wsd4{word-spacing:19.200000pt;}
.wsc2{word-spacing:25.344000pt;}
.ws99{word-spacing:28.800000pt;}
.wsb5{word-spacing:37.414400pt;}
.wsb4{word-spacing:40.750400pt;}
.wsb1{word-spacing:46.858133pt;}
.wsb2{word-spacing:47.705067pt;}
.wsb6{word-spacing:77.886933pt;}
.wsb3{word-spacing:83.934400pt;}
.ws7f{word-spacing:265.321600pt;}
.ws79{word-spacing:273.449600pt;}
.ws7e{word-spacing:278.526933pt;}
.ws81{word-spacing:283.458667pt;}
.ws7a{word-spacing:287.102933pt;}
.ws7d{word-spacing:295.146133pt;}
.ws78{word-spacing:300.798933pt;}
.ws7b{word-spacing:301.613867pt;}
.ws76{word-spacing:301.930133pt;}
.ws7c{word-spacing:309.293333pt;}
.ws80{word-spacing:311.125333pt;}
.ws75{word-spacing:319.444800pt;}
.ws82{word-spacing:320.596800pt;}
._a{margin-left:-2509.838400pt;}
._b{margin-left:-8.213333pt;}
._3{margin-left:-6.971200pt;}
._9{margin-left:-5.242667pt;}
._5{margin-left:-4.061333pt;}
._1{margin-left:-2.699200pt;}
._0{margin-left:-1.008000pt;}
._2{width:1.280000pt;}
._8{width:2.421333pt;}
._15{width:4.693333pt;}
._7{width:14.079467pt;}
._6{width:15.061333pt;}
._4{width:19.840000pt;}
._c{width:27.619200pt;}
._24{width:33.587733pt;}
._34{width:35.044267pt;}
._16{width:37.915200pt;}
._25{width:43.304533pt;}
._17{width:55.130133pt;}
._23{width:59.938133pt;}
._30{width:87.572267pt;}
._27{width:91.352000pt;}
._19{width:93.619733pt;}
._1e{width:95.131200pt;}
._2d{width:97.812267pt;}
._1b{width:105.371200pt;}
._29{width:108.052267pt;}
._21{width:115.641067pt;}
._35{width:129.146667pt;}
._31{width:139.386667pt;}
._1a{width:140.485333pt;}
._1f{width:141.997333pt;}
._2c{width:144.265067pt;}
._2a{width:149.626667pt;}
._18{width:150.695467pt;}
._28{width:154.505067pt;}
._1c{width:162.477333pt;}
._11{width:203.113067pt;}
._20{width:210.631467pt;}
._12{width:256.365333pt;}
._13{width:259.539733pt;}
._14{width:295.763733pt;}
._22{width:299.175467pt;}
._10{width:307.539733pt;}
._f{width:310.057067pt;}
._1d{width:398.434133pt;}
._e{width:429.152533pt;}
._2e{width:828.740267pt;}
._33{width:862.793600pt;}
._2f{width:869.833600pt;}
._32{width:916.638933pt;}
._26{width:1111.017600pt;}
._2b{width:1152.798933pt;}
._d{width:2131.005333pt;}
.fsc{font-size:22.206400pt;}
.fsb{font-size:23.330667pt;}
.fsd{font-size:24.874667pt;}
.fs8{font-size:31.093333pt;}
.fs9{font-size:33.600000pt;}
.fs2{font-size:37.312000pt;}
.fs3{font-size:37.333333pt;}
.fsa{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.fs0{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.ydd{bottom:1.545067pt;}
.ye6{bottom:1.545333pt;}
.ye0{bottom:1.545600pt;}
.yee{bottom:1.545867pt;}
.ye3{bottom:1.546133pt;}
.yda{bottom:1.546800pt;}
.yeb{bottom:1.551733pt;}
.y25{bottom:57.477067pt;}
.y24{bottom:68.677067pt;}
.y23{bottom:79.877067pt;}
.y108{bottom:111.370000pt;}
.y107{bottom:115.230933pt;}
.y138{bottom:127.349067pt;}
.y5e{bottom:127.370000pt;}
.y20{bottom:127.370133pt;}
.y69{bottom:128.251867pt;}
.y106{bottom:128.564267pt;}
.y137{bottom:143.349067pt;}
.y5d{bottom:143.370000pt;}
.y1f{bottom:143.370133pt;}
.y68{bottom:144.251867pt;}
.y105{bottom:146.901467pt;}
.y136{bottom:159.349067pt;}
.y5c{bottom:159.370000pt;}
.y1e{bottom:159.370133pt;}
.y104{bottom:165.238800pt;}
.y135{bottom:175.349067pt;}
.y5b{bottom:175.370000pt;}
.y1d{bottom:175.370133pt;}
.y103{bottom:183.576000pt;}
.y134{bottom:191.349067pt;}
.y67{bottom:191.370000pt;}
.y1c{bottom:191.370133pt;}
.y102{bottom:201.913200pt;}
.y133{bottom:207.349067pt;}
.y66{bottom:207.370000pt;}
.y1b{bottom:207.370133pt;}
.y5a{bottom:214.908000pt;}
.yb4{bottom:218.710533pt;}
.y101{bottom:220.250533pt;}
.y132{bottom:223.349067pt;}
.y65{bottom:223.370000pt;}
.y1a{bottom:223.370133pt;}
.y10d{bottom:225.548267pt;}
.yb3{bottom:234.710533pt;}
.y100{bottom:238.587733pt;}
.y131{bottom:239.349067pt;}
.y64{bottom:239.370000pt;}
.y19{bottom:239.370133pt;}
.y59{bottom:242.246667pt;}
.y130{bottom:255.349067pt;}
.y63{bottom:255.370000pt;}
.y18{bottom:255.370133pt;}
.yff{bottom:256.924933pt;}
.ybf{bottom:260.998769pt;}
.yc2{bottom:261.844505pt;}
.yc3{bottom:262.340282pt;}
.yc5{bottom:262.841891pt;}
.yca{bottom:263.349333pt;}
.ybd{bottom:264.025923pt;}
.ycb{bottom:264.405046pt;}
.ycd{bottom:268.972024pt;}
.yc4{bottom:269.082845pt;}
.ycc{bottom:269.391976pt;}
.yc7{bottom:270.855975pt;}
.yc1{bottom:271.118445pt;}
.y12f{bottom:271.349067pt;}
.y62{bottom:271.370000pt;}
.y17{bottom:271.370133pt;}
.ybb{bottom:272.529951pt;}
.yfe{bottom:275.262133pt;}
.yba{bottom:276.181200pt;}
.ybc{bottom:277.796849pt;}
.y10c{bottom:278.908000pt;}
.ybe{bottom:280.404051pt;}
.yc9{bottom:283.017085pt;}
.y90{bottom:284.472533pt;}
.yce{bottom:286.749992pt;}
.y12e{bottom:287.349067pt;}
.y58{bottom:287.370000pt;}
.y16{bottom:287.370133pt;}
.yc6{bottom:288.563951pt;}
.yc0{bottom:290.167935pt;}
.yc8{bottom:293.346738pt;}
.y8f{bottom:300.472533pt;}
.yfd{bottom:301.533867pt;}
.y12d{bottom:303.349067pt;}
.y57{bottom:303.370000pt;}
.y15{bottom:303.370133pt;}
.y10b{bottom:306.246667pt;}
.yd7{bottom:307.172000pt;}
.ycf{bottom:307.242000pt;}
.yd9{bottom:314.549333pt;}
.yd8{bottom:316.095980pt;}
.y8e{bottom:316.472533pt;}
.y12c{bottom:319.349067pt;}
.y56{bottom:319.370000pt;}
.y22{bottom:319.370133pt;}
.yd0{bottom:320.032886pt;}
.ydc{bottom:323.476000pt;}
.ydb{bottom:325.021333pt;}
.ydf{bottom:332.400000pt;}
.yd1{bottom:332.823773pt;}
.yb9{bottom:332.967627pt;}
.yde{bottom:333.945867pt;}
.y12b{bottom:335.349067pt;}
.y55{bottom:335.370000pt;}
.y21{bottom:335.370133pt;}
.ye2{bottom:341.394667pt;}
.ye1{bottom:342.941067pt;}
.y14{bottom:343.403733pt;}
.yb8{bottom:344.842936pt;}
.yd2{bottom:345.614659pt;}
.y61{bottom:348.472400pt;}
.ye5{bottom:350.320000pt;}
.y12a{bottom:351.349067pt;}
.y54{bottom:351.370000pt;}
.y8d{bottom:351.370133pt;}
.ye4{bottom:351.865600pt;}
.yd3{bottom:358.405546pt;}
.ye8{bottom:359.244000pt;}
.ye7{bottom:360.790400pt;}
.yb7{bottom:367.117890pt;}
.y129{bottom:367.349067pt;}
.y53{bottom:367.370000pt;}
.y8c{bottom:367.370133pt;}
.yea{bottom:368.233333pt;}
.ye9{bottom:369.785333pt;}
.yd4{bottom:371.124261pt;}
.yed{bottom:377.164000pt;}
.yec{bottom:378.709867pt;}
.yb6{bottom:380.258888pt;}
.y128{bottom:383.349067pt;}
.y52{bottom:383.370000pt;}
.y8b{bottom:383.370133pt;}
.yd5{bottom:383.915148pt;}
.yf0{bottom:386.089333pt;}
.yef{bottom:387.634667pt;}
.yb5{bottom:392.694133pt;}
.yf5{bottom:396.472400pt;}
.yf1{bottom:396.629333pt;}
.yd6{bottom:396.706034pt;}
.y127{bottom:399.349067pt;}
.y51{bottom:399.370000pt;}
.y8a{bottom:399.370133pt;}
.y13{bottom:411.204267pt;}
.yf4{bottom:412.472400pt;}
.y126{bottom:415.349067pt;}
.y50{bottom:415.370000pt;}
.y89{bottom:415.370133pt;}
.yb2{bottom:422.546000pt;}
.yf3{bottom:428.472400pt;}
.y125{bottom:431.349067pt;}
.y4f{bottom:431.370000pt;}
.y88{bottom:431.370133pt;}
.y12{bottom:434.763200pt;}
.yb1{bottom:435.879333pt;}
.y124{bottom:447.349067pt;}
.y4e{bottom:447.370000pt;}
.y87{bottom:447.370133pt;}
.yb0{bottom:449.212667pt;}
.y123{bottom:463.349067pt;}
.y4d{bottom:463.370000pt;}
.y86{bottom:463.370133pt;}
.yaf{bottom:470.396533pt;}
.y122{bottom:479.349067pt;}
.y4c{bottom:479.370000pt;}
.y85{bottom:479.370133pt;}
.y11{bottom:488.558533pt;}
.yae{bottom:488.733733pt;}
.y121{bottom:495.349067pt;}
.y4b{bottom:495.370000pt;}
.y84{bottom:495.370133pt;}
.y10{bottom:504.558533pt;}
.yad{bottom:507.070933pt;}
.y120{bottom:511.349067pt;}
.y4a{bottom:511.370000pt;}
.y83{bottom:511.370133pt;}
.y60{bottom:524.472400pt;}
.yac{bottom:525.408133pt;}
.y11f{bottom:527.349067pt;}
.y49{bottom:527.370000pt;}
.yf{bottom:528.117600pt;}
.y11e{bottom:543.349067pt;}
.y48{bottom:543.370000pt;}
.yab{bottom:543.745467pt;}
.y82{bottom:550.908133pt;}
.y11d{bottom:559.349067pt;}
.y47{bottom:559.370000pt;}
.yaa{bottom:562.082667pt;}
.y11c{bottom:575.349067pt;}
.y46{bottom:575.370000pt;}
.ye{bottom:578.133333pt;}
.y81{bottom:578.246800pt;}
.ya9{bottom:580.419867pt;}
.y11b{bottom:591.349067pt;}
.y45{bottom:591.370000pt;}
.yd{bottom:594.133333pt;}
.ya8{bottom:598.757067pt;}
.y11a{bottom:607.349067pt;}
.y44{bottom:607.370000pt;}
.yc{bottom:610.133333pt;}
.y10a{bottom:610.246667pt;}
.ya7{bottom:617.094400pt;}
.y119{bottom:623.349067pt;}
.y43{bottom:623.370000pt;}
.y80{bottom:623.370133pt;}
.ya6{bottom:635.431600pt;}
.y118{bottom:639.349067pt;}
.y42{bottom:639.370000pt;}
.y7f{bottom:639.370133pt;}
.yb{bottom:641.251467pt;}
.ya5{bottom:653.768800pt;}
.y117{bottom:655.349067pt;}
.y41{bottom:655.370000pt;}
.y7e{bottom:655.370133pt;}
.y116{bottom:671.349067pt;}
.y40{bottom:671.370000pt;}
.y7d{bottom:671.370133pt;}
.ya4{bottom:672.106000pt;}
.yf6{bottom:674.246667pt;}
.ya{bottom:683.708133pt;}
.y115{bottom:687.349067pt;}
.y3f{bottom:687.370000pt;}
.y7c{bottom:687.370133pt;}
.ya3{bottom:690.443333pt;}
.y114{bottom:703.349067pt;}
.y3e{bottom:703.370000pt;}
.y7b{bottom:703.370133pt;}
.y9{bottom:707.267200pt;}
.ya2{bottom:708.780533pt;}
.y3d{bottom:719.370000pt;}
.y7a{bottom:719.370133pt;}
.y8{bottom:723.267200pt;}
.ya1{bottom:727.117733pt;}
.y113{bottom:730.687600pt;}
.y3c{bottom:735.370000pt;}
.y79{bottom:735.370133pt;}
.y7{bottom:739.267200pt;}
.ya0{bottom:745.454933pt;}
.y3b{bottom:751.370000pt;}
.y6{bottom:755.267200pt;}
.y9f{bottom:763.792267pt;}
.y78{bottom:764.472533pt;}
.y3a{bottom:767.370000pt;}
.y149{bottom:771.836000pt;}
.y5{bottom:778.826400pt;}
.y9e{bottom:782.129467pt;}
.y39{bottom:783.370000pt;}
.y148{bottom:787.836000pt;}
.y38{bottom:799.370000pt;}
.y77{bottom:799.370133pt;}
.y9d{bottom:800.466667pt;}
.y147{bottom:803.836000pt;}
.y4{bottom:814.025067pt;}
.y37{bottom:815.370000pt;}
.y76{bottom:815.370133pt;}
.y9c{bottom:818.804000pt;}
.y146{bottom:819.836000pt;}
.y36{bottom:831.370000pt;}
.y75{bottom:831.370133pt;}
.y112{bottom:833.548400pt;}
.y145{bottom:835.836000pt;}
.y9b{bottom:837.141067pt;}
.y35{bottom:847.370000pt;}
.y74{bottom:847.370133pt;}
.y3{bottom:847.625067pt;}
.y10f{bottom:849.548400pt;}
.y144{bottom:851.836000pt;}
.y9a{bottom:855.478400pt;}
.y5f{bottom:860.472400pt;}
.y34{bottom:863.370000pt;}
.y73{bottom:863.370133pt;}
.y143{bottom:867.836000pt;}
.y99{bottom:873.815600pt;}
.yf2{bottom:876.449333pt;}
.y33{bottom:879.370000pt;}
.y72{bottom:879.370133pt;}
.y2{bottom:881.225067pt;}
.y142{bottom:883.836000pt;}
.y98{bottom:892.152800pt;}
.y32{bottom:895.370000pt;}
.y71{bottom:895.370133pt;}
.y141{bottom:899.836000pt;}
.yfc{bottom:908.152800pt;}
.y97{bottom:910.490133pt;}
.y31{bottom:911.370000pt;}
.y70{bottom:911.370133pt;}
.y1{bottom:914.825067pt;}
.y140{bottom:915.836000pt;}
.yfb{bottom:926.490000pt;}
.y30{bottom:927.370000pt;}
.y6f{bottom:927.370133pt;}
.y96{bottom:928.827333pt;}
.y111{bottom:929.548267pt;}
.y13f{bottom:931.836000pt;}
.y2f{bottom:943.370000pt;}
.y6e{bottom:943.370133pt;}
.yfa{bottom:944.827200pt;}
.y10e{bottom:945.548267pt;}
.y95{bottom:947.164533pt;}
.y13e{bottom:947.836000pt;}
.y2e{bottom:959.370000pt;}
.y6d{bottom:959.370133pt;}
.yf9{bottom:963.164533pt;}
.y13d{bottom:963.836000pt;}
.y94{bottom:965.501733pt;}
.y2d{bottom:975.370000pt;}
.y6c{bottom:975.370133pt;}
.y13c{bottom:979.836000pt;}
.yf8{bottom:981.501733pt;}
.y93{bottom:983.839067pt;}
.y2c{bottom:991.370000pt;}
.y13b{bottom:995.836000pt;}
.yf7{bottom:999.838933pt;}
.y28{bottom:1001.533333pt;}
.y2b{bottom:1007.370000pt;}
.y6b{bottom:1009.897333pt;}
.y92{bottom:1010.110667pt;}
.y13a{bottom:1011.836000pt;}
.y109{bottom:1022.950667pt;}
.y2a{bottom:1023.370000pt;}
.y110{bottom:1025.057333pt;}
.y6a{bottom:1025.897333pt;}
.y91{bottom:1026.110667pt;}
.y139{bottom:1027.836000pt;}
.y27{bottom:1036.478000pt;}
.y26{bottom:1052.257600pt;}
.y29{bottom:1060.905467pt;}
.h14{height:7.097333pt;}
.h13{height:7.098667pt;}
.h15{height:7.104000pt;}
.h12{height:15.180156pt;}
.h11{height:15.948698pt;}
.hd{height:24.511200pt;}
.he{height:29.180000pt;}
.hf{height:30.175781pt;}
.h4{height:30.378667pt;}
.h10{height:30.464000pt;}
.h5{height:31.125333pt;}
.h6{height:32.469333pt;}
.h17{height:33.137621pt;}
.h7{height:35.160000pt;}
.h8{height:36.528000pt;}
.h16{height:39.066667pt;}
.hc{height:40.586667pt;}
.hb{height:41.422027pt;}
.h9{height:46.880000pt;}
.h3{height:48.704000pt;}
.ha{height:54.693333pt;}
.h2{height:82.040000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:10.597333pt;}
.w4{width:11.056000pt;}
.w2{width:11.857333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x36{left:5.903200pt;}
.x1{left:83.149600pt;}
.x38{left:86.929067pt;}
.xd{left:98.267733pt;}
.x10{left:113.385867pt;}
.x3{left:129.087067pt;}
.x2{left:188.301467pt;}
.x4{left:225.876800pt;}
.xc{left:234.807200pt;}
.x5{left:274.849200pt;}
.xb{left:333.851067pt;}
.x6{left:383.014267pt;}
.x8{left:404.849733pt;}
.x12{left:408.630000pt;}
.x34{left:412.152053pt;}
.x33{left:415.033333pt;}
.xe{left:419.968400pt;}
.x1e{left:422.341467pt;}
.x20{left:429.720000pt;}
.x7{left:433.400667pt;}
.xf{left:435.086533pt;}
.x21{left:442.371054pt;}
.x22{left:454.952116pt;}
.x23{left:467.533178pt;}
.x11{left:473.241467pt;}
.x37{left:476.121467pt;}
.x24{left:480.184232pt;}
.x39{left:482.168800pt;}
.x25{left:492.765294pt;}
.x26{left:505.346356pt;}
.x1f{left:510.613044pt;}
.x17{left:513.599200pt;}
.x27{left:517.997410pt;}
.x1d{left:529.722133pt;}
.x1b{left:531.657733pt;}
.xa{left:534.411333pt;}
.x16{left:536.185733pt;}
.x1a{left:537.263067pt;}
.x18{left:539.599067pt;}
.x15{left:540.697867pt;}
.x19{left:541.673600pt;}
.x14{left:542.772267pt;}
.x1c{left:545.561600pt;}
.x13{left:547.193600pt;}
.x28{left:555.810588pt;}
.x29{left:568.391650pt;}
.x2a{left:581.042704pt;}
.x2b{left:593.623766pt;}
.x2c{left:606.204828pt;}
.x2d{left:618.855882pt;}
.x9{left:624.372533pt;}
.x2e{left:631.436944pt;}
.x2f{left:644.018006pt;}
.x30{left:656.669060pt;}
.x31{left:669.250122pt;}
.x32{left:681.831184pt;}
.x35{left:689.730933pt;}
}




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