
    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_3fd067c50029c78c9ea0ccfe.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.980000;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_4b1c4b91ec41083aa4e0cd78.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.985000;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_3fd33b0340fde1e20f17da2e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c4385169582d861b2b3f499a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.989000;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_feb3b4f2bcc96147d84e7a4c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.722656;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_e26ff3959396778125d7d4d3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.712000;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;}
.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);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-1.188000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:60.258000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-95.040000px;}
.wsce{word-spacing:-79.200000px;}
.ws3{word-spacing:-23.760000px;}
.ws8{word-spacing:-19.764000px;}
.wse6{word-spacing:-18.480000px;}
.ws5{word-spacing:-15.552000px;}
.ws0{word-spacing:-14.520000px;}
.ws11{word-spacing:-14.184000px;}
.ws15{word-spacing:-14.112000px;}
.ws12{word-spacing:-14.040000px;}
.ws13{word-spacing:-13.680000px;}
.ws8a{word-spacing:-13.332000px;}
.wsf{word-spacing:-10.224000px;}
.ws43{word-spacing:-8.904000px;}
.ws44{word-spacing:-8.820000px;}
.ws4{word-spacing:-8.532000px;}
.ws7{word-spacing:-7.776000px;}
.ws39{word-spacing:-7.656000px;}
.ws9{word-spacing:-7.128000px;}
.wsb{word-spacing:-7.056000px;}
.ws1e{word-spacing:-6.864000px;}
.wsa{word-spacing:-6.840000px;}
.ws10{word-spacing:-6.768000px;}
.wsc5{word-spacing:-6.468000px;}
.ws1c{word-spacing:-6.402000px;}
.ws8e{word-spacing:-6.132000px;}
.ws7e{word-spacing:-6.072000px;}
.ws79{word-spacing:-5.874000px;}
.ws93{word-spacing:-5.628000px;}
.ws25{word-spacing:-5.478000px;}
.ws97{word-spacing:-5.346000px;}
.ws7f{word-spacing:-4.884000px;}
.wsd{word-spacing:-4.824000px;}
.wsba{word-spacing:-4.488000px;}
.wsd3{word-spacing:-4.452000px;}
.ws17{word-spacing:-4.284000px;}
.wse1{word-spacing:-4.158000px;}
.ws83{word-spacing:-4.092000px;}
.ws6b{word-spacing:-3.948000px;}
.wsc7{word-spacing:-3.696000px;}
.wseb{word-spacing:-3.630000px;}
.ws91{word-spacing:-3.612000px;}
.ws64{word-spacing:-3.600000px;}
.ws28{word-spacing:-3.432000px;}
.wsd7{word-spacing:-3.234000px;}
.wsa2{word-spacing:-3.168000px;}
.ws5a{word-spacing:-2.838000px;}
.wsc{word-spacing:-2.808000px;}
.wsca{word-spacing:-2.772000px;}
.ws51{word-spacing:-2.640000px;}
.wsac{word-spacing:-2.574000px;}
.wsc8{word-spacing:-2.520000px;}
.ws84{word-spacing:-2.508000px;}
.ws6{word-spacing:-2.448000px;}
.ws5c{word-spacing:-2.442000px;}
.ws8b{word-spacing:-2.352000px;}
.ws7d{word-spacing:-2.310000px;}
.wsdb{word-spacing:-2.244000px;}
.ws14{word-spacing:-2.160000px;}
.wsa7{word-spacing:-2.112000px;}
.wsc0{word-spacing:-1.980000px;}
.wsab{word-spacing:-1.848000px;}
.wse{word-spacing:-1.728000px;}
.ws70{word-spacing:-1.716000px;}
.ws1b{word-spacing:-1.680000px;}
.wsdf{word-spacing:-1.650000px;}
.ws98{word-spacing:-1.584000px;}
.ws3a{word-spacing:-1.518000px;}
.ws16{word-spacing:-1.260000px;}
.ws4f{word-spacing:-1.254000px;}
.wsaa{word-spacing:-0.990000px;}
.ws7a{word-spacing:-0.924000px;}
.wsea{word-spacing:-0.792000px;}
.ws3f{word-spacing:-0.726000px;}
.ws94{word-spacing:-0.660000px;}
.ws21{word-spacing:-0.594000px;}
.ws49{word-spacing:-0.504000px;}
.ws38{word-spacing:-0.396000px;}
.ws65{word-spacing:-0.084000px;}
.ws1{word-spacing:0.000000px;}
.ws53{word-spacing:0.066000px;}
.ws5d{word-spacing:0.132000px;}
.wsa4{word-spacing:0.198000px;}
.ws48{word-spacing:0.252000px;}
.ws6f{word-spacing:0.330000px;}
.wsec{word-spacing:0.660000px;}
.ws50{word-spacing:0.792000px;}
.ws9c{word-spacing:0.858000px;}
.ws7b{word-spacing:1.056000px;}
.ws9e{word-spacing:1.254000px;}
.ws8f{word-spacing:1.344000px;}
.ws5b{word-spacing:1.386000px;}
.wsa8{word-spacing:1.584000px;}
.wscd{word-spacing:1.650000px;}
.ws78{word-spacing:1.716000px;}
.wsae{word-spacing:2.046000px;}
.ws9f{word-spacing:2.112000px;}
.ws59{word-spacing:2.178000px;}
.ws56{word-spacing:2.244000px;}
.ws4d{word-spacing:2.268000px;}
.ws80{word-spacing:2.310000px;}
.ws6a{word-spacing:2.352000px;}
.wsc6{word-spacing:2.436000px;}
.ws96{word-spacing:2.442000px;}
.wsa1{word-spacing:2.508000px;}
.wsb8{word-spacing:2.574000px;}
.ws57{word-spacing:2.640000px;}
.ws27{word-spacing:2.904000px;}
.wse5{word-spacing:3.102000px;}
.ws35{word-spacing:3.168000px;}
.ws60{word-spacing:3.300000px;}
.wsa0{word-spacing:3.366000px;}
.ws2a{word-spacing:3.564000px;}
.ws68{word-spacing:3.612000px;}
.ws81{word-spacing:3.630000px;}
.ws29{word-spacing:3.894000px;}
.wse2{word-spacing:3.960000px;}
.ws46{word-spacing:4.032000px;}
.ws41{word-spacing:4.116000px;}
.ws6c{word-spacing:4.200000px;}
.wsd8{word-spacing:4.290000px;}
.ws9b{word-spacing:4.422000px;}
.ws2c{word-spacing:4.554000px;}
.ws4e{word-spacing:4.686000px;}
.ws58{word-spacing:4.884000px;}
.wsd9{word-spacing:5.082000px;}
.wsd0{word-spacing:5.208000px;}
.ws22{word-spacing:5.478000px;}
.ws1d{word-spacing:5.544000px;}
.ws30{word-spacing:5.610000px;}
.wsd4{word-spacing:5.676000px;}
.ws82{word-spacing:5.742000px;}
.wse3{word-spacing:5.874000px;}
.ws47{word-spacing:6.216000px;}
.wsb5{word-spacing:6.336000px;}
.ws5f{word-spacing:6.402000px;}
.ws4a{word-spacing:6.552000px;}
.ws6d{word-spacing:6.720000px;}
.ws85{word-spacing:6.732000px;}
.ws99{word-spacing:6.864000px;}
.ws6e{word-spacing:6.930000px;}
.ws66{word-spacing:7.224000px;}
.ws42{word-spacing:7.476000px;}
.ws73{word-spacing:7.590000px;}
.ws7c{word-spacing:7.656000px;}
.wscc{word-spacing:7.920000px;}
.wscb{word-spacing:7.986000px;}
.wsa5{word-spacing:8.052000px;}
.wsa3{word-spacing:8.118000px;}
.wsd5{word-spacing:8.250000px;}
.ws4c{word-spacing:8.316000px;}
.ws86{word-spacing:8.382000px;}
.ws54{word-spacing:8.448000px;}
.ws62{word-spacing:8.976000px;}
.ws5e{word-spacing:9.042000px;}
.wsda{word-spacing:9.174000px;}
.wse7{word-spacing:9.306000px;}
.ws52{word-spacing:9.372000px;}
.ws95{word-spacing:9.570000px;}
.ws63{word-spacing:9.768000px;}
.ws36{word-spacing:9.900000px;}
.ws19{word-spacing:10.248000px;}
.ws3e{word-spacing:10.362000px;}
.ws71{word-spacing:10.560000px;}
.ws72{word-spacing:10.692000px;}
.ws77{word-spacing:10.758000px;}
.wsb2{word-spacing:10.824000px;}
.wsc9{word-spacing:11.286000px;}
.ws92{word-spacing:11.340000px;}
.wsd6{word-spacing:11.418000px;}
.wsa9{word-spacing:11.550000px;}
.wsd2{word-spacing:11.928000px;}
.ws74{word-spacing:12.144000px;}
.ws61{word-spacing:12.408000px;}
.ws40{word-spacing:12.432000px;}
.ws2f{word-spacing:12.606000px;}
.ws88{word-spacing:13.266000px;}
.wsb3{word-spacing:13.332000px;}
.ws2d{word-spacing:13.398000px;}
.wse9{word-spacing:13.860000px;}
.wsdd{word-spacing:13.926000px;}
.wse8{word-spacing:14.454000px;}
.wsb6{word-spacing:14.652000px;}
.wsbe{word-spacing:15.048000px;}
.ws89{word-spacing:15.246000px;}
.ws55{word-spacing:15.312000px;}
.ws26{word-spacing:15.576000px;}
.ws23{word-spacing:15.708000px;}
.wsbc{word-spacing:15.840000px;}
.ws2e{word-spacing:16.368000px;}
.ws4b{word-spacing:16.548000px;}
.ws9d{word-spacing:16.632000px;}
.ws8c{word-spacing:16.884000px;}
.wsc4{word-spacing:17.472000px;}
.wsb7{word-spacing:17.754000px;}
.ws20{word-spacing:18.216000px;}
.wsde{word-spacing:18.546000px;}
.wsdc{word-spacing:18.678000px;}
.wsad{word-spacing:18.942000px;}
.ws18{word-spacing:18.984000px;}
.ws9a{word-spacing:19.008000px;}
.ws87{word-spacing:19.998000px;}
.wsc2{word-spacing:20.160000px;}
.wsbd{word-spacing:20.394000px;}
.wsa6{word-spacing:20.790000px;}
.ws75{word-spacing:20.856000px;}
.ws31{word-spacing:20.922000px;}
.ws76{word-spacing:22.044000px;}
.ws8d{word-spacing:22.344000px;}
.ws24{word-spacing:22.506000px;}
.ws3c{word-spacing:23.496000px;}
.wse0{word-spacing:23.562000px;}
.wse4{word-spacing:23.760000px;}
.wsc1{word-spacing:24.882000px;}
.ws32{word-spacing:25.608000px;}
.ws90{word-spacing:25.956000px;}
.ws1a{word-spacing:26.040000px;}
.ws33{word-spacing:26.334000px;}
.ws34{word-spacing:26.532000px;}
.ws3b{word-spacing:27.588000px;}
.wsbb{word-spacing:28.644000px;}
.wsb1{word-spacing:28.974000px;}
.wsd1{word-spacing:29.568000px;}
.ws37{word-spacing:29.832000px;}
.wsc3{word-spacing:30.576000px;}
.ws3d{word-spacing:32.208000px;}
.wsb0{word-spacing:32.538000px;}
.ws45{word-spacing:33.264000px;}
.ws69{word-spacing:33.432000px;}
.wsb4{word-spacing:33.528000px;}
.ws67{word-spacing:34.608000px;}
.ws1f{word-spacing:35.904000px;}
.wsbf{word-spacing:39.666000px;}
.ws2b{word-spacing:41.976000px;}
.wsaf{word-spacing:42.768000px;}
.wsb9{word-spacing:57.288000px;}
.wscf{word-spacing:65.184000px;}
._b{margin-left:-73.326000px;}
._f{margin-left:-23.856000px;}
._c{margin-left:-13.612200px;}
._9{margin-left:-11.160600px;}
._7{margin-left:-7.555800px;}
._a{margin-left:-6.006000px;}
._1{margin-left:-4.752000px;}
._5{margin-left:-3.252600px;}
._0{margin-left:-1.392600px;}
._d{width:1.188000px;}
._4{width:4.441200px;}
._2{width:10.260000px;}
._6{width:11.425200px;}
._3{width:47.376000px;}
._e{width:50.688000px;}
._8{width:104.112000px;}
.fc3{color:transparent;}
.fc1{color:rgb(27,45,109);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.fs2{font-size:108.000000px;}
.fs5{font-size:144.000000px;}
.fs6{font-size:360.000000px;}
.fs1{font-size:432.000000px;}
.y0{bottom:0.000000px;}
.y26{bottom:13.384800px;}
.y1d2{bottom:42.563850px;}
.y1d7{bottom:55.905750px;}
.y1d1{bottom:62.858850px;}
.yc8{bottom:77.135700px;}
.y1d0{bottom:83.153850px;}
.yc7{bottom:96.935700px;}
.y175{bottom:98.096400px;}
.y180{bottom:98.167650px;}
.y1a9{bottom:99.240750px;}
.y1cf{bottom:103.448850px;}
.yc6{bottom:116.735700px;}
.y17f{bottom:117.967650px;}
.y1a8{bottom:119.040750px;}
.y174{bottom:122.153400px;}
.y1ce{bottom:123.743850px;}
.y77{bottom:127.887450px;}
.y152{bottom:129.442800px;}
.y25{bottom:131.513550px;}
.y55{bottom:132.733350px;}
.yc5{bottom:136.535700px;}
.y17e{bottom:137.767650px;}
.y5{bottom:138.707400px;}
.y173{bottom:141.953400px;}
.y1a7{bottom:143.097750px;}
.y1d8{bottom:144.462750px;}
.y76{bottom:147.687450px;}
.y9f{bottom:147.854250px;}
.y1cd{bottom:148.295850px;}
.y151{bottom:149.242800px;}
.y54{bottom:152.533350px;}
.yc4{bottom:160.592700px;}
.y9{bottom:162.747900px;}
.y4{bottom:162.764400px;}
.y1a6{bottom:162.897750px;}
.y24{bottom:165.869400px;}
.y172{bottom:166.010400px;}
.y9e{bottom:167.654250px;}
.y1cc{bottom:168.590850px;}
.y150{bottom:169.042800px;}
.y17d{bottom:170.322150px;}
.yf0{bottom:172.020000px;}
.y53{bottom:172.333350px;}
.y75{bottom:180.241950px;}
.yc3{bottom:180.392700px;}
.y171{bottom:185.810400px;}
.y8{bottom:186.804900px;}
.y3{bottom:186.821400px;}
.y1a5{bottom:186.954750px;}
.y9d{bottom:187.454250px;}
.y1cb{bottom:188.885850px;}
.y17c{bottom:190.122150px;}
.yef{bottom:191.820000px;}
.y52{bottom:192.133350px;}
.y74{bottom:200.041950px;}
.yc2{bottom:200.192700px;}
.y14f{bottom:201.597300px;}
.y105{bottom:203.345700px;}
.y1a4{bottom:206.754750px;}
.y1ca{bottom:209.180850px;}
.y170{bottom:209.867400px;}
.y17b{bottom:209.922150px;}
.y7{bottom:210.861900px;}
.y2{bottom:210.878400px;}
.yee{bottom:211.620000px;}
.y51{bottom:211.933350px;}
.y23{bottom:219.529200px;}
.y1d6{bottom:219.747750px;}
.yc1{bottom:219.992700px;}
.y9c{bottom:220.008750px;}
.y14e{bottom:221.397300px;}
.y104{bottom:223.145700px;}
.y1c9{bottom:229.475850px;}
.y17a{bottom:229.722150px;}
.y1a3{bottom:230.811750px;}
.yed{bottom:231.420000px;}
.y50{bottom:231.733350px;}
.y73{bottom:232.596450px;}
.y6{bottom:234.918900px;}
.y1{bottom:234.935400px;}
.yc0{bottom:239.792700px;}
.y14d{bottom:241.197300px;}
.y16f{bottom:242.421900px;}
.y103{bottom:242.945700px;}
.y9b{bottom:244.065750px;}
.y1d5{bottom:244.947750px;}
.y1c8{bottom:249.770850px;}
.yec{bottom:251.220000px;}
.y72{bottom:252.396450px;}
.y22{bottom:253.885200px;}
.y179{bottom:262.276650px;}
.y102{bottom:262.745700px;}
.y1a2{bottom:263.366250px;}
.ybf{bottom:263.849700px;}
.y4f{bottom:264.287850px;}
.y16e{bottom:266.478900px;}
.y9a{bottom:268.122750px;}
.y14c{bottom:273.751800px;}
.y178{bottom:282.076650px;}
.y1a1{bottom:283.166250px;}
.ybe{bottom:283.649700px;}
.yeb{bottom:283.774500px;}
.y4e{bottom:284.087850px;}
.y71{bottom:284.950950px;}
.y21{bottom:286.285200px;}
.y16d{bottom:290.535900px;}
.y1d4{bottom:291.399750px;}
.y14b{bottom:293.551800px;}
.y101{bottom:295.300200px;}
.y99{bottom:300.677250px;}
.yea{bottom:303.574500px;}
.y4d{bottom:303.887850px;}
.y70{bottom:304.750950px;}
.y1a0{bottom:307.223250px;}
.ybd{bottom:307.706700px;}
.y14a{bottom:313.351800px;}
.y16c{bottom:314.592900px;}
.y100{bottom:315.100200px;}
.y1d3{bottom:316.599750px;}
.y4c{bottom:323.687850px;}
.y98{bottom:324.734250px;}
.y19f{bottom:327.023250px;}
.ybc{bottom:327.506700px;}
.y149{bottom:333.151800px;}
.yff{bottom:334.900200px;}
.ye9{bottom:336.129000px;}
.y6f{bottom:337.305450px;}
.y20{bottom:339.920550px;}
.y4b{bottom:343.487850px;}
.y16b{bottom:347.147400px;}
.ybb{bottom:347.306700px;}
.y97{bottom:348.791250px;}
.y19e{bottom:351.080250px;}
.ye8{bottom:355.929000px;}
.y6e{bottom:357.105450px;}
.y4a{bottom:363.287850px;}
.y148{bottom:365.706300px;}
.yfe{bottom:367.454700px;}
.y19d{bottom:370.880250px;}
.y16a{bottom:371.204400px;}
.yba{bottom:371.363700px;}
.y96{bottom:372.848250px;}
.y1f{bottom:374.282550px;}
.y6d{bottom:376.905450px;}
.y147{bottom:385.506300px;}
.yfd{bottom:387.254700px;}
.ye7{bottom:388.483500px;}
.yb9{bottom:391.163700px;}
.y95{bottom:392.648250px;}
.y19c{bottom:394.937250px;}
.y49{bottom:395.842350px;}
.y169{bottom:403.758900px;}
.y146{bottom:405.306300px;}
.yfc{bottom:407.054700px;}
.y1e{bottom:408.644550px;}
.y6c{bottom:409.459950px;}
.y48{bottom:415.642350px;}
.y94{bottom:416.705250px;}
.ye6{bottom:421.038000px;}
.yb8{bottom:423.718200px;}
.y19b{bottom:427.491750px;}
.y168{bottom:427.815900px;}
.y6b{bottom:429.259950px;}
.y47{bottom:435.442350px;}
.y145{bottom:437.860800px;}
.yfb{bottom:439.609200px;}
.y93{bottom:440.762250px;}
.ye5{bottom:440.838000px;}
.y1d{bottom:443.006550px;}
.yb7{bottom:443.518200px;}
.y19a{bottom:447.291750px;}
.y46{bottom:455.242350px;}
.y144{bottom:457.660800px;}
.yfa{bottom:459.409200px;}
.y167{bottom:460.370400px;}
.y6a{bottom:462.892650px;}
.yb6{bottom:463.318200px;}
.y92{bottom:464.819250px;}
.y1c7{bottom:465.061350px;}
.y199{bottom:471.348750px;}
.ye4{bottom:473.392500px;}
.y45{bottom:475.042350px;}
.y1c{bottom:477.368550px;}
.y143{bottom:477.460800px;}
.yf9{bottom:479.209200px;}
.y166{bottom:484.427400px;}
.y1c6{bottom:484.861350px;}
.y198{bottom:491.148750px;}
.ye3{bottom:493.192500px;}
.y44{bottom:494.842350px;}
.y69{bottom:495.292650px;}
.yb4{bottom:496.955250px;}
.y91{bottom:498.451950px;}
.y1c5{bottom:504.661350px;}
.y165{bottom:508.484400px;}
.y142{bottom:510.015300px;}
.y1b{bottom:511.724550px;}
.yf8{bottom:511.763700px;}
.y197{bottom:515.205750px;}
.ye2{bottom:525.747000px;}
.y43{bottom:527.396850px;}
.y68{bottom:527.692650px;}
.y78{bottom:529.313850px;}
.yb3{bottom:529.355250px;}
.y141{bottom:529.815300px;}
.y90{bottom:530.851950px;}
.yf7{bottom:531.563700px;}
.y164{bottom:532.541400px;}
.y196{bottom:535.005750px;}
.y11d{bottom:535.481250px;}
.y1c4{bottom:537.215850px;}
.y1a{bottom:544.124550px;}
.ye1{bottom:545.547000px;}
.y42{bottom:547.196850px;}
.y140{bottom:549.615300px;}
.yf6{bottom:551.363700px;}
.y11c{bottom:555.281250px;}
.y1c3{bottom:557.015850px;}
.y195{bottom:559.062750px;}
.yb2{bottom:561.755250px;}
.y8f{bottom:563.251950px;}
.ya1{bottom:564.868800px;}
.y163{bottom:565.095900px;}
.y41{bottom:566.996850px;}
.y13f{bottom:569.415300px;}
.y194{bottom:578.862750px;}
.ye0{bottom:579.179700px;}
.yf2{bottom:580.800900px;}
.y1c2{bottom:581.072850px;}
.yf5{bottom:583.918200px;}
.y40{bottom:586.796850px;}
.y11b{bottom:587.835750px;}
.y162{bottom:589.152900px;}
.yb1{bottom:594.155250px;}
.yb5{bottom:595.776300px;}
.y19{bottom:597.772200px;}
.y67{bottom:599.325600px;}
.y1c1{bottom:600.872850px;}
.y13e{bottom:601.969800px;}
.y193{bottom:602.919750px;}
.yf4{bottom:603.718200px;}
.y3f{bottom:606.596850px;}
.y11a{bottom:607.635750px;}
.y161{bottom:613.209900px;}
.y13d{bottom:621.769800px;}
.y66{bottom:624.525600px;}
.y1c0{bottom:624.929850px;}
.y8e{bottom:626.031000px;}
.y3e{bottom:626.396850px;}
.y119{bottom:627.435750px;}
.y18{bottom:632.134200px;}
.y192{bottom:635.474250px;}
.y160{bottom:637.266900px;}
.yf3{bottom:637.355250px;}
.y106{bottom:638.976300px;}
.y13c{bottom:641.569800px;}
.ydf{bottom:641.950500px;}
.y1bf{bottom:644.729850px;}
.y8d{bottom:645.831000px;}
.y3d{bottom:646.196850px;}
.y65{bottom:649.725600px;}
.y191{bottom:655.274250px;}
.yb0{bottom:656.629800px;}
.y118{bottom:659.990250px;}
.y15f{bottom:661.323900px;}
.yde{bottom:661.750500px;}
.y8c{bottom:665.631000px;}
.y3c{bottom:665.996850px;}
.y17{bottom:666.496200px;}
.y1be{bottom:668.786850px;}
.y12c{bottom:674.008800px;}
.y13b{bottom:674.124300px;}
.y64{bottom:674.925600px;}
.y190{bottom:679.331250px;}
.y117{bottom:679.790250px;}
.ydd{bottom:681.550500px;}
.yaf{bottom:681.829800px;}
.y16{bottom:688.096200px;}
.y13a{bottom:693.924300px;}
.y15e{bottom:694.956600px;}
.y176{bottom:696.577650px;}
.y8b{bottom:698.185500px;}
.y3b{bottom:698.551350px;}
.y18f{bottom:699.131250px;}
.y116{bottom:699.590250px;}
.y63{bottom:700.125600px;}
.y1bd{bottom:701.341350px;}
.y12b{bottom:706.563300px;}
.yae{bottom:707.029800px;}
.y15{bottom:709.696200px;}
.y139{bottom:713.724300px;}
.ydc{bottom:714.105000px;}
.y8a{bottom:717.985500px;}
.y3a{bottom:718.351350px;}
.y1bc{bottom:721.141350px;}
.y18e{bottom:723.188250px;}
.y62{bottom:725.325600px;}
.y12a{bottom:726.363300px;}
.y115{bottom:732.144750px;}
.yad{bottom:732.229800px;}
.ydb{bottom:733.905000px;}
.y39{bottom:738.151350px;}
.y18d{bottom:742.988250px;}
.y14{bottom:744.052050px;}
.y1bb{bottom:745.198350px;}
.y138{bottom:746.278800px;}
.y61{bottom:750.525600px;}
.y89{bottom:750.540000px;}
.y114{bottom:751.944750px;}
.yac{bottom:757.429800px;}
.y38{bottom:757.951350px;}
.y15d{bottom:758.402400px;}
.y129{bottom:758.917800px;}
.y1ba{bottom:764.998350px;}
.y137{bottom:766.078800px;}
.yda{bottom:766.459500px;}
.y18c{bottom:767.045250px;}
.y88{bottom:770.340000px;}
.y113{bottom:771.744750px;}
.y60{bottom:775.725600px;}
.y13{bottom:776.452050px;}
.y37{bottom:777.751350px;}
.y128{bottom:778.717800px;}
.yab{bottom:782.629800px;}
.y15c{bottom:783.602400px;}
.yd9{bottom:786.259500px;}
.y18b{bottom:786.845250px;}
.y1b9{bottom:789.055350px;}
.y112{bottom:791.544750px;}
.y36{bottom:797.551350px;}
.y136{bottom:798.633300px;}
.y5f{bottom:800.925600px;}
.y87{bottom:802.894500px;}
.yd8{bottom:806.059500px;}
.y18a{bottom:806.645250px;}
.yaa{bottom:807.829800px;}
.y15b{bottom:808.802400px;}
.y1b8{bottom:808.855350px;}
.y127{bottom:811.272300px;}
.y35{bottom:817.351350px;}
.y135{bottom:818.433300px;}
.y86{bottom:822.694500px;}
.y111{bottom:825.181650px;}
.yd7{bottom:825.859500px;}
.y5e{bottom:826.125600px;}
.y12{bottom:830.099700px;}
.y189{bottom:830.702250px;}
.y1b7{bottom:832.912350px;}
.ya9{bottom:833.029800px;}
.y15a{bottom:834.002400px;}
.y34{bottom:837.151350px;}
.y134{bottom:838.233300px;}
.y85{bottom:842.494500px;}
.y126{bottom:843.826800px;}
.yd6{bottom:845.659500px;}
.y5d{bottom:851.325600px;}
.y11{bottom:851.699700px;}
.y33{bottom:856.951350px;}
.y110{bottom:857.581650px;}
.ya8{bottom:858.229800px;}
.y159{bottom:859.202400px;}
.y11e{bottom:859.202700px;}
.y188{bottom:863.258100px;}
.y1b6{bottom:865.466850px;}
.y133{bottom:870.787800px;}
.y84{bottom:875.049000px;}
.y125{bottom:876.381300px;}
.y5c{bottom:876.525600px;}
.y32{bottom:876.751350px;}
.yd5{bottom:879.296400px;}
.ya7{bottom:883.429800px;}
.y158{bottom:884.402400px;}
.y1b5{bottom:885.266850px;}
.y10{bottom:886.061700px;}
.y132{bottom:894.844800px;}
.y83{bottom:894.849000px;}
.y31{bottom:896.551350px;}
.y5b{bottom:901.725600px;}
.yf{bottom:907.661700px;}
.ya6{bottom:908.629800px;}
.y124{bottom:908.935800px;}
.y1b4{bottom:909.323850px;}
.y157{bottom:909.602400px;}
.yd4{bottom:911.696400px;}
.yf1{bottom:913.317600px;}
.y131{bottom:914.644800px;}
.y30{bottom:916.351350px;}
.y10f{bottom:920.353800px;}
.y186{bottom:926.023800px;}
.y5a{bottom:926.925600px;}
.y82{bottom:927.403500px;}
.y1b3{bottom:929.123850px;}
.y2f{bottom:936.151350px;}
.y10e{bottom:940.153800px;}
.y123{bottom:941.490300px;}
.ye{bottom:942.023700px;}
.y130{bottom:947.199300px;}
.y81{bottom:947.203500px;}
.y185{bottom:951.223800px;}
.y59{bottom:952.125600px;}
.y1b2{bottom:953.180850px;}
.y2e{bottom:955.951350px;}
.y10d{bottom:959.953800px;}
.yd{bottom:963.623700px;}
.ya5{bottom:966.899400px;}
.y12f{bottom:966.999300px;}
.y80{bottom:967.003500px;}
.y156{bottom:967.872150px;}
.y122{bottom:974.044800px;}
.yd3{bottom:974.465850px;}
.y184{bottom:976.423800px;}
.y1b1{bottom:977.237850px;}
.y10c{bottom:979.753800px;}
.y12e{bottom:986.799300px;}
.yd2{bottom:994.265850px;}
.yc{bottom:997.979550px;}
.y7f{bottom:999.558000px;}
.y183{bottom:1001.623800px;}
.y121{bottom:1006.599300px;}
.y1b0{bottom:1009.792350px;}
.ya4{bottom:1010.099400px;}
.y57{bottom:1010.395350px;}
.y2d{bottom:1010.842800px;}
.y155{bottom:1011.072150px;}
.y10b{bottom:1012.308300px;}
.yd1{bottom:1014.065850px;}
.y12d{bottom:1019.353800px;}
.y7e{bottom:1019.358000px;}
.y182{bottom:1026.823800px;}
.y1af{bottom:1029.592350px;}
.yb{bottom:1030.379550px;}
.y10a{bottom:1032.108300px;}
.y2c{bottom:1036.042800px;}
.y120{bottom:1039.153800px;}
.y7d{bottom:1039.158000px;}
.yd0{bottom:1046.620350px;}
.y109{bottom:1051.908300px;}
.y181{bottom:1052.023800px;}
.ya3{bottom:1053.299400px;}
.y56{bottom:1053.595350px;}
.y1ae{bottom:1053.649350px;}
.y154{bottom:1054.272150px;}
.y11f{bottom:1058.953800px;}
.y2b{bottom:1061.242800px;}
.ycf{bottom:1066.420350px;}
.y108{bottom:1071.708300px;}
.y7c{bottom:1071.712500px;}
.y1ad{bottom:1077.706350px;}
.yce{bottom:1086.220350px;}
.y2a{bottom:1086.442800px;}
.y107{bottom:1091.508300px;}
.y7b{bottom:1091.512500px;}
.ya2{bottom:1096.499400px;}
.ya{bottom:1096.795350px;}
.y153{bottom:1097.472150px;}
.y1ac{bottom:1097.506350px;}
.ycd{bottom:1106.020350px;}
.yc9{bottom:1107.755250px;}
.y58{bottom:1108.051200px;}
.y177{bottom:1108.728000px;}
.y187{bottom:1110.295350px;}
.y29{bottom:1111.642800px;}
.y1ab{bottom:1121.563350px;}
.y7a{bottom:1125.145350px;}
.ycc{bottom:1125.820350px;}
.y28{bottom:1136.842800px;}
.y1aa{bottom:1141.363350px;}
.ycb{bottom:1145.620350px;}
.y79{bottom:1157.545350px;}
.ya0{bottom:1159.166400px;}
.y27{bottom:1162.042800px;}
.yca{bottom:1165.420350px;}
.ha{height:46.200000px;}
.h2{height:49.500000px;}
.hb{height:49.764000px;}
.h5{height:54.000000px;}
.h6{height:63.000000px;}
.h9{height:63.336000px;}
.h4{height:81.000000px;}
.h7{height:105.408000px;}
.h8{height:263.520000px;}
.h3{height:316.224000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:30.759750px;}
.x6{left:36.639750px;}
.x1{left:42.519750px;}
.x3{left:85.039350px;}
.x9{left:97.729350px;}
.xa{left:99.740850px;}
.x11{left:106.299150px;}
.x4{left:114.811350px;}
.xb{left:347.854200px;}
.xf{left:360.669750px;}
.x7{left:367.047750px;}
.x2{left:457.082250px;}
.x10{left:511.346700px;}
.xc{left:709.269600px;}
.x8{left:728.462700px;}
.xe{left:838.633800px;}
.x5{left:844.513800px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-1.056000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:53.562667pt;}
.ws2{word-spacing:-84.480000pt;}
.wsce{word-spacing:-70.400000pt;}
.ws3{word-spacing:-21.120000pt;}
.ws8{word-spacing:-17.568000pt;}
.wse6{word-spacing:-16.426667pt;}
.ws5{word-spacing:-13.824000pt;}
.ws0{word-spacing:-12.906667pt;}
.ws11{word-spacing:-12.608000pt;}
.ws15{word-spacing:-12.544000pt;}
.ws12{word-spacing:-12.480000pt;}
.ws13{word-spacing:-12.160000pt;}
.ws8a{word-spacing:-11.850667pt;}
.wsf{word-spacing:-9.088000pt;}
.ws43{word-spacing:-7.914667pt;}
.ws44{word-spacing:-7.840000pt;}
.ws4{word-spacing:-7.584000pt;}
.ws7{word-spacing:-6.912000pt;}
.ws39{word-spacing:-6.805333pt;}
.ws9{word-spacing:-6.336000pt;}
.wsb{word-spacing:-6.272000pt;}
.ws1e{word-spacing:-6.101333pt;}
.wsa{word-spacing:-6.080000pt;}
.ws10{word-spacing:-6.016000pt;}
.wsc5{word-spacing:-5.749333pt;}
.ws1c{word-spacing:-5.690667pt;}
.ws8e{word-spacing:-5.450667pt;}
.ws7e{word-spacing:-5.397333pt;}
.ws79{word-spacing:-5.221333pt;}
.ws93{word-spacing:-5.002667pt;}
.ws25{word-spacing:-4.869333pt;}
.ws97{word-spacing:-4.752000pt;}
.ws7f{word-spacing:-4.341333pt;}
.wsd{word-spacing:-4.288000pt;}
.wsba{word-spacing:-3.989333pt;}
.wsd3{word-spacing:-3.957333pt;}
.ws17{word-spacing:-3.808000pt;}
.wse1{word-spacing:-3.696000pt;}
.ws83{word-spacing:-3.637333pt;}
.ws6b{word-spacing:-3.509333pt;}
.wsc7{word-spacing:-3.285333pt;}
.wseb{word-spacing:-3.226667pt;}
.ws91{word-spacing:-3.210667pt;}
.ws64{word-spacing:-3.200000pt;}
.ws28{word-spacing:-3.050667pt;}
.wsd7{word-spacing:-2.874667pt;}
.wsa2{word-spacing:-2.816000pt;}
.ws5a{word-spacing:-2.522667pt;}
.wsc{word-spacing:-2.496000pt;}
.wsca{word-spacing:-2.464000pt;}
.ws51{word-spacing:-2.346667pt;}
.wsac{word-spacing:-2.288000pt;}
.wsc8{word-spacing:-2.240000pt;}
.ws84{word-spacing:-2.229333pt;}
.ws6{word-spacing:-2.176000pt;}
.ws5c{word-spacing:-2.170667pt;}
.ws8b{word-spacing:-2.090667pt;}
.ws7d{word-spacing:-2.053333pt;}
.wsdb{word-spacing:-1.994667pt;}
.ws14{word-spacing:-1.920000pt;}
.wsa7{word-spacing:-1.877333pt;}
.wsc0{word-spacing:-1.760000pt;}
.wsab{word-spacing:-1.642667pt;}
.wse{word-spacing:-1.536000pt;}
.ws70{word-spacing:-1.525333pt;}
.ws1b{word-spacing:-1.493333pt;}
.wsdf{word-spacing:-1.466667pt;}
.ws98{word-spacing:-1.408000pt;}
.ws3a{word-spacing:-1.349333pt;}
.ws16{word-spacing:-1.120000pt;}
.ws4f{word-spacing:-1.114667pt;}
.wsaa{word-spacing:-0.880000pt;}
.ws7a{word-spacing:-0.821333pt;}
.wsea{word-spacing:-0.704000pt;}
.ws3f{word-spacing:-0.645333pt;}
.ws94{word-spacing:-0.586667pt;}
.ws21{word-spacing:-0.528000pt;}
.ws49{word-spacing:-0.448000pt;}
.ws38{word-spacing:-0.352000pt;}
.ws65{word-spacing:-0.074667pt;}
.ws1{word-spacing:0.000000pt;}
.ws53{word-spacing:0.058667pt;}
.ws5d{word-spacing:0.117333pt;}
.wsa4{word-spacing:0.176000pt;}
.ws48{word-spacing:0.224000pt;}
.ws6f{word-spacing:0.293333pt;}
.wsec{word-spacing:0.586667pt;}
.ws50{word-spacing:0.704000pt;}
.ws9c{word-spacing:0.762667pt;}
.ws7b{word-spacing:0.938667pt;}
.ws9e{word-spacing:1.114667pt;}
.ws8f{word-spacing:1.194667pt;}
.ws5b{word-spacing:1.232000pt;}
.wsa8{word-spacing:1.408000pt;}
.wscd{word-spacing:1.466667pt;}
.ws78{word-spacing:1.525333pt;}
.wsae{word-spacing:1.818667pt;}
.ws9f{word-spacing:1.877333pt;}
.ws59{word-spacing:1.936000pt;}
.ws56{word-spacing:1.994667pt;}
.ws4d{word-spacing:2.016000pt;}
.ws80{word-spacing:2.053333pt;}
.ws6a{word-spacing:2.090667pt;}
.wsc6{word-spacing:2.165333pt;}
.ws96{word-spacing:2.170667pt;}
.wsa1{word-spacing:2.229333pt;}
.wsb8{word-spacing:2.288000pt;}
.ws57{word-spacing:2.346667pt;}
.ws27{word-spacing:2.581333pt;}
.wse5{word-spacing:2.757333pt;}
.ws35{word-spacing:2.816000pt;}
.ws60{word-spacing:2.933333pt;}
.wsa0{word-spacing:2.992000pt;}
.ws2a{word-spacing:3.168000pt;}
.ws68{word-spacing:3.210667pt;}
.ws81{word-spacing:3.226667pt;}
.ws29{word-spacing:3.461333pt;}
.wse2{word-spacing:3.520000pt;}
.ws46{word-spacing:3.584000pt;}
.ws41{word-spacing:3.658667pt;}
.ws6c{word-spacing:3.733333pt;}
.wsd8{word-spacing:3.813333pt;}
.ws9b{word-spacing:3.930667pt;}
.ws2c{word-spacing:4.048000pt;}
.ws4e{word-spacing:4.165333pt;}
.ws58{word-spacing:4.341333pt;}
.wsd9{word-spacing:4.517333pt;}
.wsd0{word-spacing:4.629333pt;}
.ws22{word-spacing:4.869333pt;}
.ws1d{word-spacing:4.928000pt;}
.ws30{word-spacing:4.986667pt;}
.wsd4{word-spacing:5.045333pt;}
.ws82{word-spacing:5.104000pt;}
.wse3{word-spacing:5.221333pt;}
.ws47{word-spacing:5.525333pt;}
.wsb5{word-spacing:5.632000pt;}
.ws5f{word-spacing:5.690667pt;}
.ws4a{word-spacing:5.824000pt;}
.ws6d{word-spacing:5.973333pt;}
.ws85{word-spacing:5.984000pt;}
.ws99{word-spacing:6.101333pt;}
.ws6e{word-spacing:6.160000pt;}
.ws66{word-spacing:6.421333pt;}
.ws42{word-spacing:6.645333pt;}
.ws73{word-spacing:6.746667pt;}
.ws7c{word-spacing:6.805333pt;}
.wscc{word-spacing:7.040000pt;}
.wscb{word-spacing:7.098667pt;}
.wsa5{word-spacing:7.157333pt;}
.wsa3{word-spacing:7.216000pt;}
.wsd5{word-spacing:7.333333pt;}
.ws4c{word-spacing:7.392000pt;}
.ws86{word-spacing:7.450667pt;}
.ws54{word-spacing:7.509333pt;}
.ws62{word-spacing:7.978667pt;}
.ws5e{word-spacing:8.037333pt;}
.wsda{word-spacing:8.154667pt;}
.wse7{word-spacing:8.272000pt;}
.ws52{word-spacing:8.330667pt;}
.ws95{word-spacing:8.506667pt;}
.ws63{word-spacing:8.682667pt;}
.ws36{word-spacing:8.800000pt;}
.ws19{word-spacing:9.109333pt;}
.ws3e{word-spacing:9.210667pt;}
.ws71{word-spacing:9.386667pt;}
.ws72{word-spacing:9.504000pt;}
.ws77{word-spacing:9.562667pt;}
.wsb2{word-spacing:9.621333pt;}
.wsc9{word-spacing:10.032000pt;}
.ws92{word-spacing:10.080000pt;}
.wsd6{word-spacing:10.149333pt;}
.wsa9{word-spacing:10.266667pt;}
.wsd2{word-spacing:10.602667pt;}
.ws74{word-spacing:10.794667pt;}
.ws61{word-spacing:11.029333pt;}
.ws40{word-spacing:11.050667pt;}
.ws2f{word-spacing:11.205333pt;}
.ws88{word-spacing:11.792000pt;}
.wsb3{word-spacing:11.850667pt;}
.ws2d{word-spacing:11.909333pt;}
.wse9{word-spacing:12.320000pt;}
.wsdd{word-spacing:12.378667pt;}
.wse8{word-spacing:12.848000pt;}
.wsb6{word-spacing:13.024000pt;}
.wsbe{word-spacing:13.376000pt;}
.ws89{word-spacing:13.552000pt;}
.ws55{word-spacing:13.610667pt;}
.ws26{word-spacing:13.845333pt;}
.ws23{word-spacing:13.962667pt;}
.wsbc{word-spacing:14.080000pt;}
.ws2e{word-spacing:14.549333pt;}
.ws4b{word-spacing:14.709333pt;}
.ws9d{word-spacing:14.784000pt;}
.ws8c{word-spacing:15.008000pt;}
.wsc4{word-spacing:15.530667pt;}
.wsb7{word-spacing:15.781333pt;}
.ws20{word-spacing:16.192000pt;}
.wsde{word-spacing:16.485333pt;}
.wsdc{word-spacing:16.602667pt;}
.wsad{word-spacing:16.837333pt;}
.ws18{word-spacing:16.874667pt;}
.ws9a{word-spacing:16.896000pt;}
.ws87{word-spacing:17.776000pt;}
.wsc2{word-spacing:17.920000pt;}
.wsbd{word-spacing:18.128000pt;}
.wsa6{word-spacing:18.480000pt;}
.ws75{word-spacing:18.538667pt;}
.ws31{word-spacing:18.597333pt;}
.ws76{word-spacing:19.594667pt;}
.ws8d{word-spacing:19.861333pt;}
.ws24{word-spacing:20.005333pt;}
.ws3c{word-spacing:20.885333pt;}
.wse0{word-spacing:20.944000pt;}
.wse4{word-spacing:21.120000pt;}
.wsc1{word-spacing:22.117333pt;}
.ws32{word-spacing:22.762667pt;}
.ws90{word-spacing:23.072000pt;}
.ws1a{word-spacing:23.146667pt;}
.ws33{word-spacing:23.408000pt;}
.ws34{word-spacing:23.584000pt;}
.ws3b{word-spacing:24.522667pt;}
.wsbb{word-spacing:25.461333pt;}
.wsb1{word-spacing:25.754667pt;}
.wsd1{word-spacing:26.282667pt;}
.ws37{word-spacing:26.517333pt;}
.wsc3{word-spacing:27.178667pt;}
.ws3d{word-spacing:28.629333pt;}
.wsb0{word-spacing:28.922667pt;}
.ws45{word-spacing:29.568000pt;}
.ws69{word-spacing:29.717333pt;}
.wsb4{word-spacing:29.802667pt;}
.ws67{word-spacing:30.762667pt;}
.ws1f{word-spacing:31.914667pt;}
.wsbf{word-spacing:35.258667pt;}
.ws2b{word-spacing:37.312000pt;}
.wsaf{word-spacing:38.016000pt;}
.wsb9{word-spacing:50.922667pt;}
.wscf{word-spacing:57.941333pt;}
._b{margin-left:-65.178667pt;}
._f{margin-left:-21.205333pt;}
._c{margin-left:-12.099733pt;}
._9{margin-left:-9.920533pt;}
._7{margin-left:-6.716267pt;}
._a{margin-left:-5.338667pt;}
._1{margin-left:-4.224000pt;}
._5{margin-left:-2.891200pt;}
._0{margin-left:-1.237867pt;}
._d{width:1.056000pt;}
._4{width:3.947733pt;}
._2{width:9.120000pt;}
._6{width:10.155733pt;}
._3{width:42.112000pt;}
._e{width:45.056000pt;}
._8{width:92.544000pt;}
.fs0{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.fs2{font-size:96.000000pt;}
.fs5{font-size:128.000000pt;}
.fs6{font-size:320.000000pt;}
.fs1{font-size:384.000000pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:11.897600pt;}
.y1d2{bottom:37.834533pt;}
.y1d7{bottom:49.694000pt;}
.y1d1{bottom:55.874533pt;}
.yc8{bottom:68.565067pt;}
.y1d0{bottom:73.914533pt;}
.yc7{bottom:86.165067pt;}
.y175{bottom:87.196800pt;}
.y180{bottom:87.260133pt;}
.y1a9{bottom:88.214000pt;}
.y1cf{bottom:91.954533pt;}
.yc6{bottom:103.765067pt;}
.y17f{bottom:104.860133pt;}
.y1a8{bottom:105.814000pt;}
.y174{bottom:108.580800pt;}
.y1ce{bottom:109.994533pt;}
.y77{bottom:113.677733pt;}
.y152{bottom:115.060267pt;}
.y25{bottom:116.900933pt;}
.y55{bottom:117.985200pt;}
.yc5{bottom:121.365067pt;}
.y17e{bottom:122.460133pt;}
.y5{bottom:123.295467pt;}
.y173{bottom:126.180800pt;}
.y1a7{bottom:127.198000pt;}
.y1d8{bottom:128.411333pt;}
.y76{bottom:131.277733pt;}
.y9f{bottom:131.426000pt;}
.y1cd{bottom:131.818533pt;}
.y151{bottom:132.660267pt;}
.y54{bottom:135.585200pt;}
.yc4{bottom:142.749067pt;}
.y9{bottom:144.664800pt;}
.y4{bottom:144.679467pt;}
.y1a6{bottom:144.798000pt;}
.y24{bottom:147.439467pt;}
.y172{bottom:147.564800pt;}
.y9e{bottom:149.026000pt;}
.y1cc{bottom:149.858533pt;}
.y150{bottom:150.260267pt;}
.y17d{bottom:151.397467pt;}
.yf0{bottom:152.906667pt;}
.y53{bottom:153.185200pt;}
.y75{bottom:160.215067pt;}
.yc3{bottom:160.349067pt;}
.y171{bottom:165.164800pt;}
.y8{bottom:166.048800pt;}
.y3{bottom:166.063467pt;}
.y1a5{bottom:166.182000pt;}
.y9d{bottom:166.626000pt;}
.y1cb{bottom:167.898533pt;}
.y17c{bottom:168.997467pt;}
.yef{bottom:170.506667pt;}
.y52{bottom:170.785200pt;}
.y74{bottom:177.815067pt;}
.yc2{bottom:177.949067pt;}
.y14f{bottom:179.197600pt;}
.y105{bottom:180.751733pt;}
.y1a4{bottom:183.782000pt;}
.y1ca{bottom:185.938533pt;}
.y170{bottom:186.548800pt;}
.y17b{bottom:186.597467pt;}
.y7{bottom:187.432800pt;}
.y2{bottom:187.447467pt;}
.yee{bottom:188.106667pt;}
.y51{bottom:188.385200pt;}
.y23{bottom:195.137067pt;}
.y1d6{bottom:195.331333pt;}
.yc1{bottom:195.549067pt;}
.y9c{bottom:195.563333pt;}
.y14e{bottom:196.797600pt;}
.y104{bottom:198.351733pt;}
.y1c9{bottom:203.978533pt;}
.y17a{bottom:204.197467pt;}
.y1a3{bottom:205.166000pt;}
.yed{bottom:205.706667pt;}
.y50{bottom:205.985200pt;}
.y73{bottom:206.752400pt;}
.y6{bottom:208.816800pt;}
.y1{bottom:208.831467pt;}
.yc0{bottom:213.149067pt;}
.y14d{bottom:214.397600pt;}
.y16f{bottom:215.486133pt;}
.y103{bottom:215.951733pt;}
.y9b{bottom:216.947333pt;}
.y1d5{bottom:217.731333pt;}
.y1c8{bottom:222.018533pt;}
.yec{bottom:223.306667pt;}
.y72{bottom:224.352400pt;}
.y22{bottom:225.675733pt;}
.y179{bottom:233.134800pt;}
.y102{bottom:233.551733pt;}
.y1a2{bottom:234.103333pt;}
.ybf{bottom:234.533067pt;}
.y4f{bottom:234.922533pt;}
.y16e{bottom:236.870133pt;}
.y9a{bottom:238.331333pt;}
.y14c{bottom:243.334933pt;}
.y178{bottom:250.734800pt;}
.y1a1{bottom:251.703333pt;}
.ybe{bottom:252.133067pt;}
.yeb{bottom:252.244000pt;}
.y4e{bottom:252.522533pt;}
.y71{bottom:253.289733pt;}
.y21{bottom:254.475733pt;}
.y16d{bottom:258.254133pt;}
.y1d4{bottom:259.022000pt;}
.y14b{bottom:260.934933pt;}
.y101{bottom:262.489067pt;}
.y99{bottom:267.268667pt;}
.yea{bottom:269.844000pt;}
.y4d{bottom:270.122533pt;}
.y70{bottom:270.889733pt;}
.y1a0{bottom:273.087333pt;}
.ybd{bottom:273.517067pt;}
.y14a{bottom:278.534933pt;}
.y16c{bottom:279.638133pt;}
.y100{bottom:280.089067pt;}
.y1d3{bottom:281.422000pt;}
.y4c{bottom:287.722533pt;}
.y98{bottom:288.652667pt;}
.y19f{bottom:290.687333pt;}
.ybc{bottom:291.117067pt;}
.y149{bottom:296.134933pt;}
.yff{bottom:297.689067pt;}
.ye9{bottom:298.781333pt;}
.y6f{bottom:299.827067pt;}
.y20{bottom:302.151600pt;}
.y4b{bottom:305.322533pt;}
.y16b{bottom:308.575467pt;}
.ybb{bottom:308.717067pt;}
.y97{bottom:310.036667pt;}
.y19e{bottom:312.071333pt;}
.ye8{bottom:316.381333pt;}
.y6e{bottom:317.427067pt;}
.y4a{bottom:322.922533pt;}
.y148{bottom:325.072267pt;}
.yfe{bottom:326.626400pt;}
.y19d{bottom:329.671333pt;}
.y16a{bottom:329.959467pt;}
.yba{bottom:330.101067pt;}
.y96{bottom:331.420667pt;}
.y1f{bottom:332.695600pt;}
.y6d{bottom:335.027067pt;}
.y147{bottom:342.672267pt;}
.yfd{bottom:344.226400pt;}
.ye7{bottom:345.318667pt;}
.yb9{bottom:347.701067pt;}
.y95{bottom:349.020667pt;}
.y19c{bottom:351.055333pt;}
.y49{bottom:351.859867pt;}
.y169{bottom:358.896800pt;}
.y146{bottom:360.272267pt;}
.yfc{bottom:361.826400pt;}
.y1e{bottom:363.239600pt;}
.y6c{bottom:363.964400pt;}
.y48{bottom:369.459867pt;}
.y94{bottom:370.404667pt;}
.ye6{bottom:374.256000pt;}
.yb8{bottom:376.638400pt;}
.y19b{bottom:379.992667pt;}
.y168{bottom:380.280800pt;}
.y6b{bottom:381.564400pt;}
.y47{bottom:387.059867pt;}
.y145{bottom:389.209600pt;}
.yfb{bottom:390.763733pt;}
.y93{bottom:391.788667pt;}
.ye5{bottom:391.856000pt;}
.y1d{bottom:393.783600pt;}
.yb7{bottom:394.238400pt;}
.y19a{bottom:397.592667pt;}
.y46{bottom:404.659867pt;}
.y144{bottom:406.809600pt;}
.yfa{bottom:408.363733pt;}
.y167{bottom:409.218133pt;}
.y6a{bottom:411.460133pt;}
.yb6{bottom:411.838400pt;}
.y92{bottom:413.172667pt;}
.y1c7{bottom:413.387867pt;}
.y199{bottom:418.976667pt;}
.ye4{bottom:420.793333pt;}
.y45{bottom:422.259867pt;}
.y1c{bottom:424.327600pt;}
.y143{bottom:424.409600pt;}
.yf9{bottom:425.963733pt;}
.y166{bottom:430.602133pt;}
.y1c6{bottom:430.987867pt;}
.y198{bottom:436.576667pt;}
.ye3{bottom:438.393333pt;}
.y44{bottom:439.859867pt;}
.y69{bottom:440.260133pt;}
.yb4{bottom:441.738000pt;}
.y91{bottom:443.068400pt;}
.y1c5{bottom:448.587867pt;}
.y165{bottom:451.986133pt;}
.y142{bottom:453.346933pt;}
.y1b{bottom:454.866267pt;}
.yf8{bottom:454.901067pt;}
.y197{bottom:457.960667pt;}
.ye2{bottom:467.330667pt;}
.y43{bottom:468.797200pt;}
.y68{bottom:469.060133pt;}
.y78{bottom:470.501200pt;}
.yb3{bottom:470.538000pt;}
.y141{bottom:470.946933pt;}
.y90{bottom:471.868400pt;}
.yf7{bottom:472.501067pt;}
.y164{bottom:473.370133pt;}
.y196{bottom:475.560667pt;}
.y11d{bottom:475.983333pt;}
.y1c4{bottom:477.525200pt;}
.y1a{bottom:483.666267pt;}
.ye1{bottom:484.930667pt;}
.y42{bottom:486.397200pt;}
.y140{bottom:488.546933pt;}
.yf6{bottom:490.101067pt;}
.y11c{bottom:493.583333pt;}
.y1c3{bottom:495.125200pt;}
.y195{bottom:496.944667pt;}
.yb2{bottom:499.338000pt;}
.y8f{bottom:500.668400pt;}
.ya1{bottom:502.105600pt;}
.y163{bottom:502.307467pt;}
.y41{bottom:503.997200pt;}
.y13f{bottom:506.146933pt;}
.y194{bottom:514.544667pt;}
.ye0{bottom:514.826400pt;}
.yf2{bottom:516.267467pt;}
.y1c2{bottom:516.509200pt;}
.yf5{bottom:519.038400pt;}
.y40{bottom:521.597200pt;}
.y11b{bottom:522.520667pt;}
.y162{bottom:523.691467pt;}
.yb1{bottom:528.138000pt;}
.yb5{bottom:529.578933pt;}
.y19{bottom:531.353067pt;}
.y67{bottom:532.733867pt;}
.y1c1{bottom:534.109200pt;}
.y13e{bottom:535.084267pt;}
.y193{bottom:535.928667pt;}
.yf4{bottom:536.638400pt;}
.y3f{bottom:539.197200pt;}
.y11a{bottom:540.120667pt;}
.y161{bottom:545.075467pt;}
.y13d{bottom:552.684267pt;}
.y66{bottom:555.133867pt;}
.y1c0{bottom:555.493200pt;}
.y8e{bottom:556.472000pt;}
.y3e{bottom:556.797200pt;}
.y119{bottom:557.720667pt;}
.y18{bottom:561.897067pt;}
.y192{bottom:564.866000pt;}
.y160{bottom:566.459467pt;}
.yf3{bottom:566.538000pt;}
.y106{bottom:567.978933pt;}
.y13c{bottom:570.284267pt;}
.ydf{bottom:570.622667pt;}
.y1bf{bottom:573.093200pt;}
.y8d{bottom:574.072000pt;}
.y3d{bottom:574.397200pt;}
.y65{bottom:577.533867pt;}
.y191{bottom:582.466000pt;}
.yb0{bottom:583.670933pt;}
.y118{bottom:586.658000pt;}
.y15f{bottom:587.843467pt;}
.yde{bottom:588.222667pt;}
.y8c{bottom:591.672000pt;}
.y3c{bottom:591.997200pt;}
.y17{bottom:592.441067pt;}
.y1be{bottom:594.477200pt;}
.y12c{bottom:599.118933pt;}
.y13b{bottom:599.221600pt;}
.y64{bottom:599.933867pt;}
.y190{bottom:603.850000pt;}
.y117{bottom:604.258000pt;}
.ydd{bottom:605.822667pt;}
.yaf{bottom:606.070933pt;}
.y16{bottom:611.641067pt;}
.y13a{bottom:616.821600pt;}
.y15e{bottom:617.739200pt;}
.y176{bottom:619.180133pt;}
.y8b{bottom:620.609333pt;}
.y3b{bottom:620.934533pt;}
.y18f{bottom:621.450000pt;}
.y116{bottom:621.858000pt;}
.y63{bottom:622.333867pt;}
.y1bd{bottom:623.414533pt;}
.y12b{bottom:628.056267pt;}
.yae{bottom:628.470933pt;}
.y15{bottom:630.841067pt;}
.y139{bottom:634.421600pt;}
.ydc{bottom:634.760000pt;}
.y8a{bottom:638.209333pt;}
.y3a{bottom:638.534533pt;}
.y1bc{bottom:641.014533pt;}
.y18e{bottom:642.834000pt;}
.y62{bottom:644.733867pt;}
.y12a{bottom:645.656267pt;}
.y115{bottom:650.795333pt;}
.yad{bottom:650.870933pt;}
.ydb{bottom:652.360000pt;}
.y39{bottom:656.134533pt;}
.y18d{bottom:660.434000pt;}
.y14{bottom:661.379600pt;}
.y1bb{bottom:662.398533pt;}
.y138{bottom:663.358933pt;}
.y61{bottom:667.133867pt;}
.y89{bottom:667.146667pt;}
.y114{bottom:668.395333pt;}
.yac{bottom:673.270933pt;}
.y38{bottom:673.734533pt;}
.y15d{bottom:674.135467pt;}
.y129{bottom:674.593600pt;}
.y1ba{bottom:679.998533pt;}
.y137{bottom:680.958933pt;}
.yda{bottom:681.297333pt;}
.y18c{bottom:681.818000pt;}
.y88{bottom:684.746667pt;}
.y113{bottom:685.995333pt;}
.y60{bottom:689.533867pt;}
.y13{bottom:690.179600pt;}
.y37{bottom:691.334533pt;}
.y128{bottom:692.193600pt;}
.yab{bottom:695.670933pt;}
.y15c{bottom:696.535467pt;}
.yd9{bottom:698.897333pt;}
.y18b{bottom:699.418000pt;}
.y1b9{bottom:701.382533pt;}
.y112{bottom:703.595333pt;}
.y36{bottom:708.934533pt;}
.y136{bottom:709.896267pt;}
.y5f{bottom:711.933867pt;}
.y87{bottom:713.684000pt;}
.yd8{bottom:716.497333pt;}
.y18a{bottom:717.018000pt;}
.yaa{bottom:718.070933pt;}
.y15b{bottom:718.935467pt;}
.y1b8{bottom:718.982533pt;}
.y127{bottom:721.130933pt;}
.y35{bottom:726.534533pt;}
.y135{bottom:727.496267pt;}
.y86{bottom:731.284000pt;}
.y111{bottom:733.494800pt;}
.yd7{bottom:734.097333pt;}
.y5e{bottom:734.333867pt;}
.y12{bottom:737.866400pt;}
.y189{bottom:738.402000pt;}
.y1b7{bottom:740.366533pt;}
.ya9{bottom:740.470933pt;}
.y15a{bottom:741.335467pt;}
.y34{bottom:744.134533pt;}
.y134{bottom:745.096267pt;}
.y85{bottom:748.884000pt;}
.y126{bottom:750.068267pt;}
.yd6{bottom:751.697333pt;}
.y5d{bottom:756.733867pt;}
.y11{bottom:757.066400pt;}
.y33{bottom:761.734533pt;}
.y110{bottom:762.294800pt;}
.ya8{bottom:762.870933pt;}
.y159{bottom:763.735467pt;}
.y11e{bottom:763.735733pt;}
.y188{bottom:767.340533pt;}
.y1b6{bottom:769.303867pt;}
.y133{bottom:774.033600pt;}
.y84{bottom:777.821333pt;}
.y125{bottom:779.005600pt;}
.y5c{bottom:779.133867pt;}
.y32{bottom:779.334533pt;}
.yd5{bottom:781.596800pt;}
.ya7{bottom:785.270933pt;}
.y158{bottom:786.135467pt;}
.y1b5{bottom:786.903867pt;}
.y10{bottom:787.610400pt;}
.y132{bottom:795.417600pt;}
.y83{bottom:795.421333pt;}
.y31{bottom:796.934533pt;}
.y5b{bottom:801.533867pt;}
.yf{bottom:806.810400pt;}
.ya6{bottom:807.670933pt;}
.y124{bottom:807.942933pt;}
.y1b4{bottom:808.287867pt;}
.y157{bottom:808.535467pt;}
.yd4{bottom:810.396800pt;}
.yf1{bottom:811.837867pt;}
.y131{bottom:813.017600pt;}
.y30{bottom:814.534533pt;}
.y10f{bottom:818.092267pt;}
.y186{bottom:823.132267pt;}
.y5a{bottom:823.933867pt;}
.y82{bottom:824.358667pt;}
.y1b3{bottom:825.887867pt;}
.y2f{bottom:832.134533pt;}
.y10e{bottom:835.692267pt;}
.y123{bottom:836.880267pt;}
.ye{bottom:837.354400pt;}
.y130{bottom:841.954933pt;}
.y81{bottom:841.958667pt;}
.y185{bottom:845.532267pt;}
.y59{bottom:846.333867pt;}
.y1b2{bottom:847.271867pt;}
.y2e{bottom:849.734533pt;}
.y10d{bottom:853.292267pt;}
.yd{bottom:856.554400pt;}
.ya5{bottom:859.466133pt;}
.y12f{bottom:859.554933pt;}
.y80{bottom:859.558667pt;}
.y156{bottom:860.330800pt;}
.y122{bottom:865.817600pt;}
.yd3{bottom:866.191867pt;}
.y184{bottom:867.932267pt;}
.y1b1{bottom:868.655867pt;}
.y10c{bottom:870.892267pt;}
.y12e{bottom:877.154933pt;}
.yd2{bottom:883.791867pt;}
.yc{bottom:887.092933pt;}
.y7f{bottom:888.496000pt;}
.y183{bottom:890.332267pt;}
.y121{bottom:894.754933pt;}
.y1b0{bottom:897.593200pt;}
.ya4{bottom:897.866133pt;}
.y57{bottom:898.129200pt;}
.y2d{bottom:898.526933pt;}
.y155{bottom:898.730800pt;}
.y10b{bottom:899.829600pt;}
.yd1{bottom:901.391867pt;}
.y12d{bottom:906.092267pt;}
.y7e{bottom:906.096000pt;}
.y182{bottom:912.732267pt;}
.y1af{bottom:915.193200pt;}
.yb{bottom:915.892933pt;}
.y10a{bottom:917.429600pt;}
.y2c{bottom:920.926933pt;}
.y120{bottom:923.692267pt;}
.y7d{bottom:923.696000pt;}
.yd0{bottom:930.329200pt;}
.y109{bottom:935.029600pt;}
.y181{bottom:935.132267pt;}
.ya3{bottom:936.266133pt;}
.y56{bottom:936.529200pt;}
.y1ae{bottom:936.577200pt;}
.y154{bottom:937.130800pt;}
.y11f{bottom:941.292267pt;}
.y2b{bottom:943.326933pt;}
.ycf{bottom:947.929200pt;}
.y108{bottom:952.629600pt;}
.y7c{bottom:952.633333pt;}
.y1ad{bottom:957.961200pt;}
.yce{bottom:965.529200pt;}
.y2a{bottom:965.726933pt;}
.y107{bottom:970.229600pt;}
.y7b{bottom:970.233333pt;}
.ya2{bottom:974.666133pt;}
.ya{bottom:974.929200pt;}
.y153{bottom:975.530800pt;}
.y1ac{bottom:975.561200pt;}
.ycd{bottom:983.129200pt;}
.yc9{bottom:984.671333pt;}
.y58{bottom:984.934400pt;}
.y177{bottom:985.536000pt;}
.y187{bottom:986.929200pt;}
.y29{bottom:988.126933pt;}
.y1ab{bottom:996.945200pt;}
.y7a{bottom:1000.129200pt;}
.ycc{bottom:1000.729200pt;}
.y28{bottom:1010.526933pt;}
.y1aa{bottom:1014.545200pt;}
.ycb{bottom:1018.329200pt;}
.y79{bottom:1028.929200pt;}
.ya0{bottom:1030.370133pt;}
.y27{bottom:1032.926933pt;}
.yca{bottom:1035.929200pt;}
.ha{height:41.066667pt;}
.h2{height:44.000000pt;}
.hb{height:44.234667pt;}
.h5{height:48.000000pt;}
.h6{height:56.000000pt;}
.h9{height:56.298667pt;}
.h4{height:72.000000pt;}
.h7{height:93.696000pt;}
.h8{height:234.240000pt;}
.h3{height:281.088000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:27.342000pt;}
.x6{left:32.568667pt;}
.x1{left:37.795333pt;}
.x3{left:75.590533pt;}
.x9{left:86.870533pt;}
.xa{left:88.658533pt;}
.x11{left:94.488133pt;}
.x4{left:102.054533pt;}
.xb{left:309.203733pt;}
.xf{left:320.595333pt;}
.x7{left:326.264667pt;}
.x2{left:406.295333pt;}
.x10{left:454.530400pt;}
.xc{left:630.461867pt;}
.x8{left:647.522400pt;}
.xe{left:745.452267pt;}
.x5{left:750.678933pt;}
}




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