
    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_8baef4e59ce6c21217ce7e18.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.087891;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_617d8fc8f60f814cd297d721.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_acdf5b9e5b1ad666d636ae6e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.030273;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_65dbdd352782358cf31d1dc8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.091309;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_3ba501903f51aa0204734b9a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.783691;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_0c333486cdb4838a8fe61856.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_9520a928e2e643b7a6009d3c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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_0c009a30919dee596b256735.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.100098;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_20026bd21659e5571829544d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.676758;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_0fe6288319a31728b67c27a6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.943359;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_8505eb702427d159475938da.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938965;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_17dc59af67722f0c6ec65554.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.914062;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_3c1bf8ac330011d5f178768c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.921387;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_5f0d847fdb7c7221ddb5a756.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.916016;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_1b17b49ab4373b83a8e8ca02.woff2')format("woff");}.fff{font-family:fff;line-height:1.030273;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_b420de69f10bfd62b1d29b60.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.030273;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;}
.m6{transform:matrix(0.000000,-0.249682,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249682,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249682,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.249684,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249684,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249684,0.250000,0.000000,0,0);}
.me{transform:matrix(0.000000,-0.249903,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249903,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249903,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.249971,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249971,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249971,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(0.250025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250029,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250094,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250097,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250098,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250102,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250317,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250317,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250318,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250389,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250434,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.253888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253888,0.000000,0.000000,0.250000,0,0);}
.vb{vertical-align:-89.998762px;}
.v4{vertical-align:-56.151482px;}
.v6{vertical-align:-53.265164px;}
.v8{vertical-align:-34.574191px;}
.v5{vertical-align:-31.704103px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:1.401993px;}
.va{vertical-align:16.552943px;}
.v9{vertical-align:19.439446px;}
.v1{vertical-align:32.413957px;}
.v3{vertical-align:41.763659px;}
.ve{vertical-align:43.967745px;}
.v2{vertical-align:51.894365px;}
.vd{vertical-align:69.803098px;}
.v7{vertical-align:89.998761px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.006460px;}
.ls2{letter-spacing:0.116913px;}
.ls4{letter-spacing:17.329265px;}
.ls3{letter-spacing:22.986835px;}
.ls6{letter-spacing:33.292098px;}
.ls5{letter-spacing:33.292259px;}
.ls7{letter-spacing:34.030616px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3a{word-spacing:-37.270883px;}
.ws11{word-spacing:-26.308912px;}
.ws16{word-spacing:-24.883306px;}
.ws2b{word-spacing:-23.278878px;}
.ws2c{word-spacing:-22.977331px;}
.ws35{word-spacing:-22.431375px;}
.wse{word-spacing:-22.129836px;}
.wsf{word-spacing:-21.967210px;}
.ws2e{word-spacing:-21.923943px;}
.ws6{word-spacing:-21.478998px;}
.ws13{word-spacing:-20.941391px;}
.ws1{word-spacing:-20.735946px;}
.ws36{word-spacing:-19.458662px;}
.ws3e{word-spacing:-18.385805px;}
.ws1c{word-spacing:-18.278645px;}
.ws39{word-spacing:-18.247644px;}
.ws32{word-spacing:-17.985208px;}
.ws15{word-spacing:-17.949472px;}
.ws12{word-spacing:-17.539274px;}
.ws25{word-spacing:-17.086832px;}
.ws1b{word-spacing:-16.597544px;}
.ws20{word-spacing:-16.174106px;}
.ws1e{word-spacing:-14.755184px;}
.ws3f{word-spacing:-14.515332px;}
.ws10{word-spacing:-14.177436px;}
.ws29{word-spacing:-13.967401px;}
.ws14{word-spacing:-13.409200px;}
.ws5{word-spacing:-12.862155px;}
.ws42{word-spacing:-12.441511px;}
.ws3c{word-spacing:-12.203968px;}
.ws33{word-spacing:-11.249418px;}
.ws38{word-spacing:-7.326746px;}
.wsd{word-spacing:-1.330557px;}
.wsa{word-spacing:-1.235518px;}
.ws21{word-spacing:-1.179362px;}
.wsc{word-spacing:-1.045438px;}
.wsb{word-spacing:-0.950398px;}
.ws2f{word-spacing:-0.855358px;}
.ws18{word-spacing:-0.647998px;}
.ws19{word-spacing:-0.431999px;}
.ws4{word-spacing:0.000000px;}
.ws41{word-spacing:0.064800px;}
.ws1a{word-spacing:0.108000px;}
.ws9{word-spacing:0.190080px;}
.ws40{word-spacing:0.259198px;}
.ws8{word-spacing:0.289176px;}
.ws22{word-spacing:0.505441px;}
.ws17{word-spacing:0.539999px;}
.ws37{word-spacing:0.587518px;}
.ws31{word-spacing:0.673921px;}
.ws7{word-spacing:0.855358px;}
.ws3{word-spacing:1.835995px;}
.ws2{word-spacing:6.833017px;}
.ws0{word-spacing:7.569121px;}
.ws23{word-spacing:16.679547px;}
.ws28{word-spacing:148.914338px;}
.ws26{word-spacing:154.338199px;}
.ws3b{word-spacing:178.055201px;}
.ws2a{word-spacing:185.904735px;}
.ws24{word-spacing:187.254340px;}
.ws27{word-spacing:195.229093px;}
.ws30{word-spacing:227.111408px;}
.ws1d{word-spacing:265.760136px;}
.ws34{word-spacing:275.653567px;}
.ws1f{word-spacing:842.841484px;}
.ws2d{word-spacing:1209.364796px;}
.ws3d{word-spacing:1630.933654px;}
._10{margin-left:-1663.232735px;}
._f{margin-left:-786.686183px;}
._20{margin-left:-657.165752px;}
._21{margin-left:-13.646902px;}
._d{margin-left:-10.368029px;}
._1{margin-left:-9.331187px;}
._6{margin-left:-7.559982px;}
._a{margin-left:-6.284151px;}
._2{margin-left:-5.183993px;}
._3{margin-left:-3.110396px;}
._4{margin-left:-1.814397px;}
._0{width:1.295998px;}
._5{width:2.332797px;}
._7{width:3.628807px;}
._27{width:9.017977px;}
._28{width:11.414038px;}
._11{width:15.552079px;}
._25{width:16.595307px;}
._12{width:18.204568px;}
._9{width:21.496243px;}
._c{width:23.759953px;}
._22{width:33.151728px;}
._23{width:35.212377px;}
._e{width:39.562504px;}
._8{width:45.434708px;}
._1d{width:97.899997px;}
._15{width:105.165430px;}
._b{width:204.649901px;}
._16{width:225.837748px;}
._14{width:234.990265px;}
._24{width:306.884123px;}
._1c{width:331.974226px;}
._13{width:355.064472px;}
._1a{width:553.569852px;}
._1f{width:585.143630px;}
._17{width:609.327776px;}
._18{width:845.063465px;}
._19{width:857.480993px;}
._1b{width:944.435588px;}
._1e{width:1137.580858px;}
._26{width:2448.732973px;}
.fcf{color:rgb(31,31,31);}
.fcd{color:rgb(171,35,37);}
.fc0{color:rgb(255,255,255);}
.fc1{color:rgb(6,6,6);}
.fc4{color:rgb(0,0,0);}
.fc6{color:rgb(0,176,80);}
.fc7{color:rgb(64,25,25);}
.fc8{color:rgb(34,34,34);}
.fc9{color:rgb(191,191,191);}
.fca{color:rgb(166,166,166);}
.fc2{color:rgb(171,35,40);}
.fc3{color:rgb(192,0,0);}
.fc5{color:rgb(35,129,196);}
.fce{color:transparent;}
.fcb{color:rgb(0,32,96);}
.fcc{color:rgb(64,116,156);}
.fs2c{font-size:38.160137px;}
.fs25{font-size:44.997672px;}
.fs1e{font-size:45.497548px;}
.fs2e{font-size:53.999861px;}
.fs1c{font-size:55.869603px;}
.fse{font-size:56.160091px;}
.fs17{font-size:59.020737px;}
.fs1f{font-size:62.015569px;}
.fs8{font-size:63.360367px;}
.fs14{font-size:64.799538px;}
.fs1b{font-size:68.347329px;}
.fs1d{font-size:68.434328px;}
.fsf{font-size:69.839584px;}
.fs24{font-size:71.940832px;}
.fs4{font-size:71.999814px;}
.fs16{font-size:73.114581px;}
.fs15{font-size:73.440459px;}
.fs22{font-size:74.774936px;}
.fs12{font-size:75.600690px;}
.fs19{font-size:77.519092px;}
.fs18{font-size:77.527939px;}
.fs2a{font-size:77.834648px;}
.fs1a{font-size:84.240136px;}
.fs11{font-size:86.400367px;}
.fs27{font-size:89.725500px;}
.fs21{font-size:91.909323px;}
.fs20{font-size:93.115513px;}
.fsa{font-size:93.600643px;}
.fs0{font-size:95.039814px;}
.fs2f{font-size:95.759399px;}
.fsc{font-size:97.200044px;}
.fs7{font-size:97.919629px;}
.fsb{font-size:98.640689px;}
.fs3{font-size:107.999721px;}
.fs6{font-size:115.199998px;}
.fs29{font-size:121.250117px;}
.fs26{font-size:121.297303px;}
.fs2{font-size:129.600550px;}
.fs9{font-size:140.400227px;}
.fs28{font-size:148.194751px;}
.fs31{font-size:151.199905px;}
.fsd{font-size:154.079720px;}
.fs23{font-size:168.480273px;}
.fs33{font-size:171.360088px;}
.fs5{font-size:172.800734px;}
.fs2d{font-size:179.279950px;}
.fs2b{font-size:183.600411px;}
.fs13{font-size:200.159719px;}
.fs30{font-size:205.199765px;}
.fs32{font-size:215.999442px;}
.fs10{font-size:224.640364px;}
.fs1{font-size:259.199626px;}
.ybb{bottom:-14.942811px;}
.yee{bottom:-0.184065px;}
.y0{bottom:0.000000px;}
.y5a{bottom:3.596628px;}
.ye4{bottom:5.399732px;}
.y101{bottom:12.233573px;}
.y59{bottom:82.987478px;}
.y6b{bottom:92.344398px;}
.y85{bottom:95.389645px;}
.yba{bottom:99.544029px;}
.y58{bottom:107.641654px;}
.y65{bottom:111.427904px;}
.yff{bottom:114.306203px;}
.ybe{bottom:115.930408px;}
.y84{bottom:117.353650px;}
.y110{bottom:122.576810px;}
.y6a{bottom:125.102626px;}
.yf{bottom:127.086409px;}
.y57{bottom:130.320748px;}
.y108{bottom:133.556238px;}
.y83{bottom:139.496964px;}
.ybd{bottom:141.670815px;}
.y10a{bottom:145.624561px;}
.y64{bottom:146.522129px;}
.yfe{bottom:146.698220px;}
.y9d{bottom:148.685061px;}
.y7{bottom:149.216325px;}
.y87{bottom:156.591940px;}
.y109{bottom:161.819805px;}
.y2c{bottom:162.177239px;}
.ye{bottom:162.359960px;}
.ybc{bottom:167.582312px;}
.y114{bottom:169.559356px;}
.y4d{bottom:170.822761px;}
.yb4{bottom:177.661809px;}
.y9c{bottom:177.670716px;}
.y6{bottom:178.378353px;}
.y86{bottom:178.735199px;}
.y41{bottom:183.603833px;}
.yed{bottom:184.497749px;}
.y2b{bottom:190.796802px;}
.y1b{bottom:197.100780px;}
.yb3{bottom:197.283967px;}
.y11f{bottom:197.286715px;}
.ydb{bottom:197.455417px;}
.y4c{bottom:200.346811px;}
.yec{bottom:205.382806px;}
.y9b{bottom:206.644589px;}
.y5{bottom:207.540381px;}
.y40{bottom:212.039219px;}
.y11e{bottom:216.720823px;}
.y81{bottom:217.256659px;}
.ya9{bottom:218.343624px;}
.yda{bottom:220.137328px;}
.yeb{bottom:226.434124px;}
.y1a{bottom:226.794100px;}
.y45{bottom:228.606252px;}
.y4b{bottom:229.858968px;}
.y82{bottom:233.459225px;}
.y11d{bottom:236.164876px;}
.y4{bottom:238.142820px;}
.yd9{bottom:242.634396px;}
.yea{bottom:247.681394px;}
.y80{bottom:249.661832px;}
.y10b{bottom:252.366884px;}
.y63{bottom:255.244695px;}
.y11c{bottom:255.608881px;}
.y19{bottom:256.318901px;}
.y44{bottom:257.041567px;}
.y4a{bottom:259.203838px;}
.y99{bottom:259.564233px;}
.yaa{bottom:261.365154px;}
.yd8{bottom:265.317710px;}
.yc3{bottom:267.841972px;}
.ye9{bottom:268.732712px;}
.y15{bottom:270.536716px;}
.y11b{bottom:275.042989px;}
.y91{bottom:282.239278px;}
.y18{bottom:285.831612px;}
.yd7{bottom:287.814779px;}
.ye8{bottom:289.801833px;}
.y9a{bottom:290.165462px;}
.y7d{bottom:297.004000px;}
.ye1{bottom:298.975705px;}
.y62{bottom:299.873974px;}
.yc2{bottom:300.247145px;}
.ydd{bottom:300.421485px;}
.ydf{bottom:300.771983px;}
.ye5{bottom:300.958163px;}
.y30{bottom:302.218002px;}
.yb5{bottom:303.299692px;}
.yab{bottom:304.199159px;}
.y10f{bottom:307.985888px;}
.y3{bottom:309.432817px;}
.yd5{bottom:311.029959px;}
.ya7{bottom:311.220518px;}
.y14{bottom:312.663618px;}
.y7f{bottom:313.206607px;}
.ye3{bottom:320.213239px;}
.y11{bottom:322.373175px;}
.ye6{bottom:323.641477px;}
.yd4{bottom:323.993143px;}
.ye0{bottom:324.714832px;}
.ydc{bottom:326.335895px;}
.yde{bottom:326.511110px;}
.ye2{bottom:326.872572px;}
.y92{bottom:328.862581px;}
.y7c{bottom:329.396017px;}
.y2f{bottom:330.838981px;}
.y27{bottom:332.637241px;}
.yc1{bottom:332.639161px;}
.yd3{bottom:336.777834px;}
.y43{bottom:337.138645px;}
.yca{bottom:337.501040px;}
.y8e{bottom:338.042807px;}
.y10{bottom:345.059186px;}
.y7e{bottom:345.598583px;}
.y90{bottom:347.048277px;}
.yac{bottom:347.220689px;}
.ycc{bottom:347.943880px;}
.y10e{bottom:349.738240px;}
.yb6{bottom:351.188506px;}
.yb7{bottom:359.819542px;}
.y26{bottom:361.258221px;}
.y7b{bottom:361.801190px;}
.y49{bottom:362.337155px;}
.y120{bottom:364.508165px;}
.yc0{bottom:365.044334px;}
.y42{bottom:365.585608px;}
.y2e{bottom:370.075398px;}
.y93{bottom:375.301238px;}
.y2{bottom:379.263552px;}
.yad{bottom:390.242220px;}
.y8d{bottom:390.424338px;}
.y48{bottom:390.784154px;}
.y61{bottom:391.141750px;}
.yfc{bottom:395.827491px;}
.y2d{bottom:398.696413px;}
.ycd{bottom:403.568078px;}
.y79{bottom:403.738091px;}
.yd6{bottom:404.279283px;}
.y104{bottom:406.805878px;}
.ya6{bottom:410.760909px;}
.yf6{bottom:420.661435px;}
.y11a{bottom:421.555449px;}
.y94{bottom:421.915526px;}
.y47{bottom:422.815989px;}
.y50{bottom:423.365666px;}
.y8f{bottom:423.902472px;}
.yfb{bottom:425.339649px;}
.ybf{bottom:429.841564px;}
.y1d{bottom:431.099506px;}
.yf5{bottom:432.363745px;}
.y103{bottom:432.364069px;}
.yae{bottom:433.263792px;}
.y77{bottom:436.143304px;}
.y119{bottom:444.239335px;}
.y13{bottom:451.075776px;}
.y46{bottom:451.262988px;}
.y7a{bottom:452.345870px;}
.y4f{bottom:452.518570px;}
.yfa{bottom:454.863771px;}
.y105{bottom:456.483681px;}
.yf4{bottom:457.557634px;}
.yce{bottom:459.007811px;}
.y25{bottom:460.625404px;}
.yf0{bottom:460.981932px;}
.y118{bottom:466.914012px;}
.y76{bottom:468.535280px;}
.y95{bottom:468.537906px;}
.y113{bottom:472.872683px;}
.y1c{bottom:473.758355px;}
.yaf{bottom:476.283615px;}
.y60{bottom:481.855803px;}
.y3c{bottom:482.575533px;}
.yf9{bottom:484.375928px;}
.y8c{bottom:488.698849px;}
.y24{bottom:489.246418px;}
.y117{bottom:489.597899px;}
.y34{bottom:495.360417px;}
.y56{bottom:498.959477px;}
.y78{bottom:500.940493px;}
.y12{bottom:501.120775px;}
.ya8{bottom:504.363022px;}
.y3b{bottom:511.022496px;}
.y116{bottom:512.272576px;}
.yf8{bottom:513.720725px;}
.ycf{bottom:514.623219px;}
.y96{bottom:514.979289px;}
.y17{bottom:516.776886px;}
.y10d{bottom:517.143100px;}
.yb0{bottom:519.304313px;}
.yef{bottom:520.017902px;}
.y5f{bottom:521.280187px;}
.yc4{bottom:528.297206px;}
.y115{bottom:534.956462px;}
.y21{bottom:538.378948px;}
.y8a{bottom:538.563490px;}
.y73{bottom:542.877394px;}
.yf7{bottom:543.244847px;}
.y55{bottom:545.228546px;}
.y16{bottom:545.397865px;}
.y33{bottom:545.583494px;}
.yf2{bottom:548.101373px;}
.y38{bottom:557.637511px;}
.y75{bottom:558.895412px;}
.y10c{bottom:559.079981px;}
.y5e{bottom:560.150848px;}
.yc7{bottom:560.338399px;}
.y97{bottom:561.600745px;}
.yb1{bottom:562.318163px;}
.yb{bottom:564.656641px;}
.ya5{bottom:566.820081px;}
.y20{bottom:566.999927px;}
.yd0{bottom:570.247390px;}
.yc5{bottom:572.760546px;}
.yf1{bottom:573.295262px;}
.y32{bottom:574.018880px;}
.y8b{bottom:574.201487px;}
.y70{bottom:575.098018px;}
.y72{bottom:575.282587px;}
.y37{bottom:586.084474px;}
.y74{bottom:591.300605px;}
.y54{bottom:591.666885px;}
.ya{bottom:593.818669px;}
.y5d{bottom:599.037345px;}
.yb2{bottom:605.338840px;}
.y71{bottom:607.674584px;}
.yc6{bottom:608.042271px;}
.y98{bottom:608.222245px;}
.y23{bottom:611.816681px;}
.y102{bottom:613.614924px;}
.yb8{bottom:614.159766px;}
.yb9{bottom:617.759551px;}
.y9f{bottom:618.119814px;}
.y68{bottom:621.179293px;}
.ya4{bottom:621.718941px;}
.y9{bottom:622.980698px;}
.ya1{bottom:623.343708px;}
.yd1{bottom:625.687151px;}
.y9e{bottom:629.277114px;}
.y3a{bottom:633.418761px;}
.y53{bottom:637.917127px;}
.y5c{bottom:637.923842px;}
.y22{bottom:640.437696px;}
.y67{bottom:643.134113px;}
.ya3{bottom:647.097936px;}
.ya0{bottom:648.537581px;}
.y6e{bottom:650.516875px;}
.y6f{bottom:650.880737px;}
.y1f{bottom:651.784001px;}
.y8{bottom:653.586009px;}
.ye7{bottom:655.926304px;}
.y39{bottom:661.865724px;}
.ya2{bottom:672.302103px;}
.yd{bottom:673.372041px;}
.y36{bottom:673.919724px;}
.y107{bottom:678.966299px;}
.y1e{bottom:680.404998px;}
.yd2{bottom:681.302545px;}
.y52{bottom:684.186182px;}
.y66{bottom:686.698621px;}
.y2a{bottom:686.878660px;}
.y6d{bottom:689.751398px;}
.yc9{bottom:693.896354px;}
.y35{bottom:702.355110px;}
.y3f{bottom:703.619673px;}
.y89{bottom:713.513616px;}
.y111{bottom:714.432167px;}
.y29{bottom:715.325623px;}
.y100{bottom:718.558480px;}
.yf3{bottom:718.741128px;}
.yc{bottom:725.220704px;}
.y112{bottom:726.663802px;}
.y106{bottom:728.452336px;}
.y51{bottom:730.436438px;}
.y3e{bottom:732.055041px;}
.y5b{bottom:733.850612px;}
.yfd{bottom:736.565544px;}
.y28{bottom:743.935025px;}
.y69{bottom:745.743382px;}
.yc8{bottom:745.745001px;}
.ycb{bottom:753.848041px;}
.y6c{bottom:759.245062px;}
.y3d{bottom:760.502022px;}
.y31{bottom:763.015586px;}
.y88{bottom:765.362278px;}
.y4e{bottom:767.524392px;}
.y1{bottom:769.145175px;}
.h35{height:6.114587px;}
.h43{height:17.280489px;}
.h19{height:21.238732px;}
.h3f{height:25.563878px;}
.h3c{height:31.419273px;}
.h32{height:32.101541px;}
.h49{height:32.980197px;}
.h2f{height:39.010514px;}
.h26{height:41.210769px;}
.h33{height:43.423010px;}
.h4b{height:46.669801px;}
.h30{height:47.722989px;}
.h20{height:48.093407px;}
.h2b{height:48.223579px;}
.h31{height:48.284963px;}
.h17{height:48.728751px;}
.h3b{height:50.232124px;}
.h25{height:51.051685px;}
.h37{height:52.211015px;}
.h4a{height:53.709822px;}
.h28{height:54.127100px;}
.h27{height:54.133278px;}
.h42{height:54.347435px;}
.hb{height:54.976256px;}
.h52{height:56.003507px;}
.h1d{height:56.109887px;}
.h47{height:57.425606px;}
.h1f{height:60.359406px;}
.h18{height:60.598115px;}
.h3e{height:62.650129px;}
.h40{height:64.052122px;}
.h2e{height:64.776522px;}
.h36{height:64.848131px;}
.h51{height:65.338487px;}
.h34{height:65.699178px;}
.h39{height:66.360807px;}
.h2d{height:67.663026px;}
.h2a{height:72.805196px;}
.h24{height:73.046004px;}
.h2{height:82.138901px;}
.h4d{height:82.760809px;}
.h44{height:82.763124px;}
.h4c{height:82.994596px;}
.h3d{height:84.694894px;}
.ha{height:84.962491px;}
.h6{height:91.282967px;}
.h5{height:93.339603px;}
.h23{height:93.603274px;}
.h38{height:93.708742px;}
.he{height:94.529346px;}
.h7{height:94.816140px;}
.h15{height:96.677973px;}
.h10{height:97.313715px;}
.h13{height:97.393694px;}
.h22{height:99.225421px;}
.h14{height:99.525631px;}
.h12{height:100.262433px;}
.h2c{height:100.785613px;}
.hf{height:101.000745px;}
.h46{height:102.783295px;}
.h41{height:104.561238px;}
.h11{height:112.071570px;}
.h4{height:112.324696px;}
.h1b{height:112.451259px;}
.hc{height:121.821877px;}
.hd{height:122.978670px;}
.h4f{height:127.796404px;}
.h1c{height:133.665071px;}
.h16{height:133.691242px;}
.h3a{height:146.186252px;}
.h53{height:148.099295px;}
.h21{height:149.766261px;}
.h8{height:149.935012px;}
.h9{height:151.850612px;}
.h48{height:155.556871px;}
.h45{height:159.305630px;}
.h29{height:162.803958px;}
.h1e{height:173.673741px;}
.h4e{height:178.046867px;}
.h50{height:186.679206px;}
.h1a{height:194.915003px;}
.h3{height:224.015302px;}
.h0{height:892.980015px;}
.h1{height:893.250000px;}
.w3{width:28.260702px;}
.w2{width:29.700174px;}
.w5{width:52.919173px;}
.w4{width:70.562782px;}
.w6{width:533.154617px;}
.w0{width:1262.880060px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x34{left:7.745439px;}
.x1b{left:9.001796px;}
.x2e{left:12.244974px;}
.x7f{left:20.165712px;}
.x76{left:28.976127px;}
.x77{left:31.496919px;}
.xb{left:33.831793px;}
.x73{left:39.956227px;}
.x7{left:42.124397px;}
.x74{left:44.281247px;}
.x69{left:53.639126px;}
.x55{left:55.076018px;}
.xc{left:60.293947px;}
.x49{left:61.554040px;}
.x6a{left:65.343449px;}
.xa3{left:79.921762px;}
.xa9{left:85.323092px;}
.x2{left:86.410422px;}
.x7d{left:97.382090px;}
.x44{left:100.260978px;}
.xae{left:101.522783px;}
.x51{left:109.080773px;}
.xaf{left:115.559403px;}
.x3d{left:117.181554px;}
.x29{left:122.036602px;}
.x8{left:127.085146px;}
.x65{left:131.405277px;}
.xa4{left:144.175413px;}
.x5f{left:148.857048px;}
.x5a{left:150.477571px;}
.x5d{left:155.521351px;}
.x32{left:156.955891px;}
.x80{left:159.842298px;}
.x5c{left:162.719550px;}
.x37{left:167.210863px;}
.x5b{left:170.097883px;}
.x54{left:183.780450px;}
.x60{left:198.722128px;}
.x66{left:207.358025px;}
.x5e{left:234.361579px;}
.x6b{left:242.285260px;}
.x56{left:243.716058px;}
.x9b{left:248.402157px;}
.x81{left:250.024320px;}
.xa1{left:255.599714px;}
.x9a{left:257.214636px;}
.x7e{left:258.664109px;}
.x1c{left:286.024359px;}
.xd{left:287.277328px;}
.x1d{left:291.419086px;}
.xe{left:292.683650px;}
.x75{left:307.982439px;}
.x6d{left:310.502394px;}
.x6c{left:328.864056px;}
.x50{left:338.764746px;}
.x67{left:340.024720px;}
.x4f{left:341.454204px;}
.x82{left:342.901497px;}
.xa0{left:346.318282px;}
.x43{left:350.814540px;}
.x47{left:359.462952px;}
.x3c{left:361.622249px;}
.x42{left:364.855023px;}
.x6f{left:383.765230px;}
.x48{left:392.395499px;}
.x7c{left:395.636596px;}
.x6e{left:399.604028px;}
.x57{left:416.880846px;}
.x83{left:440.465221px;}
.x84{left:445.685509px;}
.x2b{left:447.482989px;}
.x71{left:451.982339px;}
.x70{left:470.344026px;}
.x96{left:472.858563px;}
.x9d{left:474.663148px;}
.xb2{left:497.889769px;}
.x31{left:536.755386px;}
.x72{left:541.086089px;}
.x86{left:542.525293px;}
.x87{left:546.306587px;}
.x1e{left:547.917530px;}
.xf{left:552.418933px;}
.x85{left:556.929179px;}
.x68{left:560.524327px;}
.x1f{left:568.255028px;}
.x95{left:569.334583px;}
.x20{left:573.661350px;}
.x11{left:575.459574px;}
.x2a{left:582.838172px;}
.x40{left:587.512187px;}
.x4c{left:589.858859px;}
.x3{left:597.425018px;}
.x3f{left:607.683018px;}
.x36{left:613.438152px;}
.x53{left:616.133685px;}
.xa8{left:619.557075px;}
.x4d{left:624.412959px;}
.xb0{left:631.624368px;}
.x89{left:644.767414px;}
.x99{left:649.616250px;}
.x88{left:650.887488px;}
.x41{left:661.682868px;}
.x3a{left:668.695810px;}
.x79{left:671.399146px;}
.x4e{left:676.079334px;}
.x4{left:686.520691px;}
.x61{left:694.805053px;}
.xab{left:710.997663px;}
.x1a{left:717.474030px;}
.x7a{left:718.741314px;}
.xad{left:721.071078px;}
.x3b{left:723.070449px;}
.x2f{left:730.625907px;}
.x78{left:734.574783px;}
.x8b{left:747.006014px;}
.x7b{left:748.443914px;}
.x8c{left:750.787342px;}
.x8a{left:752.947526px;}
.x94{left:758.331175px;}
.x58{left:772.379668px;}
.x93{left:782.272173px;}
.xac{left:789.655655px;}
.x12{left:824.216907px;}
.x9e{left:828.004887px;}
.x21{left:829.256326px;}
.x10{left:830.692003px;}
.x5{left:832.319325px;}
.x22{left:834.658293px;}
.x23{left:845.636279px;}
.x8e{left:850.511988px;}
.x63{left:853.918614px;}
.x62{left:855.358227px;}
.x64{left:859.143762px;}
.x28{left:860.217936px;}
.x6{left:861.834036px;}
.x8d{left:863.470006px;}
.x19{left:866.330483px;}
.x13{left:873.900517px;}
.x97{left:883.788367px;}
.x59{left:887.397025px;}
.x9c{left:893.348034px;}
.xa{left:898.029042px;}
.xa5{left:917.638337px;}
.x52{left:931.855203px;}
.x9f{left:939.423551px;}
.x45{left:941.042497px;}
.x90{left:952.750655px;}
.x8f{left:957.428281px;}
.x4b{left:959.763168px;}
.x9{left:962.461519px;}
.x3e{left:963.899526px;}
.x46{left:964.987186px;}
.x4a{left:969.477836px;}
.x30{left:972.359877px;}
.x98{left:982.250402px;}
.x38{left:998.107813px;}
.x24{left:1001.343405px;}
.x92{left:1003.871699px;}
.x14{left:1006.919424px;}
.x91{left:1008.549325px;}
.x33{left:1012.143084px;}
.x39{left:1046.518137px;}
.xa2{left:1056.233943px;}
.xb1{left:1063.251422px;}
.xa7{left:1072.794418px;}
.xaa{left:1080.363474px;}
.x26{left:1084.142174px;}
.x27{left:1085.751902px;}
.x25{left:1088.456497px;}
.x2d{left:1090.080670px;}
.xa6{left:1094.938815px;}
.x17{left:1105.554252px;}
.x18{left:1107.352477px;}
.x16{left:1121.035057px;}
.x2c{left:1149.843117px;}
.x15{left:1153.794892px;}
.x35{left:1180.972724px;}
.x1{left:1212.476917px;}
@media print{
.vb{vertical-align:-79.998899pt;}
.v4{vertical-align:-49.912428pt;}
.v6{vertical-align:-47.346812pt;}
.v8{vertical-align:-30.732614pt;}
.v5{vertical-align:-28.181425pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:1.246216pt;}
.va{vertical-align:14.713727pt;}
.v9{vertical-align:17.279508pt;}
.v1{vertical-align:28.812406pt;}
.v3{vertical-align:37.123252pt;}
.ve{vertical-align:39.082440pt;}
.v2{vertical-align:46.128324pt;}
.vd{vertical-align:62.047198pt;}
.v7{vertical-align:79.998899pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.005742pt;}
.ls2{letter-spacing:0.103922pt;}
.ls4{letter-spacing:15.403791pt;}
.ls3{letter-spacing:20.432742pt;}
.ls6{letter-spacing:29.592976pt;}
.ls5{letter-spacing:29.593119pt;}
.ls7{letter-spacing:30.249437pt;}
.ws3a{word-spacing:-33.129674pt;}
.ws11{word-spacing:-23.385699pt;}
.ws16{word-spacing:-22.118494pt;}
.ws2b{word-spacing:-20.692336pt;}
.ws2c{word-spacing:-20.424294pt;}
.ws35{word-spacing:-19.939000pt;}
.wse{word-spacing:-19.670966pt;}
.wsf{word-spacing:-19.526409pt;}
.ws2e{word-spacing:-19.487950pt;}
.ws6{word-spacing:-19.092443pt;}
.ws13{word-spacing:-18.614570pt;}
.ws1{word-spacing:-18.431952pt;}
.ws36{word-spacing:-17.296588pt;}
.ws3e{word-spacing:-16.342937pt;}
.ws1c{word-spacing:-16.247685pt;}
.ws39{word-spacing:-16.220128pt;}
.ws32{word-spacing:-15.986851pt;}
.ws15{word-spacing:-15.955086pt;}
.ws12{word-spacing:-15.590466pt;}
.ws25{word-spacing:-15.188295pt;}
.ws1b{word-spacing:-14.753372pt;}
.ws20{word-spacing:-14.376983pt;}
.ws1e{word-spacing:-13.115719pt;}
.ws3f{word-spacing:-12.902518pt;}
.ws10{word-spacing:-12.602165pt;}
.ws29{word-spacing:-12.415467pt;}
.ws14{word-spacing:-11.919289pt;}
.ws5{word-spacing:-11.433026pt;}
.ws42{word-spacing:-11.059121pt;}
.ws3c{word-spacing:-10.847972pt;}
.ws33{word-spacing:-9.999483pt;}
.ws38{word-spacing:-6.512663pt;}
.wsd{word-spacing:-1.182718pt;}
.wsa{word-spacing:-1.098238pt;}
.ws21{word-spacing:-1.048322pt;}
.wsc{word-spacing:-0.929278pt;}
.wsb{word-spacing:-0.844798pt;}
.ws2f{word-spacing:-0.760319pt;}
.ws18{word-spacing:-0.575999pt;}
.ws19{word-spacing:-0.383999pt;}
.ws4{word-spacing:0.000000pt;}
.ws41{word-spacing:0.057600pt;}
.ws1a{word-spacing:0.096000pt;}
.ws9{word-spacing:0.168960pt;}
.ws40{word-spacing:0.230398pt;}
.ws8{word-spacing:0.257045pt;}
.ws22{word-spacing:0.449281pt;}
.ws17{word-spacing:0.479999pt;}
.ws37{word-spacing:0.522238pt;}
.ws31{word-spacing:0.599041pt;}
.ws7{word-spacing:0.760319pt;}
.ws3{word-spacing:1.631996pt;}
.ws2{word-spacing:6.073793pt;}
.ws0{word-spacing:6.728108pt;}
.ws23{word-spacing:14.826264pt;}
.ws28{word-spacing:132.368300pt;}
.ws26{word-spacing:137.189510pt;}
.ws3b{word-spacing:158.271290pt;}
.ws2a{word-spacing:165.248653pt;}
.ws24{word-spacing:166.448302pt;}
.ws27{word-spacing:173.536972pt;}
.ws30{word-spacing:201.876807pt;}
.ws1d{word-spacing:236.231232pt;}
.ws34{word-spacing:245.025393pt;}
.ws1f{word-spacing:749.192430pt;}
.ws2d{word-spacing:1074.990930pt;}
.ws3d{word-spacing:1449.718803pt;}
._10{margin-left:-1478.429098pt;}
._f{margin-left:-699.276607pt;}
._20{margin-left:-584.147335pt;}
._21{margin-left:-12.130580pt;}
._d{margin-left:-9.216026pt;}
._1{margin-left:-8.294388pt;}
._6{margin-left:-6.719984pt;}
._a{margin-left:-5.585912pt;}
._2{margin-left:-4.607993pt;}
._3{margin-left:-2.764796pt;}
._4{margin-left:-1.612798pt;}
._0{width:1.151998pt;}
._5{width:2.073597pt;}
._7{width:3.225606pt;}
._27{width:8.015979pt;}
._28{width:10.145812pt;}
._11{width:13.824070pt;}
._25{width:14.751384pt;}
._12{width:16.181838pt;}
._9{width:19.107771pt;}
._c{width:21.119959pt;}
._22{width:29.468203pt;}
._23{width:31.299891pt;}
._e{width:35.166671pt;}
._8{width:40.386407pt;}
._1d{width:87.022220pt;}
._15{width:93.480382pt;}
._b{width:181.911023pt;}
._16{width:200.744665pt;}
._14{width:208.880235pt;}
._24{width:272.785887pt;}
._1c{width:295.088201pt;}
._13{width:315.612864pt;}
._1a{width:492.062091pt;}
._1f{width:520.127672pt;}
._17{width:541.624690pt;}
._18{width:751.167524pt;}
._19{width:762.205327pt;}
._1b{width:839.498300pt;}
._1e{width:1011.182985pt;}
._26{width:2176.651531pt;}
.fs2c{font-size:33.920122pt;}
.fs25{font-size:39.997931pt;}
.fs1e{font-size:40.442265pt;}
.fs2e{font-size:47.999876pt;}
.fs1c{font-size:49.661869pt;}
.fse{font-size:49.920081pt;}
.fs17{font-size:52.462878pt;}
.fs1f{font-size:55.124950pt;}
.fs8{font-size:56.320326pt;}
.fs14{font-size:57.599589pt;}
.fs1b{font-size:60.753181pt;}
.fs1d{font-size:60.830514pt;}
.fsf{font-size:62.079630pt;}
.fs24{font-size:63.947406pt;}
.fs4{font-size:63.999835pt;}
.fs16{font-size:64.990739pt;}
.fs15{font-size:65.280408pt;}
.fs22{font-size:66.466610pt;}
.fs12{font-size:67.200613pt;}
.fs19{font-size:68.905860pt;}
.fs18{font-size:68.913724pt;}
.fs2a{font-size:69.186354pt;}
.fs1a{font-size:74.880121pt;}
.fs11{font-size:76.800326pt;}
.fs27{font-size:79.756000pt;}
.fs21{font-size:81.697176pt;}
.fs20{font-size:82.769345pt;}
.fsa{font-size:83.200572pt;}
.fs0{font-size:84.479834pt;}
.fs2f{font-size:85.119466pt;}
.fsc{font-size:86.400039pt;}
.fs7{font-size:87.039670pt;}
.fsb{font-size:87.680613pt;}
.fs3{font-size:95.999752pt;}
.fs6{font-size:102.399998pt;}
.fs29{font-size:107.777882pt;}
.fs26{font-size:107.819825pt;}
.fs2{font-size:115.200489pt;}
.fs9{font-size:124.800202pt;}
.fs28{font-size:131.728668pt;}
.fs31{font-size:134.399915pt;}
.fsd{font-size:136.959751pt;}
.fs23{font-size:149.760243pt;}
.fs33{font-size:152.320079pt;}
.fs5{font-size:153.600652pt;}
.fs2d{font-size:159.359956pt;}
.fs2b{font-size:163.200365pt;}
.fs13{font-size:177.919750pt;}
.fs30{font-size:182.399791pt;}
.fs32{font-size:191.999504pt;}
.fs10{font-size:199.680323pt;}
.fs1{font-size:230.399667pt;}
.ybb{bottom:-13.282499pt;}
.yee{bottom:-0.163613pt;}
.y0{bottom:0.000000pt;}
.y5a{bottom:3.197003pt;}
.ye4{bottom:4.799762pt;}
.y101{bottom:10.874287pt;}
.y59{bottom:73.766647pt;}
.y6b{bottom:82.083909pt;}
.y85{bottom:84.790795pt;}
.yba{bottom:88.483581pt;}
.y58{bottom:95.681470pt;}
.y65{bottom:99.047026pt;}
.yff{bottom:101.605514pt;}
.ybe{bottom:103.049251pt;}
.y84{bottom:104.314355pt;}
.y110{bottom:108.957164pt;}
.y6a{bottom:111.202334pt;}
.yf{bottom:112.965697pt;}
.y57{bottom:115.840665pt;}
.y108{bottom:118.716656pt;}
.y83{bottom:123.997301pt;}
.ybd{bottom:125.929613pt;}
.y10a{bottom:129.444054pt;}
.y64{bottom:130.241893pt;}
.yfe{bottom:130.398418pt;}
.y9d{bottom:132.164499pt;}
.y7{bottom:132.636733pt;}
.y87{bottom:139.192836pt;}
.y109{bottom:143.839827pt;}
.y2c{bottom:144.157546pt;}
.ye{bottom:144.319965pt;}
.ybc{bottom:148.962056pt;}
.y114{bottom:150.719428pt;}
.y4d{bottom:151.842455pt;}
.yb4{bottom:157.921608pt;}
.y9c{bottom:157.929525pt;}
.y6{bottom:158.558536pt;}
.y86{bottom:158.875733pt;}
.y41{bottom:163.203407pt;}
.yed{bottom:163.998000pt;}
.y2b{bottom:169.597157pt;}
.y1b{bottom:175.200693pt;}
.yb3{bottom:175.363526pt;}
.y11f{bottom:175.365969pt;}
.ydb{bottom:175.515926pt;}
.y4c{bottom:178.086054pt;}
.yec{bottom:182.562494pt;}
.y9b{bottom:183.684079pt;}
.y5{bottom:184.480339pt;}
.y40{bottom:188.479306pt;}
.y11e{bottom:192.640732pt;}
.y81{bottom:193.117030pt;}
.ya9{bottom:194.083221pt;}
.yda{bottom:195.677625pt;}
.yeb{bottom:201.274777pt;}
.y1a{bottom:201.594756pt;}
.y45{bottom:203.205557pt;}
.y4b{bottom:204.319083pt;}
.y82{bottom:207.519311pt;}
.y11d{bottom:209.924335pt;}
.y4{bottom:211.682507pt;}
.yd9{bottom:215.675019pt;}
.yea{bottom:220.161240pt;}
.y80{bottom:221.921628pt;}
.y10b{bottom:224.326119pt;}
.y63{bottom:226.884174pt;}
.y11c{bottom:227.207894pt;}
.y19{bottom:227.839023pt;}
.y44{bottom:228.481393pt;}
.y4a{bottom:230.403411pt;}
.y99{bottom:230.723763pt;}
.yaa{bottom:232.324581pt;}
.yd8{bottom:235.837965pt;}
.yc3{bottom:238.081753pt;}
.ye9{bottom:238.873522pt;}
.y15{bottom:240.477081pt;}
.y11b{bottom:244.482657pt;}
.y91{bottom:250.879358pt;}
.y18{bottom:254.072544pt;}
.yd7{bottom:255.835359pt;}
.ye8{bottom:257.601630pt;}
.y9a{bottom:257.924855pt;}
.y7d{bottom:264.003556pt;}
.ye1{bottom:265.756182pt;}
.y62{bottom:266.554644pt;}
.yc2{bottom:266.886351pt;}
.ydd{bottom:267.041320pt;}
.ydf{bottom:267.352874pt;}
.ye5{bottom:267.518367pt;}
.y30{bottom:268.638224pt;}
.yb5{bottom:269.599726pt;}
.yab{bottom:270.399252pt;}
.y10f{bottom:273.765234pt;}
.y3{bottom:275.051393pt;}
.yd5{bottom:276.471075pt;}
.ya7{bottom:276.640461pt;}
.y14{bottom:277.923216pt;}
.y7f{bottom:278.405873pt;}
.ye3{bottom:284.633990pt;}
.y11{bottom:286.553933pt;}
.ye6{bottom:287.681313pt;}
.yd4{bottom:287.993905pt;}
.ye0{bottom:288.635406pt;}
.ydc{bottom:290.076351pt;}
.yde{bottom:290.232098pt;}
.ye2{bottom:290.553397pt;}
.y92{bottom:292.322294pt;}
.y7c{bottom:292.796459pt;}
.y2f{bottom:294.079095pt;}
.y27{bottom:295.677548pt;}
.yc1{bottom:295.679255pt;}
.yd3{bottom:299.358075pt;}
.y43{bottom:299.678795pt;}
.yca{bottom:300.000924pt;}
.y8e{bottom:300.482495pt;}
.y10{bottom:306.719277pt;}
.y7e{bottom:307.198741pt;}
.y90{bottom:308.487357pt;}
.yac{bottom:308.640613pt;}
.ycc{bottom:309.283449pt;}
.y10e{bottom:310.878436pt;}
.yb6{bottom:312.167561pt;}
.yb7{bottom:319.839593pt;}
.y26{bottom:321.118418pt;}
.y7b{bottom:321.601057pt;}
.y49{bottom:322.077472pt;}
.y120{bottom:324.007258pt;}
.yc0{bottom:324.483853pt;}
.y42{bottom:324.964985pt;}
.y2e{bottom:328.955909pt;}
.y93{bottom:333.601100pt;}
.y2{bottom:337.123157pt;}
.yad{bottom:346.881973pt;}
.y8d{bottom:347.043856pt;}
.y48{bottom:347.363693pt;}
.y61{bottom:347.681556pt;}
.yfc{bottom:351.846659pt;}
.y2d{bottom:354.396812pt;}
.ycd{bottom:358.727180pt;}
.y79{bottom:358.878303pt;}
.yd6{bottom:359.359362pt;}
.y104{bottom:361.605225pt;}
.ya6{bottom:365.120808pt;}
.yf6{bottom:373.921276pt;}
.y11a{bottom:374.715955pt;}
.y94{bottom:375.036023pt;}
.y47{bottom:375.836435pt;}
.y50{bottom:376.325037pt;}
.y8f{bottom:376.802197pt;}
.yfb{bottom:378.079688pt;}
.ybf{bottom:382.081390pt;}
.y1d{bottom:383.199561pt;}
.yf5{bottom:384.323328pt;}
.y103{bottom:384.323617pt;}
.yae{bottom:385.123370pt;}
.y77{bottom:387.682937pt;}
.y119{bottom:394.879409pt;}
.y13{bottom:400.956245pt;}
.y46{bottom:401.122656pt;}
.y7a{bottom:402.085218pt;}
.y4f{bottom:402.238729pt;}
.yfa{bottom:404.323352pt;}
.y105{bottom:405.763272pt;}
.yf4{bottom:406.717896pt;}
.yce{bottom:408.006943pt;}
.y25{bottom:409.444803pt;}
.yf0{bottom:409.761717pt;}
.y118{bottom:415.034678pt;}
.y76{bottom:416.475805pt;}
.y95{bottom:416.478139pt;}
.y113{bottom:420.331274pt;}
.y1c{bottom:421.118538pt;}
.yaf{bottom:423.363213pt;}
.y60{bottom:428.316269pt;}
.y3c{bottom:428.956029pt;}
.yf9{bottom:430.556381pt;}
.y8c{bottom:434.398977pt;}
.y24{bottom:434.885705pt;}
.y117{bottom:435.198132pt;}
.y34{bottom:440.320371pt;}
.y56{bottom:443.519535pt;}
.y78{bottom:445.280438pt;}
.y12{bottom:445.440689pt;}
.ya8{bottom:448.322686pt;}
.y3b{bottom:454.242219pt;}
.y116{bottom:455.353401pt;}
.yf8{bottom:456.640644pt;}
.ycf{bottom:457.442861pt;}
.y96{bottom:457.759368pt;}
.y17{bottom:459.357232pt;}
.y10d{bottom:459.682755pt;}
.yb0{bottom:461.603834pt;}
.yef{bottom:462.238135pt;}
.y5f{bottom:463.360166pt;}
.yc4{bottom:469.597517pt;}
.y115{bottom:475.516855pt;}
.y21{bottom:478.559064pt;}
.y8a{bottom:478.723102pt;}
.y73{bottom:482.557684pt;}
.yf7{bottom:482.884309pt;}
.y55{bottom:484.647596pt;}
.y16{bottom:484.798102pt;}
.y33{bottom:484.963106pt;}
.yf2{bottom:487.201221pt;}
.y38{bottom:495.677788pt;}
.y75{bottom:496.795921pt;}
.y10c{bottom:496.959983pt;}
.y5e{bottom:497.911865pt;}
.yc7{bottom:498.078577pt;}
.y97{bottom:499.200662pt;}
.yb1{bottom:499.838367pt;}
.yb{bottom:501.917014pt;}
.ya5{bottom:503.840072pt;}
.y20{bottom:503.999935pt;}
.yd0{bottom:506.886569pt;}
.yc5{bottom:509.120485pt;}
.yf1{bottom:509.595789pt;}
.y32{bottom:510.239004pt;}
.y8b{bottom:510.401322pt;}
.y70{bottom:511.198238pt;}
.y72{bottom:511.362300pt;}
.y37{bottom:520.963977pt;}
.y74{bottom:525.600537pt;}
.y54{bottom:525.926120pt;}
.ya{bottom:527.838817pt;}
.y5d{bottom:532.477640pt;}
.yb2{bottom:538.078969pt;}
.y71{bottom:540.155185pt;}
.yc6{bottom:540.482019pt;}
.y98{bottom:540.641996pt;}
.y23{bottom:543.837050pt;}
.y102{bottom:545.435488pt;}
.yb8{bottom:545.919792pt;}
.yb9{bottom:549.119601pt;}
.y9f{bottom:549.439835pt;}
.y68{bottom:552.159372pt;}
.ya4{bottom:552.639059pt;}
.y9{bottom:553.760620pt;}
.ya1{bottom:554.083296pt;}
.yd1{bottom:556.166356pt;}
.y9e{bottom:559.357435pt;}
.y3a{bottom:563.038899pt;}
.y53{bottom:567.037446pt;}
.y5c{bottom:567.043415pt;}
.y22{bottom:569.277952pt;}
.y67{bottom:571.674767pt;}
.ya3{bottom:575.198166pt;}
.ya0{bottom:576.477850pt;}
.y6e{bottom:578.237223pt;}
.y6f{bottom:578.560655pt;}
.y1f{bottom:579.363556pt;}
.y8{bottom:580.965341pt;}
.ye7{bottom:583.045603pt;}
.y39{bottom:588.325088pt;}
.ya2{bottom:597.601869pt;}
.yd{bottom:598.552925pt;}
.y36{bottom:599.039754pt;}
.y107{bottom:603.525599pt;}
.y1e{bottom:604.804443pt;}
.yd2{bottom:605.602262pt;}
.y52{bottom:608.165495pt;}
.y66{bottom:610.398775pt;}
.y2a{bottom:610.558808pt;}
.y6d{bottom:613.112354pt;}
.yc9{bottom:616.796759pt;}
.y35{bottom:624.315653pt;}
.y3f{bottom:625.439709pt;}
.y89{bottom:634.234325pt;}
.y111{bottom:635.050815pt;}
.y29{bottom:635.844998pt;}
.y100{bottom:638.718649pt;}
.yf3{bottom:638.881003pt;}
.yc{bottom:644.640625pt;}
.y112{bottom:645.923380pt;}
.y106{bottom:647.513187pt;}
.y51{bottom:649.276834pt;}
.y3e{bottom:650.715592pt;}
.y5b{bottom:652.311655pt;}
.yfd{bottom:654.724928pt;}
.y28{bottom:661.275577pt;}
.y69{bottom:662.883006pt;}
.yc8{bottom:662.884445pt;}
.ycb{bottom:670.087147pt;}
.y6c{bottom:674.884499pt;}
.y3d{bottom:676.001798pt;}
.y31{bottom:678.236077pt;}
.y88{bottom:680.322025pt;}
.y4e{bottom:682.243904pt;}
.y1{bottom:683.684600pt;}
.h35{height:5.435188pt;}
.h43{height:15.360435pt;}
.h19{height:18.878873pt;}
.h3f{height:22.723447pt;}
.h3c{height:27.928243pt;}
.h32{height:28.534703pt;}
.h49{height:29.315731pt;}
.h2f{height:34.676012pt;}
.h26{height:36.631794pt;}
.h33{height:38.598231pt;}
.h4b{height:41.484268pt;}
.h30{height:42.420434pt;}
.h20{height:42.749695pt;}
.h2b{height:42.865404pt;}
.h31{height:42.919967pt;}
.h17{height:43.314445pt;}
.h3b{height:44.650777pt;}
.h25{height:45.379276pt;}
.h37{height:46.409791pt;}
.h4a{height:47.742064pt;}
.h28{height:48.112978pt;}
.h27{height:48.118469pt;}
.h42{height:48.308831pt;}
.hb{height:48.867783pt;}
.h52{height:49.780895pt;}
.h1d{height:49.875455pt;}
.h47{height:51.044983pt;}
.h1f{height:53.652805pt;}
.h18{height:53.864991pt;}
.h3e{height:55.689004pt;}
.h40{height:56.935220pt;}
.h2e{height:57.579131pt;}
.h36{height:57.642783pt;}
.h51{height:58.078655pt;}
.h34{height:58.399269pt;}
.h39{height:58.987384pt;}
.h2d{height:60.144912pt;}
.h2a{height:64.715730pt;}
.h24{height:64.929781pt;}
.h2{height:73.012357pt;}
.h4d{height:73.565163pt;}
.h44{height:73.567221pt;}
.h4c{height:73.772974pt;}
.h3d{height:75.284350pt;}
.ha{height:75.522214pt;}
.h6{height:81.140416pt;}
.h5{height:82.968536pt;}
.h23{height:83.202910pt;}
.h38{height:83.296660pt;}
.he{height:84.026085pt;}
.h7{height:84.281013pt;}
.h15{height:85.935976pt;}
.h10{height:86.501080pt;}
.h13{height:86.572172pt;}
.h22{height:88.200374pt;}
.h14{height:88.467228pt;}
.h12{height:89.122163pt;}
.h2c{height:89.587212pt;}
.hf{height:89.778440pt;}
.h46{height:91.362929pt;}
.h41{height:92.943323pt;}
.h11{height:99.619173pt;}
.h4{height:99.844174pt;}
.h1b{height:99.956674pt;}
.hc{height:108.286113pt;}
.hd{height:109.314373pt;}
.h4f{height:113.596803pt;}
.h1c{height:118.813397pt;}
.h16{height:118.836659pt;}
.h3a{height:129.943335pt;}
.h53{height:131.643818pt;}
.h21{height:133.125565pt;}
.h8{height:133.275566pt;}
.h9{height:134.978322pt;}
.h48{height:138.272774pt;}
.h45{height:141.605004pt;}
.h29{height:144.714629pt;}
.h1e{height:154.376658pt;}
.h4e{height:158.263881pt;}
.h50{height:165.937072pt;}
.h1a{height:173.257781pt;}
.h3{height:199.124713pt;}
.h0{height:793.760013pt;}
.h1{height:794.000000pt;}
.w3{width:25.120624pt;}
.w2{width:26.400155pt;}
.w5{width:47.039265pt;}
.w4{width:62.722473pt;}
.w6{width:473.915215pt;}
.w0{width:1122.560053pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x34{left:6.884834pt;}
.x1b{left:8.001597pt;}
.x2e{left:10.884421pt;}
.x7f{left:17.925077pt;}
.x76{left:25.756557pt;}
.x77{left:27.997262pt;}
.xb{left:30.072705pt;}
.x73{left:35.516646pt;}
.x7{left:37.443908pt;}
.x74{left:39.361108pt;}
.x69{left:47.679223pt;}
.x55{left:48.956460pt;}
.xc{left:53.594620pt;}
.x49{left:54.714702pt;}
.x6a{left:58.083066pt;}
.xa3{left:71.041566pt;}
.xa9{left:75.842749pt;}
.x2{left:76.809264pt;}
.x7d{left:86.561858pt;}
.x44{left:89.120869pt;}
.xae{left:90.242474pt;}
.x51{left:96.960687pt;}
.xaf{left:102.719470pt;}
.x3d{left:104.161381pt;}
.x29{left:108.476980pt;}
.x8{left:112.964574pt;}
.x65{left:116.804690pt;}
.xa4{left:128.155923pt;}
.x5f{left:132.317376pt;}
.x5a{left:133.757841pt;}
.x5d{left:138.241201pt;}
.x32{left:139.516347pt;}
.x80{left:142.082042pt;}
.x5c{left:144.639600pt;}
.x37{left:148.631878pt;}
.x5b{left:151.198118pt;}
.x54{left:163.360400pt;}
.x60{left:176.641892pt;}
.x66{left:184.318244pt;}
.x5e{left:208.321404pt;}
.x6b{left:215.364676pt;}
.x56{left:216.636496pt;}
.x9b{left:220.801918pt;}
.x81{left:222.243840pt;}
.xa1{left:227.199746pt;}
.x9a{left:228.635232pt;}
.x7e{left:229.923652pt;}
.x1c{left:254.243875pt;}
.xd{left:255.357625pt;}
.x1d{left:259.039188pt;}
.xe{left:260.163244pt;}
.x75{left:273.762168pt;}
.x6d{left:276.002128pt;}
.x6c{left:292.323605pt;}
.x50{left:301.124219pt;}
.x67{left:302.244196pt;}
.x4f{left:303.514848pt;}
.x82{left:304.801330pt;}
.xa0{left:307.838473pt;}
.x43{left:311.835146pt;}
.x47{left:319.522624pt;}
.x3c{left:321.441999pt;}
.x42{left:324.315576pt;}
.x6f{left:341.124649pt;}
.x48{left:348.795999pt;}
.x7c{left:351.676974pt;}
.x6e{left:355.203581pt;}
.x57{left:370.560752pt;}
.x83{left:391.524641pt;}
.x84{left:396.164897pt;}
.x2b{left:397.762657pt;}
.x71{left:401.762079pt;}
.x70{left:418.083579pt;}
.x96{left:420.318723pt;}
.x9d{left:421.922798pt;}
.xb2{left:442.568683pt;}
.x31{left:477.115898pt;}
.x72{left:480.965412pt;}
.x86{left:482.244704pt;}
.x87{left:485.605855pt;}
.x1e{left:487.037804pt;}
.xf{left:491.039051pt;}
.x85{left:495.048160pt;}
.x68{left:498.243846pt;}
.x1f{left:505.115580pt;}
.x95{left:506.075184pt;}
.x20{left:509.921200pt;}
.x11{left:511.519622pt;}
.x2a{left:518.078375pt;}
.x40{left:522.233055pt;}
.x4c{left:524.318986pt;}
.x3{left:531.044460pt;}
.x3f{left:540.162683pt;}
.x36{left:545.278358pt;}
.x53{left:547.674386pt;}
.xa8{left:550.717400pt;}
.x4d{left:555.033741pt;}
.xb0{left:561.443882pt;}
.x89{left:573.126590pt;}
.x99{left:577.436667pt;}
.x88{left:578.566656pt;}
.x41{left:588.162550pt;}
.x3a{left:594.396276pt;}
.x79{left:596.799241pt;}
.x4e{left:600.959408pt;}
.x4{left:610.240614pt;}
.x61{left:617.604491pt;}
.xab{left:631.997922pt;}
.x1a{left:637.754693pt;}
.x7a{left:638.881168pt;}
.xad{left:640.952069pt;}
.x3b{left:642.729288pt;}
.x2f{left:649.445250pt;}
.x78{left:652.955363pt;}
.x8b{left:664.005346pt;}
.x7b{left:665.283479pt;}
.x8c{left:667.366526pt;}
.x8a{left:669.286690pt;}
.x94{left:674.072155pt;}
.x58{left:686.559705pt;}
.x93{left:695.353042pt;}
.xac{left:701.916137pt;}
.x12{left:732.637251pt;}
.x9e{left:736.004344pt;}
.x21{left:737.116735pt;}
.x10{left:738.392891pt;}
.x5{left:739.839400pt;}
.x22{left:741.918483pt;}
.x23{left:751.676692pt;}
.x8e{left:756.010656pt;}
.x63{left:759.038768pt;}
.x62{left:760.318424pt;}
.x64{left:763.683344pt;}
.x28{left:764.638166pt;}
.x6{left:766.074699pt;}
.x8d{left:767.528894pt;}
.x19{left:770.071541pt;}
.x13{left:776.800459pt;}
.x97{left:785.589659pt;}
.x59{left:788.797356pt;}
.x9c{left:794.087141pt;}
.xa{left:798.248037pt;}
.xa5{left:815.678521pt;}
.x52{left:828.315736pt;}
.x9f{left:835.043156pt;}
.x45{left:836.482219pt;}
.x90{left:846.889471pt;}
.x8f{left:851.047361pt;}
.x4b{left:853.122816pt;}
.x9{left:855.521350pt;}
.x3e{left:856.799579pt;}
.x46{left:857.766387pt;}
.x4a{left:861.758076pt;}
.x30{left:864.319890pt;}
.x98{left:873.111469pt;}
.x38{left:887.206945pt;}
.x24{left:890.083027pt;}
.x92{left:892.330399pt;}
.x14{left:895.039488pt;}
.x91{left:896.488289pt;}
.x33{left:899.682741pt;}
.x39{left:930.238344pt;}
.xa2{left:938.874616pt;}
.xb1{left:945.112375pt;}
.xa7{left:953.595038pt;}
.xaa{left:960.323088pt;}
.x26{left:963.681933pt;}
.x27{left:965.112802pt;}
.x25{left:967.516886pt;}
.x2d{left:968.960596pt;}
.xa6{left:973.278947pt;}
.x17{left:982.714891pt;}
.x18{left:984.313313pt;}
.x16{left:996.475607pt;}
.x2c{left:1022.082771pt;}
.x15{left:1025.595459pt;}
.x35{left:1049.753532pt;}
.x1{left:1077.757260pt;}
}




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