
    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_ff819cf4af66738ff80c1b47.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.984000;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_178477c7613645477111969f.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_8f02f0f490183f1cd775deec.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1017b661b0f0c4640da357f4.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_fba28e5a41ac5702ee5c51c7.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_0277fb671e8f50b375b917ec.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_8d4f991dfefa0338c2213738.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_3dcd08f8f4f84d4fba62867f.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_d6f38a35f5252f351b129b32.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_f6e89c6fb6467b95645822f2.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_71afe45cca541c39239c0aa7.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_c4ab49335ef233d055b69027.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_06b9b018245c5458c309390c.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_cf1d4854521917ead44b05d3.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_c4ab49335ef233d055b69027.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_e828e44054e2c9e053e9643a.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_c4ec54ae0088431822133a41.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_c4ec54ae0088431822133a41.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;}
@font-face{font-family:ff18;src:url('chunks/assets/font_33753ababb9271a715876a31.woff2')format("woff");}.ff18{font-family:ff18;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;}
.ff19{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_a92fd1c90e033c3f87f66eb0.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);}
.v2{vertical-align:-1.025145px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.234945px;}
.v3{vertical-align:10.505160px;}
.v4{vertical-align:48.212100px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:5.977575px;}
.ls5{letter-spacing:14.941368px;}
.ls4{letter-spacing:14.947368px;}
.ls6{letter-spacing:16.359280px;}
.ls1{letter-spacing:16.363650px;}
.ls3{letter-spacing:23.580720px;}
.ls2{letter-spacing:231.235351px;}
.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;}
}
.ws27{word-spacing:-37.180650px;}
.ws5{word-spacing:-16.363650px;}
.ws1d{word-spacing:-14.943900px;}
.wsd{word-spacing:-13.165589px;}
.ws3{word-spacing:-12.622966px;}
.ws1e{word-spacing:-11.249686px;}
.ws4{word-spacing:-11.045078px;}
.ws8{word-spacing:-10.866286px;}
.ws16{word-spacing:-8.880362px;}
.ws7{word-spacing:-8.149715px;}
.ws15{word-spacing:-7.104724px;}
.wsc{word-spacing:-6.847958px;}
.wsb{word-spacing:-5.869709px;}
.ws24{word-spacing:-0.654546px;}
.ws19{word-spacing:-0.130909px;}
.ws26{word-spacing:-0.107597px;}
.ws18{word-spacing:-0.059776px;}
.ws6{word-spacing:-0.029316px;}
.wse{word-spacing:-0.021870px;}
.ws2d{word-spacing:-0.004195px;}
.ws22{word-spacing:-0.002812px;}
.ws23{word-spacing:-0.001769px;}
.ws0{word-spacing:0.000000px;}
.ws1{word-spacing:0.001568px;}
.ws17{word-spacing:2.238096px;}
.ws25{word-spacing:2.241158px;}
.ws11{word-spacing:2.492964px;}
.ws1a{word-spacing:2.749093px;}
.ws2e{word-spacing:16.296881px;}
.ws14{word-spacing:30.557363px;}
.wsf{word-spacing:31.581317px;}
.ws10{word-spacing:31.581324px;}
.ws1b{word-spacing:34.377178px;}
.ws12{word-spacing:41.825489px;}
.ws29{word-spacing:53.798175px;}
.ws28{word-spacing:59.775750px;}
.ws1c{word-spacing:68.808154px;}
.ws2{word-spacing:69.236131px;}
.ws9{word-spacing:82.427008px;}
.ws2c{word-spacing:113.430463px;}
.ws2b{word-spacing:150.778352px;}
.ws1f{word-spacing:156.005157px;}
.ws21{word-spacing:156.782432px;}
.ws13{word-spacing:161.869226px;}
.ws20{word-spacing:181.878633px;}
.wsa{word-spacing:240.947204px;}
.ws2a{word-spacing:246.036987px;}
._f{margin-left:-577.085783px;}
._1d{margin-left:-7.574794px;}
._b{margin-left:-5.236368px;}
._1b{margin-left:-4.208333px;}
._1{margin-left:-3.207275px;}
._0{margin-left:-1.505456px;}
._c{width:1.112728px;}
._4{width:2.117686px;}
._5{width:3.547123px;}
._2{width:4.658908px;}
._9{width:5.725274px;}
._3{width:7.094247px;}
._d{width:8.181825px;}
._17{width:10.510547px;}
._18{width:12.852629px;}
._1a{width:15.709133px;}
._12{width:16.976270px;}
._a{width:19.112743px;}
._10{width:25.262763px;}
._e{width:27.294568px;}
._16{width:45.538773px;}
._15{width:64.294952px;}
._19{width:68.861952px;}
._13{width:71.738242px;}
._14{width:76.743913px;}
._7{width:80.410675px;}
._24{width:98.127871px;}
._27{width:125.385613px;}
._21{width:135.475760px;}
._22{width:140.496923px;}
._23{width:162.733502px;}
._1e{width:230.734395px;}
._1f{width:235.755558px;}
._20{width:257.992137px;}
._25{width:266.838948px;}
._26{width:388.064169px;}
._29{width:520.378817px;}
._8{width:597.716450px;}
._28{width:866.108786px;}
._11{width:1102.988688px;}
._6{width:1119.668688px;}
._1c{width:1136.348688px;}
.fc9{color:rgb(210,32,39);}
.fc8{color:rgb(232,103,88);}
.fc7{color:rgb(224,45,48);}
.fc4{color:rgb(0,173,239);}
.fc3{color:transparent;}
.fc5{color:rgb(255,0,0);}
.fc2{color:rgb(82,86,109);}
.fc6{color:rgb(180,68,57);}
.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;}
.y134{bottom:2.626290px;}
.ya{bottom:3.873000px;}
.y182{bottom:9.482338px;}
.y8{bottom:11.344500px;}
.yc3{bottom:12.574588px;}
.y132{bottom:14.837855px;}
.yd5{bottom:15.374646px;}
.y184{bottom:15.508852px;}
.y12{bottom:16.317131px;}
.yd1{bottom:16.324967px;}
.y8a{bottom:19.451197px;}
.y9{bottom:20.397402px;}
.y17d{bottom:21.270000px;}
.y181{bottom:21.535364px;}
.y180{bottom:21.535366px;}
.yd6{bottom:21.876000px;}
.yc2{bottom:22.125389px;}
.y62{bottom:22.466975px;}
.y126{bottom:22.980038px;}
.yd0{bottom:23.159264px;}
.y194{bottom:23.559000px;}
.y1ac{bottom:24.049500px;}
.y8e{bottom:24.084000px;}
.yf4{bottom:24.561000px;}
.y20{bottom:25.428000px;}
.y150{bottom:25.543500px;}
.y23{bottom:25.753500px;}
.y1b8{bottom:26.250000px;}
.y26{bottom:26.850000px;}
.y183{bottom:27.561878px;}
.y89{bottom:27.594397px;}
.y33{bottom:29.184000px;}
.y70{bottom:29.488500px;}
.y205{bottom:29.710853px;}
.ycf{bottom:29.993561px;}
.y1dd{bottom:32.272500px;}
.y1eb{bottom:32.322000px;}
.y127{bottom:33.310795px;}
.y8d{bottom:33.450000px;}
.y1c4{bottom:33.742500px;}
.y1fd{bottom:34.405500px;}
.y209{bottom:34.612500px;}
.y32{bottom:35.367000px;}
.y88{bottom:35.737597px;}
.y10d{bottom:35.949000px;}
.yce{bottom:36.827857px;}
.y18c{bottom:37.119000px;}
.yca{bottom:37.365091px;}
.y1ce{bottom:37.714500px;}
.y202{bottom:39.003000px;}
.y17f{bottom:40.016671px;}
.y1b7{bottom:42.688500px;}
.y193{bottom:42.987000px;}
.y1ab{bottom:43.476000px;}
.ycd{bottom:43.662154px;}
.y128{bottom:43.682590px;}
.y87{bottom:43.880797px;}
.yc9{bottom:44.199388px;}
.yc6{bottom:44.272207px;}
.y1f{bottom:45.751500px;}
.y22{bottom:46.077000px;}
.y1dc{bottom:46.470000px;}
.y1ea{bottom:46.518000px;}
.y200{bottom:47.005500px;}
.y25{bottom:47.173500px;}
.y7f{bottom:47.472090px;}
.y61{bottom:47.569738px;}
.y125{bottom:47.800500px;}
.y79{bottom:47.926426px;}
.y142{bottom:48.033000px;}
.y167{bottom:48.351000px;}
.yf3{bottom:49.368000px;}
.y64{bottom:49.750663px;}
.y14f{bottom:50.350500px;}
.y100{bottom:50.404500px;}
.y85{bottom:51.805554px;}
.y86{bottom:52.023997px;}
.y133{bottom:52.300104px;}
.ycc{bottom:52.546740px;}
.y17c{bottom:52.816500px;}
.yc8{bottom:53.083973px;}
.yc5{bottom:53.156793px;}
.y8c{bottom:53.775000px;}
.y129{bottom:54.013347px;}
.y1c3{bottom:54.066000px;}
.y6f{bottom:54.295500px;}
.y7c{bottom:56.079133px;}
.y18b{bottom:57.442500px;}
.y7e{bottom:58.934837px;}
.y1fc{bottom:59.212500px;}
.ycb{bottom:59.381036px;}
.yc7{bottom:59.918270px;}
.yc4{bottom:59.991090px;}
.y31{bottom:60.174000px;}
.y1db{bottom:60.666000px;}
.y1e9{bottom:60.715500px;}
.y10c{bottom:60.754500px;}
.y63{bottom:61.086068px;}
.y44{bottom:61.984248px;}
.y192{bottom:62.413500px;}
.y1cd{bottom:62.521500px;}
.y1aa{bottom:62.904000px;}
.y78{bottom:63.408013px;}
.y83{bottom:63.741727px;}
.y159{bottom:64.147500px;}
.y12a{bottom:64.344105px;}
.y166{bottom:64.789500px;}
.y1b6{bottom:65.104500px;}
.y11e{bottom:67.996500px;}
.y207{bottom:69.492339px;}
.y1ff{bottom:71.812500px;}
.y19e{bottom:71.995500px;}
.y17b{bottom:73.140000px;}
.y43{bottom:73.319653px;}
.y84{bottom:74.017330px;}
.y8b{bottom:74.098500px;}
.y12b{bottom:74.715898px;}
.y1da{bottom:74.863500px;}
.y1e8{bottom:74.911500px;}
.y14e{bottom:75.157500px;}
.yff{bottom:75.211500px;}
.y7b{bottom:76.233553px;}
.y6e{bottom:79.102500px;}
.y1c2{bottom:79.269000px;}
.y165{bottom:81.228000px;}
.y18a{bottom:82.249500px;}
.ybb{bottom:83.193698px;}
.y1fb{bottom:84.019500px;}
.y99{bottom:84.089086px;}
.y10b{bottom:84.321000px;}
.y158{bottom:84.471000px;}
.y30{bottom:84.981000px;}
.y12c{bottom:85.046657px;}
.y1cc{bottom:87.249000px;}
.y1a9{bottom:87.655500px;}
.y11d{bottom:88.320000px;}
.ya2{bottom:89.041583px;}
.y1d9{bottom:89.059500px;}
.y1e7{bottom:89.109000px;}
.y1b5{bottom:89.395500px;}
.yba{bottom:90.027994px;}
.y9f{bottom:90.565228px;}
.y80{bottom:90.673358px;}
.y98{bottom:90.923383px;}
.y14d{bottom:94.078500px;}
.y12d{bottom:95.384639px;}
.yfe{bottom:95.535000px;}
.y1fe{bottom:96.540000px;}
.y17a{bottom:96.705000px;}
.y19d{bottom:96.802500px;}
.yb9{bottom:96.862291px;}
.y9e{bottom:97.399525px;}
.y170{bottom:97.561500px;}
.y164{bottom:97.666500px;}
.y97{bottom:97.757680px;}
.ya1{bottom:97.926169px;}
.y206{bottom:99.526832px;}
.y1d8{bottom:103.257000px;}
.y1e6{bottom:103.305000px;}
.yb8{bottom:103.696588px;}
.y191{bottom:103.875000px;}
.y6d{bottom:103.911000px;}
.y9d{bottom:104.233822px;}
.y96{bottom:104.591976px;}
.ya0{bottom:104.760466px;}
.y157{bottom:104.794500px;}
.y71{bottom:105.456000px;}
.y12e{bottom:105.715397px;}
.y189{bottom:107.058000px;}
.y1a8{bottom:107.082000px;}
.y11c{bottom:108.645000px;}
.y1fa{bottom:109.221000px;}
.y2f{bottom:109.788000px;}
.yb7{bottom:110.530885px;}
.y9c{bottom:111.068118px;}
.y95{bottom:111.426273px;}
.y74{bottom:113.299486px;}
.y55{bottom:113.299818px;}
.y16f{bottom:113.998500px;}
.y163{bottom:114.103500px;}
.y12f{bottom:116.046154px;}
.y1d7{bottom:118.051500px;}
.y1e5{bottom:118.099500px;}
.yb6{bottom:119.415470px;}
.y9b{bottom:119.952704px;}
.y94{bottom:120.310859px;}
.yfd{bottom:120.342000px;}
.y7a{bottom:121.428313px;}
.y19c{bottom:121.609500px;}
.y10a{bottom:122.388000px;}
.y1c1{bottom:123.097500px;}
.y54{bottom:123.218425px;}
.y190{bottom:124.198500px;}
.y156{bottom:125.118000px;}
.yb5{bottom:126.249767px;}
.y130{bottom:126.421368px;}
.y1a7{bottom:126.510000px;}
.y40{bottom:126.668534px;}
.y9a{bottom:126.787001px;}
.y56{bottom:126.880404px;}
.y93{bottom:127.145155px;}
.y7{bottom:127.908000px;}
.y11b{bottom:128.968500px;}
.y162{bottom:130.542000px;}
.y179{bottom:130.756500px;}
.y1b4{bottom:132.100500px;}
.y1cb{bottom:133.186500px;}
.y2e{bottom:134.598000px;}
.y14c{bottom:136.398000px;}
.y3f{bottom:136.709636px;}
.y131{bottom:136.748706px;}
.y1d6{bottom:141.580500px;}
.y1e4{bottom:141.630000px;}
.yb1{bottom:144.336036px;}
.y155{bottom:145.441500px;}
.y19b{bottom:146.728500px;}
.y16e{bottom:146.875500px;}
.y109{bottom:147.195000px;}
.y1c0{bottom:147.388500px;}
.y6{bottom:148.231500px;}
.y18f{bottom:149.005500px;}
.y10{bottom:149.025000px;}
.y11a{bottom:149.292000px;}
.y178{bottom:151.080000px;}
.yb0{bottom:151.170333px;}
.ya9{bottom:151.243152px;}
.y188{bottom:151.602000px;}
.y7d{bottom:152.190612px;}
.yfc{bottom:152.622000px;}
.y4d{bottom:153.464239px;}
.y53{bottom:154.970405px;}
.y82{bottom:155.013419px;}
.y14b{bottom:156.723000px;}
.y1ca{bottom:156.751500px;}
.y1b3{bottom:156.907500px;}
.yaf{bottom:158.004629px;}
.yc1{bottom:158.077445px;}
.ya8{bottom:158.077449px;}
.y35{bottom:158.640324px;}
.y24{bottom:161.064000px;}
.y208{bottom:162.139347px;}
.y21{bottom:162.159000px;}
.y1e{bottom:162.484500px;}
.y16d{bottom:163.314000px;}
.y4c{bottom:163.382846px;}
.y161{bottom:163.419000px;}
.yae{bottom:164.838926px;}
.y52{bottom:164.889012px;}
.yc0{bottom:164.911742px;}
.ya7{bottom:164.911745px;}
.y59{bottom:168.468162px;}
.y34{bottom:168.681426px;}
.y18e{bottom:169.329000px;}
.y75{bottom:169.676773px;}
.y119{bottom:170.214000px;}
.yfb{bottom:170.554500px;}
.yad{bottom:171.673223px;}
.ybf{bottom:171.746039px;}
.ya6{bottom:171.746042px;}
.y108{bottom:172.002000px;}
.y1a6{bottom:172.222500px;}
.yf{bottom:173.832000px;}
.y177{bottom:174.253500px;}
.y3e{bottom:174.865838px;}
.y187{bottom:176.409000px;}
.y1b2{bottom:177.231000px;}
.yb4{bottom:177.684950px;}
.y2d{bottom:177.777000px;}
.y58{bottom:178.386753px;}
.yac{bottom:178.507519px;}
.ybe{bottom:178.580335px;}
.ya5{bottom:178.580339px;}
.y16c{bottom:179.752500px;}
.y160{bottom:179.857500px;}
.y76{bottom:182.502313px;}
.y5c{bottom:182.784260px;}
.y5f{bottom:183.523293px;}
.y14a{bottom:184.518000px;}
.y1e3{bottom:185.829000px;}
.y1d5{bottom:185.860500px;}
.yb3{bottom:186.569536px;}
.y37{bottom:186.915169px;}
.y5{bottom:187.191000px;}
.yab{bottom:187.392105px;}
.ybd{bottom:187.464921px;}
.ya4{bottom:187.464925px;}
.y60{bottom:188.145212px;}
.y57{bottom:188.304860px;}
.y1bf{bottom:190.405500px;}
.yfa{bottom:191.476500px;}
.y1a5{bottom:192.546000px;}
.yb2{bottom:193.403833px;}
.y204{bottom:193.670368px;}
.y19a{bottom:193.999500px;}
.y5b{bottom:194.119665px;}
.y18d{bottom:194.137500px;}
.yaa{bottom:194.226402px;}
.ybc{bottom:194.299218px;}
.ya3{bottom:194.299221px;}
.y5e{bottom:194.858698px;}
.y3c{bottom:194.948050px;}
.y107{bottom:195.175500px;}
.y16b{bottom:196.191000px;}
.y15f{bottom:196.296000px;}
.y38{bottom:196.956272px;}
.ye{bottom:198.639000px;}
.y77{bottom:200.213773px;}
.y186{bottom:201.216000px;}
.y4{bottom:201.387000px;}
.y1b1{bottom:202.038000px;}
.y81{bottom:202.491472px;}
.y2c{bottom:202.584000px;}
.y1c9{bottom:202.690500px;}
.y68{bottom:203.017500px;}
.y3d{bottom:204.989152px;}
.y149{bottom:205.440000px;}
.y5a{bottom:205.455071px;}
.y5d{bottom:206.194104px;}
.y14{bottom:206.229000px;}
.y36{bottom:206.997381px;}
.y176{bottom:208.305000px;}
.y1cf{bottom:209.694000px;}
.y154{bottom:209.776500px;}
.y1e2{bottom:210.636000px;}
.y1d4{bottom:210.667500px;}
.y1be{bottom:210.730500px;}
.yf9{bottom:213.892500px;}
.y199{bottom:214.323000px;}
.y124{bottom:214.369500px;}
.y141{bottom:214.602000px;}
.y1a4{bottom:217.353000px;}
.y46{bottom:219.047717px;}
.y73{bottom:219.146715px;}
.y112{bottom:219.165000px;}
.yd{bottom:223.446000px;}
.y51{bottom:223.751976px;}
.yed{bottom:224.950263px;}
.ye6{bottom:225.487496px;}
.ydf{bottom:225.560316px;}
.y185{bottom:226.023000px;}
.y1b0{bottom:226.848000px;}
.y39{bottom:227.079586px;}
.y2b{bottom:227.391000px;}
.y1c8{bottom:227.499000px;}
.y67{bottom:227.824500px;}
.y148{bottom:227.856000px;}
.y106{bottom:228.385500px;}
.y123{bottom:228.565500px;}
.y175{bottom:228.628500px;}
.y140{bottom:228.799500px;}
.y16a{bottom:229.068000px;}
.y15e{bottom:229.173000px;}
.y45{bottom:230.383123px;}
.y13{bottom:230.956500px;}
.y1e1{bottom:230.959500px;}
.y1d3{bottom:230.992500px;}
.yec{bottom:231.784559px;}
.ye5{bottom:232.321793px;}
.yde{bottom:232.394613px;}
.yee{bottom:232.799164px;}
.y50{bottom:233.670575px;}
.y4b{bottom:233.793081px;}
.y72{bottom:234.415213px;}
.y153{bottom:234.583500px;}
.y3{bottom:235.102500px;}
.y3a{bottom:235.112976px;}
.y1bd{bottom:235.537500px;}
.y1a3{bottom:237.676500px;}
.yeb{bottom:238.618856px;}
.yf8{bottom:238.699500px;}
.y198{bottom:239.130000px;}
.ye4{bottom:239.156090px;}
.ydd{bottom:239.228909px;}
.y111{bottom:239.488500px;}
.y122{bottom:242.763000px;}
.y13f{bottom:242.995500px;}
.y4a{bottom:243.711680px;}
.yea{bottom:245.453153px;}
.y169{bottom:245.506500px;}
.y15d{bottom:245.611500px;}
.ye3{bottom:245.990386px;}
.ydc{bottom:246.063206px;}
.y105{bottom:246.319500px;}
.y147{bottom:246.775500px;}
.yc{bottom:248.253000px;}
.y2a{bottom:252.198000px;}
.ye9{bottom:252.287449px;}
.y66{bottom:252.631500px;}
.ye2{bottom:252.824683px;}
.ydb{bottom:252.897503px;}
.y174{bottom:253.747500px;}
.y3b{bottom:255.194685px;}
.y1e0{bottom:255.687000px;}
.y1d2{bottom:255.718500px;}
.y1bc{bottom:255.861000px;}
.y121{bottom:256.960500px;}
.y13e{bottom:257.193000px;}
.y197{bottom:259.453500px;}
.y110{bottom:259.812000px;}
.ye8{bottom:261.172035px;}
.ye1{bottom:261.709269px;}
.yda{bottom:261.782088px;}
.y1a2{bottom:262.483500px;}
.y17e{bottom:262.490527px;}
.yf7{bottom:263.506500px;}
.y104{bottom:264.252000px;}
.y1af{bottom:265.069500px;}
.yf0{bottom:266.515769px;}
.y4f{bottom:267.932839px;}
.ye7{bottom:268.006332px;}
.y11{bottom:268.480500px;}
.ye0{bottom:268.543566px;}
.yd9{bottom:268.616385px;}
.y1c7{bottom:273.438000px;}
.yef{bottom:274.872720px;}
.y29{bottom:277.005000px;}
.y4e{bottom:277.851438px;}
.y168{bottom:278.383500px;}
.y15c{bottom:278.487000px;}
.y196{bottom:279.777000px;}
.y10f{bottom:280.135500px;}
.y1bb{bottom:280.668000px;}
.y152{bottom:281.106000px;}
.y103{bottom:282.184500px;}
.y1a1{bottom:282.807000px;}
.y146{bottom:283.888500px;}
.y49{bottom:283.998607px;}
.y120{bottom:284.605500px;}
.y13d{bottom:284.839500px;}
.y1ae{bottom:285.393000px;}
.y173{bottom:287.109000px;}
.yf6{bottom:288.313500px;}
.y42{bottom:293.827843px;}
.y48{bottom:293.917206px;}
.y15b{bottom:294.925500px;}
.y1c6{bottom:298.245000px;}
.yd8{bottom:298.627115px;}
.y2{bottom:298.713000px;}
.y1df{bottom:298.866000px;}
.yd7{bottom:298.883404px;}
.y1d1{bottom:298.899000px;}
.y145{bottom:300.327000px;}
.y10e{bottom:300.459000px;}
.y28{bottom:300.570000px;}
.y1ba{bottom:300.991500px;}
.y151{bottom:301.429500px;}
.y1a0{bottom:303.130500px;}
.y195{bottom:303.342000px;}
.y47{bottom:304.119976px;}
.y41{bottom:305.163249px;}
.yd4{bottom:305.461453px;}
.y1ad{bottom:305.716500px;}
.yd2{bottom:305.717739px;}
.yd3{bottom:305.717741px;}
.y172{bottom:306.535500px;}
.y11f{bottom:309.415500px;}
.y13c{bottom:309.648000px;}
.y15a{bottom:311.364000px;}
.y92{bottom:312.295708px;}
.y91{bottom:312.295710px;}
.y90{bottom:312.551994px;}
.yf5{bottom:313.120500px;}
.y201{bottom:315.219000px;}
.y144{bottom:316.765500px;}
.y102{bottom:317.182500px;}
.y8f{bottom:319.130005px;}
.y203{bottom:319.608000px;}
.y1c5{bottom:323.052000px;}
.y1de{bottom:323.674500px;}
.y1d0{bottom:323.707500px;}
.y1{bottom:324.417000px;}
.y1b9{bottom:325.800000px;}
.y171{bottom:325.963500px;}
.y19f{bottom:328.888500px;}
.y27{bottom:332.125500px;}
.y143{bottom:333.204000px;}
.y65{bottom:337.000500px;}
.y101{bottom:337.506000px;}
.yb{bottom:362.751000px;}
.yf2{bottom:3024.599685px;}
.y17{bottom:3025.466685px;}
.y1a{bottom:3025.792185px;}
.y1d{bottom:3026.888685px;}
.y6c{bottom:3029.527185px;}
.y1f6{bottom:3034.444185px;}
.y16{bottom:3045.790185px;}
.y19{bottom:3046.115685px;}
.y1ef{bottom:3046.639185px;}
.y1f9{bottom:3047.044185px;}
.y1c{bottom:3047.212185px;}
.y13b{bottom:3048.071685px;}
.yf1{bottom:3049.406685px;}
.y6b{bottom:3054.334185px;}
.y1f2{bottom:3059.239185px;}
.y1f5{bottom:3059.251185px;}
.y118{bottom:3068.035185px;}
.y1ee{bottom:3071.446185px;}
.y1f8{bottom:3071.851185px;}
.y6a{bottom:3079.141185px;}
.y1f1{bottom:3084.046185px;}
.y1f4{bottom:3084.058185px;}
.y117{bottom:3088.358685px;}
.y1ed{bottom:3096.253185px;}
.y1f7{bottom:3096.578685px;}
.y69{bottom:3103.949685px;}
.y116{bottom:3108.683685px;}
.y1f0{bottom:3108.772185px;}
.y1f3{bottom:3109.259685px;}
.y1ec{bottom:3121.454685px;}
.y115{bottom:3129.007185px;}
.y114{bottom:3149.330685px;}
.y1b{bottom:3161.102685px;}
.y18{bottom:3162.197685px;}
.y15{bottom:3162.523185px;}
.y113{bottom:3170.252685px;}
.y13a{bottom:3214.640685px;}
.y139{bottom:3228.838185px;}
.y138{bottom:3243.034185px;}
.y137{bottom:3257.231685px;}
.y136{bottom:3284.878185px;}
.y135{bottom:3309.686685px;}
.h25{height:-2665.394685px;}
.h18{height:14.068149px;}
.h1d{height:15.387598px;}
.h1c{height:15.387610px;}
.h17{height:16.412755px;}
.h31{height:16.518285px;}
.h1a{height:16.615884px;}
.h19{height:16.733348px;}
.h15{height:19.798155px;}
.h1e{height:20.317835px;}
.hc{height:20.669246px;}
.h22{height:21.283892px;}
.h11{height:21.722800px;}
.h10{height:22.272924px;}
.h1b{height:23.220383px;}
.he{height:24.113996px;}
.h2f{height:26.648141px;}
.h8{height:26.791603px;}
.h14{height:27.371390px;}
.h24{height:27.398067px;}
.h23{height:27.533314px;}
.hd{height:27.558896px;}
.ha{height:28.206206px;}
.h12{height:28.963734px;}
.h7{height:35.259465px;}
.h5{height:35.530706px;}
.h4{height:35.721988px;}
.h27{height:39.972211px;}
.h26{height:40.187405px;}
.h29{height:41.578840px;}
.h1f{height:44.652373px;}
.h2d{height:46.341857px;}
.h20{height:48.632768px;}
.h3{height:48.894586px;}
.h28{height:60.666893px;}
.h2c{height:62.181870px;}
.h2{height:64.299668px;}
.h9{height:72.840146px;}
.h2a{height:89.790940px;}
.h6{height:91.054594px;}
.h13{height:91.935269px;}
.h2e{height:111.095782px;}
.h2b{height:138.003049px;}
.h21{height:148.823100px;}
.h30{height:205.400085px;}
.hf{height:246.630013px;}
.hb{height:312.275865px;}
.h16{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;}
.x53{left:4.433202px;}
.x24{left:6.145841px;}
.x63{left:7.176011px;}
.x72{left:9.366417px;}
.x4e{left:14.106881px;}
.xa{left:18.136500px;}
.x71{left:20.107533px;}
.x70{left:22.002018px;}
.x60{left:23.520573px;}
.x6f{left:26.457820px;}
.x6b{left:28.347000px;}
.x6e{left:30.913622px;}
.x6d{left:33.143233px;}
.x13{left:36.141000px;}
.x61{left:37.465116px;}
.x62{left:39.189710px;}
.xe{left:42.519000px;}
.x6c{left:43.648500px;}
.x39{left:45.470220px;}
.x16{left:48.475500px;}
.x7e{left:53.536500px;}
.x7f{left:54.792000px;}
.x52{left:60.995158px;}
.x69{left:63.465000px;}
.x27{left:72.515952px;}
.xb{left:75.247500px;}
.x5f{left:76.922058px;}
.x77{left:86.380013px;}
.x66{left:92.069107px;}
.xd{left:96.786303px;}
.x4b{left:98.638558px;}
.x40{left:100.108156px;}
.x68{left:107.974500px;}
.x4a{left:108.998260px;}
.x46{left:112.735681px;}
.x9{left:120.988740px;}
.x2a{left:126.453163px;}
.x2b{left:129.382179px;}
.x41{left:130.472405px;}
.x8{left:131.812500px;}
.x2{left:135.441000px;}
.x48{left:137.083325px;}
.x2c{left:139.423284px;}
.xf{left:141.831000px;}
.x44{left:143.272681px;}
.x28{left:145.590030px;}
.x29{left:149.464385px;}
.x73{left:155.053700px;}
.x33{left:159.505492px;}
.x32{left:161.186963px;}
.x54{left:165.708040px;}
.x3a{left:168.848572px;}
.xc{left:173.481000px;}
.x4f{left:191.216674px;}
.x57{left:203.041017px;}
.x45{left:204.346681px;}
.x5{left:206.259000px;}
.x1f{left:208.656567px;}
.x1e{left:218.697670px;}
.x43{left:219.865680px;}
.x55{left:224.969974px;}
.x4{left:227.187000px;}
.x1c{left:230.173402px;}
.x22{left:233.964587px;}
.x23{left:238.835211px;}
.x1d{left:240.214505px;}
.x20{left:245.218740px;}
.x14{left:250.866000px;}
.x17{left:252.216513px;}
.x56{left:253.238935px;}
.x21{left:255.259842px;}
.x1b{left:258.288494px;}
.x1{left:259.869000px;}
.x1a{left:263.680989px;}
.x18{left:265.269952px;}
.x5d{left:267.492704px;}
.x7{left:272.748000px;}
.x3{left:278.695500px;}
.x19{left:283.763201px;}
.x42{left:293.478826px;}
.x47{left:299.402400px;}
.x6{left:304.689000px;}
.x83{left:308.691000px;}
.x3b{left:316.363173px;}
.x84{left:321.696000px;}
.x31{left:324.531684px;}
.x30{left:326.910541px;}
.x2f{left:330.729966px;}
.x34{left:332.895275px;}
.x4d{left:335.157015px;}
.x2e{left:337.116520px;}
.x3c{left:338.293500px;}
.x2d{left:344.865230px;}
.x38{left:354.223729px;}
.x89{left:358.813500px;}
.x4c{left:362.978784px;}
.x80{left:364.252500px;}
.x76{left:369.633000px;}
.x3d{left:371.020500px;}
.x8a{left:385.510500px;}
.x81{left:389.520000px;}
.x7c{left:393.225000px;}
.x5a{left:403.703647px;}
.x82{left:404.799000px;}
.x65{left:406.091375px;}
.x58{left:407.740153px;}
.x59{left:411.392232px;}
.x7d{left:413.574000px;}
.x79{left:415.427599px;}
.x78{left:423.864718px;}
.x25{left:442.176875px;}
.x49{left:446.079652px;}
.x37{left:460.755042px;}
.x35{left:462.785210px;}
.x15{left:465.589500px;}
.x26{left:469.815476px;}
.x36{left:485.752395px;}
.x51{left:487.238394px;}
.x5c{left:492.609352px;}
.x64{left:508.178734px;}
.x5e{left:513.123337px;}
.x67{left:514.190183px;}
.x5b{left:516.420894px;}
.x50{left:517.763165px;}
.x7b{left:594.615900px;}
.x7a{left:607.070698px;}
.x85{left:3028.385685px;}
.x10{left:3036.179685px;}
.x3e{left:3042.557685px;}
.x86{left:3061.112685px;}
.x3f{left:3075.286185px;}
.x11{left:3250.904685px;}
.x6a{left:3273.212685px;}
.x74{left:3354.370185px;}
.x75{left:3369.671685px;}
.x87{left:3413.900685px;}
.x88{left:3446.627685px;}
.x12{left:3465.628185px;}
@media print{
.v2{vertical-align:-0.911240pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.875507pt;}
.v3{vertical-align:9.337920pt;}
.v4{vertical-align:42.855200pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:5.313400pt;}
.ls5{letter-spacing:13.281216pt;}
.ls4{letter-spacing:13.286549pt;}
.ls6{letter-spacing:14.541582pt;}
.ls1{letter-spacing:14.545467pt;}
.ls3{letter-spacing:20.960640pt;}
.ls2{letter-spacing:205.542534pt;}
.ws27{word-spacing:-33.049467pt;}
.ws5{word-spacing:-14.545467pt;}
.ws1d{word-spacing:-13.283467pt;}
.wsd{word-spacing:-11.702746pt;}
.ws3{word-spacing:-11.220414pt;}
.ws1e{word-spacing:-9.999721pt;}
.ws4{word-spacing:-9.817847pt;}
.ws8{word-spacing:-9.658921pt;}
.ws16{word-spacing:-7.893655pt;}
.ws7{word-spacing:-7.244191pt;}
.ws15{word-spacing:-6.315310pt;}
.wsc{word-spacing:-6.087074pt;}
.wsb{word-spacing:-5.217519pt;}
.ws24{word-spacing:-0.581819pt;}
.ws19{word-spacing:-0.116364pt;}
.ws26{word-spacing:-0.095642pt;}
.ws18{word-spacing:-0.053134pt;}
.ws6{word-spacing:-0.026058pt;}
.wse{word-spacing:-0.019440pt;}
.ws2d{word-spacing:-0.003729pt;}
.ws22{word-spacing:-0.002499pt;}
.ws23{word-spacing:-0.001572pt;}
.ws0{word-spacing:0.000000pt;}
.ws1{word-spacing:0.001394pt;}
.ws17{word-spacing:1.989419pt;}
.ws25{word-spacing:1.992141pt;}
.ws11{word-spacing:2.215968pt;}
.ws1a{word-spacing:2.443638pt;}
.ws2e{word-spacing:14.486117pt;}
.ws14{word-spacing:27.162101pt;}
.wsf{word-spacing:28.072282pt;}
.ws10{word-spacing:28.072288pt;}
.ws1b{word-spacing:30.557491pt;}
.ws12{word-spacing:37.178213pt;}
.ws29{word-spacing:47.820600pt;}
.ws28{word-spacing:53.134000pt;}
.ws1c{word-spacing:61.162803pt;}
.ws2{word-spacing:61.543227pt;}
.ws9{word-spacing:73.268451pt;}
.ws2c{word-spacing:100.827078pt;}
.ws2b{word-spacing:134.025202pt;}
.ws1f{word-spacing:138.671250pt;}
.ws21{word-spacing:139.362162pt;}
.ws13{word-spacing:143.883756pt;}
.ws20{word-spacing:161.669896pt;}
.wsa{word-spacing:214.175293pt;}
.ws2a{word-spacing:218.699544pt;}
._f{margin-left:-512.965140pt;}
._1d{margin-left:-6.733150pt;}
._b{margin-left:-4.654549pt;}
._1b{margin-left:-3.740740pt;}
._1{margin-left:-2.850911pt;}
._0{margin-left:-1.338183pt;}
._c{width:0.989092pt;}
._4{width:1.882387pt;}
._5{width:3.152999pt;}
._2{width:4.141252pt;}
._9{width:5.089132pt;}
._3{width:6.305997pt;}
._d{width:7.272733pt;}
._17{width:9.342709pt;}
._18{width:11.424559pt;}
._1a{width:13.963674pt;}
._12{width:15.090018pt;}
._a{width:16.989105pt;}
._10{width:22.455789pt;}
._e{width:24.261838pt;}
._16{width:40.478909pt;}
._15{width:57.151068pt;}
._19{width:61.210624pt;}
._13{width:63.767326pt;}
._14{width:68.216811pt;}
._7{width:71.476156pt;}
._24{width:87.224774pt;}
._27{width:111.453878pt;}
._21{width:120.422898pt;}
._22{width:124.886154pt;}
._23{width:144.652002pt;}
._1e{width:205.097240pt;}
._1f{width:209.560496pt;}
._20{width:229.326344pt;}
._25{width:237.190176pt;}
._26{width:344.945928pt;}
._29{width:462.558949pt;}
._8{width:531.303511pt;}
._28{width:769.874477pt;}
._11{width:980.434389pt;}
._6{width:995.261056pt;}
._1c{width:1010.087723pt;}
.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;}
.y134{bottom:2.334480pt;}
.ya{bottom:3.442667pt;}
.y182{bottom:8.428745pt;}
.y8{bottom:10.084000pt;}
.yc3{bottom:11.177412pt;}
.y132{bottom:13.189204pt;}
.yd5{bottom:13.666352pt;}
.y184{bottom:13.785646pt;}
.y12{bottom:14.504117pt;}
.yd1{bottom:14.511082pt;}
.y8a{bottom:17.289953pt;}
.y9{bottom:18.131024pt;}
.y17d{bottom:18.906667pt;}
.y181{bottom:19.142546pt;}
.y180{bottom:19.142547pt;}
.yd6{bottom:19.445333pt;}
.yc2{bottom:19.667012pt;}
.y62{bottom:19.970645pt;}
.y126{bottom:20.426700pt;}
.yd0{bottom:20.586012pt;}
.y194{bottom:20.941333pt;}
.y1ac{bottom:21.377333pt;}
.y8e{bottom:21.408000pt;}
.yf4{bottom:21.832000pt;}
.y20{bottom:22.602667pt;}
.y150{bottom:22.705333pt;}
.y23{bottom:22.892000pt;}
.y1b8{bottom:23.333333pt;}
.y26{bottom:23.866667pt;}
.y183{bottom:24.499447pt;}
.y89{bottom:24.528353pt;}
.y33{bottom:25.941333pt;}
.y70{bottom:26.212000pt;}
.y205{bottom:26.409647pt;}
.ycf{bottom:26.660943pt;}
.y1dd{bottom:28.686667pt;}
.y1eb{bottom:28.730667pt;}
.y127{bottom:29.609596pt;}
.y8d{bottom:29.733333pt;}
.y1c4{bottom:29.993333pt;}
.y1fd{bottom:30.582667pt;}
.y209{bottom:30.766667pt;}
.y32{bottom:31.437333pt;}
.y88{bottom:31.766753pt;}
.y10d{bottom:31.954667pt;}
.yce{bottom:32.735873pt;}
.y18c{bottom:32.994667pt;}
.yca{bottom:33.213415pt;}
.y1ce{bottom:33.524000pt;}
.y202{bottom:34.669333pt;}
.y17f{bottom:35.570374pt;}
.y1b7{bottom:37.945333pt;}
.y193{bottom:38.210667pt;}
.y1ab{bottom:38.645333pt;}
.ycd{bottom:38.810804pt;}
.y128{bottom:38.828969pt;}
.y87{bottom:39.005153pt;}
.yc9{bottom:39.288345pt;}
.yc6{bottom:39.353073pt;}
.y1f{bottom:40.668000pt;}
.y22{bottom:40.957333pt;}
.y1dc{bottom:41.306667pt;}
.y1ea{bottom:41.349333pt;}
.y200{bottom:41.782667pt;}
.y25{bottom:41.932000pt;}
.y7f{bottom:42.197413pt;}
.y61{bottom:42.284212pt;}
.y125{bottom:42.489333pt;}
.y79{bottom:42.601267pt;}
.y142{bottom:42.696000pt;}
.y167{bottom:42.978667pt;}
.yf3{bottom:43.882667pt;}
.y64{bottom:44.222812pt;}
.y14f{bottom:44.756000pt;}
.y100{bottom:44.804000pt;}
.y85{bottom:46.049381pt;}
.y86{bottom:46.243553pt;}
.y133{bottom:46.488981pt;}
.ycc{bottom:46.708213pt;}
.y17c{bottom:46.948000pt;}
.yc8{bottom:47.185754pt;}
.yc5{bottom:47.250483pt;}
.y8c{bottom:47.800000pt;}
.y129{bottom:48.011864pt;}
.y1c3{bottom:48.058667pt;}
.y6f{bottom:48.262667pt;}
.y7c{bottom:49.848118pt;}
.y18b{bottom:51.060000pt;}
.y7e{bottom:52.386522pt;}
.y1fc{bottom:52.633333pt;}
.ycb{bottom:52.783144pt;}
.yc7{bottom:53.260685pt;}
.yc4{bottom:53.325413pt;}
.y31{bottom:53.488000pt;}
.y1db{bottom:53.925333pt;}
.y1e9{bottom:53.969333pt;}
.y10c{bottom:54.004000pt;}
.y63{bottom:54.298728pt;}
.y44{bottom:55.097109pt;}
.y192{bottom:55.478667pt;}
.y1cd{bottom:55.574667pt;}
.y1aa{bottom:55.914667pt;}
.y78{bottom:56.362678pt;}
.y83{bottom:56.659313pt;}
.y159{bottom:57.020000pt;}
.y12a{bottom:57.194760pt;}
.y166{bottom:57.590667pt;}
.y1b6{bottom:57.870667pt;}
.y11e{bottom:60.441333pt;}
.y207{bottom:61.770968pt;}
.y1ff{bottom:63.833333pt;}
.y19e{bottom:63.996000pt;}
.y17b{bottom:65.013333pt;}
.y43{bottom:65.173025pt;}
.y84{bottom:65.793182pt;}
.y8b{bottom:65.865333pt;}
.y12b{bottom:66.414132pt;}
.y1da{bottom:66.545333pt;}
.y1e8{bottom:66.588000pt;}
.y14e{bottom:66.806667pt;}
.yff{bottom:66.854667pt;}
.y7b{bottom:67.763158pt;}
.y6e{bottom:70.313333pt;}
.y1c2{bottom:70.461333pt;}
.y165{bottom:72.202667pt;}
.y18a{bottom:73.110667pt;}
.ybb{bottom:73.949954pt;}
.y1fb{bottom:74.684000pt;}
.y99{bottom:74.745854pt;}
.y10b{bottom:74.952000pt;}
.y158{bottom:75.085333pt;}
.y30{bottom:75.538667pt;}
.y12c{bottom:75.597029pt;}
.y1cc{bottom:77.554667pt;}
.y1a9{bottom:77.916000pt;}
.y11d{bottom:78.506667pt;}
.ya2{bottom:79.148074pt;}
.y1d9{bottom:79.164000pt;}
.y1e7{bottom:79.208000pt;}
.y1b5{bottom:79.462667pt;}
.yba{bottom:80.024884pt;}
.y9f{bottom:80.502425pt;}
.y80{bottom:80.598540pt;}
.y98{bottom:80.820785pt;}
.y14d{bottom:83.625333pt;}
.y12d{bottom:84.786346pt;}
.yfe{bottom:84.920000pt;}
.y1fe{bottom:85.813333pt;}
.y17a{bottom:85.960000pt;}
.y19d{bottom:86.046667pt;}
.yb9{bottom:86.099814pt;}
.y9e{bottom:86.577356pt;}
.y170{bottom:86.721333pt;}
.y164{bottom:86.814667pt;}
.y97{bottom:86.895715pt;}
.ya1{bottom:87.045484pt;}
.y206{bottom:88.468295pt;}
.y1d8{bottom:91.784000pt;}
.y1e6{bottom:91.826667pt;}
.yb8{bottom:92.174745pt;}
.y191{bottom:92.333333pt;}
.y6d{bottom:92.365333pt;}
.y9d{bottom:92.652286pt;}
.y96{bottom:92.970646pt;}
.ya0{bottom:93.120414pt;}
.y157{bottom:93.150667pt;}
.y71{bottom:93.738667pt;}
.y12e{bottom:93.969241pt;}
.y189{bottom:95.162667pt;}
.y1a8{bottom:95.184000pt;}
.y11c{bottom:96.573333pt;}
.y1fa{bottom:97.085333pt;}
.y2f{bottom:97.589333pt;}
.yb7{bottom:98.249675pt;}
.y9c{bottom:98.727216pt;}
.y95{bottom:99.045576pt;}
.y74{bottom:100.710654pt;}
.y55{bottom:100.710950pt;}
.y16f{bottom:101.332000pt;}
.y163{bottom:101.425333pt;}
.y12f{bottom:103.152137pt;}
.y1d7{bottom:104.934667pt;}
.y1e5{bottom:104.977333pt;}
.yb6{bottom:106.147085pt;}
.y9b{bottom:106.624626pt;}
.y94{bottom:106.942985pt;}
.yfd{bottom:106.970667pt;}
.y7a{bottom:107.936278pt;}
.y19c{bottom:108.097333pt;}
.y10a{bottom:108.789333pt;}
.y1c1{bottom:109.420000pt;}
.y54{bottom:109.527489pt;}
.y190{bottom:110.398667pt;}
.y156{bottom:111.216000pt;}
.yb5{bottom:112.222015pt;}
.y130{bottom:112.374549pt;}
.y1a7{bottom:112.453333pt;}
.y40{bottom:112.594252pt;}
.y9a{bottom:112.699556pt;}
.y56{bottom:112.782581pt;}
.y93{bottom:113.017916pt;}
.y7{bottom:113.696000pt;}
.y11b{bottom:114.638667pt;}
.y162{bottom:116.037333pt;}
.y179{bottom:116.228000pt;}
.y1b4{bottom:117.422667pt;}
.y1cb{bottom:118.388000pt;}
.y2e{bottom:119.642667pt;}
.y14c{bottom:121.242667pt;}
.y3f{bottom:121.519677pt;}
.y131{bottom:121.554406pt;}
.y1d6{bottom:125.849333pt;}
.y1e4{bottom:125.893333pt;}
.yb1{bottom:128.298699pt;}
.y155{bottom:129.281333pt;}
.y19b{bottom:130.425333pt;}
.y16e{bottom:130.556000pt;}
.y109{bottom:130.840000pt;}
.y1c0{bottom:131.012000pt;}
.y6{bottom:131.761333pt;}
.y18f{bottom:132.449333pt;}
.y10{bottom:132.466667pt;}
.y11a{bottom:132.704000pt;}
.y178{bottom:134.293333pt;}
.yb0{bottom:134.373629pt;}
.ya9{bottom:134.438357pt;}
.y188{bottom:134.757333pt;}
.y7d{bottom:135.280544pt;}
.yfc{bottom:135.664000pt;}
.y4d{bottom:136.412657pt;}
.y53{bottom:137.751471pt;}
.y82{bottom:137.789706pt;}
.y14b{bottom:139.309333pt;}
.y1ca{bottom:139.334667pt;}
.y1b3{bottom:139.473333pt;}
.yaf{bottom:140.448559pt;}
.yc1{bottom:140.513285pt;}
.ya8{bottom:140.513288pt;}
.y35{bottom:141.013621pt;}
.y24{bottom:143.168000pt;}
.y208{bottom:144.123864pt;}
.y21{bottom:144.141333pt;}
.y1e{bottom:144.430667pt;}
.y16d{bottom:145.168000pt;}
.y4c{bottom:145.229197pt;}
.y161{bottom:145.261333pt;}
.yae{bottom:146.523490pt;}
.y52{bottom:146.568011pt;}
.yc0{bottom:146.588215pt;}
.ya7{bottom:146.588218pt;}
.y59{bottom:149.749477pt;}
.y34{bottom:149.939045pt;}
.y18e{bottom:150.514667pt;}
.y75{bottom:150.823798pt;}
.y119{bottom:151.301333pt;}
.yfb{bottom:151.604000pt;}
.yad{bottom:152.598420pt;}
.ybf{bottom:152.663146pt;}
.ya6{bottom:152.663149pt;}
.y108{bottom:152.890667pt;}
.y1a6{bottom:153.086667pt;}
.yf{bottom:154.517333pt;}
.y177{bottom:154.892000pt;}
.y3e{bottom:155.436300pt;}
.y187{bottom:156.808000pt;}
.y1b2{bottom:157.538667pt;}
.yb4{bottom:157.942178pt;}
.y2d{bottom:158.024000pt;}
.y58{bottom:158.566003pt;}
.yac{bottom:158.673351pt;}
.ybe{bottom:158.738076pt;}
.ya5{bottom:158.738079pt;}
.y16c{bottom:159.780000pt;}
.y160{bottom:159.873333pt;}
.y76{bottom:162.224278pt;}
.y5c{bottom:162.474898pt;}
.y5f{bottom:163.131816pt;}
.y14a{bottom:164.016000pt;}
.y1e3{bottom:165.181333pt;}
.y1d5{bottom:165.209333pt;}
.yb3{bottom:165.839588pt;}
.y37{bottom:166.146817pt;}
.y5{bottom:166.392000pt;}
.yab{bottom:166.570760pt;}
.ybd{bottom:166.635485pt;}
.ya4{bottom:166.635488pt;}
.y60{bottom:167.240188pt;}
.y57{bottom:167.382098pt;}
.y1bf{bottom:169.249333pt;}
.yfa{bottom:170.201333pt;}
.y1a5{bottom:171.152000pt;}
.yb2{bottom:171.914518pt;}
.y204{bottom:172.151438pt;}
.y19a{bottom:172.444000pt;}
.y5b{bottom:172.550814pt;}
.y18d{bottom:172.566667pt;}
.yaa{bottom:172.645691pt;}
.ybc{bottom:172.710416pt;}
.ya3{bottom:172.710419pt;}
.y5e{bottom:173.207732pt;}
.y3c{bottom:173.287155pt;}
.y107{bottom:173.489333pt;}
.y16b{bottom:174.392000pt;}
.y15f{bottom:174.485333pt;}
.y38{bottom:175.072241pt;}
.ye{bottom:176.568000pt;}
.y77{bottom:177.967798pt;}
.y186{bottom:178.858667pt;}
.y4{bottom:179.010667pt;}
.y1b1{bottom:179.589333pt;}
.y81{bottom:179.992420pt;}
.y2c{bottom:180.074667pt;}
.y1c9{bottom:180.169333pt;}
.y68{bottom:180.460000pt;}
.y3d{bottom:182.212580pt;}
.y149{bottom:182.613333pt;}
.y5a{bottom:182.626729pt;}
.y5d{bottom:183.283648pt;}
.y14{bottom:183.314667pt;}
.y36{bottom:183.997672pt;}
.y176{bottom:185.160000pt;}
.y1cf{bottom:186.394667pt;}
.y154{bottom:186.468000pt;}
.y1e2{bottom:187.232000pt;}
.y1d4{bottom:187.260000pt;}
.y1be{bottom:187.316000pt;}
.yf9{bottom:190.126667pt;}
.y199{bottom:190.509333pt;}
.y124{bottom:190.550667pt;}
.y141{bottom:190.757333pt;}
.y1a4{bottom:193.202667pt;}
.y46{bottom:194.709082pt;}
.y73{bottom:194.797080pt;}
.y112{bottom:194.813333pt;}
.yd{bottom:198.618667pt;}
.y51{bottom:198.890645pt;}
.yed{bottom:199.955789pt;}
.ye6{bottom:200.433330pt;}
.ydf{bottom:200.498059pt;}
.y185{bottom:200.909333pt;}
.y1b0{bottom:201.642667pt;}
.y39{bottom:201.848521pt;}
.y2b{bottom:202.125333pt;}
.y1c8{bottom:202.221333pt;}
.y67{bottom:202.510667pt;}
.y148{bottom:202.538667pt;}
.y106{bottom:203.009333pt;}
.y123{bottom:203.169333pt;}
.y175{bottom:203.225333pt;}
.y140{bottom:203.377333pt;}
.y16a{bottom:203.616000pt;}
.y15e{bottom:203.709333pt;}
.y45{bottom:204.784998pt;}
.y13{bottom:205.294667pt;}
.y1e1{bottom:205.297333pt;}
.y1d3{bottom:205.326667pt;}
.yec{bottom:206.030719pt;}
.ye5{bottom:206.508261pt;}
.yde{bottom:206.572989pt;}
.yee{bottom:206.932591pt;}
.y50{bottom:207.707178pt;}
.y4b{bottom:207.816072pt;}
.y72{bottom:208.369078pt;}
.y153{bottom:208.518667pt;}
.y3{bottom:208.980000pt;}
.y3a{bottom:208.989312pt;}
.y1bd{bottom:209.366667pt;}
.y1a3{bottom:211.268000pt;}
.yeb{bottom:212.105650pt;}
.yf8{bottom:212.177333pt;}
.y198{bottom:212.560000pt;}
.ye4{bottom:212.583191pt;}
.ydd{bottom:212.647919pt;}
.y111{bottom:212.878667pt;}
.y122{bottom:215.789333pt;}
.y13f{bottom:215.996000pt;}
.y4a{bottom:216.632605pt;}
.yea{bottom:218.180580pt;}
.y169{bottom:218.228000pt;}
.y15d{bottom:218.321333pt;}
.ye3{bottom:218.658121pt;}
.ydc{bottom:218.722850pt;}
.y105{bottom:218.950667pt;}
.y147{bottom:219.356000pt;}
.yc{bottom:220.669333pt;}
.y2a{bottom:224.176000pt;}
.ye9{bottom:224.255511pt;}
.y66{bottom:224.561333pt;}
.ye2{bottom:224.733052pt;}
.ydb{bottom:224.797780pt;}
.y174{bottom:225.553333pt;}
.y3b{bottom:226.839720pt;}
.y1e0{bottom:227.277333pt;}
.y1d2{bottom:227.305333pt;}
.y1bc{bottom:227.432000pt;}
.y121{bottom:228.409333pt;}
.y13e{bottom:228.616000pt;}
.y197{bottom:230.625333pt;}
.y110{bottom:230.944000pt;}
.ye8{bottom:232.152920pt;}
.ye1{bottom:232.630461pt;}
.yda{bottom:232.695190pt;}
.y1a2{bottom:233.318667pt;}
.y17e{bottom:233.324913pt;}
.yf7{bottom:234.228000pt;}
.y104{bottom:234.890667pt;}
.y1af{bottom:235.617333pt;}
.yf0{bottom:236.902906pt;}
.y4f{bottom:238.162523pt;}
.ye7{bottom:238.227851pt;}
.y11{bottom:238.649333pt;}
.ye0{bottom:238.705392pt;}
.yd9{bottom:238.770120pt;}
.y1c7{bottom:243.056000pt;}
.yef{bottom:244.331306pt;}
.y29{bottom:246.226667pt;}
.y4e{bottom:246.979056pt;}
.y168{bottom:247.452000pt;}
.y15c{bottom:247.544000pt;}
.y196{bottom:248.690667pt;}
.y10f{bottom:249.009333pt;}
.y1bb{bottom:249.482667pt;}
.y152{bottom:249.872000pt;}
.y103{bottom:250.830667pt;}
.y1a1{bottom:251.384000pt;}
.y146{bottom:252.345333pt;}
.y49{bottom:252.443206pt;}
.y120{bottom:252.982667pt;}
.y13d{bottom:253.190667pt;}
.y1ae{bottom:253.682667pt;}
.y173{bottom:255.208000pt;}
.yf6{bottom:256.278667pt;}
.y42{bottom:261.180305pt;}
.y48{bottom:261.259739pt;}
.y15b{bottom:262.156000pt;}
.y1c6{bottom:265.106667pt;}
.yd8{bottom:265.446324pt;}
.y2{bottom:265.522667pt;}
.y1df{bottom:265.658667pt;}
.yd7{bottom:265.674137pt;}
.y1d1{bottom:265.688000pt;}
.y145{bottom:266.957333pt;}
.y10e{bottom:267.074667pt;}
.y28{bottom:267.173333pt;}
.y1ba{bottom:267.548000pt;}
.y151{bottom:267.937333pt;}
.y1a0{bottom:269.449333pt;}
.y195{bottom:269.637333pt;}
.y47{bottom:270.328868pt;}
.y41{bottom:271.256221pt;}
.yd4{bottom:271.521292pt;}
.y1ad{bottom:271.748000pt;}
.yd2{bottom:271.749102pt;}
.yd3{bottom:271.749103pt;}
.y172{bottom:272.476000pt;}
.y11f{bottom:275.036000pt;}
.y13c{bottom:275.242667pt;}
.y15a{bottom:276.768000pt;}
.y92{bottom:277.596185pt;}
.y91{bottom:277.596187pt;}
.y90{bottom:277.823995pt;}
.yf5{bottom:278.329333pt;}
.y201{bottom:280.194667pt;}
.y144{bottom:281.569333pt;}
.y102{bottom:281.940000pt;}
.y8f{bottom:283.671116pt;}
.y203{bottom:284.096000pt;}
.y1c5{bottom:287.157333pt;}
.y1de{bottom:287.710667pt;}
.y1d0{bottom:287.740000pt;}
.y1{bottom:288.370667pt;}
.y1b9{bottom:289.600000pt;}
.y171{bottom:289.745333pt;}
.y19f{bottom:292.345333pt;}
.y27{bottom:295.222667pt;}
.y143{bottom:296.181333pt;}
.y65{bottom:299.556000pt;}
.y101{bottom:300.005333pt;}
.yb{bottom:322.445333pt;}
.yf2{bottom:2688.533053pt;}
.y17{bottom:2689.303720pt;}
.y1a{bottom:2689.593053pt;}
.y1d{bottom:2690.567720pt;}
.y6c{bottom:2692.913053pt;}
.y1f6{bottom:2697.283720pt;}
.y16{bottom:2707.369053pt;}
.y19{bottom:2707.658387pt;}
.y1ef{bottom:2708.123720pt;}
.y1f9{bottom:2708.483720pt;}
.y1c{bottom:2708.633053pt;}
.y13b{bottom:2709.397053pt;}
.yf1{bottom:2710.583720pt;}
.y6b{bottom:2714.963720pt;}
.y1f2{bottom:2719.323720pt;}
.y1f5{bottom:2719.334387pt;}
.y118{bottom:2727.142387pt;}
.y1ee{bottom:2730.174387pt;}
.y1f8{bottom:2730.534387pt;}
.y6a{bottom:2737.014387pt;}
.y1f1{bottom:2741.374387pt;}
.y1f4{bottom:2741.385053pt;}
.y117{bottom:2745.207720pt;}
.y1ed{bottom:2752.225053pt;}
.y1f7{bottom:2752.514387pt;}
.y69{bottom:2759.066387pt;}
.y116{bottom:2763.274387pt;}
.y1f0{bottom:2763.353053pt;}
.y1f3{bottom:2763.786387pt;}
.y1ec{bottom:2774.626387pt;}
.y115{bottom:2781.339720pt;}
.y114{bottom:2799.405053pt;}
.y1b{bottom:2809.869053pt;}
.y18{bottom:2810.842387pt;}
.y15{bottom:2811.131720pt;}
.y113{bottom:2818.002387pt;}
.y13a{bottom:2857.458387pt;}
.y139{bottom:2870.078387pt;}
.y138{bottom:2882.697053pt;}
.y137{bottom:2895.317053pt;}
.y136{bottom:2919.891720pt;}
.y135{bottom:2941.943720pt;}
.h25{height:-2369.239720pt;}
.h18{height:12.505022pt;}
.h1d{height:13.677864pt;}
.h1c{height:13.677876pt;}
.h17{height:14.589115pt;}
.h31{height:14.682920pt;}
.h1a{height:14.769675pt;}
.h19{height:14.874087pt;}
.h15{height:17.598360pt;}
.h1e{height:18.060298pt;}
.hc{height:18.372663pt;}
.h22{height:18.919015pt;}
.h11{height:19.309156pt;}
.h10{height:19.798155pt;}
.h1b{height:20.640341pt;}
.he{height:21.434663pt;}
.h2f{height:23.687236pt;}
.h8{height:23.814758pt;}
.h14{height:24.330124pt;}
.h24{height:24.353837pt;}
.h23{height:24.474057pt;}
.hd{height:24.496796pt;}
.ha{height:25.072183pt;}
.h12{height:25.745541pt;}
.h7{height:31.341747pt;}
.h5{height:31.582850pt;}
.h4{height:31.752878pt;}
.h27{height:35.530854pt;}
.h26{height:35.722138pt;}
.h29{height:36.958969pt;}
.h1f{height:39.690998pt;}
.h2d{height:41.192762pt;}
.h20{height:43.229127pt;}
.h3{height:43.461854pt;}
.h28{height:53.926127pt;}
.h2c{height:55.272773pt;}
.h2{height:57.155261pt;}
.h9{height:64.746796pt;}
.h2a{height:79.814169pt;}
.h6{height:80.937417pt;}
.h13{height:81.720239pt;}
.h2e{height:98.751806pt;}
.h2b{height:122.669377pt;}
.h21{height:132.287200pt;}
.h30{height:182.577853pt;}
.hf{height:219.226678pt;}
.hb{height:277.578546pt;}
.h16{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;}
.x53{left:3.940624pt;}
.x24{left:5.462969pt;}
.x63{left:6.378677pt;}
.x72{left:8.325704pt;}
.x4e{left:12.539450pt;}
.xa{left:16.121333pt;}
.x71{left:17.873362pt;}
.x70{left:19.557349pt;}
.x60{left:20.907176pt;}
.x6f{left:23.518062pt;}
.x6b{left:25.197333pt;}
.x6e{left:27.478775pt;}
.x6d{left:29.460651pt;}
.x13{left:32.125333pt;}
.x61{left:33.302325pt;}
.x62{left:34.835297pt;}
.xe{left:37.794667pt;}
.x6c{left:38.798667pt;}
.x39{left:40.417973pt;}
.x16{left:43.089333pt;}
.x7e{left:47.588000pt;}
.x7f{left:48.704000pt;}
.x52{left:54.217918pt;}
.x69{left:56.413333pt;}
.x27{left:64.458624pt;}
.xb{left:66.886667pt;}
.x5f{left:68.375163pt;}
.x77{left:76.782233pt;}
.x66{left:81.839206pt;}
.xd{left:86.032269pt;}
.x4b{left:87.678718pt;}
.x40{left:88.985028pt;}
.x68{left:95.977333pt;}
.x4a{left:96.887342pt;}
.x46{left:100.209495pt;}
.x9{left:107.545547pt;}
.x2a{left:112.402811pt;}
.x2b{left:115.006382pt;}
.x41{left:115.975471pt;}
.x8{left:117.166667pt;}
.x2{left:120.392000pt;}
.x48{left:121.851844pt;}
.x2c{left:123.931808pt;}
.xf{left:126.072000pt;}
.x44{left:127.353495pt;}
.x28{left:129.413360pt;}
.x29{left:132.857231pt;}
.x73{left:137.825511pt;}
.x33{left:141.782660pt;}
.x32{left:143.277300pt;}
.x54{left:147.296036pt;}
.x3a{left:150.087619pt;}
.xc{left:154.205333pt;}
.x4f{left:169.970377pt;}
.x57{left:180.480904pt;}
.x45{left:181.641495pt;}
.x5{left:183.341333pt;}
.x1f{left:185.472504pt;}
.x1e{left:194.397929pt;}
.x43{left:195.436160pt;}
.x55{left:199.973310pt;}
.x4{left:201.944000pt;}
.x1c{left:204.598580pt;}
.x22{left:207.968522pt;}
.x23{left:212.297966pt;}
.x1d{left:213.524004pt;}
.x20{left:217.972213pt;}
.x14{left:222.992000pt;}
.x17{left:224.192456pt;}
.x56{left:225.101275pt;}
.x21{left:226.897637pt;}
.x1b{left:229.589773pt;}
.x1{left:230.994667pt;}
.x1a{left:234.383102pt;}
.x18{left:235.795513pt;}
.x5d{left:237.771292pt;}
.x7{left:242.442667pt;}
.x3{left:247.729333pt;}
.x19{left:252.233956pt;}
.x42{left:260.870068pt;}
.x47{left:266.135467pt;}
.x6{left:270.834667pt;}
.x83{left:274.392000pt;}
.x3b{left:281.211709pt;}
.x84{left:285.952000pt;}
.x31{left:288.472608pt;}
.x30{left:290.587148pt;}
.x2f{left:293.982192pt;}
.x34{left:295.906911pt;}
.x4d{left:297.917346pt;}
.x2e{left:299.659129pt;}
.x3c{left:300.705333pt;}
.x2d{left:306.546871pt;}
.x38{left:314.865537pt;}
.x89{left:318.945333pt;}
.x4c{left:322.647808pt;}
.x80{left:323.780000pt;}
.x76{left:328.562667pt;}
.x3d{left:329.796000pt;}
.x8a{left:342.676000pt;}
.x81{left:346.240000pt;}
.x7c{left:349.533333pt;}
.x5a{left:358.847686pt;}
.x82{left:359.821333pt;}
.x65{left:360.970111pt;}
.x58{left:362.435692pt;}
.x59{left:365.681984pt;}
.x7d{left:367.621333pt;}
.x79{left:369.268977pt;}
.x78{left:376.768638pt;}
.x25{left:393.046111pt;}
.x49{left:396.515246pt;}
.x37{left:409.560038pt;}
.x35{left:411.364631pt;}
.x15{left:413.857333pt;}
.x26{left:417.613756pt;}
.x36{left:431.779906pt;}
.x51{left:433.100795pt;}
.x5c{left:437.874979pt;}
.x64{left:451.714430pt;}
.x5e{left:456.109633pt;}
.x67{left:457.057940pt;}
.x5b{left:459.040795pt;}
.x50{left:460.233924pt;}
.x7b{left:528.547467pt;}
.x7a{left:539.618398pt;}
.x85{left:2691.898387pt;}
.x10{left:2698.826387pt;}
.x3e{left:2704.495720pt;}
.x86{left:2720.989053pt;}
.x3f{left:2733.587720pt;}
.x11{left:2889.693053pt;}
.x6a{left:2909.522387pt;}
.x74{left:2981.662387pt;}
.x75{left:2995.263720pt;}
.x87{left:3034.578387pt;}
.x88{left:3063.669053pt;}
.x12{left:3080.558387pt;}
}




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