
    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_9a301232444d714951229d4a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.945000;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_15da053a007f2dee1a6f5a55.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.675000;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_18edb862be46c4b52e0f10a9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.946000;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_bd17ce0b954cfd6cac553b4f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.988000;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_08fd144f32699bd4938a8e1d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.988000;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_5ad6d25a0b4fed4dc5b5ca87.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.988000;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_bd17ce0b954cfd6cac553b4f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.988000;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_08fd144f32699bd4938a8e1d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.988000;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_1926f92ced0d94c5cd4dcfaa.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.988000;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_08fd144f32699bd4938a8e1d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.988000;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_a4e1323ab06da3b3c9805fa7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.578000;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_bd17ce0b954cfd6cac553b4f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.988000;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_08fd144f32699bd4938a8e1d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.988000;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_052f2f22015345f9cabd8cfe.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.975586;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_af57cc31a8953fc602bb30ed.woff2')format("woff");}.fff{font-family:fff;line-height:0.975586;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_7d54fa695f39579c02f7fd41.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.467000;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_f3c2a38a6dbf765afdf64472.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff12{font-family:sans-serif;visibility:hidden;}
.ff13{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff14;src:url('chunks/assets/font_80421415c9f2670d405bcddc.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.939453;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_a9a733fb9447d91b4ec3fe1a.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.938477;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_721070a094eaa40a80d311b6.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.932129;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:ff17;src:url('chunks/assets/font_aa0faf32d1dfba06d47e91e6.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.005000;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:ff18;src:url('chunks/assets/font_aa59a3bed78c0059b1097e29.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.963379;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_04164c396f24a33b57299711.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_41736fb9b56d70d6a63f2386.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.976587;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_acb59b248f8e9bf5921667c3.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.967773;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_acb59b248f8e9bf5921667c3.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.967773;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_31c1b831a603451148e717ac.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.205000;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_3956a74b56a5409913560fac.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.522000;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;}
.m4{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);}
.m3{transform:matrix(0.255130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255130,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.256324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256324,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);}
.v5{vertical-align:-9.650798px;}
.v6{vertical-align:-8.268000px;}
.v1{vertical-align:-5.304000px;}
.v4{vertical-align:-3.003797px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:10.505160px;}
.v2{vertical-align:12.273030px;}
.v3{vertical-align:14.362030px;}
.v8{vertical-align:48.212100px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:9.617458px;}
.ls7{letter-spacing:10.420625px;}
.lsf{letter-spacing:14.941368px;}
.lse{letter-spacing:14.947368px;}
.lsa{letter-spacing:15.381831px;}
.ls11{letter-spacing:16.361400px;}
.ls9{letter-spacing:16.363650px;}
.ls6{letter-spacing:17.540762px;}
.ls12{letter-spacing:19.088527px;}
.lsc{letter-spacing:19.112743px;}
.ls8{letter-spacing:21.517441px;}
.lsd{letter-spacing:23.580720px;}
.ls3{letter-spacing:28.810975px;}
.ls4{letter-spacing:28.820935px;}
.ls10{letter-spacing:50.210496px;}
.ls1{letter-spacing:52.499421px;}
.ls2{letter-spacing:52.505421px;}
.lsb{letter-spacing:62.584865px;}
.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;}
}
.ws11{word-spacing:-32.727300px;}
.ws28{word-spacing:-25.398594px;}
.ws26{word-spacing:-17.036538px;}
.ws1{word-spacing:-16.363650px;}
.ws36{word-spacing:-14.943900px;}
.ws23{word-spacing:-14.674083px;}
.ws27{word-spacing:-12.770742px;}
.ws37{word-spacing:-11.249686px;}
.ws7{word-spacing:-10.420327px;}
.ws4{word-spacing:-9.617458px;}
.ws2f{word-spacing:-8.880362px;}
.wse{word-spacing:-7.680150px;}
.ws2e{word-spacing:-7.104724px;}
.wsf{word-spacing:-6.720121px;}
.ws1f{word-spacing:-4.388349px;}
.ws20{word-spacing:-3.839799px;}
.ws3f{word-spacing:-1.767274px;}
.ws14{word-spacing:-0.981819px;}
.ws15{word-spacing:-0.916364px;}
.ws41{word-spacing:-0.327273px;}
.ws32{word-spacing:-0.130909px;}
.ws12{word-spacing:-0.065455px;}
.ws31{word-spacing:-0.059776px;}
.ws10{word-spacing:-0.026048px;}
.ws21{word-spacing:-0.014884px;}
.ws18{word-spacing:-0.005614px;}
.ws1c{word-spacing:-0.005014px;}
.ws8{word-spacing:-0.003011px;}
.ws6{word-spacing:-0.003003px;}
.ws3d{word-spacing:-0.002842px;}
.ws3b{word-spacing:-0.002812px;}
.wsc{word-spacing:-0.002672px;}
.ws3c{word-spacing:-0.001769px;}
.ws2{word-spacing:-0.001316px;}
.ws22{word-spacing:-0.000952px;}
.ws9{word-spacing:-0.000781px;}
.ws40{word-spacing:-0.000122px;}
.ws0{word-spacing:0.000000px;}
.wsb{word-spacing:0.001568px;}
.ws1d{word-spacing:0.003179px;}
.ws1b{word-spacing:1.494106px;}
.ws17{word-spacing:1.506355px;}
.ws25{word-spacing:2.008465px;}
.ws13{word-spacing:2.225456px;}
.ws30{word-spacing:2.238096px;}
.ws2a{word-spacing:2.492964px;}
.ws33{word-spacing:2.749093px;}
.ws1e{word-spacing:15.753568px;}
.ws24{word-spacing:16.302161px;}
.ws2d{word-spacing:22.918118px;}
.wsd{word-spacing:27.570683px;}
.ws3e{word-spacing:30.557363px;}
.ws34{word-spacing:34.377178px;}
.ws2b{word-spacing:41.825489px;}
.ws35{word-spacing:68.808154px;}
.ws19{word-spacing:71.282557px;}
.wsa{word-spacing:145.695487px;}
.ws5{word-spacing:145.717997px;}
.ws38{word-spacing:156.005157px;}
.ws3a{word-spacing:156.782432px;}
.ws3{word-spacing:158.108089px;}
.ws2c{word-spacing:161.869226px;}
.ws16{word-spacing:173.873859px;}
.ws39{word-spacing:181.878633px;}
.ws1a{word-spacing:294.676696px;}
.ws29{word-spacing:1042.320349px;}
._12{margin-left:-127.323000px;}
._11{margin-left:-108.047423px;}
._1d{margin-left:-72.750883px;}
._1c{margin-left:-61.737042px;}
._13{margin-left:-16.496260px;}
._22{margin-left:-8.047343px;}
._21{margin-left:-7.003154px;}
._b{margin-left:-5.322439px;}
._1a{margin-left:-3.992731px;}
._1{margin-left:-2.343209px;}
._0{margin-left:-1.047274px;}
._18{width:1.112728px;}
._4{width:2.117686px;}
._5{width:3.547123px;}
._2{width:4.658908px;}
._10{width:5.725274px;}
._3{width:7.094247px;}
._16{width:9.081481px;}
._19{width:10.284074px;}
._c{width:12.391476px;}
._1b{width:13.571485px;}
._20{width:14.863358px;}
._e{width:16.637427px;}
._15{width:18.367628px;}
._a{width:20.029108px;}
._1f{width:26.086169px;}
._29{width:28.715722px;}
._6{width:44.545075px;}
._7{width:53.403878px;}
._28{width:64.294952px;}
._2a{width:68.861952px;}
._26{width:71.738242px;}
._27{width:76.743913px;}
._9{width:80.410675px;}
._d{width:183.298316px;}
._24{width:331.224843px;}
._23{width:572.681181px;}
._f{width:582.312258px;}
._17{width:761.436963px;}
._8{width:778.116963px;}
._14{width:1064.815433px;}
._1e{width:1093.791445px;}
._25{width:1477.684211px;}
.fc17{color:rgb(146,208,80);}
.fc15{color:rgb(0,151,167);}
.fc13{color:rgb(218,147,13);}
.fc12{color:rgb(215,7,81);}
.fc11{color:rgb(96,96,96);}
.fc10{color:rgb(240,81,51);}
.fce{color:rgb(122,0,0);}
.fc16{color:rgb(41,128,185);}
.fc0{color:rgb(255,255,255);}
.fcf{color:rgb(255,0,0);}
.fc7{color:rgb(249,206,194);}
.fcc{color:rgb(242,242,242);}
.fc2{color:rgb(82,86,109);}
.fca{color:rgb(189,25,25);}
.fc3{color:transparent;}
.fc19{color:rgb(232,103,88);}
.fcd{color:rgb(143,0,0);}
.fc4{color:rgb(252,230,223);}
.fc1{color:rgb(0,0,0);}
.fc5{color:rgb(224,45,48);}
.fc18{color:rgb(0,176,80);}
.fc14{color:rgb(245,245,245);}
.fc8{color:rgb(0,173,239);}
.fc6{color:rgb(254,250,248);}
.fcb{color:rgb(51,51,178);}
.fc9{color:rgb(204,0,0);}
.fs1c{font-size:8.484968px;}
.fs1b{font-size:8.484969px;}
.fs19{font-size:11.033905px;}
.fs1d{font-size:11.313244px;}
.fs1a{font-size:12.610198px;}
.fs1f{font-size:14.584309px;}
.fsf{font-size:14.849738px;}
.fse{font-size:14.849740px;}
.fs1e{font-size:14.883569px;}
.fs18{font-size:15.501600px;}
.fsc{font-size:19.310693px;}
.fs6{font-size:19.606766px;}
.fs10{font-size:19.799569px;}
.fsd{font-size:22.069398px;}
.fs29{font-size:22.412377px;}
.fs15{font-size:22.442112px;}
.fs12{font-size:25.524335px;}
.fs11{font-size:26.048077px;}
.fs17{font-size:26.716800px;}
.fs8{font-size:27.680102px;}
.fs28{font-size:28.013760px;}
.fs9{font-size:30.434993px;}
.fs13{font-size:32.060160px;}
.fs7{font-size:32.975717px;}
.fsa{font-size:35.752796px;}
.fs4{font-size:35.865600px;}
.fs14{font-size:37.403520px;}
.fsb{font-size:42.351660px;}
.fs5{font-size:42.442416px;}
.fs16{font-size:42.746880px;}
.fs2b{font-size:44.998744px;}
.fs2{font-size:47.820600px;}
.fs24{font-size:49.118240px;}
.fs3{font-size:52.942140px;}
.fs21{font-size:52.975029px;}
.fs2a{font-size:53.798400px;}
.fs27{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs23{font-size:68.419830px;}
.fs26{font-size:68.563878px;}
.fs20{font-size:83.966348px;}
.fs0{font-size:86.077200px;}
.fs22{font-size:90.746309px;}
.fs25{font-size:102.413685px;}
.y0{bottom:0.000000px;}
.y116{bottom:0.393230px;}
.y24{bottom:2.597482px;}
.y2d{bottom:2.598286px;}
.y15d{bottom:2.626290px;}
.yb0{bottom:3.778660px;}
.yb{bottom:3.873000px;}
.y91{bottom:6.750167px;}
.yaf{bottom:9.077059px;}
.y1a4{bottom:9.482338px;}
.y11e{bottom:9.830844px;}
.yf4{bottom:11.486447px;}
.y118{bottom:12.243544px;}
.yb1{bottom:13.261280px;}
.y9{bottom:13.744500px;}
.yfb{bottom:14.460193px;}
.y15b{bottom:14.837855px;}
.y2b{bottom:15.196594px;}
.y1a6{bottom:15.508852px;}
.y40{bottom:16.317131px;}
.y90{bottom:18.198733px;}
.y3a{bottom:19.989595px;}
.y7f{bottom:20.102696px;}
.yf3{bottom:20.213372px;}
.ya{bottom:20.397402px;}
.yd4{bottom:20.962841px;}
.y19f{bottom:21.270000px;}
.y1a3{bottom:21.535364px;}
.y1a2{bottom:21.535366px;}
.yc3{bottom:22.350000px;}
.y14f{bottom:22.980038px;}
.y115{bottom:23.931000px;}
.y2c{bottom:24.807518px;}
.yd3{bottom:24.903572px;}
.y86{bottom:25.307119px;}
.y45{bottom:25.428000px;}
.y48{bottom:25.753500px;}
.y4b{bottom:26.850000px;}
.y2a{bottom:27.210449px;}
.y1a5{bottom:27.561878px;}
.yb2{bottom:29.024486px;}
.ya1{bottom:30.622500px;}
.y92{bottom:30.747450px;}
.y39{bottom:30.881975px;}
.ye5{bottom:32.206085px;}
.y1d3{bottom:33.192000px;}
.y150{bottom:33.310795px;}
.y172{bottom:34.047000px;}
.y3e{bottom:34.150734px;}
.y1b{bottom:34.453500px;}
.ya2{bottom:34.978500px;}
.ybb{bottom:35.185500px;}
.ya3{bottom:35.293500px;}
.y7e{bottom:35.375889px;}
.y13c{bottom:35.949000px;}
.ye4{bottom:36.146823px;}
.y5f{bottom:36.687552px;}
.y29{bottom:36.821373px;}
.y8e{bottom:37.059000px;}
.y1ae{bottom:37.119000px;}
.y1df{bottom:37.273500px;}
.y114{bottom:38.127000px;}
.y1c6{bottom:38.421000px;}
.yfa{bottom:39.828923px;}
.y1a1{bottom:40.016671px;}
.yee{bottom:43.059939px;}
.y89{bottom:43.230000px;}
.y5e{bottom:43.584317px;}
.y151{bottom:43.682590px;}
.ye1{bottom:44.095112px;}
.yb3{bottom:44.787692px;}
.y11d{bottom:44.869002px;}
.y44{bottom:45.751500px;}
.y47{bottom:46.077000px;}
.yed{bottom:46.508128px;}
.ycd{bottom:47.074961px;}
.y4a{bottom:47.173500px;}
.y189{bottom:48.351000px;}
.y28{bottom:48.835228px;}
.ye0{bottom:49.904802px;}
.yba{bottom:50.128500px;}
.ycc{bottom:50.523056px;}
.y15c{bottom:52.300104px;}
.y1c5{bottom:52.618500px;}
.y19e{bottom:52.816500px;}
.y1d2{bottom:53.515500px;}
.y152{bottom:54.013347px;}
.yf5{bottom:54.369288px;}
.y38{bottom:54.769802px;}
.y70{bottom:56.364614px;}
.yd6{bottom:56.744825px;}
.yec{bottom:57.023019px;}
.y14e{bottom:57.186000px;}
.yf9{bottom:57.241503px;}
.y164{bottom:57.420000px;}
.y1ad{bottom:57.442500px;}
.yc2{bottom:57.460500px;}
.ycb{bottom:57.546634px;}
.y1de{bottom:57.597000px;}
.y27{bottom:58.446151px;}
.y171{bottom:58.854000px;}
.yd5{bottom:59.876573px;}
.yeb{bottom:60.471208px;}
.yb4{bottom:60.550898px;}
.y13b{bottom:60.754500px;}
.yca{bottom:60.994824px;}
.y8f{bottom:61.498500px;}
.ydf{bottom:61.805448px;}
.y8d{bottom:61.867500px;}
.y6f{bottom:63.261389px;}
.y109{bottom:63.859222px;}
.y17b{bottom:64.147500px;}
.y153{bottom:64.344105px;}
.y37{bottom:64.380726px;}
.y188{bottom:64.789500px;}
.yb9{bottom:65.073000px;}
.y11c{bottom:65.250911px;}
.yd8{bottom:66.650421px;}
.y1c4{bottom:66.814500px;}
.y3d{bottom:66.842344px;}
.yf1{bottom:67.220433px;}
.yd0{bottom:67.477356px;}
.y13{bottom:67.851000px;}
.y147{bottom:67.996500px;}
.y88{bottom:68.037000px;}
.ydd{bottom:68.068944px;}
.yf8{bottom:68.499524px;}
.yf2{bottom:69.084154px;}
.yd9{bottom:69.665544px;}
.y85{bottom:69.705519px;}
.yf0{bottom:71.161164px;}
.yde{bottom:71.200691px;}
.ycf{bottom:71.418087px;}
.y26{bottom:72.428015px;}
.y19d{bottom:73.140000px;}
.y36{bottom:74.392808px;}
.y154{bottom:74.715898px;}
.y123{bottom:74.925000px;}
.yef{bottom:75.101895px;}
.y1b8{bottom:75.166500px;}
.yce{bottom:75.358818px;}
.y79{bottom:75.360194px;}
.yb5{bottom:76.314104px;}
.yd7{bottom:76.611332px;}
.y6c{bottom:77.171874px;}
.y3c{bottom:77.734724px;}
.y93{bottom:77.737833px;}
.yc1{bottom:77.784000px;}
.y1d1{bottom:78.322500px;}
.y102{bottom:78.577500px;}
.yf7{bottom:78.757402px;}
.yda{bottom:79.072674px;}
.yc9{bottom:79.446657px;}
.yff{bottom:80.380500px;}
.y1c3{bottom:81.012000px;}
.y187{bottom:81.228000px;}
.ydb{bottom:81.383176px;}
.y78{bottom:81.394949px;}
.y113{bottom:81.832500px;}
.y1ac{bottom:82.249500px;}
.y58{bottom:82.386976px;}
.y1dd{bottom:82.404000px;}
.yc8{bottom:82.894840px;}
.y170{bottom:83.661000px;}
.y13a{bottom:84.321000px;}
.y17a{bottom:84.471000px;}
.yea{bottom:84.949184px;}
.y155{bottom:85.046657px;}
.y11b{bottom:85.776862px;}
.y6b{bottom:87.339546px;}
.y146{bottom:88.320000px;}
.ye9{bottom:88.397363px;}
.y57{bottom:88.421567px;}
.yf6{bottom:88.577544px;}
.y3b{bottom:90.551700px;}
.yc7{bottom:91.275305px;}
.yb6{bottom:92.077310px;}
.ydc{bottom:92.094100px;}
.y35{bottom:92.371786px;}
.y87{bottom:92.844000px;}
.y105{bottom:94.019200px;}
.yc6{bottom:94.723488px;}
.y80{bottom:95.152947px;}
.y156{bottom:95.384639px;}
.y1b7{bottom:95.490000px;}
.y8c{bottom:96.628500px;}
.y19c{bottom:96.705000px;}
.y192{bottom:97.561500px;}
.y186{bottom:97.666500px;}
.y1d0{bottom:98.646000px;}
.ye3{bottom:98.916663px;}
.y61{bottom:99.310429px;}
.y122{bottom:99.732000px;}
.y77{bottom:99.797302px;}
.y84{bottom:100.179676px;}
.yd2{bottom:100.244573px;}
.y56{bottom:100.713694px;}
.ye8{bottom:102.403034px;}
.ye2{bottom:102.452089px;}
.y16f{bottom:102.582000px;}
.yc0{bottom:102.591000px;}
.y34{bottom:103.264166px;}
.y101{bottom:103.384500px;}
.y97{bottom:103.919168px;}
.yd1{bottom:104.185228px;}
.yad{bottom:104.349000px;}
.y60{bottom:104.791373px;}
.y179{bottom:104.794500px;}
.yfe{bottom:105.187500px;}
.y157{bottom:105.715397px;}
.yb8{bottom:105.745085px;}
.y76{bottom:105.832058px;}
.ye7{bottom:105.851212px;}
.y11a{bottom:106.122761px;}
.y23{bottom:106.216983px;}
.y55{bottom:106.748449px;}
.y1ab{bottom:107.058000px;}
.y12{bottom:107.268000px;}
.y1dc{bottom:107.524500px;}
.y8{bottom:107.554500px;}
.yb7{bottom:107.840516px;}
.y6a{bottom:108.167142px;}
.y145{bottom:108.645000px;}
.y1c2{bottom:108.658500px;}
.yae{bottom:109.129500px;}
.ye6{bottom:109.402549px;}
.y104{bottom:109.917762px;}
.y112{bottom:111.123000px;}
.y191{bottom:113.998500px;}
.y185{bottom:114.103500px;}
.y33{bottom:114.157350px;}
.y158{bottom:116.046154px;}
.y63{bottom:116.646442px;}
.y7c{bottom:117.644032px;}
.y5b{bottom:118.093679px;}
.y68{bottom:119.129030px;}
.y22{bottom:119.512294px;}
.y83{bottom:119.882599px;}
.y7d{bottom:120.905773px;}
.y64{bottom:121.923278px;}
.y139{bottom:122.388000px;}
.y121{bottom:122.905500px;}
.ybf{bottom:122.914500px;}
.y1cf{bottom:123.453000px;}
.y7b{bottom:124.540796px;}
.y69{bottom:124.609974px;}
.yac{bottom:124.672500px;}
.y94{bottom:124.874323px;}
.y5a{bottom:124.990443px;}
.y178{bottom:125.118000px;}
.y1b6{bottom:125.512500px;}
.y159{bottom:126.421368px;}
.y100{bottom:126.556500px;}
.y50{bottom:126.616500px;}
.y32{bottom:127.086876px;}
.y7{bottom:127.878000px;}
.yfd{bottom:128.515500px;}
.y144{bottom:128.968500px;}
.y184{bottom:130.542000px;}
.y19b{bottom:130.756500px;}
.y7a{bottom:131.437560px;}
.y59{bottom:131.887207px;}
.y21{bottom:132.807606px;}
.y1c1{bottom:133.467000px;}
.y62{bottom:134.079261px;}
.y111{bottom:135.930000px;}
.y16e{bottom:136.398000px;}
.y15a{bottom:136.748706px;}
.y82{bottom:137.835149px;}
.y65{bottom:138.386914px;}
.y54{bottom:139.041429px;}
.y108{bottom:139.810085px;}
.y66{bottom:142.430576px;}
.y1b5{bottom:143.445000px;}
.y1ce{bottom:143.776500px;}
.y53{bottom:145.076174px;}
.y177{bottom:145.441500px;}
.y20{bottom:146.102918px;}
.y31{bottom:146.347311px;}
.y11{bottom:146.716500px;}
.y190{bottom:146.875500px;}
.y138{bottom:147.195000px;}
.ybe{bottom:147.721500px;}
.y1db{bottom:147.889500px;}
.y6{bottom:148.201500px;}
.y75{bottom:148.671529px;}
.y18{bottom:149.025000px;}
.y143{bottom:149.292000px;}
.yab{bottom:149.479500px;}
.y19a{bottom:151.080000px;}
.y1aa{bottom:151.602000px;}
.y107{bottom:151.820545px;}
.y74{bottom:154.706266px;}
.y81{bottom:155.021605px;}
.y16d{bottom:156.723000px;}
.y30{bottom:157.240495px;}
.y52{bottom:159.743018px;}
.y110{bottom:160.738500px;}
.y1f{bottom:160.860569px;}
.y49{bottom:161.064000px;}
.y67{bottom:161.176010px;}
.y1b4{bottom:161.377500px;}
.y46{bottom:162.159000px;}
.y43{bottom:162.484500px;}
.y18f{bottom:163.314000px;}
.y183{bottom:163.419000px;}
.yc5{bottom:164.436000px;}
.y51{bottom:165.777764px;}
.ybd{bottom:168.045000px;}
.y1cd{bottom:168.583500px;}
.yaa{bottom:169.804500px;}
.y2f{bottom:169.885431px;}
.y142{bottom:170.214000px;}
.y95{bottom:171.864706px;}
.y137{bottom:172.002000px;}
.y12e{bottom:172.992000px;}
.y6e{bottom:173.116337px;}
.y1e{bottom:173.140523px;}
.y1da{bottom:173.157000px;}
.y17{bottom:173.832000px;}
.y199{bottom:174.253500px;}
.y5d{bottom:175.440342px;}
.y1a9{bottom:176.409000px;}
.y73{bottom:179.217915px;}
.y6d{bottom:179.303767px;}
.y18e{bottom:179.752500px;}
.y182{bottom:179.857500px;}
.y1b3{bottom:180.073500px;}
.y1c0{bottom:180.345000px;}
.y5c{bottom:182.336974px;}
.y2e{bottom:183.180743px;}
.y1d{bottom:184.135806px;}
.y16c{bottom:184.518000px;}
.y72{bottom:185.252651px;}
.y25{bottom:185.737224px;}
.y10{bottom:186.166500px;}
.y5{bottom:187.191000px;}
.ya9{bottom:190.128000px;}
.y71{bottom:191.467927px;}
.ybc{bottom:192.855000px;}
.y1cc{bottom:193.390500px;}
.y136{bottom:195.175500px;}
.y18d{bottom:196.191000px;}
.y181{bottom:196.296000px;}
.ya0{bottom:196.341763px;}
.y1bf{bottom:198.277500px;}
.y1d9{bottom:198.358500px;}
.y10f{bottom:198.576000px;}
.y16{bottom:198.639000px;}
.y12f{bottom:200.952000px;}
.y1a8{bottom:201.216000px;}
.y4{bottom:201.387000px;}
.y1c{bottom:203.139789px;}
.y9f{bottom:203.816205px;}
.y1b2{bottom:204.882000px;}
.y16b{bottom:205.440000px;}
.y42{bottom:206.229000px;}
.y198{bottom:208.305000px;}
.y176{bottom:209.776500px;}
.y9e{bottom:211.290648px;}
.y12d{bottom:214.926000px;}
.ya8{bottom:214.935000px;}
.y1be{bottom:216.210000px;}
.y128{bottom:216.807000px;}
.y10e{bottom:218.899500px;}
.y96{bottom:218.928143px;}
.y141{bottom:219.165000px;}
.y9d{bottom:221.090286px;}
.y14d{bottom:223.056000px;}
.y163{bottom:223.288500px;}
.y15{bottom:223.446000px;}
.yf{bottom:225.615000px;}
.y1a7{bottom:226.023000px;}
.y16a{bottom:227.856000px;}
.y135{bottom:228.385500px;}
.y9c{bottom:228.564729px;}
.y197{bottom:228.628500px;}
.y18c{bottom:229.068000px;}
.y180{bottom:229.173000px;}
.y41{bottom:230.956500px;}
.y14c{bottom:233.515500px;}
.y162{bottom:233.749500px;}
.y1bd{bottom:234.142500px;}
.y175{bottom:234.583500px;}
.y3{bottom:235.102500px;}
.y12c{bottom:235.249500px;}
.ya7{bottom:235.258500px;}
.y4f{bottom:235.621500px;}
.y9b{bottom:236.039171px;}
.y127{bottom:237.130500px;}
.y1d8{bottom:239.116500px;}
.y140{bottom:239.488500px;}
.y1cb{bottom:240.537000px;}
.y10d{bottom:242.374500px;}
.y14b{bottom:243.976500px;}
.y161{bottom:244.210500px;}
.y18b{bottom:245.506500px;}
.y17f{bottom:245.611500px;}
.y9a{bottom:245.838810px;}
.y134{bottom:246.319500px;}
.y14{bottom:248.253000px;}
.y169{bottom:251.028000px;}
.y1b1{bottom:252.151500px;}
.y196{bottom:253.747500px;}
.y14a{bottom:254.437500px;}
.y160{bottom:254.671500px;}
.y1bc{bottom:255.064500px;}
.y99{bottom:255.638448px;}
.y4e{bottom:255.945000px;}
.y1d7{bottom:259.440000px;}
.y13f{bottom:259.812000px;}
.y12b{bottom:260.056500px;}
.y1ca{bottom:260.860500px;}
.y126{bottom:261.937500px;}
.y1a0{bottom:262.490527px;}
.y133{bottom:264.252000px;}
.ye{bottom:265.063500px;}
.y3f{bottom:268.480500px;}
.ya6{bottom:269.406000px;}
.y98{bottom:270.729266px;}
.y1b0{bottom:276.958500px;}
.y1bb{bottom:277.480500px;}
.y149{bottom:278.347500px;}
.y18a{bottom:278.383500px;}
.y17e{bottom:278.487000px;}
.y15f{bottom:278.581500px;}
.y168{bottom:279.637500px;}
.y13e{bottom:280.135500px;}
.y12a{bottom:280.380000px;}
.y4d{bottom:280.752000px;}
.y174{bottom:281.106000px;}
.y132{bottom:282.184500px;}
.y125{bottom:282.262500px;}
.y1d6{bottom:284.247000px;}
.y10c{bottom:285.162000px;}
.y1c9{bottom:285.667500px;}
.y195{bottom:287.109000px;}
.yfc{bottom:289.783500px;}
.y11f{bottom:290.169116px;}
.y1a{bottom:291.093000px;}
.yc4{bottom:292.875000px;}
.y17d{bottom:294.925500px;}
.y167{bottom:296.074500px;}
.y1af{bottom:297.282000px;}
.y1ba{bottom:297.804000px;}
.y2{bottom:298.713000px;}
.y13d{bottom:300.459000px;}
.y4c{bottom:301.075500px;}
.y120{bottom:301.389000px;}
.y173{bottom:301.429500px;}
.y148{bottom:303.157500px;}
.y15e{bottom:303.390000px;}
.ya5{bottom:304.281000px;}
.yd{bottom:304.512000px;}
.y1d5{bottom:304.570500px;}
.y129{bottom:305.188500px;}
.y1c8{bottom:305.992500px;}
.y194{bottom:306.535500px;}
.y124{bottom:307.071000px;}
.y10b{bottom:309.969000px;}
.y17c{bottom:311.364000px;}
.y19{bottom:311.416500px;}
.y8b{bottom:311.479500px;}
.y166{bottom:312.513000px;}
.y131{bottom:317.182500px;}
.y1b9{bottom:318.127500px;}
.y106{bottom:321.283514px;}
.y1{bottom:324.417000px;}
.ya4{bottom:324.604500px;}
.y193{bottom:325.963500px;}
.y1c7{bottom:326.316000px;}
.y1d4{bottom:328.135500px;}
.y165{bottom:328.951500px;}
.y10a{bottom:333.141000px;}
.y8a{bottom:336.288000px;}
.y130{bottom:337.506000px;}
.y117{bottom:343.209493px;}
.y119{bottom:348.866133px;}
.y103{bottom:349.487619px;}
.yc{bottom:362.751000px;}
.h2c{height:6.446587px;}
.h2b{height:6.446588px;}
.h29{height:8.383182px;}
.h2d{height:8.595414px;}
.h2a{height:9.580795px;}
.h1a{height:11.282320px;}
.h19{height:11.282322px;}
.h26{height:14.400986px;}
.h17{height:14.671600px;}
.h1b{height:15.043032px;}
.hf{height:15.352098px;}
.h2f{height:16.553190px;}
.h18{height:16.767570px;}
.h2e{height:16.892850px;}
.h12{height:19.026343px;}
.hc{height:19.858079px;}
.hd{height:20.269688px;}
.h40{height:21.283892px;}
.h10{height:21.673520px;}
.h11{height:23.830599px;}
.h24{height:24.819907px;}
.h7{height:25.392845px;}
.he{height:25.819987px;}
.h3e{height:26.648141px;}
.h42{height:27.398067px;}
.h41{height:27.533314px;}
.h13{height:27.994439px;}
.h15{height:28.206206px;}
.h27{height:28.763016px;}
.h1d{height:28.970121px;}
.h1c{height:29.564567px;}
.h20{height:29.783889px;}
.h22{height:33.121752px;}
.hb{height:33.232412px;}
.h4a{height:33.411125px;}
.h49{height:33.417125px;}
.h4{height:33.856985px;}
.h21{height:34.747870px;}
.h6{height:35.259465px;}
.h4b{height:35.530706px;}
.h3a{height:37.575454px;}
.h43{height:38.089267px;}
.h33{height:38.386203px;}
.h32{height:38.567270px;}
.h31{height:38.619003px;}
.h23{height:39.711852px;}
.h44{height:39.972211px;}
.h9{height:40.911857px;}
.h8{height:41.037857px;}
.h46{height:41.578840px;}
.h3c{height:42.321125px;}
.h3d{height:44.413271px;}
.h3{height:46.341857px;}
.h1e{height:48.632768px;}
.h36{height:52.016443px;}
.h38{height:52.084563px;}
.h39{height:52.125956px;}
.h45{height:60.666893px;}
.h2{height:60.942658px;}
.h30{height:61.211796px;}
.h3b{height:63.955360px;}
.h35{height:69.420926px;}
.h14{height:72.840146px;}
.h37{height:77.860404px;}
.h47{height:89.790940px;}
.h5{height:91.054594px;}
.h28{height:114.933511px;}
.h25{height:133.933824px;}
.h48{height:138.003049px;}
.h3f{height:148.823100px;}
.h16{height:201.147792px;}
.ha{height:218.768895px;}
.h1f{height:283.657692px;}
.h34{height:382.283770px;}
.h1{height:382.500000px;}
.h0{height:382.677000px;}
.w7{width:178.578432px;}
.w8{width:238.078962px;}
.w3{width:291.692127px;}
.wa{width:297.646200px;}
.w4{width:333.363113px;}
.w5{width:416.667489px;}
.w2{width:416.724081px;}
.w6{width:476.224151px;}
.wb{width:656.488095px;}
.w9{width:679.286055px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x56{left:3.210660px;}
.x12{left:5.495631px;}
.xf{left:6.836578px;}
.x18{left:8.244251px;}
.x36{left:9.862128px;}
.x15{left:11.097381px;}
.x5b{left:12.325376px;}
.x74{left:13.660099px;}
.x10{left:15.478772px;}
.x4a{left:16.528933px;}
.xc{left:18.136500px;}
.x69{left:20.107533px;}
.x3f{left:21.570925px;}
.x13{left:23.036471px;}
.x11{left:25.784287px;}
.x4e{left:28.347000px;}
.xb{left:30.718500px;}
.x63{left:33.241732px;}
.x1c{left:35.042287px;}
.x17{left:37.136511px;}
.x62{left:38.924924px;}
.x59{left:40.477679px;}
.x5a{left:41.497292px;}
.xd{left:43.275000px;}
.x6a{left:44.291287px;}
.x48{left:45.488165px;}
.x57{left:47.132593px;}
.x58{left:48.478831px;}
.x3e{left:50.276534px;}
.x5c{left:55.219917px;}
.x4f{left:58.110000px;}
.x1b{left:60.864358px;}
.x67{left:63.465000px;}
.x55{left:68.554590px;}
.x39{left:70.840921px;}
.x1a{left:73.230332px;}
.xe{left:75.247500px;}
.x3a{left:76.264234px;}
.x3b{left:78.734647px;}
.x41{left:79.993966px;}
.x2{left:81.171000px;}
.x37{left:82.487839px;}
.x38{left:84.843922px;}
.x6d{left:86.380013px;}
.x3d{left:87.434250px;}
.x3c{left:88.523305px;}
.x54{left:91.907131px;}
.x4d{left:93.276518px;}
.x1e{left:96.786303px;}
.x47{left:102.046500px;}
.x53{left:106.513082px;}
.x6c{left:107.974500px;}
.x52{left:109.824100px;}
.x51{left:113.105903px;}
.x50{left:115.795688px;}
.x33{left:119.978971px;}
.xa{left:120.988740px;}
.x32{left:125.598571px;}
.x9{left:131.812500px;}
.x30{left:133.061314px;}
.x35{left:134.147794px;}
.x31{left:137.073538px;}
.x40{left:139.755150px;}
.x34{left:141.929109px;}
.x2b{left:144.748938px;}
.x4b{left:146.356565px;}
.x7{left:148.081500px;}
.x2f{left:149.435637px;}
.x2c{left:152.054418px;}
.x1f{left:155.788500px;}
.x2d{left:160.848793px;}
.x2e{left:163.676360px;}
.x14{left:166.134317px;}
.x42{left:168.722355px;}
.x5f{left:170.422420px;}
.x1d{left:173.481000px;}
.x5e{left:176.094151px;}
.x19{left:179.895101px;}
.x60{left:183.084529px;}
.x2a{left:186.411005px;}
.x25{left:192.205694px;}
.x27{left:193.678796px;}
.x26{left:196.388655px;}
.x24{left:197.949253px;}
.x23{left:202.656707px;}
.x28{left:209.419439px;}
.x5d{left:220.809377px;}
.x5{left:231.963000px;}
.x76{left:235.278000px;}
.x49{left:243.768523px;}
.x20{left:250.866000px;}
.x1{left:259.869000px;}
.x6e{left:263.157713px;}
.x75{left:268.005000px;}
.x68{left:273.174000px;}
.x3{left:278.695500px;}
.x29{left:290.776735px;}
.x4{left:295.552500px;}
.x8{left:296.941500px;}
.x45{left:298.260212px;}
.x6{left:302.275500px;}
.x44{left:308.186440px;}
.x46{left:320.420462px;}
.x6f{left:330.252885px;}
.x16{left:338.299500px;}
.x61{left:354.331500px;}
.x6b{left:365.808000px;}
.x65{left:382.710062px;}
.x43{left:386.443589px;}
.x71{left:415.427599px;}
.x70{left:423.864718px;}
.x64{left:449.003783px;}
.x4c{left:453.543000px;}
.x21{left:465.589500px;}
.x22{left:496.189500px;}
.x73{left:594.615900px;}
.x72{left:607.070698px;}
.x66{left:657.529698px;}
@media print{
.v5{vertical-align:-8.578487pt;}
.v6{vertical-align:-7.349333pt;}
.v1{vertical-align:-4.714667pt;}
.v4{vertical-align:-2.670042pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:9.337920pt;}
.v2{vertical-align:10.909360pt;}
.v3{vertical-align:12.766249pt;}
.v8{vertical-align:42.855200pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:8.548851pt;}
.ls7{letter-spacing:9.262778pt;}
.lsf{letter-spacing:13.281216pt;}
.lse{letter-spacing:13.286549pt;}
.lsa{letter-spacing:13.672739pt;}
.ls11{letter-spacing:14.543467pt;}
.ls9{letter-spacing:14.545467pt;}
.ls6{letter-spacing:15.591789pt;}
.ls12{letter-spacing:16.967580pt;}
.lsc{letter-spacing:16.989105pt;}
.ls8{letter-spacing:19.126614pt;}
.lsd{letter-spacing:20.960640pt;}
.ls3{letter-spacing:25.609756pt;}
.ls4{letter-spacing:25.618609pt;}
.ls10{letter-spacing:44.631552pt;}
.ls1{letter-spacing:46.666152pt;}
.ls2{letter-spacing:46.671485pt;}
.lsb{letter-spacing:55.630991pt;}
.ws11{word-spacing:-29.090933pt;}
.ws28{word-spacing:-22.576528pt;}
.ws26{word-spacing:-15.143589pt;}
.ws1{word-spacing:-14.545467pt;}
.ws36{word-spacing:-13.283467pt;}
.ws23{word-spacing:-13.043629pt;}
.ws27{word-spacing:-11.351771pt;}
.ws37{word-spacing:-9.999721pt;}
.ws7{word-spacing:-9.262513pt;}
.ws4{word-spacing:-8.548851pt;}
.ws2f{word-spacing:-7.893655pt;}
.wse{word-spacing:-6.826800pt;}
.ws2e{word-spacing:-6.315310pt;}
.wsf{word-spacing:-5.973441pt;}
.ws1f{word-spacing:-3.900754pt;}
.ws20{word-spacing:-3.413155pt;}
.ws3f{word-spacing:-1.570910pt;}
.ws14{word-spacing:-0.872728pt;}
.ws15{word-spacing:-0.814546pt;}
.ws41{word-spacing:-0.290909pt;}
.ws32{word-spacing:-0.116364pt;}
.ws12{word-spacing:-0.058182pt;}
.ws31{word-spacing:-0.053134pt;}
.ws10{word-spacing:-0.023154pt;}
.ws21{word-spacing:-0.013230pt;}
.ws18{word-spacing:-0.004990pt;}
.ws1c{word-spacing:-0.004457pt;}
.ws8{word-spacing:-0.002676pt;}
.ws6{word-spacing:-0.002669pt;}
.ws3d{word-spacing:-0.002526pt;}
.ws3b{word-spacing:-0.002499pt;}
.wsc{word-spacing:-0.002375pt;}
.ws3c{word-spacing:-0.001572pt;}
.ws2{word-spacing:-0.001170pt;}
.ws22{word-spacing:-0.000846pt;}
.ws9{word-spacing:-0.000694pt;}
.ws40{word-spacing:-0.000108pt;}
.ws0{word-spacing:0.000000pt;}
.wsb{word-spacing:0.001394pt;}
.ws1d{word-spacing:0.002826pt;}
.ws1b{word-spacing:1.328094pt;}
.ws17{word-spacing:1.338982pt;}
.ws25{word-spacing:1.785302pt;}
.ws13{word-spacing:1.978183pt;}
.ws30{word-spacing:1.989419pt;}
.ws2a{word-spacing:2.215968pt;}
.ws33{word-spacing:2.443638pt;}
.ws1e{word-spacing:14.003172pt;}
.ws24{word-spacing:14.490810pt;}
.ws2d{word-spacing:20.371661pt;}
.wsd{word-spacing:24.507274pt;}
.ws3e{word-spacing:27.162101pt;}
.ws34{word-spacing:30.557491pt;}
.ws2b{word-spacing:37.178213pt;}
.ws35{word-spacing:61.162803pt;}
.ws19{word-spacing:63.362273pt;}
.wsa{word-spacing:129.507100pt;}
.ws5{word-spacing:129.527109pt;}
.ws38{word-spacing:138.671250pt;}
.ws3a{word-spacing:139.362162pt;}
.ws3{word-spacing:140.540524pt;}
.ws2c{word-spacing:143.883756pt;}
.ws16{word-spacing:154.554541pt;}
.ws39{word-spacing:161.669896pt;}
.ws1a{word-spacing:261.934841pt;}
.ws29{word-spacing:926.506976pt;}
._12{margin-left:-113.176000pt;}
._11{margin-left:-96.042154pt;}
._1d{margin-left:-64.667451pt;}
._1c{margin-left:-54.877371pt;}
._13{margin-left:-14.663342pt;}
._22{margin-left:-7.153193pt;}
._21{margin-left:-6.225026pt;}
._b{margin-left:-4.731057pt;}
._1a{margin-left:-3.549094pt;}
._1{margin-left:-2.082853pt;}
._0{margin-left:-0.930910pt;}
._18{width:0.989092pt;}
._4{width:1.882387pt;}
._5{width:3.152999pt;}
._2{width:4.141252pt;}
._10{width:5.089132pt;}
._3{width:6.305997pt;}
._16{width:8.072428pt;}
._19{width:9.141399pt;}
._c{width:11.014645pt;}
._1b{width:12.063542pt;}
._20{width:13.211874pt;}
._e{width:14.788824pt;}
._15{width:16.326780pt;}
._a{width:17.803651pt;}
._1f{width:23.187706pt;}
._29{width:25.525086pt;}
._6{width:39.595622pt;}
._7{width:47.470114pt;}
._28{width:57.151068pt;}
._2a{width:61.210624pt;}
._26{width:63.767326pt;}
._27{width:68.216811pt;}
._9{width:71.476156pt;}
._d{width:162.931837pt;}
._24{width:294.422083pt;}
._23{width:509.049939pt;}
._f{width:517.610896pt;}
._17{width:676.832856pt;}
._8{width:691.659523pt;}
._14{width:946.502607pt;}
._1e{width:972.259062pt;}
._25{width:1313.497076pt;}
.fs1c{font-size:7.542193pt;}
.fs1b{font-size:7.542195pt;}
.fs19{font-size:9.807916pt;}
.fs1d{font-size:10.056216pt;}
.fs1a{font-size:11.209065pt;}
.fs1f{font-size:12.963830pt;}
.fsf{font-size:13.199767pt;}
.fse{font-size:13.199769pt;}
.fs1e{font-size:13.229839pt;}
.fs18{font-size:13.779200pt;}
.fsc{font-size:17.165060pt;}
.fs6{font-size:17.428236pt;}
.fs10{font-size:17.599617pt;}
.fsd{font-size:19.617243pt;}
.fs29{font-size:19.922113pt;}
.fs15{font-size:19.948544pt;}
.fs12{font-size:22.688298pt;}
.fs11{font-size:23.153846pt;}
.fs17{font-size:23.748267pt;}
.fs8{font-size:24.604536pt;}
.fs28{font-size:24.901120pt;}
.fs9{font-size:27.053327pt;}
.fs13{font-size:28.497920pt;}
.fs7{font-size:29.311749pt;}
.fsa{font-size:31.780263pt;}
.fs4{font-size:31.880533pt;}
.fs14{font-size:33.247573pt;}
.fsb{font-size:37.645920pt;}
.fs5{font-size:37.726592pt;}
.fs16{font-size:37.997227pt;}
.fs2b{font-size:39.998884pt;}
.fs2{font-size:42.507200pt;}
.fs24{font-size:43.660658pt;}
.fs3{font-size:47.059680pt;}
.fs21{font-size:47.088915pt;}
.fs2a{font-size:47.820800pt;}
.fs27{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs23{font-size:60.817627pt;}
.fs26{font-size:60.945669pt;}
.fs20{font-size:74.636754pt;}
.fs0{font-size:76.513067pt;}
.fs22{font-size:80.663386pt;}
.fs25{font-size:91.034387pt;}
.y0{bottom:0.000000pt;}
.y116{bottom:0.349538pt;}
.y24{bottom:2.308873pt;}
.y2d{bottom:2.309587pt;}
.y15d{bottom:2.334480pt;}
.yb0{bottom:3.358809pt;}
.yb{bottom:3.442667pt;}
.y91{bottom:6.000148pt;}
.yaf{bottom:8.068497pt;}
.y1a4{bottom:8.428745pt;}
.y11e{bottom:8.738528pt;}
.yf4{bottom:10.210175pt;}
.y118{bottom:10.883150pt;}
.yb1{bottom:11.787804pt;}
.y9{bottom:12.217333pt;}
.yfb{bottom:12.853505pt;}
.y15b{bottom:13.189204pt;}
.y2b{bottom:13.508084pt;}
.y1a6{bottom:13.785646pt;}
.y40{bottom:14.504117pt;}
.y90{bottom:16.176651pt;}
.y3a{bottom:17.768529pt;}
.y7f{bottom:17.869063pt;}
.yf3{bottom:17.967442pt;}
.ya{bottom:18.131024pt;}
.yd4{bottom:18.633637pt;}
.y19f{bottom:18.906667pt;}
.y1a3{bottom:19.142546pt;}
.y1a2{bottom:19.142547pt;}
.yc3{bottom:19.866667pt;}
.y14f{bottom:20.426700pt;}
.y115{bottom:21.272000pt;}
.y2c{bottom:22.051127pt;}
.yd3{bottom:22.136509pt;}
.y86{bottom:22.495216pt;}
.y45{bottom:22.602667pt;}
.y48{bottom:22.892000pt;}
.y4b{bottom:23.866667pt;}
.y2a{bottom:24.187066pt;}
.y1a5{bottom:24.499447pt;}
.yb2{bottom:25.799543pt;}
.ya1{bottom:27.220000pt;}
.y92{bottom:27.331066pt;}
.y39{bottom:27.450644pt;}
.ye5{bottom:28.627631pt;}
.y1d3{bottom:29.504000pt;}
.y150{bottom:29.609596pt;}
.y172{bottom:30.264000pt;}
.y3e{bottom:30.356208pt;}
.y1b{bottom:30.625333pt;}
.ya2{bottom:31.092000pt;}
.ybb{bottom:31.276000pt;}
.ya3{bottom:31.372000pt;}
.y7e{bottom:31.445235pt;}
.y13c{bottom:31.954667pt;}
.ye4{bottom:32.130509pt;}
.y5f{bottom:32.611158pt;}
.y29{bottom:32.730109pt;}
.y8e{bottom:32.941333pt;}
.y1ae{bottom:32.994667pt;}
.y1df{bottom:33.132000pt;}
.y114{bottom:33.890667pt;}
.y1c6{bottom:34.152000pt;}
.yfa{bottom:35.403488pt;}
.y1a1{bottom:35.570374pt;}
.yee{bottom:38.275501pt;}
.y89{bottom:38.426667pt;}
.y5e{bottom:38.741615pt;}
.y151{bottom:38.828969pt;}
.ye1{bottom:39.195655pt;}
.yb3{bottom:39.811282pt;}
.y11d{bottom:39.883558pt;}
.y44{bottom:40.668000pt;}
.y47{bottom:40.957333pt;}
.yed{bottom:41.340559pt;}
.ycd{bottom:41.844409pt;}
.y4a{bottom:41.932000pt;}
.y189{bottom:42.978667pt;}
.y28{bottom:43.409092pt;}
.ye0{bottom:44.359824pt;}
.yba{bottom:44.558667pt;}
.ycc{bottom:44.909383pt;}
.y15c{bottom:46.488981pt;}
.y1c5{bottom:46.772000pt;}
.y19e{bottom:46.948000pt;}
.y1d2{bottom:47.569333pt;}
.y152{bottom:48.011864pt;}
.yf5{bottom:48.328256pt;}
.y38{bottom:48.684269pt;}
.y70{bottom:50.101879pt;}
.yd6{bottom:50.439845pt;}
.yec{bottom:50.687128pt;}
.y14e{bottom:50.832000pt;}
.yf9{bottom:50.881336pt;}
.y164{bottom:51.040000pt;}
.y1ad{bottom:51.060000pt;}
.yc2{bottom:51.076000pt;}
.ycb{bottom:51.152564pt;}
.y1de{bottom:51.197333pt;}
.y27{bottom:51.952135pt;}
.y171{bottom:52.314667pt;}
.yd5{bottom:53.223621pt;}
.yeb{bottom:53.752185pt;}
.yb4{bottom:53.823020pt;}
.y13b{bottom:54.004000pt;}
.yca{bottom:54.217621pt;}
.y8f{bottom:54.665333pt;}
.ydf{bottom:54.938176pt;}
.y8d{bottom:54.993333pt;}
.y6f{bottom:56.232346pt;}
.y109{bottom:56.763753pt;}
.y17b{bottom:57.020000pt;}
.y153{bottom:57.194760pt;}
.y37{bottom:57.227312pt;}
.y188{bottom:57.590667pt;}
.yb9{bottom:57.842667pt;}
.y11c{bottom:58.000810pt;}
.yd8{bottom:59.244819pt;}
.y1c4{bottom:59.390667pt;}
.y3d{bottom:59.415417pt;}
.yf1{bottom:59.751496pt;}
.yd0{bottom:59.979872pt;}
.y13{bottom:60.312000pt;}
.y147{bottom:60.441333pt;}
.y88{bottom:60.477333pt;}
.ydd{bottom:60.505728pt;}
.yf8{bottom:60.888466pt;}
.yf2{bottom:61.408137pt;}
.yd9{bottom:61.924928pt;}
.y85{bottom:61.960461pt;}
.yf0{bottom:63.254368pt;}
.yde{bottom:63.289503pt;}
.ycf{bottom:63.482744pt;}
.y26{bottom:64.380458pt;}
.y19d{bottom:65.013333pt;}
.y36{bottom:66.126940pt;}
.y154{bottom:66.414132pt;}
.y123{bottom:66.600000pt;}
.yef{bottom:66.757240pt;}
.y1b8{bottom:66.814667pt;}
.yce{bottom:66.985616pt;}
.y79{bottom:66.986839pt;}
.yb5{bottom:67.834759pt;}
.yd7{bottom:68.098962pt;}
.y6c{bottom:68.597222pt;}
.y3c{bottom:69.097532pt;}
.y93{bottom:69.100296pt;}
.yc1{bottom:69.141333pt;}
.y1d1{bottom:69.620000pt;}
.y102{bottom:69.846667pt;}
.yf7{bottom:70.006580pt;}
.yda{bottom:70.286822pt;}
.yc9{bottom:70.619250pt;}
.yff{bottom:71.449333pt;}
.y1c3{bottom:72.010667pt;}
.y187{bottom:72.202667pt;}
.ydb{bottom:72.340601pt;}
.y78{bottom:72.351066pt;}
.y113{bottom:72.740000pt;}
.y1ac{bottom:73.110667pt;}
.y58{bottom:73.232867pt;}
.y1dd{bottom:73.248000pt;}
.yc8{bottom:73.684303pt;}
.y170{bottom:74.365333pt;}
.y13a{bottom:74.952000pt;}
.y17a{bottom:75.085333pt;}
.yea{bottom:75.510386pt;}
.y155{bottom:75.597029pt;}
.y11b{bottom:76.246100pt;}
.y6b{bottom:77.635152pt;}
.y146{bottom:78.506667pt;}
.ye9{bottom:78.575433pt;}
.y57{bottom:78.596949pt;}
.yf6{bottom:78.735594pt;}
.y3b{bottom:80.490400pt;}
.yc7{bottom:81.133604pt;}
.yb6{bottom:81.846498pt;}
.ydc{bottom:81.861422pt;}
.y35{bottom:82.108255pt;}
.y87{bottom:82.528000pt;}
.y105{bottom:83.572622pt;}
.yc6{bottom:84.198656pt;}
.y80{bottom:84.580397pt;}
.y156{bottom:84.786346pt;}
.y1b7{bottom:84.880000pt;}
.y8c{bottom:85.892000pt;}
.y19c{bottom:85.960000pt;}
.y192{bottom:86.721333pt;}
.y186{bottom:86.814667pt;}
.y1d0{bottom:87.685333pt;}
.ye3{bottom:87.925923pt;}
.y61{bottom:88.275937pt;}
.y122{bottom:88.650667pt;}
.y77{bottom:88.708713pt;}
.y84{bottom:89.048601pt;}
.yd2{bottom:89.106287pt;}
.y56{bottom:89.523283pt;}
.ye8{bottom:91.024919pt;}
.ye2{bottom:91.068523pt;}
.y16f{bottom:91.184000pt;}
.yc0{bottom:91.192000pt;}
.y34{bottom:91.790370pt;}
.y101{bottom:91.897333pt;}
.y97{bottom:92.372594pt;}
.yd1{bottom:92.609092pt;}
.yad{bottom:92.754667pt;}
.y60{bottom:93.147887pt;}
.y179{bottom:93.150667pt;}
.yfe{bottom:93.500000pt;}
.y157{bottom:93.969241pt;}
.yb8{bottom:93.995631pt;}
.y76{bottom:94.072940pt;}
.ye7{bottom:94.089967pt;}
.y11a{bottom:94.331343pt;}
.y23{bottom:94.415096pt;}
.y55{bottom:94.887511pt;}
.y1ab{bottom:95.162667pt;}
.y12{bottom:95.349333pt;}
.y1dc{bottom:95.577333pt;}
.y8{bottom:95.604000pt;}
.yb7{bottom:95.858236pt;}
.y6a{bottom:96.148570pt;}
.y145{bottom:96.573333pt;}
.y1c2{bottom:96.585333pt;}
.yae{bottom:97.004000pt;}
.ye6{bottom:97.246710pt;}
.y104{bottom:97.704677pt;}
.y112{bottom:98.776000pt;}
.y191{bottom:101.332000pt;}
.y185{bottom:101.425333pt;}
.y33{bottom:101.473200pt;}
.y158{bottom:103.152137pt;}
.y63{bottom:103.685726pt;}
.y7c{bottom:104.572473pt;}
.y5b{bottom:104.972159pt;}
.y68{bottom:105.892471pt;}
.y22{bottom:106.233151pt;}
.y83{bottom:106.562310pt;}
.y7d{bottom:107.471798pt;}
.y64{bottom:108.376247pt;}
.y139{bottom:108.789333pt;}
.y121{bottom:109.249333pt;}
.ybf{bottom:109.257333pt;}
.y1cf{bottom:109.736000pt;}
.y7b{bottom:110.702930pt;}
.y69{bottom:110.764421pt;}
.yac{bottom:110.820000pt;}
.y94{bottom:110.999398pt;}
.y5a{bottom:111.102616pt;}
.y178{bottom:111.216000pt;}
.y1b6{bottom:111.566667pt;}
.y159{bottom:112.374549pt;}
.y100{bottom:112.494667pt;}
.y50{bottom:112.548000pt;}
.y32{bottom:112.966112pt;}
.y7{bottom:113.669333pt;}
.yfd{bottom:114.236000pt;}
.y144{bottom:114.638667pt;}
.y184{bottom:116.037333pt;}
.y19b{bottom:116.228000pt;}
.y7a{bottom:116.833387pt;}
.y59{bottom:117.233073pt;}
.y21{bottom:118.051205pt;}
.y1c1{bottom:118.637333pt;}
.y62{bottom:119.181565pt;}
.y111{bottom:120.826667pt;}
.y16e{bottom:121.242667pt;}
.y15a{bottom:121.554406pt;}
.y82{bottom:122.520132pt;}
.y65{bottom:123.010590pt;}
.y54{bottom:123.592381pt;}
.y108{bottom:124.275631pt;}
.y66{bottom:126.604957pt;}
.y1b5{bottom:127.506667pt;}
.y1ce{bottom:127.801333pt;}
.y53{bottom:128.956600pt;}
.y177{bottom:129.281333pt;}
.y20{bottom:129.869260pt;}
.y31{bottom:130.086499pt;}
.y11{bottom:130.414667pt;}
.y190{bottom:130.556000pt;}
.y138{bottom:130.840000pt;}
.ybe{bottom:131.308000pt;}
.y1db{bottom:131.457333pt;}
.y6{bottom:131.734667pt;}
.y75{bottom:132.152470pt;}
.y18{bottom:132.466667pt;}
.y143{bottom:132.704000pt;}
.yab{bottom:132.870667pt;}
.y19a{bottom:134.293333pt;}
.y1aa{bottom:134.757333pt;}
.y107{bottom:134.951595pt;}
.y74{bottom:137.516680pt;}
.y81{bottom:137.796982pt;}
.y16d{bottom:139.309333pt;}
.y30{bottom:139.769329pt;}
.y52{bottom:141.993794pt;}
.y110{bottom:142.878667pt;}
.y1f{bottom:142.987172pt;}
.y49{bottom:143.168000pt;}
.y67{bottom:143.267565pt;}
.y1b4{bottom:143.446667pt;}
.y46{bottom:144.141333pt;}
.y43{bottom:144.430667pt;}
.y18f{bottom:145.168000pt;}
.y183{bottom:145.261333pt;}
.yc5{bottom:146.165333pt;}
.y51{bottom:147.358013pt;}
.ybd{bottom:149.373333pt;}
.y1cd{bottom:149.852000pt;}
.yaa{bottom:150.937333pt;}
.y2f{bottom:151.009272pt;}
.y142{bottom:151.301333pt;}
.y95{bottom:152.768628pt;}
.y137{bottom:152.890667pt;}
.y12e{bottom:153.770667pt;}
.y6e{bottom:153.881188pt;}
.y1e{bottom:153.902687pt;}
.y1da{bottom:153.917333pt;}
.y17{bottom:154.517333pt;}
.y199{bottom:154.892000pt;}
.y5d{bottom:155.946971pt;}
.y1a9{bottom:156.808000pt;}
.y73{bottom:159.304813pt;}
.y6d{bottom:159.381126pt;}
.y18e{bottom:159.780000pt;}
.y182{bottom:159.873333pt;}
.y1b3{bottom:160.065333pt;}
.y1c0{bottom:160.306667pt;}
.y5c{bottom:162.077310pt;}
.y2e{bottom:162.827327pt;}
.y1d{bottom:163.676272pt;}
.y16c{bottom:164.016000pt;}
.y72{bottom:164.669023pt;}
.y25{bottom:165.099755pt;}
.y10{bottom:165.481333pt;}
.y5{bottom:166.392000pt;}
.ya9{bottom:169.002667pt;}
.y71{bottom:170.193713pt;}
.ybc{bottom:171.426667pt;}
.y1cc{bottom:171.902667pt;}
.y136{bottom:173.489333pt;}
.y18d{bottom:174.392000pt;}
.y181{bottom:174.485333pt;}
.ya0{bottom:174.526012pt;}
.y1bf{bottom:176.246667pt;}
.y1d9{bottom:176.318667pt;}
.y10f{bottom:176.512000pt;}
.y16{bottom:176.568000pt;}
.y12f{bottom:178.624000pt;}
.y1a8{bottom:178.858667pt;}
.y4{bottom:179.010667pt;}
.y1c{bottom:180.568701pt;}
.y9f{bottom:181.169960pt;}
.y1b2{bottom:182.117333pt;}
.y16b{bottom:182.613333pt;}
.y42{bottom:183.314667pt;}
.y198{bottom:185.160000pt;}
.y176{bottom:186.468000pt;}
.y9e{bottom:187.813909pt;}
.y12d{bottom:191.045333pt;}
.ya8{bottom:191.053333pt;}
.y1be{bottom:192.186667pt;}
.y128{bottom:192.717333pt;}
.y10e{bottom:194.577333pt;}
.y96{bottom:194.602794pt;}
.y141{bottom:194.813333pt;}
.y9d{bottom:196.524699pt;}
.y14d{bottom:198.272000pt;}
.y163{bottom:198.478667pt;}
.y15{bottom:198.618667pt;}
.yf{bottom:200.546667pt;}
.y1a7{bottom:200.909333pt;}
.y16a{bottom:202.538667pt;}
.y135{bottom:203.009333pt;}
.y9c{bottom:203.168648pt;}
.y197{bottom:203.225333pt;}
.y18c{bottom:203.616000pt;}
.y180{bottom:203.709333pt;}
.y41{bottom:205.294667pt;}
.y14c{bottom:207.569333pt;}
.y162{bottom:207.777333pt;}
.y1bd{bottom:208.126667pt;}
.y175{bottom:208.518667pt;}
.y3{bottom:208.980000pt;}
.y12c{bottom:209.110667pt;}
.ya7{bottom:209.118667pt;}
.y4f{bottom:209.441333pt;}
.y9b{bottom:209.812596pt;}
.y127{bottom:210.782667pt;}
.y1d8{bottom:212.548000pt;}
.y140{bottom:212.878667pt;}
.y1cb{bottom:213.810667pt;}
.y10d{bottom:215.444000pt;}
.y14b{bottom:216.868000pt;}
.y161{bottom:217.076000pt;}
.y18b{bottom:218.228000pt;}
.y17f{bottom:218.321333pt;}
.y9a{bottom:218.523386pt;}
.y134{bottom:218.950667pt;}
.y14{bottom:220.669333pt;}
.y169{bottom:223.136000pt;}
.y1b1{bottom:224.134667pt;}
.y196{bottom:225.553333pt;}
.y14a{bottom:226.166667pt;}
.y160{bottom:226.374667pt;}
.y1bc{bottom:226.724000pt;}
.y99{bottom:227.234176pt;}
.y4e{bottom:227.506667pt;}
.y1d7{bottom:230.613333pt;}
.y13f{bottom:230.944000pt;}
.y12b{bottom:231.161333pt;}
.y1ca{bottom:231.876000pt;}
.y126{bottom:232.833333pt;}
.y1a0{bottom:233.324913pt;}
.y133{bottom:234.890667pt;}
.ye{bottom:235.612000pt;}
.y3f{bottom:238.649333pt;}
.ya6{bottom:239.472000pt;}
.y98{bottom:240.648236pt;}
.y1b0{bottom:246.185333pt;}
.y1bb{bottom:246.649333pt;}
.y149{bottom:247.420000pt;}
.y18a{bottom:247.452000pt;}
.y17e{bottom:247.544000pt;}
.y15f{bottom:247.628000pt;}
.y168{bottom:248.566667pt;}
.y13e{bottom:249.009333pt;}
.y12a{bottom:249.226667pt;}
.y4d{bottom:249.557333pt;}
.y174{bottom:249.872000pt;}
.y132{bottom:250.830667pt;}
.y125{bottom:250.900000pt;}
.y1d6{bottom:252.664000pt;}
.y10c{bottom:253.477333pt;}
.y1c9{bottom:253.926667pt;}
.y195{bottom:255.208000pt;}
.yfc{bottom:257.585333pt;}
.y11f{bottom:257.928103pt;}
.y1a{bottom:258.749333pt;}
.yc4{bottom:260.333333pt;}
.y17d{bottom:262.156000pt;}
.y167{bottom:263.177333pt;}
.y1af{bottom:264.250667pt;}
.y1ba{bottom:264.714667pt;}
.y2{bottom:265.522667pt;}
.y13d{bottom:267.074667pt;}
.y4c{bottom:267.622667pt;}
.y120{bottom:267.901333pt;}
.y173{bottom:267.937333pt;}
.y148{bottom:269.473333pt;}
.y15e{bottom:269.680000pt;}
.ya5{bottom:270.472000pt;}
.yd{bottom:270.677333pt;}
.y1d5{bottom:270.729333pt;}
.y129{bottom:271.278667pt;}
.y1c8{bottom:271.993333pt;}
.y194{bottom:272.476000pt;}
.y124{bottom:272.952000pt;}
.y10b{bottom:275.528000pt;}
.y17c{bottom:276.768000pt;}
.y19{bottom:276.814667pt;}
.y8b{bottom:276.870667pt;}
.y166{bottom:277.789333pt;}
.y131{bottom:281.940000pt;}
.y1b9{bottom:282.780000pt;}
.y106{bottom:285.585345pt;}
.y1{bottom:288.370667pt;}
.ya4{bottom:288.537333pt;}
.y193{bottom:289.745333pt;}
.y1c7{bottom:290.058667pt;}
.y1d4{bottom:291.676000pt;}
.y165{bottom:292.401333pt;}
.y10a{bottom:296.125333pt;}
.y8a{bottom:298.922667pt;}
.y130{bottom:300.005333pt;}
.y117{bottom:305.075105pt;}
.y119{bottom:310.103229pt;}
.y103{bottom:310.655661pt;}
.yc{bottom:322.445333pt;}
.h2c{height:5.730299pt;}
.h2b{height:5.730300pt;}
.h29{height:7.451717pt;}
.h2d{height:7.640368pt;}
.h2a{height:8.516262pt;}
.h1a{height:10.028729pt;}
.h19{height:10.028731pt;}
.h26{height:12.800877pt;}
.h17{height:13.041423pt;}
.h1b{height:13.371584pt;}
.hf{height:13.646309pt;}
.h2f{height:14.713947pt;}
.h18{height:14.904507pt;}
.h2e{height:15.015867pt;}
.h12{height:16.912305pt;}
.hc{height:17.651626pt;}
.hd{height:18.017501pt;}
.h40{height:18.919015pt;}
.h10{height:19.265351pt;}
.h11{height:21.182755pt;}
.h24{height:22.062140pt;}
.h7{height:22.571418pt;}
.he{height:22.951099pt;}
.h3e{height:23.687236pt;}
.h42{height:24.353837pt;}
.h41{height:24.474057pt;}
.h13{height:24.883946pt;}
.h15{height:25.072183pt;}
.h27{height:25.567125pt;}
.h1d{height:25.751218pt;}
.h1c{height:26.279615pt;}
.h20{height:26.474568pt;}
.h22{height:29.441557pt;}
.hb{height:29.539922pt;}
.h4a{height:29.698778pt;}
.h49{height:29.704111pt;}
.h4{height:30.095098pt;}
.h21{height:30.886996pt;}
.h6{height:31.341747pt;}
.h4b{height:31.582850pt;}
.h3a{height:33.400403pt;}
.h43{height:33.857126pt;}
.h33{height:34.121069pt;}
.h32{height:34.282018pt;}
.h31{height:34.328003pt;}
.h23{height:35.299424pt;}
.h44{height:35.530854pt;}
.h9{height:36.366095pt;}
.h8{height:36.478095pt;}
.h46{height:36.958969pt;}
.h3c{height:37.618778pt;}
.h3d{height:39.478463pt;}
.h3{height:41.192762pt;}
.h1e{height:43.229127pt;}
.h36{height:46.236838pt;}
.h38{height:46.297389pt;}
.h39{height:46.334183pt;}
.h45{height:53.926127pt;}
.h2{height:54.171251pt;}
.h30{height:54.410485pt;}
.h3b{height:56.849209pt;}
.h35{height:61.707490pt;}
.h14{height:64.746796pt;}
.h37{height:69.209248pt;}
.h47{height:79.814169pt;}
.h5{height:80.937417pt;}
.h28{height:102.163121pt;}
.h25{height:119.052288pt;}
.h48{height:122.669377pt;}
.h3f{height:132.287200pt;}
.h16{height:178.798038pt;}
.ha{height:194.461240pt;}
.h1f{height:252.140171pt;}
.h34{height:339.807796pt;}
.h1{height:340.000000pt;}
.h0{height:340.157333pt;}
.w7{width:158.736384pt;}
.w8{width:211.625744pt;}
.w3{width:259.281891pt;}
.wa{width:264.574400pt;}
.w4{width:296.322767pt;}
.w5{width:370.371101pt;}
.w2{width:370.421406pt;}
.w6{width:423.310356pt;}
.wb{width:583.544973pt;}
.w9{width:603.809827pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x56{left:2.853920pt;}
.x12{left:4.885006pt;}
.xf{left:6.076958pt;}
.x18{left:7.328223pt;}
.x36{left:8.766336pt;}
.x15{left:9.864338pt;}
.x5b{left:10.955890pt;}
.x74{left:12.142310pt;}
.x10{left:13.758908pt;}
.x4a{left:14.692385pt;}
.xc{left:16.121333pt;}
.x69{left:17.873362pt;}
.x3f{left:19.174155pt;}
.x13{left:20.476863pt;}
.x11{left:22.919366pt;}
.x4e{left:25.197333pt;}
.xb{left:27.305333pt;}
.x63{left:29.548206pt;}
.x1c{left:31.148699pt;}
.x17{left:33.010232pt;}
.x62{left:34.599933pt;}
.x59{left:35.980159pt;}
.x5a{left:36.886482pt;}
.xd{left:38.466667pt;}
.x6a{left:39.370033pt;}
.x48{left:40.433925pt;}
.x57{left:41.895638pt;}
.x58{left:43.092294pt;}
.x3e{left:44.690253pt;}
.x5c{left:49.084371pt;}
.x4f{left:51.653333pt;}
.x1b{left:54.101651pt;}
.x67{left:56.413333pt;}
.x55{left:60.937413pt;}
.x39{left:62.969707pt;}
.x1a{left:65.093629pt;}
.xe{left:66.886667pt;}
.x3a{left:67.790431pt;}
.x3b{left:69.986352pt;}
.x41{left:71.105747pt;}
.x2{left:72.152000pt;}
.x37{left:73.322523pt;}
.x38{left:75.416819pt;}
.x6d{left:76.782233pt;}
.x3d{left:77.719333pt;}
.x3c{left:78.687382pt;}
.x54{left:81.695228pt;}
.x4d{left:82.912461pt;}
.x1e{left:86.032269pt;}
.x47{left:90.708000pt;}
.x53{left:94.678295pt;}
.x6c{left:95.977333pt;}
.x52{left:97.621422pt;}
.x51{left:100.538580pt;}
.x50{left:102.929500pt;}
.x33{left:106.647974pt;}
.xa{left:107.545547pt;}
.x32{left:111.643174pt;}
.x9{left:117.166667pt;}
.x30{left:118.276723pt;}
.x35{left:119.242484pt;}
.x31{left:121.843145pt;}
.x40{left:124.226800pt;}
.x34{left:126.159208pt;}
.x2b{left:128.665723pt;}
.x4b{left:130.094725pt;}
.x7{left:131.628000pt;}
.x2f{left:132.831677pt;}
.x2c{left:135.159482pt;}
.x1f{left:138.478667pt;}
.x2d{left:142.976705pt;}
.x2e{left:145.490098pt;}
.x14{left:147.674948pt;}
.x42{left:149.975427pt;}
.x5f{left:151.486595pt;}
.x1d{left:154.205333pt;}
.x5e{left:156.528134pt;}
.x19{left:159.906757pt;}
.x60{left:162.741804pt;}
.x2a{left:165.698671pt;}
.x25{left:170.849505pt;}
.x27{left:172.158930pt;}
.x26{left:174.567693pt;}
.x24{left:175.954891pt;}
.x23{left:180.139295pt;}
.x28{left:186.150613pt;}
.x5d{left:196.275001pt;}
.x5{left:206.189333pt;}
.x76{left:209.136000pt;}
.x49{left:216.683132pt;}
.x20{left:222.992000pt;}
.x1{left:230.994667pt;}
.x6e{left:233.917967pt;}
.x75{left:238.226667pt;}
.x68{left:242.821333pt;}
.x3{left:247.729333pt;}
.x29{left:258.468209pt;}
.x4{left:262.713333pt;}
.x8{left:263.948000pt;}
.x45{left:265.120189pt;}
.x6{left:268.689333pt;}
.x44{left:273.943502pt;}
.x46{left:284.818189pt;}
.x6f{left:293.558120pt;}
.x16{left:300.710667pt;}
.x61{left:314.961333pt;}
.x6b{left:325.162667pt;}
.x65{left:340.186722pt;}
.x43{left:343.505413pt;}
.x71{left:369.268977pt;}
.x70{left:376.768638pt;}
.x64{left:399.114474pt;}
.x4c{left:403.149333pt;}
.x21{left:413.857333pt;}
.x22{left:441.057333pt;}
.x73{left:528.547467pt;}
.x72{left:539.618398pt;}
.x66{left:584.470843pt;}
}




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