
    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_198059a64d7b53ec76f89f69.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4e6577cb90f8618f3b91554e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.902832;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_ad8ac170a162606b7a26fe7c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4df2b030e6642a4373ff4ceb.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c42dbed4e09552a1bfc6ffe9.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_843e24081baad7d06ffd7d92.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cf93e932e7f66f16ea1a766e.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2442428687cd8fc987fbe8ab.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.973145;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_815bdd9bf9aa2ca8e45b8a81.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.973145;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_4acf918cecaab21e818cfd50.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.012695;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_b65304b3918c9d855c603908.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.012695;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_93447e6df36556e0ac23d90e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.031738;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_5e82b1a4dce6f3112ee6404c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.977549;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_709b2710fc1b4735c87b7b89.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.762000;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_4169c427b1227d10a3dcfa5e.woff2')format("woff");}.fff{font-family:fff;line-height:0.935000;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_c991e0c3f6dabe24a85271cd.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.031738;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_3419850f2bbfc618d056ba7a.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.962402;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_12e67685837290900276cefa.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_284c2b7f507198631f48d0f1.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.962402;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_2952c6bc67170ae06e537856.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.925781;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v13{vertical-align:-182.580000px;}
.v5{vertical-align:-167.820000px;}
.vc{vertical-align:-158.220000px;}
.vb{vertical-align:-99.000000px;}
.v12{vertical-align:-69.270000px;}
.v6{vertical-align:-54.600000px;}
.vf{vertical-align:-44.220000px;}
.v7{vertical-align:-22.500000px;}
.v3{vertical-align:-21.300000px;}
.v8{vertical-align:-16.650000px;}
.v11{vertical-align:-9.420000px;}
.v2{vertical-align:-8.400000px;}
.v1{vertical-align:-6.240000px;}
.ve{vertical-align:-1.080000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.100000px;}
.v9{vertical-align:27.000000px;}
.va{vertical-align:31.500000px;}
.vd{vertical-align:43.020000px;}
.v10{vertical-align:49.200000px;}
.ls2a{letter-spacing:-1.512000px;}
.lse{letter-spacing:-1.188000px;}
.ls22{letter-spacing:-1.026000px;}
.ls15{letter-spacing:-0.660000px;}
.lsd{letter-spacing:-0.504000px;}
.ls25{letter-spacing:-0.118200px;}
.ls1d{letter-spacing:-0.048300px;}
.ls26{letter-spacing:-0.018000px;}
.lsa{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.013980px;}
.ls1e{letter-spacing:0.036000px;}
.lsb{letter-spacing:0.069600px;}
.lsc{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.194100px;}
.lsf{letter-spacing:0.219600px;}
.ls7{letter-spacing:0.228000px;}
.ls10{letter-spacing:0.395400px;}
.ls1a{letter-spacing:0.629700px;}
.ls1f{letter-spacing:0.636000px;}
.ls14{letter-spacing:0.816000px;}
.ls16{letter-spacing:1.008000px;}
.ls28{letter-spacing:1.512000px;}
.ls27{letter-spacing:1.554000px;}
.ls17{letter-spacing:1.638000px;}
.ls29{letter-spacing:1.740000px;}
.ls24{letter-spacing:1.908000px;}
.ls23{letter-spacing:2.016000px;}
.ls13{letter-spacing:2.148000px;}
.ls2c{letter-spacing:2.484000px;}
.ls19{letter-spacing:17.181000px;}
.ls4{letter-spacing:48.144000px;}
.ls1{letter-spacing:58.927500px;}
.ls20{letter-spacing:60.645000px;}
.ls21{letter-spacing:60.697500px;}
.ls18{letter-spacing:60.847500px;}
.ls2{letter-spacing:61.747500px;}
.ls5{letter-spacing:61.800000px;}
.ls9{letter-spacing:77.484450px;}
.ls8{letter-spacing:77.560500px;}
.ls0{letter-spacing:77.664450px;}
.ls12{letter-spacing:97.327500px;}
.ls1b{letter-spacing:101.872500px;}
.ls1c{letter-spacing:101.925000px;}
.ls11{letter-spacing:204.058950px;}
.ls3{letter-spacing:248.920500px;}
.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;}
}
.ws7{word-spacing:-108.150000px;}
.ws29{word-spacing:-54.150000px;}
.ws28{word-spacing:-54.000000px;}
.ws9{word-spacing:-50.404200px;}
.ws12{word-spacing:-28.459200px;}
.ws1c{word-spacing:-27.457200px;}
.ws13{word-spacing:-26.821200px;}
.ws27{word-spacing:-26.312700px;}
.ws2d{word-spacing:-23.810700px;}
.ws19{word-spacing:-23.662500px;}
.ws18{word-spacing:-23.625000px;}
.ws17{word-spacing:-23.567850px;}
.ws16{word-spacing:-23.473200px;}
.ws15{word-spacing:-23.436000px;}
.ws2a{word-spacing:-22.559700px;}
.ws1e{word-spacing:-20.057700px;}
.ws1d{word-spacing:-20.016000px;}
.ws21{word-spacing:-18.806700px;}
.ws1f{word-spacing:-18.765000px;}
.ws1{word-spacing:-16.305900px;}
.ws2{word-spacing:-16.272000px;}
.ws2b{word-spacing:-16.263000px;}
.ws25{word-spacing:-15.053700px;}
.ws26{word-spacing:-15.012000px;}
.ws14{word-spacing:-14.603850px;}
.ws2c{word-spacing:-13.500000px;}
.wsb{word-spacing:-12.313200px;}
.wsa{word-spacing:-12.276000px;}
.ws6{word-spacing:-12.237900px;}
.ws0{word-spacing:-0.144300px;}
.ws10{word-spacing:-0.108150px;}
.ws1a{word-spacing:-0.094500px;}
.wsc{word-spacing:-0.058650px;}
.ws8{word-spacing:0.000000px;}
.wsf{word-spacing:0.551850px;}
.wse{word-spacing:22.816800px;}
.wsd{word-spacing:26.215950px;}
.ws4{word-spacing:53.580000px;}
.ws3{word-spacing:56.772000px;}
.ws24{word-spacing:115.692000px;}
.ws11{word-spacing:175.996950px;}
.ws5{word-spacing:334.722000px;}
.ws22{word-spacing:405.429150px;}
.ws20{word-spacing:411.888000px;}
.ws23{word-spacing:542.952000px;}
.ws1b{word-spacing:1711.556850px;}
._f{margin-left:-33.665100px;}
._d{margin-left:-29.325000px;}
._13{margin-left:-11.832000px;}
._4{margin-left:-6.328650px;}
._e{margin-left:-5.293200px;}
._5{margin-left:-3.970800px;}
._6{margin-left:-2.761200px;}
._1{margin-left:-1.755000px;}
._3{width:1.614600px;}
._0{width:2.691000px;}
._2{width:4.036500px;}
._10{width:5.275950px;}
._a{width:6.358800px;}
._b{width:22.086600px;}
._7{width:25.554300px;}
._c{width:102.464700px;}
._14{width:188.355450px;}
._12{width:197.675400px;}
._11{width:200.395500px;}
._9{width:227.435850px;}
._8{width:923.906400px;}
.fcf{color:rgb(14,14,14);}
.fce{color:rgb(64,64,64);}
.fcd{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fc3{color:rgb(255,255,255);}
.fc4{color:rgb(33,31,38);}
.fc6{color:rgb(127,127,127);}
.fcc{color:rgb(166,166,166);}
.fc1{color:rgb(188,0,49);}
.fc8{color:transparent;}
.fca{color:rgb(59,0,20);}
.fc2{color:rgb(31,29,33);}
.fc5{color:rgb(20,100,201);}
.fc7{color:rgb(129,2,2);}
.fc9{color:rgb(71,55,58);}
.fcb{color:rgb(255,0,0);}
.fs12{font-size:49.500000px;}
.fs13{font-size:49.650000px;}
.fs8{font-size:54.000000px;}
.fsb{font-size:54.150000px;}
.fs0{font-size:58.500000px;}
.fs3{font-size:58.650000px;}
.fs14{font-size:63.000000px;}
.fs15{font-size:63.150000px;}
.fsa{font-size:67.500000px;}
.fs9{font-size:67.650000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:72.150000px;}
.fs19{font-size:81.150000px;}
.fs6{font-size:85.500000px;}
.fs2{font-size:85.650000px;}
.fs17{font-size:94.500000px;}
.fs7{font-size:94.650000px;}
.fsd{font-size:108.150000px;}
.fs1b{font-size:121.650000px;}
.fs16{font-size:135.150000px;}
.fs18{font-size:135.300000px;}
.fsf{font-size:144.150000px;}
.fs1{font-size:144.300000px;}
.fs10{font-size:193.650000px;}
.fs11{font-size:193.800000px;}
.fse{font-size:216.300000px;}
.fs1a{font-size:265.800000px;}
.fsc{font-size:288.450000px;}
.y34{bottom:-69.787500px;}
.y0{bottom:0.000000px;}
.y8b{bottom:0.495000px;}
.y89{bottom:0.525000px;}
.y3e{bottom:6.450000px;}
.y58{bottom:15.225000px;}
.y49{bottom:25.650000px;}
.y6c{bottom:31.387500px;}
.y38{bottom:44.812500px;}
.y3d{bottom:54.600000px;}
.y5c{bottom:56.550000px;}
.y4f{bottom:57.712500px;}
.y1e{bottom:61.462500px;}
.y97{bottom:69.337500px;}
.y3c{bottom:77.137500px;}
.y1d{bottom:80.625000px;}
.y39{bottom:87.675000px;}
.y37{bottom:88.087500px;}
.y96{bottom:90.750000px;}
.y3b{bottom:98.512500px;}
.y1c{bottom:100.912500px;}
.y94{bottom:107.925000px;}
.y1b{bottom:120.037500px;}
.y5b{bottom:126.450000px;}
.y4e{bottom:127.575000px;}
.y95{bottom:130.200000px;}
.ya5{bottom:130.725000px;}
.y36{bottom:135.412500px;}
.y4b{bottom:145.312500px;}
.y4d{bottom:146.025000px;}
.y93{bottom:150.030000px;}
.y91{bottom:155.325000px;}
.ya2{bottom:156.645000px;}
.y90{bottom:171.105000px;}
.y59{bottom:173.475000px;}
.y5a{bottom:174.180000px;}
.y46{bottom:174.525000px;}
.y4a{bottom:174.630000px;}
.y4c{bottom:175.305000px;}
.y8d{bottom:175.530000px;}
.y8f{bottom:178.005000px;}
.y2e{bottom:178.800000px;}
.y35{bottom:182.730000px;}
.y84{bottom:186.000000px;}
.y18{bottom:190.800000px;}
.y8c{bottom:191.280000px;}
.y8e{bottom:193.770000px;}
.y45{bottom:207.195000px;}
.y17{bottom:209.955000px;}
.y6b{bottom:216.000000px;}
.y85{bottom:219.675000px;}
.y87{bottom:221.070000px;}
.y16{bottom:230.250000px;}
.y73{bottom:234.720000px;}
.y44{bottom:239.850000px;}
.y8a{bottom:240.750000px;}
.y56{bottom:246.675000px;}
.y15{bottom:249.375000px;}
.y6a{bottom:254.295000px;}
.y2d{bottom:255.630000px;}
.y88{bottom:268.875000px;}
.y43{bottom:271.395000px;}
.y2c{bottom:274.770000px;}
.y55{bottom:274.875000px;}
.y7b{bottom:279.075000px;}
.ya9{bottom:283.350000px;}
.y2b{bottom:293.925000px;}
.y12{bottom:300.225000px;}
.y13{bottom:301.800000px;}
.y54{bottom:304.155000px;}
.y71{bottom:308.445000px;}
.y86{bottom:311.520000px;}
.y2a{bottom:313.080000px;}
.y92{bottom:314.970000px;}
.y75{bottom:321.030000px;}
.y76{bottom:321.330000px;}
.y29{bottom:333.375000px;}
.y53{bottom:333.450000px;}
.y10{bottom:334.695000px;}
.y11{bottom:336.375000px;}
.y42{bottom:342.375000px;}
.y65{bottom:345.495000px;}
.y7c{bottom:347.925000px;}
.y28{bottom:352.020000px;}
.y52{bottom:361.605000px;}
.y69{bottom:362.445000px;}
.y74{bottom:366.000000px;}
.ye{bottom:369.150000px;}
.yf{bottom:370.800000px;}
.y70{bottom:376.650000px;}
.ya4{bottom:377.700000px;}
.ya0{bottom:381.495000px;}
.y51{bottom:390.900000px;}
.y5f{bottom:392.925000px;}
.y72{bottom:396.600000px;}
.y14{bottom:401.595000px;}
.y68{bottom:401.850000px;}
.yd{bottom:405.255000px;}
.y41{bottom:407.700000px;}
.y30{bottom:408.825000px;}
.y64{bottom:412.200000px;}
.y9f{bottom:414.075000px;}
.y9b{bottom:417.780000px;}
.y80{bottom:423.780000px;}
.y5e{bottom:425.625000px;}
.y7d{bottom:430.170000px;}
.y7f{bottom:432.900000px;}
.y2f{bottom:438.495000px;}
.yc{bottom:439.725000px;}
.y63{bottom:466.275000px;}
.y7a{bottom:468.120000px;}
.y40{bottom:473.070000px;}
.yb{bottom:474.195000px;}
.y27{bottom:474.225000px;}
.y98{bottom:474.450000px;}
.y77{bottom:482.025000px;}
.y5d{bottom:483.030000px;}
.y50{bottom:484.170000px;}
.y26{bottom:492.870000px;}
.ya6{bottom:494.505000px;}
.y9a{bottom:495.870000px;}
.y6f{bottom:496.995000px;}
.ya8{bottom:499.650000px;}
.ya{bottom:508.620000px;}
.y33{bottom:509.325000px;}
.y67{bottom:510.000000px;}
.y9e{bottom:510.870000px;}
.y9c{bottom:511.245000px;}
.y57{bottom:518.100000px;}
.y62{bottom:520.350000px;}
.y7e{bottom:522.975000px;}
.y79{bottom:528.975000px;}
.y3f{bottom:537.255000px;}
.y25{bottom:537.675000px;}
.y9{bottom:541.500000px;}
.y5{bottom:543.075000px;}
.y66{bottom:548.325000px;}
.y78{bottom:558.870000px;}
.y99{bottom:559.800000px;}
.y9d{bottom:562.650000px;}
.y24{bottom:571.620000px;}
.y48{bottom:572.175000px;}
.y61{bottom:574.425000px;}
.y4{bottom:577.530000px;}
.y32{bottom:587.070000px;}
.y23{bottom:590.295000px;}
.ya7{bottom:591.630000px;}
.y47{bottom:610.470000px;}
.y60{bottom:612.720000px;}
.y8{bottom:614.445000px;}
.y3a{bottom:634.620000px;}
.y7{bottom:634.725000px;}
.y82{bottom:636.750000px;}
.ya3{bottom:637.845000px;}
.y6{bottom:653.880000px;}
.y81{bottom:658.155000px;}
.y31{bottom:664.800000px;}
.y6d{bottom:665.925000px;}
.y22{bottom:681.750000px;}
.y1a{bottom:700.050000px;}
.y21{bottom:700.875000px;}
.y6e{bottom:702.975000px;}
.ya1{bottom:706.470000px;}
.y83{bottom:714.225000px;}
.y20{bottom:721.155000px;}
.y1f{bottom:739.800000px;}
.y19{bottom:741.225000px;}
.y3{bottom:776.070000px;}
.y2{bottom:825.675000px;}
.y1{bottom:859.950000px;}
.h3b{height:19.125000px;}
.h36{height:39.471680px;}
.h35{height:39.581323px;}
.h1c{height:39.711182px;}
.h1d{height:39.831519px;}
.h16{height:40.407788px;}
.h3a{height:40.605469px;}
.h39{height:40.718262px;}
.h1{height:40.847168px;}
.h18{height:40.951904px;}
.h2c{height:42.760986px;}
.h20{height:46.335791px;}
.h43{height:47.051733px;}
.h3d{height:49.251050px;}
.h31{height:49.339600px;}
.h33{height:49.449243px;}
.h34{height:50.869629px;}
.h41{height:52.417969px;}
.h40{height:52.527173px;}
.h2f{height:52.628906px;}
.h30{height:52.738550px;}
.h13{height:53.859155px;}
.hf{height:55.291992px;}
.h3f{height:59.317163px;}
.hc{height:59.899658px;}
.h5{height:60.053247px;}
.h38{height:62.496826px;}
.h3e{height:62.606470px;}
.ha{height:64.953281px;}
.h28{height:65.107178px;}
.h9{height:65.133281px;}
.h29{height:65.210522px;}
.h4{height:65.522476px;}
.h26{height:65.983887px;}
.h27{height:66.088623px;}
.h10{height:67.137451px;}
.h3c{height:69.185083px;}
.h2d{height:71.172363px;}
.h7{height:71.613281px;}
.h8{height:71.762476px;}
.h14{height:73.533281px;}
.h12{height:73.682476px;}
.he{height:73.722656px;}
.h11{height:73.862476px;}
.h6{height:73.876245px;}
.h24{height:74.777197px;}
.h23{height:75.812256px;}
.h22{height:75.932593px;}
.h25{height:77.661841px;}
.h42{height:79.053003px;}
.hb{height:79.145654px;}
.h1e{height:80.247300px;}
.h2a{height:81.323730px;}
.h17{height:85.442725px;}
.h1f{height:86.762915px;}
.h3{height:87.699243px;}
.h32{height:95.758550px;}
.hd{height:96.914575px;}
.h44{height:97.593237px;}
.h1a{height:98.391064px;}
.h21{height:98.788843px;}
.h2b{height:98.898486px;}
.h2{height:99.417627px;}
.h37{height:101.938550px;}
.h19{height:113.884131px;}
.h1b{height:153.109570px;}
.h2e{height:170.885449px;}
.h15{height:227.886768px;}
.h0{height:810.000000px;}
.w2{width:51.750000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x2{left:-426.270021px;}
.x3{left:-419.220021px;}
.x7{left:-416.475021px;}
.x5{left:-392.370021px;}
.x4{left:-371.325021px;}
.x6{left:-360.825021px;}
.x8{left:-302.595021px;}
.x1{left:-1.425021px;}
.x0{left:0.000000px;}
.x14{left:39.674979px;}
.x19{left:50.512479px;}
.x2b{left:54.037479px;}
.x13{left:60.974979px;}
.x2d{left:72.074979px;}
.xe{left:76.612479px;}
.x24{left:81.862479px;}
.x4e{left:86.174979px;}
.x18{left:88.349979px;}
.x2e{left:99.074979px;}
.x57{left:100.574979px;}
.x1a{left:111.074979px;}
.x25{left:115.124979px;}
.x1b{left:121.387479px;}
.x26{left:123.824979px;}
.x49{left:143.362479px;}
.x48{left:156.479979px;}
.x12{left:206.654979px;}
.x56{left:225.869979px;}
.x45{left:271.079979px;}
.x1e{left:287.324979px;}
.x30{left:295.844979px;}
.x3a{left:312.869979px;}
.x4f{left:321.599979px;}
.x32{left:327.074979px;}
.x5f{left:393.404979px;}
.x5e{left:400.904979px;}
.x31{left:427.199979px;}
.x10{left:431.699979px;}
.x46{left:440.069979px;}
.x3b{left:443.819979px;}
.x4b{left:454.004979px;}
.x36{left:479.504979px;}
.x44{left:488.279979px;}
.x38{left:499.844979px;}
.x39{left:509.624979px;}
.x33{left:545.279979px;}
.x20{left:574.874979px;}
.x29{left:576.494979px;}
.x1f{left:577.829979px;}
.x28{left:579.704979px;}
.x37{left:587.699979px;}
.x51{left:597.899979px;}
.x4a{left:599.654979px;}
.x35{left:602.729979px;}
.x47{left:618.750000px;}
.x34{left:687.329979px;}
.x43{left:744.854979px;}
.x53{left:766.319979px;}
.x52{left:769.949979px;}
.x50{left:776.879979px;}
.x5b{left:801.974979px;}
.x15{left:802.994979px;}
.x1d{left:842.669979px;}
.x27{left:845.099979px;}
.x1c{left:848.024979px;}
.x4c{left:873.974979px;}
.x5c{left:885.194979px;}
.x58{left:924.899979px;}
.x16{left:935.399979px;}
.x5a{left:936.824979px;}
.x55{left:991.874979px;}
.x54{left:1007.504979px;}
.x2c{left:1057.574979px;}
.x3c{left:1069.949979px;}
.x2a{left:1077.524979px;}
.x21{left:1090.199979px;}
.x3e{left:1106.924979px;}
.x59{left:1108.574979px;}
.x3f{left:1124.324979px;}
.x3d{left:1135.919979px;}
.x22{left:1144.229979px;}
.x5d{left:1167.449979px;}
.x11{left:1180.949979px;}
.x41{left:1204.124979px;}
.x40{left:1209.299979px;}
.x42{left:1235.099979px;}
.x4d{left:1248.449979px;}
.x2f{left:1329.029979px;}
.x17{left:1347.344979px;}
.x23{left:1348.454979px;}
.xf{left:1356.944979px;}
.x9{left:1484.324979px;}
.xa{left:1491.449979px;}
.xb{left:1518.254979px;}
.xc{left:1531.979979px;}
.xd{left:1558.574979px;}
@media print{
.v13{vertical-align:-162.293333pt;}
.v5{vertical-align:-149.173333pt;}
.vc{vertical-align:-140.640000pt;}
.vb{vertical-align:-88.000000pt;}
.v12{vertical-align:-61.573333pt;}
.v6{vertical-align:-48.533333pt;}
.vf{vertical-align:-39.306667pt;}
.v7{vertical-align:-20.000000pt;}
.v3{vertical-align:-18.933333pt;}
.v8{vertical-align:-14.800000pt;}
.v11{vertical-align:-8.373333pt;}
.v2{vertical-align:-7.466667pt;}
.v1{vertical-align:-5.546667pt;}
.ve{vertical-align:-0.960000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.866667pt;}
.v9{vertical-align:24.000000pt;}
.va{vertical-align:28.000000pt;}
.vd{vertical-align:38.240000pt;}
.v10{vertical-align:43.733333pt;}
.ls2a{letter-spacing:-1.344000pt;}
.lse{letter-spacing:-1.056000pt;}
.ls22{letter-spacing:-0.912000pt;}
.ls15{letter-spacing:-0.586667pt;}
.lsd{letter-spacing:-0.448000pt;}
.ls25{letter-spacing:-0.105067pt;}
.ls1d{letter-spacing:-0.042933pt;}
.ls26{letter-spacing:-0.016000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.012427pt;}
.ls1e{letter-spacing:0.032000pt;}
.lsb{letter-spacing:0.061867pt;}
.lsc{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.172533pt;}
.lsf{letter-spacing:0.195200pt;}
.ls7{letter-spacing:0.202667pt;}
.ls10{letter-spacing:0.351467pt;}
.ls1a{letter-spacing:0.559733pt;}
.ls1f{letter-spacing:0.565333pt;}
.ls14{letter-spacing:0.725333pt;}
.ls16{letter-spacing:0.896000pt;}
.ls28{letter-spacing:1.344000pt;}
.ls27{letter-spacing:1.381333pt;}
.ls17{letter-spacing:1.456000pt;}
.ls29{letter-spacing:1.546667pt;}
.ls24{letter-spacing:1.696000pt;}
.ls23{letter-spacing:1.792000pt;}
.ls13{letter-spacing:1.909333pt;}
.ls2c{letter-spacing:2.208000pt;}
.ls19{letter-spacing:15.272000pt;}
.ls4{letter-spacing:42.794667pt;}
.ls1{letter-spacing:52.380000pt;}
.ls20{letter-spacing:53.906667pt;}
.ls21{letter-spacing:53.953333pt;}
.ls18{letter-spacing:54.086667pt;}
.ls2{letter-spacing:54.886667pt;}
.ls5{letter-spacing:54.933333pt;}
.ls9{letter-spacing:68.875067pt;}
.ls8{letter-spacing:68.942667pt;}
.ls0{letter-spacing:69.035067pt;}
.ls12{letter-spacing:86.513333pt;}
.ls1b{letter-spacing:90.553333pt;}
.ls1c{letter-spacing:90.600000pt;}
.ls11{letter-spacing:181.385733pt;}
.ls3{letter-spacing:221.262667pt;}
.ws7{word-spacing:-96.133333pt;}
.ws29{word-spacing:-48.133333pt;}
.ws28{word-spacing:-48.000000pt;}
.ws9{word-spacing:-44.803733pt;}
.ws12{word-spacing:-25.297067pt;}
.ws1c{word-spacing:-24.406400pt;}
.ws13{word-spacing:-23.841067pt;}
.ws27{word-spacing:-23.389067pt;}
.ws2d{word-spacing:-21.165067pt;}
.ws19{word-spacing:-21.033333pt;}
.ws18{word-spacing:-21.000000pt;}
.ws17{word-spacing:-20.949200pt;}
.ws16{word-spacing:-20.865067pt;}
.ws15{word-spacing:-20.832000pt;}
.ws2a{word-spacing:-20.053067pt;}
.ws1e{word-spacing:-17.829067pt;}
.ws1d{word-spacing:-17.792000pt;}
.ws21{word-spacing:-16.717067pt;}
.ws1f{word-spacing:-16.680000pt;}
.ws1{word-spacing:-14.494133pt;}
.ws2{word-spacing:-14.464000pt;}
.ws2b{word-spacing:-14.456000pt;}
.ws25{word-spacing:-13.381067pt;}
.ws26{word-spacing:-13.344000pt;}
.ws14{word-spacing:-12.981200pt;}
.ws2c{word-spacing:-12.000000pt;}
.wsb{word-spacing:-10.945067pt;}
.wsa{word-spacing:-10.912000pt;}
.ws6{word-spacing:-10.878133pt;}
.ws0{word-spacing:-0.128267pt;}
.ws10{word-spacing:-0.096133pt;}
.ws1a{word-spacing:-0.084000pt;}
.wsc{word-spacing:-0.052133pt;}
.ws8{word-spacing:0.000000pt;}
.wsf{word-spacing:0.490533pt;}
.wse{word-spacing:20.281600pt;}
.wsd{word-spacing:23.303067pt;}
.ws4{word-spacing:47.626667pt;}
.ws3{word-spacing:50.464000pt;}
.ws24{word-spacing:102.837333pt;}
.ws11{word-spacing:156.441733pt;}
.ws5{word-spacing:297.530667pt;}
.ws22{word-spacing:360.381467pt;}
.ws20{word-spacing:366.122667pt;}
.ws23{word-spacing:482.624000pt;}
.ws1b{word-spacing:1521.383867pt;}
._f{margin-left:-29.924533pt;}
._d{margin-left:-26.066667pt;}
._13{margin-left:-10.517333pt;}
._4{margin-left:-5.625467pt;}
._e{margin-left:-4.705067pt;}
._5{margin-left:-3.529600pt;}
._6{margin-left:-2.454400pt;}
._1{margin-left:-1.560000pt;}
._3{width:1.435200pt;}
._0{width:2.392000pt;}
._2{width:3.588000pt;}
._10{width:4.689733pt;}
._a{width:5.652267pt;}
._b{width:19.632533pt;}
._7{width:22.714933pt;}
._c{width:91.079733pt;}
._14{width:167.427067pt;}
._12{width:175.711467pt;}
._11{width:178.129333pt;}
._9{width:202.165200pt;}
._8{width:821.250133pt;}
.fs12{font-size:44.000000pt;}
.fs13{font-size:44.133333pt;}
.fs8{font-size:48.000000pt;}
.fsb{font-size:48.133333pt;}
.fs0{font-size:52.000000pt;}
.fs3{font-size:52.133333pt;}
.fs14{font-size:56.000000pt;}
.fs15{font-size:56.133333pt;}
.fsa{font-size:60.000000pt;}
.fs9{font-size:60.133333pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:64.133333pt;}
.fs19{font-size:72.133333pt;}
.fs6{font-size:76.000000pt;}
.fs2{font-size:76.133333pt;}
.fs17{font-size:84.000000pt;}
.fs7{font-size:84.133333pt;}
.fsd{font-size:96.133333pt;}
.fs1b{font-size:108.133333pt;}
.fs16{font-size:120.133333pt;}
.fs18{font-size:120.266667pt;}
.fsf{font-size:128.133333pt;}
.fs1{font-size:128.266667pt;}
.fs10{font-size:172.133333pt;}
.fs11{font-size:172.266667pt;}
.fse{font-size:192.266667pt;}
.fs1a{font-size:236.266667pt;}
.fsc{font-size:256.400000pt;}
.y34{bottom:-62.033333pt;}
.y0{bottom:0.000000pt;}
.y8b{bottom:0.440000pt;}
.y89{bottom:0.466667pt;}
.y3e{bottom:5.733333pt;}
.y58{bottom:13.533333pt;}
.y49{bottom:22.800000pt;}
.y6c{bottom:27.900000pt;}
.y38{bottom:39.833333pt;}
.y3d{bottom:48.533333pt;}
.y5c{bottom:50.266667pt;}
.y4f{bottom:51.300000pt;}
.y1e{bottom:54.633333pt;}
.y97{bottom:61.633333pt;}
.y3c{bottom:68.566667pt;}
.y1d{bottom:71.666667pt;}
.y39{bottom:77.933333pt;}
.y37{bottom:78.300000pt;}
.y96{bottom:80.666667pt;}
.y3b{bottom:87.566667pt;}
.y1c{bottom:89.700000pt;}
.y94{bottom:95.933333pt;}
.y1b{bottom:106.700000pt;}
.y5b{bottom:112.400000pt;}
.y4e{bottom:113.400000pt;}
.y95{bottom:115.733333pt;}
.ya5{bottom:116.200000pt;}
.y36{bottom:120.366667pt;}
.y4b{bottom:129.166667pt;}
.y4d{bottom:129.800000pt;}
.y93{bottom:133.360000pt;}
.y91{bottom:138.066667pt;}
.ya2{bottom:139.240000pt;}
.y90{bottom:152.093333pt;}
.y59{bottom:154.200000pt;}
.y5a{bottom:154.826667pt;}
.y46{bottom:155.133333pt;}
.y4a{bottom:155.226667pt;}
.y4c{bottom:155.826667pt;}
.y8d{bottom:156.026667pt;}
.y8f{bottom:158.226667pt;}
.y2e{bottom:158.933333pt;}
.y35{bottom:162.426667pt;}
.y84{bottom:165.333333pt;}
.y18{bottom:169.600000pt;}
.y8c{bottom:170.026667pt;}
.y8e{bottom:172.240000pt;}
.y45{bottom:184.173333pt;}
.y17{bottom:186.626667pt;}
.y6b{bottom:192.000000pt;}
.y85{bottom:195.266667pt;}
.y87{bottom:196.506667pt;}
.y16{bottom:204.666667pt;}
.y73{bottom:208.640000pt;}
.y44{bottom:213.200000pt;}
.y8a{bottom:214.000000pt;}
.y56{bottom:219.266667pt;}
.y15{bottom:221.666667pt;}
.y6a{bottom:226.040000pt;}
.y2d{bottom:227.226667pt;}
.y88{bottom:239.000000pt;}
.y43{bottom:241.240000pt;}
.y2c{bottom:244.240000pt;}
.y55{bottom:244.333333pt;}
.y7b{bottom:248.066667pt;}
.ya9{bottom:251.866667pt;}
.y2b{bottom:261.266667pt;}
.y12{bottom:266.866667pt;}
.y13{bottom:268.266667pt;}
.y54{bottom:270.360000pt;}
.y71{bottom:274.173333pt;}
.y86{bottom:276.906667pt;}
.y2a{bottom:278.293333pt;}
.y92{bottom:279.973333pt;}
.y75{bottom:285.360000pt;}
.y76{bottom:285.626667pt;}
.y29{bottom:296.333333pt;}
.y53{bottom:296.400000pt;}
.y10{bottom:297.506667pt;}
.y11{bottom:299.000000pt;}
.y42{bottom:304.333333pt;}
.y65{bottom:307.106667pt;}
.y7c{bottom:309.266667pt;}
.y28{bottom:312.906667pt;}
.y52{bottom:321.426667pt;}
.y69{bottom:322.173333pt;}
.y74{bottom:325.333333pt;}
.ye{bottom:328.133333pt;}
.yf{bottom:329.600000pt;}
.y70{bottom:334.800000pt;}
.ya4{bottom:335.733333pt;}
.ya0{bottom:339.106667pt;}
.y51{bottom:347.466667pt;}
.y5f{bottom:349.266667pt;}
.y72{bottom:352.533333pt;}
.y14{bottom:356.973333pt;}
.y68{bottom:357.200000pt;}
.yd{bottom:360.226667pt;}
.y41{bottom:362.400000pt;}
.y30{bottom:363.400000pt;}
.y64{bottom:366.400000pt;}
.y9f{bottom:368.066667pt;}
.y9b{bottom:371.360000pt;}
.y80{bottom:376.693333pt;}
.y5e{bottom:378.333333pt;}
.y7d{bottom:382.373333pt;}
.y7f{bottom:384.800000pt;}
.y2f{bottom:389.773333pt;}
.yc{bottom:390.866667pt;}
.y63{bottom:414.466667pt;}
.y7a{bottom:416.106667pt;}
.y40{bottom:420.506667pt;}
.yb{bottom:421.506667pt;}
.y27{bottom:421.533333pt;}
.y98{bottom:421.733333pt;}
.y77{bottom:428.466667pt;}
.y5d{bottom:429.360000pt;}
.y50{bottom:430.373333pt;}
.y26{bottom:438.106667pt;}
.ya6{bottom:439.560000pt;}
.y9a{bottom:440.773333pt;}
.y6f{bottom:441.773333pt;}
.ya8{bottom:444.133333pt;}
.ya{bottom:452.106667pt;}
.y33{bottom:452.733333pt;}
.y67{bottom:453.333333pt;}
.y9e{bottom:454.106667pt;}
.y9c{bottom:454.440000pt;}
.y57{bottom:460.533333pt;}
.y62{bottom:462.533333pt;}
.y7e{bottom:464.866667pt;}
.y79{bottom:470.200000pt;}
.y3f{bottom:477.560000pt;}
.y25{bottom:477.933333pt;}
.y9{bottom:481.333333pt;}
.y5{bottom:482.733333pt;}
.y66{bottom:487.400000pt;}
.y78{bottom:496.773333pt;}
.y99{bottom:497.600000pt;}
.y9d{bottom:500.133333pt;}
.y24{bottom:508.106667pt;}
.y48{bottom:508.600000pt;}
.y61{bottom:510.600000pt;}
.y4{bottom:513.360000pt;}
.y32{bottom:521.840000pt;}
.y23{bottom:524.706667pt;}
.ya7{bottom:525.893333pt;}
.y47{bottom:542.640000pt;}
.y60{bottom:544.640000pt;}
.y8{bottom:546.173333pt;}
.y3a{bottom:564.106667pt;}
.y7{bottom:564.200000pt;}
.y82{bottom:566.000000pt;}
.ya3{bottom:566.973333pt;}
.y6{bottom:581.226667pt;}
.y81{bottom:585.026667pt;}
.y31{bottom:590.933333pt;}
.y6d{bottom:591.933333pt;}
.y22{bottom:606.000000pt;}
.y1a{bottom:622.266667pt;}
.y21{bottom:623.000000pt;}
.y6e{bottom:624.866667pt;}
.ya1{bottom:627.973333pt;}
.y83{bottom:634.866667pt;}
.y20{bottom:641.026667pt;}
.y1f{bottom:657.600000pt;}
.y19{bottom:658.866667pt;}
.y3{bottom:689.840000pt;}
.y2{bottom:733.933333pt;}
.y1{bottom:764.400000pt;}
.h3b{height:17.000000pt;}
.h36{height:35.085938pt;}
.h35{height:35.183398pt;}
.h1c{height:35.298828pt;}
.h1d{height:35.405794pt;}
.h16{height:35.918034pt;}
.h3a{height:36.093750pt;}
.h39{height:36.194010pt;}
.h1{height:36.308594pt;}
.h18{height:36.401693pt;}
.h2c{height:38.009766pt;}
.h20{height:41.187370pt;}
.h43{height:41.823763pt;}
.h3d{height:43.778711pt;}
.h31{height:43.857422pt;}
.h33{height:43.954883pt;}
.h34{height:45.217448pt;}
.h41{height:46.593750pt;}
.h40{height:46.690820pt;}
.h2f{height:46.781250pt;}
.h30{height:46.878711pt;}
.h13{height:47.874805pt;}
.hf{height:49.148438pt;}
.h3f{height:52.726367pt;}
.hc{height:53.244141pt;}
.h5{height:53.380664pt;}
.h38{height:55.552734pt;}
.h3e{height:55.650195pt;}
.ha{height:57.736250pt;}
.h28{height:57.873047pt;}
.h9{height:57.896250pt;}
.h29{height:57.964909pt;}
.h4{height:58.242201pt;}
.h26{height:58.652344pt;}
.h27{height:58.745443pt;}
.h10{height:59.677734pt;}
.h3c{height:61.497852pt;}
.h2d{height:63.264323pt;}
.h7{height:63.656250pt;}
.h8{height:63.788867pt;}
.h14{height:65.362917pt;}
.h12{height:65.495534pt;}
.he{height:65.531250pt;}
.h11{height:65.655534pt;}
.h6{height:65.667773pt;}
.h24{height:66.468620pt;}
.h23{height:67.388672pt;}
.h22{height:67.495638pt;}
.h25{height:69.032747pt;}
.h42{height:70.269336pt;}
.hb{height:70.351693pt;}
.h1e{height:71.330933pt;}
.h2a{height:72.287760pt;}
.h17{height:75.949089pt;}
.h1f{height:77.122591pt;}
.h3{height:77.954883pt;}
.h32{height:85.118711pt;}
.hd{height:86.146289pt;}
.h44{height:86.749544pt;}
.h1a{height:87.458724pt;}
.h21{height:87.812305pt;}
.h2b{height:87.909766pt;}
.h2{height:88.371224pt;}
.h37{height:90.612044pt;}
.h19{height:101.230339pt;}
.h1b{height:136.097396pt;}
.h2e{height:151.898177pt;}
.h15{height:202.566016pt;}
.h0{height:720.000000pt;}
.w2{width:46.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x2{left:-378.906686pt;}
.x3{left:-372.640019pt;}
.x7{left:-370.200019pt;}
.x5{left:-348.773352pt;}
.x4{left:-330.066686pt;}
.x6{left:-320.733352pt;}
.x8{left:-268.973352pt;}
.x1{left:-1.266686pt;}
.x0{left:0.000000pt;}
.x14{left:35.266648pt;}
.x19{left:44.899981pt;}
.x2b{left:48.033314pt;}
.x13{left:54.199981pt;}
.x2d{left:64.066648pt;}
.xe{left:68.099981pt;}
.x24{left:72.766648pt;}
.x4e{left:76.599981pt;}
.x18{left:78.533314pt;}
.x2e{left:88.066648pt;}
.x57{left:89.399981pt;}
.x1a{left:98.733314pt;}
.x25{left:102.333314pt;}
.x1b{left:107.899981pt;}
.x26{left:110.066648pt;}
.x49{left:127.433314pt;}
.x48{left:139.093314pt;}
.x12{left:183.693314pt;}
.x56{left:200.773314pt;}
.x45{left:240.959981pt;}
.x1e{left:255.399981pt;}
.x30{left:262.973314pt;}
.x3a{left:278.106648pt;}
.x4f{left:285.866648pt;}
.x32{left:290.733314pt;}
.x5f{left:349.693314pt;}
.x5e{left:356.359981pt;}
.x31{left:379.733314pt;}
.x10{left:383.733314pt;}
.x46{left:391.173314pt;}
.x3b{left:394.506648pt;}
.x4b{left:403.559981pt;}
.x36{left:426.226648pt;}
.x44{left:434.026648pt;}
.x38{left:444.306648pt;}
.x39{left:452.999981pt;}
.x33{left:484.693314pt;}
.x20{left:510.999981pt;}
.x29{left:512.439981pt;}
.x1f{left:513.626648pt;}
.x28{left:515.293314pt;}
.x37{left:522.399981pt;}
.x51{left:531.466648pt;}
.x4a{left:533.026648pt;}
.x35{left:535.759981pt;}
.x47{left:550.000000pt;}
.x34{left:610.959981pt;}
.x43{left:662.093314pt;}
.x53{left:681.173314pt;}
.x52{left:684.399981pt;}
.x50{left:690.559981pt;}
.x5b{left:712.866648pt;}
.x15{left:713.773314pt;}
.x1d{left:749.039981pt;}
.x27{left:751.199981pt;}
.x1c{left:753.799981pt;}
.x4c{left:776.866648pt;}
.x5c{left:786.839981pt;}
.x58{left:822.133314pt;}
.x16{left:831.466648pt;}
.x5a{left:832.733314pt;}
.x55{left:881.666648pt;}
.x54{left:895.559981pt;}
.x2c{left:940.066648pt;}
.x3c{left:951.066648pt;}
.x2a{left:957.799981pt;}
.x21{left:969.066648pt;}
.x3e{left:983.933314pt;}
.x59{left:985.399981pt;}
.x3f{left:999.399981pt;}
.x3d{left:1009.706648pt;}
.x22{left:1017.093314pt;}
.x5d{left:1037.733314pt;}
.x11{left:1049.733314pt;}
.x41{left:1070.333314pt;}
.x40{left:1074.933314pt;}
.x42{left:1097.866648pt;}
.x4d{left:1109.733314pt;}
.x2f{left:1181.359981pt;}
.x17{left:1197.639981pt;}
.x23{left:1198.626648pt;}
.xf{left:1206.173314pt;}
.x9{left:1319.399981pt;}
.xa{left:1325.733314pt;}
.xb{left:1349.559981pt;}
.xc{left:1361.759981pt;}
.xd{left:1385.399981pt;}
}




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