
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_dbaa887a57b9b1ce891c145e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_efe993a9dd8e57c97bf5bff9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_73c7dd1a6782f47bdf220a13.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_aaf3cb8bba50bb0453032543.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921875;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_d88be16440c61723e2d23fad.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_3ed26b9efa23524c44d4f335.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b3189be474bedc076f83ac82.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.762207;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_8588976d743cd1989b1aacec.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.966309;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_b4cf210c7806f1403acd7836.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_2c6e2ee7699b6b01433bb3cd.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.040039;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls4{letter-spacing:-1.008000px;}
.ls15{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.259800px;}
.ls6{letter-spacing:-0.226200px;}
.lsa{letter-spacing:-0.108000px;}
.ls5{letter-spacing:-0.089400px;}
.ls9{letter-spacing:-0.072000px;}
.ls8{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.072000px;}
.lsf{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.206400px;}
.ls3{letter-spacing:0.262200px;}
.lsd{letter-spacing:0.298800px;}
.lsc{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.480000px;}
.ls7{letter-spacing:0.493800px;}
.ls14{letter-spacing:0.540000px;}
.ls12{letter-spacing:16.506720px;}
.ls10{letter-spacing:46.026720px;}
.lsb{letter-spacing:64.026720px;}
.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;}
}
.wsc{word-spacing:-59.760000px;}
.wsa{word-spacing:-54.000000px;}
.ws1{word-spacing:-16.822200px;}
.ws0{word-spacing:-16.560000px;}
.wse{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.238800px;}
.ws11{word-spacing:-15.146400px;}
.wsf{word-spacing:-15.046800px;}
.ws3{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.wsd{word-spacing:-14.680200px;}
.ws9{word-spacing:-13.392000px;}
.ws6{word-spacing:-10.933800px;}
.ws5{word-spacing:-10.440000px;}
.ws4{word-spacing:-10.213800px;}
.ws2{word-spacing:-9.720000px;}
.ws8{word-spacing:-8.928000px;}
.wsb{word-spacing:0.000000px;}
._0{margin-left:-1.093680px;}
._1{width:1.414320px;}
._2{width:2.567280px;}
._b{width:3.627840px;}
._9{width:4.740960px;}
._a{width:5.956080px;}
._5{width:7.489920px;}
._6{width:9.043680px;}
._7{width:10.458000px;}
._4{width:12.390240px;}
._3{width:13.565520px;}
._8{width:16.214880px;}
._11{width:17.310480px;}
._d{width:18.525600px;}
._c{width:19.541520px;}
._10{width:20.736720px;}
._f{width:21.872160px;}
._19{width:22.987680px;}
._21{width:24.800400px;}
._1d{width:26.212560px;}
._1c{width:27.609120px;}
._1e{width:29.162880px;}
._e{width:30.497520px;}
._1b{width:31.613040px;}
._29{width:35.616960px;}
._31{width:36.987840px;}
._28{width:39.740400px;}
._30{width:40.910160px;}
._32{width:43.106880px;}
._14{width:44.481360px;}
._13{width:45.608160px;}
._27{width:47.349840px;}
._2f{width:48.828240px;}
._2e{width:49.898880px;}
._25{width:51.533040px;}
._24{width:53.544960px;}
._2d{width:55.517040px;}
._2c{width:63.050640px;}
._2b{width:64.082640px;}
._2a{width:65.377440px;}
._1f{width:67.608480px;}
._16{width:68.724000px;}
._33{width:77.983200px;}
._22{width:84.580320px;}
._23{width:85.695840px;}
._17{width:88.165920px;}
._18{width:89.341200px;}
._34{width:104.002320px;}
._12{width:109.320960px;}
._20{width:131.193120px;}
._1a{width:135.057600px;}
._15{width:211.271520px;}
._26{width:301.907520px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fsb{font-size:56.920429px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y4e{bottom:2.160000px;}
.y43{bottom:3.240000px;}
.y5{bottom:3.780000px;}
.y5d{bottom:5.010000px;}
.y2{bottom:9.930000px;}
.y4d{bottom:10.260000px;}
.yd8{bottom:11.700000px;}
.ycf{bottom:11.880000px;}
.y5b{bottom:13.140000px;}
.y42{bottom:20.340000px;}
.yc4{bottom:20.520000px;}
.y4{bottom:22.710000px;}
.y5a{bottom:28.620000px;}
.yd2{bottom:28.980000px;}
.yca{bottom:29.160000px;}
.yd3{bottom:37.620000px;}
.y41{bottom:37.665000px;}
.ycd{bottom:37.800000px;}
.y4c{bottom:39.960000px;}
.y59{bottom:44.100000px;}
.yd7{bottom:46.260000px;}
.yd1{bottom:46.305000px;}
.yc9{bottom:46.440000px;}
.y3{bottom:47.910000px;}
.y4b{bottom:51.120000px;}
.ycc{bottom:54.900000px;}
.y40{bottom:54.945000px;}
.yda{bottom:55.080000px;}
.y7{bottom:57.060000px;}
.y58{bottom:61.914000px;}
.y4a{bottom:62.814000px;}
.yce{bottom:63.540000px;}
.yde{bottom:63.720000px;}
.ycb{bottom:72.180000px;}
.y3f{bottom:72.225000px;}
.ydc{bottom:72.360000px;}
.y49{bottom:75.954000px;}
.y57{bottom:77.394000px;}
.yd6{bottom:80.820000px;}
.ydd{bottom:81.000000px;}
.y48{bottom:88.914000px;}
.y44{bottom:89.316000px;}
.yd5{bottom:89.460000px;}
.y3e{bottom:89.505000px;}
.ydb{bottom:89.640000px;}
.y56{bottom:92.874000px;}
.y95{bottom:97.236000px;}
.yc2{bottom:98.316000px;}
.y55{bottom:105.834000px;}
.y3d{bottom:106.785000px;}
.yef{bottom:106.956000px;}
.y47{bottom:110.874000px;}
.y54{bottom:112.494000px;}
.y94{bottom:114.336000px;}
.yc1{bottom:115.416000px;}
.y3c{bottom:123.885000px;}
.yee{bottom:124.236000px;}
.y53{bottom:127.974000px;}
.y93{bottom:131.616000px;}
.yc0{bottom:132.696000px;}
.y3b{bottom:141.165000px;}
.yed{bottom:141.336000px;}
.y52{bottom:143.454000px;}
.y92{bottom:148.896000px;}
.ybf{bottom:149.976000px;}
.y3a{bottom:158.445000px;}
.yec{bottom:158.610000px;}
.y51{bottom:158.934000px;}
.y91{bottom:166.170000px;}
.ybe{bottom:167.250000px;}
.y46{bottom:172.974000px;}
.y50{bottom:174.594000px;}
.y39{bottom:175.725000px;}
.yeb{bottom:175.890000px;}
.y45{bottom:183.414000px;}
.y90{bottom:183.450000px;}
.ybd{bottom:185.610000px;}
.y4f{bottom:190.074000px;}
.y38{bottom:193.005000px;}
.yea{bottom:193.170000px;}
.y8f{bottom:200.550000px;}
.ybc{bottom:203.970000px;}
.y119{bottom:204.510000px;}
.y37{bottom:210.105000px;}
.ye9{bottom:210.450000px;}
.y8e{bottom:217.830000px;}
.ybb{bottom:222.150000px;}
.y118{bottom:226.830000px;}
.y36{bottom:227.385000px;}
.ye8{bottom:227.550000px;}
.y8d{bottom:235.110000px;}
.yba{bottom:240.510000px;}
.y117{bottom:244.110000px;}
.y35{bottom:244.665000px;}
.ye7{bottom:244.830000px;}
.y8c{bottom:252.390000px;}
.yb9{bottom:257.790000px;}
.y116{bottom:261.390000px;}
.y34{bottom:261.945000px;}
.ye6{bottom:262.110000px;}
.y8b{bottom:269.670000px;}
.yb8{bottom:276.150000px;}
.y115{bottom:278.670000px;}
.y33{bottom:279.225000px;}
.ye5{bottom:279.390000px;}
.y8a{bottom:286.950000px;}
.yb7{bottom:294.510000px;}
.y114{bottom:295.950000px;}
.y32{bottom:296.505000px;}
.ye4{bottom:296.670000px;}
.y1f{bottom:297.225000px;}
.y11{bottom:302.970000px;}
.y89{bottom:304.050000px;}
.yb6{bottom:312.690000px;}
.y113{bottom:313.050000px;}
.y31{bottom:313.635000px;}
.ye3{bottom:313.950000px;}
.y88{bottom:321.330000px;}
.y1e{bottom:321.375000px;}
.y112{bottom:330.330000px;}
.y30{bottom:330.915000px;}
.yb5{bottom:331.050000px;}
.y87{bottom:338.610000px;}
.y1d{bottom:345.675000px;}
.y111{bottom:347.655000px;}
.y2f{bottom:348.195000px;}
.yb4{bottom:348.375000px;}
.y86{bottom:355.935000px;}
.y110{bottom:364.935000px;}
.y2e{bottom:365.475000px;}
.yb3{bottom:366.735000px;}
.y1c{bottom:369.795000px;}
.ye2{bottom:372.135000px;}
.y85{bottom:373.215000px;}
.y10f{bottom:382.215000px;}
.y2d{bottom:382.755000px;}
.yb2{bottom:385.095000px;}
.y84{bottom:390.495000px;}
.y1b{bottom:393.915000px;}
.y10e{bottom:399.495000px;}
.y2c{bottom:400.035000px;}
.yb1{bottom:403.275000px;}
.y83{bottom:407.595000px;}
.y10d{bottom:416.595000px;}
.y2b{bottom:417.135000px;}
.y1a{bottom:418.035000px;}
.yb0{bottom:420.555000px;}
.y82{bottom:424.875000px;}
.y10c{bottom:433.875000px;}
.y2a{bottom:434.415000px;}
.yaf{bottom:437.835000px;}
.ye1{bottom:441.975000px;}
.y19{bottom:442.155000px;}
.y10b{bottom:451.155000px;}
.y29{bottom:451.695000px;}
.yae{bottom:455.115000px;}
.y81{bottom:459.435000px;}
.y18{bottom:466.275000px;}
.y10a{bottom:468.435000px;}
.y28{bottom:468.975000px;}
.yad{bottom:472.395000px;}
.y80{bottom:476.715000px;}
.y109{bottom:485.715000px;}
.y27{bottom:486.255000px;}
.yac{bottom:489.675000px;}
.y17{bottom:490.395000px;}
.y7f{bottom:493.995000px;}
.ye0{bottom:494.355000px;}
.y108{bottom:502.995000px;}
.y26{bottom:503.355000px;}
.yab{bottom:506.775000px;}
.y7e{bottom:511.095000px;}
.y16{bottom:514.695000px;}
.y107{bottom:520.095000px;}
.y25{bottom:520.635000px;}
.yaa{bottom:524.055000px;}
.y7d{bottom:528.375000px;}
.y106{bottom:537.375000px;}
.y24{bottom:537.915000px;}
.y15{bottom:538.815000px;}
.ya9{bottom:541.335000px;}
.y7c{bottom:545.655000px;}
.y105{bottom:554.655000px;}
.y23{bottom:555.195000px;}
.ya8{bottom:558.615000px;}
.y14{bottom:562.935000px;}
.ydf{bottom:564.195000px;}
.y104{bottom:571.935000px;}
.y22{bottom:572.520000px;}
.ya7{bottom:575.895000px;}
.y7b{bottom:580.215000px;}
.y13{bottom:587.100000px;}
.y103{bottom:589.215000px;}
.y21{bottom:589.800000px;}
.ya6{bottom:593.175000px;}
.y7a{bottom:597.315000px;}
.y102{bottom:606.345000px;}
.y20{bottom:606.900000px;}
.ya5{bottom:610.305000px;}
.y12{bottom:611.220000px;}
.y79{bottom:614.625000px;}
.yd9{bottom:616.605000px;}
.y101{bottom:623.625000px;}
.ya4{bottom:627.585000px;}
.y78{bottom:631.905000px;}
.y100{bottom:640.905000px;}
.ya3{bottom:644.865000px;}
.y77{bottom:649.185000px;}
.yff{bottom:658.185000px;}
.ya2{bottom:662.145000px;}
.y76{bottom:666.465000px;}
.yfe{bottom:675.465000px;}
.ya1{bottom:679.425000px;}
.y75{bottom:683.745000px;}
.yfd{bottom:692.745000px;}
.ya0{bottom:696.525000px;}
.y74{bottom:700.845000px;}
.yfc{bottom:709.845000px;}
.y9f{bottom:713.805000px;}
.y73{bottom:718.125000px;}
.yd4{bottom:721.005000px;}
.yfb{bottom:727.125000px;}
.y9e{bottom:731.085000px;}
.y72{bottom:735.405000px;}
.yfa{bottom:744.405000px;}
.y9d{bottom:749.445000px;}
.y71{bottom:752.685000px;}
.yf9{bottom:761.685000px;}
.y9c{bottom:767.805000px;}
.y70{bottom:769.965000px;}
.yf8{bottom:778.965000px;}
.y9b{bottom:786.165000px;}
.y6f{bottom:787.245000px;}
.yf7{bottom:796.245000px;}
.y9a{bottom:803.265000px;}
.y6e{bottom:804.345000px;}
.yf6{bottom:813.345000px;}
.y6d{bottom:821.625000px;}
.yd0{bottom:825.225000px;}
.yf5{bottom:830.625000px;}
.y6c{bottom:838.905000px;}
.yf4{bottom:847.905000px;}
.y6b{bottom:856.185000px;}
.yf3{bottom:865.185000px;}
.y6a{bottom:873.510000px;}
.yf2{bottom:882.510000px;}
.y69{bottom:890.610000px;}
.yf1{bottom:899.610000px;}
.y68{bottom:907.890000px;}
.yc8{bottom:912.210000px;}
.yf0{bottom:916.890000px;}
.y67{bottom:925.170000px;}
.y10{bottom:926.430000px;}
.yf{bottom:931.110000px;}
.y99{bottom:934.170000px;}
.y66{bottom:942.450000px;}
.ye{bottom:948.390000px;}
.y98{bottom:951.450000px;}
.y65{bottom:959.730000px;}
.y97{bottom:968.730000px;}
.yd{bottom:970.890000px;}
.y64{bottom:977.010000px;}
.y96{bottom:986.010000px;}
.yc{bottom:988.170000px;}
.yc7{bottom:999.150000px;}
.yb{bottom:1000.230000px;}
.y63{bottom:1003.110000px;}
.yc6{bottom:1017.150000px;}
.ya{bottom:1018.950000px;}
.y62{bottom:1020.390000px;}
.yc5{bottom:1034.430000px;}
.y61{bottom:1037.670000px;}
.y9{bottom:1043.250000px;}
.yc3{bottom:1051.710000px;}
.y60{bottom:1054.950000px;}
.y8{bottom:1071.870000px;}
.y5f{bottom:1072.230000px;}
.y5c{bottom:1075.140000px;}
.y5e{bottom:1089.510000px;}
.y6{bottom:1107.870000px;}
.y1{bottom:1123.530000px;}
.hc{height:4.064063px;}
.h17{height:4.747500px;}
.h1d{height:17.280000px;}
.h14{height:21.114844px;}
.h13{height:25.136719px;}
.ha{height:27.147656px;}
.h19{height:27.720000px;}
.hf{height:29.158594px;}
.he{height:29.464453px;}
.h1c{height:34.560000px;}
.h16{height:38.100586px;}
.h15{height:38.997070px;}
.h7{height:40.132617px;}
.h6{height:41.726953px;}
.h10{height:42.164648px;}
.h18{height:42.690322px;}
.hb{height:43.156758px;}
.h1b{height:43.506914px;}
.h11{height:44.507812px;}
.h25{height:44.820000px;}
.h5{height:46.251562px;}
.h9{height:48.312422px;}
.h24{height:49.255313px;}
.h23{height:51.660000px;}
.h21{height:51.696000px;}
.h1a{height:64.002656px;}
.h8{height:64.126055px;}
.h3{height:65.884219px;}
.h22{height:69.120000px;}
.h2{height:84.996000px;}
.h1e{height:86.220000px;}
.h1f{height:86.256000px;}
.h20{height:103.500000px;}
.h4{height:117.180000px;}
.h12{height:212.760000px;}
.hd{height:620.925000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:104.076000px;}
.w5{width:132.660000px;}
.w7{width:162.900000px;}
.w9{width:188.490000px;}
.wb{width:212.655000px;}
.wa{width:255.270000px;}
.w6{width:596.490000px;}
.w3{width:622.410000px;}
.w8{width:656.430000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:7.056000px;}
.x19{left:8.100000px;}
.x4{left:12.780000px;}
.x1c{left:18.180000px;}
.x6{left:19.260000px;}
.x17{left:25.560000px;}
.x1e{left:29.160000px;}
.x11{left:43.740000px;}
.x1d{left:47.700000px;}
.x12{left:50.760000px;}
.x10{left:54.900000px;}
.x1f{left:57.060000px;}
.x29{left:59.399987px;}
.x1a{left:62.145000px;}
.x16{left:67.134000px;}
.x14{left:75.774000px;}
.x1{left:78.300000px;}
.x9{left:86.435987px;}
.x15{left:94.134000px;}
.x2{left:95.790000px;}
.xb{left:100.655987px;}
.x20{left:102.774000px;}
.x1b{left:106.734000px;}
.x23{left:113.435987px;}
.x24{left:118.476000px;}
.x13{left:124.554000px;}
.xc{left:128.735987px;}
.x5{left:141.345000px;}
.x26{left:146.379000px;}
.x3{left:182.370000px;}
.x18{left:219.090000px;}
.x21{left:232.275000px;}
.x25{left:305.499000px;}
.x27{left:306.975000px;}
.xa{left:431.204987px;}
.x28{left:562.245000px;}
.xe{left:601.529987px;}
.xd{left:764.429987px;}
.x8{left:766.049987px;}
.x7{left:799.379987px;}
.xf{left:806.939987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls4{letter-spacing:-0.896000pt;}
.ls15{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.230933pt;}
.ls6{letter-spacing:-0.201067pt;}
.lsa{letter-spacing:-0.096000pt;}
.ls5{letter-spacing:-0.079467pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.064000pt;}
.lsf{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.183467pt;}
.ls3{letter-spacing:0.233067pt;}
.lsd{letter-spacing:0.265600pt;}
.lsc{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.426667pt;}
.ls7{letter-spacing:0.438933pt;}
.ls14{letter-spacing:0.480000pt;}
.ls12{letter-spacing:14.672640pt;}
.ls10{letter-spacing:40.912640pt;}
.lsb{letter-spacing:56.912640pt;}
.wsc{word-spacing:-53.120000pt;}
.wsa{word-spacing:-48.000000pt;}
.ws1{word-spacing:-14.953067pt;}
.ws0{word-spacing:-14.720000pt;}
.wse{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.545600pt;}
.ws11{word-spacing:-13.463467pt;}
.wsf{word-spacing:-13.374933pt;}
.ws3{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.wsd{word-spacing:-13.049067pt;}
.ws9{word-spacing:-11.904000pt;}
.ws6{word-spacing:-9.718933pt;}
.ws5{word-spacing:-9.280000pt;}
.ws4{word-spacing:-9.078933pt;}
.ws2{word-spacing:-8.640000pt;}
.ws8{word-spacing:-7.936000pt;}
.wsb{word-spacing:0.000000pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.257173pt;}
._2{width:2.282027pt;}
._b{width:3.224747pt;}
._9{width:4.214187pt;}
._a{width:5.294293pt;}
._5{width:6.657707pt;}
._6{width:8.038827pt;}
._7{width:9.296000pt;}
._4{width:11.013547pt;}
._3{width:12.058240pt;}
._8{width:14.413227pt;}
._11{width:15.387093pt;}
._d{width:16.467200pt;}
._c{width:17.370240pt;}
._10{width:18.432640pt;}
._f{width:19.441920pt;}
._19{width:20.433493pt;}
._21{width:22.044800pt;}
._1d{width:23.300053pt;}
._1c{width:24.541440pt;}
._1e{width:25.922560pt;}
._e{width:27.108907pt;}
._1b{width:28.100480pt;}
._29{width:31.659520pt;}
._31{width:32.878080pt;}
._28{width:35.324800pt;}
._30{width:36.364587pt;}
._32{width:38.317227pt;}
._14{width:39.538987pt;}
._13{width:40.540587pt;}
._27{width:42.088747pt;}
._2f{width:43.402880pt;}
._2e{width:44.354560pt;}
._25{width:45.807147pt;}
._24{width:47.595520pt;}
._2d{width:49.348480pt;}
._2c{width:56.045013pt;}
._2b{width:56.962347pt;}
._2a{width:58.113280pt;}
._1f{width:60.096427pt;}
._16{width:61.088000pt;}
._33{width:69.318400pt;}
._22{width:75.182507pt;}
._23{width:76.174080pt;}
._17{width:78.369707pt;}
._18{width:79.414400pt;}
._34{width:92.446507pt;}
._12{width:97.174187pt;}
._20{width:116.616107pt;}
._1a{width:120.051200pt;}
._15{width:187.796907pt;}
._26{width:268.362240pt;}
.fs6{font-size:5.120000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fsb{font-size:50.595937pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:1.920000pt;}
.y43{bottom:2.880000pt;}
.y5{bottom:3.360000pt;}
.y5d{bottom:4.453333pt;}
.y2{bottom:8.826667pt;}
.y4d{bottom:9.120000pt;}
.yd8{bottom:10.400000pt;}
.ycf{bottom:10.560000pt;}
.y5b{bottom:11.680000pt;}
.y42{bottom:18.080000pt;}
.yc4{bottom:18.240000pt;}
.y4{bottom:20.186667pt;}
.y5a{bottom:25.440000pt;}
.yd2{bottom:25.760000pt;}
.yca{bottom:25.920000pt;}
.yd3{bottom:33.440000pt;}
.y41{bottom:33.480000pt;}
.ycd{bottom:33.600000pt;}
.y4c{bottom:35.520000pt;}
.y59{bottom:39.200000pt;}
.yd7{bottom:41.120000pt;}
.yd1{bottom:41.160000pt;}
.yc9{bottom:41.280000pt;}
.y3{bottom:42.586667pt;}
.y4b{bottom:45.440000pt;}
.ycc{bottom:48.800000pt;}
.y40{bottom:48.840000pt;}
.yda{bottom:48.960000pt;}
.y7{bottom:50.720000pt;}
.y58{bottom:55.034667pt;}
.y4a{bottom:55.834667pt;}
.yce{bottom:56.480000pt;}
.yde{bottom:56.640000pt;}
.ycb{bottom:64.160000pt;}
.y3f{bottom:64.200000pt;}
.ydc{bottom:64.320000pt;}
.y49{bottom:67.514667pt;}
.y57{bottom:68.794667pt;}
.yd6{bottom:71.840000pt;}
.ydd{bottom:72.000000pt;}
.y48{bottom:79.034667pt;}
.y44{bottom:79.392000pt;}
.yd5{bottom:79.520000pt;}
.y3e{bottom:79.560000pt;}
.ydb{bottom:79.680000pt;}
.y56{bottom:82.554667pt;}
.y95{bottom:86.432000pt;}
.yc2{bottom:87.392000pt;}
.y55{bottom:94.074667pt;}
.y3d{bottom:94.920000pt;}
.yef{bottom:95.072000pt;}
.y47{bottom:98.554667pt;}
.y54{bottom:99.994667pt;}
.y94{bottom:101.632000pt;}
.yc1{bottom:102.592000pt;}
.y3c{bottom:110.120000pt;}
.yee{bottom:110.432000pt;}
.y53{bottom:113.754667pt;}
.y93{bottom:116.992000pt;}
.yc0{bottom:117.952000pt;}
.y3b{bottom:125.480000pt;}
.yed{bottom:125.632000pt;}
.y52{bottom:127.514667pt;}
.y92{bottom:132.352000pt;}
.ybf{bottom:133.312000pt;}
.y3a{bottom:140.840000pt;}
.yec{bottom:140.986667pt;}
.y51{bottom:141.274667pt;}
.y91{bottom:147.706667pt;}
.ybe{bottom:148.666667pt;}
.y46{bottom:153.754667pt;}
.y50{bottom:155.194667pt;}
.y39{bottom:156.200000pt;}
.yeb{bottom:156.346667pt;}
.y45{bottom:163.034667pt;}
.y90{bottom:163.066667pt;}
.ybd{bottom:164.986667pt;}
.y4f{bottom:168.954667pt;}
.y38{bottom:171.560000pt;}
.yea{bottom:171.706667pt;}
.y8f{bottom:178.266667pt;}
.ybc{bottom:181.306667pt;}
.y119{bottom:181.786667pt;}
.y37{bottom:186.760000pt;}
.ye9{bottom:187.066667pt;}
.y8e{bottom:193.626667pt;}
.ybb{bottom:197.466667pt;}
.y118{bottom:201.626667pt;}
.y36{bottom:202.120000pt;}
.ye8{bottom:202.266667pt;}
.y8d{bottom:208.986667pt;}
.yba{bottom:213.786667pt;}
.y117{bottom:216.986667pt;}
.y35{bottom:217.480000pt;}
.ye7{bottom:217.626667pt;}
.y8c{bottom:224.346667pt;}
.yb9{bottom:229.146667pt;}
.y116{bottom:232.346667pt;}
.y34{bottom:232.840000pt;}
.ye6{bottom:232.986667pt;}
.y8b{bottom:239.706667pt;}
.yb8{bottom:245.466667pt;}
.y115{bottom:247.706667pt;}
.y33{bottom:248.200000pt;}
.ye5{bottom:248.346667pt;}
.y8a{bottom:255.066667pt;}
.yb7{bottom:261.786667pt;}
.y114{bottom:263.066667pt;}
.y32{bottom:263.560000pt;}
.ye4{bottom:263.706667pt;}
.y1f{bottom:264.200000pt;}
.y11{bottom:269.306667pt;}
.y89{bottom:270.266667pt;}
.yb6{bottom:277.946667pt;}
.y113{bottom:278.266667pt;}
.y31{bottom:278.786667pt;}
.ye3{bottom:279.066667pt;}
.y88{bottom:285.626667pt;}
.y1e{bottom:285.666667pt;}
.y112{bottom:293.626667pt;}
.y30{bottom:294.146667pt;}
.yb5{bottom:294.266667pt;}
.y87{bottom:300.986667pt;}
.y1d{bottom:307.266667pt;}
.y111{bottom:309.026667pt;}
.y2f{bottom:309.506667pt;}
.yb4{bottom:309.666667pt;}
.y86{bottom:316.386667pt;}
.y110{bottom:324.386667pt;}
.y2e{bottom:324.866667pt;}
.yb3{bottom:325.986667pt;}
.y1c{bottom:328.706667pt;}
.ye2{bottom:330.786667pt;}
.y85{bottom:331.746667pt;}
.y10f{bottom:339.746667pt;}
.y2d{bottom:340.226667pt;}
.yb2{bottom:342.306667pt;}
.y84{bottom:347.106667pt;}
.y1b{bottom:350.146667pt;}
.y10e{bottom:355.106667pt;}
.y2c{bottom:355.586667pt;}
.yb1{bottom:358.466667pt;}
.y83{bottom:362.306667pt;}
.y10d{bottom:370.306667pt;}
.y2b{bottom:370.786667pt;}
.y1a{bottom:371.586667pt;}
.yb0{bottom:373.826667pt;}
.y82{bottom:377.666667pt;}
.y10c{bottom:385.666667pt;}
.y2a{bottom:386.146667pt;}
.yaf{bottom:389.186667pt;}
.ye1{bottom:392.866667pt;}
.y19{bottom:393.026667pt;}
.y10b{bottom:401.026667pt;}
.y29{bottom:401.506667pt;}
.yae{bottom:404.546667pt;}
.y81{bottom:408.386667pt;}
.y18{bottom:414.466667pt;}
.y10a{bottom:416.386667pt;}
.y28{bottom:416.866667pt;}
.yad{bottom:419.906667pt;}
.y80{bottom:423.746667pt;}
.y109{bottom:431.746667pt;}
.y27{bottom:432.226667pt;}
.yac{bottom:435.266667pt;}
.y17{bottom:435.906667pt;}
.y7f{bottom:439.106667pt;}
.ye0{bottom:439.426667pt;}
.y108{bottom:447.106667pt;}
.y26{bottom:447.426667pt;}
.yab{bottom:450.466667pt;}
.y7e{bottom:454.306667pt;}
.y16{bottom:457.506667pt;}
.y107{bottom:462.306667pt;}
.y25{bottom:462.786667pt;}
.yaa{bottom:465.826667pt;}
.y7d{bottom:469.666667pt;}
.y106{bottom:477.666667pt;}
.y24{bottom:478.146667pt;}
.y15{bottom:478.946667pt;}
.ya9{bottom:481.186667pt;}
.y7c{bottom:485.026667pt;}
.y105{bottom:493.026667pt;}
.y23{bottom:493.506667pt;}
.ya8{bottom:496.546667pt;}
.y14{bottom:500.386667pt;}
.ydf{bottom:501.506667pt;}
.y104{bottom:508.386667pt;}
.y22{bottom:508.906667pt;}
.ya7{bottom:511.906667pt;}
.y7b{bottom:515.746667pt;}
.y13{bottom:521.866667pt;}
.y103{bottom:523.746667pt;}
.y21{bottom:524.266667pt;}
.ya6{bottom:527.266667pt;}
.y7a{bottom:530.946667pt;}
.y102{bottom:538.973333pt;}
.y20{bottom:539.466667pt;}
.ya5{bottom:542.493333pt;}
.y12{bottom:543.306667pt;}
.y79{bottom:546.333333pt;}
.yd9{bottom:548.093333pt;}
.y101{bottom:554.333333pt;}
.ya4{bottom:557.853333pt;}
.y78{bottom:561.693333pt;}
.y100{bottom:569.693333pt;}
.ya3{bottom:573.213333pt;}
.y77{bottom:577.053333pt;}
.yff{bottom:585.053333pt;}
.ya2{bottom:588.573333pt;}
.y76{bottom:592.413333pt;}
.yfe{bottom:600.413333pt;}
.ya1{bottom:603.933333pt;}
.y75{bottom:607.773333pt;}
.yfd{bottom:615.773333pt;}
.ya0{bottom:619.133333pt;}
.y74{bottom:622.973333pt;}
.yfc{bottom:630.973333pt;}
.y9f{bottom:634.493333pt;}
.y73{bottom:638.333333pt;}
.yd4{bottom:640.893333pt;}
.yfb{bottom:646.333333pt;}
.y9e{bottom:649.853333pt;}
.y72{bottom:653.693333pt;}
.yfa{bottom:661.693333pt;}
.y9d{bottom:666.173333pt;}
.y71{bottom:669.053333pt;}
.yf9{bottom:677.053333pt;}
.y9c{bottom:682.493333pt;}
.y70{bottom:684.413333pt;}
.yf8{bottom:692.413333pt;}
.y9b{bottom:698.813333pt;}
.y6f{bottom:699.773333pt;}
.yf7{bottom:707.773333pt;}
.y9a{bottom:714.013333pt;}
.y6e{bottom:714.973333pt;}
.yf6{bottom:722.973333pt;}
.y6d{bottom:730.333333pt;}
.yd0{bottom:733.533333pt;}
.yf5{bottom:738.333333pt;}
.y6c{bottom:745.693333pt;}
.yf4{bottom:753.693333pt;}
.y6b{bottom:761.053333pt;}
.yf3{bottom:769.053333pt;}
.y6a{bottom:776.453333pt;}
.yf2{bottom:784.453333pt;}
.y69{bottom:791.653333pt;}
.yf1{bottom:799.653333pt;}
.y68{bottom:807.013333pt;}
.yc8{bottom:810.853333pt;}
.yf0{bottom:815.013333pt;}
.y67{bottom:822.373333pt;}
.y10{bottom:823.493333pt;}
.yf{bottom:827.653333pt;}
.y99{bottom:830.373333pt;}
.y66{bottom:837.733333pt;}
.ye{bottom:843.013333pt;}
.y98{bottom:845.733333pt;}
.y65{bottom:853.093333pt;}
.y97{bottom:861.093333pt;}
.yd{bottom:863.013333pt;}
.y64{bottom:868.453333pt;}
.y96{bottom:876.453333pt;}
.yc{bottom:878.373333pt;}
.yc7{bottom:888.133333pt;}
.yb{bottom:889.093333pt;}
.y63{bottom:891.653333pt;}
.yc6{bottom:904.133333pt;}
.ya{bottom:905.733333pt;}
.y62{bottom:907.013333pt;}
.yc5{bottom:919.493333pt;}
.y61{bottom:922.373333pt;}
.y9{bottom:927.333333pt;}
.yc3{bottom:934.853333pt;}
.y60{bottom:937.733333pt;}
.y8{bottom:952.773333pt;}
.y5f{bottom:953.093333pt;}
.y5c{bottom:955.680000pt;}
.y5e{bottom:968.453333pt;}
.y6{bottom:984.773333pt;}
.y1{bottom:998.693333pt;}
.hc{height:3.612500pt;}
.h17{height:4.220000pt;}
.h1d{height:15.360000pt;}
.h14{height:18.768750pt;}
.h13{height:22.343750pt;}
.ha{height:24.131250pt;}
.h19{height:24.640000pt;}
.hf{height:25.918750pt;}
.he{height:26.190625pt;}
.h1c{height:30.720000pt;}
.h16{height:33.867188pt;}
.h15{height:34.664062pt;}
.h7{height:35.673437pt;}
.h6{height:37.090625pt;}
.h10{height:37.479688pt;}
.h18{height:37.946952pt;}
.hb{height:38.361562pt;}
.h1b{height:38.672812pt;}
.h11{height:39.562500pt;}
.h25{height:39.840000pt;}
.h5{height:41.112500pt;}
.h9{height:42.944375pt;}
.h24{height:43.782500pt;}
.h23{height:45.920000pt;}
.h21{height:45.952000pt;}
.h1a{height:56.891250pt;}
.h8{height:57.000937pt;}
.h3{height:58.563750pt;}
.h22{height:61.440000pt;}
.h2{height:75.552000pt;}
.h1e{height:76.640000pt;}
.h1f{height:76.672000pt;}
.h20{height:92.000000pt;}
.h4{height:104.160000pt;}
.h12{height:189.120000pt;}
.hd{height:551.933333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.512000pt;}
.w5{width:117.920000pt;}
.w7{width:144.800000pt;}
.w9{width:167.546667pt;}
.wb{width:189.026667pt;}
.wa{width:226.906667pt;}
.w6{width:530.213333pt;}
.w3{width:553.253333pt;}
.w8{width:583.493333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:6.272000pt;}
.x19{left:7.200000pt;}
.x4{left:11.360000pt;}
.x1c{left:16.160000pt;}
.x6{left:17.120000pt;}
.x17{left:22.720000pt;}
.x1e{left:25.920000pt;}
.x11{left:38.880000pt;}
.x1d{left:42.400000pt;}
.x12{left:45.120000pt;}
.x10{left:48.800000pt;}
.x1f{left:50.720000pt;}
.x29{left:52.799988pt;}
.x1a{left:55.240000pt;}
.x16{left:59.674667pt;}
.x14{left:67.354667pt;}
.x1{left:69.600000pt;}
.x9{left:76.831988pt;}
.x15{left:83.674667pt;}
.x2{left:85.146667pt;}
.xb{left:89.471988pt;}
.x20{left:91.354667pt;}
.x1b{left:94.874667pt;}
.x23{left:100.831988pt;}
.x24{left:105.312000pt;}
.x13{left:110.714667pt;}
.xc{left:114.431988pt;}
.x5{left:125.640000pt;}
.x26{left:130.114667pt;}
.x3{left:162.106667pt;}
.x18{left:194.746667pt;}
.x21{left:206.466667pt;}
.x25{left:271.554667pt;}
.x27{left:272.866667pt;}
.xa{left:383.293322pt;}
.x28{left:499.773333pt;}
.xe{left:534.693322pt;}
.xd{left:679.493322pt;}
.x8{left:680.933322pt;}
.x7{left:710.559988pt;}
.xf{left:717.279988pt;}
}




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