
    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_cff4e5bc9e38972173862c01.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682129;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_676757cbb3f3bc2516e59ed5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.706543;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_65eca8e67ac868cdb715eca7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.860352;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_0b4b96c040bebe677899a104.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_778a65e7e82dcea11bb1b87e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2a1030a1e669fee7f9ec7eae.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_1211a5e9657bfc1676b88ec5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.104004;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_9091c1195ad3d4f73900ffa6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_83536bc573f3e09ee5038963.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.093262;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_1259efca6e8e539fcc0fb824.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_ac99be0681767d03313ce8ab.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.888184;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_8251a751dc04de578c6b7712.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_56c833c7c7bd64c88dbecd41.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_7b433ceb491c5501862299e0.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.706055;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_8ed6cbb0ffceac43298f1260.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_d7ea15f5025ac510c0bcbf43.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_7eba3d13f2c71c63df8cb423.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.908203;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_8fa32f37c83d8c1d7ffa93de.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_56796f4cd8f9c1b9b4afcfe3.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_5a33d5c21bc8041094c0edd3.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_907d74be3e5c2b9c5356200c.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_f5364738c00273d2095f0f76.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_f3c525b891ef0f41a5aa6dbc.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_973478cb49c7265144c1d9df.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-24.480000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls39{letter-spacing:-0.914400px;}
.ls23{letter-spacing:-0.417312px;}
.ls20{letter-spacing:-0.338688px;}
.ls1e{letter-spacing:-0.320544px;}
.ls27{letter-spacing:-0.309600px;}
.ls1d{letter-spacing:-0.302400px;}
.ls28{letter-spacing:-0.288000px;}
.ls22{letter-spacing:-0.260064px;}
.ls1f{letter-spacing:-0.241920px;}
.ls24{letter-spacing:-0.223776px;}
.ls25{letter-spacing:-0.175392px;}
.ls16{letter-spacing:-0.165600px;}
.ls17{letter-spacing:-0.158976px;}
.ls15{letter-spacing:-0.152352px;}
.ls21{letter-spacing:-0.145152px;}
.ls14{letter-spacing:-0.112608px;}
.ls1a{letter-spacing:-0.014400px;}
.ls13{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.000576px;}
.ls1{letter-spacing:0.014400px;}
.ls1b{letter-spacing:0.158688px;}
.lsd{letter-spacing:0.239040px;}
.lse{letter-spacing:0.240048px;}
.ls10{letter-spacing:0.240480px;}
.ls1c{letter-spacing:0.242352px;}
.ls3{letter-spacing:0.275616px;}
.ls5{letter-spacing:0.283968px;}
.ls12{letter-spacing:0.300672px;}
.ls4{letter-spacing:0.317376px;}
.ls7{letter-spacing:0.359136px;}
.lsb{letter-spacing:0.367488px;}
.lsc{letter-spacing:0.420336px;}
.ls9{letter-spacing:0.914400px;}
.ls6{letter-spacing:0.915840px;}
.ls8{letter-spacing:1.215360px;}
.lsa{letter-spacing:1.368000px;}
.ls38{letter-spacing:1.396800px;}
.ls19{letter-spacing:1.599408px;}
.ls18{letter-spacing:2.083824px;}
.ls33{letter-spacing:2.399040px;}
.ls0{letter-spacing:5.407244px;}
.ls35{letter-spacing:5.996160px;}
.ls36{letter-spacing:5.999040px;}
.ls2{letter-spacing:6.300288px;}
.ls32{letter-spacing:7.800480px;}
.ls2c{letter-spacing:10.500048px;}
.ls2e{letter-spacing:13.800960px;}
.ls31{letter-spacing:17.828496px;}
.ls30{letter-spacing:17.828640px;}
.ls26{letter-spacing:18.128160px;}
.ls11{letter-spacing:19.344816px;}
.ls2f{letter-spacing:22.603680px;}
.ls29{letter-spacing:22.989168px;}
.ls2b{letter-spacing:28.007424px;}
.ls34{letter-spacing:28.195344px;}
.ls2a{letter-spacing:28.607904px;}
.ls37{letter-spacing:43.594560px;}
.lsf{letter-spacing:49.816800px;}
.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;}
}
.wse{word-spacing:-21.239136px;}
.wsb{word-spacing:-21.197376px;}
.wsc{word-spacing:-21.163968px;}
.wsa{word-spacing:-21.155616px;}
.wsd{word-spacing:-21.038688px;}
.ws9{word-spacing:-18.014400px;}
.ws10{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.985600px;}
.ws1d{word-spacing:-17.712000px;}
.ws1e{word-spacing:-17.697600px;}
.ws1c{word-spacing:-17.690400px;}
.ws1f{word-spacing:-17.085600px;}
.ws12{word-spacing:-15.120000px;}
.ws16{word-spacing:-14.974848px;}
.ws19{word-spacing:-14.944608px;}
.ws1a{word-spacing:-14.896224px;}
.ws14{word-spacing:-14.878080px;}
.ws17{word-spacing:-14.859936px;}
.ws11{word-spacing:-14.817600px;}
.ws13{word-spacing:-14.799456px;}
.ws15{word-spacing:-14.781312px;}
.ws18{word-spacing:-14.702688px;}
.ws7{word-spacing:-13.693104px;}
.wsf{word-spacing:-12.122352px;}
.ws0{word-spacing:-0.384192px;}
.ws2{word-spacing:-0.083520px;}
.ws1{word-spacing:-0.066240px;}
.ws1b{word-spacing:0.000000px;}
.ws3{word-spacing:0.046368px;}
.ws4{word-spacing:0.086112px;}
.ws6{word-spacing:0.092736px;}
.ws5{word-spacing:0.099360px;}
._13{margin-left:-14.245632px;}
._1b{margin-left:-4.965264px;}
._5{margin-left:-3.820464px;}
._0{margin-left:-2.357424px;}
._1{margin-left:-1.008432px;}
._4{width:1.166400px;}
._3{width:2.592000px;}
._a{width:3.657600px;}
._7{width:5.630400px;}
._c{width:7.257600px;}
._16{width:8.359200px;}
._6{width:9.403200px;}
._11{width:10.559664px;}
._b{width:12.441600px;}
._2{width:14.097600px;}
._9{width:15.825600px;}
._14{width:16.891200px;}
._12{width:19.595520px;}
._8{width:20.622816px;}
._18{width:22.358016px;}
._15{width:23.569632px;}
._19{width:24.797088px;}
._1d{width:25.872048px;}
._e{width:27.216000px;}
._1a{width:28.645920px;}
._17{width:30.521376px;}
._1e{width:31.927536px;}
._1f{width:34.841232px;}
._22{width:36.338400px;}
._20{width:38.873088px;}
._f{width:41.693040px;}
._26{width:43.308144px;}
._27{width:44.374608px;}
._10{width:49.829904px;}
._1c{width:52.853904px;}
._21{width:70.938720px;}
._d{width:82.517760px;}
._23{width:114.187392px;}
._25{width:127.230768px;}
._24{width:210.924864px;}
.fc1{color:rgb(236,29,35);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:21.600000px;}
.fs5{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs9{font-size:47.520000px;}
.fs3{font-size:60.480000px;}
.fsa{font-size:63.360000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:69.120000px;}
.fs6{font-size:72.000000px;}
.fs8{font-size:74.880000px;}
.fsb{font-size:77.760000px;}
.fs0{font-size:83.520000px;}
.fsc{font-size:110.880000px;}
.y0{bottom:0.000000px;}
.y6{bottom:3.480000px;}
.y3d{bottom:4.200000px;}
.y4{bottom:6.420000px;}
.y2{bottom:6.600000px;}
.y90{bottom:10.860000px;}
.y94{bottom:11.040000px;}
.y97{bottom:11.340000px;}
.y8c{bottom:11.400000px;}
.y92{bottom:11.880000px;}
.y8e{bottom:12.060000px;}
.y8a{bottom:15.780000px;}
.y96{bottom:18.540000px;}
.y3c{bottom:21.480000px;}
.y139{bottom:27.120000px;}
.y3b{bottom:38.760000px;}
.y138{bottom:47.640000px;}
.y3a{bottom:56.040000px;}
.y137{bottom:68.160000px;}
.y39{bottom:73.320000px;}
.y136{bottom:89.040000px;}
.y38{bottom:90.600000px;}
.y135{bottom:109.560000px;}
.y37{bottom:109.680000px;}
.y22{bottom:117.480000px;}
.y111{bottom:119.640000px;}
.ydb{bottom:123.600000px;}
.yaf{bottom:127.200000px;}
.y36{bottom:128.040000px;}
.y81{bottom:128.280000px;}
.y6f{bottom:128.640000px;}
.ye8{bottom:129.000000px;}
.y134{bottom:130.440000px;}
.y21{bottom:138.360000px;}
.y110{bottom:140.160000px;}
.yda{bottom:144.480000px;}
.y35{bottom:146.040000px;}
.yae{bottom:148.080000px;}
.ya3{bottom:148.440000px;}
.y80{bottom:149.160000px;}
.y6e{bottom:149.520000px;}
.ye7{bottom:149.880000px;}
.y133{bottom:150.960000px;}
.y20{bottom:158.880000px;}
.y10f{bottom:161.040000px;}
.y34{bottom:163.680000px;}
.yd9{bottom:165.000000px;}
.yad{bottom:168.240000px;}
.ya2{bottom:169.320000px;}
.y7f{bottom:169.680000px;}
.y6d{bottom:170.040000px;}
.ye6{bottom:170.400000px;}
.y132{bottom:171.840000px;}
.yc8{bottom:174.720000px;}
.y1f{bottom:179.760000px;}
.y10e{bottom:181.560000px;}
.y33{bottom:184.920000px;}
.yd8{bottom:185.880000px;}
.yac{bottom:188.040000px;}
.ya1{bottom:190.200000px;}
.y7e{bottom:190.560000px;}
.y6c{bottom:190.920000px;}
.ye5{bottom:191.280000px;}
.y131{bottom:192.360000px;}
.yc7{bottom:195.240000px;}
.y1e{bottom:199.920000px;}
.y10d{bottom:201.720000px;}
.y32{bottom:205.440000px;}
.yd7{bottom:206.400000px;}
.yab{bottom:210.360000px;}
.y7d{bottom:211.080000px;}
.y6b{bottom:211.440000px;}
.ye4{bottom:211.800000px;}
.y11b{bottom:212.160000px;}
.y130{bottom:213.240000px;}
.yc6{bottom:216.120000px;}
.y1d{bottom:220.800000px;}
.y10c{bottom:221.520000px;}
.y31{bottom:225.960000px;}
.yd6{bottom:227.280000px;}
.yaa{bottom:230.160000px;}
.y7c{bottom:231.960000px;}
.y6a{bottom:232.320000px;}
.ye3{bottom:232.680000px;}
.y12f{bottom:233.760000px;}
.yc5{bottom:236.640000px;}
.y1c{bottom:241.680000px;}
.y10b{bottom:243.480000px;}
.yd5{bottom:247.800000px;}
.y30{bottom:252.600000px;}
.y69{bottom:252.840000px;}
.ya0{bottom:253.200000px;}
.y11a{bottom:253.560000px;}
.y12e{bottom:254.640000px;}
.yc4{bottom:257.520000px;}
.y1b{bottom:262.560000px;}
.yd4{bottom:268.680000px;}
.y7b{bottom:273.000000px;}
.y2f{bottom:273.480000px;}
.y68{bottom:273.720000px;}
.yf3{bottom:274.080000px;}
.y12d{bottom:275.160000px;}
.yc3{bottom:278.040000px;}
.y1a{bottom:283.080000px;}
.y2e{bottom:287.160000px;}
.yd3{bottom:289.200000px;}
.y67{bottom:294.240000px;}
.y9f{bottom:294.600000px;}
.y12c{bottom:296.040000px;}
.yc2{bottom:298.920000px;}
.y19{bottom:303.960000px;}
.yd2{bottom:310.080000px;}
.y2d{bottom:314.160000px;}
.y7a{bottom:314.400000px;}
.ye2{bottom:314.760000px;}
.y66{bottom:315.120000px;}
.yf2{bottom:315.480000px;}
.y12b{bottom:316.560000px;}
.yc1{bottom:319.440000px;}
.y18{bottom:324.480000px;}
.y2c{bottom:329.280000px;}
.yd1{bottom:330.600000px;}
.y79{bottom:335.280000px;}
.y65{bottom:335.640000px;}
.y9e{bottom:336.000000px;}
.y12a{bottom:337.440000px;}
.yc0{bottom:340.320000px;}
.y17{bottom:345.360000px;}
.yd0{bottom:351.480000px;}
.y2b{bottom:352.680000px;}
.ye1{bottom:356.160000px;}
.y64{bottom:356.520000px;}
.yf1{bottom:356.880000px;}
.y129{bottom:357.960000px;}
.ybf{bottom:361.200000px;}
.y16{bottom:365.880000px;}
.ycf{bottom:371.640000px;}
.y2a{bottom:374.640000px;}
.y63{bottom:377.040000px;}
.yf0{bottom:377.400000px;}
.y128{bottom:378.840000px;}
.ybe{bottom:381.720000px;}
.y15{bottom:386.760000px;}
.yce{bottom:392.520000px;}
.y29{bottom:396.600000px;}
.ye0{bottom:397.560000px;}
.y62{bottom:397.920000px;}
.y9d{bottom:398.280000px;}
.y127{bottom:399.360000px;}
.ybd{bottom:402.600000px;}
.y14{bottom:407.280000px;}
.ycd{bottom:415.200000px;}
.y28{bottom:417.480000px;}
.y119{bottom:417.720000px;}
.y78{bottom:418.440000px;}
.y61{bottom:418.800000px;}
.y126{bottom:420.240000px;}
.ybc{bottom:423.120000px;}
.y13{bottom:428.160000px;}
.y118{bottom:438.600000px;}
.y60{bottom:439.320000px;}
.y9c{bottom:439.680000px;}
.y27{bottom:440.160000px;}
.y125{bottom:440.760000px;}
.ybb{bottom:444.000000px;}
.y12{bottom:448.680000px;}
.y77{bottom:459.480000px;}
.ydf{bottom:459.840000px;}
.y5f{bottom:460.200000px;}
.y124{bottom:461.640000px;}
.yba{bottom:464.160000px;}
.y26{bottom:464.280000px;}
.y11{bottom:469.560000px;}
.y76{bottom:480.360000px;}
.y5e{bottom:480.720000px;}
.y9b{bottom:481.080000px;}
.y123{bottom:482.160000px;}
.yb9{bottom:484.680000px;}
.y25{bottom:488.400000px;}
.y10{bottom:490.080000px;}
.yef{bottom:500.880000px;}
.y75{bottom:501.240000px;}
.y5d{bottom:501.600000px;}
.y122{bottom:503.040000px;}
.yb8{bottom:505.560000px;}
.yf{bottom:510.960000px;}
.y24{bottom:512.520000px;}
.yee{bottom:520.320000px;}
.y74{bottom:521.760000px;}
.y5c{bottom:522.120000px;}
.y9a{bottom:522.480000px;}
.y121{bottom:523.560000px;}
.yb7{bottom:526.080000px;}
.ye{bottom:531.480000px;}
.y73{bottom:542.640000px;}
.y5b{bottom:543.000000px;}
.y120{bottom:544.440000px;}
.yb6{bottom:546.960000px;}
.yd{bottom:552.360000px;}
.y72{bottom:563.160000px;}
.y5a{bottom:563.520000px;}
.y11f{bottom:564.600000px;}
.yb5{bottom:567.480000px;}
.yed{bottom:570.720000px;}
.yc{bottom:572.520000px;}
.y71{bottom:583.680000px;}
.yde{bottom:584.040000px;}
.y59{bottom:584.400000px;}
.y10a{bottom:586.200000px;}
.yb4{bottom:588.360000px;}
.yb{bottom:593.040000px;}
.yec{bottom:593.400000px;}
.y70{bottom:604.560000px;}
.y58{bottom:604.920000px;}
.y109{bottom:605.280000px;}
.yeb{bottom:607.440000px;}
.yb3{bottom:608.520000px;}
.ya{bottom:618.600000px;}
.ydd{bottom:625.080000px;}
.y11e{bottom:625.440000px;}
.y57{bottom:625.800000px;}
.y23{bottom:627.000000px;}
.ya9{bottom:627.240000px;}
.y9{bottom:627.960000px;}
.yb2{bottom:628.320000px;}
.ya8{bottom:645.960000px;}
.y56{bottom:646.320000px;}
.y108{bottom:646.680000px;}
.yb1{bottom:650.280000px;}
.ya7{bottom:666.840000px;}
.y55{bottom:667.200000px;}
.ya6{bottom:687.360000px;}
.y54{bottom:687.720000px;}
.y107{bottom:688.080000px;}
.y99{bottom:707.520000px;}
.ya5{bottom:708.240000px;}
.y53{bottom:708.600000px;}
.y117{bottom:708.960000px;}
.y98{bottom:726.960000px;}
.y52{bottom:728.760000px;}
.y11d{bottom:729.120000px;}
.y106{bottom:729.480000px;}
.y95{bottom:745.500000px;}
.y51{bottom:749.640000px;}
.y105{bottom:750.000000px;}
.y116{bottom:750.360000px;}
.ya4{bottom:770.160000px;}
.y50{bottom:770.520000px;}
.y115{bottom:770.880000px;}
.y93{bottom:780.000000px;}
.y4f{bottom:791.040000px;}
.y104{bottom:791.760000px;}
.ydc{bottom:811.560000px;}
.y4e{bottom:811.920000px;}
.y103{bottom:812.280000px;}
.y91{bottom:813.000000px;}
.y4d{bottom:832.440000px;}
.y114{bottom:832.800000px;}
.y102{bottom:833.160000px;}
.y8f{bottom:847.500000px;}
.y11c{bottom:852.960000px;}
.y4c{bottom:853.320000px;}
.y101{bottom:853.680000px;}
.y4b{bottom:873.840000px;}
.y100{bottom:874.560000px;}
.ycc{bottom:876.000000px;}
.y8d{bottom:880.500000px;}
.y113{bottom:894.360000px;}
.y4a{bottom:894.720000px;}
.yff{bottom:895.080000px;}
.ycb{bottom:896.880000px;}
.y112{bottom:914.880000px;}
.y8b{bottom:915.000000px;}
.y49{bottom:915.240000px;}
.yfe{bottom:915.960000px;}
.yca{bottom:935.760000px;}
.y48{bottom:936.120000px;}
.yfd{bottom:936.480000px;}
.y89{bottom:949.500000px;}
.y47{bottom:956.640000px;}
.yfc{bottom:957.360000px;}
.yc9{bottom:977.160000px;}
.y46{bottom:977.520000px;}
.yfb{bottom:977.880000px;}
.y88{bottom:997.680000px;}
.y45{bottom:998.040000px;}
.yfa{bottom:998.760000px;}
.y13d{bottom:1017.840000px;}
.y87{bottom:1018.560000px;}
.y44{bottom:1018.920000px;}
.yf9{bottom:1019.280000px;}
.y13c{bottom:1038.360000px;}
.y86{bottom:1039.080000px;}
.y43{bottom:1039.440000px;}
.yf8{bottom:1039.800000px;}
.y13b{bottom:1059.240000px;}
.y85{bottom:1059.960000px;}
.y42{bottom:1060.320000px;}
.y13a{bottom:1079.760000px;}
.yf7{bottom:1080.480000px;}
.y41{bottom:1080.840000px;}
.yb0{bottom:1082.280000px;}
.yf6{bottom:1100.640000px;}
.y84{bottom:1101.360000px;}
.y40{bottom:1101.720000px;}
.yf5{bottom:1121.520000px;}
.y83{bottom:1121.880000px;}
.y3f{bottom:1122.240000px;}
.yea{bottom:1136.280000px;}
.yf4{bottom:1142.400000px;}
.y3e{bottom:1142.760000px;}
.y82{bottom:1148.880000px;}
.ye9{bottom:1151.400000px;}
.y8{bottom:1160.040000px;}
.y1{bottom:1188.000000px;}
.y3{bottom:1192.500000px;}
.y5{bottom:1194.000000px;}
.y7{bottom:1221.960000px;}
.h8{height:14.396484px;}
.h5{height:15.000000px;}
.h3{height:24.000000px;}
.h9{height:25.913672px;}
.h1{height:28.500000px;}
.h6{height:30.015000px;}
.h1a{height:32.994844px;}
.h16{height:33.000000px;}
.h14{height:34.500000px;}
.h15{height:36.000000px;}
.h10{height:38.695781px;}
.h11{height:41.993438px;}
.h12{height:42.229688px;}
.h13{height:43.500000px;}
.h17{height:44.149219px;}
.hb{height:46.068750px;}
.h4{height:46.283906px;}
.hf{height:49.907813px;}
.h18{height:51.827344px;}
.h7{height:53.067656px;}
.h1b{height:55.666406px;}
.h2{height:56.318906px;}
.hc{height:63.175781px;}
.ha{height:63.949219px;}
.h19{height:73.901953px;}
.he{height:74.181094px;}
.hd{height:532.500000px;}
.h0{height:1263.000000px;}
.w1{width:67.500000px;}
.w5{width:114.000000px;}
.w3{width:135.000000px;}
.w7{width:192.000000px;}
.w6{width:252.000000px;}
.w2{width:256.500000px;}
.w4{width:642.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x5{left:1.500032px;}
.x2{left:2.760156px;}
.x16{left:10.014600px;}
.x14{left:21.381972px;}
.x17{left:30.819228px;}
.x6{left:43.992360px;}
.x12{left:46.356072px;}
.x7{left:50.434487px;}
.x8{left:53.577360px;}
.x9{left:59.869366px;}
.x1a{left:82.882200px;}
.x18{left:87.382200px;}
.xb{left:118.439928px;}
.xd{left:127.289808px;}
.x20{left:129.015036px;}
.xa{left:130.642920px;}
.xe{left:132.089724px;}
.xf{left:159.239844px;}
.x1b{left:162.239868px;}
.x11{left:169.500000px;}
.x19{left:180.477600px;}
.x1{left:184.500000px;}
.x10{left:213.239844px;}
.x1f{left:225.128556px;}
.x1e{left:240.072156px;}
.x13{left:282.000000px;}
.x1c{left:298.738764px;}
.x3{left:313.500000px;}
.x15{left:532.500000px;}
.x1d{left:636.734880px;}
.x4{left:675.000000px;}
.xc{left:769.394880px;}
@media print{
.v2{vertical-align:-21.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls39{letter-spacing:-0.812800pt;}
.ls23{letter-spacing:-0.370944pt;}
.ls20{letter-spacing:-0.301056pt;}
.ls1e{letter-spacing:-0.284928pt;}
.ls27{letter-spacing:-0.275200pt;}
.ls1d{letter-spacing:-0.268800pt;}
.ls28{letter-spacing:-0.256000pt;}
.ls22{letter-spacing:-0.231168pt;}
.ls1f{letter-spacing:-0.215040pt;}
.ls24{letter-spacing:-0.198912pt;}
.ls25{letter-spacing:-0.155904pt;}
.ls16{letter-spacing:-0.147200pt;}
.ls17{letter-spacing:-0.141312pt;}
.ls15{letter-spacing:-0.135424pt;}
.ls21{letter-spacing:-0.129024pt;}
.ls14{letter-spacing:-0.100096pt;}
.ls1a{letter-spacing:-0.012800pt;}
.ls13{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.000512pt;}
.ls1{letter-spacing:0.012800pt;}
.ls1b{letter-spacing:0.141056pt;}
.lsd{letter-spacing:0.212480pt;}
.lse{letter-spacing:0.213376pt;}
.ls10{letter-spacing:0.213760pt;}
.ls1c{letter-spacing:0.215424pt;}
.ls3{letter-spacing:0.244992pt;}
.ls5{letter-spacing:0.252416pt;}
.ls12{letter-spacing:0.267264pt;}
.ls4{letter-spacing:0.282112pt;}
.ls7{letter-spacing:0.319232pt;}
.lsb{letter-spacing:0.326656pt;}
.lsc{letter-spacing:0.373632pt;}
.ls9{letter-spacing:0.812800pt;}
.ls6{letter-spacing:0.814080pt;}
.ls8{letter-spacing:1.080320pt;}
.lsa{letter-spacing:1.216000pt;}
.ls38{letter-spacing:1.241600pt;}
.ls19{letter-spacing:1.421696pt;}
.ls18{letter-spacing:1.852288pt;}
.ls33{letter-spacing:2.132480pt;}
.ls0{letter-spacing:4.806439pt;}
.ls35{letter-spacing:5.329920pt;}
.ls36{letter-spacing:5.332480pt;}
.ls2{letter-spacing:5.600256pt;}
.ls32{letter-spacing:6.933760pt;}
.ls2c{letter-spacing:9.333376pt;}
.ls2e{letter-spacing:12.267520pt;}
.ls31{letter-spacing:15.847552pt;}
.ls30{letter-spacing:15.847680pt;}
.ls26{letter-spacing:16.113920pt;}
.ls11{letter-spacing:17.195392pt;}
.ls2f{letter-spacing:20.092160pt;}
.ls29{letter-spacing:20.434816pt;}
.ls2b{letter-spacing:24.895488pt;}
.ls34{letter-spacing:25.062528pt;}
.ls2a{letter-spacing:25.429248pt;}
.ls37{letter-spacing:38.750720pt;}
.lsf{letter-spacing:44.281600pt;}
.wse{word-spacing:-18.879232pt;}
.wsb{word-spacing:-18.842112pt;}
.wsc{word-spacing:-18.812416pt;}
.wsa{word-spacing:-18.804992pt;}
.wsd{word-spacing:-18.701056pt;}
.ws9{word-spacing:-16.012800pt;}
.ws10{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.987200pt;}
.ws1d{word-spacing:-15.744000pt;}
.ws1e{word-spacing:-15.731200pt;}
.ws1c{word-spacing:-15.724800pt;}
.ws1f{word-spacing:-15.187200pt;}
.ws12{word-spacing:-13.440000pt;}
.ws16{word-spacing:-13.310976pt;}
.ws19{word-spacing:-13.284096pt;}
.ws1a{word-spacing:-13.241088pt;}
.ws14{word-spacing:-13.224960pt;}
.ws17{word-spacing:-13.208832pt;}
.ws11{word-spacing:-13.171200pt;}
.ws13{word-spacing:-13.155072pt;}
.ws15{word-spacing:-13.138944pt;}
.ws18{word-spacing:-13.069056pt;}
.ws7{word-spacing:-12.171648pt;}
.wsf{word-spacing:-10.775424pt;}
.ws0{word-spacing:-0.341504pt;}
.ws2{word-spacing:-0.074240pt;}
.ws1{word-spacing:-0.058880pt;}
.ws1b{word-spacing:0.000000pt;}
.ws3{word-spacing:0.041216pt;}
.ws4{word-spacing:0.076544pt;}
.ws6{word-spacing:0.082432pt;}
.ws5{word-spacing:0.088320pt;}
._13{margin-left:-12.662784pt;}
._1b{margin-left:-4.413568pt;}
._5{margin-left:-3.395968pt;}
._0{margin-left:-2.095488pt;}
._1{margin-left:-0.896384pt;}
._4{width:1.036800pt;}
._3{width:2.304000pt;}
._a{width:3.251200pt;}
._7{width:5.004800pt;}
._c{width:6.451200pt;}
._16{width:7.430400pt;}
._6{width:8.358400pt;}
._11{width:9.386368pt;}
._b{width:11.059200pt;}
._2{width:12.531200pt;}
._9{width:14.067200pt;}
._14{width:15.014400pt;}
._12{width:17.418240pt;}
._8{width:18.331392pt;}
._18{width:19.873792pt;}
._15{width:20.950784pt;}
._19{width:22.041856pt;}
._1d{width:22.997376pt;}
._e{width:24.192000pt;}
._1a{width:25.463040pt;}
._17{width:27.130112pt;}
._1e{width:28.380032pt;}
._1f{width:30.969984pt;}
._22{width:32.300800pt;}
._20{width:34.553856pt;}
._f{width:37.060480pt;}
._26{width:38.496128pt;}
._27{width:39.444096pt;}
._10{width:44.293248pt;}
._1c{width:46.981248pt;}
._21{width:63.056640pt;}
._d{width:73.349120pt;}
._23{width:101.499904pt;}
._25{width:113.094016pt;}
._24{width:187.488768pt;}
.fs4{font-size:19.200000pt;}
.fs5{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs9{font-size:42.240000pt;}
.fs3{font-size:53.760000pt;}
.fsa{font-size:56.320000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:61.440000pt;}
.fs6{font-size:64.000000pt;}
.fs8{font-size:66.560000pt;}
.fsb{font-size:69.120000pt;}
.fs0{font-size:74.240000pt;}
.fsc{font-size:98.560000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.093333pt;}
.y3d{bottom:3.733333pt;}
.y4{bottom:5.706667pt;}
.y2{bottom:5.866667pt;}
.y90{bottom:9.653333pt;}
.y94{bottom:9.813333pt;}
.y97{bottom:10.080000pt;}
.y8c{bottom:10.133333pt;}
.y92{bottom:10.560000pt;}
.y8e{bottom:10.720000pt;}
.y8a{bottom:14.026667pt;}
.y96{bottom:16.480000pt;}
.y3c{bottom:19.093333pt;}
.y139{bottom:24.106667pt;}
.y3b{bottom:34.453333pt;}
.y138{bottom:42.346667pt;}
.y3a{bottom:49.813333pt;}
.y137{bottom:60.586667pt;}
.y39{bottom:65.173333pt;}
.y136{bottom:79.146667pt;}
.y38{bottom:80.533333pt;}
.y135{bottom:97.386667pt;}
.y37{bottom:97.493333pt;}
.y22{bottom:104.426667pt;}
.y111{bottom:106.346667pt;}
.ydb{bottom:109.866667pt;}
.yaf{bottom:113.066667pt;}
.y36{bottom:113.813333pt;}
.y81{bottom:114.026667pt;}
.y6f{bottom:114.346667pt;}
.ye8{bottom:114.666667pt;}
.y134{bottom:115.946667pt;}
.y21{bottom:122.986667pt;}
.y110{bottom:124.586667pt;}
.yda{bottom:128.426667pt;}
.y35{bottom:129.813333pt;}
.yae{bottom:131.626667pt;}
.ya3{bottom:131.946667pt;}
.y80{bottom:132.586667pt;}
.y6e{bottom:132.906667pt;}
.ye7{bottom:133.226667pt;}
.y133{bottom:134.186667pt;}
.y20{bottom:141.226667pt;}
.y10f{bottom:143.146667pt;}
.y34{bottom:145.493333pt;}
.yd9{bottom:146.666667pt;}
.yad{bottom:149.546667pt;}
.ya2{bottom:150.506667pt;}
.y7f{bottom:150.826667pt;}
.y6d{bottom:151.146667pt;}
.ye6{bottom:151.466667pt;}
.y132{bottom:152.746667pt;}
.yc8{bottom:155.306667pt;}
.y1f{bottom:159.786667pt;}
.y10e{bottom:161.386667pt;}
.y33{bottom:164.373333pt;}
.yd8{bottom:165.226667pt;}
.yac{bottom:167.146667pt;}
.ya1{bottom:169.066667pt;}
.y7e{bottom:169.386667pt;}
.y6c{bottom:169.706667pt;}
.ye5{bottom:170.026667pt;}
.y131{bottom:170.986667pt;}
.yc7{bottom:173.546667pt;}
.y1e{bottom:177.706667pt;}
.y10d{bottom:179.306667pt;}
.y32{bottom:182.613333pt;}
.yd7{bottom:183.466667pt;}
.yab{bottom:186.986667pt;}
.y7d{bottom:187.626667pt;}
.y6b{bottom:187.946667pt;}
.ye4{bottom:188.266667pt;}
.y11b{bottom:188.586667pt;}
.y130{bottom:189.546667pt;}
.yc6{bottom:192.106667pt;}
.y1d{bottom:196.266667pt;}
.y10c{bottom:196.906667pt;}
.y31{bottom:200.853333pt;}
.yd6{bottom:202.026667pt;}
.yaa{bottom:204.586667pt;}
.y7c{bottom:206.186667pt;}
.y6a{bottom:206.506667pt;}
.ye3{bottom:206.826667pt;}
.y12f{bottom:207.786667pt;}
.yc5{bottom:210.346667pt;}
.y1c{bottom:214.826667pt;}
.y10b{bottom:216.426667pt;}
.yd5{bottom:220.266667pt;}
.y30{bottom:224.533333pt;}
.y69{bottom:224.746667pt;}
.ya0{bottom:225.066667pt;}
.y11a{bottom:225.386667pt;}
.y12e{bottom:226.346667pt;}
.yc4{bottom:228.906667pt;}
.y1b{bottom:233.386667pt;}
.yd4{bottom:238.826667pt;}
.y7b{bottom:242.666667pt;}
.y2f{bottom:243.093333pt;}
.y68{bottom:243.306667pt;}
.yf3{bottom:243.626667pt;}
.y12d{bottom:244.586667pt;}
.yc3{bottom:247.146667pt;}
.y1a{bottom:251.626667pt;}
.y2e{bottom:255.253333pt;}
.yd3{bottom:257.066667pt;}
.y67{bottom:261.546667pt;}
.y9f{bottom:261.866667pt;}
.y12c{bottom:263.146667pt;}
.yc2{bottom:265.706667pt;}
.y19{bottom:270.186667pt;}
.yd2{bottom:275.626667pt;}
.y2d{bottom:279.253333pt;}
.y7a{bottom:279.466667pt;}
.ye2{bottom:279.786667pt;}
.y66{bottom:280.106667pt;}
.yf2{bottom:280.426667pt;}
.y12b{bottom:281.386667pt;}
.yc1{bottom:283.946667pt;}
.y18{bottom:288.426667pt;}
.y2c{bottom:292.693333pt;}
.yd1{bottom:293.866667pt;}
.y79{bottom:298.026667pt;}
.y65{bottom:298.346667pt;}
.y9e{bottom:298.666667pt;}
.y12a{bottom:299.946667pt;}
.yc0{bottom:302.506667pt;}
.y17{bottom:306.986667pt;}
.yd0{bottom:312.426667pt;}
.y2b{bottom:313.493333pt;}
.ye1{bottom:316.586667pt;}
.y64{bottom:316.906667pt;}
.yf1{bottom:317.226667pt;}
.y129{bottom:318.186667pt;}
.ybf{bottom:321.066667pt;}
.y16{bottom:325.226667pt;}
.ycf{bottom:330.346667pt;}
.y2a{bottom:333.013333pt;}
.y63{bottom:335.146667pt;}
.yf0{bottom:335.466667pt;}
.y128{bottom:336.746667pt;}
.ybe{bottom:339.306667pt;}
.y15{bottom:343.786667pt;}
.yce{bottom:348.906667pt;}
.y29{bottom:352.533333pt;}
.ye0{bottom:353.386667pt;}
.y62{bottom:353.706667pt;}
.y9d{bottom:354.026667pt;}
.y127{bottom:354.986667pt;}
.ybd{bottom:357.866667pt;}
.y14{bottom:362.026667pt;}
.ycd{bottom:369.066667pt;}
.y28{bottom:371.093333pt;}
.y119{bottom:371.306667pt;}
.y78{bottom:371.946667pt;}
.y61{bottom:372.266667pt;}
.y126{bottom:373.546667pt;}
.ybc{bottom:376.106667pt;}
.y13{bottom:380.586667pt;}
.y118{bottom:389.866667pt;}
.y60{bottom:390.506667pt;}
.y9c{bottom:390.826667pt;}
.y27{bottom:391.253333pt;}
.y125{bottom:391.786667pt;}
.ybb{bottom:394.666667pt;}
.y12{bottom:398.826667pt;}
.y77{bottom:408.426667pt;}
.ydf{bottom:408.746667pt;}
.y5f{bottom:409.066667pt;}
.y124{bottom:410.346667pt;}
.yba{bottom:412.586667pt;}
.y26{bottom:412.693333pt;}
.y11{bottom:417.386667pt;}
.y76{bottom:426.986667pt;}
.y5e{bottom:427.306667pt;}
.y9b{bottom:427.626667pt;}
.y123{bottom:428.586667pt;}
.yb9{bottom:430.826667pt;}
.y25{bottom:434.133333pt;}
.y10{bottom:435.626667pt;}
.yef{bottom:445.226667pt;}
.y75{bottom:445.546667pt;}
.y5d{bottom:445.866667pt;}
.y122{bottom:447.146667pt;}
.yb8{bottom:449.386667pt;}
.yf{bottom:454.186667pt;}
.y24{bottom:455.573333pt;}
.yee{bottom:462.506667pt;}
.y74{bottom:463.786667pt;}
.y5c{bottom:464.106667pt;}
.y9a{bottom:464.426667pt;}
.y121{bottom:465.386667pt;}
.yb7{bottom:467.626667pt;}
.ye{bottom:472.426667pt;}
.y73{bottom:482.346667pt;}
.y5b{bottom:482.666667pt;}
.y120{bottom:483.946667pt;}
.yb6{bottom:486.186667pt;}
.yd{bottom:490.986667pt;}
.y72{bottom:500.586667pt;}
.y5a{bottom:500.906667pt;}
.y11f{bottom:501.866667pt;}
.yb5{bottom:504.426667pt;}
.yed{bottom:507.306667pt;}
.yc{bottom:508.906667pt;}
.y71{bottom:518.826667pt;}
.yde{bottom:519.146667pt;}
.y59{bottom:519.466667pt;}
.y10a{bottom:521.066667pt;}
.yb4{bottom:522.986667pt;}
.yb{bottom:527.146667pt;}
.yec{bottom:527.466667pt;}
.y70{bottom:537.386667pt;}
.y58{bottom:537.706667pt;}
.y109{bottom:538.026667pt;}
.yeb{bottom:539.946667pt;}
.yb3{bottom:540.906667pt;}
.ya{bottom:549.866667pt;}
.ydd{bottom:555.626667pt;}
.y11e{bottom:555.946667pt;}
.y57{bottom:556.266667pt;}
.y23{bottom:557.333333pt;}
.ya9{bottom:557.546667pt;}
.y9{bottom:558.186667pt;}
.yb2{bottom:558.506667pt;}
.ya8{bottom:574.186667pt;}
.y56{bottom:574.506667pt;}
.y108{bottom:574.826667pt;}
.yb1{bottom:578.026667pt;}
.ya7{bottom:592.746667pt;}
.y55{bottom:593.066667pt;}
.ya6{bottom:610.986667pt;}
.y54{bottom:611.306667pt;}
.y107{bottom:611.626667pt;}
.y99{bottom:628.906667pt;}
.ya5{bottom:629.546667pt;}
.y53{bottom:629.866667pt;}
.y117{bottom:630.186667pt;}
.y98{bottom:646.186667pt;}
.y52{bottom:647.786667pt;}
.y11d{bottom:648.106667pt;}
.y106{bottom:648.426667pt;}
.y95{bottom:662.666667pt;}
.y51{bottom:666.346667pt;}
.y105{bottom:666.666667pt;}
.y116{bottom:666.986667pt;}
.ya4{bottom:684.586667pt;}
.y50{bottom:684.906667pt;}
.y115{bottom:685.226667pt;}
.y93{bottom:693.333333pt;}
.y4f{bottom:703.146667pt;}
.y104{bottom:703.786667pt;}
.ydc{bottom:721.386667pt;}
.y4e{bottom:721.706667pt;}
.y103{bottom:722.026667pt;}
.y91{bottom:722.666667pt;}
.y4d{bottom:739.946667pt;}
.y114{bottom:740.266667pt;}
.y102{bottom:740.586667pt;}
.y8f{bottom:753.333333pt;}
.y11c{bottom:758.186667pt;}
.y4c{bottom:758.506667pt;}
.y101{bottom:758.826667pt;}
.y4b{bottom:776.746667pt;}
.y100{bottom:777.386667pt;}
.ycc{bottom:778.666667pt;}
.y8d{bottom:782.666667pt;}
.y113{bottom:794.986667pt;}
.y4a{bottom:795.306667pt;}
.yff{bottom:795.626667pt;}
.ycb{bottom:797.226667pt;}
.y112{bottom:813.226667pt;}
.y8b{bottom:813.333333pt;}
.y49{bottom:813.546667pt;}
.yfe{bottom:814.186667pt;}
.yca{bottom:831.786667pt;}
.y48{bottom:832.106667pt;}
.yfd{bottom:832.426667pt;}
.y89{bottom:844.000000pt;}
.y47{bottom:850.346667pt;}
.yfc{bottom:850.986667pt;}
.yc9{bottom:868.586667pt;}
.y46{bottom:868.906667pt;}
.yfb{bottom:869.226667pt;}
.y88{bottom:886.826667pt;}
.y45{bottom:887.146667pt;}
.yfa{bottom:887.786667pt;}
.y13d{bottom:904.746667pt;}
.y87{bottom:905.386667pt;}
.y44{bottom:905.706667pt;}
.yf9{bottom:906.026667pt;}
.y13c{bottom:922.986667pt;}
.y86{bottom:923.626667pt;}
.y43{bottom:923.946667pt;}
.yf8{bottom:924.266667pt;}
.y13b{bottom:941.546667pt;}
.y85{bottom:942.186667pt;}
.y42{bottom:942.506667pt;}
.y13a{bottom:959.786667pt;}
.yf7{bottom:960.426667pt;}
.y41{bottom:960.746667pt;}
.yb0{bottom:962.026667pt;}
.yf6{bottom:978.346667pt;}
.y84{bottom:978.986667pt;}
.y40{bottom:979.306667pt;}
.yf5{bottom:996.906667pt;}
.y83{bottom:997.226667pt;}
.y3f{bottom:997.546667pt;}
.yea{bottom:1010.026667pt;}
.yf4{bottom:1015.466667pt;}
.y3e{bottom:1015.786667pt;}
.y82{bottom:1021.226667pt;}
.ye9{bottom:1023.466667pt;}
.y8{bottom:1031.146667pt;}
.y1{bottom:1056.000000pt;}
.y3{bottom:1060.000000pt;}
.y5{bottom:1061.333333pt;}
.y7{bottom:1086.186667pt;}
.h8{height:12.796875pt;}
.h5{height:13.333333pt;}
.h3{height:21.333333pt;}
.h9{height:23.034375pt;}
.h1{height:25.333333pt;}
.h6{height:26.680000pt;}
.h1a{height:29.328750pt;}
.h16{height:29.333333pt;}
.h14{height:30.666667pt;}
.h15{height:32.000000pt;}
.h10{height:34.396250pt;}
.h11{height:37.327500pt;}
.h12{height:37.537500pt;}
.h13{height:38.666667pt;}
.h17{height:39.243750pt;}
.hb{height:40.950000pt;}
.h4{height:41.141250pt;}
.hf{height:44.362500pt;}
.h18{height:46.068750pt;}
.h7{height:47.171250pt;}
.h1b{height:49.481250pt;}
.h2{height:50.061250pt;}
.hc{height:56.156250pt;}
.ha{height:56.843750pt;}
.h19{height:65.690625pt;}
.he{height:65.938750pt;}
.hd{height:473.333333pt;}
.h0{height:1122.666667pt;}
.w1{width:60.000000pt;}
.w5{width:101.333333pt;}
.w3{width:120.000000pt;}
.w7{width:170.666667pt;}
.w6{width:224.000000pt;}
.w2{width:228.000000pt;}
.w4{width:570.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x5{left:1.333362pt;}
.x2{left:2.453472pt;}
.x16{left:8.901867pt;}
.x14{left:19.006197pt;}
.x17{left:27.394869pt;}
.x6{left:39.104320pt;}
.x12{left:41.205397pt;}
.x7{left:44.830655pt;}
.x8{left:47.624320pt;}
.x9{left:53.217214pt;}
.x1a{left:73.673067pt;}
.x18{left:77.673067pt;}
.xb{left:105.279936pt;}
.xd{left:113.146496pt;}
.x20{left:114.680032pt;}
.xa{left:116.127040pt;}
.xe{left:117.413088pt;}
.xf{left:141.546528pt;}
.x1b{left:144.213216pt;}
.x11{left:150.666667pt;}
.x19{left:160.424533pt;}
.x1{left:164.000000pt;}
.x10{left:189.546528pt;}
.x1f{left:200.114272pt;}
.x1e{left:213.397472pt;}
.x13{left:250.666667pt;}
.x1c{left:265.545568pt;}
.x3{left:278.666667pt;}
.x15{left:473.333333pt;}
.x1d{left:565.986560pt;}
.x4{left:600.000000pt;}
.xc{left:683.906560pt;}
}




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