
    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_5ad3705b4319e55cbc65f65b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_6380f8d52161e3c830142c9a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.968262;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_abbd006c8afc14faba2625f1.woff')format("woff");}.ff3{font-family:ff3;line-height:0.958630;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_35b908ff80ee40d2866456b3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.968262;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_b30e36ed508b86f93663f584.woff')format("woff");}.ff5{font-family:ff5;line-height:1.032715;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_3662eb69c163c3aeb08e4e85.woff')format("woff");}.ff6{font-family:ff6;line-height:1.026855;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_41aa045e6a9a66bdbe5161bb.woff')format("woff");}.ff7{font-family:ff7;line-height:0.973633;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_947c855c3cb80f8cfbf0c8d7.woff')format("woff");}.ff8{font-family:ff8;line-height:1.123000;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_e9201d92858a21f2edcd9166.woff')format("woff");}.ff9{font-family:ff9;line-height:0.984048;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_06275f376c9d02f1b01dad01.woff')format("woff");}.ffa{font-family:ffa;line-height:0.710938;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_912d98296cb2829d904ed2dc.woff')format("woff");}.ffb{font-family:ffb;line-height:0.961048;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_66b5d61c36b747fe69f63872.woff')format("woff");}.ffc{font-family:ffc;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_588855f5fff9ce65c7dec0a6.woff')format("woff");}.ffd{font-family:ffd;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_a2d91633d85c0151de57e994.woff')format("woff");}.ffe{font-family:ffe;line-height:0.902832;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_8d844d340fc6c8cf928fff64.woff')format("woff");}.fff{font-family:fff;line-height:1.013184;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_6c25c1ab8a232e98d347a429.woff')format("woff");}.ff10{font-family:ff10;line-height:0.765137;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_0ad34def595b92714529331a.woff')format("woff");}.ff11{font-family:ff11;line-height:0.787109;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_3f7ca15e93742ff09d9d6a02.woff')format("woff");}.ff12{font-family:ff12;line-height:0.776367;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_e78bea04bb084cb566e6b8a0.woff')format("woff");}.ff13{font-family:ff13;line-height:0.973000;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:ff14;src:url('chunks/assets/font_0d22842f010f78564f53df7d.woff')format("woff");}.ff14{font-family:ff14;line-height:0.770020;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:ff15;src:url('chunks/assets/font_f523910e6cb48068ec5abde9.woff')format("woff");}.ff15{font-family:ff15;line-height:0.913086;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.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);}
.m2{transform:matrix(0.244997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244997,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);}
.m3{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;}
.v1{vertical-align:21.978000px;}
.ls12{letter-spacing:-1.944000px;}
.ls8{letter-spacing:-1.320000px;}
.lsc{letter-spacing:-1.254000px;}
.lsd{letter-spacing:-0.990000px;}
.ls14{letter-spacing:-0.864000px;}
.lse{letter-spacing:-0.702000px;}
.ls6{letter-spacing:-0.691200px;}
.ls9{letter-spacing:-0.660000px;}
.ls15{letter-spacing:-0.648000px;}
.ls7{letter-spacing:-0.540000px;}
.ls16{letter-spacing:-0.180000px;}
.ls13{letter-spacing:-0.162000px;}
.ls1{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.108000px;}
.ls11{letter-spacing:0.756000px;}
.lsa{letter-spacing:1.056000px;}
.lsf{letter-spacing:1.080000px;}
.lsb{letter-spacing:1.320000px;}
.ls5{letter-spacing:1.326000px;}
.ls3{letter-spacing:1.632000px;}
.ls4{letter-spacing:1.836000px;}
.ls2{letter-spacing:2.040000px;}
.ls0{letter-spacing:43.181964px;}
.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;}
}
.ws114{word-spacing:-54.000000px;}
.ws92{word-spacing:-21.978000px;}
.ws5{word-spacing:-17.928000px;}
.wscc{word-spacing:-16.434000px;}
.ws90{word-spacing:-16.368000px;}
.ws4{word-spacing:-14.940000px;}
.wse2{word-spacing:-13.608000px;}
.wscd{word-spacing:-13.500000px;}
.ws93{word-spacing:-12.813174px;}
.ws113{word-spacing:-12.636000px;}
.ws6{word-spacing:-12.366000px;}
.ws7{word-spacing:-12.150000px;}
.wsfe{word-spacing:-11.556000px;}
.ws2{word-spacing:-10.896000px;}
.ws28{word-spacing:-10.800000px;}
.ws3{word-spacing:-9.892800px;}
.ws91{word-spacing:-9.619500px;}
.ws1{word-spacing:-9.618000px;}
.ws0{word-spacing:-9.542544px;}
.ws7d{word-spacing:-3.564000px;}
.wsc6{word-spacing:-3.366000px;}
.ws11b{word-spacing:-3.348000px;}
.ws30{word-spacing:-3.234000px;}
.ws6a{word-spacing:-3.168000px;}
.ws50{word-spacing:-3.102000px;}
.ws7f{word-spacing:-2.970000px;}
.ws75{word-spacing:-2.904000px;}
.wsa3{word-spacing:-2.838000px;}
.ws99{word-spacing:-2.772000px;}
.ws8a{word-spacing:-2.706000px;}
.ws70{word-spacing:-2.640000px;}
.ws72{word-spacing:-2.574000px;}
.ws1f{word-spacing:-2.538000px;}
.ws63{word-spacing:-2.508000px;}
.ws8b{word-spacing:-2.484000px;}
.wsaa{word-spacing:-2.442000px;}
.ws11c{word-spacing:-2.430000px;}
.wsa1{word-spacing:-2.310000px;}
.ws118{word-spacing:-2.268000px;}
.wsbb{word-spacing:-2.244000px;}
.ws61{word-spacing:-2.178000px;}
.wsdb{word-spacing:-2.160000px;}
.ws40{word-spacing:-2.112000px;}
.wsb{word-spacing:-2.040000px;}
.wsbe{word-spacing:-1.980000px;}
.wsee{word-spacing:-1.944000px;}
.ws6d{word-spacing:-1.914000px;}
.ws103{word-spacing:-1.890000px;}
.ws5f{word-spacing:-1.848000px;}
.ws3f{word-spacing:-1.782000px;}
.ws4f{word-spacing:-1.716000px;}
.ws2a{word-spacing:-1.650000px;}
.ws17{word-spacing:-1.620000px;}
.wsc9{word-spacing:-1.584000px;}
.ws106{word-spacing:-1.566000px;}
.ws74{word-spacing:-1.518000px;}
.wsea{word-spacing:-1.512000px;}
.wse0{word-spacing:-1.458000px;}
.ws9e{word-spacing:-1.452000px;}
.wsb7{word-spacing:-1.404000px;}
.ws41{word-spacing:-1.386000px;}
.wsb6{word-spacing:-1.350000px;}
.ws5c{word-spacing:-1.320000px;}
.wsd1{word-spacing:-1.296000px;}
.wse{word-spacing:-1.254000px;}
.wsa8{word-spacing:-1.188000px;}
.ws6e{word-spacing:-1.122000px;}
.wsdf{word-spacing:-1.080000px;}
.ws2b{word-spacing:-1.056000px;}
.ws124{word-spacing:-1.026000px;}
.wsc2{word-spacing:-0.990000px;}
.ws8f{word-spacing:-0.972000px;}
.wsdc{word-spacing:-0.918000px;}
.wsb3{word-spacing:-0.864000px;}
.ws2f{word-spacing:-0.858000px;}
.wsd0{word-spacing:-0.810000px;}
.ws4b{word-spacing:-0.792000px;}
.ws10d{word-spacing:-0.756000px;}
.ws51{word-spacing:-0.726000px;}
.ws122{word-spacing:-0.702000px;}
.ws43{word-spacing:-0.660000px;}
.wsec{word-spacing:-0.540000px;}
.ws85{word-spacing:-0.528000px;}
.ws18{word-spacing:-0.486000px;}
.ws42{word-spacing:-0.462000px;}
.ws1e{word-spacing:-0.432000px;}
.ws47{word-spacing:-0.396000px;}
.ws12{word-spacing:-0.378000px;}
.wsc4{word-spacing:-0.330000px;}
.ws11e{word-spacing:-0.324000px;}
.wse1{word-spacing:-0.270000px;}
.ws58{word-spacing:-0.264000px;}
.wsf{word-spacing:-0.216000px;}
.ws4d{word-spacing:-0.198000px;}
.ws13{word-spacing:-0.162000px;}
.ws83{word-spacing:-0.132000px;}
.ws8{word-spacing:-0.111318px;}
.wsd7{word-spacing:-0.108000px;}
.ws38{word-spacing:-0.066000px;}
.ws1d{word-spacing:-0.054000px;}
.ws9{word-spacing:0.000000px;}
.wscf{word-spacing:0.054000px;}
.wsbf{word-spacing:0.066000px;}
.wsd6{word-spacing:0.108000px;}
.wsae{word-spacing:0.132000px;}
.wse9{word-spacing:0.162000px;}
.ws123{word-spacing:0.180000px;}
.ws4a{word-spacing:0.198000px;}
.wsc{word-spacing:0.204000px;}
.wsb0{word-spacing:0.264000px;}
.wsce{word-spacing:0.270000px;}
.wsda{word-spacing:0.324000px;}
.wsc7{word-spacing:0.330000px;}
.wseb{word-spacing:0.378000px;}
.ws96{word-spacing:0.396000px;}
.wsa{word-spacing:0.408000px;}
.ws121{word-spacing:0.432000px;}
.ws6c{word-spacing:0.462000px;}
.ws19{word-spacing:0.486000px;}
.ws86{word-spacing:0.528000px;}
.ws2e{word-spacing:0.594000px;}
.ws11d{word-spacing:0.648000px;}
.ws76{word-spacing:0.660000px;}
.ws10{word-spacing:0.691200px;}
.wsb4{word-spacing:0.702000px;}
.wsd{word-spacing:0.714000px;}
.ws88{word-spacing:0.726000px;}
.ws27{word-spacing:0.792000px;}
.ws8c{word-spacing:0.810000px;}
.ws31{word-spacing:0.858000px;}
.wsf3{word-spacing:0.864000px;}
.wsfb{word-spacing:0.918000px;}
.ws5a{word-spacing:0.924000px;}
.ws81{word-spacing:0.990000px;}
.wsd5{word-spacing:1.026000px;}
.wsa9{word-spacing:1.056000px;}
.ws8e{word-spacing:1.080000px;}
.wsc3{word-spacing:1.122000px;}
.ws5e{word-spacing:1.188000px;}
.ws60{word-spacing:1.254000px;}
.ws9b{word-spacing:1.320000px;}
.ws7b{word-spacing:1.386000px;}
.ws119{word-spacing:1.404000px;}
.ws68{word-spacing:1.452000px;}
.wsed{word-spacing:1.512000px;}
.ws6f{word-spacing:1.518000px;}
.ws8d{word-spacing:1.566000px;}
.ws24{word-spacing:1.650000px;}
.ws10e{word-spacing:1.674000px;}
.ws23{word-spacing:1.716000px;}
.ws117{word-spacing:1.728000px;}
.ws94{word-spacing:1.782000px;}
.ws55{word-spacing:1.848000px;}
.ws11{word-spacing:1.890000px;}
.ws56{word-spacing:1.914000px;}
.ws54{word-spacing:1.980000px;}
.wse6{word-spacing:1.998000px;}
.ws25{word-spacing:2.046000px;}
.wsfc{word-spacing:2.052000px;}
.ws7e{word-spacing:2.112000px;}
.ws48{word-spacing:2.178000px;}
.ws34{word-spacing:2.244000px;}
.ws3c{word-spacing:2.310000px;}
.wsd8{word-spacing:2.322000px;}
.ws73{word-spacing:2.376000px;}
.ws53{word-spacing:2.442000px;}
.ws37{word-spacing:2.508000px;}
.wse8{word-spacing:2.538000px;}
.wsa2{word-spacing:2.640000px;}
.wse3{word-spacing:2.646000px;}
.ws2c{word-spacing:2.706000px;}
.wsbd{word-spacing:2.772000px;}
.ws1c{word-spacing:2.808000px;}
.wsa4{word-spacing:2.838000px;}
.ws3b{word-spacing:2.904000px;}
.ws10f{word-spacing:2.916000px;}
.ws15{word-spacing:2.970000px;}
.ws33{word-spacing:3.036000px;}
.ws4c{word-spacing:3.168000px;}
.ws115{word-spacing:3.186000px;}
.ws6b{word-spacing:3.234000px;}
.ws105{word-spacing:3.240000px;}
.ws29{word-spacing:3.300000px;}
.wsa7{word-spacing:3.366000px;}
.wsd3{word-spacing:3.402000px;}
.ws32{word-spacing:3.432000px;}
.ws66{word-spacing:3.498000px;}
.ws7c{word-spacing:3.564000px;}
.ws112{word-spacing:3.672000px;}
.ws36{word-spacing:3.696000px;}
.wsd9{word-spacing:3.726000px;}
.ws22{word-spacing:3.762000px;}
.ws11f{word-spacing:3.780000px;}
.ws95{word-spacing:3.828000px;}
.wse5{word-spacing:3.834000px;}
.ws116{word-spacing:3.888000px;}
.ws71{word-spacing:3.894000px;}
.wsb9{word-spacing:3.960000px;}
.ws14{word-spacing:3.996000px;}
.ws9c{word-spacing:4.026000px;}
.ws1b{word-spacing:4.050000px;}
.ws67{word-spacing:4.092000px;}
.wsb2{word-spacing:4.158000px;}
.ws79{word-spacing:4.224000px;}
.wsf9{word-spacing:4.266000px;}
.wsab{word-spacing:4.290000px;}
.wsca{word-spacing:4.356000px;}
.wsc8{word-spacing:4.422000px;}
.wsa6{word-spacing:4.488000px;}
.ws59{word-spacing:4.554000px;}
.wsf0{word-spacing:4.590000px;}
.ws39{word-spacing:4.620000px;}
.ws84{word-spacing:4.686000px;}
.ws80{word-spacing:4.752000px;}
.wsf8{word-spacing:4.806000px;}
.ws62{word-spacing:4.818000px;}
.ws82{word-spacing:4.884000px;}
.wsd2{word-spacing:4.914000px;}
.ws77{word-spacing:5.016000px;}
.wsb8{word-spacing:5.082000px;}
.ws20{word-spacing:5.130000px;}
.wsd4{word-spacing:5.184000px;}
.wsaf{word-spacing:5.214000px;}
.ws4e{word-spacing:5.280000px;}
.wsc5{word-spacing:5.346000px;}
.ws109{word-spacing:5.400000px;}
.wsa0{word-spacing:5.412000px;}
.ws69{word-spacing:5.478000px;}
.wsfa{word-spacing:5.508000px;}
.wsba{word-spacing:5.544000px;}
.wsbc{word-spacing:5.610000px;}
.wsfd{word-spacing:5.670000px;}
.ws9d{word-spacing:5.676000px;}
.wsf6{word-spacing:5.724000px;}
.ws97{word-spacing:5.742000px;}
.ws21{word-spacing:5.808000px;}
.ws26{word-spacing:5.874000px;}
.ws108{word-spacing:5.886000px;}
.ws64{word-spacing:5.940000px;}
.ws9f{word-spacing:6.006000px;}
.wsff{word-spacing:6.048000px;}
.ws44{word-spacing:6.072000px;}
.ws11a{word-spacing:6.102000px;}
.wscb{word-spacing:6.204000px;}
.ws1a{word-spacing:6.210000px;}
.ws78{word-spacing:6.270000px;}
.ws125{word-spacing:6.318000px;}
.ws100{word-spacing:6.372000px;}
.wsc0{word-spacing:6.468000px;}
.wsf5{word-spacing:6.480000px;}
.ws89{word-spacing:6.534000px;}
.wsf7{word-spacing:6.588000px;}
.wsac{word-spacing:6.666000px;}
.ws110{word-spacing:6.804000px;}
.ws16{word-spacing:6.966000px;}
.wsc1{word-spacing:6.996000px;}
.ws35{word-spacing:7.128000px;}
.ws107{word-spacing:7.182000px;}
.ws3a{word-spacing:7.194000px;}
.ws49{word-spacing:7.260000px;}
.ws57{word-spacing:7.326000px;}
.ws104{word-spacing:7.560000px;}
.wsa5{word-spacing:7.590000px;}
.ws120{word-spacing:7.614000px;}
.ws2d{word-spacing:7.656000px;}
.ws111{word-spacing:7.668000px;}
.ws10a{word-spacing:7.830000px;}
.ws46{word-spacing:7.854000px;}
.ws65{word-spacing:8.052000px;}
.wsf4{word-spacing:8.100000px;}
.ws98{word-spacing:8.118000px;}
.wsb1{word-spacing:8.184000px;}
.wsf1{word-spacing:8.208000px;}
.wsdd{word-spacing:8.370000px;}
.wsb5{word-spacing:8.448000px;}
.ws9a{word-spacing:8.646000px;}
.ws52{word-spacing:8.778000px;}
.ws5d{word-spacing:8.976000px;}
.ws5b{word-spacing:9.108000px;}
.wsde{word-spacing:9.180000px;}
.ws10c{word-spacing:9.774000px;}
.ws101{word-spacing:9.990000px;}
.wsad{word-spacing:10.164000px;}
.wsef{word-spacing:10.206000px;}
.ws87{word-spacing:10.230000px;}
.wse7{word-spacing:10.260000px;}
.ws45{word-spacing:10.626000px;}
.ws7a{word-spacing:10.956000px;}
.ws3e{word-spacing:11.286000px;}
.ws10b{word-spacing:13.662000px;}
.ws3d{word-spacing:14.322000px;}
.wsf2{word-spacing:16.902000px;}
.ws102{word-spacing:21.114000px;}
.wse4{word-spacing:21.924000px;}
._6{margin-left:-11.040000px;}
._8{margin-left:-9.240000px;}
._7{margin-left:-7.977600px;}
._5{margin-left:-6.864000px;}
._4{margin-left:-4.914000px;}
._3{margin-left:-2.920800px;}
._0{margin-left:-1.734000px;}
._1{width:1.346400px;}
._c{width:2.602200px;}
._a{width:3.828000px;}
._9{width:6.930000px;}
._2{width:36.369600px;}
._b{width:44.974200px;}
.fc3{color:rgb(67,33,78);}
.fc1{color:rgb(59,28,68);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:22.096800px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.fsa{font-size:111.318000px;}
.y0{bottom:0.000000px;}
.y39{bottom:1.204950px;}
.y3a{bottom:45.774196px;}
.y1{bottom:68.124750px;}
.y3c{bottom:71.212050px;}
.y3d{bottom:75.040050px;}
.y1a0{bottom:112.790850px;}
.y6f{bottom:112.862850px;}
.y170{bottom:112.892700px;}
.y120{bottom:112.943850px;}
.y9b{bottom:112.964100px;}
.yb2{bottom:112.979700px;}
.ycb{bottom:112.994850px;}
.y128{bottom:113.056200px;}
.y12e{bottom:113.069700px;}
.y144{bottom:113.078850px;}
.yfd{bottom:113.086350px;}
.yb{bottom:117.205050px;}
.ya{bottom:131.601450px;}
.y19f{bottom:133.796850px;}
.y6e{bottom:133.867350px;}
.y16f{bottom:133.898700px;}
.y11f{bottom:133.948350px;}
.y9a{bottom:133.968600px;}
.yb1{bottom:133.984200px;}
.yca{bottom:133.999350px;}
.y127{bottom:134.060700px;}
.y12d{bottom:134.074200px;}
.y29{bottom:138.176550px;}
.y143{bottom:139.529400px;}
.y9{bottom:145.997850px;}
.y19e{bottom:154.802850px;}
.y6d{bottom:154.871850px;}
.y16e{bottom:154.904700px;}
.y11e{bottom:154.952850px;}
.y99{bottom:154.973100px;}
.yb0{bottom:154.988700px;}
.yc9{bottom:155.003850px;}
.y126{bottom:155.065200px;}
.yfc{bottom:155.072850px;}
.y12c{bottom:155.078700px;}
.y1a9{bottom:158.053350px;}
.y28{bottom:159.181050px;}
.y8{bottom:160.397850px;}
.y19d{bottom:175.808850px;}
.y6c{bottom:175.876350px;}
.y16d{bottom:175.910700px;}
.y11d{bottom:175.957350px;}
.y98{bottom:175.977600px;}
.yaf{bottom:175.993200px;}
.yc8{bottom:176.008350px;}
.y1a8{bottom:176.048850px;}
.y125{bottom:176.069700px;}
.y142{bottom:176.078850px;}
.y27{bottom:180.185550px;}
.y12b{bottom:190.440900px;}
.y19c{bottom:196.814850px;}
.y6b{bottom:196.880850px;}
.y16c{bottom:196.916700px;}
.y11c{bottom:196.961850px;}
.y97{bottom:196.982100px;}
.yae{bottom:196.997700px;}
.yc7{bottom:197.012850px;}
.y1a7{bottom:197.054850px;}
.yfb{bottom:197.065350px;}
.y124{bottom:197.074200px;}
.y26{bottom:201.190050px;}
.y141{bottom:202.529400px;}
.y35{bottom:203.447400px;}
.y19b{bottom:217.820850px;}
.y6a{bottom:217.885350px;}
.y16b{bottom:217.922700px;}
.y11b{bottom:217.966350px;}
.y96{bottom:217.986600px;}
.yad{bottom:218.002200px;}
.yc6{bottom:218.017350px;}
.y1a6{bottom:218.060850px;}
.yfa{bottom:218.069850px;}
.y123{bottom:218.078700px;}
.y34{bottom:221.442900px;}
.y25{bottom:222.194550px;}
.y19a{bottom:238.826850px;}
.y69{bottom:238.889850px;}
.y16a{bottom:238.928700px;}
.y11a{bottom:238.970850px;}
.y95{bottom:238.991100px;}
.yac{bottom:239.006700px;}
.yc5{bottom:239.021850px;}
.y1a5{bottom:239.066850px;}
.y12a{bottom:239.074200px;}
.yf9{bottom:239.074350px;}
.y140{bottom:239.078850px;}
.y33{bottom:239.438400px;}
.y24{bottom:243.199050px;}
.y32{bottom:257.433900px;}
.y199{bottom:259.832850px;}
.y68{bottom:259.894350px;}
.yf8{bottom:259.923900px;}
.y169{bottom:259.934700px;}
.y119{bottom:259.975350px;}
.y94{bottom:259.995600px;}
.yab{bottom:260.011200px;}
.yc4{bottom:260.026350px;}
.y1a4{bottom:260.072850px;}
.y129{bottom:260.078700px;}
.y122{bottom:260.279700px;}
.y23{bottom:264.203550px;}
.y13f{bottom:265.937100px;}
.y31{bottom:275.429400px;}
.y121{bottom:280.084200px;}
.y198{bottom:280.838850px;}
.y67{bottom:280.898850px;}
.yf7{bottom:280.928400px;}
.y168{bottom:280.940700px;}
.y118{bottom:280.979850px;}
.y93{bottom:281.000100px;}
.yaa{bottom:281.015700px;}
.yc3{bottom:281.030850px;}
.y1a3{bottom:281.078850px;}
.y22{bottom:285.208050px;}
.y30{bottom:293.424900px;}
.y13e{bottom:295.441050px;}
.y197{bottom:301.844850px;}
.y66{bottom:301.903350px;}
.yf6{bottom:301.932900px;}
.y167{bottom:301.946700px;}
.y117{bottom:301.984350px;}
.y92{bottom:302.004600px;}
.ya9{bottom:302.020200px;}
.yc2{bottom:302.035350px;}
.y131{bottom:303.645300px;}
.y21{bottom:306.212550px;}
.y2f{bottom:311.420400px;}
.y1a2{bottom:315.513600px;}
.y196{bottom:322.850850px;}
.y65{bottom:322.907850px;}
.yf5{bottom:322.937400px;}
.y166{bottom:322.952700px;}
.y116{bottom:322.988850px;}
.y91{bottom:323.009100px;}
.ya8{bottom:323.024700px;}
.yc1{bottom:323.039850px;}
.y130{bottom:323.449800px;}
.y2e{bottom:329.415900px;}
.y20{bottom:340.448400px;}
.y12f{bottom:343.254300px;}
.y195{bottom:343.856850px;}
.y64{bottom:343.912350px;}
.yf4{bottom:343.941900px;}
.y165{bottom:343.958700px;}
.y115{bottom:343.993350px;}
.y90{bottom:344.013600px;}
.ya7{bottom:344.029200px;}
.y13d{bottom:344.033850px;}
.yc0{bottom:344.044350px;}
.y1a1{bottom:347.811000px;}
.y2d{bottom:364.421400px;}
.y194{bottom:364.862850px;}
.y63{bottom:364.916850px;}
.yf3{bottom:364.946400px;}
.y164{bottom:364.964700px;}
.y114{bottom:364.997850px;}
.ya6{bottom:365.033700px;}
.y13c{bottom:365.038350px;}
.ybf{bottom:365.048850px;}
.y8f{bottom:379.373100px;}
.y2c{bottom:382.421400px;}
.y193{bottom:385.868850px;}
.y62{bottom:385.921350px;}
.yf2{bottom:385.950900px;}
.y163{bottom:385.970700px;}
.y113{bottom:386.002350px;}
.ya5{bottom:386.038200px;}
.y13b{bottom:386.042850px;}
.ybe{bottom:386.053350px;}
.y2b{bottom:400.421400px;}
.y192{bottom:406.874850px;}
.y61{bottom:406.925850px;}
.yf1{bottom:406.955400px;}
.y162{bottom:406.976700px;}
.y112{bottom:407.006850px;}
.ya4{bottom:407.042700px;}
.y13a{bottom:407.047350px;}
.ybd{bottom:407.057850px;}
.y2a{bottom:418.421400px;}
.y1f{bottom:425.227950px;}
.y191{bottom:427.880850px;}
.y60{bottom:427.930350px;}
.yf0{bottom:427.959900px;}
.y161{bottom:427.982700px;}
.y111{bottom:428.011350px;}
.y8e{bottom:428.015100px;}
.ya3{bottom:428.047200px;}
.y139{bottom:428.051850px;}
.ybc{bottom:428.062350px;}
.y190{bottom:448.886850px;}
.y5f{bottom:448.934850px;}
.yef{bottom:448.964400px;}
.y160{bottom:448.988700px;}
.y110{bottom:449.015850px;}
.y8d{bottom:449.019600px;}
.ya2{bottom:449.051700px;}
.y138{bottom:449.056350px;}
.ybb{bottom:449.066850px;}
.y1e{bottom:466.215750px;}
.y18f{bottom:469.892850px;}
.y5e{bottom:469.939350px;}
.yee{bottom:469.968900px;}
.y15f{bottom:469.994700px;}
.y10f{bottom:470.020350px;}
.y8c{bottom:470.024100px;}
.ya1{bottom:470.056200px;}
.y137{bottom:470.060850px;}
.yba{bottom:470.071350px;}
.y1d{bottom:486.020250px;}
.y18e{bottom:490.898850px;}
.y5d{bottom:490.943850px;}
.yed{bottom:490.973400px;}
.y15e{bottom:491.000700px;}
.y10e{bottom:491.024850px;}
.y8b{bottom:491.028600px;}
.ya0{bottom:491.060700px;}
.y136{bottom:491.065350px;}
.yb9{bottom:491.075850px;}
.y1c{bottom:505.824750px;}
.y18d{bottom:511.904850px;}
.y5c{bottom:511.948350px;}
.yec{bottom:511.977900px;}
.y15d{bottom:512.006700px;}
.y10d{bottom:512.029350px;}
.y8a{bottom:512.033100px;}
.y9f{bottom:512.065200px;}
.y135{bottom:512.069850px;}
.yb8{bottom:525.511350px;}
.y1b{bottom:525.629250px;}
.y18c{bottom:532.910850px;}
.y5b{bottom:532.952850px;}
.yeb{bottom:532.982400px;}
.y15c{bottom:533.012700px;}
.y10c{bottom:533.033850px;}
.y89{bottom:533.037600px;}
.y9e{bottom:533.069700px;}
.y134{bottom:533.074350px;}
.y1a{bottom:545.433750px;}
.y18b{bottom:553.916850px;}
.y5a{bottom:553.957350px;}
.yea{bottom:553.986900px;}
.y15b{bottom:554.018700px;}
.y10b{bottom:554.038350px;}
.y88{bottom:554.042100px;}
.y9d{bottom:554.074200px;}
.y133{bottom:554.078850px;}
.yb7{bottom:557.801850px;}
.y19{bottom:565.238250px;}
.y18a{bottom:574.922850px;}
.y59{bottom:574.961850px;}
.y15a{bottom:575.024700px;}
.y10a{bottom:575.042850px;}
.y87{bottom:575.046600px;}
.y9c{bottom:575.078700px;}
.y18{bottom:585.042750px;}
.ye9{bottom:589.346400px;}
.y132{bottom:589.441050px;}
.y189{bottom:595.928850px;}
.y58{bottom:595.966350px;}
.y159{bottom:596.030700px;}
.y109{bottom:596.047350px;}
.y86{bottom:596.051100px;}
.y17{bottom:604.847250px;}
.y188{bottom:616.934850px;}
.y57{bottom:616.970850px;}
.y158{bottom:617.036700px;}
.y108{bottom:617.051850px;}
.y85{bottom:617.055600px;}
.yb6{bottom:617.069850px;}
.y16{bottom:624.651750px;}
.y187{bottom:637.940850px;}
.y56{bottom:637.975350px;}
.ye8{bottom:637.988400px;}
.y157{bottom:638.042700px;}
.y107{bottom:638.056350px;}
.y84{bottom:638.060100px;}
.yb5{bottom:638.074350px;}
.yb3{bottom:641.053800px;}
.y15{bottom:644.456250px;}
.y186{bottom:658.946850px;}
.y55{bottom:658.979850px;}
.ye7{bottom:658.992900px;}
.y156{bottom:659.048700px;}
.y106{bottom:659.060850px;}
.y83{bottom:659.064600px;}
.yb4{bottom:659.078850px;}
.y14{bottom:664.260750px;}
.y185{bottom:679.952850px;}
.y54{bottom:679.984350px;}
.ye6{bottom:679.997400px;}
.y155{bottom:680.054700px;}
.y105{bottom:680.065350px;}
.y82{bottom:680.069100px;}
.y13{bottom:684.065250px;}
.y184{bottom:700.958850px;}
.y53{bottom:700.988850px;}
.ye5{bottom:701.001900px;}
.y154{bottom:701.060700px;}
.y104{bottom:701.069850px;}
.y81{bottom:701.073600px;}
.y12{bottom:703.869750px;}
.yd1{bottom:706.924650px;}
.y183{bottom:721.964850px;}
.y52{bottom:721.993350px;}
.ye4{bottom:722.006400px;}
.y153{bottom:722.066700px;}
.y103{bottom:722.074350px;}
.y80{bottom:722.078100px;}
.y11{bottom:723.674250px;}
.yd0{bottom:726.729150px;}
.y182{bottom:742.970850px;}
.y51{bottom:742.997850px;}
.ye3{bottom:743.010900px;}
.y152{bottom:743.072700px;}
.y102{bottom:743.078850px;}
.y10{bottom:743.478750px;}
.ycf{bottom:746.533650px;}
.y7f{bottom:756.513600px;}
.yf{bottom:763.283250px;}
.y181{bottom:763.976850px;}
.y50{bottom:764.002350px;}
.ye2{bottom:764.015400px;}
.y151{bottom:764.078700px;}
.yce{bottom:766.338150px;}
.y101{bottom:778.441050px;}
.ye{bottom:783.087750px;}
.y180{bottom:784.982850px;}
.y4f{bottom:785.006850px;}
.ye1{bottom:785.019900px;}
.ycd{bottom:786.142650px;}
.y7e{bottom:788.811000px;}
.y150{bottom:799.440900px;}
.ycc{bottom:805.947150px;}
.y17f{bottom:805.988850px;}
.y4e{bottom:806.011350px;}
.ye0{bottom:806.024400px;}
.yd{bottom:814.185300px;}
.y17e{bottom:826.994850px;}
.y4d{bottom:827.015850px;}
.ydf{bottom:827.028900px;}
.y100{bottom:827.069850px;}
.y17d{bottom:848.000850px;}
.y7d{bottom:848.020200px;}
.y4c{bottom:848.020350px;}
.yde{bottom:848.033400px;}
.y14f{bottom:848.072700px;}
.yff{bottom:848.074350px;}
.y17c{bottom:869.006850px;}
.y7c{bottom:869.024700px;}
.y4b{bottom:869.024850px;}
.ydd{bottom:869.037900px;}
.y14e{bottom:869.078700px;}
.yfe{bottom:869.078850px;}
.y17b{bottom:890.012850px;}
.y7b{bottom:890.029200px;}
.y4a{bottom:890.029350px;}
.ydc{bottom:890.042400px;}
.y7{bottom:893.466750px;}
.y14d{bottom:895.529250px;}
.y17a{bottom:911.018850px;}
.y7a{bottom:911.033700px;}
.y49{bottom:911.033850px;}
.ydb{bottom:911.046900px;}
.y6{bottom:911.466750px;}
.y179{bottom:932.024850px;}
.y79{bottom:932.038200px;}
.y48{bottom:932.038350px;}
.yda{bottom:932.051400px;}
.y14c{bottom:932.078850px;}
.y5{bottom:946.474800px;}
.y178{bottom:953.030850px;}
.y78{bottom:953.042700px;}
.y47{bottom:953.042850px;}
.yd9{bottom:953.055900px;}
.y14b{bottom:958.529250px;}
.y177{bottom:974.036850px;}
.y77{bottom:974.047200px;}
.y46{bottom:974.047350px;}
.yd8{bottom:974.060400px;}
.y4{bottom:983.288550px;}
.y176{bottom:995.042850px;}
.y76{bottom:995.051700px;}
.y45{bottom:995.051850px;}
.yd7{bottom:995.064900px;}
.y14a{bottom:995.066850px;}
.y175{bottom:1016.048850px;}
.y75{bottom:1016.056200px;}
.y44{bottom:1016.056350px;}
.yd6{bottom:1016.069400px;}
.y149{bottom:1016.072850px;}
.y3{bottom:1016.285550px;}
.y174{bottom:1037.054850px;}
.y74{bottom:1037.060700px;}
.y43{bottom:1037.060850px;}
.yd5{bottom:1037.073900px;}
.y148{bottom:1037.078850px;}
.y2{bottom:1049.282550px;}
.y173{bottom:1058.060850px;}
.y73{bottom:1058.065200px;}
.y42{bottom:1058.065350px;}
.yd4{bottom:1058.078400px;}
.y147{bottom:1063.529250px;}
.y172{bottom:1079.066850px;}
.y72{bottom:1079.069700px;}
.y41{bottom:1079.069850px;}
.yd3{bottom:1079.082900px;}
.y171{bottom:1100.072850px;}
.y71{bottom:1100.074200px;}
.y40{bottom:1100.074350px;}
.y146{bottom:1100.078850px;}
.yc{bottom:1109.815500px;}
.yd2{bottom:1114.821900px;}
.y70{bottom:1121.078700px;}
.y3f{bottom:1121.078850px;}
.y145{bottom:1125.451800px;}
.y38{bottom:1135.732500px;}
.y3b{bottom:1152.015600px;}
.y37{bottom:1159.189500px;}
.y36{bottom:1178.689500px;}
.y3e{bottom:1178.692050px;}
.h10{height:16.788389px;}
.h7{height:34.446094px;}
.h6{height:34.657031px;}
.h12{height:38.273438px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.h8{height:41.053711px;}
.h15{height:42.900000px;}
.he{height:43.057617px;}
.hd{height:43.321289px;}
.h9{height:45.615234px;}
.ha{height:46.116000px;}
.h13{height:50.176758px;}
.hf{height:50.566500px;}
.h4{height:51.231050px;}
.hb{height:54.738281px;}
.hc{height:56.364000px;}
.h14{height:56.983800px;}
.h3{height:77.545898px;}
.h11{height:80.825130px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:185.884500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.xb{left:107.071650px;}
.xd{left:108.285450px;}
.xa{left:111.091350px;}
.x5{left:119.878950px;}
.x6{left:122.032500px;}
.x7{left:124.102950px;}
.x4{left:300.189000px;}
.xc{left:317.200500px;}
.x3{left:396.050700px;}
.xe{left:460.606050px;}
.x9{left:651.939450px;}
.x8{left:684.399450px;}
.x1{left:807.087300px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.ls12{letter-spacing:-1.728000pt;}
.ls8{letter-spacing:-1.173333pt;}
.lsc{letter-spacing:-1.114667pt;}
.lsd{letter-spacing:-0.880000pt;}
.ls14{letter-spacing:-0.768000pt;}
.lse{letter-spacing:-0.624000pt;}
.ls6{letter-spacing:-0.614400pt;}
.ls9{letter-spacing:-0.586667pt;}
.ls15{letter-spacing:-0.576000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls16{letter-spacing:-0.160000pt;}
.ls13{letter-spacing:-0.144000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.096000pt;}
.ls11{letter-spacing:0.672000pt;}
.lsa{letter-spacing:0.938667pt;}
.lsf{letter-spacing:0.960000pt;}
.lsb{letter-spacing:1.173333pt;}
.ls5{letter-spacing:1.178667pt;}
.ls3{letter-spacing:1.450667pt;}
.ls4{letter-spacing:1.632000pt;}
.ls2{letter-spacing:1.813333pt;}
.ls0{letter-spacing:38.383968pt;}
.ws114{word-spacing:-48.000000pt;}
.ws92{word-spacing:-19.536000pt;}
.ws5{word-spacing:-15.936000pt;}
.wscc{word-spacing:-14.608000pt;}
.ws90{word-spacing:-14.549333pt;}
.ws4{word-spacing:-13.280000pt;}
.wse2{word-spacing:-12.096000pt;}
.wscd{word-spacing:-12.000000pt;}
.ws93{word-spacing:-11.389488pt;}
.ws113{word-spacing:-11.232000pt;}
.ws6{word-spacing:-10.992000pt;}
.ws7{word-spacing:-10.800000pt;}
.wsfe{word-spacing:-10.272000pt;}
.ws2{word-spacing:-9.685333pt;}
.ws28{word-spacing:-9.600000pt;}
.ws3{word-spacing:-8.793600pt;}
.ws91{word-spacing:-8.550667pt;}
.ws1{word-spacing:-8.549333pt;}
.ws0{word-spacing:-8.482261pt;}
.ws7d{word-spacing:-3.168000pt;}
.wsc6{word-spacing:-2.992000pt;}
.ws11b{word-spacing:-2.976000pt;}
.ws30{word-spacing:-2.874667pt;}
.ws6a{word-spacing:-2.816000pt;}
.ws50{word-spacing:-2.757333pt;}
.ws7f{word-spacing:-2.640000pt;}
.ws75{word-spacing:-2.581333pt;}
.wsa3{word-spacing:-2.522667pt;}
.ws99{word-spacing:-2.464000pt;}
.ws8a{word-spacing:-2.405333pt;}
.ws70{word-spacing:-2.346667pt;}
.ws72{word-spacing:-2.288000pt;}
.ws1f{word-spacing:-2.256000pt;}
.ws63{word-spacing:-2.229333pt;}
.ws8b{word-spacing:-2.208000pt;}
.wsaa{word-spacing:-2.170667pt;}
.ws11c{word-spacing:-2.160000pt;}
.wsa1{word-spacing:-2.053333pt;}
.ws118{word-spacing:-2.016000pt;}
.wsbb{word-spacing:-1.994667pt;}
.ws61{word-spacing:-1.936000pt;}
.wsdb{word-spacing:-1.920000pt;}
.ws40{word-spacing:-1.877333pt;}
.wsb{word-spacing:-1.813333pt;}
.wsbe{word-spacing:-1.760000pt;}
.wsee{word-spacing:-1.728000pt;}
.ws6d{word-spacing:-1.701333pt;}
.ws103{word-spacing:-1.680000pt;}
.ws5f{word-spacing:-1.642667pt;}
.ws3f{word-spacing:-1.584000pt;}
.ws4f{word-spacing:-1.525333pt;}
.ws2a{word-spacing:-1.466667pt;}
.ws17{word-spacing:-1.440000pt;}
.wsc9{word-spacing:-1.408000pt;}
.ws106{word-spacing:-1.392000pt;}
.ws74{word-spacing:-1.349333pt;}
.wsea{word-spacing:-1.344000pt;}
.wse0{word-spacing:-1.296000pt;}
.ws9e{word-spacing:-1.290667pt;}
.wsb7{word-spacing:-1.248000pt;}
.ws41{word-spacing:-1.232000pt;}
.wsb6{word-spacing:-1.200000pt;}
.ws5c{word-spacing:-1.173333pt;}
.wsd1{word-spacing:-1.152000pt;}
.wse{word-spacing:-1.114667pt;}
.wsa8{word-spacing:-1.056000pt;}
.ws6e{word-spacing:-0.997333pt;}
.wsdf{word-spacing:-0.960000pt;}
.ws2b{word-spacing:-0.938667pt;}
.ws124{word-spacing:-0.912000pt;}
.wsc2{word-spacing:-0.880000pt;}
.ws8f{word-spacing:-0.864000pt;}
.wsdc{word-spacing:-0.816000pt;}
.wsb3{word-spacing:-0.768000pt;}
.ws2f{word-spacing:-0.762667pt;}
.wsd0{word-spacing:-0.720000pt;}
.ws4b{word-spacing:-0.704000pt;}
.ws10d{word-spacing:-0.672000pt;}
.ws51{word-spacing:-0.645333pt;}
.ws122{word-spacing:-0.624000pt;}
.ws43{word-spacing:-0.586667pt;}
.wsec{word-spacing:-0.480000pt;}
.ws85{word-spacing:-0.469333pt;}
.ws18{word-spacing:-0.432000pt;}
.ws42{word-spacing:-0.410667pt;}
.ws1e{word-spacing:-0.384000pt;}
.ws47{word-spacing:-0.352000pt;}
.ws12{word-spacing:-0.336000pt;}
.wsc4{word-spacing:-0.293333pt;}
.ws11e{word-spacing:-0.288000pt;}
.wse1{word-spacing:-0.240000pt;}
.ws58{word-spacing:-0.234667pt;}
.wsf{word-spacing:-0.192000pt;}
.ws4d{word-spacing:-0.176000pt;}
.ws13{word-spacing:-0.144000pt;}
.ws83{word-spacing:-0.117333pt;}
.ws8{word-spacing:-0.098949pt;}
.wsd7{word-spacing:-0.096000pt;}
.ws38{word-spacing:-0.058667pt;}
.ws1d{word-spacing:-0.048000pt;}
.ws9{word-spacing:0.000000pt;}
.wscf{word-spacing:0.048000pt;}
.wsbf{word-spacing:0.058667pt;}
.wsd6{word-spacing:0.096000pt;}
.wsae{word-spacing:0.117333pt;}
.wse9{word-spacing:0.144000pt;}
.ws123{word-spacing:0.160000pt;}
.ws4a{word-spacing:0.176000pt;}
.wsc{word-spacing:0.181333pt;}
.wsb0{word-spacing:0.234667pt;}
.wsce{word-spacing:0.240000pt;}
.wsda{word-spacing:0.288000pt;}
.wsc7{word-spacing:0.293333pt;}
.wseb{word-spacing:0.336000pt;}
.ws96{word-spacing:0.352000pt;}
.wsa{word-spacing:0.362667pt;}
.ws121{word-spacing:0.384000pt;}
.ws6c{word-spacing:0.410667pt;}
.ws19{word-spacing:0.432000pt;}
.ws86{word-spacing:0.469333pt;}
.ws2e{word-spacing:0.528000pt;}
.ws11d{word-spacing:0.576000pt;}
.ws76{word-spacing:0.586667pt;}
.ws10{word-spacing:0.614400pt;}
.wsb4{word-spacing:0.624000pt;}
.wsd{word-spacing:0.634667pt;}
.ws88{word-spacing:0.645333pt;}
.ws27{word-spacing:0.704000pt;}
.ws8c{word-spacing:0.720000pt;}
.ws31{word-spacing:0.762667pt;}
.wsf3{word-spacing:0.768000pt;}
.wsfb{word-spacing:0.816000pt;}
.ws5a{word-spacing:0.821333pt;}
.ws81{word-spacing:0.880000pt;}
.wsd5{word-spacing:0.912000pt;}
.wsa9{word-spacing:0.938667pt;}
.ws8e{word-spacing:0.960000pt;}
.wsc3{word-spacing:0.997333pt;}
.ws5e{word-spacing:1.056000pt;}
.ws60{word-spacing:1.114667pt;}
.ws9b{word-spacing:1.173333pt;}
.ws7b{word-spacing:1.232000pt;}
.ws119{word-spacing:1.248000pt;}
.ws68{word-spacing:1.290667pt;}
.wsed{word-spacing:1.344000pt;}
.ws6f{word-spacing:1.349333pt;}
.ws8d{word-spacing:1.392000pt;}
.ws24{word-spacing:1.466667pt;}
.ws10e{word-spacing:1.488000pt;}
.ws23{word-spacing:1.525333pt;}
.ws117{word-spacing:1.536000pt;}
.ws94{word-spacing:1.584000pt;}
.ws55{word-spacing:1.642667pt;}
.ws11{word-spacing:1.680000pt;}
.ws56{word-spacing:1.701333pt;}
.ws54{word-spacing:1.760000pt;}
.wse6{word-spacing:1.776000pt;}
.ws25{word-spacing:1.818667pt;}
.wsfc{word-spacing:1.824000pt;}
.ws7e{word-spacing:1.877333pt;}
.ws48{word-spacing:1.936000pt;}
.ws34{word-spacing:1.994667pt;}
.ws3c{word-spacing:2.053333pt;}
.wsd8{word-spacing:2.064000pt;}
.ws73{word-spacing:2.112000pt;}
.ws53{word-spacing:2.170667pt;}
.ws37{word-spacing:2.229333pt;}
.wse8{word-spacing:2.256000pt;}
.wsa2{word-spacing:2.346667pt;}
.wse3{word-spacing:2.352000pt;}
.ws2c{word-spacing:2.405333pt;}
.wsbd{word-spacing:2.464000pt;}
.ws1c{word-spacing:2.496000pt;}
.wsa4{word-spacing:2.522667pt;}
.ws3b{word-spacing:2.581333pt;}
.ws10f{word-spacing:2.592000pt;}
.ws15{word-spacing:2.640000pt;}
.ws33{word-spacing:2.698667pt;}
.ws4c{word-spacing:2.816000pt;}
.ws115{word-spacing:2.832000pt;}
.ws6b{word-spacing:2.874667pt;}
.ws105{word-spacing:2.880000pt;}
.ws29{word-spacing:2.933333pt;}
.wsa7{word-spacing:2.992000pt;}
.wsd3{word-spacing:3.024000pt;}
.ws32{word-spacing:3.050667pt;}
.ws66{word-spacing:3.109333pt;}
.ws7c{word-spacing:3.168000pt;}
.ws112{word-spacing:3.264000pt;}
.ws36{word-spacing:3.285333pt;}
.wsd9{word-spacing:3.312000pt;}
.ws22{word-spacing:3.344000pt;}
.ws11f{word-spacing:3.360000pt;}
.ws95{word-spacing:3.402667pt;}
.wse5{word-spacing:3.408000pt;}
.ws116{word-spacing:3.456000pt;}
.ws71{word-spacing:3.461333pt;}
.wsb9{word-spacing:3.520000pt;}
.ws14{word-spacing:3.552000pt;}
.ws9c{word-spacing:3.578667pt;}
.ws1b{word-spacing:3.600000pt;}
.ws67{word-spacing:3.637333pt;}
.wsb2{word-spacing:3.696000pt;}
.ws79{word-spacing:3.754667pt;}
.wsf9{word-spacing:3.792000pt;}
.wsab{word-spacing:3.813333pt;}
.wsca{word-spacing:3.872000pt;}
.wsc8{word-spacing:3.930667pt;}
.wsa6{word-spacing:3.989333pt;}
.ws59{word-spacing:4.048000pt;}
.wsf0{word-spacing:4.080000pt;}
.ws39{word-spacing:4.106667pt;}
.ws84{word-spacing:4.165333pt;}
.ws80{word-spacing:4.224000pt;}
.wsf8{word-spacing:4.272000pt;}
.ws62{word-spacing:4.282667pt;}
.ws82{word-spacing:4.341333pt;}
.wsd2{word-spacing:4.368000pt;}
.ws77{word-spacing:4.458667pt;}
.wsb8{word-spacing:4.517333pt;}
.ws20{word-spacing:4.560000pt;}
.wsd4{word-spacing:4.608000pt;}
.wsaf{word-spacing:4.634667pt;}
.ws4e{word-spacing:4.693333pt;}
.wsc5{word-spacing:4.752000pt;}
.ws109{word-spacing:4.800000pt;}
.wsa0{word-spacing:4.810667pt;}
.ws69{word-spacing:4.869333pt;}
.wsfa{word-spacing:4.896000pt;}
.wsba{word-spacing:4.928000pt;}
.wsbc{word-spacing:4.986667pt;}
.wsfd{word-spacing:5.040000pt;}
.ws9d{word-spacing:5.045333pt;}
.wsf6{word-spacing:5.088000pt;}
.ws97{word-spacing:5.104000pt;}
.ws21{word-spacing:5.162667pt;}
.ws26{word-spacing:5.221333pt;}
.ws108{word-spacing:5.232000pt;}
.ws64{word-spacing:5.280000pt;}
.ws9f{word-spacing:5.338667pt;}
.wsff{word-spacing:5.376000pt;}
.ws44{word-spacing:5.397333pt;}
.ws11a{word-spacing:5.424000pt;}
.wscb{word-spacing:5.514667pt;}
.ws1a{word-spacing:5.520000pt;}
.ws78{word-spacing:5.573333pt;}
.ws125{word-spacing:5.616000pt;}
.ws100{word-spacing:5.664000pt;}
.wsc0{word-spacing:5.749333pt;}
.wsf5{word-spacing:5.760000pt;}
.ws89{word-spacing:5.808000pt;}
.wsf7{word-spacing:5.856000pt;}
.wsac{word-spacing:5.925333pt;}
.ws110{word-spacing:6.048000pt;}
.ws16{word-spacing:6.192000pt;}
.wsc1{word-spacing:6.218667pt;}
.ws35{word-spacing:6.336000pt;}
.ws107{word-spacing:6.384000pt;}
.ws3a{word-spacing:6.394667pt;}
.ws49{word-spacing:6.453333pt;}
.ws57{word-spacing:6.512000pt;}
.ws104{word-spacing:6.720000pt;}
.wsa5{word-spacing:6.746667pt;}
.ws120{word-spacing:6.768000pt;}
.ws2d{word-spacing:6.805333pt;}
.ws111{word-spacing:6.816000pt;}
.ws10a{word-spacing:6.960000pt;}
.ws46{word-spacing:6.981333pt;}
.ws65{word-spacing:7.157333pt;}
.wsf4{word-spacing:7.200000pt;}
.ws98{word-spacing:7.216000pt;}
.wsb1{word-spacing:7.274667pt;}
.wsf1{word-spacing:7.296000pt;}
.wsdd{word-spacing:7.440000pt;}
.wsb5{word-spacing:7.509333pt;}
.ws9a{word-spacing:7.685333pt;}
.ws52{word-spacing:7.802667pt;}
.ws5d{word-spacing:7.978667pt;}
.ws5b{word-spacing:8.096000pt;}
.wsde{word-spacing:8.160000pt;}
.ws10c{word-spacing:8.688000pt;}
.ws101{word-spacing:8.880000pt;}
.wsad{word-spacing:9.034667pt;}
.wsef{word-spacing:9.072000pt;}
.ws87{word-spacing:9.093333pt;}
.wse7{word-spacing:9.120000pt;}
.ws45{word-spacing:9.445333pt;}
.ws7a{word-spacing:9.738667pt;}
.ws3e{word-spacing:10.032000pt;}
.ws10b{word-spacing:12.144000pt;}
.ws3d{word-spacing:12.730667pt;}
.wsf2{word-spacing:15.024000pt;}
.ws102{word-spacing:18.768000pt;}
.wse4{word-spacing:19.488000pt;}
._6{margin-left:-9.813333pt;}
._8{margin-left:-8.213333pt;}
._7{margin-left:-7.091200pt;}
._5{margin-left:-6.101333pt;}
._4{margin-left:-4.368000pt;}
._3{margin-left:-2.596267pt;}
._0{margin-left:-1.541333pt;}
._1{width:1.196800pt;}
._c{width:2.313067pt;}
._a{width:3.402667pt;}
._9{width:6.160000pt;}
._2{width:32.328533pt;}
._b{width:39.977067pt;}
.fs9{font-size:19.641600pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.fsa{font-size:98.949333pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:1.071067pt;}
.y3a{bottom:40.688174pt;}
.y1{bottom:60.555333pt;}
.y3c{bottom:63.299600pt;}
.y3d{bottom:66.702267pt;}
.y1a0{bottom:100.258533pt;}
.y6f{bottom:100.322533pt;}
.y170{bottom:100.349067pt;}
.y120{bottom:100.394533pt;}
.y9b{bottom:100.412533pt;}
.yb2{bottom:100.426400pt;}
.ycb{bottom:100.439867pt;}
.y128{bottom:100.494400pt;}
.y12e{bottom:100.506400pt;}
.y144{bottom:100.514533pt;}
.yfd{bottom:100.521200pt;}
.yb{bottom:104.182267pt;}
.ya{bottom:116.979067pt;}
.y19f{bottom:118.930533pt;}
.y6e{bottom:118.993200pt;}
.y16f{bottom:119.021067pt;}
.y11f{bottom:119.065200pt;}
.y9a{bottom:119.083200pt;}
.yb1{bottom:119.097067pt;}
.yca{bottom:119.110533pt;}
.y127{bottom:119.165067pt;}
.y12d{bottom:119.177067pt;}
.y29{bottom:122.823600pt;}
.y143{bottom:124.026133pt;}
.y9{bottom:129.775867pt;}
.y19e{bottom:137.602533pt;}
.y6d{bottom:137.663867pt;}
.y16e{bottom:137.693067pt;}
.y11e{bottom:137.735867pt;}
.y99{bottom:137.753867pt;}
.yb0{bottom:137.767733pt;}
.yc9{bottom:137.781200pt;}
.y126{bottom:137.835733pt;}
.yfc{bottom:137.842533pt;}
.y12c{bottom:137.847733pt;}
.y1a9{bottom:140.491867pt;}
.y28{bottom:141.494267pt;}
.y8{bottom:142.575867pt;}
.y19d{bottom:156.274533pt;}
.y6c{bottom:156.334533pt;}
.y16d{bottom:156.365067pt;}
.y11d{bottom:156.406533pt;}
.y98{bottom:156.424533pt;}
.yaf{bottom:156.438400pt;}
.yc8{bottom:156.451867pt;}
.y1a8{bottom:156.487867pt;}
.y125{bottom:156.506400pt;}
.y142{bottom:156.514533pt;}
.y27{bottom:160.164933pt;}
.y12b{bottom:169.280800pt;}
.y19c{bottom:174.946533pt;}
.y6b{bottom:175.005200pt;}
.y16c{bottom:175.037067pt;}
.y11c{bottom:175.077200pt;}
.y97{bottom:175.095200pt;}
.yae{bottom:175.109067pt;}
.yc7{bottom:175.122533pt;}
.y1a7{bottom:175.159867pt;}
.yfb{bottom:175.169200pt;}
.y124{bottom:175.177067pt;}
.y26{bottom:178.835600pt;}
.y141{bottom:180.026133pt;}
.y35{bottom:180.842133pt;}
.y19b{bottom:193.618533pt;}
.y6a{bottom:193.675867pt;}
.y16b{bottom:193.709067pt;}
.y11b{bottom:193.747867pt;}
.y96{bottom:193.765867pt;}
.yad{bottom:193.779733pt;}
.yc6{bottom:193.793200pt;}
.y1a6{bottom:193.831867pt;}
.yfa{bottom:193.839867pt;}
.y123{bottom:193.847733pt;}
.y34{bottom:196.838133pt;}
.y25{bottom:197.506267pt;}
.y19a{bottom:212.290533pt;}
.y69{bottom:212.346533pt;}
.y16a{bottom:212.381067pt;}
.y11a{bottom:212.418533pt;}
.y95{bottom:212.436533pt;}
.yac{bottom:212.450400pt;}
.yc5{bottom:212.463867pt;}
.y1a5{bottom:212.503867pt;}
.y12a{bottom:212.510400pt;}
.yf9{bottom:212.510533pt;}
.y140{bottom:212.514533pt;}
.y33{bottom:212.834133pt;}
.y24{bottom:216.176933pt;}
.y32{bottom:228.830133pt;}
.y199{bottom:230.962533pt;}
.y68{bottom:231.017200pt;}
.yf8{bottom:231.043467pt;}
.y169{bottom:231.053067pt;}
.y119{bottom:231.089200pt;}
.y94{bottom:231.107200pt;}
.yab{bottom:231.121067pt;}
.yc4{bottom:231.134533pt;}
.y1a4{bottom:231.175867pt;}
.y129{bottom:231.181067pt;}
.y122{bottom:231.359733pt;}
.y23{bottom:234.847600pt;}
.y13f{bottom:236.388533pt;}
.y31{bottom:244.826133pt;}
.y121{bottom:248.963733pt;}
.y198{bottom:249.634533pt;}
.y67{bottom:249.687867pt;}
.yf7{bottom:249.714133pt;}
.y168{bottom:249.725067pt;}
.y118{bottom:249.759867pt;}
.y93{bottom:249.777867pt;}
.yaa{bottom:249.791733pt;}
.yc3{bottom:249.805200pt;}
.y1a3{bottom:249.847867pt;}
.y22{bottom:253.518267pt;}
.y30{bottom:260.822133pt;}
.y13e{bottom:262.614267pt;}
.y197{bottom:268.306533pt;}
.y66{bottom:268.358533pt;}
.yf6{bottom:268.384800pt;}
.y167{bottom:268.397067pt;}
.y117{bottom:268.430533pt;}
.y92{bottom:268.448533pt;}
.ya9{bottom:268.462400pt;}
.yc2{bottom:268.475867pt;}
.y131{bottom:269.906933pt;}
.y21{bottom:272.188933pt;}
.y2f{bottom:276.818133pt;}
.y1a2{bottom:280.456533pt;}
.y196{bottom:286.978533pt;}
.y65{bottom:287.029200pt;}
.yf5{bottom:287.055467pt;}
.y166{bottom:287.069067pt;}
.y116{bottom:287.101200pt;}
.y91{bottom:287.119200pt;}
.ya8{bottom:287.133067pt;}
.yc1{bottom:287.146533pt;}
.y130{bottom:287.510933pt;}
.y2e{bottom:292.814133pt;}
.y20{bottom:302.620800pt;}
.y12f{bottom:305.114933pt;}
.y195{bottom:305.650533pt;}
.y64{bottom:305.699867pt;}
.yf4{bottom:305.726133pt;}
.y165{bottom:305.741067pt;}
.y115{bottom:305.771867pt;}
.y90{bottom:305.789867pt;}
.ya7{bottom:305.803733pt;}
.y13d{bottom:305.807867pt;}
.yc0{bottom:305.817200pt;}
.y1a1{bottom:309.165333pt;}
.y2d{bottom:323.930133pt;}
.y194{bottom:324.322533pt;}
.y63{bottom:324.370533pt;}
.yf3{bottom:324.396800pt;}
.y164{bottom:324.413067pt;}
.y114{bottom:324.442533pt;}
.ya6{bottom:324.474400pt;}
.y13c{bottom:324.478533pt;}
.ybf{bottom:324.487867pt;}
.y8f{bottom:337.220533pt;}
.y2c{bottom:339.930133pt;}
.y193{bottom:342.994533pt;}
.y62{bottom:343.041200pt;}
.yf2{bottom:343.067467pt;}
.y163{bottom:343.085067pt;}
.y113{bottom:343.113200pt;}
.ya5{bottom:343.145067pt;}
.y13b{bottom:343.149200pt;}
.ybe{bottom:343.158533pt;}
.y2b{bottom:355.930133pt;}
.y192{bottom:361.666533pt;}
.y61{bottom:361.711867pt;}
.yf1{bottom:361.738133pt;}
.y162{bottom:361.757067pt;}
.y112{bottom:361.783867pt;}
.ya4{bottom:361.815733pt;}
.y13a{bottom:361.819867pt;}
.ybd{bottom:361.829200pt;}
.y2a{bottom:371.930133pt;}
.y1f{bottom:377.980400pt;}
.y191{bottom:380.338533pt;}
.y60{bottom:380.382533pt;}
.yf0{bottom:380.408800pt;}
.y161{bottom:380.429067pt;}
.y111{bottom:380.454533pt;}
.y8e{bottom:380.457867pt;}
.ya3{bottom:380.486400pt;}
.y139{bottom:380.490533pt;}
.ybc{bottom:380.499867pt;}
.y190{bottom:399.010533pt;}
.y5f{bottom:399.053200pt;}
.yef{bottom:399.079467pt;}
.y160{bottom:399.101067pt;}
.y110{bottom:399.125200pt;}
.y8d{bottom:399.128533pt;}
.ya2{bottom:399.157067pt;}
.y138{bottom:399.161200pt;}
.ybb{bottom:399.170533pt;}
.y1e{bottom:414.414000pt;}
.y18f{bottom:417.682533pt;}
.y5e{bottom:417.723867pt;}
.yee{bottom:417.750133pt;}
.y15f{bottom:417.773067pt;}
.y10f{bottom:417.795867pt;}
.y8c{bottom:417.799200pt;}
.ya1{bottom:417.827733pt;}
.y137{bottom:417.831867pt;}
.yba{bottom:417.841200pt;}
.y1d{bottom:432.018000pt;}
.y18e{bottom:436.354533pt;}
.y5d{bottom:436.394533pt;}
.yed{bottom:436.420800pt;}
.y15e{bottom:436.445067pt;}
.y10e{bottom:436.466533pt;}
.y8b{bottom:436.469867pt;}
.ya0{bottom:436.498400pt;}
.y136{bottom:436.502533pt;}
.yb9{bottom:436.511867pt;}
.y1c{bottom:449.622000pt;}
.y18d{bottom:455.026533pt;}
.y5c{bottom:455.065200pt;}
.yec{bottom:455.091467pt;}
.y15d{bottom:455.117067pt;}
.y10d{bottom:455.137200pt;}
.y8a{bottom:455.140533pt;}
.y9f{bottom:455.169067pt;}
.y135{bottom:455.173200pt;}
.yb8{bottom:467.121200pt;}
.y1b{bottom:467.226000pt;}
.y18c{bottom:473.698533pt;}
.y5b{bottom:473.735867pt;}
.yeb{bottom:473.762133pt;}
.y15c{bottom:473.789067pt;}
.y10c{bottom:473.807867pt;}
.y89{bottom:473.811200pt;}
.y9e{bottom:473.839733pt;}
.y134{bottom:473.843867pt;}
.y1a{bottom:484.830000pt;}
.y18b{bottom:492.370533pt;}
.y5a{bottom:492.406533pt;}
.yea{bottom:492.432800pt;}
.y15b{bottom:492.461067pt;}
.y10b{bottom:492.478533pt;}
.y88{bottom:492.481867pt;}
.y9d{bottom:492.510400pt;}
.y133{bottom:492.514533pt;}
.yb7{bottom:495.823867pt;}
.y19{bottom:502.434000pt;}
.y18a{bottom:511.042533pt;}
.y59{bottom:511.077200pt;}
.y15a{bottom:511.133067pt;}
.y10a{bottom:511.149200pt;}
.y87{bottom:511.152533pt;}
.y9c{bottom:511.181067pt;}
.y18{bottom:520.038000pt;}
.ye9{bottom:523.863467pt;}
.y132{bottom:523.947600pt;}
.y189{bottom:529.714533pt;}
.y58{bottom:529.747867pt;}
.y159{bottom:529.805067pt;}
.y109{bottom:529.819867pt;}
.y86{bottom:529.823200pt;}
.y17{bottom:537.642000pt;}
.y188{bottom:548.386533pt;}
.y57{bottom:548.418533pt;}
.y158{bottom:548.477067pt;}
.y108{bottom:548.490533pt;}
.y85{bottom:548.493867pt;}
.yb6{bottom:548.506533pt;}
.y16{bottom:555.246000pt;}
.y187{bottom:567.058533pt;}
.y56{bottom:567.089200pt;}
.ye8{bottom:567.100800pt;}
.y157{bottom:567.149067pt;}
.y107{bottom:567.161200pt;}
.y84{bottom:567.164533pt;}
.yb5{bottom:567.177200pt;}
.yb3{bottom:569.825600pt;}
.y15{bottom:572.850000pt;}
.y186{bottom:585.730533pt;}
.y55{bottom:585.759867pt;}
.ye7{bottom:585.771467pt;}
.y156{bottom:585.821067pt;}
.y106{bottom:585.831867pt;}
.y83{bottom:585.835200pt;}
.yb4{bottom:585.847867pt;}
.y14{bottom:590.454000pt;}
.y185{bottom:604.402533pt;}
.y54{bottom:604.430533pt;}
.ye6{bottom:604.442133pt;}
.y155{bottom:604.493067pt;}
.y105{bottom:604.502533pt;}
.y82{bottom:604.505867pt;}
.y13{bottom:608.058000pt;}
.y184{bottom:623.074533pt;}
.y53{bottom:623.101200pt;}
.ye5{bottom:623.112800pt;}
.y154{bottom:623.165067pt;}
.y104{bottom:623.173200pt;}
.y81{bottom:623.176533pt;}
.y12{bottom:625.662000pt;}
.yd1{bottom:628.377467pt;}
.y183{bottom:641.746533pt;}
.y52{bottom:641.771867pt;}
.ye4{bottom:641.783467pt;}
.y153{bottom:641.837067pt;}
.y103{bottom:641.843867pt;}
.y80{bottom:641.847200pt;}
.y11{bottom:643.266000pt;}
.yd0{bottom:645.981467pt;}
.y182{bottom:660.418533pt;}
.y51{bottom:660.442533pt;}
.ye3{bottom:660.454133pt;}
.y152{bottom:660.509067pt;}
.y102{bottom:660.514533pt;}
.y10{bottom:660.870000pt;}
.ycf{bottom:663.585467pt;}
.y7f{bottom:672.456533pt;}
.yf{bottom:678.474000pt;}
.y181{bottom:679.090533pt;}
.y50{bottom:679.113200pt;}
.ye2{bottom:679.124800pt;}
.y151{bottom:679.181067pt;}
.yce{bottom:681.189467pt;}
.y101{bottom:691.947600pt;}
.ye{bottom:696.078000pt;}
.y180{bottom:697.762533pt;}
.y4f{bottom:697.783867pt;}
.ye1{bottom:697.795467pt;}
.ycd{bottom:698.793467pt;}
.y7e{bottom:701.165333pt;}
.y150{bottom:710.614133pt;}
.ycc{bottom:716.397467pt;}
.y17f{bottom:716.434533pt;}
.y4e{bottom:716.454533pt;}
.ye0{bottom:716.466133pt;}
.yd{bottom:723.720267pt;}
.y17e{bottom:735.106533pt;}
.y4d{bottom:735.125200pt;}
.ydf{bottom:735.136800pt;}
.y100{bottom:735.173200pt;}
.y17d{bottom:753.778533pt;}
.y7d{bottom:753.795733pt;}
.y4c{bottom:753.795867pt;}
.yde{bottom:753.807467pt;}
.y14f{bottom:753.842400pt;}
.yff{bottom:753.843867pt;}
.y17c{bottom:772.450533pt;}
.y7c{bottom:772.466400pt;}
.y4b{bottom:772.466533pt;}
.ydd{bottom:772.478133pt;}
.y14e{bottom:772.514400pt;}
.yfe{bottom:772.514533pt;}
.y17b{bottom:791.122533pt;}
.y7b{bottom:791.137067pt;}
.y4a{bottom:791.137200pt;}
.ydc{bottom:791.148800pt;}
.y7{bottom:794.192667pt;}
.y14d{bottom:796.026000pt;}
.y17a{bottom:809.794533pt;}
.y7a{bottom:809.807733pt;}
.y49{bottom:809.807867pt;}
.ydb{bottom:809.819467pt;}
.y6{bottom:810.192667pt;}
.y179{bottom:828.466533pt;}
.y79{bottom:828.478400pt;}
.y48{bottom:828.478533pt;}
.yda{bottom:828.490133pt;}
.y14c{bottom:828.514533pt;}
.y5{bottom:841.310933pt;}
.y178{bottom:847.138533pt;}
.y78{bottom:847.149067pt;}
.y47{bottom:847.149200pt;}
.yd9{bottom:847.160800pt;}
.y14b{bottom:852.026000pt;}
.y177{bottom:865.810533pt;}
.y77{bottom:865.819733pt;}
.y46{bottom:865.819867pt;}
.yd8{bottom:865.831467pt;}
.y4{bottom:874.034267pt;}
.y176{bottom:884.482533pt;}
.y76{bottom:884.490400pt;}
.y45{bottom:884.490533pt;}
.yd7{bottom:884.502133pt;}
.y14a{bottom:884.503867pt;}
.y175{bottom:903.154533pt;}
.y75{bottom:903.161067pt;}
.y44{bottom:903.161200pt;}
.yd6{bottom:903.172800pt;}
.y149{bottom:903.175867pt;}
.y3{bottom:903.364933pt;}
.y174{bottom:921.826533pt;}
.y74{bottom:921.831733pt;}
.y43{bottom:921.831867pt;}
.yd5{bottom:921.843467pt;}
.y148{bottom:921.847867pt;}
.y2{bottom:932.695600pt;}
.y173{bottom:940.498533pt;}
.y73{bottom:940.502400pt;}
.y42{bottom:940.502533pt;}
.yd4{bottom:940.514133pt;}
.y147{bottom:945.359333pt;}
.y172{bottom:959.170533pt;}
.y72{bottom:959.173067pt;}
.y41{bottom:959.173200pt;}
.yd3{bottom:959.184800pt;}
.y171{bottom:977.842533pt;}
.y71{bottom:977.843733pt;}
.y40{bottom:977.843867pt;}
.y146{bottom:977.847867pt;}
.yc{bottom:986.502667pt;}
.yd2{bottom:990.952800pt;}
.y70{bottom:996.514400pt;}
.y3f{bottom:996.514533pt;}
.y145{bottom:1000.401600pt;}
.y38{bottom:1009.540000pt;}
.y3b{bottom:1024.013867pt;}
.y37{bottom:1030.390667pt;}
.y36{bottom:1047.724000pt;}
.y3e{bottom:1047.726267pt;}
.h10{height:14.923012pt;}
.h7{height:30.618750pt;}
.h6{height:30.806250pt;}
.h12{height:34.020833pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.h8{height:36.492188pt;}
.h15{height:38.133333pt;}
.he{height:38.273438pt;}
.hd{height:38.507812pt;}
.h9{height:40.546875pt;}
.ha{height:40.992000pt;}
.h13{height:44.601562pt;}
.hf{height:44.948000pt;}
.h4{height:45.538711pt;}
.hb{height:48.656250pt;}
.hc{height:50.101333pt;}
.h14{height:50.652267pt;}
.h3{height:68.929688pt;}
.h11{height:71.844560pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:165.230667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.xb{left:95.174800pt;}
.xd{left:96.253733pt;}
.xa{left:98.747867pt;}
.x5{left:106.559067pt;}
.x6{left:108.473333pt;}
.x7{left:110.313733pt;}
.x4{left:266.834667pt;}
.xc{left:281.956000pt;}
.x3{left:352.045067pt;}
.xe{left:409.427600pt;}
.x9{left:579.501733pt;}
.x8{left:608.355067pt;}
.x1{left:717.410933pt;}
}




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