
    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_432c1361b3b00f3987411768.woff')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_3f4f747a9bc05802d8e673b6.woff')format("woff");}.ff2{font-family:ff2;line-height:1.088379;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_2dff2d1092cceae84f2c7ceb.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172363;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_b081b8f8f28dccb0197f9fe1.woff')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_d8cc41e749154fb587815741.woff')format("woff");}.ff5{font-family:ff5;line-height:0.954102;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_2ca943cbc07a542e90b98d7b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.954102;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_1b0709c936cb22d6dbc382d0.woff')format("woff");}.ff7{font-family:ff7;line-height:1.130371;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_35c1b65176db7e33a7cf8df0.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e02476c5f1a6eb164f270728.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_cfbdbe944ef41f3fac66ffec.woff')format("woff");}.ffa{font-family:ffa;line-height:1.130371;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_889a8882ce4b268088094e12.woff')format("woff");}.ffb{font-family:ffb;line-height:1.172363;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_be9fb4ad6e85b7cf79646f4d.woff')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v2{vertical-align:-47.520000px;}
.v4{vertical-align:-33.840000px;}
.v6{vertical-align:-30.960000px;}
.v3{vertical-align:-6.660000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:32.400000px;}
.v5{vertical-align:41.760000px;}
.ls18{letter-spacing:-0.576000px;}
.ls34{letter-spacing:-0.355800px;}
.ls2b{letter-spacing:-0.331800px;}
.ls1d{letter-spacing:-0.328200px;}
.ls33{letter-spacing:-0.313800px;}
.ls37{letter-spacing:-0.310800px;}
.ls15{letter-spacing:-0.302400px;}
.ls12{letter-spacing:-0.291000px;}
.ls1c{letter-spacing:-0.288000px;}
.ls36{letter-spacing:-0.283800px;}
.ls5{letter-spacing:-0.280200px;}
.ls39{letter-spacing:-0.273000px;}
.lsf{letter-spacing:-0.252000px;}
.ls25{letter-spacing:-0.240000px;}
.ls26{letter-spacing:-0.229800px;}
.ls32{letter-spacing:-0.214800px;}
.ls38{letter-spacing:-0.211800px;}
.ls9{letter-spacing:-0.195600px;}
.ls14{letter-spacing:-0.184200px;}
.ls6{letter-spacing:-0.175200px;}
.ls2d{letter-spacing:-0.114000px;}
.ls8{letter-spacing:-0.094800px;}
.ls2c{letter-spacing:-0.091200px;}
.ls35{letter-spacing:-0.087000px;}
.ls28{letter-spacing:-0.085800px;}
.ls7{letter-spacing:-0.085200px;}
.ls31{letter-spacing:-0.055440px;}
.ls21{letter-spacing:-0.037440px;}
.ls16{letter-spacing:-0.005046px;}
.ls1{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.018720px;}
.ls3a{letter-spacing:0.028080px;}
.ls13{letter-spacing:0.036000px;}
.ls1a{letter-spacing:0.064080px;}
.ls23{letter-spacing:0.064200px;}
.lsd{letter-spacing:0.072000px;}
.ls30{letter-spacing:0.078600px;}
.ls3b{letter-spacing:0.091200px;}
.ls11{letter-spacing:0.108000px;}
.ls1b{letter-spacing:0.115800px;}
.ls2a{letter-spacing:0.118200px;}
.lse{letter-spacing:0.141000px;}
.ls10{letter-spacing:0.144000px;}
.ls19{letter-spacing:0.173520px;}
.ls22{letter-spacing:0.216000px;}
.ls27{letter-spacing:0.252000px;}
.ls3c{letter-spacing:0.273000px;}
.ls4{letter-spacing:0.307200px;}
.ls17{letter-spacing:0.322800px;}
.lsc{letter-spacing:0.360000px;}
.ls3e{letter-spacing:0.443400px;}
.ls0{letter-spacing:0.460080px;}
.ls24{letter-spacing:18.528480px;}
.ls3d{letter-spacing:20.880000px;}
.ls3{letter-spacing:29.880000px;}
.ls2f{letter-spacing:89.193600px;}
.ls2e{letter-spacing:89.244000px;}
.lsb{letter-spacing:97.509600px;}
.lsa{letter-spacing:97.560000px;}
.ls29{letter-spacing:101.964000px;}
.ls2{letter-spacing:119.916000px;}
.ls1f{letter-spacing:124.149600px;}
.ls1e{letter-spacing:124.200000px;}
.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;}
}
.ws1a{word-spacing:-108.000000px;}
.ws1e{word-spacing:-54.036000px;}
.ws2d{word-spacing:-48.175800px;}
.ws51{word-spacing:-34.596000px;}
.ws28{word-spacing:-32.940000px;}
.ws1b{word-spacing:-32.576544px;}
.ws2c{word-spacing:-32.040000px;}
.ws3d{word-spacing:-30.160200px;}
.wsa{word-spacing:-30.096000px;}
.ws0{word-spacing:-30.060000px;}
.ws9{word-spacing:-29.965200px;}
.wsc{word-spacing:-29.900400px;}
.ws48{word-spacing:-27.252000px;}
.ws16{word-spacing:-27.036000px;}
.wsf{word-spacing:-27.000000px;}
.ws4c{word-spacing:-23.940000px;}
.ws52{word-spacing:-23.040000px;}
.ws62{word-spacing:-21.151200px;}
.ws6b{word-spacing:-21.060000px;}
.ws4e{word-spacing:-19.038240px;}
.ws2a{word-spacing:-16.344000px;}
.wse{word-spacing:-14.940000px;}
.ws3b{word-spacing:-13.410720px;}
.ws22{word-spacing:-12.204000px;}
.wsd{word-spacing:-3.115680px;}
.ws14{word-spacing:-2.376000px;}
.ws44{word-spacing:-2.098800px;}
.ws46{word-spacing:-2.015280px;}
.ws18{word-spacing:-1.800000px;}
.ws17{word-spacing:-1.656000px;}
.ws5{word-spacing:-1.541040px;}
.ws49{word-spacing:-1.500000px;}
.ws19{word-spacing:-1.452384px;}
.ws66{word-spacing:-1.424640px;}
.ws4a{word-spacing:-1.391760px;}
.ws61{word-spacing:-1.383360px;}
.ws15{word-spacing:-1.368000px;}
.ws65{word-spacing:-1.328160px;}
.ws8{word-spacing:-1.146480px;}
.ws42{word-spacing:-1.075680px;}
.ws6d{word-spacing:-0.999240px;}
.ws6c{word-spacing:-0.942480px;}
.ws35{word-spacing:-0.941616px;}
.ws36{word-spacing:-0.936000px;}
.ws4{word-spacing:-0.925200px;}
.ws6e{word-spacing:-0.846720px;}
.ws2b{word-spacing:-0.843840px;}
.ws12{word-spacing:-0.828000px;}
.ws1f{word-spacing:-0.772560px;}
.ws4b{word-spacing:-0.744240px;}
.ws69{word-spacing:-0.701280px;}
.ws20{word-spacing:-0.662382px;}
.ws67{word-spacing:-0.608160px;}
.ws6a{word-spacing:-0.529200px;}
.ws47{word-spacing:-0.527040px;}
.ws37{word-spacing:-0.468000px;}
.ws64{word-spacing:-0.428160px;}
.ws45{word-spacing:-0.407040px;}
.ws25{word-spacing:-0.380160px;}
.ws1c{word-spacing:-0.379680px;}
.ws41{word-spacing:-0.368256px;}
.wsb{word-spacing:-0.335808px;}
.ws33{word-spacing:-0.289296px;}
.ws63{word-spacing:-0.274320px;}
.ws26{word-spacing:-0.263040px;}
.ws23{word-spacing:-0.216000px;}
.ws5b{word-spacing:-0.210240px;}
.ws2{word-spacing:-0.205200px;}
.ws5d{word-spacing:-0.147240px;}
.ws24{word-spacing:-0.128160px;}
.ws6{word-spacing:-0.085200px;}
.ws39{word-spacing:-0.084240px;}
.ws58{word-spacing:-0.068400px;}
.ws3c{word-spacing:-0.048240px;}
.ws1{word-spacing:0.000000px;}
.ws50{word-spacing:0.135744px;}
.ws2e{word-spacing:0.288000px;}
.ws2f{word-spacing:0.324000px;}
.ws10{word-spacing:0.396000px;}
.ws3f{word-spacing:0.487440px;}
.ws32{word-spacing:0.516000px;}
.ws40{word-spacing:0.529440px;}
.ws11{word-spacing:0.576000px;}
.ws30{word-spacing:0.612000px;}
.ws27{word-spacing:0.643440px;}
.ws5e{word-spacing:0.663600px;}
.ws7{word-spacing:0.664560px;}
.ws59{word-spacing:0.687744px;}
.ws1d{word-spacing:0.754488px;}
.ws21{word-spacing:0.792000px;}
.ws34{word-spacing:0.828000px;}
.ws4f{word-spacing:0.855744px;}
.ws13{word-spacing:0.900000px;}
.ws3{word-spacing:0.936000px;}
.ws5c{word-spacing:0.940224px;}
.ws5f{word-spacing:1.003392px;}
.ws31{word-spacing:1.164000px;}
.ws5a{word-spacing:1.264392px;}
.ws55{word-spacing:1.289880px;}
.ws3e{word-spacing:1.319520px;}
.ws56{word-spacing:1.336224px;}
.ws53{word-spacing:1.477440px;}
.ws68{word-spacing:1.632000px;}
.ws29{word-spacing:1.800000px;}
.ws54{word-spacing:1.809840px;}
.ws57{word-spacing:1.851168px;}
.ws3a{word-spacing:12.769200px;}
.ws38{word-spacing:21.898800px;}
.ws4d{word-spacing:2177.507520px;}
.ws43{word-spacing:2532.728040px;}
.ws60{word-spacing:3750.392040px;}
._c{margin-left:-13.617072px;}
._1b{margin-left:-11.564304px;}
._1c{margin-left:-10.152000px;}
._6{margin-left:-8.684352px;}
._b{margin-left:-7.214400px;}
._4{margin-left:-5.301648px;}
._16{margin-left:-4.212000px;}
._3{margin-left:-3.193872px;}
._13{margin-left:-2.164320px;}
._0{margin-left:-1.116480px;}
._9{width:1.014912px;}
._2{width:2.040576px;}
._1{width:3.078144px;}
._7{width:5.087424px;}
._e{width:6.484320px;}
._5{width:8.538720px;}
._1d{width:12.008448px;}
._21{width:13.114608px;}
._19{width:14.185920px;}
._11{width:15.270096px;}
._1f{width:16.411344px;}
._12{width:18.243600px;}
._23{width:19.451808px;}
._1e{width:20.837424px;}
._22{width:22.464192px;}
._10{width:25.800048px;}
._8{width:27.660384px;}
._18{width:28.836480px;}
._a{width:31.353936px;}
._1a{width:33.298080px;}
._20{width:34.922208px;}
._17{width:37.722096px;}
._14{width:46.929120px;}
._15{width:49.154016px;}
._d{width:52.796928px;}
._f{width:55.481808px;}
.fc3{color:rgb(0,35,70);}
.fc6{color:rgb(137,137,137);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(166,166,166);}
.fc1{color:transparent;}
.fc5{color:rgb(0,32,96);}
.fc0{color:rgb(51,63,80);}
.fs12{font-size:48.240000px;}
.fsc{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fsf{font-size:84.240000px;}
.fs19{font-size:84.384000px;}
.fs16{font-size:92.160000px;}
.fsb{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.fs9{font-size:108.144000px;}
.fs2{font-size:120.240000px;}
.fs5{font-size:120.384000px;}
.fse{font-size:128.160000px;}
.fsd{font-size:131.760000px;}
.fs18{font-size:131.904000px;}
.fs13{font-size:138.240000px;}
.fs15{font-size:138.384000px;}
.fs10{font-size:144.000000px;}
.fsa{font-size:144.144000px;}
.fs11{font-size:180.000000px;}
.fs14{font-size:180.144000px;}
.fs1{font-size:192.240000px;}
.fs0{font-size:192.384000px;}
.fs17{font-size:216.000000px;}
.fs7{font-size:216.144000px;}
.y0{bottom:0.000000px;}
.y84{bottom:5.688000px;}
.y38{bottom:13.536000px;}
.y1b{bottom:14.904000px;}
.yb2{bottom:15.516000px;}
.y59{bottom:26.280000px;}
.y7{bottom:33.372000px;}
.yb1{bottom:38.196000px;}
.yaa{bottom:41.112000px;}
.y55{bottom:42.012000px;}
.y14{bottom:42.228000px;}
.y58{bottom:51.480000px;}
.yb0{bottom:60.876000px;}
.y10{bottom:64.044000px;}
.y16{bottom:64.476000px;}
.y92{bottom:64.980000px;}
.y13{bottom:78.228000px;}
.ya9{bottom:80.748000px;}
.yaf{bottom:83.556000px;}
.y56{bottom:87.732000px;}
.y46{bottom:93.708000px;}
.y7c{bottom:95.868000px;}
.y91{bottom:97.380000px;}
.yae{bottom:106.236000px;}
.y12{bottom:114.228000px;}
.ya8{bottom:120.348000px;}
.y7b{bottom:128.268000px;}
.yad{bottom:128.952000px;}
.y45{bottom:129.744000px;}
.y90{bottom:129.780000px;}
.y9b{bottom:130.176000px;}
.y28{bottom:131.652000px;}
.y9a{bottom:131.796000px;}
.y11{bottom:150.270000px;}
.yac{bottom:151.635000px;}
.y7a{bottom:160.665000px;}
.y8f{bottom:162.180000px;}
.y18{bottom:163.800000px;}
.y27{bottom:164.055000px;}
.y53{bottom:164.730000px;}
.y44{bottom:165.750000px;}
.y60{bottom:167.145000px;}
.y17{bottom:192.960000px;}
.y79{bottom:193.065000px;}
.y26{bottom:196.455000px;}
.ya7{bottom:199.545000px;}
.y37{bottom:200.445000px;}
.y52{bottom:200.775000px;}
.y43{bottom:201.750000px;}
.y5f{bottom:210.345000px;}
.y6{bottom:219.960000px;}
.y8c{bottom:221.295000px;}
.y78{bottom:225.510000px;}
.y25{bottom:228.855000px;}
.y36{bottom:236.445000px;}
.y51{bottom:236.775000px;}
.y42{bottom:237.750000px;}
.ya6{bottom:239.190000px;}
.yf{bottom:241.530000px;}
.y81{bottom:250.710000px;}
.y8b{bottom:253.695000px;}
.y77{bottom:257.910000px;}
.y35{bottom:272.445000px;}
.y50{bottom:272.775000px;}
.y41{bottom:273.750000px;}
.ye{bottom:277.530000px;}
.y80{bottom:282.240000px;}
.y5{bottom:289.290000px;}
.y76{bottom:290.310000px;}
.y24{bottom:293.685000px;}
.y2a{bottom:299.625000px;}
.y34{bottom:308.490000px;}
.y4f{bottom:308.775000px;}
.y40{bottom:309.780000px;}
.y7f{bottom:313.740000px;}
.ya5{bottom:318.390000px;}
.y75{bottom:322.710000px;}
.y4{bottom:325.290000px;}
.y23{bottom:326.085000px;}
.y33{bottom:344.490000px;}
.y4e{bottom:344.775000px;}
.y7e{bottom:345.240000px;}
.y3f{bottom:345.780000px;}
.yd{bottom:349.530000px;}
.y74{bottom:355.110000px;}
.ya4{bottom:357.990000px;}
.y22{bottom:358.485000px;}
.y8e{bottom:375.660000px;}
.y93{bottom:379.290000px;}
.y32{bottom:380.490000px;}
.y4d{bottom:380.805000px;}
.y3e{bottom:381.780000px;}
.y5e{bottom:383.190000px;}
.yc{bottom:385.530000px;}
.y73{bottom:388.080000px;}
.y99{bottom:390.030000px;}
.y21{bottom:390.885000px;}
.ya3{bottom:397.620000px;}
.y7d{bottom:398.880000px;}
.yab{bottom:416.085000px;}
.y31{bottom:416.490000px;}
.y3d{bottom:417.780000px;}
.y20{bottom:423.285000px;}
.y3{bottom:423.360000px;}
.y5d{bottom:426.420000px;}
.y30{bottom:452.490000px;}
.y4c{bottom:454.170000px;}
.y1f{bottom:455.730000px;}
.yb{bottom:457.560000px;}
.y89{bottom:468.615000px;}
.y5c{bottom:469.620000px;}
.y29{bottom:472.140000px;}
.y98{bottom:474.015000px;}
.y2{bottom:475.200000px;}
.ya2{bottom:476.820000px;}
.y72{bottom:482.940000px;}
.y2f{bottom:488.520000px;}
.y4b{bottom:490.170000px;}
.y88{bottom:504.615000px;}
.y3b{bottom:507.165000px;}
.y5b{bottom:512.820000px;}
.y71{bottom:515.340000px;}
.y65{bottom:515.985000px;}
.ya1{bottom:516.420000px;}
.y1e{bottom:520.530000px;}
.y2e{bottom:524.520000px;}
.y4a{bottom:526.215000px;}
.y1{bottom:527.070000px;}
.y97{bottom:531.615000px;}
.y69{bottom:534.315000px;}
.y3c{bottom:539.250000px;}
.y3a{bottom:539.565000px;}
.y87{bottom:540.615000px;}
.y70{bottom:547.770000px;}
.y64{bottom:548.385000px;}
.y1d{bottom:552.930000px;}
.y5a{bottom:556.050000px;}
.y96{bottom:560.415000px;}
.y61{bottom:560.490000px;}
.y49{bottom:562.215000px;}
.y68{bottom:566.715000px;}
.y39{bottom:571.965000px;}
.y86{bottom:576.645000px;}
.y6f{bottom:580.170000px;}
.y63{bottom:580.785000px;}
.y1c{bottom:585.330000px;}
.ya{bottom:587.190000px;}
.ya0{bottom:595.650000px;}
.y48{bottom:598.215000px;}
.y67{bottom:599.145000px;}
.y6e{bottom:612.570000px;}
.y62{bottom:613.185000px;}
.y95{bottom:618.045000px;}
.y9{bottom:623.190000px;}
.y2c{bottom:624.930000px;}
.y66{bottom:631.545000px;}
.y47{bottom:634.215000px;}
.y9f{bottom:635.250000px;}
.y1a{bottom:645.660000px;}
.y94{bottom:646.845000px;}
.y2b{bottom:653.730000px;}
.y6c{bottom:656.205000px;}
.y8{bottom:659.190000px;}
.y85{bottom:673.635000px;}
.y82{bottom:675.000000px;}
.y19{bottom:678.090000px;}
.y6b{bottom:699.405000px;}
.y9c{bottom:699.585000px;}
.y8d{bottom:706.215000px;}
.y9e{bottom:735.090000px;}
.y57{bottom:750.390000px;}
.y54{bottom:752.370000px;}
.y15{bottom:753.480000px;}
.y8a{bottom:753.810000px;}
.y6a{bottom:754.740000px;}
.y2d{bottom:754.770000px;}
.y6d{bottom:756.330000px;}
.y9d{bottom:758.700000px;}
.y83{bottom:759.390000px;}
.hc{height:41.610234px;}
.h1f{height:50.312812px;}
.h15{height:51.416016px;}
.h17{height:58.655391px;}
.h9{height:63.070312px;}
.h24{height:66.676641px;}
.h2b{height:70.583906px;}
.h2c{height:70.704562px;}
.h5{height:71.613281px;}
.hd{height:75.199219px;}
.h11{height:75.299484px;}
.h14{height:80.236406px;}
.he{height:82.532812px;}
.h7{height:83.721797px;}
.h25{height:83.787539px;}
.ha{height:83.822063px;}
.h23{height:85.847344px;}
.h22{height:86.255508px;}
.h1d{height:87.859687px;}
.h4{height:90.492188px;}
.h16{height:91.743047px;}
.h2a{height:91.843312px;}
.hf{height:96.820312px;}
.h10{height:96.949406px;}
.h19{height:100.265625px;}
.h18{height:100.365891px;}
.h3{height:100.747969px;}
.h8{height:100.868625px;}
.h1e{height:107.419922px;}
.h6{height:107.793281px;}
.h12{height:110.583984px;}
.h20{height:115.830000px;}
.h28{height:118.120781px;}
.h29{height:118.249875px;}
.h26{height:118.980000px;}
.h1a{height:120.656250px;}
.h1b{height:120.776906px;}
.h13{height:147.592758px;}
.h1c{height:150.820312px;}
.h21{height:150.940969px;}
.h2{height:161.076094px;}
.h1{height:161.196750px;}
.h27{height:180.984375px;}
.hb{height:181.105031px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x15{left:10.799979px;}
.x3a{left:15.155979px;}
.x1c{left:16.163979px;}
.xa{left:18.035979px;}
.x31{left:20.447979px;}
.x3{left:25.055979px;}
.x44{left:26.747979px;}
.x36{left:28.151979px;}
.x1{left:29.447979px;}
.x41{left:58.535979px;}
.x4{left:65.555979px;}
.x42{left:92.375979px;}
.x39{left:93.455979px;}
.x35{left:147.059979px;}
.x7{left:207.689979px;}
.xe{left:213.479979px;}
.x8{left:219.209979px;}
.x13{left:232.634979px;}
.x6{left:233.999979px;}
.x9{left:278.819979px;}
.x43{left:409.499979px;}
.x14{left:411.044979px;}
.x12{left:478.589979px;}
.x3e{left:481.529979px;}
.xb{left:483.329979px;}
.x40{left:485.129979px;}
.x3c{left:496.259979px;}
.x24{left:507.524979px;}
.x3d{left:530.129979px;}
.x2a{left:576.179979px;}
.x1f{left:577.829979px;}
.x2c{left:600.329979px;}
.x2b{left:606.809979px;}
.x1b{left:695.984979px;}
.x11{left:721.229979px;}
.x25{left:752.654979px;}
.x26{left:754.094979px;}
.x27{left:772.634979px;}
.x28{left:794.234979px;}
.x34{left:842.729979px;}
.xd{left:846.644979px;}
.xc{left:929.879979px;}
.x2f{left:961.769979px;}
.x30{left:985.889979px;}
.x2e{left:996.329979px;}
.x29{left:998.429979px;}
.x1a{left:1010.129979px;}
.x2d{left:1025.849979px;}
.x18{left:1030.469979px;}
.x19{left:1039.649979px;}
.x21{left:1056.674979px;}
.xf{left:1063.544979px;}
.x22{left:1070.849979px;}
.x3f{left:1075.604979px;}
.x10{left:1097.384979px;}
.x3b{left:1101.164979px;}
.x32{left:1103.654979px;}
.x17{left:1138.349979px;}
.x33{left:1144.154979px;}
.x20{left:1147.889979px;}
.x38{left:1177.049979px;}
.x1d{left:1210.784979px;}
.x1e{left:1212.089979px;}
.x23{left:1214.894979px;}
.x16{left:1225.409979px;}
.x5{left:1347.119979px;}
.x37{left:1396.694979px;}
.x2{left:1405.904979px;}
@media print{
.v2{vertical-align:-42.240000pt;}
.v4{vertical-align:-30.080000pt;}
.v6{vertical-align:-27.520000pt;}
.v3{vertical-align:-5.920000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:28.800000pt;}
.v5{vertical-align:37.120000pt;}
.ls18{letter-spacing:-0.512000pt;}
.ls34{letter-spacing:-0.316267pt;}
.ls2b{letter-spacing:-0.294933pt;}
.ls1d{letter-spacing:-0.291733pt;}
.ls33{letter-spacing:-0.278933pt;}
.ls37{letter-spacing:-0.276267pt;}
.ls15{letter-spacing:-0.268800pt;}
.ls12{letter-spacing:-0.258667pt;}
.ls1c{letter-spacing:-0.256000pt;}
.ls36{letter-spacing:-0.252267pt;}
.ls5{letter-spacing:-0.249067pt;}
.ls39{letter-spacing:-0.242667pt;}
.lsf{letter-spacing:-0.224000pt;}
.ls25{letter-spacing:-0.213333pt;}
.ls26{letter-spacing:-0.204267pt;}
.ls32{letter-spacing:-0.190933pt;}
.ls38{letter-spacing:-0.188267pt;}
.ls9{letter-spacing:-0.173867pt;}
.ls14{letter-spacing:-0.163733pt;}
.ls6{letter-spacing:-0.155733pt;}
.ls2d{letter-spacing:-0.101333pt;}
.ls8{letter-spacing:-0.084267pt;}
.ls2c{letter-spacing:-0.081067pt;}
.ls35{letter-spacing:-0.077333pt;}
.ls28{letter-spacing:-0.076267pt;}
.ls7{letter-spacing:-0.075733pt;}
.ls31{letter-spacing:-0.049280pt;}
.ls21{letter-spacing:-0.033280pt;}
.ls16{letter-spacing:-0.004485pt;}
.ls1{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.016640pt;}
.ls3a{letter-spacing:0.024960pt;}
.ls13{letter-spacing:0.032000pt;}
.ls1a{letter-spacing:0.056960pt;}
.ls23{letter-spacing:0.057067pt;}
.lsd{letter-spacing:0.064000pt;}
.ls30{letter-spacing:0.069867pt;}
.ls3b{letter-spacing:0.081067pt;}
.ls11{letter-spacing:0.096000pt;}
.ls1b{letter-spacing:0.102933pt;}
.ls2a{letter-spacing:0.105067pt;}
.lse{letter-spacing:0.125333pt;}
.ls10{letter-spacing:0.128000pt;}
.ls19{letter-spacing:0.154240pt;}
.ls22{letter-spacing:0.192000pt;}
.ls27{letter-spacing:0.224000pt;}
.ls3c{letter-spacing:0.242667pt;}
.ls4{letter-spacing:0.273067pt;}
.ls17{letter-spacing:0.286933pt;}
.lsc{letter-spacing:0.320000pt;}
.ls3e{letter-spacing:0.394133pt;}
.ls0{letter-spacing:0.408960pt;}
.ls24{letter-spacing:16.469760pt;}
.ls3d{letter-spacing:18.560000pt;}
.ls3{letter-spacing:26.560000pt;}
.ls2f{letter-spacing:79.283200pt;}
.ls2e{letter-spacing:79.328000pt;}
.lsb{letter-spacing:86.675200pt;}
.lsa{letter-spacing:86.720000pt;}
.ls29{letter-spacing:90.634667pt;}
.ls2{letter-spacing:106.592000pt;}
.ls1f{letter-spacing:110.355200pt;}
.ls1e{letter-spacing:110.400000pt;}
.ws1a{word-spacing:-96.000000pt;}
.ws1e{word-spacing:-48.032000pt;}
.ws2d{word-spacing:-42.822933pt;}
.ws51{word-spacing:-30.752000pt;}
.ws28{word-spacing:-29.280000pt;}
.ws1b{word-spacing:-28.956928pt;}
.ws2c{word-spacing:-28.480000pt;}
.ws3d{word-spacing:-26.809067pt;}
.wsa{word-spacing:-26.752000pt;}
.ws0{word-spacing:-26.720000pt;}
.ws9{word-spacing:-26.635733pt;}
.wsc{word-spacing:-26.578133pt;}
.ws48{word-spacing:-24.224000pt;}
.ws16{word-spacing:-24.032000pt;}
.wsf{word-spacing:-24.000000pt;}
.ws4c{word-spacing:-21.280000pt;}
.ws52{word-spacing:-20.480000pt;}
.ws62{word-spacing:-18.801067pt;}
.ws6b{word-spacing:-18.720000pt;}
.ws4e{word-spacing:-16.922880pt;}
.ws2a{word-spacing:-14.528000pt;}
.wse{word-spacing:-13.280000pt;}
.ws3b{word-spacing:-11.920640pt;}
.ws22{word-spacing:-10.848000pt;}
.wsd{word-spacing:-2.769493pt;}
.ws14{word-spacing:-2.112000pt;}
.ws44{word-spacing:-1.865600pt;}
.ws46{word-spacing:-1.791360pt;}
.ws18{word-spacing:-1.600000pt;}
.ws17{word-spacing:-1.472000pt;}
.ws5{word-spacing:-1.369813pt;}
.ws49{word-spacing:-1.333333pt;}
.ws19{word-spacing:-1.291008pt;}
.ws66{word-spacing:-1.266347pt;}
.ws4a{word-spacing:-1.237120pt;}
.ws61{word-spacing:-1.229653pt;}
.ws15{word-spacing:-1.216000pt;}
.ws65{word-spacing:-1.180587pt;}
.ws8{word-spacing:-1.019093pt;}
.ws42{word-spacing:-0.956160pt;}
.ws6d{word-spacing:-0.888213pt;}
.ws6c{word-spacing:-0.837760pt;}
.ws35{word-spacing:-0.836992pt;}
.ws36{word-spacing:-0.832000pt;}
.ws4{word-spacing:-0.822400pt;}
.ws6e{word-spacing:-0.752640pt;}
.ws2b{word-spacing:-0.750080pt;}
.ws12{word-spacing:-0.736000pt;}
.ws1f{word-spacing:-0.686720pt;}
.ws4b{word-spacing:-0.661547pt;}
.ws69{word-spacing:-0.623360pt;}
.ws20{word-spacing:-0.588784pt;}
.ws67{word-spacing:-0.540587pt;}
.ws6a{word-spacing:-0.470400pt;}
.ws47{word-spacing:-0.468480pt;}
.ws37{word-spacing:-0.416000pt;}
.ws64{word-spacing:-0.380587pt;}
.ws45{word-spacing:-0.361813pt;}
.ws25{word-spacing:-0.337920pt;}
.ws1c{word-spacing:-0.337493pt;}
.ws41{word-spacing:-0.327339pt;}
.wsb{word-spacing:-0.298496pt;}
.ws33{word-spacing:-0.257152pt;}
.ws63{word-spacing:-0.243840pt;}
.ws26{word-spacing:-0.233813pt;}
.ws23{word-spacing:-0.192000pt;}
.ws5b{word-spacing:-0.186880pt;}
.ws2{word-spacing:-0.182400pt;}
.ws5d{word-spacing:-0.130880pt;}
.ws24{word-spacing:-0.113920pt;}
.ws6{word-spacing:-0.075733pt;}
.ws39{word-spacing:-0.074880pt;}
.ws58{word-spacing:-0.060800pt;}
.ws3c{word-spacing:-0.042880pt;}
.ws1{word-spacing:0.000000pt;}
.ws50{word-spacing:0.120661pt;}
.ws2e{word-spacing:0.256000pt;}
.ws2f{word-spacing:0.288000pt;}
.ws10{word-spacing:0.352000pt;}
.ws3f{word-spacing:0.433280pt;}
.ws32{word-spacing:0.458667pt;}
.ws40{word-spacing:0.470613pt;}
.ws11{word-spacing:0.512000pt;}
.ws30{word-spacing:0.544000pt;}
.ws27{word-spacing:0.571947pt;}
.ws5e{word-spacing:0.589867pt;}
.ws7{word-spacing:0.590720pt;}
.ws59{word-spacing:0.611328pt;}
.ws1d{word-spacing:0.670656pt;}
.ws21{word-spacing:0.704000pt;}
.ws34{word-spacing:0.736000pt;}
.ws4f{word-spacing:0.760661pt;}
.ws13{word-spacing:0.800000pt;}
.ws3{word-spacing:0.832000pt;}
.ws5c{word-spacing:0.835755pt;}
.ws5f{word-spacing:0.891904pt;}
.ws31{word-spacing:1.034667pt;}
.ws5a{word-spacing:1.123904pt;}
.ws55{word-spacing:1.146560pt;}
.ws3e{word-spacing:1.172907pt;}
.ws56{word-spacing:1.187755pt;}
.ws53{word-spacing:1.313280pt;}
.ws68{word-spacing:1.450667pt;}
.ws29{word-spacing:1.600000pt;}
.ws54{word-spacing:1.608747pt;}
.ws57{word-spacing:1.645483pt;}
.ws3a{word-spacing:11.350400pt;}
.ws38{word-spacing:19.465600pt;}
.ws4d{word-spacing:1935.562240pt;}
.ws43{word-spacing:2251.313813pt;}
.ws60{word-spacing:3333.681813pt;}
._c{margin-left:-12.104064pt;}
._1b{margin-left:-10.279381pt;}
._1c{margin-left:-9.024000pt;}
._6{margin-left:-7.719424pt;}
._b{margin-left:-6.412800pt;}
._4{margin-left:-4.712576pt;}
._16{margin-left:-3.744000pt;}
._3{margin-left:-2.838997pt;}
._13{margin-left:-1.923840pt;}
._0{margin-left:-0.992427pt;}
._9{width:0.902144pt;}
._2{width:1.813845pt;}
._1{width:2.736128pt;}
._7{width:4.522155pt;}
._e{width:5.763840pt;}
._5{width:7.589973pt;}
._1d{width:10.674176pt;}
._21{width:11.657429pt;}
._19{width:12.609707pt;}
._11{width:13.573419pt;}
._1f{width:14.587861pt;}
._12{width:16.216533pt;}
._23{width:17.290496pt;}
._1e{width:18.522155pt;}
._22{width:19.968171pt;}
._10{width:22.933376pt;}
._8{width:24.587008pt;}
._18{width:25.632427pt;}
._a{width:27.870165pt;}
._1a{width:29.598293pt;}
._20{width:31.041963pt;}
._17{width:33.530752pt;}
._14{width:41.714773pt;}
._15{width:43.692459pt;}
._d{width:46.930603pt;}
._f{width:49.317163pt;}
.fs12{font-size:42.880000pt;}
.fsc{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fsf{font-size:74.880000pt;}
.fs19{font-size:75.008000pt;}
.fs16{font-size:81.920000pt;}
.fsb{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.fs9{font-size:96.128000pt;}
.fs2{font-size:106.880000pt;}
.fs5{font-size:107.008000pt;}
.fse{font-size:113.920000pt;}
.fsd{font-size:117.120000pt;}
.fs18{font-size:117.248000pt;}
.fs13{font-size:122.880000pt;}
.fs15{font-size:123.008000pt;}
.fs10{font-size:128.000000pt;}
.fsa{font-size:128.128000pt;}
.fs11{font-size:160.000000pt;}
.fs14{font-size:160.128000pt;}
.fs1{font-size:170.880000pt;}
.fs0{font-size:171.008000pt;}
.fs17{font-size:192.000000pt;}
.fs7{font-size:192.128000pt;}
.y0{bottom:0.000000pt;}
.y84{bottom:5.056000pt;}
.y38{bottom:12.032000pt;}
.y1b{bottom:13.248000pt;}
.yb2{bottom:13.792000pt;}
.y59{bottom:23.360000pt;}
.y7{bottom:29.664000pt;}
.yb1{bottom:33.952000pt;}
.yaa{bottom:36.544000pt;}
.y55{bottom:37.344000pt;}
.y14{bottom:37.536000pt;}
.y58{bottom:45.760000pt;}
.yb0{bottom:54.112000pt;}
.y10{bottom:56.928000pt;}
.y16{bottom:57.312000pt;}
.y92{bottom:57.760000pt;}
.y13{bottom:69.536000pt;}
.ya9{bottom:71.776000pt;}
.yaf{bottom:74.272000pt;}
.y56{bottom:77.984000pt;}
.y46{bottom:83.296000pt;}
.y7c{bottom:85.216000pt;}
.y91{bottom:86.560000pt;}
.yae{bottom:94.432000pt;}
.y12{bottom:101.536000pt;}
.ya8{bottom:106.976000pt;}
.y7b{bottom:114.016000pt;}
.yad{bottom:114.624000pt;}
.y45{bottom:115.328000pt;}
.y90{bottom:115.360000pt;}
.y9b{bottom:115.712000pt;}
.y28{bottom:117.024000pt;}
.y9a{bottom:117.152000pt;}
.y11{bottom:133.573333pt;}
.yac{bottom:134.786667pt;}
.y7a{bottom:142.813333pt;}
.y8f{bottom:144.160000pt;}
.y18{bottom:145.600000pt;}
.y27{bottom:145.826667pt;}
.y53{bottom:146.426667pt;}
.y44{bottom:147.333333pt;}
.y60{bottom:148.573333pt;}
.y17{bottom:171.520000pt;}
.y79{bottom:171.613333pt;}
.y26{bottom:174.626667pt;}
.ya7{bottom:177.373333pt;}
.y37{bottom:178.173333pt;}
.y52{bottom:178.466667pt;}
.y43{bottom:179.333333pt;}
.y5f{bottom:186.973333pt;}
.y6{bottom:195.520000pt;}
.y8c{bottom:196.706667pt;}
.y78{bottom:200.453333pt;}
.y25{bottom:203.426667pt;}
.y36{bottom:210.173333pt;}
.y51{bottom:210.466667pt;}
.y42{bottom:211.333333pt;}
.ya6{bottom:212.613333pt;}
.yf{bottom:214.693333pt;}
.y81{bottom:222.853333pt;}
.y8b{bottom:225.506667pt;}
.y77{bottom:229.253333pt;}
.y35{bottom:242.173333pt;}
.y50{bottom:242.466667pt;}
.y41{bottom:243.333333pt;}
.ye{bottom:246.693333pt;}
.y80{bottom:250.880000pt;}
.y5{bottom:257.146667pt;}
.y76{bottom:258.053333pt;}
.y24{bottom:261.053333pt;}
.y2a{bottom:266.333333pt;}
.y34{bottom:274.213333pt;}
.y4f{bottom:274.466667pt;}
.y40{bottom:275.360000pt;}
.y7f{bottom:278.880000pt;}
.ya5{bottom:283.013333pt;}
.y75{bottom:286.853333pt;}
.y4{bottom:289.146667pt;}
.y23{bottom:289.853333pt;}
.y33{bottom:306.213333pt;}
.y4e{bottom:306.466667pt;}
.y7e{bottom:306.880000pt;}
.y3f{bottom:307.360000pt;}
.yd{bottom:310.693333pt;}
.y74{bottom:315.653333pt;}
.ya4{bottom:318.213333pt;}
.y22{bottom:318.653333pt;}
.y8e{bottom:333.920000pt;}
.y93{bottom:337.146667pt;}
.y32{bottom:338.213333pt;}
.y4d{bottom:338.493333pt;}
.y3e{bottom:339.360000pt;}
.y5e{bottom:340.613333pt;}
.yc{bottom:342.693333pt;}
.y73{bottom:344.960000pt;}
.y99{bottom:346.693333pt;}
.y21{bottom:347.453333pt;}
.ya3{bottom:353.440000pt;}
.y7d{bottom:354.560000pt;}
.yab{bottom:369.853333pt;}
.y31{bottom:370.213333pt;}
.y3d{bottom:371.360000pt;}
.y20{bottom:376.253333pt;}
.y3{bottom:376.320000pt;}
.y5d{bottom:379.040000pt;}
.y30{bottom:402.213333pt;}
.y4c{bottom:403.706667pt;}
.y1f{bottom:405.093333pt;}
.yb{bottom:406.720000pt;}
.y89{bottom:416.546667pt;}
.y5c{bottom:417.440000pt;}
.y29{bottom:419.680000pt;}
.y98{bottom:421.346667pt;}
.y2{bottom:422.400000pt;}
.ya2{bottom:423.840000pt;}
.y72{bottom:429.280000pt;}
.y2f{bottom:434.240000pt;}
.y4b{bottom:435.706667pt;}
.y88{bottom:448.546667pt;}
.y3b{bottom:450.813333pt;}
.y5b{bottom:455.840000pt;}
.y71{bottom:458.080000pt;}
.y65{bottom:458.653333pt;}
.ya1{bottom:459.040000pt;}
.y1e{bottom:462.693333pt;}
.y2e{bottom:466.240000pt;}
.y4a{bottom:467.746667pt;}
.y1{bottom:468.506667pt;}
.y97{bottom:472.546667pt;}
.y69{bottom:474.946667pt;}
.y3c{bottom:479.333333pt;}
.y3a{bottom:479.613333pt;}
.y87{bottom:480.546667pt;}
.y70{bottom:486.906667pt;}
.y64{bottom:487.453333pt;}
.y1d{bottom:491.493333pt;}
.y5a{bottom:494.266667pt;}
.y96{bottom:498.146667pt;}
.y61{bottom:498.213333pt;}
.y49{bottom:499.746667pt;}
.y68{bottom:503.746667pt;}
.y39{bottom:508.413333pt;}
.y86{bottom:512.573333pt;}
.y6f{bottom:515.706667pt;}
.y63{bottom:516.253333pt;}
.y1c{bottom:520.293333pt;}
.ya{bottom:521.946667pt;}
.ya0{bottom:529.466667pt;}
.y48{bottom:531.746667pt;}
.y67{bottom:532.573333pt;}
.y6e{bottom:544.506667pt;}
.y62{bottom:545.053333pt;}
.y95{bottom:549.373333pt;}
.y9{bottom:553.946667pt;}
.y2c{bottom:555.493333pt;}
.y66{bottom:561.373333pt;}
.y47{bottom:563.746667pt;}
.y9f{bottom:564.666667pt;}
.y1a{bottom:573.920000pt;}
.y94{bottom:574.973333pt;}
.y2b{bottom:581.093333pt;}
.y6c{bottom:583.293333pt;}
.y8{bottom:585.946667pt;}
.y85{bottom:598.786667pt;}
.y82{bottom:600.000000pt;}
.y19{bottom:602.746667pt;}
.y6b{bottom:621.693333pt;}
.y9c{bottom:621.853333pt;}
.y8d{bottom:627.746667pt;}
.y9e{bottom:653.413333pt;}
.y57{bottom:667.013333pt;}
.y54{bottom:668.773333pt;}
.y15{bottom:669.760000pt;}
.y8a{bottom:670.053333pt;}
.y6a{bottom:670.880000pt;}
.y2d{bottom:670.906667pt;}
.y6d{bottom:672.293333pt;}
.y9d{bottom:674.400000pt;}
.y83{bottom:675.013333pt;}
.hc{height:36.986875pt;}
.h1f{height:44.722500pt;}
.h15{height:45.703125pt;}
.h17{height:52.138125pt;}
.h9{height:56.062500pt;}
.h24{height:59.268125pt;}
.h2b{height:62.741250pt;}
.h2c{height:62.848500pt;}
.h5{height:63.656250pt;}
.hd{height:66.843750pt;}
.h11{height:66.932875pt;}
.h14{height:71.321250pt;}
.he{height:73.362500pt;}
.h7{height:74.419375pt;}
.h25{height:74.477812pt;}
.ha{height:74.508500pt;}
.h23{height:76.308750pt;}
.h22{height:76.671562pt;}
.h1d{height:78.097500pt;}
.h4{height:80.437500pt;}
.h16{height:81.549375pt;}
.h2a{height:81.638500pt;}
.hf{height:86.062500pt;}
.h10{height:86.177250pt;}
.h19{height:89.125000pt;}
.h18{height:89.214125pt;}
.h3{height:89.553750pt;}
.h8{height:89.661000pt;}
.h1e{height:95.484375pt;}
.h6{height:95.816250pt;}
.h12{height:98.296875pt;}
.h20{height:102.960000pt;}
.h28{height:104.996250pt;}
.h29{height:105.111000pt;}
.h26{height:105.760000pt;}
.h1a{height:107.250000pt;}
.h1b{height:107.357250pt;}
.h13{height:131.193562pt;}
.h1c{height:134.062500pt;}
.h21{height:134.169750pt;}
.h2{height:143.178750pt;}
.h1{height:143.286000pt;}
.h27{height:160.875000pt;}
.hb{height:160.982250pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x15{left:9.599981pt;}
.x3a{left:13.471981pt;}
.x1c{left:14.367981pt;}
.xa{left:16.031981pt;}
.x31{left:18.175981pt;}
.x3{left:22.271981pt;}
.x44{left:23.775981pt;}
.x36{left:25.023981pt;}
.x1{left:26.175981pt;}
.x41{left:52.031981pt;}
.x4{left:58.271981pt;}
.x42{left:82.111981pt;}
.x39{left:83.071981pt;}
.x35{left:130.719981pt;}
.x7{left:184.613314pt;}
.xe{left:189.759981pt;}
.x8{left:194.853314pt;}
.x13{left:206.786648pt;}
.x6{left:207.999981pt;}
.x9{left:247.839981pt;}
.x43{left:363.999981pt;}
.x14{left:365.373314pt;}
.x12{left:425.413314pt;}
.x3e{left:428.026648pt;}
.xb{left:429.626648pt;}
.x40{left:431.226648pt;}
.x3c{left:441.119981pt;}
.x24{left:451.133314pt;}
.x3d{left:471.226648pt;}
.x2a{left:512.159981pt;}
.x1f{left:513.626648pt;}
.x2c{left:533.626648pt;}
.x2b{left:539.386648pt;}
.x1b{left:618.653314pt;}
.x11{left:641.093314pt;}
.x25{left:669.026648pt;}
.x26{left:670.306648pt;}
.x27{left:686.786648pt;}
.x28{left:705.986648pt;}
.x34{left:749.093314pt;}
.xd{left:752.573314pt;}
.xc{left:826.559981pt;}
.x2f{left:854.906648pt;}
.x30{left:876.346648pt;}
.x2e{left:885.626648pt;}
.x29{left:887.493314pt;}
.x1a{left:897.893314pt;}
.x2d{left:911.866648pt;}
.x18{left:915.973314pt;}
.x19{left:924.133314pt;}
.x21{left:939.266648pt;}
.xf{left:945.373314pt;}
.x22{left:951.866648pt;}
.x3f{left:956.093314pt;}
.x10{left:975.453314pt;}
.x3b{left:978.813314pt;}
.x32{left:981.026648pt;}
.x17{left:1011.866648pt;}
.x33{left:1017.026648pt;}
.x20{left:1020.346648pt;}
.x38{left:1046.266648pt;}
.x1d{left:1076.253314pt;}
.x1e{left:1077.413314pt;}
.x23{left:1079.906648pt;}
.x16{left:1089.253314pt;}
.x5{left:1197.439981pt;}
.x37{left:1241.506648pt;}
.x2{left:1249.693314pt;}
}




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