
    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_05eb3aa551b731e2c2e2b8c1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.945000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_15da053a007f2dee1a6f5a55.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.675000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d87fec14fa96902945108760.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_21b50cf1160c0f3ee0794f20.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_377bba81bbbf54505eb296f6.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a92fd1c90e033c3f87f66eb0.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4b6195b052355dc6626ea425.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_7dc41dccfb789da66558cb0a.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_64004645184d73f2b6b62869.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b93a3a999c9f119b0ce2ba30.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_9a2edba3deb4e5abcbed5fdb.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.467000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_508e3138c9d31f67f54171f1.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_96d9f37fc8ddc433c562f34b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_f1a6f5e7e73df4072ce2fae4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_efac57026f520f097676c16f.woff2')format("woff");}.fff{font-family:fff;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_da800db3ad48e9a5c9d46903.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.903320;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_270a0bebb1633347bfd8548b.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_f1623fdaf795576e6863fbda.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.940918;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_5cb5e6730588449dcc5692eb.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.896973;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_3917b9a755418a554afb47f8.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_695198306375259f46231606.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.903320;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_b80d3378d5e1de77af52d1fb.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_be165ae3188cf20204ef11d6.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.940918;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_50d6a2ec92018dc69076538c.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_907ef4feda721be4e736c70e.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m4{transform:matrix(0.250598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250598,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255130,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.256324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256324,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-28.326000px;}
.v1{vertical-align:-5.304000px;}
.v3{vertical-align:-2.460438px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.156295px;}
.ls3{letter-spacing:8.181825px;}
.ls4{letter-spacing:16.363057px;}
.ls2{letter-spacing:16.363650px;}
.ls8{letter-spacing:39.967232px;}
.ls5{letter-spacing:40.036680px;}
.ls1{letter-spacing:52.499421px;}
.ls7{letter-spacing:53.309489px;}
.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;}
}
.ws36{word-spacing:-38.899124px;}
.ws2b{word-spacing:-37.180650px;}
.ws16{word-spacing:-32.727300px;}
.wse{word-spacing:-24.545475px;}
.ws31{word-spacing:-22.668804px;}
.ws30{word-spacing:-21.519300px;}
.ws34{word-spacing:-16.495085px;}
.ws1{word-spacing:-16.363650px;}
.ws37{word-spacing:-14.870519px;}
.ws35{word-spacing:-14.431224px;}
.ws32{word-spacing:-13.749683px;}
.ws33{word-spacing:-12.366676px;}
.ws18{word-spacing:-7.680150px;}
.ws19{word-spacing:-6.720121px;}
.ws20{word-spacing:-1.898183px;}
.ws12{word-spacing:-1.505456px;}
.ws22{word-spacing:-0.065455px;}
.ws1a{word-spacing:-0.026048px;}
.ws14{word-spacing:-0.022069px;}
.ws15{word-spacing:-0.019311px;}
.ws1e{word-spacing:-0.011346px;}
.ws23{word-spacing:-0.005568px;}
.ws26{word-spacing:-0.005054px;}
.wsc{word-spacing:-0.004540px;}
.ws1b{word-spacing:-0.003968px;}
.ws4{word-spacing:-0.002908px;}
.ws3{word-spacing:-0.002356px;}
.ws9{word-spacing:-0.002317px;}
.ws6{word-spacing:-0.002280px;}
.ws1d{word-spacing:-0.001775px;}
.ws8{word-spacing:-0.001687px;}
.wsf{word-spacing:-0.001351px;}
.ws10{word-spacing:-0.001291px;}
.ws25{word-spacing:-0.001268px;}
.wsb{word-spacing:-0.000910px;}
.ws1f{word-spacing:-0.000838px;}
.ws1c{word-spacing:-0.000643px;}
.ws28{word-spacing:-0.000347px;}
.ws0{word-spacing:0.000000px;}
.ws29{word-spacing:0.000421px;}
.ws21{word-spacing:0.000962px;}
.ws7{word-spacing:0.000964px;}
.ws11{word-spacing:0.001568px;}
.ws5{word-spacing:0.001994px;}
.ws27{word-spacing:0.003188px;}
.ws24{word-spacing:0.004201px;}
.ws2{word-spacing:2.749093px;}
.wsa{word-spacing:6.152732px;}
.ws2c{word-spacing:16.302161px;}
.wsd{word-spacing:16.363650px;}
.ws17{word-spacing:27.570683px;}
.ws2d{word-spacing:30.557363px;}
.ws13{word-spacing:32.723542px;}
.ws2a{word-spacing:277.265686px;}
.ws2f{word-spacing:397.819571px;}
.ws2e{word-spacing:550.845491px;}
._21{margin-left:-127.323000px;}
._20{margin-left:-108.047423px;}
._1f{margin-left:-16.496260px;}
._19{margin-left:-7.297016px;}
._f{margin-left:-5.825459px;}
._a{margin-left:-4.647277px;}
._b{margin-left:-3.380501px;}
._0{margin-left:-2.343209px;}
._9{margin-left:-1.004957px;}
._d{width:1.004957px;}
._3{width:2.117686px;}
._4{width:3.547123px;}
._1{width:4.658908px;}
._2{width:7.094247px;}
._10{width:8.811221px;}
._e{width:11.725624px;}
._23{width:16.976270px;}
._15{width:19.570925px;}
._16{width:24.152747px;}
._1e{width:25.534789px;}
._11{width:27.294568px;}
._18{width:32.203663px;}
._14{width:36.876647px;}
._5{width:44.545075px;}
._6{width:53.798400px;}
._29{width:61.210368px;}
._1c{width:75.020332px;}
._8{width:80.374810px;}
._26{width:183.631104px;}
._27{width:214.236288px;}
._28{width:306.051840px;}
._1a{width:327.031395px;}
._7{width:343.711395px;}
._17{width:360.191147px;}
._24{width:427.156720px;}
._12{width:447.905828px;}
._1d{width:521.216571px;}
._1b{width:565.718483px;}
._c{width:654.176996px;}
._25{width:702.350996px;}
._13{width:797.935644px;}
._22{width:972.154858px;}
.fc11{color:rgb(5,99,193);}
.fc10{color:rgb(136,136,136);}
.fce{color:rgb(218,147,13);}
.fcd{color:rgb(240,81,51);}
.fc0{color:rgb(255,255,255);}
.fcc{color:rgb(96,96,96);}
.fc2{color:rgb(82,86,109);}
.fc7{color:rgb(249,206,194);}
.fc9{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc4{color:rgb(252,230,223);}
.fc1{color:rgb(0,0,0);}
.fc5{color:rgb(224,45,48);}
.fcf{color:rgb(245,245,245);}
.fc8{color:rgb(0,173,239);}
.fc6{color:rgb(254,250,248);}
.fca{color:rgb(210,32,39);}
.fcb{color:rgb(215,7,81);}
.fs10{font-size:11.345609px;}
.fsa{font-size:14.849738px;}
.fs9{font-size:14.849740px;}
.fsd{font-size:19.310693px;}
.fsb{font-size:19.799569px;}
.fsc{font-size:22.069398px;}
.fs8{font-size:23.530320px;}
.fsf{font-size:25.524335px;}
.fs5{font-size:26.003571px;}
.fse{font-size:26.048077px;}
.fs12{font-size:29.741037px;}
.fs4{font-size:35.865600px;}
.fs17{font-size:39.652236px;}
.fs6{font-size:42.351660px;}
.fs16{font-size:44.645040px;}
.fs2{font-size:47.820600px;}
.fs15{font-size:49.637844px;}
.fs19{font-size:52.098281px;}
.fs3{font-size:52.942140px;}
.fs14{font-size:59.549043px;}
.fs7{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs1a{font-size:69.462722px;}
.fs13{font-size:81.836839px;}
.fs0{font-size:86.077200px;}
.fs18{font-size:109.117438px;}
.fs11{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y12{bottom:3.871500px;}
.yb{bottom:3.873000px;}
.y9{bottom:11.326500px;}
.y183{bottom:12.567579px;}
.y1b{bottom:12.686096px;}
.y11e{bottom:15.843955px;}
.y8e{bottom:16.317131px;}
.y182{bottom:17.267362px;}
.yf6{bottom:20.102696px;}
.ya{bottom:20.397402px;}
.yfc{bottom:25.307119px;}
.y9c{bottom:25.428000px;}
.y9f{bottom:25.753500px;}
.ya2{bottom:26.850000px;}
.y5f{bottom:26.890500px;}
.y18a{bottom:28.017863px;}
.y190{bottom:28.070569px;}
.y6c{bottom:28.758000px;}
.y8c{bottom:28.866000px;}
.ybb{bottom:29.121000px;}
.ybf{bottom:29.710853px;}
.y3d{bottom:30.502500px;}
.y117{bottom:30.813000px;}
.y26{bottom:30.999000px;}
.y174{bottom:32.388000px;}
.y19b{bottom:33.220250px;}
.ybd{bottom:33.379500px;}
.y11d{bottom:34.916350px;}
.ye2{bottom:35.375889px;}
.ye4{bottom:36.687552px;}
.y109{bottom:37.005000px;}
.y14e{bottom:37.630500px;}
.yba{bottom:39.582000px;}
.y47{bottom:39.838500px;}
.y189{bottom:41.411375px;}
.y18f{bottom:41.464081px;}
.yff{bottom:43.230000px;}
.ye3{bottom:43.584317px;}
.y9b{bottom:45.751500px;}
.yb8{bottom:45.790500px;}
.y9e{bottom:46.077000px;}
.ya1{bottom:47.173500px;}
.yb2{bottom:47.439000px;}
.yb5{bottom:47.463000px;}
.y116{bottom:48.745500px;}
.y8b{bottom:49.189500px;}
.y19a{bottom:51.939543px;}
.y173{bottom:52.711500px;}
.y7a{bottom:52.851000px;}
.y6b{bottom:53.565000px;}
.y188{bottom:54.804887px;}
.y18e{bottom:54.857593px;}
.yd4{bottom:56.364614px;}
.y137{bottom:56.695500px;}
.y1a8{bottom:57.951122px;}
.y13b{bottom:58.531500px;}
.y181{bottom:61.332000px;}
.y108{bottom:61.813500px;}
.y14d{bottom:62.437500px;}
.yd3{bottom:63.261389px;}
.y46{bottom:63.403500px;}
.y3c{bottom:64.359000px;}
.y5e{bottom:64.779000px;}
.yfe{bottom:68.037000px;}
.y187{bottom:68.443947px;}
.y18d{bottom:68.496653px;}
.yc1{bottom:69.492339px;}
.y1c{bottom:69.525000px;}
.y115{bottom:69.667500px;}
.yfb{bottom:69.705519px;}
.yb7{bottom:70.597500px;}
.y1a7{bottom:71.977106px;}
.yb1{bottom:72.246000px;}
.yb4{bottom:72.270000px;}
.y172{bottom:73.035000px;}
.y79{bottom:73.174500px;}
.ydd{bottom:75.360194px;}
.y180{bottom:75.528000px;}
.y25{bottom:75.627000px;}
.yd0{bottom:77.171874px;}
.y6a{bottom:78.372000px;}
.y11c{bottom:79.019323px;}
.ydc{bottom:81.394949px;}
.y136{bottom:81.502500px;}
.yf0{bottom:82.386976px;}
.y13a{bottom:83.338500px;}
.y3b{bottom:84.684000px;}
.y5d{bottom:85.104000px;}
.y14c{bottom:87.244500px;}
.ycf{bottom:87.339546px;}
.yef{bottom:88.421567px;}
.y17f{bottom:89.725500px;}
.y1a6{bottom:90.942567px;}
.y11{bottom:91.023000px;}
.y114{bottom:92.083500px;}
.yfd{bottom:92.844000px;}
.y199{bottom:94.985423px;}
.ye5{bottom:95.152947px;}
.yb6{bottom:95.406000px;}
.y8a{bottom:95.712000px;}
.yb3{bottom:96.555000px;}
.y107{bottom:96.574500px;}
.yb0{bottom:97.054500px;}
.y167{bottom:97.219500px;}
.y11b{bottom:97.397791px;}
.yc5{bottom:99.310429px;}
.yc0{bottom:99.526832px;}
.ydb{bottom:99.797302px;}
.yfa{bottom:100.179676px;}
.y24{bottom:100.434000px;}
.yee{bottom:100.713694px;}
.y41{bottom:100.899000px;}
.y69{bottom:103.179000px;}
.y1a{bottom:103.311999px;}
.y17e{bottom:103.921500px;}
.yc4{bottom:104.791373px;}
.y1a5{bottom:104.968550px;}
.y8{bottom:105.136500px;}
.y5c{bottom:105.427500px;}
.yda{bottom:105.832058px;}
.y135{bottom:106.309500px;}
.yed{bottom:106.748449px;}
.y3a{bottom:108.010500px;}
.yce{bottom:108.167142px;}
.y198{bottom:110.611187px;}
.y14b{bottom:110.809500px;}
.y11a{bottom:111.067664px;}
.y113{bottom:112.407000px;}
.y171{bottom:112.869000px;}
.yc7{bottom:116.646442px;}
.ye0{bottom:117.644032px;}
.yf3{bottom:118.093679px;}
.ycc{bottom:119.129030px;}
.y89{bottom:119.277000px;}
.yf9{bottom:119.882599px;}
.ye1{bottom:120.905773px;}
.yc8{bottom:121.923278px;}
.y166{bottom:122.101500px;}
.y76{bottom:124.336500px;}
.ydf{bottom:124.540796px;}
.y1a4{bottom:124.549120px;}
.ycd{bottom:124.609974px;}
.yf2{bottom:124.990443px;}
.y23{bottom:125.241000px;}
.y7{bottom:125.460000px;}
.y197{bottom:125.481086px;}
.y5b{bottom:125.751000px;}
.yc3{bottom:126.616500px;}
.y134{bottom:126.633000px;}
.y68{bottom:127.987500px;}
.y139{bottom:128.470500px;}
.y40{bottom:129.405000px;}
.yde{bottom:131.437560px;}
.yf1{bottom:131.887207px;}
.yc6{bottom:134.079261px;}
.y18{bottom:134.107500px;}
.y112{bottom:137.214000px;}
.y170{bottom:137.676000px;}
.yf8{bottom:137.835149px;}
.y39{bottom:138.141000px;}
.yc9{bottom:138.386914px;}
.yec{bottom:139.041429px;}
.y10{bottom:139.753500px;}
.y196{bottom:141.106850px;}
.yca{bottom:142.430576px;}
.y1a3{bottom:143.532563px;}
.yeb{bottom:145.076174px;}
.y6{bottom:145.783500px;}
.y17d{bottom:146.988000px;}
.y186{bottom:147.926379px;}
.yd9{bottom:148.671529px;}
.y75{bottom:149.143500px;}
.y3f{bottom:149.728500px;}
.y133{bottom:152.820000px;}
.y138{bottom:153.286500px;}
.y5a{bottom:154.591500px;}
.yd8{bottom:154.706266px;}
.yf7{bottom:155.021605px;}
.y14a{bottom:156.474000px;}
.y1a2{bottom:156.926075px;}
.y111{bottom:157.537500px;}
.y38{bottom:158.464500px;}
.y17{bottom:158.914500px;}
.yea{bottom:159.743018px;}
.ya0{bottom:161.064000px;}
.ycb{bottom:161.176010px;}
.y160{bottom:161.899500px;}
.y88{bottom:162.063000px;}
.yc2{bottom:162.139347px;}
.y9d{bottom:162.159000px;}
.y9a{bottom:162.484500px;}
.y165{bottom:162.718500px;}
.y16f{bottom:165.472500px;}
.ye9{bottom:165.777764px;}
.y185{bottom:165.784395px;}
.y1a1{bottom:170.934697px;}
.yaf{bottom:171.736500px;}
.yd2{bottom:173.116337px;}
.y74{bottom:173.950500px;}
.y17c{bottom:175.381500px;}
.yf5{bottom:175.440342px;}
.yd7{bottom:179.217915px;}
.yd1{bottom:179.303767px;}
.y149{bottom:181.281000px;}
.y37{bottom:181.636500px;}
.yf4{bottom:182.336974px;}
.y110{bottom:182.344500px;}
.y16{bottom:183.721500px;}
.y5{bottom:184.773000px;}
.yd6{bottom:185.252651px;}
.y16e{bottom:186.393000px;}
.y15f{bottom:186.706500px;}
.y87{bottom:186.870000px;}
.y164{bottom:187.525500px;}
.y195{bottom:187.737974px;}
.yf{bottom:188.485500px;}
.y119{bottom:189.361500px;}
.y17b{bottom:189.577500px;}
.y1a0{bottom:189.917520px;}
.yd5{bottom:191.467927px;}
.ybe{bottom:193.670368px;}
.y73{bottom:198.757500px;}
.y4{bottom:198.970500px;}
.y194{bottom:201.131486px;}
.y59{bottom:201.469500px;}
.y184{bottom:202.555167px;}
.y17a{bottom:203.775000px;}
.y19f{bottom:203.926141px;}
.y148{bottom:206.088000px;}
.y90{bottom:206.229000px;}
.y10f{bottom:207.151500px;}
.y121{bottom:207.565500px;}
.y15{bottom:208.528500px;}
.y16d{bottom:208.809000px;}
.y168{bottom:209.694000px;}
.y15e{bottom:211.513500px;}
.y86{bottom:211.677000px;}
.y36{bottom:211.767000px;}
.y132{bottom:211.818000px;}
.y163{bottom:212.332500px;}
.y193{bottom:214.278830px;}
.y179{bottom:217.971000px;}
.y19e{bottom:222.891602px;}
.y72{bottom:223.564500px;}
.y58{bottom:226.276500px;}
.y192{bottom:229.904594px;}
.y147{bottom:230.905500px;}
.y8f{bottom:230.956500px;}
.y35{bottom:232.090500px;}
.y131{bottom:232.141500px;}
.y178{bottom:232.168500px;}
.y3{bottom:232.684500px;}
.y14{bottom:233.335500px;}
.y16c{bottom:233.619000px;}
.y10e{bottom:234.948000px;}
.y19d{bottom:236.285114px;}
.y15d{bottom:236.320500px;}
.y85{bottom:236.487000px;}
.y162{bottom:237.139500px;}
.ye{bottom:237.217500px;}
.y177{bottom:246.364500px;}
.y71{bottom:248.373000px;}
.y19c{bottom:249.678626px;}
.y57{bottom:251.083500px;}
.y120{bottom:252.696000px;}
.y34{bottom:255.262500px;}
.y10d{bottom:255.870000px;}
.y13{bottom:258.142500px;}
.y161{bottom:260.311500px;}
.y15c{bottom:261.130500px;}
.y8d{bottom:268.480500px;}
.ya4{bottom:270.621000px;}
.y11f{bottom:273.019500px;}
.y56{bottom:275.890500px;}
.y16b{bottom:275.938500px;}
.y13e{bottom:276.961500px;}
.y130{bottom:277.272000px;}
.y10c{bottom:278.286000px;}
.y18c{bottom:278.574508px;}
.y7c{bottom:279.273000px;}
.y29{bottom:285.393000px;}
.yd{bottom:285.948000px;}
.y6e{bottom:286.680000px;}
.y70{bottom:286.684500px;}
.y176{bottom:289.429500px;}
.ya3{bottom:290.944500px;}
.y18b{bottom:291.476305px;}
.y191{bottom:292.284876px;}
.y16a{bottom:296.262000px;}
.y2{bottom:297.517500px;}
.y55{bottom:300.697500px;}
.y13d{bottom:301.768500px;}
.y10b{bottom:303.093000px;}
.y175{bottom:303.627000px;}
.y14f{bottom:303.924000px;}
.y7b{bottom:304.080000px;}
.y28{bottom:305.716500px;}
.y61{bottom:309.873000px;}
.y101{bottom:311.514000px;}
.y105{bottom:311.515500px;}
.y6d{bottom:311.563500px;}
.y6f{bottom:311.568000px;}
.y12f{bottom:312.598500px;}
.y118{bottom:316.183500px;}
.y3e{bottom:319.459500px;}
.y169{bottom:319.737000px;}
.y45{bottom:320.296500px;}
.ybc{bottom:321.391500px;}
.yb9{bottom:323.269500px;}
.y22{bottom:323.311500px;}
.y19{bottom:324.406500px;}
.y1{bottom:324.417000px;}
.y13c{bottom:326.578500px;}
.y10a{bottom:327.900000px;}
.y27{bottom:328.888500px;}
.y60{bottom:330.196500px;}
.y48{bottom:332.587500px;}
.y100{bottom:336.324000px;}
.yc{bottom:362.751000px;}
.y93{bottom:3025.466685px;}
.y96{bottom:3025.792185px;}
.y99{bottom:3026.888685px;}
.y54{bottom:3026.929185px;}
.y67{bottom:3028.796685px;}
.y84{bottom:3028.904685px;}
.y33{bottom:3030.541185px;}
.y21{bottom:3031.037685px;}
.y104{bottom:3037.043685px;}
.y146{bottom:3037.669185px;}
.y44{bottom:3039.877185px;}
.ye8{bottom:3043.268685px;}
.y92{bottom:3045.790185px;}
.yae{bottom:3045.829185px;}
.y95{bottom:3046.115685px;}
.y98{bottom:3047.212185px;}
.ya8{bottom:3047.477685px;}
.yab{bottom:3047.501685px;}
.y83{bottom:3049.228185px;}
.y78{bottom:3052.889685px;}
.y66{bottom:3053.603685px;}
.y12a{bottom:3056.734185px;}
.y12e{bottom:3058.570185px;}
.y106{bottom:3061.852185px;}
.y103{bottom:3061.853685px;}
.y145{bottom:3062.476185px;}
.y43{bottom:3063.442185px;}
.y32{bottom:3064.397685px;}
.y53{bottom:3064.817685px;}
.ye7{bottom:3068.075685px;}
.yad{bottom:3070.636185px;}
.ya7{bottom:3072.284685px;}
.yaa{bottom:3072.308685px;}
.y77{bottom:3073.213185px;}
.y20{bottom:3075.665685px;}
.y65{bottom:3078.410685px;}
.y129{bottom:3081.541185px;}
.y12d{bottom:3083.377185px;}
.y31{bottom:3084.722685px;}
.y52{bottom:3085.142685px;}
.y144{bottom:3087.283185px;}
.ye6{bottom:3092.882685px;}
.yac{bottom:3095.444685px;}
.y82{bottom:3095.750685px;}
.ya9{bottom:3096.593685px;}
.y102{bottom:3096.613185px;}
.ya6{bottom:3097.093185px;}
.y15b{bottom:3097.258185px;}
.y1f{bottom:3100.472685px;}
.y64{bottom:3103.217685px;}
.y51{bottom:3105.466185px;}
.y128{bottom:3106.348185px;}
.y30{bottom:3108.049185px;}
.y143{bottom:3110.848185px;}
.y81{bottom:3119.315685px;}
.y15a{bottom:3122.140185px;}
.y1e{bottom:3125.279685px;}
.y50{bottom:3125.789685px;}
.y127{bottom:3126.671685px;}
.y63{bottom:3128.026185px;}
.y12c{bottom:3128.509185px;}
.y2f{bottom:3138.179685px;}
.y126{bottom:3152.858685px;}
.y12b{bottom:3153.325185px;}
.y4f{bottom:3154.630185px;}
.y142{bottom:3156.512685px;}
.y2e{bottom:3158.503185px;}
.y97{bottom:3161.102685px;}
.y154{bottom:3161.938185px;}
.y80{bottom:3162.101685px;}
.y94{bottom:3162.197685px;}
.y91{bottom:3162.523185px;}
.y159{bottom:3162.757185px;}
.ya5{bottom:3171.775185px;}
.y141{bottom:3181.319685px;}
.y2d{bottom:3181.675185px;}
.y153{bottom:3186.745185px;}
.y7f{bottom:3186.908685px;}
.y158{bottom:3187.564185px;}
.y4e{bottom:3201.508185px;}
.y140{bottom:3206.126685px;}
.y152{bottom:3211.552185px;}
.y7e{bottom:3211.715685px;}
.y2c{bottom:3211.805685px;}
.y125{bottom:3211.856685px;}
.y157{bottom:3212.371185px;}
.y4d{bottom:3226.315185px;}
.y13f{bottom:3230.944185px;}
.y2b{bottom:3232.129185px;}
.y124{bottom:3232.180185px;}
.y151{bottom:3236.359185px;}
.y7d{bottom:3236.525685px;}
.y156{bottom:3237.178185px;}
.y4c{bottom:3251.122185px;}
.y2a{bottom:3255.301185px;}
.y155{bottom:3260.350185px;}
.y150{bottom:3261.169185px;}
.y4b{bottom:3275.929185px;}
.y123{bottom:3277.310685px;}
.y4a{bottom:3300.736185px;}
.y122{bottom:3312.637185px;}
.y42{bottom:3320.335185px;}
.y1d{bottom:3323.350185px;}
.y49{bottom:3325.544685px;}
.y62{bottom:3332.626185px;}
.h1b{height:8.620004px;}
.h14{height:11.282320px;}
.h13{height:11.282322px;}
.h17{height:14.671600px;}
.h15{height:15.043032px;}
.h11{height:16.518285px;}
.h16{height:16.767570px;}
.ha{height:17.331482px;}
.h20{height:21.681332px;}
.h7{height:25.392845px;}
.hf{height:26.648141px;}
.hc{height:28.206206px;}
.h26{height:28.906635px;}
.h19{height:28.970121px;}
.h18{height:29.564567px;}
.h2c{height:32.502810px;}
.h24{height:32.546409px;}
.h2d{height:32.611807px;}
.h4{height:33.856985px;}
.h6{height:35.259465px;}
.h1e{height:35.530706px;}
.h23{height:36.137707px;}
.h29{height:37.928973px;}
.h2a{height:37.979851px;}
.h28{height:38.056166px;}
.h8{height:41.037857px;}
.he{height:42.321125px;}
.h22{height:43.353331px;}
.h25{height:43.411485px;}
.h3{height:46.341857px;}
.h1c{height:48.632768px;}
.h2b{height:50.808182px;}
.h21{height:59.579456px;}
.h2{height:60.942658px;}
.hd{height:63.955360px;}
.hb{height:72.840146px;}
.h27{height:79.813439px;}
.h5{height:91.054594px;}
.h1d{height:105.295601px;}
.h1a{height:113.222664px;}
.h12{height:201.147792px;}
.h10{height:205.400085px;}
.h9{height:207.254199px;}
.h1f{height:334.819818px;}
.h1{height:382.500000px;}
.h0{height:382.677000px;}
.w7{width:83.334192px;}
.w3{width:267.872250px;}
.w5{width:291.677925px;}
.w4{width:333.363113px;}
.w6{width:416.667489px;}
.w2{width:416.724081px;}
.w8{width:595.255419px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x54{left:4.184426px;}
.x10{left:5.902010px;}
.x5f{left:9.862128px;}
.x8f{left:14.079309px;}
.xc{left:18.136500px;}
.x44{left:21.259500px;}
.x4d{left:22.747500px;}
.xf{left:28.347000px;}
.x94{left:34.784687px;}
.x41{left:36.141000px;}
.x60{left:38.024925px;}
.x7a{left:40.667533px;}
.xd{left:43.275000px;}
.x7b{left:46.356780px;}
.x22{left:48.190500px;}
.x69{left:50.276534px;}
.x35{left:51.288000px;}
.x33{left:53.284500px;}
.x4e{left:55.474500px;}
.x32{left:58.080000px;}
.x8b{left:61.074000px;}
.x92{left:63.627863px;}
.xb{left:65.329500px;}
.x30{left:66.867000px;}
.x34{left:69.435000px;}
.x63{left:70.840921px;}
.x64{left:72.625369px;}
.xe{left:75.247500px;}
.x65{left:76.264234px;}
.x66{left:78.734647px;}
.x6a{left:79.993966px;}
.x61{left:82.487839px;}
.x62{left:84.843922px;}
.x68{left:87.434250px;}
.x67{left:88.523305px;}
.x3c{left:96.786303px;}
.x79{left:107.974500px;}
.x20{left:113.257500px;}
.x7c{left:115.774500px;}
.x37{left:118.431000px;}
.x5d{left:119.978971px;}
.xa{left:120.988740px;}
.x5c{left:125.598571px;}
.x9{left:131.812500px;}
.x5a{left:133.061314px;}
.x5e{left:134.147794px;}
.x5b{left:137.073538px;}
.x74{left:139.755150px;}
.x3d{left:141.831000px;}
.x55{left:144.748938px;}
.x1{left:146.796000px;}
.x59{left:149.435637px;}
.x56{left:152.054418px;}
.x86{left:157.446000px;}
.x57{left:160.848793px;}
.x58{left:163.676360px;}
.x6b{left:168.722355px;}
.x28{left:171.619500px;}
.x3b{left:173.481000px;}
.x2{left:175.438500px;}
.x21{left:185.011500px;}
.x73{left:186.411005px;}
.x87{left:190.173000px;}
.x6e{left:192.205694px;}
.x70{left:193.678796px;}
.x6f{left:196.388655px;}
.x6d{left:197.949253px;}
.x6c{left:202.656707px;}
.x71{left:209.419439px;}
.x7{left:213.078000px;}
.x5{left:231.963000px;}
.x96{left:237.233821px;}
.x91{left:242.629671px;}
.x4f{left:247.885500px;}
.x42{left:250.866000px;}
.x76{left:258.974735px;}
.x8c{left:267.301500px;}
.x2f{left:274.959000px;}
.x90{left:276.060745px;}
.x3{left:278.695500px;}
.x50{left:280.614000px;}
.x72{left:290.776735px;}
.x4{left:295.552500px;}
.x8{left:296.941500px;}
.x77{left:298.260212px;}
.x95{left:300.246575px;}
.x6{left:301.915500px;}
.x75{left:308.186440px;}
.x1d{left:314.385000px;}
.x17{left:316.528500px;}
.x16{left:318.214500px;}
.x78{left:320.420462px;}
.x8e{left:329.933666px;}
.x3a{left:341.679000px;}
.x2a{left:351.007500px;}
.x14{left:354.331500px;}
.x53{left:358.813500px;}
.x15{left:387.058500px;}
.x1e{left:393.405000px;}
.x29{left:395.382000px;}
.x27{left:426.745500px;}
.x1f{left:435.018000px;}
.x88{left:441.759000px;}
.x31{left:443.619000px;}
.x51{left:461.125500px;}
.x43{left:465.589500px;}
.x89{left:474.486000px;}
.x52{left:493.852500px;}
.x4c{left:510.235500px;}
.x84{left:525.099000px;}
.x93{left:541.575959px;}
.x8d{left:545.724227px;}
.x85{left:557.826000px;}
.x46{left:3022.786185px;}
.x7f{left:3028.385685px;}
.x3e{left:3036.179685px;}
.x18{left:3042.557685px;}
.x2c{left:3049.019685px;}
.x47{left:3055.513185px;}
.x8a{left:3061.112685px;}
.x2e{left:3065.693685px;}
.x2d{left:3066.905685px;}
.x38{left:3075.286185px;}
.x36{left:3118.469685px;}
.x80{left:3157.484685px;}
.x24{left:3171.658185px;}
.x81{left:3190.211685px;}
.x48{left:3247.924185px;}
.x3f{left:3250.904685px;}
.x2b{left:3274.997685px;}
.x49{left:3280.652685px;}
.x1a{left:3302.870685px;}
.x19{left:3314.423685px;}
.x13{left:3318.253185px;}
.x39{left:3341.717685px;}
.x26{left:3351.046185px;}
.x11{left:3354.370185px;}
.x12{left:3387.097185px;}
.x1b{left:3393.443685px;}
.x25{left:3395.420685px;}
.x23{left:3426.784185px;}
.x1c{left:3435.056685px;}
.x82{left:3441.797685px;}
.x4a{left:3461.164185px;}
.x40{left:3465.628185px;}
.x83{left:3474.524685px;}
.x4b{left:3493.891185px;}
.x45{left:3510.274185px;}
.x7d{left:3525.137685px;}
.x7e{left:3557.864685px;}
@media print{
.v2{vertical-align:-25.178667pt;}
.v1{vertical-align:-4.714667pt;}
.v3{vertical-align:-2.187056pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.138929pt;}
.ls3{letter-spacing:7.272733pt;}
.ls4{letter-spacing:14.544939pt;}
.ls2{letter-spacing:14.545467pt;}
.ls8{letter-spacing:35.526428pt;}
.ls5{letter-spacing:35.588160pt;}
.ls1{letter-spacing:46.666152pt;}
.ls7{letter-spacing:47.386212pt;}
.ws36{word-spacing:-34.576999pt;}
.ws2b{word-spacing:-33.049467pt;}
.ws16{word-spacing:-29.090933pt;}
.wse{word-spacing:-21.818200pt;}
.ws31{word-spacing:-20.150048pt;}
.ws30{word-spacing:-19.128267pt;}
.ws34{word-spacing:-14.662298pt;}
.ws1{word-spacing:-14.545467pt;}
.ws37{word-spacing:-13.218239pt;}
.ws35{word-spacing:-12.827755pt;}
.ws32{word-spacing:-12.221940pt;}
.ws33{word-spacing:-10.992601pt;}
.ws18{word-spacing:-6.826800pt;}
.ws19{word-spacing:-5.973441pt;}
.ws20{word-spacing:-1.687274pt;}
.ws12{word-spacing:-1.338183pt;}
.ws22{word-spacing:-0.058182pt;}
.ws1a{word-spacing:-0.023154pt;}
.ws14{word-spacing:-0.019617pt;}
.ws15{word-spacing:-0.017165pt;}
.ws1e{word-spacing:-0.010085pt;}
.ws23{word-spacing:-0.004949pt;}
.ws26{word-spacing:-0.004492pt;}
.wsc{word-spacing:-0.004035pt;}
.ws1b{word-spacing:-0.003527pt;}
.ws4{word-spacing:-0.002585pt;}
.ws3{word-spacing:-0.002094pt;}
.ws9{word-spacing:-0.002060pt;}
.ws6{word-spacing:-0.002027pt;}
.ws1d{word-spacing:-0.001578pt;}
.ws8{word-spacing:-0.001499pt;}
.wsf{word-spacing:-0.001201pt;}
.ws10{word-spacing:-0.001147pt;}
.ws25{word-spacing:-0.001127pt;}
.wsb{word-spacing:-0.000809pt;}
.ws1f{word-spacing:-0.000745pt;}
.ws1c{word-spacing:-0.000572pt;}
.ws28{word-spacing:-0.000308pt;}
.ws0{word-spacing:0.000000pt;}
.ws29{word-spacing:0.000374pt;}
.ws21{word-spacing:0.000855pt;}
.ws7{word-spacing:0.000857pt;}
.ws11{word-spacing:0.001394pt;}
.ws5{word-spacing:0.001773pt;}
.ws27{word-spacing:0.002834pt;}
.ws24{word-spacing:0.003734pt;}
.ws2{word-spacing:2.443638pt;}
.wsa{word-spacing:5.469095pt;}
.ws2c{word-spacing:14.490810pt;}
.wsd{word-spacing:14.545467pt;}
.ws17{word-spacing:24.507274pt;}
.ws2d{word-spacing:27.162101pt;}
.ws13{word-spacing:29.087593pt;}
.ws2a{word-spacing:246.458387pt;}
.ws2f{word-spacing:353.617397pt;}
.ws2e{word-spacing:489.640437pt;}
._21{margin-left:-113.176000pt;}
._20{margin-left:-96.042154pt;}
._1f{margin-left:-14.663342pt;}
._19{margin-left:-6.486237pt;}
._f{margin-left:-5.178186pt;}
._a{margin-left:-4.130913pt;}
._b{margin-left:-3.004890pt;}
._0{margin-left:-2.082853pt;}
._9{margin-left:-0.893295pt;}
._d{width:0.893295pt;}
._3{width:1.882387pt;}
._4{width:3.152999pt;}
._1{width:4.141252pt;}
._2{width:6.305997pt;}
._10{width:7.832196pt;}
._e{width:10.422777pt;}
._23{width:15.090018pt;}
._15{width:17.396378pt;}
._16{width:21.469109pt;}
._1e{width:22.697590pt;}
._11{width:24.261838pt;}
._18{width:28.625478pt;}
._14{width:32.779242pt;}
._5{width:39.595622pt;}
._6{width:47.820800pt;}
._29{width:54.409216pt;}
._1c{width:66.684739pt;}
._8{width:71.444275pt;}
._26{width:163.227648pt;}
._27{width:190.432256pt;}
._28{width:272.046080pt;}
._1a{width:290.694573pt;}
._7{width:305.521240pt;}
._17{width:320.169909pt;}
._24{width:379.694862pt;}
._12{width:398.138514pt;}
._1d{width:463.303619pt;}
._1b{width:502.860874pt;}
._c{width:581.490663pt;}
._25{width:624.311997pt;}
._13{width:709.276128pt;}
._22{width:864.137651pt;}
.fs10{font-size:10.084986pt;}
.fsa{font-size:13.199767pt;}
.fs9{font-size:13.199769pt;}
.fsd{font-size:17.165060pt;}
.fsb{font-size:17.599617pt;}
.fsc{font-size:19.617243pt;}
.fs8{font-size:20.915840pt;}
.fsf{font-size:22.688298pt;}
.fs5{font-size:23.114285pt;}
.fse{font-size:23.153846pt;}
.fs12{font-size:26.436478pt;}
.fs4{font-size:31.880533pt;}
.fs17{font-size:35.246432pt;}
.fs6{font-size:37.645920pt;}
.fs16{font-size:39.684480pt;}
.fs2{font-size:42.507200pt;}
.fs15{font-size:44.122528pt;}
.fs19{font-size:46.309583pt;}
.fs3{font-size:47.059680pt;}
.fs14{font-size:52.932482pt;}
.fs7{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs1a{font-size:61.744641pt;}
.fs13{font-size:72.743857pt;}
.fs0{font-size:76.513067pt;}
.fs18{font-size:96.993279pt;}
.fs11{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:3.441333pt;}
.yb{bottom:3.442667pt;}
.y9{bottom:10.068000pt;}
.y183{bottom:11.171181pt;}
.y1b{bottom:11.276529pt;}
.y11e{bottom:14.083516pt;}
.y8e{bottom:14.504117pt;}
.y182{bottom:15.348766pt;}
.yf6{bottom:17.869063pt;}
.ya{bottom:18.131024pt;}
.yfc{bottom:22.495216pt;}
.y9c{bottom:22.602667pt;}
.y9f{bottom:22.892000pt;}
.ya2{bottom:23.866667pt;}
.y5f{bottom:23.902667pt;}
.y18a{bottom:24.904767pt;}
.y190{bottom:24.951617pt;}
.y6c{bottom:25.562667pt;}
.y8c{bottom:25.658667pt;}
.ybb{bottom:25.885333pt;}
.ybf{bottom:26.409647pt;}
.y3d{bottom:27.113333pt;}
.y117{bottom:27.389333pt;}
.y26{bottom:27.554667pt;}
.y174{bottom:28.789333pt;}
.y19b{bottom:29.529111pt;}
.ybd{bottom:29.670667pt;}
.y11d{bottom:31.036755pt;}
.ye2{bottom:31.445235pt;}
.ye4{bottom:32.611158pt;}
.y109{bottom:32.893333pt;}
.y14e{bottom:33.449333pt;}
.yba{bottom:35.184000pt;}
.y47{bottom:35.412000pt;}
.y189{bottom:36.810111pt;}
.y18f{bottom:36.856961pt;}
.yff{bottom:38.426667pt;}
.ye3{bottom:38.741615pt;}
.y9b{bottom:40.668000pt;}
.yb8{bottom:40.702667pt;}
.y9e{bottom:40.957333pt;}
.ya1{bottom:41.932000pt;}
.yb2{bottom:42.168000pt;}
.yb5{bottom:42.189333pt;}
.y116{bottom:43.329333pt;}
.y8b{bottom:43.724000pt;}
.y19a{bottom:46.168483pt;}
.y173{bottom:46.854667pt;}
.y7a{bottom:46.978667pt;}
.y6b{bottom:47.613333pt;}
.y188{bottom:48.715455pt;}
.y18e{bottom:48.762305pt;}
.yd4{bottom:50.101879pt;}
.y137{bottom:50.396000pt;}
.y1a8{bottom:51.512109pt;}
.y13b{bottom:52.028000pt;}
.y181{bottom:54.517333pt;}
.y108{bottom:54.945333pt;}
.y14d{bottom:55.500000pt;}
.yd3{bottom:56.232346pt;}
.y46{bottom:56.358667pt;}
.y3c{bottom:57.208000pt;}
.y5e{bottom:57.581333pt;}
.yfe{bottom:60.477333pt;}
.y187{bottom:60.839064pt;}
.y18d{bottom:60.885913pt;}
.yc1{bottom:61.770968pt;}
.y1c{bottom:61.800000pt;}
.y115{bottom:61.926667pt;}
.yfb{bottom:61.960461pt;}
.yb7{bottom:62.753333pt;}
.y1a7{bottom:63.979649pt;}
.yb1{bottom:64.218667pt;}
.yb4{bottom:64.240000pt;}
.y172{bottom:64.920000pt;}
.y79{bottom:65.044000pt;}
.ydd{bottom:66.986839pt;}
.y180{bottom:67.136000pt;}
.y25{bottom:67.224000pt;}
.yd0{bottom:68.597222pt;}
.y6a{bottom:69.664000pt;}
.y11c{bottom:70.239398pt;}
.ydc{bottom:72.351066pt;}
.y136{bottom:72.446667pt;}
.yf0{bottom:73.232867pt;}
.y13a{bottom:74.078667pt;}
.y3b{bottom:75.274667pt;}
.y5d{bottom:75.648000pt;}
.y14c{bottom:77.550667pt;}
.ycf{bottom:77.635152pt;}
.yef{bottom:78.596949pt;}
.y17f{bottom:79.756000pt;}
.y1a6{bottom:80.837837pt;}
.y11{bottom:80.909333pt;}
.y114{bottom:81.852000pt;}
.yfd{bottom:82.528000pt;}
.y199{bottom:84.431487pt;}
.ye5{bottom:84.580397pt;}
.yb6{bottom:84.805333pt;}
.y8a{bottom:85.077333pt;}
.yb3{bottom:85.826667pt;}
.y107{bottom:85.844000pt;}
.yb0{bottom:86.270667pt;}
.y167{bottom:86.417333pt;}
.y11b{bottom:86.575814pt;}
.yc5{bottom:88.275937pt;}
.yc0{bottom:88.468295pt;}
.ydb{bottom:88.708713pt;}
.yfa{bottom:89.048601pt;}
.y24{bottom:89.274667pt;}
.yee{bottom:89.523283pt;}
.y41{bottom:89.688000pt;}
.y69{bottom:91.714667pt;}
.y1a{bottom:91.832888pt;}
.y17e{bottom:92.374667pt;}
.yc4{bottom:93.147887pt;}
.y1a5{bottom:93.305378pt;}
.y8{bottom:93.454667pt;}
.y5c{bottom:93.713333pt;}
.yda{bottom:94.072940pt;}
.y135{bottom:94.497333pt;}
.yed{bottom:94.887511pt;}
.y3a{bottom:96.009333pt;}
.yce{bottom:96.148570pt;}
.y198{bottom:98.321055pt;}
.y14b{bottom:98.497333pt;}
.y11a{bottom:98.726812pt;}
.y113{bottom:99.917333pt;}
.y171{bottom:100.328000pt;}
.yc7{bottom:103.685726pt;}
.ye0{bottom:104.572473pt;}
.yf3{bottom:104.972159pt;}
.ycc{bottom:105.892471pt;}
.y89{bottom:106.024000pt;}
.yf9{bottom:106.562310pt;}
.ye1{bottom:107.471798pt;}
.yc8{bottom:108.376247pt;}
.y166{bottom:108.534667pt;}
.y76{bottom:110.521333pt;}
.ydf{bottom:110.702930pt;}
.y1a4{bottom:110.710329pt;}
.ycd{bottom:110.764421pt;}
.yf2{bottom:111.102616pt;}
.y23{bottom:111.325333pt;}
.y7{bottom:111.520000pt;}
.y197{bottom:111.538743pt;}
.y5b{bottom:111.778667pt;}
.yc3{bottom:112.548000pt;}
.y134{bottom:112.562667pt;}
.y68{bottom:113.766667pt;}
.y139{bottom:114.196000pt;}
.y40{bottom:115.026667pt;}
.yde{bottom:116.833387pt;}
.yf1{bottom:117.233073pt;}
.yc6{bottom:119.181565pt;}
.y18{bottom:119.206667pt;}
.y112{bottom:121.968000pt;}
.y170{bottom:122.378667pt;}
.yf8{bottom:122.520132pt;}
.y39{bottom:122.792000pt;}
.yc9{bottom:123.010590pt;}
.yec{bottom:123.592381pt;}
.y10{bottom:124.225333pt;}
.y196{bottom:125.428311pt;}
.yca{bottom:126.604957pt;}
.y1a3{bottom:127.584501pt;}
.yeb{bottom:128.956600pt;}
.y6{bottom:129.585333pt;}
.y17d{bottom:130.656000pt;}
.y186{bottom:131.490115pt;}
.yd9{bottom:132.152470pt;}
.y75{bottom:132.572000pt;}
.y3f{bottom:133.092000pt;}
.y133{bottom:135.840000pt;}
.y138{bottom:136.254667pt;}
.y5a{bottom:137.414667pt;}
.yd8{bottom:137.516680pt;}
.yf7{bottom:137.796982pt;}
.y14a{bottom:139.088000pt;}
.y1a2{bottom:139.489845pt;}
.y111{bottom:140.033333pt;}
.y38{bottom:140.857333pt;}
.y17{bottom:141.257333pt;}
.yea{bottom:141.993794pt;}
.ya0{bottom:143.168000pt;}
.ycb{bottom:143.267565pt;}
.y160{bottom:143.910667pt;}
.y88{bottom:144.056000pt;}
.yc2{bottom:144.123864pt;}
.y9d{bottom:144.141333pt;}
.y9a{bottom:144.430667pt;}
.y165{bottom:144.638667pt;}
.y16f{bottom:147.086667pt;}
.ye9{bottom:147.358013pt;}
.y185{bottom:147.363907pt;}
.y1a1{bottom:151.941953pt;}
.yaf{bottom:152.654667pt;}
.yd2{bottom:153.881188pt;}
.y74{bottom:154.622667pt;}
.y17c{bottom:155.894667pt;}
.yf5{bottom:155.946971pt;}
.yd7{bottom:159.304813pt;}
.yd1{bottom:159.381126pt;}
.y149{bottom:161.138667pt;}
.y37{bottom:161.454667pt;}
.yf4{bottom:162.077310pt;}
.y110{bottom:162.084000pt;}
.y16{bottom:163.308000pt;}
.y5{bottom:164.242667pt;}
.yd6{bottom:164.669023pt;}
.y16e{bottom:165.682667pt;}
.y15f{bottom:165.961333pt;}
.y87{bottom:166.106667pt;}
.y164{bottom:166.689333pt;}
.y195{bottom:166.878199pt;}
.yf{bottom:167.542667pt;}
.y119{bottom:168.321333pt;}
.y17b{bottom:168.513333pt;}
.y1a0{bottom:168.815573pt;}
.yd5{bottom:170.193713pt;}
.ybe{bottom:172.151438pt;}
.y73{bottom:176.673333pt;}
.y4{bottom:176.862667pt;}
.y194{bottom:178.783543pt;}
.y59{bottom:179.084000pt;}
.y184{bottom:180.049037pt;}
.y17a{bottom:181.133333pt;}
.y19f{bottom:181.267681pt;}
.y148{bottom:183.189333pt;}
.y90{bottom:183.314667pt;}
.y10f{bottom:184.134667pt;}
.y121{bottom:184.502667pt;}
.y15{bottom:185.358667pt;}
.y16d{bottom:185.608000pt;}
.y168{bottom:186.394667pt;}
.y15e{bottom:188.012000pt;}
.y86{bottom:188.157333pt;}
.y36{bottom:188.237333pt;}
.y132{bottom:188.282667pt;}
.y163{bottom:188.740000pt;}
.y193{bottom:190.470071pt;}
.y179{bottom:193.752000pt;}
.y19e{bottom:198.125869pt;}
.y72{bottom:198.724000pt;}
.y58{bottom:201.134667pt;}
.y192{bottom:204.359639pt;}
.y147{bottom:205.249333pt;}
.y8f{bottom:205.294667pt;}
.y35{bottom:206.302667pt;}
.y131{bottom:206.348000pt;}
.y178{bottom:206.372000pt;}
.y3{bottom:206.830667pt;}
.y14{bottom:207.409333pt;}
.y16c{bottom:207.661333pt;}
.y10e{bottom:208.842667pt;}
.y19d{bottom:210.031213pt;}
.y15d{bottom:210.062667pt;}
.y85{bottom:210.210667pt;}
.y162{bottom:210.790667pt;}
.ye{bottom:210.860000pt;}
.y177{bottom:218.990667pt;}
.y71{bottom:220.776000pt;}
.y19c{bottom:221.936557pt;}
.y57{bottom:223.185333pt;}
.y120{bottom:224.618667pt;}
.y34{bottom:226.900000pt;}
.y10d{bottom:227.440000pt;}
.y13{bottom:229.460000pt;}
.y161{bottom:231.388000pt;}
.y15c{bottom:232.116000pt;}
.y8d{bottom:238.649333pt;}
.ya4{bottom:240.552000pt;}
.y11f{bottom:242.684000pt;}
.y56{bottom:245.236000pt;}
.y16b{bottom:245.278667pt;}
.y13e{bottom:246.188000pt;}
.y130{bottom:246.464000pt;}
.y10c{bottom:247.365333pt;}
.y18c{bottom:247.621785pt;}
.y7c{bottom:248.242667pt;}
.y29{bottom:253.682667pt;}
.yd{bottom:254.176000pt;}
.y6e{bottom:254.826667pt;}
.y70{bottom:254.830667pt;}
.y176{bottom:257.270667pt;}
.ya3{bottom:258.617333pt;}
.y18b{bottom:259.090049pt;}
.y191{bottom:259.808779pt;}
.y16a{bottom:263.344000pt;}
.y2{bottom:264.460000pt;}
.y55{bottom:267.286667pt;}
.y13d{bottom:268.238667pt;}
.y10b{bottom:269.416000pt;}
.y175{bottom:269.890667pt;}
.y14f{bottom:270.154667pt;}
.y7b{bottom:270.293333pt;}
.y28{bottom:271.748000pt;}
.y61{bottom:275.442667pt;}
.y101{bottom:276.901333pt;}
.y105{bottom:276.902667pt;}
.y6d{bottom:276.945333pt;}
.y6f{bottom:276.949333pt;}
.y12f{bottom:277.865333pt;}
.y118{bottom:281.052000pt;}
.y3e{bottom:283.964000pt;}
.y169{bottom:284.210667pt;}
.y45{bottom:284.708000pt;}
.ybc{bottom:285.681333pt;}
.yb9{bottom:287.350667pt;}
.y22{bottom:287.388000pt;}
.y19{bottom:288.361333pt;}
.y1{bottom:288.370667pt;}
.y13c{bottom:290.292000pt;}
.y10a{bottom:291.466667pt;}
.y27{bottom:292.345333pt;}
.y60{bottom:293.508000pt;}
.y48{bottom:295.633333pt;}
.y100{bottom:298.954667pt;}
.yc{bottom:322.445333pt;}
.y93{bottom:2689.303720pt;}
.y96{bottom:2689.593053pt;}
.y99{bottom:2690.567720pt;}
.y54{bottom:2690.603720pt;}
.y67{bottom:2692.263720pt;}
.y84{bottom:2692.359720pt;}
.y33{bottom:2693.814387pt;}
.y21{bottom:2694.255720pt;}
.y104{bottom:2699.594387pt;}
.y146{bottom:2700.150387pt;}
.y44{bottom:2702.113053pt;}
.ye8{bottom:2705.127720pt;}
.y92{bottom:2707.369053pt;}
.yae{bottom:2707.403720pt;}
.y95{bottom:2707.658387pt;}
.y98{bottom:2708.633053pt;}
.ya8{bottom:2708.869053pt;}
.yab{bottom:2708.890387pt;}
.y83{bottom:2710.425053pt;}
.y78{bottom:2713.679720pt;}
.y66{bottom:2714.314387pt;}
.y12a{bottom:2717.097053pt;}
.y12e{bottom:2718.729053pt;}
.y106{bottom:2721.646387pt;}
.y103{bottom:2721.647720pt;}
.y145{bottom:2722.201053pt;}
.y43{bottom:2723.059720pt;}
.y32{bottom:2723.909053pt;}
.y53{bottom:2724.282387pt;}
.ye7{bottom:2727.178387pt;}
.yad{bottom:2729.454387pt;}
.ya7{bottom:2730.919720pt;}
.yaa{bottom:2730.941053pt;}
.y77{bottom:2731.745053pt;}
.y20{bottom:2733.925053pt;}
.y65{bottom:2736.365053pt;}
.y129{bottom:2739.147720pt;}
.y12d{bottom:2740.779720pt;}
.y31{bottom:2741.975720pt;}
.y52{bottom:2742.349053pt;}
.y144{bottom:2744.251720pt;}
.ye6{bottom:2749.229053pt;}
.yac{bottom:2751.506387pt;}
.y82{bottom:2751.778387pt;}
.ya9{bottom:2752.527720pt;}
.y102{bottom:2752.545053pt;}
.ya6{bottom:2752.971720pt;}
.y15b{bottom:2753.118387pt;}
.y1f{bottom:2755.975720pt;}
.y64{bottom:2758.415720pt;}
.y51{bottom:2760.414387pt;}
.y128{bottom:2761.198387pt;}
.y30{bottom:2762.710387pt;}
.y143{bottom:2765.198387pt;}
.y81{bottom:2772.725053pt;}
.y15a{bottom:2775.235720pt;}
.y1e{bottom:2778.026387pt;}
.y50{bottom:2778.479720pt;}
.y127{bottom:2779.263720pt;}
.y63{bottom:2780.467720pt;}
.y12c{bottom:2780.897053pt;}
.y2f{bottom:2789.493053pt;}
.y126{bottom:2802.541053pt;}
.y12b{bottom:2802.955720pt;}
.y4f{bottom:2804.115720pt;}
.y142{bottom:2805.789053pt;}
.y2e{bottom:2807.558387pt;}
.y97{bottom:2809.869053pt;}
.y154{bottom:2810.611720pt;}
.y80{bottom:2810.757053pt;}
.y94{bottom:2810.842387pt;}
.y91{bottom:2811.131720pt;}
.y159{bottom:2811.339720pt;}
.ya5{bottom:2819.355720pt;}
.y141{bottom:2827.839720pt;}
.y2d{bottom:2828.155720pt;}
.y153{bottom:2832.662387pt;}
.y7f{bottom:2832.807720pt;}
.y158{bottom:2833.390387pt;}
.y4e{bottom:2845.785053pt;}
.y140{bottom:2849.890387pt;}
.y152{bottom:2854.713053pt;}
.y7e{bottom:2854.858387pt;}
.y2c{bottom:2854.938387pt;}
.y125{bottom:2854.983720pt;}
.y157{bottom:2855.441053pt;}
.y4d{bottom:2867.835720pt;}
.y13f{bottom:2871.950387pt;}
.y2b{bottom:2873.003720pt;}
.y124{bottom:2873.049053pt;}
.y151{bottom:2876.763720pt;}
.y7d{bottom:2876.911720pt;}
.y156{bottom:2877.491720pt;}
.y4c{bottom:2889.886387pt;}
.y2a{bottom:2893.601053pt;}
.y155{bottom:2898.089053pt;}
.y150{bottom:2898.817053pt;}
.y4b{bottom:2911.937053pt;}
.y123{bottom:2913.165053pt;}
.y4a{bottom:2933.987720pt;}
.y122{bottom:2944.566387pt;}
.y42{bottom:2951.409053pt;}
.y1d{bottom:2954.089053pt;}
.y49{bottom:2956.039720pt;}
.y62{bottom:2962.334387pt;}
.h1b{height:7.662225pt;}
.h14{height:10.028729pt;}
.h13{height:10.028731pt;}
.h17{height:13.041423pt;}
.h15{height:13.371584pt;}
.h11{height:14.682920pt;}
.h16{height:14.904507pt;}
.ha{height:15.405761pt;}
.h20{height:19.272296pt;}
.h7{height:22.571418pt;}
.hf{height:23.687236pt;}
.hc{height:25.072183pt;}
.h26{height:25.694787pt;}
.h19{height:25.751218pt;}
.h18{height:26.279615pt;}
.h2c{height:28.891387pt;}
.h24{height:28.930141pt;}
.h2d{height:28.988273pt;}
.h4{height:30.095098pt;}
.h6{height:31.341747pt;}
.h1e{height:31.582850pt;}
.h23{height:32.122407pt;}
.h29{height:33.714643pt;}
.h2a{height:33.759867pt;}
.h28{height:33.827704pt;}
.h8{height:36.478095pt;}
.he{height:37.618778pt;}
.h22{height:38.536294pt;}
.h25{height:38.587986pt;}
.h3{height:41.192762pt;}
.h1c{height:43.229127pt;}
.h2b{height:45.162829pt;}
.h21{height:52.959517pt;}
.h2{height:54.171251pt;}
.hd{height:56.849209pt;}
.hb{height:64.746796pt;}
.h27{height:70.945279pt;}
.h5{height:80.937417pt;}
.h1d{height:93.596090pt;}
.h1a{height:100.642368pt;}
.h12{height:178.798038pt;}
.h10{height:182.577853pt;}
.h9{height:184.225955pt;}
.h1f{height:297.617616pt;}
.h1{height:340.000000pt;}
.h0{height:340.157333pt;}
.w7{width:74.074838pt;}
.w3{width:238.108667pt;}
.w5{width:259.269267pt;}
.w4{width:296.322767pt;}
.w6{width:370.371101pt;}
.w2{width:370.421406pt;}
.w8{width:529.115928pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x54{left:3.719490pt;}
.x10{left:5.246231pt;}
.x5f{left:8.766336pt;}
.x8f{left:12.514942pt;}
.xc{left:16.121333pt;}
.x44{left:18.897333pt;}
.x4d{left:20.220000pt;}
.xf{left:25.197333pt;}
.x94{left:30.919722pt;}
.x41{left:32.125333pt;}
.x60{left:33.799933pt;}
.x7a{left:36.148918pt;}
.xd{left:38.466667pt;}
.x7b{left:41.206027pt;}
.x22{left:42.836000pt;}
.x69{left:44.690253pt;}
.x35{left:45.589333pt;}
.x33{left:47.364000pt;}
.x4e{left:49.310667pt;}
.x32{left:51.626667pt;}
.x8b{left:54.288000pt;}
.x92{left:56.558100pt;}
.xb{left:58.070667pt;}
.x30{left:59.437333pt;}
.x34{left:61.720000pt;}
.x63{left:62.969707pt;}
.x64{left:64.555883pt;}
.xe{left:66.886667pt;}
.x65{left:67.790431pt;}
.x66{left:69.986352pt;}
.x6a{left:71.105747pt;}
.x61{left:73.322523pt;}
.x62{left:75.416819pt;}
.x68{left:77.719333pt;}
.x67{left:78.687382pt;}
.x3c{left:86.032269pt;}
.x79{left:95.977333pt;}
.x20{left:100.673333pt;}
.x7c{left:102.910667pt;}
.x37{left:105.272000pt;}
.x5d{left:106.647974pt;}
.xa{left:107.545547pt;}
.x5c{left:111.643174pt;}
.x9{left:117.166667pt;}
.x5a{left:118.276723pt;}
.x5e{left:119.242484pt;}
.x5b{left:121.843145pt;}
.x74{left:124.226800pt;}
.x3d{left:126.072000pt;}
.x55{left:128.665723pt;}
.x1{left:130.485333pt;}
.x59{left:132.831677pt;}
.x56{left:135.159482pt;}
.x86{left:139.952000pt;}
.x57{left:142.976705pt;}
.x58{left:145.490098pt;}
.x6b{left:149.975427pt;}
.x28{left:152.550667pt;}
.x3b{left:154.205333pt;}
.x2{left:155.945333pt;}
.x21{left:164.454667pt;}
.x73{left:165.698671pt;}
.x87{left:169.042667pt;}
.x6e{left:170.849505pt;}
.x70{left:172.158930pt;}
.x6f{left:174.567693pt;}
.x6d{left:175.954891pt;}
.x6c{left:180.139295pt;}
.x71{left:186.150613pt;}
.x7{left:189.402667pt;}
.x5{left:206.189333pt;}
.x96{left:210.874508pt;}
.x91{left:215.670818pt;}
.x4f{left:220.342667pt;}
.x42{left:222.992000pt;}
.x76{left:230.199764pt;}
.x8c{left:237.601333pt;}
.x2f{left:244.408000pt;}
.x90{left:245.387329pt;}
.x3{left:247.729333pt;}
.x50{left:249.434667pt;}
.x72{left:258.468209pt;}
.x4{left:262.713333pt;}
.x8{left:263.948000pt;}
.x77{left:265.120189pt;}
.x95{left:266.885844pt;}
.x6{left:268.369333pt;}
.x75{left:273.943502pt;}
.x1d{left:279.453333pt;}
.x17{left:281.358667pt;}
.x16{left:282.857333pt;}
.x78{left:284.818189pt;}
.x8e{left:293.274370pt;}
.x3a{left:303.714667pt;}
.x2a{left:312.006667pt;}
.x14{left:314.961333pt;}
.x53{left:318.945333pt;}
.x15{left:344.052000pt;}
.x1e{left:349.693333pt;}
.x29{left:351.450667pt;}
.x27{left:379.329333pt;}
.x1f{left:386.682667pt;}
.x88{left:392.674667pt;}
.x31{left:394.328000pt;}
.x51{left:409.889333pt;}
.x43{left:413.857333pt;}
.x89{left:421.765333pt;}
.x52{left:438.980000pt;}
.x4c{left:453.542667pt;}
.x84{left:466.754667pt;}
.x93{left:481.400852pt;}
.x8d{left:485.088202pt;}
.x85{left:495.845333pt;}
.x46{left:2686.921053pt;}
.x7f{left:2691.898387pt;}
.x3e{left:2698.826387pt;}
.x18{left:2704.495720pt;}
.x2c{left:2710.239720pt;}
.x47{left:2716.011720pt;}
.x8a{left:2720.989053pt;}
.x2e{left:2725.061053pt;}
.x2d{left:2726.138387pt;}
.x38{left:2733.587720pt;}
.x36{left:2771.973053pt;}
.x80{left:2806.653053pt;}
.x24{left:2819.251720pt;}
.x81{left:2835.743720pt;}
.x48{left:2887.043720pt;}
.x3f{left:2889.693053pt;}
.x2b{left:2911.109053pt;}
.x49{left:2916.135720pt;}
.x1a{left:2935.885053pt;}
.x19{left:2946.154387pt;}
.x13{left:2949.558387pt;}
.x39{left:2970.415720pt;}
.x26{left:2978.707720pt;}
.x11{left:2981.662387pt;}
.x12{left:3010.753053pt;}
.x1b{left:3016.394387pt;}
.x25{left:3018.151720pt;}
.x23{left:3046.030387pt;}
.x1c{left:3053.383720pt;}
.x82{left:3059.375720pt;}
.x4a{left:3076.590387pt;}
.x40{left:3080.558387pt;}
.x83{left:3088.466387pt;}
.x4b{left:3105.681053pt;}
.x45{left:3120.243720pt;}
.x7d{left:3133.455720pt;}
.x7e{left:3162.546387pt;}
}




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