
    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_55c4cde43281fb61d31d2d16.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_ec1364c6f9c50660f2fe1325.woff')format("woff");}.ff2{font-family:ff2;line-height:0.952148;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_0ce03e2ceecb0211349d8e0c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.941406;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_67b9d99852e03591bfd0fcbc.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_137ae80ecbdc0a4a97bf93aa.woff')format("woff");}.ff5{font-family:ff5;line-height:1.201172;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_b44b91de6fd747dd15b17e20.woff')format("woff");}.ff6{font-family:ff6;line-height:0.966797;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_5112ca09d5ead26c4e012288.woff')format("woff");}.ff7{font-family:ff7;line-height:0.682617;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_e7cc7bcd83a0d8acefae75a9.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_bb7f1732e054f725c11e9c47.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_59c517336c79b347652981a6.woff')format("woff");}.ffa{font-family:ffa;line-height:0.758789;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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:43.200000px;}
.v1{vertical-align:50.400000px;}
.ls62{letter-spacing:-14.280000px;}
.ls4f{letter-spacing:-0.906000px;}
.ls50{letter-spacing:-0.846000px;}
.ls3d{letter-spacing:-0.720000px;}
.ls4b{letter-spacing:-0.549600px;}
.ls63{letter-spacing:-0.538800px;}
.ls6e{letter-spacing:-0.480000px;}
.ls3b{letter-spacing:-0.472200px;}
.ls3a{letter-spacing:-0.432000px;}
.ls26{letter-spacing:-0.325200px;}
.ls6d{letter-spacing:-0.319800px;}
.ls6f{letter-spacing:-0.288000px;}
.ls4c{letter-spacing:-0.274800px;}
.ls30{letter-spacing:-0.265200px;}
.ls12{letter-spacing:-0.250800px;}
.ls3f{letter-spacing:-0.247800px;}
.ls2b{letter-spacing:-0.235800px;}
.ls25{letter-spacing:-0.234600px;}
.ls7c{letter-spacing:-0.232200px;}
.ls3c{letter-spacing:-0.223800px;}
.ls1c{letter-spacing:-0.187800px;}
.ls74{letter-spacing:-0.175800px;}
.ls16{letter-spacing:-0.162600px;}
.ls4a{letter-spacing:-0.157200px;}
.ls78{letter-spacing:-0.151800px;}
.ls45{letter-spacing:-0.144000px;}
.ls2a{letter-spacing:-0.130800px;}
.ls28{letter-spacing:-0.125400px;}
.ls7d{letter-spacing:-0.088200px;}
.ls0{letter-spacing:0.000000px;}
.ls54{letter-spacing:0.018720px;}
.ls69{letter-spacing:0.025200px;}
.ls73{letter-spacing:0.036000px;}
.ls2f{letter-spacing:0.037440px;}
.ls68{letter-spacing:0.043920px;}
.ls1{letter-spacing:0.072000px;}
.ls64{letter-spacing:0.090600px;}
.ls61{letter-spacing:0.090720px;}
.ls65{letter-spacing:0.101400px;}
.ls7e{letter-spacing:0.106800px;}
.ls31{letter-spacing:0.122400px;}
.ls10{letter-spacing:0.122688px;}
.ls29{letter-spacing:0.130800px;}
.ls5c{letter-spacing:0.134400px;}
.ls14{letter-spacing:0.162600px;}
.lsa{letter-spacing:0.162720px;}
.ls17{letter-spacing:0.165600px;}
.ls1d{letter-spacing:0.170400px;}
.ls5a{letter-spacing:0.181200px;}
.ls2e{letter-spacing:0.190200px;}
.ls15{letter-spacing:0.197400px;}
.ls7b{letter-spacing:0.240000px;}
.ls6{letter-spacing:0.245376px;}
.ls32{letter-spacing:0.245400px;}
.ls44{letter-spacing:0.247800px;}
.ls1f{letter-spacing:0.250560px;}
.ls1b{letter-spacing:0.250800px;}
.ls66{letter-spacing:0.269400px;}
.ls11{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.295800px;}
.ls1a{letter-spacing:0.297600px;}
.ls4e{letter-spacing:0.314400px;}
.ls9{letter-spacing:0.325200px;}
.ls2d{letter-spacing:0.325440px;}
.ls6b{letter-spacing:0.341400px;}
.lsb{letter-spacing:0.360000px;}
.ls27{letter-spacing:0.378600px;}
.ls24{letter-spacing:0.394800px;}
.ls67{letter-spacing:0.413400px;}
.ls40{letter-spacing:0.432000px;}
.ls55{letter-spacing:0.445200px;}
.lsd{letter-spacing:0.469200px;}
.ls7{letter-spacing:0.504000px;}
.ls35{letter-spacing:0.505440px;}
.ls5{letter-spacing:0.842688px;}
.ls33{letter-spacing:0.882720px;}
.ls4d{letter-spacing:0.972000px;}
.ls42{letter-spacing:1.008000px;}
.lsf{letter-spacing:1.045440px;}
.ls59{letter-spacing:1.062000px;}
.ls53{letter-spacing:1.116000px;}
.ls6c{letter-spacing:1.152000px;}
.ls23{letter-spacing:1.205280px;}
.ls43{letter-spacing:1.602720px;}
.ls49{letter-spacing:1.925280px;}
.ls37{letter-spacing:2.322720px;}
.ls22{letter-spacing:3.365280px;}
.ls39{letter-spacing:4.482720px;}
.ls38{letter-spacing:5.202720px;}
.ls21{letter-spacing:6.245280px;}
.ls3e{letter-spacing:12.362688px;}
.ls79{letter-spacing:15.367968px;}
.ls7a{letter-spacing:16.087968px;}
.ls5d{letter-spacing:20.250720px;}
.ls75{letter-spacing:21.042720px;}
.ls5f{letter-spacing:21.690720px;}
.ls20{letter-spacing:26.405280px;}
.ls71{letter-spacing:27.607968px;}
.ls70{letter-spacing:28.327968px;}
.ls60{letter-spacing:28.890720px;}
.ls5e{letter-spacing:28.944000px;}
.ls36{letter-spacing:29.082720px;}
.ls52{letter-spacing:37.165248px;}
.ls6a{letter-spacing:38.322720px;}
.ls57{letter-spacing:41.202720px;}
.ls56{letter-spacing:41.322720px;}
.ls47{letter-spacing:41.525280px;}
.ls48{letter-spacing:41.645280px;}
.ls76{letter-spacing:41.982048px;}
.ls77{letter-spacing:42.048000px;}
.ls46{letter-spacing:42.245280px;}
.ls1e{letter-spacing:45.265248px;}
.ls2c{letter-spacing:49.233600px;}
.ls2{letter-spacing:49.284000px;}
.ls8{letter-spacing:50.562720px;}
.ls18{letter-spacing:53.265600px;}
.ls19{letter-spacing:53.316000px;}
.ls51{letter-spacing:57.365280px;}
.ls72{letter-spacing:57.549600px;}
.ls41{letter-spacing:57.600000px;}
.ls58{letter-spacing:59.882688px;}
.ls4{letter-spacing:59.922720px;}
.ls5b{letter-spacing:61.884000px;}
.lse{letter-spacing:90.162720px;}
.ls3{letter-spacing:93.042720px;}
.ls34{letter-spacing:93.780000px;}
.lsc{letter-spacing:180.882720px;}
.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:-162.144000px;}
.ws37{word-spacing:-47.699280px;}
.ws4{word-spacing:-47.141280px;}
.ws2a{word-spacing:-47.109312px;}
.wsb{word-spacing:-47.106480px;}
.ws9{word-spacing:-46.997280px;}
.ws44{word-spacing:-46.978680px;}
.wsd{word-spacing:-46.965312px;}
.ws5{word-spacing:-46.962480px;}
.ws2{word-spacing:-46.933080px;}
.ws29{word-spacing:-46.925112px;}
.ws27{word-spacing:-46.922712px;}
.wsc{word-spacing:-46.842912px;}
.ws8{word-spacing:-46.834680px;}
.ws6{word-spacing:-46.799880px;}
.ws21{word-spacing:-46.799712px;}
.ws3{word-spacing:-46.677312px;}
.ws7{word-spacing:-46.637280px;}
.ws4d{word-spacing:-46.485480px;}
.wsa{word-spacing:-46.474680px;}
.ws28{word-spacing:-46.429512px;}
.ws1{word-spacing:-46.386480px;}
.ws46{word-spacing:-45.076032px;}
.ws33{word-spacing:-44.550720px;}
.ws2f{word-spacing:-44.406720px;}
.ws35{word-spacing:-43.919952px;}
.ws1b{word-spacing:-43.829520px;}
.ws17{word-spacing:-43.813320px;}
.ws30{word-spacing:-43.789152px;}
.ws12{word-spacing:-43.732320px;}
.wsf{word-spacing:-43.685520px;}
.ws14{word-spacing:-43.645152px;}
.ws19{word-spacing:-43.605552px;}
.wse{word-spacing:-43.474752px;}
.ws34{word-spacing:-43.453440px;}
.ws11{word-spacing:-43.434720px;}
.ws1a{word-spacing:-43.343952px;}
.ws2c{word-spacing:-43.317552px;}
.ws18{word-spacing:-43.309320px;}
.ws10{word-spacing:-43.246920px;}
.ws1c{word-spacing:-43.238952px;}
.ws15{word-spacing:-43.200120px;}
.ws2e{word-spacing:-43.199952px;}
.ws16{word-spacing:-43.109520px;}
.ws2d{word-spacing:-42.925152px;}
.ws32{word-spacing:-42.588720px;}
.ws31{word-spacing:-42.528720px;}
.ws4a{word-spacing:-40.320000px;}
.ws4f{word-spacing:-40.312032px;}
.ws25{word-spacing:-40.072032px;}
.ws24{word-spacing:-40.032000px;}
.ws50{word-spacing:-39.983832px;}
.ws4c{word-spacing:-39.896232px;}
.ws2b{word-spacing:-39.888000px;}
.ws26{word-spacing:-39.848232px;}
.ws4e{word-spacing:-39.839832px;}
.ws47{word-spacing:-39.752232px;}
.ws4b{word-spacing:-39.744000px;}
.ws49{word-spacing:-39.592032px;}
.ws3f{word-spacing:-37.042680px;}
.ws3e{word-spacing:-36.898680px;}
.ws39{word-spacing:-36.810480px;}
.ws3c{word-spacing:-36.770712px;}
.ws3d{word-spacing:-36.763680px;}
.ws3b{word-spacing:-36.719880px;}
.ws40{word-spacing:-36.673200px;}
.ws42{word-spacing:-36.654480px;}
.ws41{word-spacing:-36.629280px;}
.ws3a{word-spacing:-36.090480px;}
.ws51{word-spacing:-33.426720px;}
.ws1d{word-spacing:-31.415160px;}
.ws1e{word-spacing:-31.262400px;}
.ws1f{word-spacing:-30.959760px;}
.ws45{word-spacing:-29.520000px;}
.ws48{word-spacing:-26.981280px;}
.ws38{word-spacing:-22.349280px;}
.ws13{word-spacing:-18.387360px;}
.ws22{word-spacing:-5.364720px;}
.ws23{word-spacing:-5.285448px;}
.ws0{word-spacing:0.000000px;}
.ws20{word-spacing:2.556288px;}
.ws43{word-spacing:2.646720px;}
._1d{margin-left:-18.789120px;}
._1c{margin-left:-15.238800px;}
._20{margin-left:-13.680000px;}
._26{margin-left:-11.272992px;}
._38{margin-left:-9.722640px;}
._10{margin-left:-8.639760px;}
._2c{margin-left:-7.240560px;}
._11{margin-left:-6.183360px;}
._3b{margin-left:-5.040000px;}
._12{margin-left:-3.355920px;}
._0{margin-left:-1.512000px;}
._22{width:1.001280px;}
._1{width:2.004000px;}
._19{width:3.722160px;}
._16{width:5.747280px;}
._23{width:6.875040px;}
._3e{width:7.920000px;}
._9{width:9.200640px;}
._8{width:10.369920px;}
._25{width:12.614784px;}
._32{width:14.004048px;}
._3d{width:15.119952px;}
._3c{width:16.190592px;}
._31{width:17.591760px;}
._2d{width:18.694368px;}
._2e{width:20.097312px;}
._3a{width:21.929040px;}
._39{width:23.746752px;}
._15{width:25.652400px;}
._27{width:27.000480px;}
._21{width:28.974720px;}
._41{width:30.660000px;}
._1f{width:32.069280px;}
._1e{width:33.074784px;}
._e{width:37.051680px;}
._f{width:38.057760px;}
._18{width:39.096240px;}
._17{width:40.116480px;}
._2b{width:41.367360px;}
._29{width:44.354160px;}
._14{width:45.612480px;}
._6{width:50.489520px;}
._1a{width:52.118400px;}
._1b{width:53.482320px;}
._28{width:55.279776px;}
._d{width:56.332224px;}
._c{width:57.508992px;}
._4{width:59.558640px;}
._5{width:60.883920px;}
._2a{width:67.260960px;}
._3f{width:72.029760px;}
._34{width:73.557120px;}
._33{width:74.570400px;}
._40{width:79.608096px;}
._37{width:81.322368px;}
._36{width:82.736064px;}
._b{width:89.507280px;}
._a{width:90.932400px;}
._2{width:92.262240px;}
._3{width:93.387840px;}
._24{width:97.146720px;}
._35{width:98.947440px;}
._30{width:116.236656px;}
._2f{width:117.408144px;}
._13{width:132.869760px;}
._7{width:180.102240px;}
.fc8{color:rgb(112,44,141);}
.fc7{color:rgb(0,136,156);}
.fc5{color:rgb(255,0,0);}
.fc6{color:rgb(0,112,192);}
.fc3{color:rgb(108,61,145);}
.fc9{color:rgb(112,48,160);}
.fc2{color:rgb(255,255,0);}
.fc4{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:81.360000px;}
.fs11{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.fsa{font-size:112.320000px;}
.fs12{font-size:120.240000px;}
.fsf{font-size:131.760000px;}
.fs10{font-size:131.904000px;}
.fsb{font-size:144.000000px;}
.fsc{font-size:144.144000px;}
.fs6{font-size:156.240000px;}
.fs7{font-size:156.384000px;}
.fs9{font-size:162.000000px;}
.fsd{font-size:162.144000px;}
.fs4{font-size:167.760000px;}
.fs5{font-size:167.904000px;}
.fs3{font-size:180.000000px;}
.fse{font-size:180.144000px;}
.fs0{font-size:216.000000px;}
.fs1{font-size:216.144000px;}
.y0{bottom:0.000000px;}
.y3{bottom:56.736000px;}
.yec{bottom:79.740000px;}
.y6e{bottom:80.568000px;}
.yf{bottom:81.108000px;}
.y7a{bottom:81.288000px;}
.yb9{bottom:92.988000px;}
.ya8{bottom:95.868000px;}
.y52{bottom:97.164000px;}
.y31{bottom:98.316000px;}
.yed{bottom:103.140000px;}
.yd1{bottom:104.832000px;}
.y96{bottom:114.408000px;}
.yc0{bottom:118.656000px;}
.ye{bottom:121.428000px;}
.y18{bottom:123.408000px;}
.y64{bottom:124.560000px;}
.y6d{bottom:125.928000px;}
.ydf{bottom:126.648000px;}
.y47{bottom:127.620000px;}
.y29{bottom:131.976000px;}
.y1b{bottom:132.300000px;}
.yeb{bottom:135.000000px;}
.y40{bottom:135.936000px;}
.yb0{bottom:141.300000px;}
.ya0{bottom:142.668000px;}
.y5a{bottom:153.435000px;}
.y51{bottom:157.470000px;}
.ya7{bottom:160.665000px;}
.y88{bottom:163.005000px;}
.y28{bottom:164.730000px;}
.y79{bottom:165.525000px;}
.yb8{bottom:168.405000px;}
.yde{bottom:168.765000px;}
.y63{bottom:169.920000px;}
.y46{bottom:172.980000px;}
.yea{bottom:175.320000px;}
.y17{bottom:184.245000px;}
.y37{bottom:191.130000px;}
.yd0{bottom:192.675000px;}
.y9f{bottom:194.145000px;}
.ybf{bottom:194.295000px;}
.y95{bottom:194.865000px;}
.y3f{bottom:196.230000px;}
.y27{bottom:197.490000px;}
.ycb{bottom:200.265000px;}
.yaf{bottom:206.130000px;}
.y78{bottom:207.690000px;}
.y87{bottom:208.365000px;}
.ydd{bottom:210.885000px;}
.y59{bottom:213.945000px;}
.y62{bottom:215.280000px;}
.y8e{bottom:215.715000px;}
.y50{bottom:216.540000px;}
.yc6{bottom:218.160000px;}
.y30{bottom:219.135000px;}
.ye9{bottom:230.610000px;}
.yd{bottom:231.990000px;}
.y45{bottom:233.280000px;}
.ya6{bottom:235.725000px;}
.y3e{bottom:241.635000px;}
.yb7{bottom:243.825000px;}
.y9e{bottom:245.625000px;}
.y6c{bottom:246.570000px;}
.ydc{bottom:252.825000px;}
.y86{bottom:253.725000px;}
.y16{bottom:260.250000px;}
.y61{bottom:260.670000px;}
.y4f{bottom:262.980000px;}
.yc5{bottom:263.520000px;}
.ycf{bottom:265.065000px;}
.ye8{bottom:270.930000px;}
.y1a{bottom:271.230000px;}
.yc{bottom:272.310000px;}
.y58{bottom:274.245000px;}
.y94{bottom:275.370000px;}
.y2f{bottom:279.465000px;}
.y36{bottom:281.850000px;}
.ybe{bottom:284.835000px;}
.yae{bottom:285.870000px;}
.yca{bottom:290.850000px;}
.y6b{bottom:291.930000px;}
.y26{bottom:293.115000px;}
.y85{bottom:299.130000px;}
.yd6{bottom:301.170000px;}
.y3d{bottom:302.115000px;}
.y8d{bottom:306.285000px;}
.y4e{bottom:309.240000px;}
.ya5{bottom:311.370000px;}
.y9d{bottom:312.090000px;}
.yb{bottom:312.630000px;}
.y2{bottom:317.670000px;}
.yb6{bottom:319.470000px;}
.y60{bottom:320.970000px;}
.y15{bottom:321.090000px;}
.y77{bottom:321.810000px;}
.y25{bottom:325.875000px;}
.ye7{bottom:326.370000px;}
.y2e{bottom:339.945000px;}
.y6a{bottom:351.000000px;}
.ydb{bottom:352.050000px;}
.ya{bottom:352.950000px;}
.y44{bottom:354.090000px;}
.y4d{bottom:355.710000px;}
.y93{bottom:356.010000px;}
.y24{bottom:358.635000px;}
.ybd{bottom:360.465000px;}
.y9c{bottom:363.570000px;}
.y76{bottom:363.960000px;}
.yad{bottom:365.835000px;}
.ye6{bottom:366.690000px;}
.y35{bottom:372.420000px;}
.y7e{bottom:376.200000px;}
.yc9{bottom:381.390000px;}
.y1{bottom:382.470000px;}
.yc4{bottom:384.150000px;}
.yda{bottom:386.610000px;}
.y69{bottom:389.880000px;}
.yb5{bottom:394.890000px;}
.y57{bottom:395.070000px;}
.y8c{bottom:396.825000px;}
.y14{bottom:396.900000px;}
.y19{bottom:398.160000px;}
.ya4{bottom:399.210000px;}
.y2d{bottom:400.245000px;}
.y4c{bottom:402.150000px;}
.y75{bottom:406.080000px;}
.y84{bottom:419.910000px;}
.yd5{bottom:421.815000px;}
.ye5{bottom:421.995000px;}
.y9b{bottom:422.640000px;}
.y3c{bottom:422.745000px;}
.yee{bottom:425.880000px;}
.yc3{bottom:429.510000px;}
.yce{bottom:430.710000px;}
.y68{bottom:436.320000px;}
.y92{bottom:436.500000px;}
.y5f{bottom:441.795000px;}
.yac{bottom:445.575000px;}
.y74{bottom:448.200000px;}
.ybc{bottom:448.485000px;}
.y4b{bottom:449.850000px;}
.y23{bottom:454.065000px;}
.y56{bottom:455.370000px;}
.yb4{bottom:455.400000px;}
.y13{bottom:457.740000px;}
.y7d{bottom:460.440000px;}
.y2c{bottom:460.590000px;}
.y34{bottom:462.960000px;}
.y9{bottom:463.680000px;}
.y83{bottom:465.300000px;}
.y3b{bottom:468.105000px;}
.yc8{bottom:472.140000px;}
.y9a{bottom:474.120000px;}
.ya3{bottom:474.300000px;}
.y43{bottom:474.735000px;}
.yc2{bottom:474.915000px;}
.ye4{bottom:477.255000px;}
.y67{bottom:484.020000px;}
.yd9{bottom:485.820000px;}
.y22{bottom:486.825000px;}
.y5e{bottom:487.155000px;}
.y8b{bottom:487.590000px;}
.y73{bottom:490.350000px;}
.y91{bottom:502.020000px;}
.y8{bottom:504.000000px;}
.ycd{bottom:506.310000px;}
.y4a{bottom:510.195000px;}
.yab{bottom:510.405000px;}
.y82{bottom:510.660000px;}
.y55{bottom:515.700000px;}
.yb3{bottom:515.880000px;}
.y12{bottom:518.610000px;}
.y21{bottom:519.585000px;}
.y42{bottom:520.095000px;}
.ybb{bottom:520.710000px;}
.y2b{bottom:521.070000px;}
.y99{bottom:525.600000px;}
.y3a{bottom:528.630000px;}
.y72{bottom:532.470000px;}
.y5d{bottom:532.515000px;}
.ye3{bottom:532.695000px;}
.yd4{bottom:542.625000px;}
.y7{bottom:544.350000px;}
.y7c{bottom:544.710000px;}
.ya2{bottom:549.900000px;}
.y20{bottom:552.345000px;}
.y33{bottom:553.710000px;}
.y81{bottom:556.020000px;}
.yc7{bottom:562.710000px;}
.y90{bottom:567.540000px;}
.y49{bottom:570.675000px;}
.ye2{bottom:573.045000px;}
.y39{bottom:573.990000px;}
.y71{bottom:574.590000px;}
.yaa{bottom:575.205000px;}
.y54{bottom:576.180000px;}
.yb2{bottom:576.390000px;}
.y5c{bottom:577.905000px;}
.y8a{bottom:578.130000px;}
.y2a{bottom:581.370000px;}
.y6{bottom:584.670000px;}
.yd8{bottom:584.820000px;}
.y1f{bottom:585.150000px;}
.yd3{bottom:587.985000px;}
.y98{bottom:592.050000px;}
.y11{bottom:594.390000px;}
.yc1{bottom:595.695000px;}
.yba{bottom:595.770000px;}
.ycc{bottom:596.880000px;}
.y66{bottom:604.830000px;}
.y70{bottom:616.710000px;}
.y1e{bottom:617.910000px;}
.yd7{bottom:619.410000px;}
.y5b{bottom:623.265000px;}
.y5{bottom:624.990000px;}
.ya1{bottom:625.530000px;}
.ye1{bottom:628.305000px;}
.y7b{bottom:628.950000px;}
.y48{bottom:630.975000px;}
.y8f{bottom:633.090000px;}
.y38{bottom:634.290000px;}
.y53{bottom:636.480000px;}
.yb1{bottom:636.870000px;}
.y41{bottom:640.905000px;}
.y97{bottom:643.530000px;}
.y10{bottom:655.230000px;}
.y6f{bottom:658.875000px;}
.y65{bottom:665.175000px;}
.ya9{bottom:676.545000px;}
.y80{bottom:683.130000px;}
.y1d{bottom:695.265000px;}
.y89{bottom:716.505000px;}
.y32{bottom:720.285000px;}
.yd2{bottom:723.090000px;}
.y7f{bottom:726.915000px;}
.y4{bottom:735.225000px;}
.ye0{bottom:737.460000px;}
.y1c{bottom:739.005000px;}
.h3{height:80.683594px;}
.h9{height:83.306602px;}
.hf{height:114.309984px;}
.h12{height:121.710938px;}
.h13{height:121.832648px;}
.h14{height:125.406562px;}
.h10{height:137.421562px;}
.h11{height:137.571750px;}
.hb{height:150.187500px;}
.hc{height:150.337688px;}
.h7{height:162.953438px;}
.h8{height:163.103625px;}
.ha{height:168.960938px;}
.hd{height:169.111125px;}
.h5{height:174.968437px;}
.h6{height:175.118625px;}
.h4{height:187.734375px;}
.he{height:187.884563px;}
.h1{height:225.281250px;}
.h2{height:225.431438px;}
.h0{height:810.000000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x2{left:43.487984px;}
.x1{left:44.927984px;}
.x3{left:51.263984px;}
.xb{left:63.719984px;}
.x4{left:78.263984px;}
.xc{left:90.719984px;}
.x8{left:91.763984px;}
.x9{left:105.299984px;}
.xa{left:132.299984px;}
.x7{left:521.744984px;}
.x6{left:596.339984px;}
.x5{left:980.924984px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:38.400000pt;}
.v1{vertical-align:44.800000pt;}
.ls62{letter-spacing:-12.693333pt;}
.ls4f{letter-spacing:-0.805333pt;}
.ls50{letter-spacing:-0.752000pt;}
.ls3d{letter-spacing:-0.640000pt;}
.ls4b{letter-spacing:-0.488533pt;}
.ls63{letter-spacing:-0.478933pt;}
.ls6e{letter-spacing:-0.426667pt;}
.ls3b{letter-spacing:-0.419733pt;}
.ls3a{letter-spacing:-0.384000pt;}
.ls26{letter-spacing:-0.289067pt;}
.ls6d{letter-spacing:-0.284267pt;}
.ls6f{letter-spacing:-0.256000pt;}
.ls4c{letter-spacing:-0.244267pt;}
.ls30{letter-spacing:-0.235733pt;}
.ls12{letter-spacing:-0.222933pt;}
.ls3f{letter-spacing:-0.220267pt;}
.ls2b{letter-spacing:-0.209600pt;}
.ls25{letter-spacing:-0.208533pt;}
.ls7c{letter-spacing:-0.206400pt;}
.ls3c{letter-spacing:-0.198933pt;}
.ls1c{letter-spacing:-0.166933pt;}
.ls74{letter-spacing:-0.156267pt;}
.ls16{letter-spacing:-0.144533pt;}
.ls4a{letter-spacing:-0.139733pt;}
.ls78{letter-spacing:-0.134933pt;}
.ls45{letter-spacing:-0.128000pt;}
.ls2a{letter-spacing:-0.116267pt;}
.ls28{letter-spacing:-0.111467pt;}
.ls7d{letter-spacing:-0.078400pt;}
.ls0{letter-spacing:0.000000pt;}
.ls54{letter-spacing:0.016640pt;}
.ls69{letter-spacing:0.022400pt;}
.ls73{letter-spacing:0.032000pt;}
.ls2f{letter-spacing:0.033280pt;}
.ls68{letter-spacing:0.039040pt;}
.ls1{letter-spacing:0.064000pt;}
.ls64{letter-spacing:0.080533pt;}
.ls61{letter-spacing:0.080640pt;}
.ls65{letter-spacing:0.090133pt;}
.ls7e{letter-spacing:0.094933pt;}
.ls31{letter-spacing:0.108800pt;}
.ls10{letter-spacing:0.109056pt;}
.ls29{letter-spacing:0.116267pt;}
.ls5c{letter-spacing:0.119467pt;}
.ls14{letter-spacing:0.144533pt;}
.lsa{letter-spacing:0.144640pt;}
.ls17{letter-spacing:0.147200pt;}
.ls1d{letter-spacing:0.151467pt;}
.ls5a{letter-spacing:0.161067pt;}
.ls2e{letter-spacing:0.169067pt;}
.ls15{letter-spacing:0.175467pt;}
.ls7b{letter-spacing:0.213333pt;}
.ls6{letter-spacing:0.218112pt;}
.ls32{letter-spacing:0.218133pt;}
.ls44{letter-spacing:0.220267pt;}
.ls1f{letter-spacing:0.222720pt;}
.ls1b{letter-spacing:0.222933pt;}
.ls66{letter-spacing:0.239467pt;}
.ls11{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.262933pt;}
.ls1a{letter-spacing:0.264533pt;}
.ls4e{letter-spacing:0.279467pt;}
.ls9{letter-spacing:0.289067pt;}
.ls2d{letter-spacing:0.289280pt;}
.ls6b{letter-spacing:0.303467pt;}
.lsb{letter-spacing:0.320000pt;}
.ls27{letter-spacing:0.336533pt;}
.ls24{letter-spacing:0.350933pt;}
.ls67{letter-spacing:0.367467pt;}
.ls40{letter-spacing:0.384000pt;}
.ls55{letter-spacing:0.395733pt;}
.lsd{letter-spacing:0.417067pt;}
.ls7{letter-spacing:0.448000pt;}
.ls35{letter-spacing:0.449280pt;}
.ls5{letter-spacing:0.749056pt;}
.ls33{letter-spacing:0.784640pt;}
.ls4d{letter-spacing:0.864000pt;}
.ls42{letter-spacing:0.896000pt;}
.lsf{letter-spacing:0.929280pt;}
.ls59{letter-spacing:0.944000pt;}
.ls53{letter-spacing:0.992000pt;}
.ls6c{letter-spacing:1.024000pt;}
.ls23{letter-spacing:1.071360pt;}
.ls43{letter-spacing:1.424640pt;}
.ls49{letter-spacing:1.711360pt;}
.ls37{letter-spacing:2.064640pt;}
.ls22{letter-spacing:2.991360pt;}
.ls39{letter-spacing:3.984640pt;}
.ls38{letter-spacing:4.624640pt;}
.ls21{letter-spacing:5.551360pt;}
.ls3e{letter-spacing:10.989056pt;}
.ls79{letter-spacing:13.660416pt;}
.ls7a{letter-spacing:14.300416pt;}
.ls5d{letter-spacing:18.000640pt;}
.ls75{letter-spacing:18.704640pt;}
.ls5f{letter-spacing:19.280640pt;}
.ls20{letter-spacing:23.471360pt;}
.ls71{letter-spacing:24.540416pt;}
.ls70{letter-spacing:25.180416pt;}
.ls60{letter-spacing:25.680640pt;}
.ls5e{letter-spacing:25.728000pt;}
.ls36{letter-spacing:25.851307pt;}
.ls52{letter-spacing:33.035776pt;}
.ls6a{letter-spacing:34.064640pt;}
.ls57{letter-spacing:36.624640pt;}
.ls56{letter-spacing:36.731307pt;}
.ls47{letter-spacing:36.911360pt;}
.ls48{letter-spacing:37.018027pt;}
.ls76{letter-spacing:37.317376pt;}
.ls77{letter-spacing:37.376000pt;}
.ls46{letter-spacing:37.551360pt;}
.ls1e{letter-spacing:40.235776pt;}
.ls2c{letter-spacing:43.763200pt;}
.ls2{letter-spacing:43.808000pt;}
.ls8{letter-spacing:44.944640pt;}
.ls18{letter-spacing:47.347200pt;}
.ls19{letter-spacing:47.392000pt;}
.ls51{letter-spacing:50.991360pt;}
.ls72{letter-spacing:51.155200pt;}
.ls41{letter-spacing:51.200000pt;}
.ls58{letter-spacing:53.229056pt;}
.ls4{letter-spacing:53.264640pt;}
.ls5b{letter-spacing:55.008000pt;}
.lse{letter-spacing:80.144640pt;}
.ls3{letter-spacing:82.704640pt;}
.ls34{letter-spacing:83.360000pt;}
.lsc{letter-spacing:160.784640pt;}
.ws36{word-spacing:-144.128000pt;}
.ws37{word-spacing:-42.399360pt;}
.ws4{word-spacing:-41.903360pt;}
.ws2a{word-spacing:-41.874944pt;}
.wsb{word-spacing:-41.872427pt;}
.ws9{word-spacing:-41.775360pt;}
.ws44{word-spacing:-41.758827pt;}
.wsd{word-spacing:-41.746944pt;}
.ws5{word-spacing:-41.744427pt;}
.ws2{word-spacing:-41.718293pt;}
.ws29{word-spacing:-41.711211pt;}
.ws27{word-spacing:-41.709077pt;}
.wsc{word-spacing:-41.638144pt;}
.ws8{word-spacing:-41.630827pt;}
.ws6{word-spacing:-41.599893pt;}
.ws21{word-spacing:-41.599744pt;}
.ws3{word-spacing:-41.490944pt;}
.ws7{word-spacing:-41.455360pt;}
.ws4d{word-spacing:-41.320427pt;}
.wsa{word-spacing:-41.310827pt;}
.ws28{word-spacing:-41.270677pt;}
.ws1{word-spacing:-41.232427pt;}
.ws46{word-spacing:-40.067584pt;}
.ws33{word-spacing:-39.600640pt;}
.ws2f{word-spacing:-39.472640pt;}
.ws35{word-spacing:-39.039957pt;}
.ws1b{word-spacing:-38.959573pt;}
.ws17{word-spacing:-38.945173pt;}
.ws30{word-spacing:-38.923691pt;}
.ws12{word-spacing:-38.873173pt;}
.wsf{word-spacing:-38.831573pt;}
.ws14{word-spacing:-38.795691pt;}
.ws19{word-spacing:-38.760491pt;}
.wse{word-spacing:-38.644224pt;}
.ws34{word-spacing:-38.625280pt;}
.ws11{word-spacing:-38.608640pt;}
.ws1a{word-spacing:-38.527957pt;}
.ws2c{word-spacing:-38.504491pt;}
.ws18{word-spacing:-38.497173pt;}
.ws10{word-spacing:-38.441707pt;}
.ws1c{word-spacing:-38.434624pt;}
.ws15{word-spacing:-38.400107pt;}
.ws2e{word-spacing:-38.399957pt;}
.ws16{word-spacing:-38.319573pt;}
.ws2d{word-spacing:-38.155691pt;}
.ws32{word-spacing:-37.856640pt;}
.ws31{word-spacing:-37.803307pt;}
.ws4a{word-spacing:-35.840000pt;}
.ws4f{word-spacing:-35.832917pt;}
.ws25{word-spacing:-35.619584pt;}
.ws24{word-spacing:-35.584000pt;}
.ws50{word-spacing:-35.541184pt;}
.ws4c{word-spacing:-35.463317pt;}
.ws2b{word-spacing:-35.456000pt;}
.ws26{word-spacing:-35.420651pt;}
.ws4e{word-spacing:-35.413184pt;}
.ws47{word-spacing:-35.335317pt;}
.ws4b{word-spacing:-35.328000pt;}
.ws49{word-spacing:-35.192917pt;}
.ws3f{word-spacing:-32.926827pt;}
.ws3e{word-spacing:-32.798827pt;}
.ws39{word-spacing:-32.720427pt;}
.ws3c{word-spacing:-32.685077pt;}
.ws3d{word-spacing:-32.678827pt;}
.ws3b{word-spacing:-32.639893pt;}
.ws40{word-spacing:-32.598400pt;}
.ws42{word-spacing:-32.581760pt;}
.ws41{word-spacing:-32.559360pt;}
.ws3a{word-spacing:-32.080427pt;}
.ws51{word-spacing:-29.712640pt;}
.ws1d{word-spacing:-27.924587pt;}
.ws1e{word-spacing:-27.788800pt;}
.ws1f{word-spacing:-27.519787pt;}
.ws45{word-spacing:-26.240000pt;}
.ws48{word-spacing:-23.983360pt;}
.ws38{word-spacing:-19.866027pt;}
.ws13{word-spacing:-16.344320pt;}
.ws22{word-spacing:-4.768640pt;}
.ws23{word-spacing:-4.698176pt;}
.ws0{word-spacing:0.000000pt;}
.ws20{word-spacing:2.272256pt;}
.ws43{word-spacing:2.352640pt;}
._1d{margin-left:-16.701440pt;}
._1c{margin-left:-13.545600pt;}
._20{margin-left:-12.160000pt;}
._26{margin-left:-10.020437pt;}
._38{margin-left:-8.642347pt;}
._10{margin-left:-7.679787pt;}
._2c{margin-left:-6.436053pt;}
._11{margin-left:-5.496320pt;}
._3b{margin-left:-4.480000pt;}
._12{margin-left:-2.983040pt;}
._0{margin-left:-1.344000pt;}
._22{width:0.890027pt;}
._1{width:1.781333pt;}
._19{width:3.308587pt;}
._16{width:5.108693pt;}
._23{width:6.111147pt;}
._3e{width:7.040000pt;}
._9{width:8.178347pt;}
._8{width:9.217707pt;}
._25{width:11.213141pt;}
._32{width:12.448043pt;}
._3d{width:13.439957pt;}
._3c{width:14.391637pt;}
._31{width:15.637120pt;}
._2d{width:16.617216pt;}
._2e{width:17.864277pt;}
._3a{width:19.492480pt;}
._39{width:21.108224pt;}
._15{width:22.802133pt;}
._27{width:24.000427pt;}
._21{width:25.755307pt;}
._41{width:27.253333pt;}
._1f{width:28.506027pt;}
._1e{width:29.399808pt;}
._e{width:32.934827pt;}
._f{width:33.829120pt;}
._18{width:34.752213pt;}
._17{width:35.659093pt;}
._2b{width:36.770987pt;}
._29{width:39.425920pt;}
._14{width:40.544427pt;}
._6{width:44.879573pt;}
._1a{width:46.327467pt;}
._1b{width:47.539840pt;}
._28{width:49.137579pt;}
._d{width:50.073088pt;}
._c{width:51.119104pt;}
._4{width:52.941013pt;}
._5{width:54.119040pt;}
._2a{width:59.787520pt;}
._3f{width:64.026453pt;}
._34{width:65.384107pt;}
._33{width:66.284800pt;}
._40{width:70.762752pt;}
._37{width:72.286549pt;}
._36{width:73.543168pt;}
._b{width:79.562027pt;}
._a{width:80.828800pt;}
._2{width:82.010880pt;}
._3{width:83.011413pt;}
._24{width:86.352640pt;}
._35{width:87.953280pt;}
._30{width:103.321472pt;}
._2f{width:104.362795pt;}
._13{width:118.106453pt;}
._7{width:160.090880pt;}
.fs8{font-size:72.320000pt;}
.fs11{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.fsa{font-size:99.840000pt;}
.fs12{font-size:106.880000pt;}
.fsf{font-size:117.120000pt;}
.fs10{font-size:117.248000pt;}
.fsb{font-size:128.000000pt;}
.fsc{font-size:128.128000pt;}
.fs6{font-size:138.880000pt;}
.fs7{font-size:139.008000pt;}
.fs9{font-size:144.000000pt;}
.fsd{font-size:144.128000pt;}
.fs4{font-size:149.120000pt;}
.fs5{font-size:149.248000pt;}
.fs3{font-size:160.000000pt;}
.fse{font-size:160.128000pt;}
.fs0{font-size:192.000000pt;}
.fs1{font-size:192.128000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:50.432000pt;}
.yec{bottom:70.880000pt;}
.y6e{bottom:71.616000pt;}
.yf{bottom:72.096000pt;}
.y7a{bottom:72.256000pt;}
.yb9{bottom:82.656000pt;}
.ya8{bottom:85.216000pt;}
.y52{bottom:86.368000pt;}
.y31{bottom:87.392000pt;}
.yed{bottom:91.680000pt;}
.yd1{bottom:93.184000pt;}
.y96{bottom:101.696000pt;}
.yc0{bottom:105.472000pt;}
.ye{bottom:107.936000pt;}
.y18{bottom:109.696000pt;}
.y64{bottom:110.720000pt;}
.y6d{bottom:111.936000pt;}
.ydf{bottom:112.576000pt;}
.y47{bottom:113.440000pt;}
.y29{bottom:117.312000pt;}
.y1b{bottom:117.600000pt;}
.yeb{bottom:120.000000pt;}
.y40{bottom:120.832000pt;}
.yb0{bottom:125.600000pt;}
.ya0{bottom:126.816000pt;}
.y5a{bottom:136.386667pt;}
.y51{bottom:139.973333pt;}
.ya7{bottom:142.813333pt;}
.y88{bottom:144.893333pt;}
.y28{bottom:146.426667pt;}
.y79{bottom:147.133333pt;}
.yb8{bottom:149.693333pt;}
.yde{bottom:150.013333pt;}
.y63{bottom:151.040000pt;}
.y46{bottom:153.760000pt;}
.yea{bottom:155.840000pt;}
.y17{bottom:163.773333pt;}
.y37{bottom:169.893333pt;}
.yd0{bottom:171.266667pt;}
.y9f{bottom:172.573333pt;}
.ybf{bottom:172.706667pt;}
.y95{bottom:173.213333pt;}
.y3f{bottom:174.426667pt;}
.y27{bottom:175.546667pt;}
.ycb{bottom:178.013333pt;}
.yaf{bottom:183.226667pt;}
.y78{bottom:184.613333pt;}
.y87{bottom:185.213333pt;}
.ydd{bottom:187.453333pt;}
.y59{bottom:190.173333pt;}
.y62{bottom:191.360000pt;}
.y8e{bottom:191.746667pt;}
.y50{bottom:192.480000pt;}
.yc6{bottom:193.920000pt;}
.y30{bottom:194.786667pt;}
.ye9{bottom:204.986667pt;}
.yd{bottom:206.213333pt;}
.y45{bottom:207.360000pt;}
.ya6{bottom:209.533333pt;}
.y3e{bottom:214.786667pt;}
.yb7{bottom:216.733333pt;}
.y9e{bottom:218.333333pt;}
.y6c{bottom:219.173333pt;}
.ydc{bottom:224.733333pt;}
.y86{bottom:225.533333pt;}
.y16{bottom:231.333333pt;}
.y61{bottom:231.706667pt;}
.y4f{bottom:233.760000pt;}
.yc5{bottom:234.240000pt;}
.ycf{bottom:235.613333pt;}
.ye8{bottom:240.826667pt;}
.y1a{bottom:241.093333pt;}
.yc{bottom:242.053333pt;}
.y58{bottom:243.773333pt;}
.y94{bottom:244.773333pt;}
.y2f{bottom:248.413333pt;}
.y36{bottom:250.533333pt;}
.ybe{bottom:253.186667pt;}
.yae{bottom:254.106667pt;}
.yca{bottom:258.533333pt;}
.y6b{bottom:259.493333pt;}
.y26{bottom:260.546667pt;}
.y85{bottom:265.893333pt;}
.yd6{bottom:267.706667pt;}
.y3d{bottom:268.546667pt;}
.y8d{bottom:272.253333pt;}
.y4e{bottom:274.880000pt;}
.ya5{bottom:276.773333pt;}
.y9d{bottom:277.413333pt;}
.yb{bottom:277.893333pt;}
.y2{bottom:282.373333pt;}
.yb6{bottom:283.973333pt;}
.y60{bottom:285.306667pt;}
.y15{bottom:285.413333pt;}
.y77{bottom:286.053333pt;}
.y25{bottom:289.666667pt;}
.ye7{bottom:290.106667pt;}
.y2e{bottom:302.173333pt;}
.y6a{bottom:312.000000pt;}
.ydb{bottom:312.933333pt;}
.ya{bottom:313.733333pt;}
.y44{bottom:314.746667pt;}
.y4d{bottom:316.186667pt;}
.y93{bottom:316.453333pt;}
.y24{bottom:318.786667pt;}
.ybd{bottom:320.413333pt;}
.y9c{bottom:323.173333pt;}
.y76{bottom:323.520000pt;}
.yad{bottom:325.186667pt;}
.ye6{bottom:325.946667pt;}
.y35{bottom:331.040000pt;}
.y7e{bottom:334.400000pt;}
.yc9{bottom:339.013333pt;}
.y1{bottom:339.973333pt;}
.yc4{bottom:341.466667pt;}
.yda{bottom:343.653333pt;}
.y69{bottom:346.560000pt;}
.yb5{bottom:351.013333pt;}
.y57{bottom:351.173333pt;}
.y8c{bottom:352.733333pt;}
.y14{bottom:352.800000pt;}
.y19{bottom:353.920000pt;}
.ya4{bottom:354.853333pt;}
.y2d{bottom:355.773333pt;}
.y4c{bottom:357.466667pt;}
.y75{bottom:360.960000pt;}
.y84{bottom:373.253333pt;}
.yd5{bottom:374.946667pt;}
.ye5{bottom:375.106667pt;}
.y9b{bottom:375.680000pt;}
.y3c{bottom:375.773333pt;}
.yee{bottom:378.560000pt;}
.yc3{bottom:381.786667pt;}
.yce{bottom:382.853333pt;}
.y68{bottom:387.840000pt;}
.y92{bottom:388.000000pt;}
.y5f{bottom:392.706667pt;}
.yac{bottom:396.066667pt;}
.y74{bottom:398.400000pt;}
.ybc{bottom:398.653333pt;}
.y4b{bottom:399.866667pt;}
.y23{bottom:403.613333pt;}
.y56{bottom:404.773333pt;}
.yb4{bottom:404.800000pt;}
.y13{bottom:406.880000pt;}
.y7d{bottom:409.280000pt;}
.y2c{bottom:409.413333pt;}
.y34{bottom:411.520000pt;}
.y9{bottom:412.160000pt;}
.y83{bottom:413.600000pt;}
.y3b{bottom:416.093333pt;}
.yc8{bottom:419.680000pt;}
.y9a{bottom:421.440000pt;}
.ya3{bottom:421.600000pt;}
.y43{bottom:421.986667pt;}
.yc2{bottom:422.146667pt;}
.ye4{bottom:424.226667pt;}
.y67{bottom:430.240000pt;}
.yd9{bottom:431.840000pt;}
.y22{bottom:432.733333pt;}
.y5e{bottom:433.026667pt;}
.y8b{bottom:433.413333pt;}
.y73{bottom:435.866667pt;}
.y91{bottom:446.240000pt;}
.y8{bottom:448.000000pt;}
.ycd{bottom:450.053333pt;}
.y4a{bottom:453.506667pt;}
.yab{bottom:453.693333pt;}
.y82{bottom:453.920000pt;}
.y55{bottom:458.400000pt;}
.yb3{bottom:458.560000pt;}
.y12{bottom:460.986667pt;}
.y21{bottom:461.853333pt;}
.y42{bottom:462.306667pt;}
.ybb{bottom:462.853333pt;}
.y2b{bottom:463.173333pt;}
.y99{bottom:467.200000pt;}
.y3a{bottom:469.893333pt;}
.y72{bottom:473.306667pt;}
.y5d{bottom:473.346667pt;}
.ye3{bottom:473.506667pt;}
.yd4{bottom:482.333333pt;}
.y7{bottom:483.866667pt;}
.y7c{bottom:484.186667pt;}
.ya2{bottom:488.800000pt;}
.y20{bottom:490.973333pt;}
.y33{bottom:492.186667pt;}
.y81{bottom:494.240000pt;}
.yc7{bottom:500.186667pt;}
.y90{bottom:504.480000pt;}
.y49{bottom:507.266667pt;}
.ye2{bottom:509.373333pt;}
.y39{bottom:510.213333pt;}
.y71{bottom:510.746667pt;}
.yaa{bottom:511.293333pt;}
.y54{bottom:512.160000pt;}
.yb2{bottom:512.346667pt;}
.y5c{bottom:513.693333pt;}
.y8a{bottom:513.893333pt;}
.y2a{bottom:516.773333pt;}
.y6{bottom:519.706667pt;}
.yd8{bottom:519.840000pt;}
.y1f{bottom:520.133333pt;}
.yd3{bottom:522.653333pt;}
.y98{bottom:526.266667pt;}
.y11{bottom:528.346667pt;}
.yc1{bottom:529.506667pt;}
.yba{bottom:529.573333pt;}
.ycc{bottom:530.560000pt;}
.y66{bottom:537.626667pt;}
.y70{bottom:548.186667pt;}
.y1e{bottom:549.253333pt;}
.yd7{bottom:550.586667pt;}
.y5b{bottom:554.013333pt;}
.y5{bottom:555.546667pt;}
.ya1{bottom:556.026667pt;}
.ye1{bottom:558.493333pt;}
.y7b{bottom:559.066667pt;}
.y48{bottom:560.866667pt;}
.y8f{bottom:562.746667pt;}
.y38{bottom:563.813333pt;}
.y53{bottom:565.760000pt;}
.yb1{bottom:566.106667pt;}
.y41{bottom:569.693333pt;}
.y97{bottom:572.026667pt;}
.y10{bottom:582.426667pt;}
.y6f{bottom:585.666667pt;}
.y65{bottom:591.266667pt;}
.ya9{bottom:601.373333pt;}
.y80{bottom:607.226667pt;}
.y1d{bottom:618.013333pt;}
.y89{bottom:636.893333pt;}
.y32{bottom:640.253333pt;}
.yd2{bottom:642.746667pt;}
.y7f{bottom:646.146667pt;}
.y4{bottom:653.533333pt;}
.ye0{bottom:655.520000pt;}
.y1c{bottom:656.893333pt;}
.h3{height:71.718750pt;}
.h9{height:74.050313pt;}
.hf{height:101.608875pt;}
.h12{height:108.187500pt;}
.h13{height:108.295687pt;}
.h14{height:111.472500pt;}
.h10{height:122.152500pt;}
.h11{height:122.286000pt;}
.hb{height:133.500000pt;}
.hc{height:133.633500pt;}
.h7{height:144.847500pt;}
.h8{height:144.981000pt;}
.ha{height:150.187500pt;}
.hd{height:150.321000pt;}
.h5{height:155.527500pt;}
.h6{height:155.661000pt;}
.h4{height:166.875000pt;}
.he{height:167.008500pt;}
.h1{height:200.250000pt;}
.h2{height:200.383500pt;}
.h0{height:720.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x2{left:38.655986pt;}
.x1{left:39.935986pt;}
.x3{left:45.567986pt;}
.xb{left:56.639986pt;}
.x4{left:69.567986pt;}
.xc{left:80.639986pt;}
.x8{left:81.567986pt;}
.x9{left:93.599986pt;}
.xa{left:117.599986pt;}
.x7{left:463.773319pt;}
.x6{left:530.079986pt;}
.x5{left:871.933319pt;}
}




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