
    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_38ffa7b74e1a6910d2bd7b0c.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_934a79864e42e42142eb89e1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_41ddbceed7798a40ac551917.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_7c523e91492d7105f46fd75d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.766602;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_4579bff5bdad0c7d4e6fe997.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.740234;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_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_8075fd7508fda61135ef5216.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.052734;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_9dbf10abef80f6a882c2c158.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.244185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244185,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.244317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244317,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.244445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244445,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);}
.m8{transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.258925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258925,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.259800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259800,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls21{letter-spacing:-1.548000px;}
.ls1f{letter-spacing:-1.500000px;}
.ls19{letter-spacing:-1.494000px;}
.ls37{letter-spacing:-0.780000px;}
.ls29{letter-spacing:-0.696000px;}
.lsb{letter-spacing:-0.544800px;}
.ls20{letter-spacing:-0.533400px;}
.ls27{letter-spacing:-0.471000px;}
.ls4{letter-spacing:-0.463800px;}
.ls28{letter-spacing:-0.431400px;}
.ls35{letter-spacing:-0.414000px;}
.ls26{letter-spacing:-0.326400px;}
.ls6{letter-spacing:-0.303000px;}
.ls12{letter-spacing:-0.240600px;}
.ls39{letter-spacing:-0.172200px;}
.ls3{letter-spacing:-0.132600px;}
.ls1d{letter-spacing:-0.114000px;}
.ls1e{letter-spacing:-0.107400px;}
.ls15{letter-spacing:-0.088200px;}
.ls13{letter-spacing:-0.075600px;}
.ls34{letter-spacing:-0.067200px;}
.ls1a{letter-spacing:-0.064800px;}
.ls14{letter-spacing:-0.058320px;}
.ls3e{letter-spacing:-0.049680px;}
.ls18{letter-spacing:-0.041040px;}
.ls3d{letter-spacing:-0.032400px;}
.ls1{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.023760px;}
.ls3a{letter-spacing:0.025200px;}
.ls2{letter-spacing:0.038880px;}
.ls41{letter-spacing:0.043920px;}
.lsd{letter-spacing:0.060600px;}
.ls3c{letter-spacing:0.064200px;}
.ls3b{letter-spacing:0.093600px;}
.lse{letter-spacing:0.097200px;}
.lsc{letter-spacing:0.140400px;}
.ls0{letter-spacing:0.149760px;}
.ls5{letter-spacing:0.150000px;}
.ls16{letter-spacing:0.174000px;}
.lsa{letter-spacing:0.175200px;}
.ls40{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.186600px;}
.ls2d{letter-spacing:0.209400px;}
.ls33{letter-spacing:0.214560px;}
.ls10{letter-spacing:0.249000px;}
.ls9{letter-spacing:0.252600px;}
.ls1b{letter-spacing:0.253800px;}
.ls3f{letter-spacing:0.274800px;}
.ls23{letter-spacing:0.306000px;}
.ls11{letter-spacing:0.347400px;}
.ls38{letter-spacing:0.357000px;}
.ls22{letter-spacing:0.364800px;}
.ls36{letter-spacing:0.376800px;}
.ls7{letter-spacing:0.417000px;}
.ls25{letter-spacing:0.479400px;}
.ls32{letter-spacing:0.479520px;}
.ls24{letter-spacing:0.894000px;}
.ls42{letter-spacing:0.894240px;}
.ls1c{letter-spacing:0.954000px;}
.ls2b{letter-spacing:1.614240px;}
.ls31{letter-spacing:2.334240px;}
.ls17{letter-spacing:6.654240px;}
.ls2f{letter-spacing:8.814240px;}
.ls2e{letter-spacing:9.534240px;}
.ls43{letter-spacing:10.974240px;}
.ls30{letter-spacing:12.186720px;}
.ls2c{letter-spacing:16.014240px;}
.ls2a{letter-spacing:42.426720px;}
.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;}
}
.ws15{word-spacing:-59.760000px;}
.ws5{word-spacing:-22.058760px;}
.ws4{word-spacing:-21.338760px;}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.ws1e{word-spacing:-13.882560px;}
.ws20{word-spacing:-13.862760px;}
.ws1b{word-spacing:-13.811760px;}
.ws28{word-spacing:-13.780560px;}
.wse{word-spacing:-13.754760px;}
.ws21{word-spacing:-13.715160px;}
.ws8{word-spacing:-13.692360px;}
.wsa{word-spacing:-13.680960px;}
.wsc{word-spacing:-13.646160px;}
.ws24{word-spacing:-13.599360px;}
.ws25{word-spacing:-13.569960px;}
.ws16{word-spacing:-13.566360px;}
.ws29{word-spacing:-13.549680px;}
.ws23{word-spacing:-13.530960px;}
.ws9{word-spacing:-13.505760px;}
.ws26{word-spacing:-13.473360px;}
.ws11{word-spacing:-13.464720px;}
.ws27{word-spacing:-13.456080px;}
.wsf{word-spacing:-13.447440px;}
.ws14{word-spacing:-13.440960px;}
.ws17{word-spacing:-13.398360px;}
.ws22{word-spacing:-13.333560px;}
.ws10{word-spacing:-13.265160px;}
.ws13{word-spacing:-13.202760px;}
.ws1c{word-spacing:-13.179360px;}
.ws1d{word-spacing:-13.034760px;}
.ws19{word-spacing:-12.972360px;}
.wsb{word-spacing:-12.960960px;}
.ws1f{word-spacing:-12.725760px;}
.ws12{word-spacing:-12.011760px;}
.ws18{word-spacing:-12.005760px;}
.ws1a{word-spacing:-11.957760px;}
.ws6{word-spacing:-9.437760px;}
.ws7{word-spacing:-8.786880px;}
.wsd{word-spacing:0.000000px;}
._1f{margin-left:-533.278560px;}
._20{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.434240px;}
._8{margin-left:-295.839120px;}
._4{margin-left:-289.112160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._b{margin-left:-240.330240px;}
._12{margin-left:-234.030240px;}
._17{margin-left:-226.391040px;}
._16{margin-left:-222.225360px;}
._f{margin-left:-202.866240px;}
._1a{margin-left:-201.453120px;}
._19{margin-left:-199.809600px;}
._23{margin-left:-193.138560px;}
._22{margin-left:-189.220320px;}
._e{margin-left:-171.054720px;}
._27{margin-left:-169.761600px;}
._18{margin-left:-166.147200px;}
._d{margin-left:-164.962080px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._26{margin-left:-145.392000px;}
._10{margin-left:-138.086400px;}
._c{margin-left:-134.552160px;}
._11{margin-left:-115.702560px;}
._25{margin-left:-109.266240px;}
._1e{margin-left:-102.349440px;}
._7{margin-left:-90.944880px;}
._1d{margin-left:-86.399760px;}
._1c{margin-left:-83.520000px;}
._13{margin-left:-82.150560px;}
._15{margin-left:-66.703680px;}
._14{margin-left:-49.672560px;}
._24{margin-left:-34.410240px;}
._1b{margin-left:-31.530240px;}
._41{margin-left:-11.442720px;}
._42{margin-left:-8.177040px;}
._40{margin-left:-5.189520px;}
._29{margin-left:-4.171560px;}
._28{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._21{width:1.046880px;}
._2a{width:2.958720px;}
._2d{width:4.553280px;}
._2e{width:6.035760px;}
._2c{width:7.256640px;}
._31{width:9.180720px;}
._2b{width:10.259760px;}
._30{width:11.414160px;}
._3f{width:12.487680px;}
._36{width:14.508480px;}
._35{width:15.805440px;}
._32{width:17.270640px;}
._33{width:19.091280px;}
._34{width:20.175360px;}
._45{width:22.174800px;}
._46{width:23.984880px;}
._47{width:25.167360px;}
._44{width:27.220560px;}
._37{width:30.517440px;}
._2f{width:34.216560px;}
._43{width:45.054240px;}
._3d{width:652.668960px;}
._39{width:806.090160px;}
._3e{width:819.257520px;}
._3c{width:824.151360px;}
._38{width:838.050240px;}
._3a{width:873.795240px;}
._3b{width:879.800880px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs2{font-size:30.240000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y85{bottom:6.660000px;}
.y8a{bottom:6.840000px;}
.y97{bottom:8.640000px;}
.y92{bottom:8.820000px;}
.y69{bottom:15.480000px;}
.y67{bottom:15.660000px;}
.y6d{bottom:15.840000px;}
.y87{bottom:27.720000px;}
.y89{bottom:27.900000px;}
.y6{bottom:61.560000px;}
.ydf{bottom:91.440000px;}
.y65{bottom:94.500000px;}
.y90{bottom:102.060000px;}
.yc0{bottom:104.580000px;}
.y31{bottom:104.940000px;}
.yde{bottom:112.500000px;}
.y64{bottom:115.560000px;}
.ye0{bottom:121.140000px;}
.y8f{bottom:123.120000px;}
.ybf{bottom:125.640000px;}
.y30{bottom:126.000000px;}
.ydd{bottom:133.560000px;}
.y63{bottom:136.620000px;}
.y8e{bottom:144.180000px;}
.ybe{bottom:146.700000px;}
.y2f{bottom:147.060000px;}
.ydc{bottom:154.620000px;}
.y62{bottom:157.680000px;}
.y8d{bottom:165.240000px;}
.ybd{bottom:167.760000px;}
.y2e{bottom:168.120000px;}
.ydb{bottom:175.680000px;}
.y61{bottom:178.740000px;}
.y8c{bottom:186.300000px;}
.ybc{bottom:188.820000px;}
.y2d{bottom:189.180000px;}
.yda{bottom:196.740000px;}
.y60{bottom:199.800000px;}
.y8b{bottom:207.360000px;}
.ybb{bottom:209.910000px;}
.y2c{bottom:210.270000px;}
.yd9{bottom:217.830000px;}
.y5f{bottom:220.890000px;}
.y88{bottom:222.510000px;}
.yba{bottom:230.970000px;}
.y2b{bottom:231.330000px;}
.yd8{bottom:238.890000px;}
.y5e{bottom:241.950000px;}
.yb9{bottom:252.030000px;}
.y2a{bottom:252.390000px;}
.yd7{bottom:259.950000px;}
.y5d{bottom:263.010000px;}
.y86{bottom:265.530000px;}
.yb8{bottom:273.090000px;}
.y29{bottom:273.450000px;}
.yd6{bottom:281.010000px;}
.y5c{bottom:284.070000px;}
.y28{bottom:294.510000px;}
.yd5{bottom:302.070000px;}
.yb7{bottom:303.150000px;}
.y5b{bottom:305.130000px;}
.y84{bottom:308.370000px;}
.y27{bottom:315.570000px;}
.yd4{bottom:323.130000px;}
.yb6{bottom:324.210000px;}
.y5a{bottom:335.190000px;}
.y26{bottom:336.630000px;}
.y83{bottom:336.810000px;}
.yd3{bottom:344.190000px;}
.yb5{bottom:345.270000px;}
.y59{bottom:356.250000px;}
.y25{bottom:357.690000px;}
.y82{bottom:357.870000px;}
.yd2{bottom:365.250000px;}
.yb4{bottom:366.330000px;}
.y58{bottom:377.310000px;}
.y24{bottom:378.750000px;}
.y81{bottom:378.930000px;}
.yd1{bottom:386.310000px;}
.yb3{bottom:387.390000px;}
.y57{bottom:398.370000px;}
.y23{bottom:399.810000px;}
.y80{bottom:399.990000px;}
.yd0{bottom:407.370000px;}
.yb2{bottom:408.450000px;}
.y56{bottom:419.430000px;}
.y22{bottom:420.870000px;}
.y7f{bottom:421.050000px;}
.ycf{bottom:428.430000px;}
.yb1{bottom:429.510000px;}
.y55{bottom:440.490000px;}
.y21{bottom:441.930000px;}
.y7e{bottom:442.110000px;}
.yce{bottom:449.535000px;}
.yb0{bottom:450.615000px;}
.y54{bottom:461.595000px;}
.y20{bottom:463.035000px;}
.y7d{bottom:463.215000px;}
.ycd{bottom:470.595000px;}
.yaf{bottom:471.675000px;}
.y53{bottom:482.655000px;}
.y1f{bottom:484.095000px;}
.y7c{bottom:484.275000px;}
.ycc{bottom:491.655000px;}
.yae{bottom:492.735000px;}
.y52{bottom:503.715000px;}
.y1e{bottom:505.155000px;}
.y7b{bottom:505.335000px;}
.ycb{bottom:512.715000px;}
.yad{bottom:513.795000px;}
.y51{bottom:524.775000px;}
.y1d{bottom:526.215000px;}
.y7a{bottom:526.395000px;}
.yca{bottom:533.775000px;}
.yac{bottom:534.855000px;}
.y50{bottom:545.835000px;}
.y1c{bottom:547.275000px;}
.y79{bottom:547.455000px;}
.yc9{bottom:554.835000px;}
.yab{bottom:555.915000px;}
.y4f{bottom:566.895000px;}
.y1b{bottom:568.335000px;}
.y78{bottom:568.515000px;}
.yc8{bottom:575.895000px;}
.yaa{bottom:576.975000px;}
.y4e{bottom:587.955000px;}
.y1a{bottom:589.395000px;}
.y77{bottom:589.575000px;}
.yc7{bottom:596.955000px;}
.ya9{bottom:598.035000px;}
.y4d{bottom:609.015000px;}
.y19{bottom:610.455000px;}
.y76{bottom:610.635000px;}
.yc6{bottom:618.015000px;}
.ya8{bottom:619.095000px;}
.y4c{bottom:630.075000px;}
.y75{bottom:631.695000px;}
.y18{bottom:633.855000px;}
.yc5{bottom:639.075000px;}
.ya7{bottom:640.155000px;}
.y4b{bottom:650.955000px;}
.y74{bottom:652.755000px;}
.y17{bottom:654.735000px;}
.yc4{bottom:659.955000px;}
.ya6{bottom:661.215000px;}
.y4a{bottom:672.015000px;}
.y73{bottom:673.815000px;}
.yc3{bottom:681.045000px;}
.ya5{bottom:682.305000px;}
.y16{bottom:684.825000px;}
.y49{bottom:693.105000px;}
.y72{bottom:694.185000px;}
.y71{bottom:694.905000px;}
.yc2{bottom:702.105000px;}
.ya4{bottom:703.365000px;}
.y15{bottom:705.885000px;}
.y48{bottom:714.165000px;}
.y70{bottom:715.965000px;}
.yc1{bottom:723.165000px;}
.ya3{bottom:724.425000px;}
.y14{bottom:726.945000px;}
.y6f{bottom:737.025000px;}
.y47{bottom:744.225000px;}
.ya2{bottom:745.485000px;}
.y13{bottom:748.005000px;}
.y6e{bottom:758.085000px;}
.y46{bottom:765.285000px;}
.ya1{bottom:766.545000px;}
.y12{bottom:769.065000px;}
.y6c{bottom:773.205000px;}
.ya0{bottom:781.665000px;}
.y45{bottom:786.345000px;}
.y11{bottom:790.125000px;}
.y6b{bottom:804.165000px;}
.y9f{bottom:805.605000px;}
.y44{bottom:807.405000px;}
.y10{bottom:811.185000px;}
.y43{bottom:828.465000px;}
.y9e{bottom:829.725000px;}
.yf{bottom:832.245000px;}
.y6a{bottom:834.945000px;}
.y42{bottom:849.525000px;}
.ye{bottom:853.305000px;}
.y9d{bottom:853.485000px;}
.y68{bottom:865.725000px;}
.y41{bottom:870.585000px;}
.yd{bottom:874.365000px;}
.y9c{bottom:877.425000px;}
.y40{bottom:891.645000px;}
.yc{bottom:895.605000px;}
.y66{bottom:896.325000px;}
.y9b{bottom:901.365000px;}
.y3f{bottom:912.705000px;}
.yb{bottom:918.870000px;}
.y9a{bottom:925.170000px;}
.y3e{bottom:933.810000px;}
.ya{bottom:944.970000px;}
.y99{bottom:949.110000px;}
.y3d{bottom:954.870000px;}
.y9{bottom:961.710000px;}
.y98{bottom:973.230000px;}
.y3c{bottom:975.930000px;}
.y8{bottom:984.030000px;}
.y3b{bottom:996.990000px;}
.y96{bottom:997.170000px;}
.y7{bottom:1009.230000px;}
.y3a{bottom:1018.050000px;}
.y95{bottom:1020.930000px;}
.y39{bottom:1039.110000px;}
.y94{bottom:1044.870000px;}
.y5{bottom:1049.370000px;}
.y38{bottom:1060.170000px;}
.y93{bottom:1068.810000px;}
.y37{bottom:1081.230000px;}
.y4{bottom:1081.590000px;}
.y91{bottom:1092.750000px;}
.y36{bottom:1102.290000px;}
.y3{bottom:1113.810000px;}
.y35{bottom:1123.350000px;}
.y34{bottom:1144.410000px;}
.y2{bottom:1145.850000px;}
.y33{bottom:1165.500000px;}
.y1{bottom:1179.900000px;}
.y32{bottom:1193.400000px;}
.h11{height:21.060000px;}
.h16{height:23.040000px;}
.h17{height:23.076000px;}
.h15{height:23.220000px;}
.hc{height:29.880000px;}
.hd{height:30.060000px;}
.hb{height:30.096000px;}
.he{height:30.240000px;}
.h10{height:32.767031px;}
.h7{height:38.671172px;}
.h12{height:42.120000px;}
.h13{height:42.300000px;}
.h9{height:43.506914px;}
.ha{height:45.140977px;}
.h14{height:45.637031px;}
.hf{height:50.364141px;}
.h8{height:59.439023px;}
.h5{height:61.189805px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h2{height:86.255508px;}
.h4{height:98.051133px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.wf{width:70.956000px;}
.w3{width:99.000000px;}
.wa{width:116.100000px;}
.w8{width:122.076000px;}
.w9{width:127.116000px;}
.wb{width:138.996000px;}
.we{width:148.176000px;}
.wc{width:149.436000px;}
.w5{width:156.630000px;}
.wd{width:158.940000px;}
.w6{width:192.630000px;}
.w7{width:195.690000px;}
.w4{width:229.215000px;}
.w11{width:307.830000px;}
.w10{width:669.390000px;}
.w1{width:893.250000px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x6{left:53.999987px;}
.x7{left:61.739987px;}
.x12{left:63.359987px;}
.xa{left:65.699987px;}
.xb{left:66.779987px;}
.xd{left:69.479987px;}
.x13{left:70.559987px;}
.x8{left:75.599987px;}
.xc{left:81.035987px;}
.x9{left:86.435987px;}
.x14{left:93.815987px;}
.x2e{left:96.515987px;}
.x15{left:103.175987px;}
.xe{left:106.776000px;}
.x16{left:108.215987px;}
.x2f{left:111.996000px;}
.x17{left:128.375987px;}
.x18{left:137.735987px;}
.x19{left:142.955987px;}
.x1a{left:153.209987px;}
.x1b{left:158.249987px;}
.x1c{left:165.449987px;}
.x1d{left:183.449987px;}
.x5{left:185.249987px;}
.x1e{left:192.989987px;}
.x1f{left:198.029987px;}
.xf{left:206.490000px;}
.x20{left:208.289987px;}
.x21{left:213.329987px;}
.x22{left:220.709987px;}
.x23{left:238.529987px;}
.x24{left:248.114987px;}
.x30{left:251.715000px;}
.x25{left:253.154987px;}
.x26{left:263.414987px;}
.x27{left:268.454987px;}
.x3{left:272.414987px;}
.x28{left:275.834987px;}
.x29{left:290.234987px;}
.x2a{left:308.954987px;}
.x2b{left:325.155000px;}
.x2{left:350.714987px;}
.x31{left:401.865000px;}
.x4{left:419.324987px;}
.x10{left:436.425000px;}
.x2c{left:447.945000px;}
.x1{left:479.444987px;}
.x32{left:561.525000px;}
.x2d{left:575.790000px;}
.x11{left:593.970000px;}
.x33{left:710.430000px;}
.x34{left:839.339987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls21{letter-spacing:-1.376000pt;}
.ls1f{letter-spacing:-1.333333pt;}
.ls19{letter-spacing:-1.328000pt;}
.ls37{letter-spacing:-0.693333pt;}
.ls29{letter-spacing:-0.618667pt;}
.lsb{letter-spacing:-0.484267pt;}
.ls20{letter-spacing:-0.474133pt;}
.ls27{letter-spacing:-0.418667pt;}
.ls4{letter-spacing:-0.412267pt;}
.ls28{letter-spacing:-0.383467pt;}
.ls35{letter-spacing:-0.368000pt;}
.ls26{letter-spacing:-0.290133pt;}
.ls6{letter-spacing:-0.269333pt;}
.ls12{letter-spacing:-0.213867pt;}
.ls39{letter-spacing:-0.153067pt;}
.ls3{letter-spacing:-0.117867pt;}
.ls1d{letter-spacing:-0.101333pt;}
.ls1e{letter-spacing:-0.095467pt;}
.ls15{letter-spacing:-0.078400pt;}
.ls13{letter-spacing:-0.067200pt;}
.ls34{letter-spacing:-0.059733pt;}
.ls1a{letter-spacing:-0.057600pt;}
.ls14{letter-spacing:-0.051840pt;}
.ls3e{letter-spacing:-0.044160pt;}
.ls18{letter-spacing:-0.036480pt;}
.ls3d{letter-spacing:-0.028800pt;}
.ls1{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.021120pt;}
.ls3a{letter-spacing:0.022400pt;}
.ls2{letter-spacing:0.034560pt;}
.ls41{letter-spacing:0.039040pt;}
.lsd{letter-spacing:0.053867pt;}
.ls3c{letter-spacing:0.057067pt;}
.ls3b{letter-spacing:0.083200pt;}
.lse{letter-spacing:0.086400pt;}
.lsc{letter-spacing:0.124800pt;}
.ls0{letter-spacing:0.133120pt;}
.ls5{letter-spacing:0.133333pt;}
.ls16{letter-spacing:0.154667pt;}
.lsa{letter-spacing:0.155733pt;}
.ls40{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.165867pt;}
.ls2d{letter-spacing:0.186133pt;}
.ls33{letter-spacing:0.190720pt;}
.ls10{letter-spacing:0.221333pt;}
.ls9{letter-spacing:0.224533pt;}
.ls1b{letter-spacing:0.225600pt;}
.ls3f{letter-spacing:0.244267pt;}
.ls23{letter-spacing:0.272000pt;}
.ls11{letter-spacing:0.308800pt;}
.ls38{letter-spacing:0.317333pt;}
.ls22{letter-spacing:0.324267pt;}
.ls36{letter-spacing:0.334933pt;}
.ls7{letter-spacing:0.370667pt;}
.ls25{letter-spacing:0.426133pt;}
.ls32{letter-spacing:0.426240pt;}
.ls24{letter-spacing:0.794667pt;}
.ls42{letter-spacing:0.794880pt;}
.ls1c{letter-spacing:0.848000pt;}
.ls2b{letter-spacing:1.434880pt;}
.ls31{letter-spacing:2.074880pt;}
.ls17{letter-spacing:5.914880pt;}
.ls2f{letter-spacing:7.834880pt;}
.ls2e{letter-spacing:8.474880pt;}
.ls43{letter-spacing:9.754880pt;}
.ls30{letter-spacing:10.832640pt;}
.ls2c{letter-spacing:14.234880pt;}
.ls2a{letter-spacing:37.712640pt;}
.ws15{word-spacing:-53.120000pt;}
.ws5{word-spacing:-19.607787pt;}
.ws4{word-spacing:-18.967787pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.ws1e{word-spacing:-12.340053pt;}
.ws20{word-spacing:-12.322453pt;}
.ws1b{word-spacing:-12.277120pt;}
.ws28{word-spacing:-12.249387pt;}
.wse{word-spacing:-12.226453pt;}
.ws21{word-spacing:-12.191253pt;}
.ws8{word-spacing:-12.170987pt;}
.wsa{word-spacing:-12.160853pt;}
.wsc{word-spacing:-12.129920pt;}
.ws24{word-spacing:-12.088320pt;}
.ws25{word-spacing:-12.062187pt;}
.ws16{word-spacing:-12.058987pt;}
.ws29{word-spacing:-12.044160pt;}
.ws23{word-spacing:-12.027520pt;}
.ws9{word-spacing:-12.005120pt;}
.ws26{word-spacing:-11.976320pt;}
.ws11{word-spacing:-11.968640pt;}
.ws27{word-spacing:-11.960960pt;}
.wsf{word-spacing:-11.953280pt;}
.ws14{word-spacing:-11.947520pt;}
.ws17{word-spacing:-11.909653pt;}
.ws22{word-spacing:-11.852053pt;}
.ws10{word-spacing:-11.791253pt;}
.ws13{word-spacing:-11.735787pt;}
.ws1c{word-spacing:-11.714987pt;}
.ws1d{word-spacing:-11.586453pt;}
.ws19{word-spacing:-11.530987pt;}
.wsb{word-spacing:-11.520853pt;}
.ws1f{word-spacing:-11.311787pt;}
.ws12{word-spacing:-10.677120pt;}
.ws18{word-spacing:-10.671787pt;}
.ws1a{word-spacing:-10.629120pt;}
.ws6{word-spacing:-8.389120pt;}
.ws7{word-spacing:-7.810560pt;}
.wsd{word-spacing:0.000000pt;}
._1f{margin-left:-474.025387pt;}
._20{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.941547pt;}
._8{margin-left:-262.968107pt;}
._4{margin-left:-256.988587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._b{margin-left:-213.626880pt;}
._12{margin-left:-208.026880pt;}
._17{margin-left:-201.236480pt;}
._16{margin-left:-197.533653pt;}
._f{margin-left:-180.325547pt;}
._1a{margin-left:-179.069440pt;}
._19{margin-left:-177.608533pt;}
._23{margin-left:-171.678720pt;}
._22{margin-left:-168.195840pt;}
._e{margin-left:-152.048640pt;}
._27{margin-left:-150.899200pt;}
._18{margin-left:-147.686400pt;}
._d{margin-left:-146.632960pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._26{margin-left:-129.237333pt;}
._10{margin-left:-122.743467pt;}
._c{margin-left:-119.601920pt;}
._11{margin-left:-102.846720pt;}
._25{margin-left:-97.125547pt;}
._1e{margin-left:-90.977280pt;}
._7{margin-left:-80.839893pt;}
._1d{margin-left:-76.799787pt;}
._1c{margin-left:-74.240000pt;}
._13{margin-left:-73.022720pt;}
._15{margin-left:-59.292160pt;}
._14{margin-left:-44.153387pt;}
._24{margin-left:-30.586880pt;}
._1b{margin-left:-28.026880pt;}
._41{margin-left:-10.171307pt;}
._42{margin-left:-7.268480pt;}
._40{margin-left:-4.612907pt;}
._29{margin-left:-3.708053pt;}
._28{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._21{width:0.930560pt;}
._2a{width:2.629973pt;}
._2d{width:4.047360pt;}
._2e{width:5.365120pt;}
._2c{width:6.450347pt;}
._31{width:8.160640pt;}
._2b{width:9.119787pt;}
._30{width:10.145920pt;}
._3f{width:11.100160pt;}
._36{width:12.896427pt;}
._35{width:14.049280pt;}
._32{width:15.351680pt;}
._33{width:16.970027pt;}
._34{width:17.933653pt;}
._45{width:19.710933pt;}
._46{width:21.319893pt;}
._47{width:22.370987pt;}
._44{width:24.196053pt;}
._37{width:27.126613pt;}
._2f{width:30.414720pt;}
._43{width:40.048213pt;}
._3d{width:580.150187pt;}
._39{width:716.524587pt;}
._3e{width:728.228907pt;}
._3c{width:732.578987pt;}
._38{width:744.933547pt;}
._3a{width:776.706880pt;}
._3b{width:782.045227pt;}
.fs2{font-size:26.880000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y85{bottom:5.920000pt;}
.y8a{bottom:6.080000pt;}
.y97{bottom:7.680000pt;}
.y92{bottom:7.840000pt;}
.y69{bottom:13.760000pt;}
.y67{bottom:13.920000pt;}
.y6d{bottom:14.080000pt;}
.y87{bottom:24.640000pt;}
.y89{bottom:24.800000pt;}
.y6{bottom:54.720000pt;}
.ydf{bottom:81.280000pt;}
.y65{bottom:84.000000pt;}
.y90{bottom:90.720000pt;}
.yc0{bottom:92.960000pt;}
.y31{bottom:93.280000pt;}
.yde{bottom:100.000000pt;}
.y64{bottom:102.720000pt;}
.ye0{bottom:107.680000pt;}
.y8f{bottom:109.440000pt;}
.ybf{bottom:111.680000pt;}
.y30{bottom:112.000000pt;}
.ydd{bottom:118.720000pt;}
.y63{bottom:121.440000pt;}
.y8e{bottom:128.160000pt;}
.ybe{bottom:130.400000pt;}
.y2f{bottom:130.720000pt;}
.ydc{bottom:137.440000pt;}
.y62{bottom:140.160000pt;}
.y8d{bottom:146.880000pt;}
.ybd{bottom:149.120000pt;}
.y2e{bottom:149.440000pt;}
.ydb{bottom:156.160000pt;}
.y61{bottom:158.880000pt;}
.y8c{bottom:165.600000pt;}
.ybc{bottom:167.840000pt;}
.y2d{bottom:168.160000pt;}
.yda{bottom:174.880000pt;}
.y60{bottom:177.600000pt;}
.y8b{bottom:184.320000pt;}
.ybb{bottom:186.586667pt;}
.y2c{bottom:186.906667pt;}
.yd9{bottom:193.626667pt;}
.y5f{bottom:196.346667pt;}
.y88{bottom:197.786667pt;}
.yba{bottom:205.306667pt;}
.y2b{bottom:205.626667pt;}
.yd8{bottom:212.346667pt;}
.y5e{bottom:215.066667pt;}
.yb9{bottom:224.026667pt;}
.y2a{bottom:224.346667pt;}
.yd7{bottom:231.066667pt;}
.y5d{bottom:233.786667pt;}
.y86{bottom:236.026667pt;}
.yb8{bottom:242.746667pt;}
.y29{bottom:243.066667pt;}
.yd6{bottom:249.786667pt;}
.y5c{bottom:252.506667pt;}
.y28{bottom:261.786667pt;}
.yd5{bottom:268.506667pt;}
.yb7{bottom:269.466667pt;}
.y5b{bottom:271.226667pt;}
.y84{bottom:274.106667pt;}
.y27{bottom:280.506667pt;}
.yd4{bottom:287.226667pt;}
.yb6{bottom:288.186667pt;}
.y5a{bottom:297.946667pt;}
.y26{bottom:299.226667pt;}
.y83{bottom:299.386667pt;}
.yd3{bottom:305.946667pt;}
.yb5{bottom:306.906667pt;}
.y59{bottom:316.666667pt;}
.y25{bottom:317.946667pt;}
.y82{bottom:318.106667pt;}
.yd2{bottom:324.666667pt;}
.yb4{bottom:325.626667pt;}
.y58{bottom:335.386667pt;}
.y24{bottom:336.666667pt;}
.y81{bottom:336.826667pt;}
.yd1{bottom:343.386667pt;}
.yb3{bottom:344.346667pt;}
.y57{bottom:354.106667pt;}
.y23{bottom:355.386667pt;}
.y80{bottom:355.546667pt;}
.yd0{bottom:362.106667pt;}
.yb2{bottom:363.066667pt;}
.y56{bottom:372.826667pt;}
.y22{bottom:374.106667pt;}
.y7f{bottom:374.266667pt;}
.ycf{bottom:380.826667pt;}
.yb1{bottom:381.786667pt;}
.y55{bottom:391.546667pt;}
.y21{bottom:392.826667pt;}
.y7e{bottom:392.986667pt;}
.yce{bottom:399.586667pt;}
.yb0{bottom:400.546667pt;}
.y54{bottom:410.306667pt;}
.y20{bottom:411.586667pt;}
.y7d{bottom:411.746667pt;}
.ycd{bottom:418.306667pt;}
.yaf{bottom:419.266667pt;}
.y53{bottom:429.026667pt;}
.y1f{bottom:430.306667pt;}
.y7c{bottom:430.466667pt;}
.ycc{bottom:437.026667pt;}
.yae{bottom:437.986667pt;}
.y52{bottom:447.746667pt;}
.y1e{bottom:449.026667pt;}
.y7b{bottom:449.186667pt;}
.ycb{bottom:455.746667pt;}
.yad{bottom:456.706667pt;}
.y51{bottom:466.466667pt;}
.y1d{bottom:467.746667pt;}
.y7a{bottom:467.906667pt;}
.yca{bottom:474.466667pt;}
.yac{bottom:475.426667pt;}
.y50{bottom:485.186667pt;}
.y1c{bottom:486.466667pt;}
.y79{bottom:486.626667pt;}
.yc9{bottom:493.186667pt;}
.yab{bottom:494.146667pt;}
.y4f{bottom:503.906667pt;}
.y1b{bottom:505.186667pt;}
.y78{bottom:505.346667pt;}
.yc8{bottom:511.906667pt;}
.yaa{bottom:512.866667pt;}
.y4e{bottom:522.626667pt;}
.y1a{bottom:523.906667pt;}
.y77{bottom:524.066667pt;}
.yc7{bottom:530.626667pt;}
.ya9{bottom:531.586667pt;}
.y4d{bottom:541.346667pt;}
.y19{bottom:542.626667pt;}
.y76{bottom:542.786667pt;}
.yc6{bottom:549.346667pt;}
.ya8{bottom:550.306667pt;}
.y4c{bottom:560.066667pt;}
.y75{bottom:561.506667pt;}
.y18{bottom:563.426667pt;}
.yc5{bottom:568.066667pt;}
.ya7{bottom:569.026667pt;}
.y4b{bottom:578.626667pt;}
.y74{bottom:580.226667pt;}
.y17{bottom:581.986667pt;}
.yc4{bottom:586.626667pt;}
.ya6{bottom:587.746667pt;}
.y4a{bottom:597.346667pt;}
.y73{bottom:598.946667pt;}
.yc3{bottom:605.373333pt;}
.ya5{bottom:606.493333pt;}
.y16{bottom:608.733333pt;}
.y49{bottom:616.093333pt;}
.y72{bottom:617.053333pt;}
.y71{bottom:617.693333pt;}
.yc2{bottom:624.093333pt;}
.ya4{bottom:625.213333pt;}
.y15{bottom:627.453333pt;}
.y48{bottom:634.813333pt;}
.y70{bottom:636.413333pt;}
.yc1{bottom:642.813333pt;}
.ya3{bottom:643.933333pt;}
.y14{bottom:646.173333pt;}
.y6f{bottom:655.133333pt;}
.y47{bottom:661.533333pt;}
.ya2{bottom:662.653333pt;}
.y13{bottom:664.893333pt;}
.y6e{bottom:673.853333pt;}
.y46{bottom:680.253333pt;}
.ya1{bottom:681.373333pt;}
.y12{bottom:683.613333pt;}
.y6c{bottom:687.293333pt;}
.ya0{bottom:694.813333pt;}
.y45{bottom:698.973333pt;}
.y11{bottom:702.333333pt;}
.y6b{bottom:714.813333pt;}
.y9f{bottom:716.093333pt;}
.y44{bottom:717.693333pt;}
.y10{bottom:721.053333pt;}
.y43{bottom:736.413333pt;}
.y9e{bottom:737.533333pt;}
.yf{bottom:739.773333pt;}
.y6a{bottom:742.173333pt;}
.y42{bottom:755.133333pt;}
.ye{bottom:758.493333pt;}
.y9d{bottom:758.653333pt;}
.y68{bottom:769.533333pt;}
.y41{bottom:773.853333pt;}
.yd{bottom:777.213333pt;}
.y9c{bottom:779.933333pt;}
.y40{bottom:792.573333pt;}
.yc{bottom:796.093333pt;}
.y66{bottom:796.733333pt;}
.y9b{bottom:801.213333pt;}
.y3f{bottom:811.293333pt;}
.yb{bottom:816.773333pt;}
.y9a{bottom:822.373333pt;}
.y3e{bottom:830.053333pt;}
.ya{bottom:839.973333pt;}
.y99{bottom:843.653333pt;}
.y3d{bottom:848.773333pt;}
.y9{bottom:854.853333pt;}
.y98{bottom:865.093333pt;}
.y3c{bottom:867.493333pt;}
.y8{bottom:874.693333pt;}
.y3b{bottom:886.213333pt;}
.y96{bottom:886.373333pt;}
.y7{bottom:897.093333pt;}
.y3a{bottom:904.933333pt;}
.y95{bottom:907.493333pt;}
.y39{bottom:923.653333pt;}
.y94{bottom:928.773333pt;}
.y5{bottom:932.773333pt;}
.y38{bottom:942.373333pt;}
.y93{bottom:950.053333pt;}
.y37{bottom:961.093333pt;}
.y4{bottom:961.413333pt;}
.y91{bottom:971.333333pt;}
.y36{bottom:979.813333pt;}
.y3{bottom:990.053333pt;}
.y35{bottom:998.533333pt;}
.y34{bottom:1017.253333pt;}
.y2{bottom:1018.533333pt;}
.y33{bottom:1036.000000pt;}
.y1{bottom:1048.800000pt;}
.y32{bottom:1060.800000pt;}
.h11{height:18.720000pt;}
.h16{height:20.480000pt;}
.h17{height:20.512000pt;}
.h15{height:20.640000pt;}
.hc{height:26.560000pt;}
.hd{height:26.720000pt;}
.hb{height:26.752000pt;}
.he{height:26.880000pt;}
.h10{height:29.126250pt;}
.h7{height:34.374375pt;}
.h12{height:37.440000pt;}
.h13{height:37.600000pt;}
.h9{height:38.672812pt;}
.ha{height:40.125312pt;}
.h14{height:40.566250pt;}
.hf{height:44.768125pt;}
.h8{height:52.834688pt;}
.h5{height:54.390938pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h2{height:76.671562pt;}
.h4{height:87.156562pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.wf{width:63.072000pt;}
.w3{width:88.000000pt;}
.wa{width:103.200000pt;}
.w8{width:108.512000pt;}
.w9{width:112.992000pt;}
.wb{width:123.552000pt;}
.we{width:131.712000pt;}
.wc{width:132.832000pt;}
.w5{width:139.226667pt;}
.wd{width:141.280000pt;}
.w6{width:171.226667pt;}
.w7{width:173.946667pt;}
.w4{width:203.746667pt;}
.w11{width:273.626667pt;}
.w10{width:595.013333pt;}
.w1{width:794.000000pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x6{left:47.999988pt;}
.x7{left:54.879988pt;}
.x12{left:56.319988pt;}
.xa{left:58.399988pt;}
.xb{left:59.359988pt;}
.xd{left:61.759988pt;}
.x13{left:62.719988pt;}
.x8{left:67.199988pt;}
.xc{left:72.031988pt;}
.x9{left:76.831988pt;}
.x14{left:83.391988pt;}
.x2e{left:85.791988pt;}
.x15{left:91.711988pt;}
.xe{left:94.912000pt;}
.x16{left:96.191988pt;}
.x2f{left:99.552000pt;}
.x17{left:114.111988pt;}
.x18{left:122.431988pt;}
.x19{left:127.071988pt;}
.x1a{left:136.186655pt;}
.x1b{left:140.666655pt;}
.x1c{left:147.066655pt;}
.x1d{left:163.066655pt;}
.x5{left:164.666655pt;}
.x1e{left:171.546655pt;}
.x1f{left:176.026655pt;}
.xf{left:183.546667pt;}
.x20{left:185.146655pt;}
.x21{left:189.626655pt;}
.x22{left:196.186655pt;}
.x23{left:212.026655pt;}
.x24{left:220.546655pt;}
.x30{left:223.746667pt;}
.x25{left:225.026655pt;}
.x26{left:234.146655pt;}
.x27{left:238.626655pt;}
.x3{left:242.146655pt;}
.x28{left:245.186655pt;}
.x29{left:257.986655pt;}
.x2a{left:274.626655pt;}
.x2b{left:289.026667pt;}
.x2{left:311.746655pt;}
.x31{left:357.213333pt;}
.x4{left:372.733321pt;}
.x10{left:387.933333pt;}
.x2c{left:398.173333pt;}
.x1{left:426.173321pt;}
.x32{left:499.133333pt;}
.x2d{left:511.813333pt;}
.x11{left:527.973333pt;}
.x33{left:631.493333pt;}
.x34{left:746.079988pt;}
}




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