
    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_7a893b08e6563b9ca84bc4c7.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_728d60f3eccd938105286f1f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_15da053a007f2dee1a6f5a55.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d0496620bcb8cb3564d801df.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.974000;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_c03b9306f10f311dfc84feba.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b6078f8e6d5966ad1e3d007d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_15f1c87bcf07ccb6c13f3ec9.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6faa89213b696d28c8ba92fb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_69a59e03fb770246b386717f.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_652374a6cb69694a0302da9d.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_45d6599b2f4b0f21ecd6378c.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_ceb58cccfc323f1e962c4721.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.979980;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_fb785b4aa7a7ccc1b130031b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.936523;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_97ef518f0a33f157be818613.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_45d6599b2f4b0f21ecd6378c.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_ceb58cccfc323f1e962c4721.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.979980;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_fb785b4aa7a7ccc1b130031b.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.936523;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_75ab046fb3bb8c84fad06ba5.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_fa276bf16022c3c7dacda676.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_77900faa1c0cf467b68344b1.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.979980;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_bf17b55e4e310cc8a0a674e5.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.936523;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_1bdf0817ad9232f38d844ab8.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_1bdf0817ad9232f38d844ab8.woff2')format("woff");}.ff17{font-family:ff17;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;}
.ff18{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff19;src:url('chunks/assets/font_d6006c1e041e4473969c1069.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_be2f9d201e68df8614a5deca.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.887000;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;}
.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);}
.v7{vertical-align:-8.904000px;}
.v1{vertical-align:-5.304000px;}
.v4{vertical-align:-1.025145px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:3.234945px;}
.v2{vertical-align:4.254000px;}
.v5{vertical-align:10.505160px;}
.v6{vertical-align:48.212100px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:5.977575px;}
.ls7{letter-spacing:14.941368px;}
.ls6{letter-spacing:14.947368px;}
.ls9{letter-spacing:16.359280px;}
.ls3{letter-spacing:16.363650px;}
.ls5{letter-spacing:23.580720px;}
.lsa{letter-spacing:50.210496px;}
.ls1{letter-spacing:52.499421px;}
.ls4{letter-spacing:231.235351px;}
.ls2{letter-spacing:475.687485px;}
.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;}
}
.ws2f{word-spacing:-37.180650px;}
.ws1{word-spacing:-16.363650px;}
.ws20{word-spacing:-14.943900px;}
.ws11{word-spacing:-13.165589px;}
.ws8{word-spacing:-12.622966px;}
.ws26{word-spacing:-11.249686px;}
.ws9{word-spacing:-11.045078px;}
.wsc{word-spacing:-10.866286px;}
.ws19{word-spacing:-8.880362px;}
.wsb{word-spacing:-8.149715px;}
.ws18{word-spacing:-7.104724px;}
.ws10{word-spacing:-6.847958px;}
.wsf{word-spacing:-5.869709px;}
.ws5{word-spacing:-1.701820px;}
.ws1c{word-spacing:-0.130909px;}
.ws1b{word-spacing:-0.059776px;}
.wsa{word-spacing:-0.029316px;}
.ws12{word-spacing:-0.021870px;}
.ws30{word-spacing:-0.004195px;}
.ws2a{word-spacing:-0.002812px;}
.ws4{word-spacing:-0.002694px;}
.ws2b{word-spacing:-0.001769px;}
.ws2e{word-spacing:-0.001249px;}
.ws0{word-spacing:0.000000px;}
.ws6{word-spacing:0.001568px;}
.ws2c{word-spacing:1.989061px;}
.ws2d{word-spacing:2.008465px;}
.ws1a{word-spacing:2.238096px;}
.ws15{word-spacing:2.492964px;}
.ws1d{word-spacing:2.749093px;}
.ws2{word-spacing:7.134551px;}
.ws31{word-spacing:16.296881px;}
.ws17{word-spacing:30.557363px;}
.ws13{word-spacing:31.581317px;}
.ws14{word-spacing:31.581324px;}
.ws1e{word-spacing:34.377178px;}
.ws3{word-spacing:41.825489px;}
.ws22{word-spacing:53.798175px;}
.ws21{word-spacing:59.775750px;}
.ws1f{word-spacing:68.808154px;}
.ws7{word-spacing:69.236131px;}
.wsd{word-spacing:82.427008px;}
.ws25{word-spacing:113.430463px;}
.ws24{word-spacing:150.778352px;}
.ws27{word-spacing:156.005157px;}
.ws29{word-spacing:156.782432px;}
.ws16{word-spacing:161.869226px;}
.ws28{word-spacing:181.878633px;}
.wse{word-spacing:240.947204px;}
.ws23{word-spacing:246.036987px;}
._16{margin-left:-577.085783px;}
._d{margin-left:-8.770916px;}
._8{margin-left:-7.527279px;}
._a{margin-left:-5.236368px;}
._14{margin-left:-3.403639px;}
._1{margin-left:-2.343209px;}
._0{margin-left:-1.047274px;}
._c{width:1.112728px;}
._4{width:2.117686px;}
._5{width:3.547123px;}
._2{width:4.658908px;}
._13{width:5.724659px;}
._3{width:7.094247px;}
._11{width:8.680312px;}
._1e{width:9.921456px;}
._2d{width:11.597844px;}
._1f{width:12.852629px;}
._20{width:15.471519px;}
._19{width:16.976270px;}
._10{width:18.589106px;}
._22{width:19.898198px;}
._18{width:26.100517px;}
._15{width:27.883660px;}
._2e{width:35.894192px;}
._1d{width:45.538773px;}
._1c{width:64.294952px;}
._21{width:68.861952px;}
._1a{width:71.738242px;}
._1b{width:76.743913px;}
._7{width:80.410675px;}
._29{width:98.127871px;}
._2c{width:125.385613px;}
._26{width:135.475760px;}
._27{width:140.496923px;}
._28{width:162.733502px;}
._b{width:183.171131px;}
._f{width:184.176088px;}
._23{width:230.734395px;}
._24{width:235.755558px;}
._25{width:257.992137px;}
._2a{width:266.838948px;}
._2b{width:388.064169px;}
._31{width:521.216571px;}
._12{width:597.716450px;}
._9{width:862.757083px;}
._30{width:866.108786px;}
._17{width:1085.666688px;}
._6{width:1102.346688px;}
._2f{width:1119.020688px;}
._e{width:1153.048234px;}
.fcc{color:rgb(210,32,39);}
.fcb{color:rgb(232,103,88);}
.fc6{color:rgb(254,250,248);}
.fc5{color:rgb(224,45,48);}
.fc4{color:rgb(252,230,223);}
.fc8{color:rgb(0,173,239);}
.fc3{color:transparent;}
.fc9{color:rgb(255,0,0);}
.fc2{color:rgb(82,86,109);}
.fca{color:rgb(180,68,57);}
.fc7{color:rgb(249,206,194);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs10{font-size:18.516433px;}
.fsf{font-size:21.602392px;}
.fs11{font-size:21.869749px;}
.fs15{font-size:22.412377px;}
.fs19{font-size:23.530320px;}
.fse{font-size:26.058240px;}
.fs13{font-size:26.742241px;}
.fs7{font-size:27.204766px;}
.fs14{font-size:28.013760px;}
.fsa{font-size:29.315520px;}
.fs12{font-size:30.562561px;}
.fs9{font-size:31.738730px;}
.fsd{font-size:32.572800px;}
.fs4{font-size:35.865600px;}
.fs8{font-size:36.272891px;}
.fsb{font-size:39.087360px;}
.fs6{font-size:42.351660px;}
.fs17{font-size:44.998744px;}
.fs2{font-size:47.820600px;}
.fs3{font-size:52.942140px;}
.fs16{font-size:53.798400px;}
.fs5{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs0{font-size:86.077200px;}
.fsc{font-size:124.069189px;}
.fs18{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y16e{bottom:2.626290px;}
.y10{bottom:3.871500px;}
.y9{bottom:3.873000px;}
.y1d8{bottom:9.482338px;}
.yfd{bottom:12.574588px;}
.y16c{bottom:14.837855px;}
.y10f{bottom:15.374646px;}
.y1da{bottom:15.508852px;}
.y4c{bottom:16.317131px;}
.y10b{bottom:16.324967px;}
.yc4{bottom:19.451197px;}
.y8{bottom:20.397402px;}
.y1b7{bottom:21.270000px;}
.y1d7{bottom:21.535364px;}
.y1d6{bottom:21.535366px;}
.y110{bottom:21.876000px;}
.yfc{bottom:22.125389px;}
.y9c{bottom:22.466975px;}
.y160{bottom:22.980038px;}
.y10a{bottom:23.159264px;}
.y1ea{bottom:23.559000px;}
.y12e{bottom:23.872500px;}
.yc8{bottom:24.084000px;}
.y1f9{bottom:24.639000px;}
.y5a{bottom:25.428000px;}
.y18a{bottom:25.543500px;}
.y5d{bottom:25.753500px;}
.y7{bottom:26.140500px;}
.y60{bottom:26.850000px;}
.y1d9{bottom:27.561878px;}
.yc3{bottom:27.594397px;}
.y6d{bottom:29.184000px;}
.yaa{bottom:29.488500px;}
.y23c{bottom:29.710853px;}
.y109{bottom:29.993561px;}
.y1c5{bottom:32.272500px;}
.y1d3{bottom:32.322000px;}
.y4a{bottom:32.433000px;}
.y42{bottom:32.883000px;}
.y161{bottom:33.310795px;}
.yc7{bottom:33.450000px;}
.y205{bottom:33.742500px;}
.y234{bottom:34.405500px;}
.y240{bottom:34.612500px;}
.y6c{bottom:35.367000px;}
.yc2{bottom:35.737597px;}
.y147{bottom:35.949000px;}
.y108{bottom:36.827857px;}
.y1e2{bottom:37.119000px;}
.y104{bottom:37.365091px;}
.y1f8{bottom:38.835000px;}
.y239{bottom:39.003000px;}
.y1d5{bottom:40.016671px;}
.y1e9{bottom:42.987000px;}
.y107{bottom:43.662154px;}
.y162{bottom:43.682590px;}
.yc1{bottom:43.880797px;}
.y103{bottom:44.199388px;}
.y100{bottom:44.272207px;}
.y59{bottom:45.751500px;}
.y5c{bottom:46.077000px;}
.y1c4{bottom:46.470000px;}
.y1d2{bottom:46.518000px;}
.y237{bottom:47.005500px;}
.y5f{bottom:47.173500px;}
.yb9{bottom:47.472090px;}
.y9b{bottom:47.569738px;}
.y15f{bottom:47.800500px;}
.yb3{bottom:47.926426px;}
.y17c{bottom:48.033000px;}
.y1a1{bottom:48.351000px;}
.y12d{bottom:48.679500px;}
.y9e{bottom:49.750663px;}
.y189{bottom:50.350500px;}
.y13a{bottom:50.404500px;}
.ybf{bottom:51.805554px;}
.yc0{bottom:52.023997px;}
.y16d{bottom:52.300104px;}
.y106{bottom:52.546740px;}
.y32{bottom:52.617000px;}
.y1b6{bottom:52.816500px;}
.y102{bottom:53.083973px;}
.yff{bottom:53.156793px;}
.y39{bottom:53.599500px;}
.yc6{bottom:53.775000px;}
.y163{bottom:54.013347px;}
.y204{bottom:54.066000px;}
.ya9{bottom:54.295500px;}
.y221{bottom:54.346500px;}
.yb6{bottom:56.079133px;}
.y218{bottom:56.214000px;}
.y1e1{bottom:57.442500px;}
.y1f7{bottom:57.514500px;}
.y49{bottom:57.634500px;}
.y41{bottom:58.518000px;}
.yb8{bottom:58.934837px;}
.y233{bottom:59.212500px;}
.y105{bottom:59.381036px;}
.y101{bottom:59.918270px;}
.yfe{bottom:59.991090px;}
.y6b{bottom:60.174000px;}
.y1c3{bottom:60.666000px;}
.y1d1{bottom:60.715500px;}
.y146{bottom:60.754500px;}
.y9d{bottom:61.086068px;}
.y7e{bottom:61.984248px;}
.y1e8{bottom:62.413500px;}
.yb2{bottom:63.408013px;}
.ybd{bottom:63.741727px;}
.y193{bottom:64.147500px;}
.y164{bottom:64.344105px;}
.y1a0{bottom:64.789500px;}
.y158{bottom:67.996500px;}
.y23e{bottom:69.492339px;}
.y1f6{bottom:71.712000px;}
.y236{bottom:71.812500px;}
.y31{bottom:72.942000px;}
.y1b5{bottom:73.140000px;}
.y7d{bottom:73.319653px;}
.y38{bottom:73.923000px;}
.ybe{bottom:74.017330px;}
.yc5{bottom:74.098500px;}
.y165{bottom:74.715898px;}
.y1c2{bottom:74.863500px;}
.y1d0{bottom:74.911500px;}
.y188{bottom:75.157500px;}
.y139{bottom:75.211500px;}
.yb5{bottom:76.233553px;}
.y220{bottom:77.520000px;}
.ya8{bottom:79.102500px;}
.y203{bottom:79.269000px;}
.y19f{bottom:81.228000px;}
.y1e0{bottom:82.249500px;}
.y217{bottom:83.112000px;}
.yf5{bottom:83.193698px;}
.y232{bottom:84.019500px;}
.yd3{bottom:84.089086px;}
.y145{bottom:84.321000px;}
.y192{bottom:84.471000px;}
.y6a{bottom:84.981000px;}
.y166{bottom:85.046657px;}
.y157{bottom:88.320000px;}
.ydc{bottom:89.041583px;}
.y1c1{bottom:89.059500px;}
.y1cf{bottom:89.109000px;}
.yf4{bottom:90.027994px;}
.y1f5{bottom:90.391500px;}
.yd9{bottom:90.565228px;}
.yba{bottom:90.673358px;}
.yd2{bottom:90.923383px;}
.yf{bottom:91.023000px;}
.y30{bottom:93.265500px;}
.y187{bottom:94.078500px;}
.y37{bottom:94.246500px;}
.y167{bottom:95.384639px;}
.y138{bottom:95.535000px;}
.y235{bottom:96.540000px;}
.y1b4{bottom:96.705000px;}
.yf3{bottom:96.862291px;}
.yd8{bottom:97.399525px;}
.y1aa{bottom:97.561500px;}
.y19e{bottom:97.666500px;}
.yd1{bottom:97.757680px;}
.ydb{bottom:97.926169px;}
.y23d{bottom:99.526832px;}
.y46{bottom:101.178000px;}
.y1c0{bottom:103.257000px;}
.y1ce{bottom:103.305000px;}
.yf2{bottom:103.696588px;}
.y1e7{bottom:103.875000px;}
.ya7{bottom:103.911000px;}
.yd7{bottom:104.233822px;}
.yd0{bottom:104.591976px;}
.yda{bottom:104.760466px;}
.y191{bottom:104.794500px;}
.yab{bottom:105.456000px;}
.y168{bottom:105.715397px;}
.y1df{bottom:107.058000px;}
.y156{bottom:108.645000px;}
.y231{bottom:109.221000px;}
.y69{bottom:109.788000px;}
.y216{bottom:110.011500px;}
.yf1{bottom:110.530885px;}
.y1f4{bottom:110.656500px;}
.yd6{bottom:111.068118px;}
.ycf{bottom:111.426273px;}
.yae{bottom:113.299486px;}
.y8f{bottom:113.299818px;}
.y2f{bottom:113.589000px;}
.y1a9{bottom:113.998500px;}
.y19d{bottom:114.103500px;}
.y36{bottom:114.570000px;}
.y169{bottom:116.046154px;}
.y1bf{bottom:118.051500px;}
.y1cd{bottom:118.099500px;}
.yf0{bottom:119.415470px;}
.yd5{bottom:119.952704px;}
.yce{bottom:120.310859px;}
.y137{bottom:120.342000px;}
.y21f{bottom:120.559500px;}
.yb4{bottom:121.428313px;}
.y144{bottom:122.388000px;}
.y202{bottom:123.097500px;}
.y8e{bottom:123.218425px;}
.y1e6{bottom:124.198500px;}
.y190{bottom:125.118000px;}
.y45{bottom:125.985000px;}
.yef{bottom:126.249767px;}
.y16a{bottom:126.421368px;}
.y7a{bottom:126.668534px;}
.yd4{bottom:126.787001px;}
.y90{bottom:126.880404px;}
.ycd{bottom:127.145155px;}
.y155{bottom:128.968500px;}
.y19c{bottom:130.542000px;}
.y1b3{bottom:130.756500px;}
.y2e{bottom:133.912500px;}
.y68{bottom:134.598000px;}
.y186{bottom:136.398000px;}
.y79{bottom:136.709636px;}
.y16b{bottom:136.748706px;}
.ye{bottom:139.753500px;}
.y1be{bottom:141.580500px;}
.y1cc{bottom:141.630000px;}
.y6{bottom:141.706500px;}
.yeb{bottom:144.336036px;}
.y21e{bottom:144.370500px;}
.y1f3{bottom:144.856500px;}
.y18f{bottom:145.441500px;}
.y1a8{bottom:146.875500px;}
.y143{bottom:147.195000px;}
.y201{bottom:147.388500px;}
.y1e5{bottom:149.005500px;}
.y15{bottom:149.025000px;}
.y154{bottom:149.292000px;}
.y44{bottom:150.792000px;}
.y1b2{bottom:151.080000px;}
.yea{bottom:151.170333px;}
.ye3{bottom:151.243152px;}
.y1de{bottom:151.602000px;}
.y215{bottom:152.023500px;}
.yb7{bottom:152.190612px;}
.y136{bottom:152.622000px;}
.y87{bottom:153.464239px;}
.y2d{bottom:154.236000px;}
.y8d{bottom:154.970405px;}
.ybc{bottom:155.013419px;}
.y35{bottom:155.218500px;}
.y185{bottom:156.723000px;}
.ye9{bottom:158.004629px;}
.yfb{bottom:158.077445px;}
.ye2{bottom:158.077449px;}
.y6f{bottom:158.640324px;}
.y5e{bottom:161.064000px;}
.y23f{bottom:162.139347px;}
.y5b{bottom:162.159000px;}
.y58{bottom:162.484500px;}
.y1a7{bottom:163.314000px;}
.y86{bottom:163.382846px;}
.y19b{bottom:163.419000px;}
.ye8{bottom:164.838926px;}
.y8c{bottom:164.889012px;}
.yfa{bottom:164.911742px;}
.ye1{bottom:164.911745px;}
.y93{bottom:168.468162px;}
.y6e{bottom:168.681426px;}
.y1e4{bottom:169.329000px;}
.y1f2{bottom:169.663500px;}
.yaf{bottom:169.676773px;}
.y153{bottom:170.214000px;}
.y135{bottom:170.554500px;}
.ye7{bottom:171.673223px;}
.yf9{bottom:171.746039px;}
.ye0{bottom:171.746042px;}
.y142{bottom:172.002000px;}
.y214{bottom:172.347000px;}
.y14{bottom:173.832000px;}
.y1b1{bottom:174.253500px;}
.y2c{bottom:174.559500px;}
.y78{bottom:174.865838px;}
.y43{bottom:175.600500px;}
.y1dd{bottom:176.409000px;}
.yee{bottom:177.684950px;}
.y67{bottom:177.777000px;}
.y92{bottom:178.386753px;}
.ye6{bottom:178.507519px;}
.yf8{bottom:178.580335px;}
.ydf{bottom:178.580339px;}
.y1a6{bottom:179.752500px;}
.y19a{bottom:179.857500px;}
.y5{bottom:181.131000px;}
.yb0{bottom:182.502313px;}
.y96{bottom:182.784260px;}
.y99{bottom:183.523293px;}
.y184{bottom:184.518000px;}
.y1cb{bottom:185.829000px;}
.y1bd{bottom:185.860500px;}
.yed{bottom:186.569536px;}
.y21d{bottom:186.690000px;}
.y71{bottom:186.915169px;}
.ye5{bottom:187.392105px;}
.yf7{bottom:187.464921px;}
.yde{bottom:187.464925px;}
.y9a{bottom:188.145212px;}
.y91{bottom:188.304860px;}
.yd{bottom:188.485500px;}
.y1f1{bottom:189.987000px;}
.y200{bottom:190.405500px;}
.y134{bottom:191.476500px;}
.yec{bottom:193.403833px;}
.y23b{bottom:193.670368px;}
.y95{bottom:194.119665px;}
.y1e3{bottom:194.137500px;}
.ye4{bottom:194.226402px;}
.yf6{bottom:194.299218px;}
.ydd{bottom:194.299221px;}
.y98{bottom:194.858698px;}
.y2b{bottom:194.884500px;}
.y76{bottom:194.948050px;}
.y141{bottom:195.175500px;}
.y4{bottom:195.328500px;}
.y34{bottom:195.865500px;}
.y1a5{bottom:196.191000px;}
.y199{bottom:196.296000px;}
.y72{bottom:196.956272px;}
.y13{bottom:198.639000px;}
.yb1{bottom:200.213773px;}
.y1dc{bottom:201.216000px;}
.y213{bottom:201.637500px;}
.ybb{bottom:202.491472px;}
.y66{bottom:202.584000px;}
.ya2{bottom:203.017500px;}
.y77{bottom:204.989152px;}
.y183{bottom:205.440000px;}
.y94{bottom:205.455071px;}
.y97{bottom:206.194104px;}
.y4e{bottom:206.229000px;}
.y70{bottom:206.997381px;}
.y1b0{bottom:208.305000px;}
.y222{bottom:209.694000px;}
.y18e{bottom:209.776500px;}
.y1ca{bottom:210.636000px;}
.y1bc{bottom:210.667500px;}
.y1ff{bottom:210.730500px;}
.y21c{bottom:211.498500px;}
.y133{bottom:213.892500px;}
.y15e{bottom:214.369500px;}
.y17b{bottom:214.602000px;}
.y1f0{bottom:214.794000px;}
.y80{bottom:219.047717px;}
.yad{bottom:219.146715px;}
.y14c{bottom:219.165000px;}
.y2a{bottom:219.267000px;}
.y33{bottom:221.550000px;}
.y212{bottom:221.961000px;}
.y12{bottom:223.446000px;}
.y8b{bottom:223.751976px;}
.y127{bottom:224.950263px;}
.y120{bottom:225.487496px;}
.y119{bottom:225.560316px;}
.y1db{bottom:226.023000px;}
.y73{bottom:227.079586px;}
.y65{bottom:227.391000px;}
.ya1{bottom:227.824500px;}
.y182{bottom:227.856000px;}
.y140{bottom:228.385500px;}
.y15d{bottom:228.565500px;}
.y1af{bottom:228.628500px;}
.y17a{bottom:228.799500px;}
.y3{bottom:229.042500px;}
.y1a4{bottom:229.068000px;}
.y198{bottom:229.173000px;}
.y7f{bottom:230.383123px;}
.y4d{bottom:230.956500px;}
.y1c9{bottom:230.959500px;}
.y1bb{bottom:230.992500px;}
.y126{bottom:231.784559px;}
.y11f{bottom:232.321793px;}
.y118{bottom:232.394613px;}
.y128{bottom:232.799164px;}
.y8a{bottom:233.670575px;}
.y85{bottom:233.793081px;}
.yac{bottom:234.415213px;}
.y18d{bottom:234.583500px;}
.y74{bottom:235.112976px;}
.y1fe{bottom:235.537500px;}
.yc{bottom:237.217500px;}
.y125{bottom:238.618856px;}
.y132{bottom:238.699500px;}
.y11e{bottom:239.156090px;}
.y117{bottom:239.228909px;}
.y14b{bottom:239.488500px;}
.y1ef{bottom:239.604000px;}
.y15c{bottom:242.763000px;}
.y179{bottom:242.995500px;}
.y84{bottom:243.711680px;}
.y124{bottom:245.453153px;}
.y1a3{bottom:245.506500px;}
.y211{bottom:245.526000px;}
.y197{bottom:245.611500px;}
.y11d{bottom:245.990386px;}
.y116{bottom:246.063206px;}
.y13f{bottom:246.319500px;}
.y181{bottom:246.775500px;}
.y11{bottom:248.253000px;}
.y64{bottom:252.198000px;}
.y123{bottom:252.287449px;}
.ya0{bottom:252.631500px;}
.y11c{bottom:252.824683px;}
.y115{bottom:252.897503px;}
.y1ae{bottom:253.747500px;}
.y75{bottom:255.194685px;}
.y1c8{bottom:255.687000px;}
.y1ba{bottom:255.718500px;}
.y1fd{bottom:255.861000px;}
.y3f{bottom:256.530000px;}
.y15b{bottom:256.960500px;}
.y178{bottom:257.193000px;}
.y21b{bottom:258.769500px;}
.y14a{bottom:259.812000px;}
.y122{bottom:261.172035px;}
.y11b{bottom:261.709269px;}
.y114{bottom:261.782088px;}
.y29{bottom:262.461000px;}
.y1d4{bottom:262.490527px;}
.y131{bottom:263.506500px;}
.y13e{bottom:264.252000px;}
.y12a{bottom:266.515769px;}
.y89{bottom:267.932839px;}
.y121{bottom:268.006332px;}
.y4b{bottom:268.480500px;}
.y11a{bottom:268.543566px;}
.y113{bottom:268.616385px;}
.y1ee{bottom:273.573000px;}
.y129{bottom:274.872720px;}
.y63{bottom:277.005000px;}
.y88{bottom:277.851438px;}
.y1a2{bottom:278.383500px;}
.y196{bottom:278.487000px;}
.y149{bottom:280.135500px;}
.y1fc{bottom:280.668000px;}
.y18c{bottom:281.106000px;}
.y13d{bottom:282.184500px;}
.y208{bottom:283.363500px;}
.y21a{bottom:283.576500px;}
.y180{bottom:283.888500px;}
.y83{bottom:283.998607px;}
.y15a{bottom:284.605500px;}
.y177{bottom:284.839500px;}
.yb{bottom:285.948000px;}
.y1ad{bottom:287.109000px;}
.y130{bottom:288.313500px;}
.y2{bottom:292.653000px;}
.y7c{bottom:293.827843px;}
.y1ed{bottom:293.896500px;}
.y82{bottom:293.917206px;}
.y195{bottom:294.925500px;}
.y112{bottom:298.627115px;}
.y1c7{bottom:298.866000px;}
.y111{bottom:298.883404px;}
.y1b9{bottom:298.899000px;}
.y17f{bottom:300.327000px;}
.y148{bottom:300.459000px;}
.y62{bottom:300.570000px;}
.y1fb{bottom:300.991500px;}
.y18b{bottom:301.429500px;}
.y3b{bottom:301.474500px;}
.y17{bottom:302.710500px;}
.y207{bottom:303.687000px;}
.y81{bottom:304.119976px;}
.y7b{bottom:305.163249px;}
.y10e{bottom:305.461453px;}
.y10c{bottom:305.717739px;}
.y10d{bottom:305.717741px;}
.y1ac{bottom:306.535500px;}
.y219{bottom:308.383500px;}
.y159{bottom:309.415500px;}
.y176{bottom:309.648000px;}
.y194{bottom:311.364000px;}
.ycc{bottom:312.295708px;}
.ycb{bottom:312.295710px;}
.yca{bottom:312.551994px;}
.y12f{bottom:313.120500px;}
.y1ec{bottom:314.220000px;}
.y238{bottom:315.219000px;}
.y17e{bottom:316.765500px;}
.y13c{bottom:317.182500px;}
.y1{bottom:318.357000px;}
.yc9{bottom:319.130005px;}
.y23a{bottom:319.608000px;}
.y16{bottom:323.034000px;}
.y1c6{bottom:323.674500px;}
.y1b8{bottom:323.707500px;}
.y1fa{bottom:325.800000px;}
.y1ab{bottom:325.963500px;}
.y3a{bottom:327.109500px;}
.y206{bottom:328.888500px;}
.y61{bottom:332.125500px;}
.y17d{bottom:333.204000px;}
.y9f{bottom:337.000500px;}
.y1eb{bottom:337.393500px;}
.y13b{bottom:337.506000px;}
.ya{bottom:362.751000px;}
.y12c{bottom:3023.911185px;}
.y51{bottom:3025.466685px;}
.y54{bottom:3025.792185px;}
.y57{bottom:3026.888685px;}
.ya6{bottom:3029.527185px;}
.y48{bottom:3032.471685px;}
.y3e{bottom:3032.921685px;}
.y22d{bottom:3034.444185px;}
.y50{bottom:3045.790185px;}
.y53{bottom:3046.115685px;}
.y226{bottom:3046.639185px;}
.y230{bottom:3047.044185px;}
.y56{bottom:3047.212185px;}
.y175{bottom:3048.071685px;}
.y12b{bottom:3048.718185px;}
.y21{bottom:3052.655685px;}
.ya5{bottom:3054.334185px;}
.y210{bottom:3056.252685px;}
.y47{bottom:3057.673185px;}
.y3d{bottom:3058.556685px;}
.y229{bottom:3059.239185px;}
.y22c{bottom:3059.251185px;}
.y152{bottom:3068.035185px;}
.y225{bottom:3071.446185px;}
.y22f{bottom:3071.851185px;}
.y20{bottom:3072.980685px;}
.ya4{bottom:3079.141185px;}
.y20f{bottom:3083.150685px;}
.y228{bottom:3084.046185px;}
.y22b{bottom:3084.058185px;}
.y151{bottom:3088.358685px;}
.y1f{bottom:3093.304185px;}
.y224{bottom:3096.253185px;}
.y22e{bottom:3096.578685px;}
.ya3{bottom:3103.949685px;}
.y150{bottom:3108.683685px;}
.y227{bottom:3108.772185px;}
.y22a{bottom:3109.259685px;}
.y20e{bottom:3110.050185px;}
.y1e{bottom:3113.627685px;}
.y223{bottom:3121.454685px;}
.y14f{bottom:3129.007185px;}
.y1d{bottom:3133.951185px;}
.y14e{bottom:3149.330685px;}
.y20d{bottom:3152.062185px;}
.y1c{bottom:3154.274685px;}
.y55{bottom:3161.102685px;}
.y52{bottom:3162.197685px;}
.y4f{bottom:3162.523185px;}
.y14d{bottom:3170.252685px;}
.y20c{bottom:3172.385685px;}
.y1b{bottom:3174.598185px;}
.y1a{bottom:3194.923185px;}
.y20b{bottom:3201.676185px;}
.y174{bottom:3214.640685px;}
.y19{bottom:3219.305685px;}
.y20a{bottom:3221.999685px;}
.y173{bottom:3228.838185px;}
.y172{bottom:3243.034185px;}
.y209{bottom:3245.564685px;}
.y3c{bottom:3256.568685px;}
.y171{bottom:3257.231685px;}
.y40{bottom:3257.632185px;}
.y18{bottom:3262.499685px;}
.y170{bottom:3284.878185px;}
.y16f{bottom:3309.686685px;}
.y28{bottom:6053.676870px;}
.y27{bottom:6074.000370px;}
.y26{bottom:6094.323870px;}
.y25{bottom:6114.647370px;}
.y24{bottom:6155.295870px;}
.y23{bottom:6195.942870px;}
.y22{bottom:6221.627370px;}
.h2a{height:-2665.394685px;}
.h1d{height:14.068149px;}
.h22{height:15.387598px;}
.h21{height:15.387610px;}
.h1c{height:16.412755px;}
.h39{height:16.518285px;}
.h1f{height:16.615884px;}
.h1e{height:16.733348px;}
.h1a{height:19.798155px;}
.h23{height:20.317835px;}
.h11{height:20.669246px;}
.h27{height:21.283892px;}
.h16{height:21.722800px;}
.h15{height:22.272924px;}
.h20{height:23.220383px;}
.h13{height:24.113996px;}
.h8{height:25.392845px;}
.h37{height:26.648141px;}
.h19{height:27.371390px;}
.h29{height:27.398067px;}
.h28{height:27.533314px;}
.h12{height:27.558896px;}
.hf{height:28.206206px;}
.h17{height:28.963734px;}
.h35{height:33.411125px;}
.h34{height:33.417125px;}
.h4{height:33.856985px;}
.h32{height:35.195962px;}
.h7{height:35.259465px;}
.h5{height:35.530706px;}
.h2b{height:38.089267px;}
.h33{height:39.595622px;}
.h2c{height:39.972211px;}
.h9{height:41.037857px;}
.h2f{height:41.578840px;}
.h24{height:42.321125px;}
.h25{height:44.413271px;}
.h3{height:46.341857px;}
.ha{height:48.174586px;}
.hb{height:48.632768px;}
.hd{height:50.595857px;}
.h2e{height:60.666893px;}
.h2{height:60.942658px;}
.h2d{height:62.181870px;}
.hc{height:63.352819px;}
.he{height:72.840146px;}
.h30{height:89.790940px;}
.h6{height:91.054594px;}
.h18{height:91.935269px;}
.h36{height:105.295601px;}
.h31{height:138.003049px;}
.h26{height:148.823100px;}
.h38{height:205.400085px;}
.h14{height:246.630013px;}
.h10{height:312.275865px;}
.h1b{height:328.001922px;}
.h1{height:382.500000px;}
.h0{height:382.677000px;}
.w8{width:-2674.055685px;}
.wa{width:291.677925px;}
.w7{width:297.646200px;}
.w3{width:333.363113px;}
.w2{width:416.724081px;}
.w4{width:583.333957px;}
.w6{width:595.267192px;}
.w5{width:595.276717px;}
.w9{width:656.488095px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x5e{left:4.433202px;}
.x33{left:6.145841px;}
.x6d{left:7.176011px;}
.x7c{left:9.366417px;}
.x59{left:14.106881px;}
.xa{left:18.136500px;}
.x7a{left:20.107533px;}
.x79{left:22.002018px;}
.x6a{left:23.520573px;}
.x78{left:26.457820px;}
.x75{left:28.347000px;}
.x77{left:30.913622px;}
.x76{left:33.143233px;}
.x21{left:36.141000px;}
.x6b{left:37.465116px;}
.x6c{left:39.189710px;}
.x16{left:42.237000px;}
.xb{left:43.275000px;}
.x7b{left:44.291287px;}
.x49{left:45.470220px;}
.x24{left:48.475500px;}
.x80{left:53.536500px;}
.x81{left:54.792000px;}
.x5d{left:60.995158px;}
.x73{left:63.465000px;}
.x36{left:72.515952px;}
.xc{left:75.247500px;}
.x69{left:76.922058px;}
.x88{left:86.380013px;}
.x70{left:92.069107px;}
.x1c{left:96.786303px;}
.x57{left:98.638558px;}
.x4e{left:100.108156px;}
.x72{left:107.974500px;}
.x56{left:108.998260px;}
.x54{left:112.735681px;}
.x8{left:120.988740px;}
.x39{left:126.453163px;}
.x3a{left:129.382179px;}
.x4f{left:130.472405px;}
.x7{left:131.812500px;}
.x3b{left:135.362956px;}
.x9{left:136.401000px;}
.x3c{left:139.423284px;}
.x1d{left:141.831000px;}
.x52{left:143.272681px;}
.x37{left:145.590030px;}
.x38{left:149.464385px;}
.x7d{left:155.053700px;}
.x43{left:159.505492px;}
.x42{left:161.186963px;}
.x5f{left:165.708040px;}
.x2{left:168.838500px;}
.x1b{left:173.481000px;}
.x5a{left:191.216674px;}
.x1a{left:193.065000px;}
.x61{left:203.041017px;}
.x53{left:204.346681px;}
.x5{left:206.259000px;}
.x2e{left:208.656567px;}
.x2d{left:218.697670px;}
.x51{left:219.865680px;}
.x60{left:224.969974px;}
.x4{left:227.187000px;}
.x2b{left:230.173402px;}
.x31{left:233.964587px;}
.x6{left:235.701000px;}
.x32{left:238.835211px;}
.x2c{left:240.214505px;}
.x2f{left:245.218740px;}
.x22{left:250.866000px;}
.x25{left:252.216513px;}
.x18{left:253.971000px;}
.x30{left:255.259842px;}
.x2a{left:258.288494px;}
.x1{left:259.869000px;}
.x29{left:263.680989px;}
.x26{left:265.269952px;}
.x67{left:267.492704px;}
.x27{left:273.722098px;}
.x3{left:278.695500px;}
.x28{left:283.763201px;}
.x50{left:293.478826px;}
.x11{left:299.731500px;}
.x85{left:308.691000px;}
.x4a{left:316.363173px;}
.x86{left:321.696000px;}
.x41{left:324.531684px;}
.x40{left:326.910541px;}
.x3f{left:330.729966px;}
.x44{left:332.895275px;}
.x12{left:334.486500px;}
.x87{left:335.719500px;}
.x3e{left:337.116520px;}
.x4b{left:338.293500px;}
.x3d{left:344.865230px;}
.x48{left:354.223729px;}
.x94{left:358.813500px;}
.x58{left:362.978784px;}
.x82{left:364.252500px;}
.x7f{left:369.633000px;}
.x4c{left:371.020500px;}
.x13{left:376.377000px;}
.x8e{left:380.257500px;}
.x95{left:385.510500px;}
.x83{left:389.520000px;}
.x64{left:403.703647px;}
.x84{left:404.799000px;}
.x6f{left:406.091375px;}
.x62{left:407.740153px;}
.x63{left:411.392232px;}
.x93{left:413.862000px;}
.x8a{left:415.427599px;}
.x89{left:423.864718px;}
.x34{left:442.176875px;}
.x55{left:446.079652px;}
.x47{left:460.755042px;}
.x45{left:462.785210px;}
.x23{left:465.589500px;}
.x35{left:469.815476px;}
.x46{left:485.752395px;}
.x5c{left:487.238394px;}
.x66{left:492.609352px;}
.x6e{left:508.178734px;}
.x68{left:513.123337px;}
.x71{left:514.190183px;}
.x65{left:516.420894px;}
.x5b{left:517.763165px;}
.x8c{left:594.615900px;}
.x8b{left:607.070698px;}
.xe{left:3018.463185px;}
.x8f{left:3028.385685px;}
.x1e{left:3036.179685px;}
.x14{left:3042.275685px;}
.x90{left:3061.112685px;}
.x4d{left:3075.286185px;}
.x19{left:3193.103685px;}
.x1f{left:3250.904685px;}
.x15{left:3254.009685px;}
.x74{left:3273.212685px;}
.xd{left:3299.770185px;}
.x7e{left:3354.370185px;}
.x17{left:3370.243185px;}
.x8d{left:3380.296185px;}
.x91{left:3413.900685px;}
.x92{left:3446.627685px;}
.x20{left:3465.628185px;}
.xf{left:6334.563870px;}
.x10{left:6376.454370px;}
@media print{
.v7{vertical-align:-7.914667pt;}
.v1{vertical-align:-4.714667pt;}
.v4{vertical-align:-0.911240pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.875507pt;}
.v2{vertical-align:3.781333pt;}
.v5{vertical-align:9.337920pt;}
.v6{vertical-align:42.855200pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:5.313400pt;}
.ls7{letter-spacing:13.281216pt;}
.ls6{letter-spacing:13.286549pt;}
.ls9{letter-spacing:14.541582pt;}
.ls3{letter-spacing:14.545467pt;}
.ls5{letter-spacing:20.960640pt;}
.lsa{letter-spacing:44.631552pt;}
.ls1{letter-spacing:46.666152pt;}
.ls4{letter-spacing:205.542534pt;}
.ls2{letter-spacing:422.833320pt;}
.ws2f{word-spacing:-33.049467pt;}
.ws1{word-spacing:-14.545467pt;}
.ws20{word-spacing:-13.283467pt;}
.ws11{word-spacing:-11.702746pt;}
.ws8{word-spacing:-11.220414pt;}
.ws26{word-spacing:-9.999721pt;}
.ws9{word-spacing:-9.817847pt;}
.wsc{word-spacing:-9.658921pt;}
.ws19{word-spacing:-7.893655pt;}
.wsb{word-spacing:-7.244191pt;}
.ws18{word-spacing:-6.315310pt;}
.ws10{word-spacing:-6.087074pt;}
.wsf{word-spacing:-5.217519pt;}
.ws5{word-spacing:-1.512729pt;}
.ws1c{word-spacing:-0.116364pt;}
.ws1b{word-spacing:-0.053134pt;}
.wsa{word-spacing:-0.026058pt;}
.ws12{word-spacing:-0.019440pt;}
.ws30{word-spacing:-0.003729pt;}
.ws2a{word-spacing:-0.002499pt;}
.ws4{word-spacing:-0.002395pt;}
.ws2b{word-spacing:-0.001572pt;}
.ws2e{word-spacing:-0.001110pt;}
.ws0{word-spacing:0.000000pt;}
.ws6{word-spacing:0.001394pt;}
.ws2c{word-spacing:1.768054pt;}
.ws2d{word-spacing:1.785302pt;}
.ws1a{word-spacing:1.989419pt;}
.ws15{word-spacing:2.215968pt;}
.ws1d{word-spacing:2.443638pt;}
.ws2{word-spacing:6.341823pt;}
.ws31{word-spacing:14.486117pt;}
.ws17{word-spacing:27.162101pt;}
.ws13{word-spacing:28.072282pt;}
.ws14{word-spacing:28.072288pt;}
.ws1e{word-spacing:30.557491pt;}
.ws3{word-spacing:37.178213pt;}
.ws22{word-spacing:47.820600pt;}
.ws21{word-spacing:53.134000pt;}
.ws1f{word-spacing:61.162803pt;}
.ws7{word-spacing:61.543227pt;}
.wsd{word-spacing:73.268451pt;}
.ws25{word-spacing:100.827078pt;}
.ws24{word-spacing:134.025202pt;}
.ws27{word-spacing:138.671250pt;}
.ws29{word-spacing:139.362162pt;}
.ws16{word-spacing:143.883756pt;}
.ws28{word-spacing:161.669896pt;}
.wse{word-spacing:214.175293pt;}
.ws23{word-spacing:218.699544pt;}
._16{margin-left:-512.965140pt;}
._d{margin-left:-7.796370pt;}
._8{margin-left:-6.690915pt;}
._a{margin-left:-4.654549pt;}
._14{margin-left:-3.025457pt;}
._1{margin-left:-2.082853pt;}
._0{margin-left:-0.930910pt;}
._c{width:0.989092pt;}
._4{width:1.882387pt;}
._5{width:3.152999pt;}
._2{width:4.141252pt;}
._13{width:5.088586pt;}
._3{width:6.305997pt;}
._11{width:7.715833pt;}
._1e{width:8.819072pt;}
._2d{width:10.309195pt;}
._1f{width:11.424559pt;}
._20{width:13.752461pt;}
._19{width:15.090018pt;}
._10{width:16.523650pt;}
._22{width:17.687287pt;}
._18{width:23.200459pt;}
._15{width:24.785475pt;}
._2e{width:31.905949pt;}
._1d{width:40.478909pt;}
._1c{width:57.151068pt;}
._21{width:61.210624pt;}
._1a{width:63.767326pt;}
._1b{width:68.216811pt;}
._7{width:71.476156pt;}
._29{width:87.224774pt;}
._2c{width:111.453878pt;}
._26{width:120.422898pt;}
._27{width:124.886154pt;}
._28{width:144.652002pt;}
._b{width:162.818783pt;}
._f{width:163.712078pt;}
._23{width:205.097240pt;}
._24{width:209.560496pt;}
._25{width:229.326344pt;}
._2a{width:237.190176pt;}
._2b{width:344.945928pt;}
._31{width:463.303619pt;}
._12{width:531.303511pt;}
._9{width:766.895185pt;}
._30{width:769.874477pt;}
._17{width:965.037056pt;}
._6{width:979.863723pt;}
._2f{width:994.685056pt;}
._e{width:1024.931763pt;}
.fs10{font-size:16.459052pt;}
.fsf{font-size:19.202126pt;}
.fs11{font-size:19.439777pt;}
.fs15{font-size:19.922113pt;}
.fs19{font-size:20.915840pt;}
.fse{font-size:23.162880pt;}
.fs13{font-size:23.770881pt;}
.fs7{font-size:24.182015pt;}
.fs14{font-size:24.901120pt;}
.fsa{font-size:26.058240pt;}
.fs12{font-size:27.166721pt;}
.fs9{font-size:28.212204pt;}
.fsd{font-size:28.953600pt;}
.fs4{font-size:31.880533pt;}
.fs8{font-size:32.242570pt;}
.fsb{font-size:34.744320pt;}
.fs6{font-size:37.645920pt;}
.fs17{font-size:39.998884pt;}
.fs2{font-size:42.507200pt;}
.fs3{font-size:47.059680pt;}
.fs16{font-size:47.820800pt;}
.fs5{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs0{font-size:76.513067pt;}
.fsc{font-size:110.283724pt;}
.fs18{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y16e{bottom:2.334480pt;}
.y10{bottom:3.441333pt;}
.y9{bottom:3.442667pt;}
.y1d8{bottom:8.428745pt;}
.yfd{bottom:11.177412pt;}
.y16c{bottom:13.189204pt;}
.y10f{bottom:13.666352pt;}
.y1da{bottom:13.785646pt;}
.y4c{bottom:14.504117pt;}
.y10b{bottom:14.511082pt;}
.yc4{bottom:17.289953pt;}
.y8{bottom:18.131024pt;}
.y1b7{bottom:18.906667pt;}
.y1d7{bottom:19.142546pt;}
.y1d6{bottom:19.142547pt;}
.y110{bottom:19.445333pt;}
.yfc{bottom:19.667012pt;}
.y9c{bottom:19.970645pt;}
.y160{bottom:20.426700pt;}
.y10a{bottom:20.586012pt;}
.y1ea{bottom:20.941333pt;}
.y12e{bottom:21.220000pt;}
.yc8{bottom:21.408000pt;}
.y1f9{bottom:21.901333pt;}
.y5a{bottom:22.602667pt;}
.y18a{bottom:22.705333pt;}
.y5d{bottom:22.892000pt;}
.y7{bottom:23.236000pt;}
.y60{bottom:23.866667pt;}
.y1d9{bottom:24.499447pt;}
.yc3{bottom:24.528353pt;}
.y6d{bottom:25.941333pt;}
.yaa{bottom:26.212000pt;}
.y23c{bottom:26.409647pt;}
.y109{bottom:26.660943pt;}
.y1c5{bottom:28.686667pt;}
.y1d3{bottom:28.730667pt;}
.y4a{bottom:28.829333pt;}
.y42{bottom:29.229333pt;}
.y161{bottom:29.609596pt;}
.yc7{bottom:29.733333pt;}
.y205{bottom:29.993333pt;}
.y234{bottom:30.582667pt;}
.y240{bottom:30.766667pt;}
.y6c{bottom:31.437333pt;}
.yc2{bottom:31.766753pt;}
.y147{bottom:31.954667pt;}
.y108{bottom:32.735873pt;}
.y1e2{bottom:32.994667pt;}
.y104{bottom:33.213415pt;}
.y1f8{bottom:34.520000pt;}
.y239{bottom:34.669333pt;}
.y1d5{bottom:35.570374pt;}
.y1e9{bottom:38.210667pt;}
.y107{bottom:38.810804pt;}
.y162{bottom:38.828969pt;}
.yc1{bottom:39.005153pt;}
.y103{bottom:39.288345pt;}
.y100{bottom:39.353073pt;}
.y59{bottom:40.668000pt;}
.y5c{bottom:40.957333pt;}
.y1c4{bottom:41.306667pt;}
.y1d2{bottom:41.349333pt;}
.y237{bottom:41.782667pt;}
.y5f{bottom:41.932000pt;}
.yb9{bottom:42.197413pt;}
.y9b{bottom:42.284212pt;}
.y15f{bottom:42.489333pt;}
.yb3{bottom:42.601267pt;}
.y17c{bottom:42.696000pt;}
.y1a1{bottom:42.978667pt;}
.y12d{bottom:43.270667pt;}
.y9e{bottom:44.222812pt;}
.y189{bottom:44.756000pt;}
.y13a{bottom:44.804000pt;}
.ybf{bottom:46.049381pt;}
.yc0{bottom:46.243553pt;}
.y16d{bottom:46.488981pt;}
.y106{bottom:46.708213pt;}
.y32{bottom:46.770667pt;}
.y1b6{bottom:46.948000pt;}
.y102{bottom:47.185754pt;}
.yff{bottom:47.250483pt;}
.y39{bottom:47.644000pt;}
.yc6{bottom:47.800000pt;}
.y163{bottom:48.011864pt;}
.y204{bottom:48.058667pt;}
.ya9{bottom:48.262667pt;}
.y221{bottom:48.308000pt;}
.yb6{bottom:49.848118pt;}
.y218{bottom:49.968000pt;}
.y1e1{bottom:51.060000pt;}
.y1f7{bottom:51.124000pt;}
.y49{bottom:51.230667pt;}
.y41{bottom:52.016000pt;}
.yb8{bottom:52.386522pt;}
.y233{bottom:52.633333pt;}
.y105{bottom:52.783144pt;}
.y101{bottom:53.260685pt;}
.yfe{bottom:53.325413pt;}
.y6b{bottom:53.488000pt;}
.y1c3{bottom:53.925333pt;}
.y1d1{bottom:53.969333pt;}
.y146{bottom:54.004000pt;}
.y9d{bottom:54.298728pt;}
.y7e{bottom:55.097109pt;}
.y1e8{bottom:55.478667pt;}
.yb2{bottom:56.362678pt;}
.ybd{bottom:56.659313pt;}
.y193{bottom:57.020000pt;}
.y164{bottom:57.194760pt;}
.y1a0{bottom:57.590667pt;}
.y158{bottom:60.441333pt;}
.y23e{bottom:61.770968pt;}
.y1f6{bottom:63.744000pt;}
.y236{bottom:63.833333pt;}
.y31{bottom:64.837333pt;}
.y1b5{bottom:65.013333pt;}
.y7d{bottom:65.173025pt;}
.y38{bottom:65.709333pt;}
.ybe{bottom:65.793182pt;}
.yc5{bottom:65.865333pt;}
.y165{bottom:66.414132pt;}
.y1c2{bottom:66.545333pt;}
.y1d0{bottom:66.588000pt;}
.y188{bottom:66.806667pt;}
.y139{bottom:66.854667pt;}
.yb5{bottom:67.763158pt;}
.y220{bottom:68.906667pt;}
.ya8{bottom:70.313333pt;}
.y203{bottom:70.461333pt;}
.y19f{bottom:72.202667pt;}
.y1e0{bottom:73.110667pt;}
.y217{bottom:73.877333pt;}
.yf5{bottom:73.949954pt;}
.y232{bottom:74.684000pt;}
.yd3{bottom:74.745854pt;}
.y145{bottom:74.952000pt;}
.y192{bottom:75.085333pt;}
.y6a{bottom:75.538667pt;}
.y166{bottom:75.597029pt;}
.y157{bottom:78.506667pt;}
.ydc{bottom:79.148074pt;}
.y1c1{bottom:79.164000pt;}
.y1cf{bottom:79.208000pt;}
.yf4{bottom:80.024884pt;}
.y1f5{bottom:80.348000pt;}
.yd9{bottom:80.502425pt;}
.yba{bottom:80.598540pt;}
.yd2{bottom:80.820785pt;}
.yf{bottom:80.909333pt;}
.y30{bottom:82.902667pt;}
.y187{bottom:83.625333pt;}
.y37{bottom:83.774667pt;}
.y167{bottom:84.786346pt;}
.y138{bottom:84.920000pt;}
.y235{bottom:85.813333pt;}
.y1b4{bottom:85.960000pt;}
.yf3{bottom:86.099814pt;}
.yd8{bottom:86.577356pt;}
.y1aa{bottom:86.721333pt;}
.y19e{bottom:86.814667pt;}
.yd1{bottom:86.895715pt;}
.ydb{bottom:87.045484pt;}
.y23d{bottom:88.468295pt;}
.y46{bottom:89.936000pt;}
.y1c0{bottom:91.784000pt;}
.y1ce{bottom:91.826667pt;}
.yf2{bottom:92.174745pt;}
.y1e7{bottom:92.333333pt;}
.ya7{bottom:92.365333pt;}
.yd7{bottom:92.652286pt;}
.yd0{bottom:92.970646pt;}
.yda{bottom:93.120414pt;}
.y191{bottom:93.150667pt;}
.yab{bottom:93.738667pt;}
.y168{bottom:93.969241pt;}
.y1df{bottom:95.162667pt;}
.y156{bottom:96.573333pt;}
.y231{bottom:97.085333pt;}
.y69{bottom:97.589333pt;}
.y216{bottom:97.788000pt;}
.yf1{bottom:98.249675pt;}
.y1f4{bottom:98.361333pt;}
.yd6{bottom:98.727216pt;}
.ycf{bottom:99.045576pt;}
.yae{bottom:100.710654pt;}
.y8f{bottom:100.710950pt;}
.y2f{bottom:100.968000pt;}
.y1a9{bottom:101.332000pt;}
.y19d{bottom:101.425333pt;}
.y36{bottom:101.840000pt;}
.y169{bottom:103.152137pt;}
.y1bf{bottom:104.934667pt;}
.y1cd{bottom:104.977333pt;}
.yf0{bottom:106.147085pt;}
.yd5{bottom:106.624626pt;}
.yce{bottom:106.942985pt;}
.y137{bottom:106.970667pt;}
.y21f{bottom:107.164000pt;}
.yb4{bottom:107.936278pt;}
.y144{bottom:108.789333pt;}
.y202{bottom:109.420000pt;}
.y8e{bottom:109.527489pt;}
.y1e6{bottom:110.398667pt;}
.y190{bottom:111.216000pt;}
.y45{bottom:111.986667pt;}
.yef{bottom:112.222015pt;}
.y16a{bottom:112.374549pt;}
.y7a{bottom:112.594252pt;}
.yd4{bottom:112.699556pt;}
.y90{bottom:112.782581pt;}
.ycd{bottom:113.017916pt;}
.y155{bottom:114.638667pt;}
.y19c{bottom:116.037333pt;}
.y1b3{bottom:116.228000pt;}
.y2e{bottom:119.033333pt;}
.y68{bottom:119.642667pt;}
.y186{bottom:121.242667pt;}
.y79{bottom:121.519677pt;}
.y16b{bottom:121.554406pt;}
.ye{bottom:124.225333pt;}
.y1be{bottom:125.849333pt;}
.y1cc{bottom:125.893333pt;}
.y6{bottom:125.961333pt;}
.yeb{bottom:128.298699pt;}
.y21e{bottom:128.329333pt;}
.y1f3{bottom:128.761333pt;}
.y18f{bottom:129.281333pt;}
.y1a8{bottom:130.556000pt;}
.y143{bottom:130.840000pt;}
.y201{bottom:131.012000pt;}
.y1e5{bottom:132.449333pt;}
.y15{bottom:132.466667pt;}
.y154{bottom:132.704000pt;}
.y44{bottom:134.037333pt;}
.y1b2{bottom:134.293333pt;}
.yea{bottom:134.373629pt;}
.ye3{bottom:134.438357pt;}
.y1de{bottom:134.757333pt;}
.y215{bottom:135.132000pt;}
.yb7{bottom:135.280544pt;}
.y136{bottom:135.664000pt;}
.y87{bottom:136.412657pt;}
.y2d{bottom:137.098667pt;}
.y8d{bottom:137.751471pt;}
.ybc{bottom:137.789706pt;}
.y35{bottom:137.972000pt;}
.y185{bottom:139.309333pt;}
.ye9{bottom:140.448559pt;}
.yfb{bottom:140.513285pt;}
.ye2{bottom:140.513288pt;}
.y6f{bottom:141.013621pt;}
.y5e{bottom:143.168000pt;}
.y23f{bottom:144.123864pt;}
.y5b{bottom:144.141333pt;}
.y58{bottom:144.430667pt;}
.y1a7{bottom:145.168000pt;}
.y86{bottom:145.229197pt;}
.y19b{bottom:145.261333pt;}
.ye8{bottom:146.523490pt;}
.y8c{bottom:146.568011pt;}
.yfa{bottom:146.588215pt;}
.ye1{bottom:146.588218pt;}
.y93{bottom:149.749477pt;}
.y6e{bottom:149.939045pt;}
.y1e4{bottom:150.514667pt;}
.y1f2{bottom:150.812000pt;}
.yaf{bottom:150.823798pt;}
.y153{bottom:151.301333pt;}
.y135{bottom:151.604000pt;}
.ye7{bottom:152.598420pt;}
.yf9{bottom:152.663146pt;}
.ye0{bottom:152.663149pt;}
.y142{bottom:152.890667pt;}
.y214{bottom:153.197333pt;}
.y14{bottom:154.517333pt;}
.y1b1{bottom:154.892000pt;}
.y2c{bottom:155.164000pt;}
.y78{bottom:155.436300pt;}
.y43{bottom:156.089333pt;}
.y1dd{bottom:156.808000pt;}
.yee{bottom:157.942178pt;}
.y67{bottom:158.024000pt;}
.y92{bottom:158.566003pt;}
.ye6{bottom:158.673351pt;}
.yf8{bottom:158.738076pt;}
.ydf{bottom:158.738079pt;}
.y1a6{bottom:159.780000pt;}
.y19a{bottom:159.873333pt;}
.y5{bottom:161.005333pt;}
.yb0{bottom:162.224278pt;}
.y96{bottom:162.474898pt;}
.y99{bottom:163.131816pt;}
.y184{bottom:164.016000pt;}
.y1cb{bottom:165.181333pt;}
.y1bd{bottom:165.209333pt;}
.yed{bottom:165.839588pt;}
.y21d{bottom:165.946667pt;}
.y71{bottom:166.146817pt;}
.ye5{bottom:166.570760pt;}
.yf7{bottom:166.635485pt;}
.yde{bottom:166.635488pt;}
.y9a{bottom:167.240188pt;}
.y91{bottom:167.382098pt;}
.yd{bottom:167.542667pt;}
.y1f1{bottom:168.877333pt;}
.y200{bottom:169.249333pt;}
.y134{bottom:170.201333pt;}
.yec{bottom:171.914518pt;}
.y23b{bottom:172.151438pt;}
.y95{bottom:172.550814pt;}
.y1e3{bottom:172.566667pt;}
.ye4{bottom:172.645691pt;}
.yf6{bottom:172.710416pt;}
.ydd{bottom:172.710419pt;}
.y98{bottom:173.207732pt;}
.y2b{bottom:173.230667pt;}
.y76{bottom:173.287155pt;}
.y141{bottom:173.489333pt;}
.y4{bottom:173.625333pt;}
.y34{bottom:174.102667pt;}
.y1a5{bottom:174.392000pt;}
.y199{bottom:174.485333pt;}
.y72{bottom:175.072241pt;}
.y13{bottom:176.568000pt;}
.yb1{bottom:177.967798pt;}
.y1dc{bottom:178.858667pt;}
.y213{bottom:179.233333pt;}
.ybb{bottom:179.992420pt;}
.y66{bottom:180.074667pt;}
.ya2{bottom:180.460000pt;}
.y77{bottom:182.212580pt;}
.y183{bottom:182.613333pt;}
.y94{bottom:182.626729pt;}
.y97{bottom:183.283648pt;}
.y4e{bottom:183.314667pt;}
.y70{bottom:183.997672pt;}
.y1b0{bottom:185.160000pt;}
.y222{bottom:186.394667pt;}
.y18e{bottom:186.468000pt;}
.y1ca{bottom:187.232000pt;}
.y1bc{bottom:187.260000pt;}
.y1ff{bottom:187.316000pt;}
.y21c{bottom:187.998667pt;}
.y133{bottom:190.126667pt;}
.y15e{bottom:190.550667pt;}
.y17b{bottom:190.757333pt;}
.y1f0{bottom:190.928000pt;}
.y80{bottom:194.709082pt;}
.yad{bottom:194.797080pt;}
.y14c{bottom:194.813333pt;}
.y2a{bottom:194.904000pt;}
.y33{bottom:196.933333pt;}
.y212{bottom:197.298667pt;}
.y12{bottom:198.618667pt;}
.y8b{bottom:198.890645pt;}
.y127{bottom:199.955789pt;}
.y120{bottom:200.433330pt;}
.y119{bottom:200.498059pt;}
.y1db{bottom:200.909333pt;}
.y73{bottom:201.848521pt;}
.y65{bottom:202.125333pt;}
.ya1{bottom:202.510667pt;}
.y182{bottom:202.538667pt;}
.y140{bottom:203.009333pt;}
.y15d{bottom:203.169333pt;}
.y1af{bottom:203.225333pt;}
.y17a{bottom:203.377333pt;}
.y3{bottom:203.593333pt;}
.y1a4{bottom:203.616000pt;}
.y198{bottom:203.709333pt;}
.y7f{bottom:204.784998pt;}
.y4d{bottom:205.294667pt;}
.y1c9{bottom:205.297333pt;}
.y1bb{bottom:205.326667pt;}
.y126{bottom:206.030719pt;}
.y11f{bottom:206.508261pt;}
.y118{bottom:206.572989pt;}
.y128{bottom:206.932591pt;}
.y8a{bottom:207.707178pt;}
.y85{bottom:207.816072pt;}
.yac{bottom:208.369078pt;}
.y18d{bottom:208.518667pt;}
.y74{bottom:208.989312pt;}
.y1fe{bottom:209.366667pt;}
.yc{bottom:210.860000pt;}
.y125{bottom:212.105650pt;}
.y132{bottom:212.177333pt;}
.y11e{bottom:212.583191pt;}
.y117{bottom:212.647919pt;}
.y14b{bottom:212.878667pt;}
.y1ef{bottom:212.981333pt;}
.y15c{bottom:215.789333pt;}
.y179{bottom:215.996000pt;}
.y84{bottom:216.632605pt;}
.y124{bottom:218.180580pt;}
.y1a3{bottom:218.228000pt;}
.y211{bottom:218.245333pt;}
.y197{bottom:218.321333pt;}
.y11d{bottom:218.658121pt;}
.y116{bottom:218.722850pt;}
.y13f{bottom:218.950667pt;}
.y181{bottom:219.356000pt;}
.y11{bottom:220.669333pt;}
.y64{bottom:224.176000pt;}
.y123{bottom:224.255511pt;}
.ya0{bottom:224.561333pt;}
.y11c{bottom:224.733052pt;}
.y115{bottom:224.797780pt;}
.y1ae{bottom:225.553333pt;}
.y75{bottom:226.839720pt;}
.y1c8{bottom:227.277333pt;}
.y1ba{bottom:227.305333pt;}
.y1fd{bottom:227.432000pt;}
.y3f{bottom:228.026667pt;}
.y15b{bottom:228.409333pt;}
.y178{bottom:228.616000pt;}
.y21b{bottom:230.017333pt;}
.y14a{bottom:230.944000pt;}
.y122{bottom:232.152920pt;}
.y11b{bottom:232.630461pt;}
.y114{bottom:232.695190pt;}
.y29{bottom:233.298667pt;}
.y1d4{bottom:233.324913pt;}
.y131{bottom:234.228000pt;}
.y13e{bottom:234.890667pt;}
.y12a{bottom:236.902906pt;}
.y89{bottom:238.162523pt;}
.y121{bottom:238.227851pt;}
.y4b{bottom:238.649333pt;}
.y11a{bottom:238.705392pt;}
.y113{bottom:238.770120pt;}
.y1ee{bottom:243.176000pt;}
.y129{bottom:244.331306pt;}
.y63{bottom:246.226667pt;}
.y88{bottom:246.979056pt;}
.y1a2{bottom:247.452000pt;}
.y196{bottom:247.544000pt;}
.y149{bottom:249.009333pt;}
.y1fc{bottom:249.482667pt;}
.y18c{bottom:249.872000pt;}
.y13d{bottom:250.830667pt;}
.y208{bottom:251.878667pt;}
.y21a{bottom:252.068000pt;}
.y180{bottom:252.345333pt;}
.y83{bottom:252.443206pt;}
.y15a{bottom:252.982667pt;}
.y177{bottom:253.190667pt;}
.yb{bottom:254.176000pt;}
.y1ad{bottom:255.208000pt;}
.y130{bottom:256.278667pt;}
.y2{bottom:260.136000pt;}
.y7c{bottom:261.180305pt;}
.y1ed{bottom:261.241333pt;}
.y82{bottom:261.259739pt;}
.y195{bottom:262.156000pt;}
.y112{bottom:265.446324pt;}
.y1c7{bottom:265.658667pt;}
.y111{bottom:265.674137pt;}
.y1b9{bottom:265.688000pt;}
.y17f{bottom:266.957333pt;}
.y148{bottom:267.074667pt;}
.y62{bottom:267.173333pt;}
.y1fb{bottom:267.548000pt;}
.y18b{bottom:267.937333pt;}
.y3b{bottom:267.977333pt;}
.y17{bottom:269.076000pt;}
.y207{bottom:269.944000pt;}
.y81{bottom:270.328868pt;}
.y7b{bottom:271.256221pt;}
.y10e{bottom:271.521292pt;}
.y10c{bottom:271.749102pt;}
.y10d{bottom:271.749103pt;}
.y1ac{bottom:272.476000pt;}
.y219{bottom:274.118667pt;}
.y159{bottom:275.036000pt;}
.y176{bottom:275.242667pt;}
.y194{bottom:276.768000pt;}
.ycc{bottom:277.596185pt;}
.ycb{bottom:277.596187pt;}
.yca{bottom:277.823995pt;}
.y12f{bottom:278.329333pt;}
.y1ec{bottom:279.306667pt;}
.y238{bottom:280.194667pt;}
.y17e{bottom:281.569333pt;}
.y13c{bottom:281.940000pt;}
.y1{bottom:282.984000pt;}
.yc9{bottom:283.671116pt;}
.y23a{bottom:284.096000pt;}
.y16{bottom:287.141333pt;}
.y1c6{bottom:287.710667pt;}
.y1b8{bottom:287.740000pt;}
.y1fa{bottom:289.600000pt;}
.y1ab{bottom:289.745333pt;}
.y3a{bottom:290.764000pt;}
.y206{bottom:292.345333pt;}
.y61{bottom:295.222667pt;}
.y17d{bottom:296.181333pt;}
.y9f{bottom:299.556000pt;}
.y1eb{bottom:299.905333pt;}
.y13b{bottom:300.005333pt;}
.ya{bottom:322.445333pt;}
.y12c{bottom:2687.921053pt;}
.y51{bottom:2689.303720pt;}
.y54{bottom:2689.593053pt;}
.y57{bottom:2690.567720pt;}
.ya6{bottom:2692.913053pt;}
.y48{bottom:2695.530387pt;}
.y3e{bottom:2695.930387pt;}
.y22d{bottom:2697.283720pt;}
.y50{bottom:2707.369053pt;}
.y53{bottom:2707.658387pt;}
.y226{bottom:2708.123720pt;}
.y230{bottom:2708.483720pt;}
.y56{bottom:2708.633053pt;}
.y175{bottom:2709.397053pt;}
.y12b{bottom:2709.971720pt;}
.y21{bottom:2713.471720pt;}
.ya5{bottom:2714.963720pt;}
.y210{bottom:2716.669053pt;}
.y47{bottom:2717.931720pt;}
.y3d{bottom:2718.717053pt;}
.y229{bottom:2719.323720pt;}
.y22c{bottom:2719.334387pt;}
.y152{bottom:2727.142387pt;}
.y225{bottom:2730.174387pt;}
.y22f{bottom:2730.534387pt;}
.y20{bottom:2731.538387pt;}
.ya4{bottom:2737.014387pt;}
.y20f{bottom:2740.578387pt;}
.y228{bottom:2741.374387pt;}
.y22b{bottom:2741.385053pt;}
.y151{bottom:2745.207720pt;}
.y1f{bottom:2749.603720pt;}
.y224{bottom:2752.225053pt;}
.y22e{bottom:2752.514387pt;}
.ya3{bottom:2759.066387pt;}
.y150{bottom:2763.274387pt;}
.y227{bottom:2763.353053pt;}
.y22a{bottom:2763.786387pt;}
.y20e{bottom:2764.489053pt;}
.y1e{bottom:2767.669053pt;}
.y223{bottom:2774.626387pt;}
.y14f{bottom:2781.339720pt;}
.y1d{bottom:2785.734387pt;}
.y14e{bottom:2799.405053pt;}
.y20d{bottom:2801.833053pt;}
.y1c{bottom:2803.799720pt;}
.y55{bottom:2809.869053pt;}
.y52{bottom:2810.842387pt;}
.y4f{bottom:2811.131720pt;}
.y14d{bottom:2818.002387pt;}
.y20c{bottom:2819.898387pt;}
.y1b{bottom:2821.865053pt;}
.y1a{bottom:2839.931720pt;}
.y20b{bottom:2845.934387pt;}
.y174{bottom:2857.458387pt;}
.y19{bottom:2861.605053pt;}
.y20a{bottom:2863.999720pt;}
.y173{bottom:2870.078387pt;}
.y172{bottom:2882.697053pt;}
.y209{bottom:2884.946387pt;}
.y3c{bottom:2894.727720pt;}
.y171{bottom:2895.317053pt;}
.y40{bottom:2895.673053pt;}
.y18{bottom:2899.999720pt;}
.y170{bottom:2919.891720pt;}
.y16f{bottom:2941.943720pt;}
.y28{bottom:5381.046107pt;}
.y27{bottom:5399.111440pt;}
.y26{bottom:5417.176773pt;}
.y25{bottom:5435.242107pt;}
.y24{bottom:5471.374107pt;}
.y23{bottom:5507.504773pt;}
.y22{bottom:5530.335440pt;}
.h2a{height:-2369.239720pt;}
.h1d{height:12.505022pt;}
.h22{height:13.677864pt;}
.h21{height:13.677876pt;}
.h1c{height:14.589115pt;}
.h39{height:14.682920pt;}
.h1f{height:14.769675pt;}
.h1e{height:14.874087pt;}
.h1a{height:17.598360pt;}
.h23{height:18.060298pt;}
.h11{height:18.372663pt;}
.h27{height:18.919015pt;}
.h16{height:19.309156pt;}
.h15{height:19.798155pt;}
.h20{height:20.640341pt;}
.h13{height:21.434663pt;}
.h8{height:22.571418pt;}
.h37{height:23.687236pt;}
.h19{height:24.330124pt;}
.h29{height:24.353837pt;}
.h28{height:24.474057pt;}
.h12{height:24.496796pt;}
.hf{height:25.072183pt;}
.h17{height:25.745541pt;}
.h35{height:29.698778pt;}
.h34{height:29.704111pt;}
.h4{height:30.095098pt;}
.h32{height:31.285299pt;}
.h7{height:31.341747pt;}
.h5{height:31.582850pt;}
.h2b{height:33.857126pt;}
.h33{height:35.196109pt;}
.h2c{height:35.530854pt;}
.h9{height:36.478095pt;}
.h2f{height:36.958969pt;}
.h24{height:37.618778pt;}
.h25{height:39.478463pt;}
.h3{height:41.192762pt;}
.ha{height:42.821854pt;}
.hb{height:43.229127pt;}
.hd{height:44.974095pt;}
.h2e{height:53.926127pt;}
.h2{height:54.171251pt;}
.h2d{height:55.272773pt;}
.hc{height:56.313617pt;}
.he{height:64.746796pt;}
.h30{height:79.814169pt;}
.h6{height:80.937417pt;}
.h18{height:81.720239pt;}
.h36{height:93.596090pt;}
.h31{height:122.669377pt;}
.h26{height:132.287200pt;}
.h38{height:182.577853pt;}
.h14{height:219.226678pt;}
.h10{height:277.578546pt;}
.h1b{height:291.557264pt;}
.h1{height:340.000000pt;}
.h0{height:340.157333pt;}
.w8{width:-2376.938387pt;}
.wa{width:259.269267pt;}
.w7{width:264.574400pt;}
.w3{width:296.322767pt;}
.w2{width:370.421406pt;}
.w4{width:518.519073pt;}
.w6{width:529.126393pt;}
.w5{width:529.134860pt;}
.w9{width:583.544973pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x5e{left:3.940624pt;}
.x33{left:5.462969pt;}
.x6d{left:6.378677pt;}
.x7c{left:8.325704pt;}
.x59{left:12.539450pt;}
.xa{left:16.121333pt;}
.x7a{left:17.873362pt;}
.x79{left:19.557349pt;}
.x6a{left:20.907176pt;}
.x78{left:23.518062pt;}
.x75{left:25.197333pt;}
.x77{left:27.478775pt;}
.x76{left:29.460651pt;}
.x21{left:32.125333pt;}
.x6b{left:33.302325pt;}
.x6c{left:34.835297pt;}
.x16{left:37.544000pt;}
.xb{left:38.466667pt;}
.x7b{left:39.370033pt;}
.x49{left:40.417973pt;}
.x24{left:43.089333pt;}
.x80{left:47.588000pt;}
.x81{left:48.704000pt;}
.x5d{left:54.217918pt;}
.x73{left:56.413333pt;}
.x36{left:64.458624pt;}
.xc{left:66.886667pt;}
.x69{left:68.375163pt;}
.x88{left:76.782233pt;}
.x70{left:81.839206pt;}
.x1c{left:86.032269pt;}
.x57{left:87.678718pt;}
.x4e{left:88.985028pt;}
.x72{left:95.977333pt;}
.x56{left:96.887342pt;}
.x54{left:100.209495pt;}
.x8{left:107.545547pt;}
.x39{left:112.402811pt;}
.x3a{left:115.006382pt;}
.x4f{left:115.975471pt;}
.x7{left:117.166667pt;}
.x3b{left:120.322627pt;}
.x9{left:121.245333pt;}
.x3c{left:123.931808pt;}
.x1d{left:126.072000pt;}
.x52{left:127.353495pt;}
.x37{left:129.413360pt;}
.x38{left:132.857231pt;}
.x7d{left:137.825511pt;}
.x43{left:141.782660pt;}
.x42{left:143.277300pt;}
.x5f{left:147.296036pt;}
.x2{left:150.078667pt;}
.x1b{left:154.205333pt;}
.x5a{left:169.970377pt;}
.x1a{left:171.613333pt;}
.x61{left:180.480904pt;}
.x53{left:181.641495pt;}
.x5{left:183.341333pt;}
.x2e{left:185.472504pt;}
.x2d{left:194.397929pt;}
.x51{left:195.436160pt;}
.x60{left:199.973310pt;}
.x4{left:201.944000pt;}
.x2b{left:204.598580pt;}
.x31{left:207.968522pt;}
.x6{left:209.512000pt;}
.x32{left:212.297966pt;}
.x2c{left:213.524004pt;}
.x2f{left:217.972213pt;}
.x22{left:222.992000pt;}
.x25{left:224.192456pt;}
.x18{left:225.752000pt;}
.x30{left:226.897637pt;}
.x2a{left:229.589773pt;}
.x1{left:230.994667pt;}
.x29{left:234.383102pt;}
.x26{left:235.795513pt;}
.x67{left:237.771292pt;}
.x27{left:243.308532pt;}
.x3{left:247.729333pt;}
.x28{left:252.233956pt;}
.x50{left:260.870068pt;}
.x11{left:266.428000pt;}
.x85{left:274.392000pt;}
.x4a{left:281.211709pt;}
.x86{left:285.952000pt;}
.x41{left:288.472608pt;}
.x40{left:290.587148pt;}
.x3f{left:293.982192pt;}
.x44{left:295.906911pt;}
.x12{left:297.321333pt;}
.x87{left:298.417333pt;}
.x3e{left:299.659129pt;}
.x4b{left:300.705333pt;}
.x3d{left:306.546871pt;}
.x48{left:314.865537pt;}
.x94{left:318.945333pt;}
.x58{left:322.647808pt;}
.x82{left:323.780000pt;}
.x7f{left:328.562667pt;}
.x4c{left:329.796000pt;}
.x13{left:334.557333pt;}
.x8e{left:338.006667pt;}
.x95{left:342.676000pt;}
.x83{left:346.240000pt;}
.x64{left:358.847686pt;}
.x84{left:359.821333pt;}
.x6f{left:360.970111pt;}
.x62{left:362.435692pt;}
.x63{left:365.681984pt;}
.x93{left:367.877333pt;}
.x8a{left:369.268977pt;}
.x89{left:376.768638pt;}
.x34{left:393.046111pt;}
.x55{left:396.515246pt;}
.x47{left:409.560038pt;}
.x45{left:411.364631pt;}
.x23{left:413.857333pt;}
.x35{left:417.613756pt;}
.x46{left:431.779906pt;}
.x5c{left:433.100795pt;}
.x66{left:437.874979pt;}
.x6e{left:451.714430pt;}
.x68{left:456.109633pt;}
.x71{left:457.057940pt;}
.x65{left:459.040795pt;}
.x5b{left:460.233924pt;}
.x8c{left:528.547467pt;}
.x8b{left:539.618398pt;}
.xe{left:2683.078387pt;}
.x8f{left:2691.898387pt;}
.x1e{left:2698.826387pt;}
.x14{left:2704.245053pt;}
.x90{left:2720.989053pt;}
.x4d{left:2733.587720pt;}
.x19{left:2838.314387pt;}
.x1f{left:2889.693053pt;}
.x15{left:2892.453053pt;}
.x74{left:2909.522387pt;}
.xd{left:2933.129053pt;}
.x7e{left:2981.662387pt;}
.x17{left:2995.771720pt;}
.x8d{left:3004.707720pt;}
.x91{left:3034.578387pt;}
.x92{left:3063.669053pt;}
.x20{left:3080.558387pt;}
.xf{left:5630.723440pt;}
.x10{left:5667.959440pt;}
}




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