
    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_86c12cb03cb5ed363feb543f.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_1a2c10f28f4ea0b35c494a0c.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_705d7c1c1eafce0d02ed4d5d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_65b32ce1c65767c0adb8b5f2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_c9dc2c16333cbbf1116188fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_da499426f170ebac787d807c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_c655788af93a8c543ce96dab.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_f6e0fbd31336bab014e3b053.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_c88712b1b19cac58a1cdcc6b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_7466e0a7410379c244f128a4.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_f72e78c4f3b2a285e6476b4d.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_41826cf4e3d79388654e7fa1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.923340;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_0720c1a0094dcfdf286f4eee.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.372070;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_d9839e22e00789c83c3d4f80.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_dab5e772274975e8686331e0.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_2e2788d3ae73d7074f07e838.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.284668;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_e8c9d4702f2e11d350f8da2f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.934082;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_5a0ed98e28bb11d6c620e35c.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.311035;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_9b9e889d1be9f058ddcedbf2.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v3{vertical-align:-20.880000px;}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsa{letter-spacing:-4.680000px;}
.lsb{letter-spacing:-3.960000px;}
.ls12{letter-spacing:-2.520000px;}
.ls11{letter-spacing:-1.800000px;}
.ls13{letter-spacing:-0.666000px;}
.lsf{letter-spacing:-0.259800px;}
.lsd{letter-spacing:-0.206400px;}
.ls14{letter-spacing:-0.008640px;}
.ls9{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.012960px;}
.ls1{letter-spacing:0.036000px;}
.ls15{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.132600px;}
.ls7{letter-spacing:0.174240px;}
.ls5{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.259920px;}
.ls10{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.360000px;}
.lse{letter-spacing:0.513600px;}
.ls0{letter-spacing:0.756000px;}
.ls4{letter-spacing:0.786240px;}
.ls17{letter-spacing:1.080000px;}
.ls16{letter-spacing:15.786720px;}
.lsc{letter-spacing:45.306720px;}
.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;}
}
.ws0{word-spacing:-16.626360px;}
.ws1{word-spacing:-16.493760px;}
.ws13{word-spacing:-16.020000px;}
.ws5{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.238800px;}
.ws6{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.680200px;}
.ws11{word-spacing:-14.274000px;}
.ws9{word-spacing:-13.505760px;}
.wse{word-spacing:-13.140000px;}
.ws4{word-spacing:-12.854880px;}
.wsf{word-spacing:-12.420000px;}
.ws8{word-spacing:-10.980000px;}
.ws7{word-spacing:-10.260000px;}
.wsa{word-spacing:-9.732960px;}
.ws10{word-spacing:-9.720000px;}
.ws12{word-spacing:-9.711360px;}
.ws2{word-spacing:-8.786880px;}
.ws3{word-spacing:-8.136000px;}
.wsb{word-spacing:0.000000px;}
._4{margin-left:-5.153760px;}
._2{margin-left:-3.270240px;}
._3{margin-left:-2.106000px;}
._0{margin-left:-1.026000px;}
._1{width:1.362000px;}
._6{width:3.102000px;}
._c{width:4.453680px;}
._5{width:5.653440px;}
._d{width:6.763440px;}
._e{width:8.128800px;}
._f{width:9.201600px;}
._a{width:10.756800px;}
._9{width:12.071520px;}
._12{width:13.091520px;}
._8{width:16.038240px;}
._7{width:17.330400px;}
._13{width:19.362240px;}
._11{width:25.361760px;}
._10{width:26.959680px;}
._b{width:43.565040px;}
.fc6{color:rgb(55,53,53);}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc7{color:rgb(37,37,37);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y48{bottom:3.240000px;}
.y97{bottom:3.420000px;}
.y3{bottom:3.780000px;}
.y45{bottom:3.825000px;}
.ye{bottom:4.140000px;}
.y1a{bottom:4.860000px;}
.y1c{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y49{bottom:15.120000px;}
.y4{bottom:17.496000px;}
.y47{bottom:18.000000px;}
.y2{bottom:20.196000px;}
.ye3{bottom:20.700000px;}
.y44{bottom:21.105000px;}
.y19{bottom:29.520000px;}
.yb{bottom:30.240000px;}
.y5{bottom:32.940000px;}
.y43{bottom:38.205000px;}
.y18{bottom:45.945000px;}
.ya{bottom:46.620000px;}
.y1{bottom:53.820000px;}
.y42{bottom:55.485000px;}
.y17{bottom:62.505000px;}
.y41{bottom:72.765000px;}
.y9{bottom:73.260000px;}
.y16{bottom:79.065000px;}
.y40{bottom:90.045000px;}
.y8{bottom:93.090000px;}
.y15{bottom:94.725000px;}
.y55{bottom:100.836000px;}
.yca{bottom:101.556000px;}
.y14{bottom:105.345000px;}
.y3f{bottom:107.325000px;}
.y7{bottom:111.450000px;}
.y109{bottom:111.996000px;}
.y104{bottom:115.056000px;}
.y54{bottom:118.116000px;}
.yc9{bottom:118.836000px;}
.y13{bottom:123.525000px;}
.y3e{bottom:124.425000px;}
.y92{bottom:129.276000px;}
.y103{bottom:132.336000px;}
.y53{bottom:135.396000px;}
.yc8{bottom:135.936000px;}
.y3d{bottom:141.705000px;}
.y12{bottom:142.065000px;}
.y91{bottom:146.556000px;}
.y102{bottom:149.076000px;}
.y52{bottom:152.490000px;}
.yc7{bottom:153.210000px;}
.y3c{bottom:158.985000px;}
.y90{bottom:163.830000px;}
.y101{bottom:166.350000px;}
.y11{bottom:167.805000px;}
.y51{bottom:169.770000px;}
.yc6{bottom:170.490000px;}
.y3b{bottom:176.265000px;}
.y10c{bottom:180.570000px;}
.y8f{bottom:180.930000px;}
.y100{bottom:183.990000px;}
.y50{bottom:187.050000px;}
.yc5{bottom:187.770000px;}
.y10{bottom:192.465000px;}
.y3a{bottom:193.545000px;}
.y10b{bottom:197.850000px;}
.y8e{bottom:198.210000px;}
.yff{bottom:201.270000px;}
.y4f{bottom:204.330000px;}
.yc4{bottom:204.690000px;}
.y39{bottom:210.825000px;}
.y8d{bottom:215.490000px;}
.yfe{bottom:218.550000px;}
.yc3{bottom:219.270000px;}
.y4e{bottom:221.610000px;}
.y38{bottom:227.925000px;}
.y8c{bottom:232.770000px;}
.y2a{bottom:234.225000px;}
.yc2{bottom:237.270000px;}
.y4d{bottom:238.890000px;}
.y37{bottom:245.205000px;}
.y29{bottom:249.705000px;}
.y8b{bottom:250.050000px;}
.yfd{bottom:250.770000px;}
.yc1{bottom:255.270000px;}
.y4c{bottom:255.990000px;}
.y36{bottom:262.485000px;}
.y8a{bottom:267.330000px;}
.y28{bottom:267.525000px;}
.yfc{bottom:268.770000px;}
.y4b{bottom:272.910000px;}
.yc0{bottom:273.270000px;}
.y35{bottom:279.795000px;}
.y89{bottom:284.430000px;}
.y27{bottom:284.835000px;}
.yfb{bottom:286.770000px;}
.y4a{bottom:290.550000px;}
.ybf{bottom:291.270000px;}
.y34{bottom:297.075000px;}
.y88{bottom:301.710000px;}
.y26{bottom:302.115000px;}
.y46{bottom:304.050000px;}
.yfa{bottom:304.770000px;}
.ybe{bottom:309.270000px;}
.y33{bottom:314.355000px;}
.y87{bottom:318.990000px;}
.y25{bottom:319.575000px;}
.yf9{bottom:322.770000px;}
.ybd{bottom:327.270000px;}
.y32{bottom:331.455000px;}
.y1d{bottom:333.390000px;}
.y86{bottom:336.270000px;}
.y24{bottom:336.855000px;}
.yf8{bottom:340.815000px;}
.ybc{bottom:345.315000px;}
.y31{bottom:348.735000px;}
.y85{bottom:353.235000px;}
.y108{bottom:353.595000px;}
.y23{bottom:354.315000px;}
.yf7{bottom:358.815000px;}
.ybb{bottom:363.315000px;}
.y30{bottom:366.015000px;}
.y84{bottom:370.875000px;}
.y22{bottom:371.775000px;}
.yf6{bottom:376.815000px;}
.yba{bottom:381.315000px;}
.y2f{bottom:383.295000px;}
.y83{bottom:387.975000px;}
.y21{bottom:389.055000px;}
.yf5{bottom:394.815000px;}
.yb9{bottom:399.315000px;}
.y2e{bottom:400.575000px;}
.y82{bottom:405.255000px;}
.y20{bottom:409.395000px;}
.yf4{bottom:412.815000px;}
.yb8{bottom:417.315000px;}
.y2d{bottom:417.675000px;}
.y81{bottom:422.535000px;}
.yf3{bottom:430.815000px;}
.y2c{bottom:434.955000px;}
.yb7{bottom:435.315000px;}
.y1f{bottom:436.935000px;}
.y80{bottom:439.455000px;}
.y107{bottom:439.815000px;}
.yf2{bottom:448.815000px;}
.y2b{bottom:452.235000px;}
.yb6{bottom:453.315000px;}
.y1e{bottom:454.395000px;}
.y7f{bottom:456.735000px;}
.y106{bottom:457.095000px;}
.yf1{bottom:466.815000px;}
.yb5{bottom:471.315000px;}
.y7e{bottom:474.195000px;}
.yf0{bottom:488.235000px;}
.yb4{bottom:489.315000px;}
.y7d{bottom:491.475000px;}
.yef{bottom:505.695000px;}
.yb3{bottom:507.315000px;}
.y7c{bottom:508.755000px;}
.yee{bottom:522.975000px;}
.yb2{bottom:525.315000px;}
.y7b{bottom:526.035000px;}
.yed{bottom:540.255000px;}
.y7a{bottom:543.315000px;}
.yec{bottom:557.535000px;}
.y79{bottom:560.595000px;}
.yb1{bottom:561.315000px;}
.yeb{bottom:571.755000px;}
.y78{bottom:577.695000px;}
.yb0{bottom:579.315000px;}
.yea{bottom:589.755000px;}
.y77{bottom:594.975000px;}
.yaf{bottom:597.315000px;}
.ye9{bottom:607.785000px;}
.y76{bottom:612.285000px;}
.yae{bottom:618.765000px;}
.ye8{bottom:625.785000px;}
.y75{bottom:629.565000px;}
.yad{bottom:635.865000px;}
.ye7{bottom:643.785000px;}
.y74{bottom:646.845000px;}
.yac{bottom:653.505000px;}
.ye6{bottom:661.785000px;}
.y73{bottom:664.125000px;}
.yab{bottom:670.785000px;}
.ye5{bottom:679.785000px;}
.y72{bottom:681.225000px;}
.yaa{bottom:688.065000px;}
.ye4{bottom:697.785000px;}
.y71{bottom:698.505000px;}
.ya9{bottom:702.285000px;}
.y70{bottom:715.785000px;}
.ya8{bottom:720.285000px;}
.y6f{bottom:733.065000px;}
.ya7{bottom:738.285000px;}
.y6e{bottom:750.345000px;}
.ye2{bottom:754.485000px;}
.y105{bottom:755.565000px;}
.ya6{bottom:756.285000px;}
.y6d{bottom:767.625000px;}
.ye1{bottom:772.125000px;}
.ya5{bottom:777.705000px;}
.y10a{bottom:784.365000px;}
.y6c{bottom:784.725000px;}
.ye0{bottom:789.225000px;}
.ya4{bottom:795.345000px;}
.y1b{bottom:799.125000px;}
.y10e{bottom:801.645000px;}
.y6b{bottom:802.005000px;}
.ydf{bottom:806.505000px;}
.ya3{bottom:812.445000px;}
.y10d{bottom:818.925000px;}
.y6a{bottom:819.285000px;}
.yde{bottom:823.785000px;}
.yf{bottom:828.645000px;}
.ya2{bottom:829.725000px;}
.y69{bottom:836.565000px;}
.ydd{bottom:841.065000px;}
.ya1{bottom:847.005000px;}
.y68{bottom:853.845000px;}
.ydc{bottom:858.345000px;}
.ya0{bottom:864.285000px;}
.y67{bottom:870.990000px;}
.ydb{bottom:872.610000px;}
.y9f{bottom:881.610000px;}
.y66{bottom:888.270000px;}
.yda{bottom:890.610000px;}
.y9e{bottom:895.830000px;}
.y65{bottom:905.550000px;}
.yd9{bottom:908.610000px;}
.y9d{bottom:913.830000px;}
.y64{bottom:922.830000px;}
.yd8{bottom:926.610000px;}
.y9c{bottom:931.830000px;}
.y63{bottom:940.110000px;}
.yd7{bottom:944.610000px;}
.y9b{bottom:949.830000px;}
.y62{bottom:957.390000px;}
.yd6{bottom:962.610000px;}
.y9a{bottom:967.830000px;}
.y61{bottom:974.490000px;}
.yd5{bottom:980.610000px;}
.y99{bottom:985.830000px;}
.y60{bottom:991.770000px;}
.yd4{bottom:998.610000px;}
.y98{bottom:1003.830000px;}
.y5f{bottom:1009.050000px;}
.yd3{bottom:1016.610000px;}
.y96{bottom:1021.830000px;}
.y5e{bottom:1026.330000px;}
.yd2{bottom:1034.610000px;}
.yd{bottom:1036.410000px;}
.y95{bottom:1043.250000px;}
.y5d{bottom:1043.610000px;}
.yd1{bottom:1052.610000px;}
.y6{bottom:1056.390000px;}
.y94{bottom:1060.530000px;}
.y5c{bottom:1060.890000px;}
.yd0{bottom:1070.610000px;}
.y93{bottom:1077.630000px;}
.y5b{bottom:1077.990000px;}
.ycf{bottom:1088.610000px;}
.y5a{bottom:1095.270000px;}
.yce{bottom:1106.610000px;}
.y59{bottom:1112.550000px;}
.ycd{bottom:1124.610000px;}
.y58{bottom:1129.830000px;}
.ycc{bottom:1142.640000px;}
.y57{bottom:1147.140000px;}
.ycb{bottom:1164.060000px;}
.y56{bottom:1164.420000px;}
.h24{height:17.280000px;}
.h25{height:17.316000px;}
.hc{height:19.440000px;}
.h13{height:28.968750px;}
.h20{height:29.340000px;}
.h14{height:29.520000px;}
.h2{height:32.976000px;}
.h26{height:34.560000px;}
.h12{height:35.806641px;}
.h9{height:36.180000px;}
.h27{height:38.158594px;}
.h1c{height:38.818125px;}
.h1e{height:41.726953px;}
.h1d{height:42.164648px;}
.he{height:44.002969px;}
.hb{height:44.820000px;}
.h1a{height:45.770625px;}
.h17{height:47.980898px;}
.h4{height:53.709961px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h18{height:56.574492px;}
.h19{height:56.741133px;}
.h1f{height:58.651172px;}
.h22{height:59.038594px;}
.h10{height:59.439023px;}
.h1b{height:59.614102px;}
.h21{height:60.226875px;}
.h11{height:61.189805px;}
.h23{height:61.423863px;}
.hf{height:63.180000px;}
.h6{height:65.884219px;}
.h5{height:67.824844px;}
.h8{height:71.613281px;}
.h15{height:73.722656px;}
.h7{height:121.536000px;}
.hd{height:207.750000px;}
.h16{height:465.735000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:73.080000px;}
.we{width:87.516000px;}
.wb{width:99.216000px;}
.wc{width:120.060000px;}
.wf{width:122.760000px;}
.wa{width:141.156000px;}
.w5{width:151.950000px;}
.w19{width:153.390000px;}
.wd{width:155.190000px;}
.w17{width:160.050000px;}
.w10{width:199.695000px;}
.w8{width:216.075000px;}
.w18{width:236.190000px;}
.w12{width:236.730000px;}
.w14{width:242.670000px;}
.w13{width:242.715000px;}
.w15{width:242.850000px;}
.w11{width:291.630000px;}
.w16{width:331.815000px;}
.w9{width:515.055000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:7.560000px;}
.x2{left:8.676000px;}
.x14{left:12.600000px;}
.xd{left:32.076000px;}
.xb{left:50.436000px;}
.x1{left:81.000000px;}
.x4{left:98.130000px;}
.x15{left:107.855987px;}
.xc{left:113.250000px;}
.x23{left:125.135987px;}
.x21{left:130.535987px;}
.x24{left:133.235987px;}
.xe{left:164.910000px;}
.xf{left:169.590000px;}
.x10{left:211.395000px;}
.x12{left:215.175000px;}
.x16{left:223.590000px;}
.x11{left:229.035000px;}
.x5{left:232.950000px;}
.x1c{left:269.129987px;}
.x8{left:272.235000px;}
.x1d{left:282.315000px;}
.x13{left:297.075000px;}
.x17{left:323.535000px;}
.x1f{left:325.155000px;}
.x6{left:331.995000px;}
.x7{left:351.255000px;}
.xa{left:365.475000px;}
.x25{left:396.074987px;}
.x22{left:414.435000px;}
.x9{left:439.500000px;}
.x18{left:444.315000px;}
.x20{left:568.545000px;}
.x1e{left:574.665000px;}
.x19{left:600.405000px;}
.x1b{left:688.650000px;}
.x3{left:739.050000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsa{letter-spacing:-4.160000pt;}
.lsb{letter-spacing:-3.520000pt;}
.ls12{letter-spacing:-2.240000pt;}
.ls11{letter-spacing:-1.600000pt;}
.ls13{letter-spacing:-0.592000pt;}
.lsf{letter-spacing:-0.230933pt;}
.lsd{letter-spacing:-0.183467pt;}
.ls14{letter-spacing:-0.007680pt;}
.ls9{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.011520pt;}
.ls1{letter-spacing:0.032000pt;}
.ls15{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.117867pt;}
.ls7{letter-spacing:0.154880pt;}
.ls5{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.231040pt;}
.ls10{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.456533pt;}
.ls0{letter-spacing:0.672000pt;}
.ls4{letter-spacing:0.698880pt;}
.ls17{letter-spacing:0.960000pt;}
.ls16{letter-spacing:14.032640pt;}
.lsc{letter-spacing:40.272640pt;}
.ws0{word-spacing:-14.778987pt;}
.ws1{word-spacing:-14.661120pt;}
.ws13{word-spacing:-14.240000pt;}
.ws5{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.545600pt;}
.ws6{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.049067pt;}
.ws11{word-spacing:-12.688000pt;}
.ws9{word-spacing:-12.005120pt;}
.wse{word-spacing:-11.680000pt;}
.ws4{word-spacing:-11.426560pt;}
.wsf{word-spacing:-11.040000pt;}
.ws8{word-spacing:-9.760000pt;}
.ws7{word-spacing:-9.120000pt;}
.wsa{word-spacing:-8.651520pt;}
.ws10{word-spacing:-8.640000pt;}
.ws12{word-spacing:-8.632320pt;}
.ws2{word-spacing:-7.810560pt;}
.ws3{word-spacing:-7.232000pt;}
.wsb{word-spacing:0.000000pt;}
._4{margin-left:-4.581120pt;}
._2{margin-left:-2.906880pt;}
._3{margin-left:-1.872000pt;}
._0{margin-left:-0.912000pt;}
._1{width:1.210667pt;}
._6{width:2.757333pt;}
._c{width:3.958827pt;}
._5{width:5.025280pt;}
._d{width:6.011947pt;}
._e{width:7.225600pt;}
._f{width:8.179200pt;}
._a{width:9.561600pt;}
._9{width:10.730240pt;}
._12{width:11.636907pt;}
._8{width:14.256213pt;}
._7{width:15.404800pt;}
._13{width:17.210880pt;}
._11{width:22.543787pt;}
._10{width:23.964160pt;}
._b{width:38.724480pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y48{bottom:2.880000pt;}
.y97{bottom:3.040000pt;}
.y3{bottom:3.360000pt;}
.y45{bottom:3.400000pt;}
.ye{bottom:3.680000pt;}
.y1a{bottom:4.320000pt;}
.y1c{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y49{bottom:13.440000pt;}
.y4{bottom:15.552000pt;}
.y47{bottom:16.000000pt;}
.y2{bottom:17.952000pt;}
.ye3{bottom:18.400000pt;}
.y44{bottom:18.760000pt;}
.y19{bottom:26.240000pt;}
.yb{bottom:26.880000pt;}
.y5{bottom:29.280000pt;}
.y43{bottom:33.960000pt;}
.y18{bottom:40.840000pt;}
.ya{bottom:41.440000pt;}
.y1{bottom:47.840000pt;}
.y42{bottom:49.320000pt;}
.y17{bottom:55.560000pt;}
.y41{bottom:64.680000pt;}
.y9{bottom:65.120000pt;}
.y16{bottom:70.280000pt;}
.y40{bottom:80.040000pt;}
.y8{bottom:82.746667pt;}
.y15{bottom:84.200000pt;}
.y55{bottom:89.632000pt;}
.yca{bottom:90.272000pt;}
.y14{bottom:93.640000pt;}
.y3f{bottom:95.400000pt;}
.y7{bottom:99.066667pt;}
.y109{bottom:99.552000pt;}
.y104{bottom:102.272000pt;}
.y54{bottom:104.992000pt;}
.yc9{bottom:105.632000pt;}
.y13{bottom:109.800000pt;}
.y3e{bottom:110.600000pt;}
.y92{bottom:114.912000pt;}
.y103{bottom:117.632000pt;}
.y53{bottom:120.352000pt;}
.yc8{bottom:120.832000pt;}
.y3d{bottom:125.960000pt;}
.y12{bottom:126.280000pt;}
.y91{bottom:130.272000pt;}
.y102{bottom:132.512000pt;}
.y52{bottom:135.546667pt;}
.yc7{bottom:136.186667pt;}
.y3c{bottom:141.320000pt;}
.y90{bottom:145.626667pt;}
.y101{bottom:147.866667pt;}
.y11{bottom:149.160000pt;}
.y51{bottom:150.906667pt;}
.yc6{bottom:151.546667pt;}
.y3b{bottom:156.680000pt;}
.y10c{bottom:160.506667pt;}
.y8f{bottom:160.826667pt;}
.y100{bottom:163.546667pt;}
.y50{bottom:166.266667pt;}
.yc5{bottom:166.906667pt;}
.y10{bottom:171.080000pt;}
.y3a{bottom:172.040000pt;}
.y10b{bottom:175.866667pt;}
.y8e{bottom:176.186667pt;}
.yff{bottom:178.906667pt;}
.y4f{bottom:181.626667pt;}
.yc4{bottom:181.946667pt;}
.y39{bottom:187.400000pt;}
.y8d{bottom:191.546667pt;}
.yfe{bottom:194.266667pt;}
.yc3{bottom:194.906667pt;}
.y4e{bottom:196.986667pt;}
.y38{bottom:202.600000pt;}
.y8c{bottom:206.906667pt;}
.y2a{bottom:208.200000pt;}
.yc2{bottom:210.906667pt;}
.y4d{bottom:212.346667pt;}
.y37{bottom:217.960000pt;}
.y29{bottom:221.960000pt;}
.y8b{bottom:222.266667pt;}
.yfd{bottom:222.906667pt;}
.yc1{bottom:226.906667pt;}
.y4c{bottom:227.546667pt;}
.y36{bottom:233.320000pt;}
.y8a{bottom:237.626667pt;}
.y28{bottom:237.800000pt;}
.yfc{bottom:238.906667pt;}
.y4b{bottom:242.586667pt;}
.yc0{bottom:242.906667pt;}
.y35{bottom:248.706667pt;}
.y89{bottom:252.826667pt;}
.y27{bottom:253.186667pt;}
.yfb{bottom:254.906667pt;}
.y4a{bottom:258.266667pt;}
.ybf{bottom:258.906667pt;}
.y34{bottom:264.066667pt;}
.y88{bottom:268.186667pt;}
.y26{bottom:268.546667pt;}
.y46{bottom:270.266667pt;}
.yfa{bottom:270.906667pt;}
.ybe{bottom:274.906667pt;}
.y33{bottom:279.426667pt;}
.y87{bottom:283.546667pt;}
.y25{bottom:284.066667pt;}
.yf9{bottom:286.906667pt;}
.ybd{bottom:290.906667pt;}
.y32{bottom:294.626667pt;}
.y1d{bottom:296.346667pt;}
.y86{bottom:298.906667pt;}
.y24{bottom:299.426667pt;}
.yf8{bottom:302.946667pt;}
.ybc{bottom:306.946667pt;}
.y31{bottom:309.986667pt;}
.y85{bottom:313.986667pt;}
.y108{bottom:314.306667pt;}
.y23{bottom:314.946667pt;}
.yf7{bottom:318.946667pt;}
.ybb{bottom:322.946667pt;}
.y30{bottom:325.346667pt;}
.y84{bottom:329.666667pt;}
.y22{bottom:330.466667pt;}
.yf6{bottom:334.946667pt;}
.yba{bottom:338.946667pt;}
.y2f{bottom:340.706667pt;}
.y83{bottom:344.866667pt;}
.y21{bottom:345.826667pt;}
.yf5{bottom:350.946667pt;}
.yb9{bottom:354.946667pt;}
.y2e{bottom:356.066667pt;}
.y82{bottom:360.226667pt;}
.y20{bottom:363.906667pt;}
.yf4{bottom:366.946667pt;}
.yb8{bottom:370.946667pt;}
.y2d{bottom:371.266667pt;}
.y81{bottom:375.586667pt;}
.yf3{bottom:382.946667pt;}
.y2c{bottom:386.626667pt;}
.yb7{bottom:386.946667pt;}
.y1f{bottom:388.386667pt;}
.y80{bottom:390.626667pt;}
.y107{bottom:390.946667pt;}
.yf2{bottom:398.946667pt;}
.y2b{bottom:401.986667pt;}
.yb6{bottom:402.946667pt;}
.y1e{bottom:403.906667pt;}
.y7f{bottom:405.986667pt;}
.y106{bottom:406.306667pt;}
.yf1{bottom:414.946667pt;}
.yb5{bottom:418.946667pt;}
.y7e{bottom:421.506667pt;}
.yf0{bottom:433.986667pt;}
.yb4{bottom:434.946667pt;}
.y7d{bottom:436.866667pt;}
.yef{bottom:449.506667pt;}
.yb3{bottom:450.946667pt;}
.y7c{bottom:452.226667pt;}
.yee{bottom:464.866667pt;}
.yb2{bottom:466.946667pt;}
.y7b{bottom:467.586667pt;}
.yed{bottom:480.226667pt;}
.y7a{bottom:482.946667pt;}
.yec{bottom:495.586667pt;}
.y79{bottom:498.306667pt;}
.yb1{bottom:498.946667pt;}
.yeb{bottom:508.226667pt;}
.y78{bottom:513.506667pt;}
.yb0{bottom:514.946667pt;}
.yea{bottom:524.226667pt;}
.y77{bottom:528.866667pt;}
.yaf{bottom:530.946667pt;}
.ye9{bottom:540.253333pt;}
.y76{bottom:544.253333pt;}
.yae{bottom:550.013333pt;}
.ye8{bottom:556.253333pt;}
.y75{bottom:559.613333pt;}
.yad{bottom:565.213333pt;}
.ye7{bottom:572.253333pt;}
.y74{bottom:574.973333pt;}
.yac{bottom:580.893333pt;}
.ye6{bottom:588.253333pt;}
.y73{bottom:590.333333pt;}
.yab{bottom:596.253333pt;}
.ye5{bottom:604.253333pt;}
.y72{bottom:605.533333pt;}
.yaa{bottom:611.613333pt;}
.ye4{bottom:620.253333pt;}
.y71{bottom:620.893333pt;}
.ya9{bottom:624.253333pt;}
.y70{bottom:636.253333pt;}
.ya8{bottom:640.253333pt;}
.y6f{bottom:651.613333pt;}
.ya7{bottom:656.253333pt;}
.y6e{bottom:666.973333pt;}
.ye2{bottom:670.653333pt;}
.y105{bottom:671.613333pt;}
.ya6{bottom:672.253333pt;}
.y6d{bottom:682.333333pt;}
.ye1{bottom:686.333333pt;}
.ya5{bottom:691.293333pt;}
.y10a{bottom:697.213333pt;}
.y6c{bottom:697.533333pt;}
.ye0{bottom:701.533333pt;}
.ya4{bottom:706.973333pt;}
.y1b{bottom:710.333333pt;}
.y10e{bottom:712.573333pt;}
.y6b{bottom:712.893333pt;}
.ydf{bottom:716.893333pt;}
.ya3{bottom:722.173333pt;}
.y10d{bottom:727.933333pt;}
.y6a{bottom:728.253333pt;}
.yde{bottom:732.253333pt;}
.yf{bottom:736.573333pt;}
.ya2{bottom:737.533333pt;}
.y69{bottom:743.613333pt;}
.ydd{bottom:747.613333pt;}
.ya1{bottom:752.893333pt;}
.y68{bottom:758.973333pt;}
.ydc{bottom:762.973333pt;}
.ya0{bottom:768.253333pt;}
.y67{bottom:774.213333pt;}
.ydb{bottom:775.653333pt;}
.y9f{bottom:783.653333pt;}
.y66{bottom:789.573333pt;}
.yda{bottom:791.653333pt;}
.y9e{bottom:796.293333pt;}
.y65{bottom:804.933333pt;}
.yd9{bottom:807.653333pt;}
.y9d{bottom:812.293333pt;}
.y64{bottom:820.293333pt;}
.yd8{bottom:823.653333pt;}
.y9c{bottom:828.293333pt;}
.y63{bottom:835.653333pt;}
.yd7{bottom:839.653333pt;}
.y9b{bottom:844.293333pt;}
.y62{bottom:851.013333pt;}
.yd6{bottom:855.653333pt;}
.y9a{bottom:860.293333pt;}
.y61{bottom:866.213333pt;}
.yd5{bottom:871.653333pt;}
.y99{bottom:876.293333pt;}
.y60{bottom:881.573333pt;}
.yd4{bottom:887.653333pt;}
.y98{bottom:892.293333pt;}
.y5f{bottom:896.933333pt;}
.yd3{bottom:903.653333pt;}
.y96{bottom:908.293333pt;}
.y5e{bottom:912.293333pt;}
.yd2{bottom:919.653333pt;}
.yd{bottom:921.253333pt;}
.y95{bottom:927.333333pt;}
.y5d{bottom:927.653333pt;}
.yd1{bottom:935.653333pt;}
.y6{bottom:939.013333pt;}
.y94{bottom:942.693333pt;}
.y5c{bottom:943.013333pt;}
.yd0{bottom:951.653333pt;}
.y93{bottom:957.893333pt;}
.y5b{bottom:958.213333pt;}
.ycf{bottom:967.653333pt;}
.y5a{bottom:973.573333pt;}
.yce{bottom:983.653333pt;}
.y59{bottom:988.933333pt;}
.ycd{bottom:999.653333pt;}
.y58{bottom:1004.293333pt;}
.ycc{bottom:1015.680000pt;}
.y57{bottom:1019.680000pt;}
.ycb{bottom:1034.720000pt;}
.y56{bottom:1035.040000pt;}
.h24{height:15.360000pt;}
.h25{height:15.392000pt;}
.hc{height:17.280000pt;}
.h13{height:25.750000pt;}
.h20{height:26.080000pt;}
.h14{height:26.240000pt;}
.h2{height:29.312000pt;}
.h26{height:30.720000pt;}
.h12{height:31.828125pt;}
.h9{height:32.160000pt;}
.h27{height:33.918750pt;}
.h1c{height:34.505000pt;}
.h1e{height:37.090625pt;}
.h1d{height:37.479688pt;}
.he{height:39.113750pt;}
.hb{height:39.840000pt;}
.h1a{height:40.685000pt;}
.h17{height:42.649687pt;}
.h4{height:47.742188pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h18{height:50.288438pt;}
.h19{height:50.436563pt;}
.h1f{height:52.134375pt;}
.h22{height:52.478750pt;}
.h10{height:52.834688pt;}
.h1b{height:52.990313pt;}
.h21{height:53.535000pt;}
.h11{height:54.390938pt;}
.h23{height:54.598989pt;}
.hf{height:56.160000pt;}
.h6{height:58.563750pt;}
.h5{height:60.288750pt;}
.h8{height:63.656250pt;}
.h15{height:65.531250pt;}
.h7{height:108.032000pt;}
.hd{height:184.666667pt;}
.h16{height:413.986667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:64.960000pt;}
.we{width:77.792000pt;}
.wb{width:88.192000pt;}
.wc{width:106.720000pt;}
.wf{width:109.120000pt;}
.wa{width:125.472000pt;}
.w5{width:135.066667pt;}
.w19{width:136.346667pt;}
.wd{width:137.946667pt;}
.w17{width:142.266667pt;}
.w10{width:177.506667pt;}
.w8{width:192.066667pt;}
.w18{width:209.946667pt;}
.w12{width:210.426667pt;}
.w14{width:215.706667pt;}
.w13{width:215.746667pt;}
.w15{width:215.866667pt;}
.w11{width:259.226667pt;}
.w16{width:294.946667pt;}
.w9{width:457.826667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:6.720000pt;}
.x2{left:7.712000pt;}
.x14{left:11.200000pt;}
.xd{left:28.512000pt;}
.xb{left:44.832000pt;}
.x1{left:72.000000pt;}
.x4{left:87.226667pt;}
.x15{left:95.871988pt;}
.xc{left:100.666667pt;}
.x23{left:111.231988pt;}
.x21{left:116.031988pt;}
.x24{left:118.431988pt;}
.xe{left:146.586667pt;}
.xf{left:150.746667pt;}
.x10{left:187.906667pt;}
.x12{left:191.266667pt;}
.x16{left:198.746667pt;}
.x11{left:203.586667pt;}
.x5{left:207.066667pt;}
.x1c{left:239.226655pt;}
.x8{left:241.986667pt;}
.x1d{left:250.946667pt;}
.x13{left:264.066667pt;}
.x17{left:287.586667pt;}
.x1f{left:289.026667pt;}
.x6{left:295.106667pt;}
.x7{left:312.226667pt;}
.xa{left:324.866667pt;}
.x25{left:352.066655pt;}
.x22{left:368.386667pt;}
.x9{left:390.666667pt;}
.x18{left:394.946667pt;}
.x20{left:505.373333pt;}
.x1e{left:510.813333pt;}
.x19{left:533.693333pt;}
.x1b{left:612.133333pt;}
.x3{left:656.933333pt;}
}




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