
    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_30d983a236c90803adad69c0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.905000;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_442e44ff2689929bc87c2b94.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.047000;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_0d82058f527e93cfa34a2396.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.913000;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_5c9e0c2b4f5bbc5412788c28.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_40ee7b8ce6061def79eafaf7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9a1f3d92417c06e3191b3ddb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.049000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_cb2f45a34e7d401053672de6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.899000;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_de1adf46217f174519c06a60.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.656000;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_b22435304c9e8ef298f1ec45.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_948792e473b472ce88307d95.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_3115b1397489028e0ff66473.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.454000;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_6a13f78677690bbe54c9064e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.441000;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_f992b306176953af21f6235d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.764000;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_ab45bde9ffe97649a072ad0d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.727000;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_e1c4b178e06856817c0768b4.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_0bbb1800f54dbd6baf69822d.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.239258;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_635b8e453c95c70bb4946a96.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.913000;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_ae5b40ce2512b1b9875e028f.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.452000;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_9760628b03dd1625a2d60a55.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.898000;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_b1b6802bafa521d49fc21c32.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_e1db5181c488a64992d781dd.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.958000;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:ff16;src:url('chunks/assets/font_2996e62414ed51fcd9f58db0.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.441000;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;}
.ff17{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff18;src:url('chunks/assets/font_3519f13ee2de72d4ca36f069.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.047000;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:ff19;src:url('chunks/assets/font_6cdbe3734503c8f4ac117e60.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.899000;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:ff1a;src:url('chunks/assets/font_414744cbda73b3506ac29a52.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.905000;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:ff1b;src:url('chunks/assets/font_d1ae7c6523c5d67948258b1d.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.047000;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:ff1c;src:url('chunks/assets/font_38a5410770b5e9fb6341d8e5.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_b26af8e77db04ad2e4742d5c.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.239258;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:ff1e;src:url('chunks/assets/font_de5726ac90488ad90aaa9e93.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.239258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.241482,0.241482,0.064703,0,0);-ms-transform:matrix(0.000000,-0.241482,0.241482,0.064703,0,0);-webkit-transform:matrix(0.000000,-0.241482,0.241482,0.064703,0,0);}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.va{vertical-align:-16.994452px;}
.v7{vertical-align:-12.060000px;}
.v1{vertical-align:-8.970000px;}
.v8{vertical-align:-7.494000px;}
.v3{vertical-align:-5.976000px;}
.v9{vertical-align:-4.050044px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:15.895322px;}
.vb{vertical-align:16.994452px;}
.v2{vertical-align:21.690000px;}
.v4{vertical-align:22.854000px;}
.v5{vertical-align:24.108000px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.000061px;}
.ls5b{letter-spacing:0.000268px;}
.ls49{letter-spacing:0.000269px;}
.ls5d{letter-spacing:0.000503px;}
.ls47{letter-spacing:0.000557px;}
.ls7{letter-spacing:0.000564px;}
.lsa{letter-spacing:0.000780px;}
.ls20{letter-spacing:0.000823px;}
.lsc{letter-spacing:0.001002px;}
.ls10{letter-spacing:0.001301px;}
.ls30{letter-spacing:0.001891px;}
.ls1a{letter-spacing:0.002275px;}
.ls57{letter-spacing:0.002400px;}
.ls4d{letter-spacing:0.002436px;}
.ls3e{letter-spacing:0.002638px;}
.ls46{letter-spacing:0.003187px;}
.ls3c{letter-spacing:0.003269px;}
.ls2{letter-spacing:0.003333px;}
.ls32{letter-spacing:0.003434px;}
.ls40{letter-spacing:0.003610px;}
.ls18{letter-spacing:0.004205px;}
.ls24{letter-spacing:0.005591px;}
.ls29{letter-spacing:0.006141px;}
.ls59{letter-spacing:0.040994px;}
.ls41{letter-spacing:0.203420px;}
.ls42{letter-spacing:0.204731px;}
.ls43{letter-spacing:0.404613px;}
.ls4f{letter-spacing:1.534366px;}
.ls9{letter-spacing:1.928680px;}
.ls4c{letter-spacing:2.105646px;}
.ls4e{letter-spacing:2.107715px;}
.ls54{letter-spacing:2.984986px;}
.ls4a{letter-spacing:2.987468px;}
.lsd{letter-spacing:2.987856px;}
.ls1f{letter-spacing:2.991011px;}
.ls3f{letter-spacing:2.991666px;}
.ls34{letter-spacing:2.993422px;}
.ls2f{letter-spacing:3.467591px;}
.ls4{letter-spacing:4.931487px;}
.lsb{letter-spacing:5.441530px;}
.ls3d{letter-spacing:5.780444px;}
.lse{letter-spacing:10.880803px;}
.lsf{letter-spacing:10.883002px;}
.ls56{letter-spacing:11.864803px;}
.ls3a{letter-spacing:11.949943px;}
.ls3b{letter-spacing:11.952978px;}
.ls1e{letter-spacing:12.283559px;}
.ls50{letter-spacing:12.284486px;}
.ls53{letter-spacing:12.284784px;}
.ls51{letter-spacing:12.289559px;}
.ls1d{letter-spacing:12.290275px;}
.ls28{letter-spacing:14.115056px;}
.ls8{letter-spacing:14.315530px;}
.ls12{letter-spacing:15.026634px;}
.ls16{letter-spacing:15.271559px;}
.ls19{letter-spacing:15.273427px;}
.ls25{letter-spacing:15.275002px;}
.ls15{letter-spacing:15.278803px;}
.ls1c{letter-spacing:15.279427px;}
.ls22{letter-spacing:15.281002px;}
.ls45{letter-spacing:15.355559px;}
.ls17{letter-spacing:15.356004px;}
.ls39{letter-spacing:15.359604px;}
.ls2c{letter-spacing:15.361559px;}
.ls5{letter-spacing:16.602538px;}
.ls27{letter-spacing:17.102803px;}
.ls2d{letter-spacing:17.929670px;}
.ls23{letter-spacing:18.345427px;}
.ls1b{letter-spacing:18.347468px;}
.ls2a{letter-spacing:19.553530px;}
.ls52{letter-spacing:19.920780px;}
.ls6{letter-spacing:19.922400px;}
.ls5e{letter-spacing:19.923269px;}
.ls55{letter-spacing:19.926780px;}
.ls48{letter-spacing:20.921468px;}
.ls44{letter-spacing:21.003809px;}
.ls5a{letter-spacing:21.009809px;}
.ls31{letter-spacing:21.395591px;}
.ls5c{letter-spacing:22.064222px;}
.ls21{letter-spacing:22.908564px;}
.ls26{letter-spacing:22.911011px;}
.ls33{letter-spacing:22.911666px;}
.ls14{letter-spacing:22.913422px;}
.ls2b{letter-spacing:29.885952px;}
.ls1{letter-spacing:29.888092px;}
.ls5f{letter-spacing:29.888111px;}
.ls3{letter-spacing:29.891952px;}
.ls2e{letter-spacing:29.891971px;}
.ls58{letter-spacing:32.879971px;}
.ls13{letter-spacing:47.822092px;}
.ls38{letter-spacing:88.781856px;}
.ls36{letter-spacing:114.932803px;}
.ls35{letter-spacing:119.648803px;}
.ls37{letter-spacing:139.133846px;}
.ls4b{letter-spacing:373.011904px;}
.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;}
}
.ws2e{word-spacing:-59.775600px;}
.wsa{word-spacing:-38.937826px;}
.ws19{word-spacing:-36.071827px;}
.ws23{word-spacing:-14.280391px;}
.ws17{word-spacing:-12.122522px;}
.ws46{word-spacing:-11.585627px;}
.ws1e{word-spacing:-6.204497px;}
.ws10{word-spacing:-0.059776px;}
.ws12{word-spacing:-0.053798px;}
.ws16{word-spacing:-0.047821px;}
.ws37{word-spacing:-0.042138px;}
.ws18{word-spacing:-0.041843px;}
.ws39{word-spacing:-0.037924px;}
.ws14{word-spacing:-0.035866px;}
.ws38{word-spacing:-0.029496px;}
.ws33{word-spacing:-0.003610px;}
.ws8{word-spacing:0.000000px;}
.ws1d{word-spacing:3.874052px;}
.ws36{word-spacing:4.240747px;}
.ws35{word-spacing:4.825311px;}
.ws7{word-spacing:4.901599px;}
.ws42{word-spacing:6.219553px;}
.wsc{word-spacing:6.862219px;}
.ws40{word-spacing:6.910569px;}
.ws41{word-spacing:6.994844px;}
.ws29{word-spacing:7.842578px;}
.ws1c{word-spacing:8.416426px;}
.ws11{word-spacing:8.819386px;}
.ws47{word-spacing:8.822938px;}
.ws13{word-spacing:8.825078px;}
.ws44{word-spacing:8.930534px;}
.ws2{word-spacing:8.966340px;}
.ws21{word-spacing:9.145728px;}
.ws3{word-spacing:9.803198px;}
.ws9{word-spacing:9.922750px;}
.ws1{word-spacing:11.763917px;}
.ws15{word-spacing:12.168115px;}
.ws4{word-spacing:12.911580px;}
.ws1b{word-spacing:13.891810px;}
.ws3b{word-spacing:13.989723px;}
.ws3a{word-spacing:13.993995px;}
.ws3d{word-spacing:14.003178px;}
.ws3f{word-spacing:14.010471px;}
.ws3e{word-spacing:14.013774px;}
.ws3c{word-spacing:14.014054px;}
.ws1a{word-spacing:15.305827px;}
.ws0{word-spacing:15.493860px;}
.ws5f{word-spacing:15.876439px;}
.ws55{word-spacing:17.850067px;}
.ws6{word-spacing:17.861069px;}
.ws53{word-spacing:17.874086px;}
.ws56{word-spacing:17.880653px;}
.ws34{word-spacing:18.222273px;}
.ws5b{word-spacing:19.838116px;}
.ws58{word-spacing:19.838312px;}
.ws65{word-spacing:19.838486px;}
.ws63{word-spacing:19.839983px;}
.ws5e{word-spacing:19.841058px;}
.ws61{word-spacing:19.843020px;}
.ws2d{word-spacing:19.843640px;}
.ws66{word-spacing:19.843936px;}
.ws5{word-spacing:19.845499px;}
.ws43{word-spacing:19.859633px;}
.ws2f{word-spacing:19.860216px;}
.ws5d{word-spacing:19.861754px;}
.ws22{word-spacing:19.862142px;}
.wsb{word-spacing:19.862785px;}
.ws62{word-spacing:19.863683px;}
.ws60{word-spacing:19.864073px;}
.ws68{word-spacing:19.864261px;}
.ws30{word-spacing:19.865584px;}
.ws64{word-spacing:19.865633px;}
.ws59{word-spacing:19.866354px;}
.ws67{word-spacing:19.866358px;}
.wsd{word-spacing:19.875330px;}
.ws31{word-spacing:19.893370px;}
.ws5a{word-spacing:19.905275px;}
.ws48{word-spacing:20.859994px;}
.ws51{word-spacing:20.860570px;}
.ws52{word-spacing:20.860589px;}
.ws4c{word-spacing:20.862643px;}
.ws57{word-spacing:20.862653px;}
.ws4a{word-spacing:20.862854px;}
.ws4f{word-spacing:20.864170px;}
.ws4b{word-spacing:20.864477px;}
.ws49{word-spacing:20.865994px;}
.ws4e{word-spacing:20.866570px;}
.ws50{word-spacing:20.868154px;}
.ws4d{word-spacing:20.868643px;}
.ws54{word-spacing:20.868653px;}
.ws5c{word-spacing:22.869559px;}
.wse{word-spacing:23.814758px;}
.ws45{word-spacing:67.096900px;}
.ws27{word-spacing:71.683079px;}
.ws26{word-spacing:73.452442px;}
.ws25{word-spacing:81.629764px;}
.ws2a{word-spacing:135.380119px;}
.ws24{word-spacing:143.838655px;}
.ws32{word-spacing:145.677896px;}
.ws2c{word-spacing:147.574372px;}
.ws28{word-spacing:157.838206px;}
.ws2b{word-spacing:160.868498px;}
.wsf{word-spacing:217.165337px;}
.ws20{word-spacing:286.151931px;}
.ws1f{word-spacing:315.880041px;}
._2c{margin-left:-82.055643px;}
._2b{margin-left:-47.298763px;}
._18{margin-left:-33.271800px;}
._f{margin-left:-28.167085px;}
._14{margin-left:-25.126375px;}
._2e{margin-left:-9.963662px;}
._a{margin-left:-5.947968px;}
._1{margin-left:-3.942355px;}
._3{margin-left:-2.770716px;}
._0{margin-left:-1.652678px;}
._d{width:1.288301px;}
._32{width:2.925284px;}
._15{width:4.073606px;}
._33{width:7.986040px;}
._22{width:9.038131px;}
._2{width:10.062983px;}
._27{width:11.245064px;}
._23{width:14.325106px;}
._11{width:19.137041px;}
._4{width:20.919133px;}
._10{width:21.967864px;}
._17{width:23.324911px;}
._c{width:26.511322px;}
._2f{width:29.441782px;}
._12{width:36.574088px;}
._8{width:40.593269px;}
._6{width:67.053661px;}
._2a{width:81.080776px;}
._19{width:82.729638px;}
._1b{width:84.976524px;}
._13{width:88.486236px;}
._1a{width:93.393632px;}
._29{width:101.853497px;}
._9{width:113.557138px;}
._16{width:132.414229px;}
._1d{width:137.579866px;}
._26{width:152.784788px;}
._21{width:158.668751px;}
._25{width:159.907760px;}
._1f{width:164.550685px;}
._1c{width:174.205746px;}
._1e{width:185.108843px;}
._20{width:191.660265px;}
._e{width:231.929156px;}
._b{width:238.818394px;}
._28{width:347.356012px;}
._30{width:348.611299px;}
._31{width:350.434455px;}
._2d{width:352.616264px;}
._5{width:359.221468px;}
._7{width:361.074512px;}
._24{width:1071.093725px;}
.fc17{color:rgb(128,0,128);}
.fc16{color:rgb(110,14,10);}
.fc15{color:rgb(184,134,11);}
.fc14{color:rgb(30,144,255);}
.fc13{color:rgb(149,216,64);}
.fc11{color:rgb(69,55,129);}
.fcf{color:rgb(206,73,147);}
.fc0{color:rgb(252,93,0);}
.fc1a{color:rgb(60,82,51);}
.fc19{color:rgb(64,64,64);}
.fcc{color:rgb(238,175,97);}
.fc1{color:rgb(164,166,168);}
.fc12{color:rgb(35,138,141);}
.fc8{color:rgb(0,42,72);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(231,150,70);}
.fc5{color:rgb(99,99,99);}
.fc10{color:rgb(106,13,131);}
.fc6{color:rgb(255,255,255);}
.fc18{color:rgb(51,51,51);}
.fce{color:rgb(251,144,98);}
.fc7{color:rgb(202,5,77);}
.fcd{color:rgb(238,93,108);}
.fca{color:rgb(102,102,102);}
.fc2{color:rgb(121,167,209);}
.fc9{color:rgb(126,25,70);}
.fcb{color:transparent;}
.fs11{font-size:10.963260px;}
.fs10{font-size:15.661800px;}
.fsb{font-size:22.318333px;}
.fsf{font-size:22.374000px;}
.fsd{font-size:27.100731px;}
.fs13{font-size:29.496245px;}
.fs8{font-size:29.887800px;}
.fsa{font-size:33.477545px;}
.fs15{font-size:33.710176px;}
.fs9{font-size:35.865600px;}
.fse{font-size:36.665840px;}
.fs14{font-size:37.924106px;}
.fs16{font-size:41.674917px;}
.fs5{font-size:41.842800px;}
.fs12{font-size:42.137614px;}
.fs17{font-size:43.144950px;}
.fs6{font-size:44.832000px;}
.fs4{font-size:47.820600px;}
.fsc{font-size:49.419244px;}
.fs7{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y61{bottom:0.129150px;}
.y5f{bottom:1.718684px;}
.ya9{bottom:3.412909px;}
.yce{bottom:3.722030px;}
.ydc{bottom:3.838472px;}
.y60{bottom:4.102980px;}
.y59{bottom:5.783679px;}
.yd1{bottom:6.067333px;}
.y18{bottom:10.554000px;}
.ya8{bottom:11.315767px;}
.y4c{bottom:14.038007px;}
.ydb{bottom:14.257216px;}
.y54{bottom:15.464909px;}
.ya7{bottom:17.612824px;}
.y63{bottom:18.255705px;}
.y17{bottom:19.521000px;}
.ydd{bottom:19.740728px;}
.ybc{bottom:20.590653px;}
.y5a{bottom:23.202957px;}
.ya4{bottom:28.239000px;}
.y64{bottom:31.438801px;}
.yea{bottom:31.804482px;}
.y4b{bottom:33.509540px;}
.y55{bottom:33.855218px;}
.y5e{bottom:34.247733px;}
.yde{bottom:35.642969px;}
.yda{bottom:35.895000px;}
.yf3{bottom:37.099500px;}
.y58{bottom:37.483162px;}
.y111{bottom:39.220500px;}
.y4a{bottom:39.867671px;}
.y99{bottom:39.997500px;}
.y5b{bottom:40.622234px;}
.yaa{bottom:41.619476px;}
.yc9{bottom:42.514681px;}
.y45{bottom:43.167000px;}
.y37{bottom:43.212000px;}
.y65{bottom:44.621841px;}
.y51{bottom:44.636130px;}
.y11f{bottom:44.809500px;}
.ye{bottom:46.135500px;}
.y2f{bottom:46.999500px;}
.y62{bottom:47.417752px;}
.y100{bottom:47.449500px;}
.ya3{bottom:47.548500px;}
.y52{bottom:47.815475px;}
.ybd{bottom:49.283066px;}
.y2a{bottom:49.750500px;}
.ydf{bottom:50.448479px;}
.y56{bottom:52.246087px;}
.y77{bottom:53.950500px;}
.y4f{bottom:55.763280px;}
.yeb{bottom:55.932062px;}
.ybb{bottom:56.340000px;}
.y110{bottom:57.153000px;}
.y66{bottom:57.805162px;}
.y5c{bottom:58.042071px;}
.y50{bottom:58.942066px;}
.yc3{bottom:60.798307px;}
.y31{bottom:62.287500px;}
.y98{bottom:62.413500px;}
.y11e{bottom:62.742000px;}
.yff{bottom:63.888000px;}
.ya2{bottom:65.481000px;}
.ye0{bottom:65.802426px;}
.yab{bottom:66.625034px;}
.y4d{bottom:66.889870px;}
.y29{bottom:67.683000px;}
.y2e{bottom:67.920000px;}
.y4e{bottom:70.068656px;}
.y76{bottom:70.389000px;}
.y32{bottom:70.618500px;}
.y67{bottom:70.987922px;}
.yba{bottom:72.778500px;}
.y5d{bottom:75.461349px;}
.y97{bottom:78.852000px;}
.y47{bottom:79.560000px;}
.yfe{bottom:80.326500px;}
.y53{bottom:80.523467px;}
.ye1{bottom:80.607723px;}
.y11d{bottom:80.676000px;}
.y10c{bottom:80.803500px;}
.yb0{bottom:81.581052px;}
.ya1{bottom:83.413500px;}
.y16{bottom:84.282000px;}
.y28{bottom:85.617000px;}
.y75{bottom:86.827500px;}
.y2d{bottom:88.842000px;}
.ybe{bottom:90.928568px;}
.yac{bottom:91.630592px;}
.ycc{bottom:93.951661px;}
.yb9{bottom:95.194500px;}
.ye2{bottom:95.961812px;}
.yfd{bottom:96.765000px;}
.y10b{bottom:98.736000px;}
.y5{bottom:99.009000px;}
.yd2{bottom:101.962485px;}
.y15{bottom:102.214500px;}
.y74{bottom:103.266000px;}
.y27{bottom:103.549500px;}
.yec{bottom:104.735374px;}
.y11c{bottom:106.080000px;}
.yc8{bottom:106.994628px;}
.y96{bottom:107.245500px;}
.y2c{bottom:109.764000px;}
.ye3{bottom:110.767109px;}
.ycd{bottom:114.762252px;}
.yfc{bottom:116.191500px;}
.yad{bottom:116.636151px;}
.y4{bottom:116.941500px;}
.y10a{bottom:119.658000px;}
.y14{bottom:120.147000px;}
.y26{bottom:121.482000px;}
.y73{bottom:122.692500px;}
.y57{bottom:123.658967px;}
.ye4{bottom:126.121198px;}
.y33{bottom:126.627000px;}
.ycb{bottom:126.727733px;}
.y11b{bottom:127.002000px;}
.y105{bottom:127.089000px;}
.yed{bottom:128.863024px;}
.y2b{bottom:130.684500px;}
.ybf{bottom:132.575128px;}
.y95{bottom:132.651000px;}
.y38{bottom:137.145000px;}
.y13{bottom:138.079500px;}
.yfb{bottom:138.607500px;}
.y109{bottom:139.086000px;}
.y25{bottom:139.414500px;}
.ye5{bottom:140.926495px;}
.yae{bottom:141.641709px;}
.y72{bottom:142.120500px;}
.y104{bottom:145.021500px;}
.y11a{bottom:147.922500px;}
.y94{bottom:152.077500px;}
.ye9{bottom:152.441884px;}
.yee{bottom:152.990675px;}
.y44{bottom:154.719000px;}
.yfa{bottom:155.046000px;}
.yca{bottom:155.381023px;}
.ye6{bottom:156.280584px;}
.y108{bottom:158.512500px;}
.y71{bottom:158.559000px;}
.yb2{bottom:159.043598px;}
.y12{bottom:160.495500px;}
.y3{bottom:161.575500px;}
.y103{bottom:162.954000px;}
.y24{bottom:164.820000px;}
.y119{bottom:165.856500px;}
.yaf{bottom:166.647267px;}
.yb1{bottom:167.958239px;}
.ye8{bottom:168.344764px;}
.ye7{bottom:171.086591px;}
.yf9{bottom:171.484500px;}
.y93{bottom:171.504000px;}
.yc0{bottom:174.221687px;}
.yc5{bottom:174.768360px;}
.y70{bottom:174.997500px;}
.y43{bottom:178.003500px;}
.y9a{bottom:178.120500px;}
.y11{bottom:178.428000px;}
.ya5{bottom:179.998830px;}
.y2{bottom:182.496000px;}
.y34{bottom:182.536500px;}
.ya6{bottom:186.116721px;}
.y107{bottom:186.906000px;}
.yf8{bottom:187.923000px;}
.y92{bottom:187.942500px;}
.yc7{bottom:188.124317px;}
.y102{bottom:188.359500px;}
.y118{bottom:191.260500px;}
.y1b{bottom:192.103500px;}
.y10{bottom:196.362000px;}
.y23{bottom:196.404000px;}
.y6f{bottom:197.412000px;}
.y40{bottom:202.084500px;}
.yf7{bottom:207.349500px;}
.yc6{bottom:208.040351px;}
.y91{bottom:210.358500px;}
.y117{bottom:212.182500px;}
.y49{bottom:213.069946px;}
.y48{bottom:213.420000px;}
.yf{bottom:214.294500px;}
.y22{bottom:214.338000px;}
.yc1{bottom:215.868247px;}
.yef{bottom:216.618000px;}
.y3f{bottom:218.080500px;}
.yd0{bottom:218.566719px;}
.yc4{bottom:222.707478px;}
.y6e{bottom:222.817500px;}
.yb8{bottom:226.449000px;}
.y1e{bottom:228.361500px;}
.ycf{bottom:229.100488px;}
.yf6{bottom:229.765500px;}
.y116{bottom:230.115000px;}
.yd9{bottom:231.651000px;}
.y21{bottom:232.270500px;}
.y8f{bottom:232.815000px;}
.y1{bottom:233.305500px;}
.y3e{bottom:234.076500px;}
.y7d{bottom:237.562500px;}
.y35{bottom:238.446000px;}
.y6d{bottom:239.256000px;}
.y9f{bottom:242.016000px;}
.yb7{bottom:242.887500px;}
.y8e{bottom:244.795500px;}
.yf5{bottom:246.204000px;}
.y1d{bottom:246.294000px;}
.y106{bottom:247.972500px;}
.y115{bottom:248.047500px;}
.yd{bottom:248.595000px;}
.ya{bottom:249.073500px;}
.y81{bottom:249.517500px;}
.yd8{bottom:249.583500px;}
.y3d{bottom:250.072500px;}
.y20{bottom:250.203000px;}
.y7c{bottom:250.747500px;}
.y8d{bottom:251.970000px;}
.yc2{bottom:257.513749px;}
.ya0{bottom:257.923500px;}
.y6c{bottom:258.682500px;}
.y10f{bottom:259.927500px;}
.y9e{bottom:259.948500px;}
.y80{bottom:261.472500px;}
.y7b{bottom:263.934000px;}
.y8c{bottom:263.950500px;}
.y1c{bottom:264.226500px;}
.yb6{bottom:265.303500px;}
.yf4{bottom:265.630500px;}
.y3c{bottom:266.068500px;}
.yc{bottom:266.527500px;}
.y9{bottom:267.006000px;}
.yd7{bottom:267.516000px;}
.y114{bottom:268.969500px;}
.y1f{bottom:275.607000px;}
.yd4{bottom:276.296256px;}
.y9d{bottom:277.881000px;}
.y6b{bottom:278.110500px;}
.y46{bottom:278.539500px;}
.y7f{bottom:281.146500px;}
.y3b{bottom:282.064500px;}
.y7a{bottom:283.608000px;}
.yb{bottom:284.460000px;}
.y8{bottom:284.938500px;}
.y113{bottom:286.902000px;}
.y7e{bottom:287.124000px;}
.yb5{bottom:287.719500px;}
.y42{bottom:288.891000px;}
.yd6{bottom:289.932000px;}
.yd3{bottom:291.282715px;}
.yf2{bottom:291.910500px;}
.y101{bottom:292.990500px;}
.y68{bottom:293.959500px;}
.y36{bottom:294.357000px;}
.y6a{bottom:297.537000px;}
.y3a{bottom:298.060500px;}
.yb4{bottom:304.158000px;}
.y9c{bottom:304.780500px;}
.y1a{bottom:307.092000px;}
.yd5{bottom:307.864500px;}
.y112{bottom:309.318000px;}
.yf1{bottom:309.843000px;}
.y79{bottom:310.923000px;}
.y41{bottom:311.629500px;}
.y7{bottom:313.146000px;}
.y39{bottom:314.056500px;}
.y69{bottom:319.953000px;}
.yb3{bottom:320.596500px;}
.y9b{bottom:322.713000px;}
.y19{bottom:325.024500px;}
.y78{bottom:328.857000px;}
.yf0{bottom:330.765000px;}
.y30{bottom:333.850500px;}
.y90{bottom:353.904000px;}
.y6{bottom:355.777500px;}
.y10e{bottom:3039.259185px;}
.y8a{bottom:3040.036185px;}
.y10d{bottom:3057.191685px;}
.y89{bottom:3062.452185px;}
.y88{bottom:3078.890685px;}
.y87{bottom:3107.284185px;}
.y86{bottom:3132.689685px;}
.y85{bottom:3152.116185px;}
.y84{bottom:3171.542685px;}
.y8b{bottom:3178.159185px;}
.y83{bottom:3187.981185px;}
.y82{bottom:3210.397185px;}
.h1d{height:14.549812px;}
.h1c{height:20.785446px;}
.h12{height:23.277324px;}
.h23{height:25.042312px;}
.h8{height:25.374742px;}
.h27{height:26.926115px;}
.h14{height:28.265216px;}
.h22{height:29.664880px;}
.h26{height:32.197566px;}
.h11{height:34.916033px;}
.h9{height:35.524537px;}
.h24{height:35.774834px;}
.h17{height:38.196864px;}
.h15{height:38.241325px;}
.h2c{height:38.421024px;}
.h16{height:39.172646px;}
.h2b{height:39.963852px;}
.h1f{height:40.332244px;}
.h20{height:40.336473px;}
.hf{height:40.348800px;}
.hd{height:40.599689px;}
.h25{height:42.036764px;}
.h6{height:42.440676px;}
.h2a{height:43.465636px;}
.h2e{height:44.831700px;}
.h7{height:45.674842px;}
.h13{height:45.775540px;}
.h18{height:46.105229px;}
.h19{height:47.327894px;}
.h4{height:50.749484px;}
.h2f{height:51.227689px;}
.hc{height:53.303894px;}
.h28{height:53.816388px;}
.ha{height:57.214537px;}
.hb{height:57.220537px;}
.h2d{height:59.626537px;}
.he{height:59.632537px;}
.h3{height:60.899789px;}
.h5{height:61.114812px;}
.h1a{height:64.509689px;}
.h2{height:73.337604px;}
.h10{height:88.874562px;}
.h29{height:184.246934px;}
.h1b{height:201.366000px;}
.h21{height:238.992735px;}
.h1e{height:302.051226px;}
.h1{height:382.500000px;}
.h0{height:382.677000px;}
.w5{width:219.470696px;}
.w4{width:260.055726px;}
.w3{width:268.488000px;}
.w2{width:305.099388px;}
.w6{width:402.491244px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x56{left:11.525595px;}
.x1d{left:12.796513px;}
.x62{left:15.353876px;}
.x1c{left:16.770360px;}
.x21{left:19.043838px;}
.x1{left:21.259500px;}
.x2{left:22.288500px;}
.x51{left:23.630663px;}
.xa{left:25.689000px;}
.x60{left:27.965995px;}
.x4d{left:29.218138px;}
.x4c{left:31.929562px;}
.x2b{left:33.228000px;}
.xd{left:35.685000px;}
.x61{left:36.739700px;}
.x26{left:37.762500px;}
.x58{left:41.793527px;}
.xe{left:43.194000px;}
.xf{left:45.024000px;}
.x20{left:46.515865px;}
.x37{left:48.581729px;}
.x27{left:50.037000px;}
.x52{left:51.935113px;}
.x4e{left:54.256950px;}
.x4b{left:56.192872px;}
.x4a{left:57.505921px;}
.x23{left:59.290580px;}
.xc{left:64.063500px;}
.x54{left:68.211483px;}
.x28{left:69.604500px;}
.x49{left:77.754739px;}
.x48{left:79.067789px;}
.x2c{left:89.680500px;}
.x53{left:91.757555px;}
.x47{left:93.115674px;}
.x10{left:94.746000px;}
.x38{left:100.958305px;}
.x5b{left:104.620776px;}
.x68{left:110.052000px;}
.x46{left:113.925173px;}
.x45{left:115.238223px;}
.x57{left:118.498017px;}
.x24{left:125.255845px;}
.x44{left:127.534655px;}
.x43{left:128.847705px;}
.x6b{left:138.075000px;}
.x42{left:144.418259px;}
.x41{left:145.731309px;}
.x8{left:149.754000px;}
.x59{left:157.154264px;}
.x9{left:165.762000px;}
.x40{left:167.454950px;}
.x5a{left:173.936180px;}
.x55{left:174.947050px;}
.x3f{left:179.628642px;}
.x3{left:180.640500px;}
.x3e{left:195.570977px;}
.x3d{left:196.884027px;}
.x3c{left:214.817690px;}
.x3b{left:216.130740px;}
.x22{left:217.846169px;}
.x1f{left:235.728588px;}
.x3a{left:238.694713px;}
.x39{left:240.007762px;}
.x1e{left:242.086720px;}
.x5{left:248.508000px;}
.x4f{left:269.866500px;}
.x5f{left:274.198500px;}
.x67{left:277.407000px;}
.x50{left:285.342000px;}
.x14{left:290.373000px;}
.x12{left:294.832500px;}
.x11{left:295.978500px;}
.x13{left:297.183000px;}
.x5d{left:308.209500px;}
.x36{left:315.439500px;}
.x5e{left:324.217500px;}
.x15{left:339.129000px;}
.x16{left:355.137000px;}
.x1b{left:375.215112px;}
.x4{left:377.824500px;}
.x63{left:381.654211px;}
.x6{left:386.319000px;}
.x7{left:388.455000px;}
.x6c{left:400.027500px;}
.x65{left:402.864000px;}
.x5c{left:408.313500px;}
.x29{left:415.528500px;}
.x66{left:418.338000px;}
.x2a{left:426.468000px;}
.x34{left:459.237000px;}
.x33{left:479.392500px;}
.x1a{left:504.135000px;}
.x19{left:508.533000px;}
.xb{left:511.863000px;}
.x64{left:521.100000px;}
.x35{left:580.104000px;}
.x32{left:586.753500px;}
.x30{left:587.755500px;}
.x31{left:593.403000px;}
.x18{left:615.324000px;}
.x17{left:627.279000px;}
.x25{left:666.349500px;}
.x2d{left:3022.327185px;}
.x2e{left:3037.801185px;}
.x69{left:3277.445685px;}
.x6a{left:3400.066185px;}
.x2f{left:3459.275685px;}
@media print{
.va{vertical-align:-15.106180pt;}
.v7{vertical-align:-10.720000pt;}
.v1{vertical-align:-7.973333pt;}
.v8{vertical-align:-6.661333pt;}
.v3{vertical-align:-5.312000pt;}
.v9{vertical-align:-3.600039pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:14.129175pt;}
.vb{vertical-align:15.106180pt;}
.v2{vertical-align:19.280000pt;}
.v4{vertical-align:20.314667pt;}
.v5{vertical-align:21.429333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.000055pt;}
.ls5b{letter-spacing:0.000238pt;}
.ls49{letter-spacing:0.000239pt;}
.ls5d{letter-spacing:0.000447pt;}
.ls47{letter-spacing:0.000495pt;}
.ls7{letter-spacing:0.000501pt;}
.lsa{letter-spacing:0.000693pt;}
.ls20{letter-spacing:0.000732pt;}
.lsc{letter-spacing:0.000891pt;}
.ls10{letter-spacing:0.001156pt;}
.ls30{letter-spacing:0.001681pt;}
.ls1a{letter-spacing:0.002022pt;}
.ls57{letter-spacing:0.002133pt;}
.ls4d{letter-spacing:0.002166pt;}
.ls3e{letter-spacing:0.002345pt;}
.ls46{letter-spacing:0.002833pt;}
.ls3c{letter-spacing:0.002906pt;}
.ls2{letter-spacing:0.002963pt;}
.ls32{letter-spacing:0.003052pt;}
.ls40{letter-spacing:0.003208pt;}
.ls18{letter-spacing:0.003738pt;}
.ls24{letter-spacing:0.004970pt;}
.ls29{letter-spacing:0.005459pt;}
.ls59{letter-spacing:0.036439pt;}
.ls41{letter-spacing:0.180818pt;}
.ls42{letter-spacing:0.181983pt;}
.ls43{letter-spacing:0.359656pt;}
.ls4f{letter-spacing:1.363881pt;}
.ls9{letter-spacing:1.714383pt;}
.ls4c{letter-spacing:1.871685pt;}
.ls4e{letter-spacing:1.873524pt;}
.ls54{letter-spacing:2.653321pt;}
.ls4a{letter-spacing:2.655527pt;}
.lsd{letter-spacing:2.655872pt;}
.ls1f{letter-spacing:2.658676pt;}
.ls3f{letter-spacing:2.659259pt;}
.ls34{letter-spacing:2.660819pt;}
.ls2f{letter-spacing:3.082303pt;}
.ls4{letter-spacing:4.383544pt;}
.lsb{letter-spacing:4.836915pt;}
.ls3d{letter-spacing:5.138173pt;}
.lse{letter-spacing:9.671825pt;}
.lsf{letter-spacing:9.673779pt;}
.ls56{letter-spacing:10.546492pt;}
.ls3a{letter-spacing:10.622172pt;}
.ls3b{letter-spacing:10.624869pt;}
.ls1e{letter-spacing:10.918719pt;}
.ls50{letter-spacing:10.919543pt;}
.ls53{letter-spacing:10.919808pt;}
.ls51{letter-spacing:10.924052pt;}
.ls1d{letter-spacing:10.924689pt;}
.ls28{letter-spacing:12.546717pt;}
.ls8{letter-spacing:12.724915pt;}
.ls12{letter-spacing:13.357008pt;}
.ls16{letter-spacing:13.574719pt;}
.ls19{letter-spacing:13.576380pt;}
.ls25{letter-spacing:13.577779pt;}
.ls15{letter-spacing:13.581158pt;}
.ls1c{letter-spacing:13.581713pt;}
.ls22{letter-spacing:13.583113pt;}
.ls45{letter-spacing:13.649386pt;}
.ls17{letter-spacing:13.649782pt;}
.ls39{letter-spacing:13.652982pt;}
.ls2c{letter-spacing:13.654719pt;}
.ls5{letter-spacing:14.757812pt;}
.ls27{letter-spacing:15.202492pt;}
.ls2d{letter-spacing:15.937485pt;}
.ls23{letter-spacing:16.307046pt;}
.ls1b{letter-spacing:16.308861pt;}
.ls2a{letter-spacing:17.380915pt;}
.ls52{letter-spacing:17.707360pt;}
.ls6{letter-spacing:17.708800pt;}
.ls5e{letter-spacing:17.709573pt;}
.ls55{letter-spacing:17.712693pt;}
.ls48{letter-spacing:18.596861pt;}
.ls44{letter-spacing:18.670053pt;}
.ls5a{letter-spacing:18.675386pt;}
.ls31{letter-spacing:19.018303pt;}
.ls5c{letter-spacing:19.612642pt;}
.ls21{letter-spacing:20.363168pt;}
.ls26{letter-spacing:20.365343pt;}
.ls33{letter-spacing:20.365925pt;}
.ls14{letter-spacing:20.367486pt;}
.ls2b{letter-spacing:26.565291pt;}
.ls1{letter-spacing:26.567193pt;}
.ls5f{letter-spacing:26.567210pt;}
.ls3{letter-spacing:26.570624pt;}
.ls2e{letter-spacing:26.570641pt;}
.ls58{letter-spacing:29.226641pt;}
.ls13{letter-spacing:42.508526pt;}
.ls38{letter-spacing:78.917205pt;}
.ls36{letter-spacing:102.162492pt;}
.ls35{letter-spacing:106.354492pt;}
.ls37{letter-spacing:123.674530pt;}
.ls4b{letter-spacing:331.566137pt;}
.ws2e{word-spacing:-53.133867pt;}
.wsa{word-spacing:-34.611401pt;}
.ws19{word-spacing:-32.063846pt;}
.ws23{word-spacing:-12.693681pt;}
.ws17{word-spacing:-10.775575pt;}
.ws46{word-spacing:-10.298335pt;}
.ws1e{word-spacing:-5.515108pt;}
.ws10{word-spacing:-0.053134pt;}
.ws12{word-spacing:-0.047821pt;}
.ws16{word-spacing:-0.042507pt;}
.ws37{word-spacing:-0.037456pt;}
.ws18{word-spacing:-0.037194pt;}
.ws39{word-spacing:-0.033710pt;}
.ws14{word-spacing:-0.031881pt;}
.ws38{word-spacing:-0.026219pt;}
.ws33{word-spacing:-0.003208pt;}
.ws8{word-spacing:0.000000pt;}
.ws1d{word-spacing:3.443602pt;}
.ws36{word-spacing:3.769553pt;}
.ws35{word-spacing:4.289166pt;}
.ws7{word-spacing:4.356977pt;}
.ws42{word-spacing:5.528492pt;}
.wsc{word-spacing:6.099750pt;}
.ws40{word-spacing:6.142728pt;}
.ws41{word-spacing:6.217639pt;}
.ws29{word-spacing:6.971181pt;}
.ws1c{word-spacing:7.481267pt;}
.ws11{word-spacing:7.839454pt;}
.ws47{word-spacing:7.842611pt;}
.ws13{word-spacing:7.844514pt;}
.ws44{word-spacing:7.938253pt;}
.ws2{word-spacing:7.970080pt;}
.ws21{word-spacing:8.129536pt;}
.ws3{word-spacing:8.713954pt;}
.ws9{word-spacing:8.820222pt;}
.ws1{word-spacing:10.456815pt;}
.ws15{word-spacing:10.816102pt;}
.ws4{word-spacing:11.476960pt;}
.ws1b{word-spacing:12.348275pt;}
.ws3b{word-spacing:12.435309pt;}
.ws3a{word-spacing:12.439107pt;}
.ws3d{word-spacing:12.447270pt;}
.ws3f{word-spacing:12.453752pt;}
.ws3e{word-spacing:12.456688pt;}
.ws3c{word-spacing:12.456937pt;}
.ws1a{word-spacing:13.605180pt;}
.ws0{word-spacing:13.772320pt;}
.ws5f{word-spacing:14.112390pt;}
.ws55{word-spacing:15.866726pt;}
.ws6{word-spacing:15.876506pt;}
.ws53{word-spacing:15.888077pt;}
.ws56{word-spacing:15.893914pt;}
.ws34{word-spacing:16.197576pt;}
.ws5b{word-spacing:17.633881pt;}
.ws58{word-spacing:17.634055pt;}
.ws65{word-spacing:17.634210pt;}
.ws63{word-spacing:17.635540pt;}
.ws5e{word-spacing:17.636496pt;}
.ws61{word-spacing:17.638240pt;}
.ws2d{word-spacing:17.638791pt;}
.ws66{word-spacing:17.639054pt;}
.ws5{word-spacing:17.640444pt;}
.ws43{word-spacing:17.653007pt;}
.ws2f{word-spacing:17.653525pt;}
.ws5d{word-spacing:17.654893pt;}
.ws22{word-spacing:17.655237pt;}
.wsb{word-spacing:17.655809pt;}
.ws62{word-spacing:17.656607pt;}
.ws60{word-spacing:17.656954pt;}
.ws68{word-spacing:17.657121pt;}
.ws30{word-spacing:17.658297pt;}
.ws64{word-spacing:17.658340pt;}
.ws59{word-spacing:17.658981pt;}
.ws67{word-spacing:17.658985pt;}
.wsd{word-spacing:17.666960pt;}
.ws31{word-spacing:17.682995pt;}
.ws5a{word-spacing:17.693578pt;}
.ws48{word-spacing:18.542217pt;}
.ws51{word-spacing:18.542729pt;}
.ws52{word-spacing:18.542746pt;}
.ws4c{word-spacing:18.544572pt;}
.ws57{word-spacing:18.544580pt;}
.ws4a{word-spacing:18.544759pt;}
.ws4f{word-spacing:18.545929pt;}
.ws4b{word-spacing:18.546202pt;}
.ws49{word-spacing:18.547550pt;}
.ws4e{word-spacing:18.548062pt;}
.ws50{word-spacing:18.549470pt;}
.ws4d{word-spacing:18.549905pt;}
.ws54{word-spacing:18.549914pt;}
.ws5c{word-spacing:20.328497pt;}
.wse{word-spacing:21.168674pt;}
.ws45{word-spacing:59.641689pt;}
.ws27{word-spacing:63.718293pt;}
.ws26{word-spacing:65.291059pt;}
.ws25{word-spacing:72.559790pt;}
.ws2a{word-spacing:120.337883pt;}
.ws24{word-spacing:127.856582pt;}
.ws32{word-spacing:129.491463pt;}
.ws2c{word-spacing:131.177219pt;}
.ws28{word-spacing:140.300628pt;}
.ws2b{word-spacing:142.994221pt;}
.wsf{word-spacing:193.035855pt;}
.ws20{word-spacing:254.357272pt;}
.ws1f{word-spacing:280.782258pt;}
._2c{margin-left:-72.938350pt;}
._2b{margin-left:-42.043345pt;}
._18{margin-left:-29.574933pt;}
._f{margin-left:-25.037409pt;}
._14{margin-left:-22.334556pt;}
._2e{margin-left:-8.856588pt;}
._a{margin-left:-5.287083pt;}
._1{margin-left:-3.504316pt;}
._3{margin-left:-2.462859pt;}
._0{margin-left:-1.469047pt;}
._d{width:1.145156pt;}
._32{width:2.600252pt;}
._15{width:3.620983pt;}
._33{width:7.098702pt;}
._22{width:8.033894pt;}
._2{width:8.944874pt;}
._27{width:9.995612pt;}
._23{width:12.733427pt;}
._11{width:17.010703pt;}
._4{width:18.594785pt;}
._10{width:19.526990pt;}
._17{width:20.733254pt;}
._c{width:23.565619pt;}
._2f{width:26.170473pt;}
._12{width:32.510300pt;}
._8{width:36.082906pt;}
._6{width:59.603254pt;}
._2a{width:72.071801pt;}
._19{width:73.537456pt;}
._1b{width:75.534688pt;}
._13{width:78.654432pt;}
._1a{width:83.016562pt;}
._29{width:90.536442pt;}
._9{width:100.939678pt;}
._16{width:117.701537pt;}
._1d{width:122.293214pt;}
._26{width:135.808700pt;}
._21{width:141.038890pt;}
._25{width:142.140231pt;}
._1f{width:146.267275pt;}
._1c{width:154.849552pt;}
._1e{width:164.541194pt;}
._20{width:170.364680pt;}
._e{width:206.159250pt;}
._b{width:212.283017pt;}
._28{width:308.760899pt;}
._30{width:309.876710pt;}
._31{width:311.497293pt;}
._2d{width:313.436679pt;}
._5{width:319.307972pt;}
._7{width:320.955122pt;}
._24{width:952.083311pt;}
.fs11{font-size:9.745120pt;}
.fs10{font-size:13.921600pt;}
.fsb{font-size:19.838519pt;}
.fsf{font-size:19.888000pt;}
.fsd{font-size:24.089539pt;}
.fs13{font-size:26.218884pt;}
.fs8{font-size:26.566933pt;}
.fsa{font-size:29.757818pt;}
.fs15{font-size:29.964600pt;}
.fs9{font-size:31.880533pt;}
.fse{font-size:32.591858pt;}
.fs14{font-size:33.710317pt;}
.fs16{font-size:37.044371pt;}
.fs5{font-size:37.193600pt;}
.fs12{font-size:37.455657pt;}
.fs17{font-size:38.351066pt;}
.fs6{font-size:39.850667pt;}
.fs4{font-size:42.507200pt;}
.fsc{font-size:43.928217pt;}
.fs7{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y61{bottom:0.114800pt;}
.y5f{bottom:1.527719pt;}
.ya9{bottom:3.033697pt;}
.yce{bottom:3.308471pt;}
.ydc{bottom:3.411976pt;}
.y60{bottom:3.647094pt;}
.y59{bottom:5.141048pt;}
.yd1{bottom:5.393184pt;}
.y18{bottom:9.381333pt;}
.ya8{bottom:10.058460pt;}
.y4c{bottom:12.478228pt;}
.ydb{bottom:12.673081pt;}
.y54{bottom:13.746586pt;}
.ya7{bottom:15.655844pt;}
.y63{bottom:16.227293pt;}
.y17{bottom:17.352000pt;}
.ydd{bottom:17.547314pt;}
.ybc{bottom:18.302803pt;}
.y5a{bottom:20.624850pt;}
.ya4{bottom:25.101333pt;}
.y64{bottom:27.945601pt;}
.yea{bottom:28.270651pt;}
.y4b{bottom:29.786258pt;}
.y55{bottom:30.093527pt;}
.y5e{bottom:30.442430pt;}
.yde{bottom:31.682639pt;}
.yda{bottom:31.906667pt;}
.yf3{bottom:32.977333pt;}
.y58{bottom:33.318366pt;}
.y111{bottom:34.862667pt;}
.y4a{bottom:35.437930pt;}
.y99{bottom:35.553333pt;}
.y5b{bottom:36.108653pt;}
.yaa{bottom:36.995089pt;}
.yc9{bottom:37.790827pt;}
.y45{bottom:38.370667pt;}
.y37{bottom:38.410667pt;}
.y65{bottom:39.663859pt;}
.y51{bottom:39.676560pt;}
.y11f{bottom:39.830667pt;}
.ye{bottom:41.009333pt;}
.y2f{bottom:41.777333pt;}
.y62{bottom:42.149113pt;}
.y100{bottom:42.177333pt;}
.ya3{bottom:42.265333pt;}
.y52{bottom:42.502645pt;}
.ybd{bottom:43.807170pt;}
.y2a{bottom:44.222667pt;}
.ydf{bottom:44.843092pt;}
.y56{bottom:46.440966pt;}
.y77{bottom:47.956000pt;}
.y4f{bottom:49.567360pt;}
.yeb{bottom:49.717388pt;}
.ybb{bottom:50.080000pt;}
.y110{bottom:50.802667pt;}
.y66{bottom:51.382366pt;}
.y5c{bottom:51.592952pt;}
.y50{bottom:52.392947pt;}
.yc3{bottom:54.042939pt;}
.y31{bottom:55.366667pt;}
.y98{bottom:55.478667pt;}
.y11e{bottom:55.770667pt;}
.yff{bottom:56.789333pt;}
.ya2{bottom:58.205333pt;}
.ye0{bottom:58.491045pt;}
.yab{bottom:59.222252pt;}
.y4d{bottom:59.457662pt;}
.y29{bottom:60.162667pt;}
.y2e{bottom:60.373333pt;}
.y4e{bottom:62.283250pt;}
.y76{bottom:62.568000pt;}
.y32{bottom:62.772000pt;}
.y67{bottom:63.100375pt;}
.yba{bottom:64.692000pt;}
.y5d{bottom:67.076755pt;}
.y97{bottom:70.090667pt;}
.y47{bottom:70.720000pt;}
.yfe{bottom:71.401333pt;}
.y53{bottom:71.576415pt;}
.ye1{bottom:71.651309pt;}
.y11d{bottom:71.712000pt;}
.y10c{bottom:71.825333pt;}
.yb0{bottom:72.516491pt;}
.ya1{bottom:74.145333pt;}
.y16{bottom:74.917333pt;}
.y28{bottom:76.104000pt;}
.y75{bottom:77.180000pt;}
.y2d{bottom:78.970667pt;}
.ybe{bottom:80.825394pt;}
.yac{bottom:81.449415pt;}
.ycc{bottom:83.512587pt;}
.yb9{bottom:84.617333pt;}
.ye2{bottom:85.299388pt;}
.yfd{bottom:86.013333pt;}
.y10b{bottom:87.765333pt;}
.y5{bottom:88.008000pt;}
.yd2{bottom:90.633320pt;}
.y15{bottom:90.857333pt;}
.y74{bottom:91.792000pt;}
.y27{bottom:92.044000pt;}
.yec{bottom:93.098110pt;}
.y11c{bottom:94.293333pt;}
.yc8{bottom:95.106336pt;}
.y96{bottom:95.329333pt;}
.y2c{bottom:97.568000pt;}
.ye3{bottom:98.459652pt;}
.ycd{bottom:102.010890pt;}
.yfc{bottom:103.281333pt;}
.yad{bottom:103.676578pt;}
.y4{bottom:103.948000pt;}
.y10a{bottom:106.362667pt;}
.y14{bottom:106.797333pt;}
.y26{bottom:107.984000pt;}
.y73{bottom:109.060000pt;}
.y57{bottom:109.919082pt;}
.ye4{bottom:112.107731pt;}
.y33{bottom:112.557333pt;}
.ycb{bottom:112.646874pt;}
.y11b{bottom:112.890667pt;}
.y105{bottom:112.968000pt;}
.yed{bottom:114.544911pt;}
.y2b{bottom:116.164000pt;}
.ybf{bottom:117.844558pt;}
.y95{bottom:117.912000pt;}
.y38{bottom:121.906667pt;}
.y13{bottom:122.737333pt;}
.yfb{bottom:123.206667pt;}
.y109{bottom:123.632000pt;}
.y25{bottom:123.924000pt;}
.ye5{bottom:125.267995pt;}
.yae{bottom:125.903741pt;}
.y72{bottom:126.329333pt;}
.y104{bottom:128.908000pt;}
.y11a{bottom:131.486667pt;}
.y94{bottom:135.180000pt;}
.ye9{bottom:135.503897pt;}
.yee{bottom:135.991711pt;}
.y44{bottom:137.528000pt;}
.yfa{bottom:137.818667pt;}
.yca{bottom:138.116465pt;}
.ye6{bottom:138.916074pt;}
.y108{bottom:140.900000pt;}
.y71{bottom:140.941333pt;}
.yb2{bottom:141.372087pt;}
.y12{bottom:142.662667pt;}
.y3{bottom:143.622667pt;}
.y103{bottom:144.848000pt;}
.y24{bottom:146.506667pt;}
.y119{bottom:147.428000pt;}
.yaf{bottom:148.130904pt;}
.yb1{bottom:149.296212pt;}
.ye8{bottom:149.639790pt;}
.ye7{bottom:152.076970pt;}
.yf9{bottom:152.430667pt;}
.y93{bottom:152.448000pt;}
.yc0{bottom:154.863722pt;}
.yc5{bottom:155.349654pt;}
.y70{bottom:155.553333pt;}
.y43{bottom:158.225333pt;}
.y9a{bottom:158.329333pt;}
.y11{bottom:158.602667pt;}
.ya5{bottom:159.998960pt;}
.y2{bottom:162.218667pt;}
.y34{bottom:162.254667pt;}
.ya6{bottom:165.437085pt;}
.y107{bottom:166.138667pt;}
.yf8{bottom:167.042667pt;}
.y92{bottom:167.060000pt;}
.yc7{bottom:167.221615pt;}
.y102{bottom:167.430667pt;}
.y118{bottom:170.009333pt;}
.y1b{bottom:170.758667pt;}
.y10{bottom:174.544000pt;}
.y23{bottom:174.581333pt;}
.y6f{bottom:175.477333pt;}
.y40{bottom:179.630667pt;}
.yf7{bottom:184.310667pt;}
.yc6{bottom:184.924757pt;}
.y91{bottom:186.985333pt;}
.y117{bottom:188.606667pt;}
.y49{bottom:189.395507pt;}
.y48{bottom:189.706667pt;}
.yf{bottom:190.484000pt;}
.y22{bottom:190.522667pt;}
.yc1{bottom:191.882886pt;}
.yef{bottom:192.549333pt;}
.y3f{bottom:193.849333pt;}
.yd0{bottom:194.281528pt;}
.yc4{bottom:197.962202pt;}
.y6e{bottom:198.060000pt;}
.yb8{bottom:201.288000pt;}
.y1e{bottom:202.988000pt;}
.ycf{bottom:203.644878pt;}
.yf6{bottom:204.236000pt;}
.y116{bottom:204.546667pt;}
.yd9{bottom:205.912000pt;}
.y21{bottom:206.462667pt;}
.y8f{bottom:206.946667pt;}
.y1{bottom:207.382667pt;}
.y3e{bottom:208.068000pt;}
.y7d{bottom:211.166667pt;}
.y35{bottom:211.952000pt;}
.y6d{bottom:212.672000pt;}
.y9f{bottom:215.125333pt;}
.yb7{bottom:215.900000pt;}
.y8e{bottom:217.596000pt;}
.yf5{bottom:218.848000pt;}
.y1d{bottom:218.928000pt;}
.y106{bottom:220.420000pt;}
.y115{bottom:220.486667pt;}
.yd{bottom:220.973333pt;}
.ya{bottom:221.398667pt;}
.y81{bottom:221.793333pt;}
.yd8{bottom:221.852000pt;}
.y3d{bottom:222.286667pt;}
.y20{bottom:222.402667pt;}
.y7c{bottom:222.886667pt;}
.y8d{bottom:223.973333pt;}
.yc2{bottom:228.901110pt;}
.ya0{bottom:229.265333pt;}
.y6c{bottom:229.940000pt;}
.y10f{bottom:231.046667pt;}
.y9e{bottom:231.065333pt;}
.y80{bottom:232.420000pt;}
.y7b{bottom:234.608000pt;}
.y8c{bottom:234.622667pt;}
.y1c{bottom:234.868000pt;}
.yb6{bottom:235.825333pt;}
.yf4{bottom:236.116000pt;}
.y3c{bottom:236.505333pt;}
.yc{bottom:236.913333pt;}
.y9{bottom:237.338667pt;}
.yd7{bottom:237.792000pt;}
.y114{bottom:239.084000pt;}
.y1f{bottom:244.984000pt;}
.yd4{bottom:245.596672pt;}
.y9d{bottom:247.005333pt;}
.y6b{bottom:247.209333pt;}
.y46{bottom:247.590667pt;}
.y7f{bottom:249.908000pt;}
.y3b{bottom:250.724000pt;}
.y7a{bottom:252.096000pt;}
.yb{bottom:252.853333pt;}
.y8{bottom:253.278667pt;}
.y113{bottom:255.024000pt;}
.y7e{bottom:255.221333pt;}
.yb5{bottom:255.750667pt;}
.y42{bottom:256.792000pt;}
.yd6{bottom:257.717333pt;}
.yd3{bottom:258.917969pt;}
.yf2{bottom:259.476000pt;}
.y101{bottom:260.436000pt;}
.y68{bottom:261.297333pt;}
.y36{bottom:261.650667pt;}
.y6a{bottom:264.477333pt;}
.y3a{bottom:264.942667pt;}
.yb4{bottom:270.362667pt;}
.y9c{bottom:270.916000pt;}
.y1a{bottom:272.970667pt;}
.yd5{bottom:273.657333pt;}
.y112{bottom:274.949333pt;}
.yf1{bottom:275.416000pt;}
.y79{bottom:276.376000pt;}
.y41{bottom:277.004000pt;}
.y7{bottom:278.352000pt;}
.y39{bottom:279.161333pt;}
.y69{bottom:284.402667pt;}
.yb3{bottom:284.974667pt;}
.y9b{bottom:286.856000pt;}
.y19{bottom:288.910667pt;}
.y78{bottom:292.317333pt;}
.yf0{bottom:294.013333pt;}
.y30{bottom:296.756000pt;}
.y90{bottom:314.581333pt;}
.y6{bottom:316.246667pt;}
.y10e{bottom:2701.563720pt;}
.y8a{bottom:2702.254387pt;}
.y10d{bottom:2717.503720pt;}
.y89{bottom:2722.179720pt;}
.y88{bottom:2736.791720pt;}
.y87{bottom:2762.030387pt;}
.y86{bottom:2784.613053pt;}
.y85{bottom:2801.881053pt;}
.y84{bottom:2819.149053pt;}
.y8b{bottom:2825.030387pt;}
.y83{bottom:2833.761053pt;}
.y82{bottom:2853.686387pt;}
.h1d{height:12.933166pt;}
.h1c{height:18.475952pt;}
.h12{height:20.690955pt;}
.h23{height:22.259833pt;}
.h8{height:22.555326pt;}
.h27{height:23.934325pt;}
.h14{height:25.124636pt;}
.h22{height:26.368782pt;}
.h26{height:28.620059pt;}
.h11{height:31.036474pt;}
.h9{height:31.577366pt;}
.h24{height:31.799852pt;}
.h17{height:33.952768pt;}
.h15{height:33.992289pt;}
.h2c{height:34.152021pt;}
.h16{height:34.820130pt;}
.h2b{height:35.523424pt;}
.h1f{height:35.850883pt;}
.h20{height:35.854643pt;}
.hf{height:35.865600pt;}
.hd{height:36.088613pt;}
.h25{height:37.366013pt;}
.h6{height:37.725045pt;}
.h2a{height:38.636121pt;}
.h2e{height:39.850400pt;}
.h7{height:40.599859pt;}
.h13{height:40.689369pt;}
.h18{height:40.982426pt;}
.h19{height:42.069239pt;}
.h4{height:45.110653pt;}
.h2f{height:45.535724pt;}
.hc{height:47.381239pt;}
.h28{height:47.836789pt;}
.ha{height:50.857366pt;}
.hb{height:50.862700pt;}
.h2d{height:53.001366pt;}
.he{height:53.006700pt;}
.h3{height:54.133146pt;}
.h5{height:54.324277pt;}
.h1a{height:57.341946pt;}
.h2{height:65.188981pt;}
.h10{height:78.999611pt;}
.h29{height:163.775052pt;}
.h1b{height:178.992000pt;}
.h21{height:212.437987pt;}
.h1e{height:268.489979pt;}
.h1{height:340.000000pt;}
.h0{height:340.157333pt;}
.w5{width:195.085063pt;}
.w4{width:231.160646pt;}
.w3{width:238.656000pt;}
.w2{width:271.199456pt;}
.w6{width:357.769994pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x56{left:10.244973pt;}
.x1d{left:11.374679pt;}
.x62{left:13.647889pt;}
.x1c{left:14.906986pt;}
.x21{left:16.927856pt;}
.x1{left:18.897333pt;}
.x2{left:19.812000pt;}
.x51{left:21.005034pt;}
.xa{left:22.834667pt;}
.x60{left:24.858663pt;}
.x4d{left:25.971678pt;}
.x4c{left:28.381833pt;}
.x2b{left:29.536000pt;}
.xd{left:31.720000pt;}
.x61{left:32.657511pt;}
.x26{left:33.566667pt;}
.x58{left:37.149802pt;}
.xe{left:38.394667pt;}
.xf{left:40.021333pt;}
.x20{left:41.347436pt;}
.x37{left:43.183759pt;}
.x27{left:44.477333pt;}
.x52{left:46.164545pt;}
.x4e{left:48.228400pt;}
.x4b{left:49.949219pt;}
.x4a{left:51.116375pt;}
.x23{left:52.702738pt;}
.xc{left:56.945333pt;}
.x54{left:60.632430pt;}
.x28{left:61.870667pt;}
.x49{left:69.115324pt;}
.x48{left:70.282479pt;}
.x2c{left:79.716000pt;}
.x53{left:81.562271pt;}
.x47{left:82.769488pt;}
.x10{left:84.218667pt;}
.x38{left:89.740716pt;}
.x5b{left:92.996245pt;}
.x68{left:97.824000pt;}
.x46{left:101.266820pt;}
.x45{left:102.433976pt;}
.x57{left:105.331571pt;}
.x24{left:111.338529pt;}
.x44{left:113.364137pt;}
.x43{left:114.531293pt;}
.x6b{left:122.733333pt;}
.x42{left:128.371786pt;}
.x41{left:129.538941pt;}
.x8{left:133.114667pt;}
.x59{left:139.692679pt;}
.x9{left:147.344000pt;}
.x40{left:148.848845pt;}
.x5a{left:154.609938pt;}
.x55{left:155.508489pt;}
.x3f{left:159.669904pt;}
.x3{left:160.569333pt;}
.x3e{left:173.840868pt;}
.x3d{left:175.008024pt;}
.x3c{left:190.949058pt;}
.x3b{left:192.116214pt;}
.x22{left:193.641039pt;}
.x1f{left:209.536523pt;}
.x3a{left:212.173078pt;}
.x39{left:213.340233pt;}
.x1e{left:215.188195pt;}
.x5{left:220.896000pt;}
.x4f{left:239.881333pt;}
.x5f{left:243.732000pt;}
.x67{left:246.584000pt;}
.x50{left:253.637333pt;}
.x14{left:258.109333pt;}
.x12{left:262.073333pt;}
.x11{left:263.092000pt;}
.x13{left:264.162667pt;}
.x5d{left:273.964000pt;}
.x36{left:280.390667pt;}
.x5e{left:288.193333pt;}
.x15{left:301.448000pt;}
.x16{left:315.677333pt;}
.x1b{left:333.524544pt;}
.x4{left:335.844000pt;}
.x63{left:339.248188pt;}
.x6{left:343.394667pt;}
.x7{left:345.293333pt;}
.x6c{left:355.580000pt;}
.x65{left:358.101333pt;}
.x5c{left:362.945333pt;}
.x29{left:369.358667pt;}
.x66{left:371.856000pt;}
.x2a{left:379.082667pt;}
.x34{left:408.210667pt;}
.x33{left:426.126667pt;}
.x1a{left:448.120000pt;}
.x19{left:452.029333pt;}
.xb{left:454.989333pt;}
.x64{left:463.200000pt;}
.x35{left:515.648000pt;}
.x32{left:521.558667pt;}
.x30{left:522.449333pt;}
.x31{left:527.469333pt;}
.x18{left:546.954667pt;}
.x17{left:557.581333pt;}
.x25{left:592.310667pt;}
.x2d{left:2686.513053pt;}
.x2e{left:2700.267720pt;}
.x69{left:2913.285053pt;}
.x6a{left:3022.281053pt;}
.x2f{left:3074.911720pt;}
}




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