
    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_5a3e5c3960e66e7d35bdc590.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959961;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_c6207291fb20443c908281cf.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.435059;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_f32a7739b3c3a3a3782ca600.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.084473;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_8e32bba5c1ee7a99cbbf7451.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.090820;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_b4357cfa9234f348d9f67e65.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.922363;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_899fb2221c31c4b48c88adf2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.922363;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_14a3f93b0358a18980a267e2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.729980;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_43f9b645bfb9845005dae6fd.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.060059;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_10b531c5b039053e9aa98507.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.084473;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_cfbf6bb25e79a7b845abd0b1.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.120117;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_980c0736844840d2da4d30af.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.064941;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_300f60ad87e77930dbc0418b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.767578;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_882fa3c43c55d8f9a0602f17.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.090820;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_a2de62059f6d9b0bde6c5ac4.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_07cc4aef6baa3fec9d01dc3e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.923828;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_2c857b135b076b840efbabc9.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.923828;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_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.035156;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_0fcc29b00bc410c8568719ce.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.060059;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_b8cd73c004ebe9e8b57f803b.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.120117;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_d247e52cf3ddcf1a4fc6bf93.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.774902;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_7119515a2078908e12913131.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.064941;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m2{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);}
.v4{vertical-align:-77.040000px;}
.v2{vertical-align:-27.360000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls18{letter-spacing:-0.888000px;}
.ls15{letter-spacing:-0.822000px;}
.ls14{letter-spacing:-0.144000px;}
.ls17{letter-spacing:-0.109200px;}
.ls7{letter-spacing:-0.106800px;}
.ls8{letter-spacing:-0.053280px;}
.ls4{letter-spacing:-0.000003px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.010560px;}
.ls23{letter-spacing:0.012960px;}
.ls21{letter-spacing:0.017280px;}
.ls1{letter-spacing:0.023040px;}
.ls16{letter-spacing:0.048960px;}
.ls9{letter-spacing:0.054720px;}
.ls19{letter-spacing:0.097800px;}
.lsb{letter-spacing:0.144000px;}
.ls1a{letter-spacing:0.262080px;}
.lsa{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.305400px;}
.ls12{letter-spacing:0.306720px;}
.ls2{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.663840px;}
.ls1d{letter-spacing:3.980160px;}
.ls1c{letter-spacing:8.300160px;}
.ls1b{letter-spacing:9.020160px;}
.lsf{letter-spacing:12.700800px;}
.lse{letter-spacing:13.420800px;}
.ls11{letter-spacing:21.340800px;}
.ls22{letter-spacing:21.980160px;}
.ls20{letter-spacing:22.700160px;}
.ls1e{letter-spacing:23.420160px;}
.ls3{letter-spacing:30.903840px;}
.ls1f{letter-spacing:31.340160px;}
.lsd{letter-spacing:39.427200px;}
.ls10{letter-spacing:63.100800px;}
.lsc{letter-spacing:498.780000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-72.000000px;}
.ws1{word-spacing:-23.461200px;}
.ws10{word-spacing:-22.407840px;}
.wsf{word-spacing:-21.067200px;}
.ws16{word-spacing:-18.572756px;}
.wse{word-spacing:-18.360000px;}
.wsd{word-spacing:-18.216000px;}
.ws0{word-spacing:-17.639997px;}
.ws12{word-spacing:-17.619840px;}
.ws6{word-spacing:-16.755856px;}
.ws9{word-spacing:-15.950880px;}
.wsa{word-spacing:-15.896160px;}
.ws7{word-spacing:-15.842880px;}
.ws8{word-spacing:-15.789360px;}
.ws14{word-spacing:-14.595840px;}
.ws4{word-spacing:-14.572800px;}
.ws13{word-spacing:-14.463600px;}
.ws2{word-spacing:-14.364000px;}
.ws15{word-spacing:-13.939200px;}
.ws11{word-spacing:-13.750800px;}
.ws17{word-spacing:-13.160160px;}
.ws5{word-spacing:-13.147200px;}
.ws3{word-spacing:-9.187200px;}
.wsb{word-spacing:0.000000px;}
._19{margin-left:-4.861440px;}
._18{margin-left:-3.738240px;}
._c{margin-left:-2.599200px;}
._1{margin-left:-1.080000px;}
._0{width:1.452009px;}
._e{width:2.952463px;}
._4{width:4.052366px;}
._3{width:5.079600px;}
._6{width:6.285343px;}
._5{width:7.290720px;}
._1f{width:9.313920px;}
._23{width:10.609200px;}
._1a{width:11.792160px;}
._2{width:13.098240px;}
._11{width:14.880240px;}
._8{width:16.553520px;}
._9{width:17.697343px;}
._7{width:19.063440px;}
._10{width:20.916000px;}
._f{width:22.230720px;}
._1c{width:23.446080px;}
._1d{width:24.520320px;}
._1e{width:26.022240px;}
._27{width:27.402711px;}
._2d{width:28.900800px;}
._12{width:30.352320px;}
._20{width:31.430391px;}
._a{width:32.569200px;}
._d{width:33.943680px;}
._b{width:35.271351px;}
._16{width:38.753280px;}
._17{width:39.848151px;}
._21{width:41.758560px;}
._2a{width:45.792000px;}
._28{width:49.083840px;}
._29{width:50.358240px;}
._22{width:54.724320px;}
._1b{width:62.409600px;}
._25{width:115.491591px;}
._24{width:116.532000px;}
._2b{width:126.538560px;}
._2c{width:128.057760px;}
._14{width:193.187031px;}
._13{width:194.428800px;}
._15{width:843.088800px;}
._26{width:849.583200px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc3{color:transparent;}
.fc0{color:rgb(56,86,35);}
.fs5{font-size:5.760000px;}
.fs3{font-size:18.000000px;}
.fs4{font-size:23.760000px;}
.fsa{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fsb{font-size:62.991941px;}
.fsc{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.fsd{font-size:69.822393px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:84.240000px;}
.fs7{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y85{bottom:3.420000px;}
.y7{bottom:3.960000px;}
.y9{bottom:4.500000px;}
.y89{bottom:5.580000px;}
.y47{bottom:5.760000px;}
.y56{bottom:6.120000px;}
.y16{bottom:6.165000px;}
.ya{bottom:10.080000px;}
.y3e{bottom:14.940000px;}
.y8{bottom:21.060000px;}
.y6{bottom:22.320000px;}
.y46{bottom:25.200000px;}
.y84{bottom:30.780000px;}
.y3d{bottom:35.280000px;}
.y88{bottom:44.640000px;}
.y45{bottom:44.820000px;}
.yb{bottom:53.460000px;}
.y5{bottom:54.720000px;}
.y28{bottom:56.160000px;}
.y83{bottom:58.140000px;}
.y4c{bottom:58.320000px;}
.y44{bottom:64.260000px;}
.y3c{bottom:64.620000px;}
.y4b{bottom:75.240000px;}
.y82{bottom:76.725000px;}
.y41{bottom:79.020000px;}
.y27{bottom:79.380000px;}
.y4a{bottom:80.820000px;}
.y4{bottom:81.360000px;}
.y87{bottom:83.700000px;}
.y43{bottom:83.880000px;}
.y3b{bottom:94.860000px;}
.y81{bottom:95.265000px;}
.y40{bottom:101.340000px;}
.y26{bottom:101.520000px;}
.y42{bottom:103.320000px;}
.y80{bottom:122.625000px;}
.y25{bottom:123.660000px;}
.y3a{bottom:124.200000px;}
.ybf{bottom:132.300000px;}
.y39{bottom:144.360000px;}
.y24{bottom:145.980000px;}
.y7f{bottom:150.345000px;}
.ybe{bottom:151.020000px;}
.y68{bottom:156.645000px;}
.y38{bottom:164.520000px;}
.y7e{bottom:167.985000px;}
.ybd{bottom:169.770000px;}
.y67{bottom:178.785000px;}
.y8b{bottom:181.470000px;}
.y37{bottom:184.860000px;}
.y7d{bottom:186.525000px;}
.ybc{bottom:188.490000px;}
.y66{bottom:200.745000px;}
.y8a{bottom:203.430000px;}
.y7c{bottom:204.885000px;}
.y36{bottom:205.020000px;}
.ybb{bottom:207.210000px;}
.y23{bottom:213.120000px;}
.y86{bottom:217.650000px;}
.y7b{bottom:223.425000px;}
.y35{bottom:225.180000px;}
.yba{bottom:225.930000px;}
.y22{bottom:234.900000px;}
.y7a{bottom:241.785000px;}
.yb9{bottom:244.470000px;}
.y34{bottom:245.550000px;}
.y21{bottom:257.070000px;}
.y79{bottom:260.325000px;}
.yb8{bottom:263.190000px;}
.y33{bottom:265.710000px;}
.y65{bottom:267.345000px;}
.y48{bottom:273.450000px;}
.y78{bottom:278.685000px;}
.y20{bottom:279.390000px;}
.yb7{bottom:281.910000px;}
.y32{bottom:286.050000px;}
.y64{bottom:288.045000px;}
.y3f{bottom:296.310000px;}
.y77{bottom:297.225000px;}
.yb6{bottom:300.630000px;}
.y1f{bottom:301.710000px;}
.y31{bottom:306.210000px;}
.y63{bottom:310.185000px;}
.y76{bottom:315.795000px;}
.yb5{bottom:323.670000px;}
.y1e{bottom:323.850000px;}
.y30{bottom:326.370000px;}
.y62{bottom:332.535000px;}
.y75{bottom:334.155000px;}
.y57{bottom:334.830000px;}
.yb4{bottom:342.390000px;}
.y1d{bottom:346.170000px;}
.y2f{bottom:346.710000px;}
.y74{bottom:352.695000px;}
.y61{bottom:354.855000px;}
.yb3{bottom:361.110000px;}
.y2e{bottom:366.870000px;}
.y1c{bottom:368.310000px;}
.y73{bottom:371.055000px;}
.y60{bottom:376.995000px;}
.yb2{bottom:379.830000px;}
.y2d{bottom:387.030000px;}
.y72{bottom:389.595000px;}
.y1b{bottom:390.630000px;}
.yb1{bottom:398.370000px;}
.y5f{bottom:399.315000px;}
.y2c{bottom:407.370000px;}
.y71{bottom:408.135000px;}
.y1a{bottom:412.950000px;}
.y17{bottom:413.535000px;}
.yb0{bottom:417.135000px;}
.y5e{bottom:421.455000px;}
.y70{bottom:426.495000px;}
.y2b{bottom:427.530000px;}
.y19{bottom:435.090000px;}
.yaf{bottom:435.855000px;}
.y5d{bottom:443.775000px;}
.y6f{bottom:445.035000px;}
.y2a{bottom:447.690000px;}
.yae{bottom:454.575000px;}
.y18{bottom:457.410000px;}
.y6e{bottom:463.395000px;}
.y5c{bottom:465.915000px;}
.y29{bottom:468.030000px;}
.yad{bottom:477.615000px;}
.y6d{bottom:481.935000px;}
.y5b{bottom:488.235000px;}
.yac{bottom:496.335000px;}
.y6c{bottom:500.295000px;}
.y5a{bottom:510.555000px;}
.yab{bottom:515.055000px;}
.y6b{bottom:518.835000px;}
.y59{bottom:532.695000px;}
.yaa{bottom:533.775000px;}
.y6a{bottom:537.375000px;}
.ya9{bottom:552.315000px;}
.y58{bottom:555.015000px;}
.y69{bottom:564.780000px;}
.ya8{bottom:571.035000px;}
.ydc{bottom:588.135000px;}
.ya7{bottom:589.755000px;}
.ydb{bottom:605.775000px;}
.ya6{bottom:608.475000px;}
.yda{bottom:627.735000px;}
.ya5{bottom:631.515000px;}
.yd9{bottom:645.375000px;}
.ya4{bottom:650.265000px;}
.yd8{bottom:663.045000px;}
.ya3{bottom:668.985000px;}
.yd7{bottom:680.505000px;}
.ya2{bottom:687.705000px;}
.yd6{bottom:702.645000px;}
.ya1{bottom:706.245000px;}
.yd5{bottom:720.285000px;}
.ya0{bottom:724.965000px;}
.yd4{bottom:742.245000px;}
.y9f{bottom:743.685000px;}
.yd3{bottom:759.885000px;}
.y9e{bottom:762.405000px;}
.yd2{bottom:782.025000px;}
.y9d{bottom:790.665000px;}
.yd1{bottom:803.985000px;}
.y9c{bottom:820.005000px;}
.yd0{bottom:821.625000px;}
.y9b{bottom:838.725000px;}
.ycf{bottom:843.765000px;}
.y9a{bottom:857.445000px;}
.yce{bottom:861.405000px;}
.y99{bottom:876.165000px;}
.ycd{bottom:888.585000px;}
.y98{bottom:894.885000px;}
.y15{bottom:895.785000px;}
.y97{bottom:913.470000px;}
.y55{bottom:914.730000px;}
.ycc{bottom:917.970000px;}
.y14{bottom:926.970000px;}
.y96{bottom:932.190000px;}
.ycb{bottom:936.690000px;}
.y54{bottom:945.870000px;}
.y95{bottom:950.910000px;}
.yca{bottom:955.410000px;}
.y13{bottom:956.310000px;}
.y94{bottom:973.950000px;}
.yc9{bottom:974.130000px;}
.y53{bottom:975.210000px;}
.y12{bottom:982.230000px;}
.y93{bottom:992.670000px;}
.yc8{bottom:997.170000px;}
.y11{bottom:999.150000px;}
.y52{bottom:1001.130000px;}
.y92{bottom:1011.390000px;}
.yc7{bottom:1015.890000px;}
.y51{bottom:1018.050000px;}
.y10{bottom:1018.230000px;}
.y91{bottom:1030.110000px;}
.yc6{bottom:1034.610000px;}
.y50{bottom:1037.130000px;}
.yf{bottom:1047.390000px;}
.y90{bottom:1048.830000px;}
.yc5{bottom:1053.330000px;}
.y4f{bottom:1065.930000px;}
.y8f{bottom:1067.370000px;}
.yc4{bottom:1072.050000px;}
.ye{bottom:1080.510000px;}
.y8e{bottom:1086.090000px;}
.yc3{bottom:1090.590000px;}
.y4e{bottom:1098.330000px;}
.y8d{bottom:1104.810000px;}
.yc2{bottom:1109.310000px;}
.yd{bottom:1113.090000px;}
.yc1{bottom:1128.030000px;}
.y4d{bottom:1130.730000px;}
.y8c{bottom:1133.070000px;}
.yc{bottom:1138.650000px;}
.y3{bottom:1150.200000px;}
.yc0{bottom:1156.320000px;}
.y2{bottom:1171.980000px;}
.y49{bottom:1192.680000px;}
.y1{bottom:1193.220000px;}
.h21{height:4.876875px;}
.ha{height:5.073750px;}
.h20{height:5.729063px;}
.h6{height:17.903320px;}
.h8{height:20.929219px;}
.h23{height:21.420000px;}
.h11{height:21.456000px;}
.h1f{height:24.328477px;}
.h5{height:26.640000px;}
.hb{height:34.366289px;}
.hf{height:42.257813px;}
.h15{height:47.189531px;}
.h17{height:50.229844px;}
.h25{height:50.597578px;}
.h18{height:51.764766px;}
.h1a{height:52.640156px;}
.h2{height:54.000000px;}
.h1d{height:54.386719px;}
.h26{height:54.883125px;}
.h1b{height:55.487042px;}
.h16{height:56.084062px;}
.h10{height:57.377812px;}
.h12{height:58.348125px;}
.h14{height:59.706562px;}
.h28{height:60.960938px;}
.h29{height:61.503709px;}
.h3{height:62.211094px;}
.h7{height:62.367188px;}
.h9{height:63.421875px;}
.h4{height:65.884219px;}
.hc{height:68.219648px;}
.hd{height:71.820000px;}
.h1e{height:73.722656px;}
.he{height:74.926406px;}
.h1c{height:81.078047px;}
.h22{height:86.314922px;}
.h27{height:117.180000px;}
.h19{height:117.216000px;}
.h13{height:482.250000px;}
.h24{height:579.885000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:149.040000px;}
.w7{width:159.660000px;}
.w4{width:240.690000px;}
.w3{width:240.870000px;}
.w8{width:569.130000px;}
.w6{width:578.310000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:8.100000px;}
.x4{left:84.996000px;}
.xe{left:95.615987px;}
.xa{left:108.215987px;}
.x7{left:115.740000px;}
.x1d{left:116.865000px;}
.x6{left:120.240000px;}
.x1{left:122.615987px;}
.x21{left:127.475987px;}
.x11{left:133.785000px;}
.x18{left:143.495987px;}
.x2{left:147.815987px;}
.xb{left:166.529987px;}
.x23{left:170.129987px;}
.x12{left:179.505000px;}
.x1e{left:186.165000px;}
.x24{left:227.009987px;}
.x10{left:234.030000px;}
.x9{left:241.995000px;}
.x1a{left:244.650000px;}
.x5{left:325.875000px;}
.x1f{left:337.215000px;}
.x26{left:345.674987px;}
.x22{left:357.734987px;}
.x20{left:360.254987px;}
.xd{left:361.514987px;}
.x19{left:365.474987px;}
.x13{left:400.080000px;}
.x16{left:430.140000px;}
.x25{left:433.874987px;}
.x17{left:441.794987px;}
.xc{left:446.504987px;}
.x14{left:469.200000px;}
.x15{left:508.800000px;}
.x1b{left:519.240000px;}
.x1c{left:565.350000px;}
.x8{left:566.565000px;}
.x27{left:622.544987px;}
.x28{left:679.469987px;}
.x29{left:703.409987px;}
.x2a{left:779.729987px;}
.x3{left:808.019987px;}
@media print{
.v4{vertical-align:-68.480000pt;}
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls18{letter-spacing:-0.789333pt;}
.ls15{letter-spacing:-0.730667pt;}
.ls14{letter-spacing:-0.128000pt;}
.ls17{letter-spacing:-0.097067pt;}
.ls7{letter-spacing:-0.094933pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:-0.000003pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.009387pt;}
.ls23{letter-spacing:0.011520pt;}
.ls21{letter-spacing:0.015360pt;}
.ls1{letter-spacing:0.020480pt;}
.ls16{letter-spacing:0.043520pt;}
.ls9{letter-spacing:0.048640pt;}
.ls19{letter-spacing:0.086933pt;}
.lsb{letter-spacing:0.128000pt;}
.ls1a{letter-spacing:0.232960pt;}
.lsa{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.271467pt;}
.ls12{letter-spacing:0.272640pt;}
.ls2{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.590080pt;}
.ls1d{letter-spacing:3.537920pt;}
.ls1c{letter-spacing:7.377920pt;}
.ls1b{letter-spacing:8.017920pt;}
.lsf{letter-spacing:11.289600pt;}
.lse{letter-spacing:11.929600pt;}
.ls11{letter-spacing:18.969600pt;}
.ls22{letter-spacing:19.537920pt;}
.ls20{letter-spacing:20.177920pt;}
.ls1e{letter-spacing:20.817920pt;}
.ls3{letter-spacing:27.470080pt;}
.ls1f{letter-spacing:27.857920pt;}
.lsd{letter-spacing:35.046400pt;}
.ls10{letter-spacing:56.089600pt;}
.lsc{letter-spacing:443.360000pt;}
.wsc{word-spacing:-64.000000pt;}
.ws1{word-spacing:-20.854400pt;}
.ws10{word-spacing:-19.918080pt;}
.wsf{word-spacing:-18.726400pt;}
.ws16{word-spacing:-16.509117pt;}
.wse{word-spacing:-16.320000pt;}
.wsd{word-spacing:-16.192000pt;}
.ws0{word-spacing:-15.679997pt;}
.ws12{word-spacing:-15.662080pt;}
.ws6{word-spacing:-14.894095pt;}
.ws9{word-spacing:-14.178560pt;}
.wsa{word-spacing:-14.129920pt;}
.ws7{word-spacing:-14.082560pt;}
.ws8{word-spacing:-14.034987pt;}
.ws14{word-spacing:-12.974080pt;}
.ws4{word-spacing:-12.953600pt;}
.ws13{word-spacing:-12.856533pt;}
.ws2{word-spacing:-12.768000pt;}
.ws15{word-spacing:-12.390400pt;}
.ws11{word-spacing:-12.222933pt;}
.ws17{word-spacing:-11.697920pt;}
.ws5{word-spacing:-11.686400pt;}
.ws3{word-spacing:-8.166400pt;}
.wsb{word-spacing:0.000000pt;}
._19{margin-left:-4.321280pt;}
._18{margin-left:-3.322880pt;}
._c{margin-left:-2.310400pt;}
._1{margin-left:-0.960000pt;}
._0{width:1.290674pt;}
._e{width:2.624411pt;}
._4{width:3.602103pt;}
._3{width:4.515200pt;}
._6{width:5.586971pt;}
._5{width:6.480640pt;}
._1f{width:8.279040pt;}
._23{width:9.430400pt;}
._1a{width:10.481920pt;}
._2{width:11.642880pt;}
._11{width:13.226880pt;}
._8{width:14.714240pt;}
._9{width:15.730971pt;}
._7{width:16.945280pt;}
._10{width:18.592000pt;}
._f{width:19.760640pt;}
._1c{width:20.840960pt;}
._1d{width:21.795840pt;}
._1e{width:23.130880pt;}
._27{width:24.357966pt;}
._2d{width:25.689600pt;}
._12{width:26.979840pt;}
._20{width:27.938126pt;}
._a{width:28.950400pt;}
._d{width:30.172160pt;}
._b{width:31.352312pt;}
._16{width:34.447360pt;}
._17{width:35.420579pt;}
._21{width:37.118720pt;}
._2a{width:40.704000pt;}
._28{width:43.630080pt;}
._29{width:44.762880pt;}
._22{width:48.643840pt;}
._1b{width:55.475200pt;}
._25{width:102.659192pt;}
._24{width:103.584000pt;}
._2b{width:112.478720pt;}
._2c{width:113.829120pt;}
._14{width:171.721806pt;}
._13{width:172.825600pt;}
._15{width:749.412267pt;}
._26{width:755.185067pt;}
.fs5{font-size:5.120000pt;}
.fs3{font-size:16.000000pt;}
.fs4{font-size:21.120000pt;}
.fsa{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fsb{font-size:55.992837pt;}
.fsc{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.fsd{font-size:62.064349pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:74.880000pt;}
.fs7{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y85{bottom:3.040000pt;}
.y7{bottom:3.520000pt;}
.y9{bottom:4.000000pt;}
.y89{bottom:4.960000pt;}
.y47{bottom:5.120000pt;}
.y56{bottom:5.440000pt;}
.y16{bottom:5.480000pt;}
.ya{bottom:8.960000pt;}
.y3e{bottom:13.280000pt;}
.y8{bottom:18.720000pt;}
.y6{bottom:19.840000pt;}
.y46{bottom:22.400000pt;}
.y84{bottom:27.360000pt;}
.y3d{bottom:31.360000pt;}
.y88{bottom:39.680000pt;}
.y45{bottom:39.840000pt;}
.yb{bottom:47.520000pt;}
.y5{bottom:48.640000pt;}
.y28{bottom:49.920000pt;}
.y83{bottom:51.680000pt;}
.y4c{bottom:51.840000pt;}
.y44{bottom:57.120000pt;}
.y3c{bottom:57.440000pt;}
.y4b{bottom:66.880000pt;}
.y82{bottom:68.200000pt;}
.y41{bottom:70.240000pt;}
.y27{bottom:70.560000pt;}
.y4a{bottom:71.840000pt;}
.y4{bottom:72.320000pt;}
.y87{bottom:74.400000pt;}
.y43{bottom:74.560000pt;}
.y3b{bottom:84.320000pt;}
.y81{bottom:84.680000pt;}
.y40{bottom:90.080000pt;}
.y26{bottom:90.240000pt;}
.y42{bottom:91.840000pt;}
.y80{bottom:109.000000pt;}
.y25{bottom:109.920000pt;}
.y3a{bottom:110.400000pt;}
.ybf{bottom:117.600000pt;}
.y39{bottom:128.320000pt;}
.y24{bottom:129.760000pt;}
.y7f{bottom:133.640000pt;}
.ybe{bottom:134.240000pt;}
.y68{bottom:139.240000pt;}
.y38{bottom:146.240000pt;}
.y7e{bottom:149.320000pt;}
.ybd{bottom:150.906667pt;}
.y67{bottom:158.920000pt;}
.y8b{bottom:161.306667pt;}
.y37{bottom:164.320000pt;}
.y7d{bottom:165.800000pt;}
.ybc{bottom:167.546667pt;}
.y66{bottom:178.440000pt;}
.y8a{bottom:180.826667pt;}
.y7c{bottom:182.120000pt;}
.y36{bottom:182.240000pt;}
.ybb{bottom:184.186667pt;}
.y23{bottom:189.440000pt;}
.y86{bottom:193.466667pt;}
.y7b{bottom:198.600000pt;}
.y35{bottom:200.160000pt;}
.yba{bottom:200.826667pt;}
.y22{bottom:208.800000pt;}
.y7a{bottom:214.920000pt;}
.yb9{bottom:217.306667pt;}
.y34{bottom:218.266667pt;}
.y21{bottom:228.506667pt;}
.y79{bottom:231.400000pt;}
.yb8{bottom:233.946667pt;}
.y33{bottom:236.186667pt;}
.y65{bottom:237.640000pt;}
.y48{bottom:243.066667pt;}
.y78{bottom:247.720000pt;}
.y20{bottom:248.346667pt;}
.yb7{bottom:250.586667pt;}
.y32{bottom:254.266667pt;}
.y64{bottom:256.040000pt;}
.y3f{bottom:263.386667pt;}
.y77{bottom:264.200000pt;}
.yb6{bottom:267.226667pt;}
.y1f{bottom:268.186667pt;}
.y31{bottom:272.186667pt;}
.y63{bottom:275.720000pt;}
.y76{bottom:280.706667pt;}
.yb5{bottom:287.706667pt;}
.y1e{bottom:287.866667pt;}
.y30{bottom:290.106667pt;}
.y62{bottom:295.586667pt;}
.y75{bottom:297.026667pt;}
.y57{bottom:297.626667pt;}
.yb4{bottom:304.346667pt;}
.y1d{bottom:307.706667pt;}
.y2f{bottom:308.186667pt;}
.y74{bottom:313.506667pt;}
.y61{bottom:315.426667pt;}
.yb3{bottom:320.986667pt;}
.y2e{bottom:326.106667pt;}
.y1c{bottom:327.386667pt;}
.y73{bottom:329.826667pt;}
.y60{bottom:335.106667pt;}
.yb2{bottom:337.626667pt;}
.y2d{bottom:344.026667pt;}
.y72{bottom:346.306667pt;}
.y1b{bottom:347.226667pt;}
.yb1{bottom:354.106667pt;}
.y5f{bottom:354.946667pt;}
.y2c{bottom:362.106667pt;}
.y71{bottom:362.786667pt;}
.y1a{bottom:367.066667pt;}
.y17{bottom:367.586667pt;}
.yb0{bottom:370.786667pt;}
.y5e{bottom:374.626667pt;}
.y70{bottom:379.106667pt;}
.y2b{bottom:380.026667pt;}
.y19{bottom:386.746667pt;}
.yaf{bottom:387.426667pt;}
.y5d{bottom:394.466667pt;}
.y6f{bottom:395.586667pt;}
.y2a{bottom:397.946667pt;}
.yae{bottom:404.066667pt;}
.y18{bottom:406.586667pt;}
.y6e{bottom:411.906667pt;}
.y5c{bottom:414.146667pt;}
.y29{bottom:416.026667pt;}
.yad{bottom:424.546667pt;}
.y6d{bottom:428.386667pt;}
.y5b{bottom:433.986667pt;}
.yac{bottom:441.186667pt;}
.y6c{bottom:444.706667pt;}
.y5a{bottom:453.826667pt;}
.yab{bottom:457.826667pt;}
.y6b{bottom:461.186667pt;}
.y59{bottom:473.506667pt;}
.yaa{bottom:474.466667pt;}
.y6a{bottom:477.666667pt;}
.ya9{bottom:490.946667pt;}
.y58{bottom:493.346667pt;}
.y69{bottom:502.026667pt;}
.ya8{bottom:507.586667pt;}
.ydc{bottom:522.786667pt;}
.ya7{bottom:524.226667pt;}
.ydb{bottom:538.466667pt;}
.ya6{bottom:540.866667pt;}
.yda{bottom:557.986667pt;}
.ya5{bottom:561.346667pt;}
.yd9{bottom:573.666667pt;}
.ya4{bottom:578.013333pt;}
.yd8{bottom:589.373333pt;}
.ya3{bottom:594.653333pt;}
.yd7{bottom:604.893333pt;}
.ya2{bottom:611.293333pt;}
.yd6{bottom:624.573333pt;}
.ya1{bottom:627.773333pt;}
.yd5{bottom:640.253333pt;}
.ya0{bottom:644.413333pt;}
.yd4{bottom:659.773333pt;}
.y9f{bottom:661.053333pt;}
.yd3{bottom:675.453333pt;}
.y9e{bottom:677.693333pt;}
.yd2{bottom:695.133333pt;}
.y9d{bottom:702.813333pt;}
.yd1{bottom:714.653333pt;}
.y9c{bottom:728.893333pt;}
.yd0{bottom:730.333333pt;}
.y9b{bottom:745.533333pt;}
.ycf{bottom:750.013333pt;}
.y9a{bottom:762.173333pt;}
.yce{bottom:765.693333pt;}
.y99{bottom:778.813333pt;}
.ycd{bottom:789.853333pt;}
.y98{bottom:795.453333pt;}
.y15{bottom:796.253333pt;}
.y97{bottom:811.973333pt;}
.y55{bottom:813.093333pt;}
.ycc{bottom:815.973333pt;}
.y14{bottom:823.973333pt;}
.y96{bottom:828.613333pt;}
.ycb{bottom:832.613333pt;}
.y54{bottom:840.773333pt;}
.y95{bottom:845.253333pt;}
.yca{bottom:849.253333pt;}
.y13{bottom:850.053333pt;}
.y94{bottom:865.733333pt;}
.yc9{bottom:865.893333pt;}
.y53{bottom:866.853333pt;}
.y12{bottom:873.093333pt;}
.y93{bottom:882.373333pt;}
.yc8{bottom:886.373333pt;}
.y11{bottom:888.133333pt;}
.y52{bottom:889.893333pt;}
.y92{bottom:899.013333pt;}
.yc7{bottom:903.013333pt;}
.y51{bottom:904.933333pt;}
.y10{bottom:905.093333pt;}
.y91{bottom:915.653333pt;}
.yc6{bottom:919.653333pt;}
.y50{bottom:921.893333pt;}
.yf{bottom:931.013333pt;}
.y90{bottom:932.293333pt;}
.yc5{bottom:936.293333pt;}
.y4f{bottom:947.493333pt;}
.y8f{bottom:948.773333pt;}
.yc4{bottom:952.933333pt;}
.ye{bottom:960.453333pt;}
.y8e{bottom:965.413333pt;}
.yc3{bottom:969.413333pt;}
.y4e{bottom:976.293333pt;}
.y8d{bottom:982.053333pt;}
.yc2{bottom:986.053333pt;}
.yd{bottom:989.413333pt;}
.yc1{bottom:1002.693333pt;}
.y4d{bottom:1005.093333pt;}
.y8c{bottom:1007.173333pt;}
.yc{bottom:1012.133333pt;}
.y3{bottom:1022.400000pt;}
.yc0{bottom:1027.840000pt;}
.y2{bottom:1041.760000pt;}
.y49{bottom:1060.160000pt;}
.y1{bottom:1060.640000pt;}
.h21{height:4.335000pt;}
.ha{height:4.510000pt;}
.h20{height:5.092500pt;}
.h6{height:15.914062pt;}
.h8{height:18.603750pt;}
.h23{height:19.040000pt;}
.h11{height:19.072000pt;}
.h1f{height:21.625312pt;}
.h5{height:23.680000pt;}
.hb{height:30.547812pt;}
.hf{height:37.562500pt;}
.h15{height:41.946250pt;}
.h17{height:44.648750pt;}
.h25{height:44.975625pt;}
.h18{height:46.013125pt;}
.h1a{height:46.791250pt;}
.h2{height:48.000000pt;}
.h1d{height:48.343750pt;}
.h26{height:48.785000pt;}
.h1b{height:49.321815pt;}
.h16{height:49.852500pt;}
.h10{height:51.002500pt;}
.h12{height:51.865000pt;}
.h14{height:53.072500pt;}
.h28{height:54.187500pt;}
.h29{height:54.669964pt;}
.h3{height:55.298750pt;}
.h7{height:55.437500pt;}
.h9{height:56.375000pt;}
.h4{height:58.563750pt;}
.hc{height:60.639687pt;}
.hd{height:63.840000pt;}
.h1e{height:65.531250pt;}
.he{height:66.601250pt;}
.h1c{height:72.069375pt;}
.h22{height:76.724375pt;}
.h27{height:104.160000pt;}
.h19{height:104.192000pt;}
.h13{height:428.666667pt;}
.h24{height:515.453333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:132.480000pt;}
.w7{width:141.920000pt;}
.w4{width:213.946667pt;}
.w3{width:214.106667pt;}
.w8{width:505.893333pt;}
.w6{width:514.053333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:7.200000pt;}
.x4{left:75.552000pt;}
.xe{left:84.991988pt;}
.xa{left:96.191988pt;}
.x7{left:102.880000pt;}
.x1d{left:103.880000pt;}
.x6{left:106.880000pt;}
.x1{left:108.991988pt;}
.x21{left:113.311988pt;}
.x11{left:118.920000pt;}
.x18{left:127.551988pt;}
.x2{left:131.391988pt;}
.xb{left:148.026655pt;}
.x23{left:151.226655pt;}
.x12{left:159.560000pt;}
.x1e{left:165.480000pt;}
.x24{left:201.786655pt;}
.x10{left:208.026667pt;}
.x9{left:215.106667pt;}
.x1a{left:217.466667pt;}
.x5{left:289.666667pt;}
.x1f{left:299.746667pt;}
.x26{left:307.266655pt;}
.x22{left:317.986655pt;}
.x20{left:320.226655pt;}
.xd{left:321.346655pt;}
.x19{left:324.866655pt;}
.x13{left:355.626667pt;}
.x16{left:382.346667pt;}
.x25{left:385.666655pt;}
.x17{left:392.706655pt;}
.xc{left:396.893322pt;}
.x14{left:417.066667pt;}
.x15{left:452.266667pt;}
.x1b{left:461.546667pt;}
.x1c{left:502.533333pt;}
.x8{left:503.613333pt;}
.x27{left:553.373322pt;}
.x28{left:603.973322pt;}
.x29{left:625.253322pt;}
.x2a{left:693.093322pt;}
.x3{left:718.239988pt;}
}




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