
    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_bd3fb280da20df60cb402a00.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_49341691dbe7fd32ef6968ff.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_80b5c1df656fe806151dbaa1.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_55dd36ec73dcf510de1a4825.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_a2e5dbc2527decae03f435aa.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.020020;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b87444467a102aee52b375a9.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_d74b4ace65817fba3430d716.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_8501400d57edb96dc1e605df.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_109ee8d8f9af89d64f7e5699.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.091309;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_5922b689f4da9cfba8d3b46d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.091309;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_d47b7ba92acc5e68e3fce973.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.078125;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_14aa036d0bb31edf5bfc5af6.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.078125;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_8e802934069b2253bcb587eb.woff2')format("woff");}.fff{font-family:fff;line-height:1.020020;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_8d2e2019e1e0d23ad7fac4a5.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_e3ab1c9c169550fe77d9ca2e.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_636da54a58211cf57c4d3994.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_b579c5050f24fbe667da22de.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_8754c225c31f9aa9766c0d38.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_edbdaaf4e78f4b29c1c9be71.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.030273;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_5c23c33bf55315a3b15fb7d4.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff17{font-family:ff17;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;}
.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:-18.000000px;}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsc{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.206400px;}
.lse{letter-spacing:-0.132000px;}
.lsb{letter-spacing:-0.127200px;}
.lsa{letter-spacing:-0.018000px;}
.ls9{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls11{letter-spacing:0.053280px;}
.ls8{letter-spacing:0.108720px;}
.ls7{letter-spacing:0.128880px;}
.ls1{letter-spacing:0.132600px;}
.lsd{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.206400px;}
.ls4{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.259920px;}
.lsf{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.313920px;}
.ls6{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.786240px;}
.ls15{letter-spacing:16.506720px;}
.ls14{letter-spacing:46.026720px;}
.ls13{letter-spacing:1323.120000px;}
.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;}
}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws5{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.238800px;}
.wsb{word-spacing:-15.146400px;}
.ws6{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.733600px;}
.ws7{word-spacing:-14.580000px;}
.ws0{word-spacing:-12.186000px;}
.ws8{word-spacing:-12.131280px;}
.ws4{word-spacing:-11.546640px;}
.ws3{word-spacing:-8.136000px;}
.ws9{word-spacing:0.000000px;}
._19{margin-left:-8.539200px;}
._d{margin-left:-6.986880px;}
._8{margin-left:-5.086800px;}
._3{margin-left:-3.954000px;}
._2{margin-left:-2.663040px;}
._0{margin-left:-1.212000px;}
._1{width:1.596000px;}
._9{width:3.270480px;}
._a{width:4.380000px;}
._14{width:5.424480px;}
._e{width:6.428640px;}
._11{width:8.324160px;}
._4{width:9.686880px;}
._5{width:10.697040px;}
._c{width:12.210000px;}
._b{width:13.702560px;}
._10{width:16.033200px;}
._f{width:17.270640px;}
._13{width:20.140560px;}
._12{width:21.214800px;}
._16{width:22.637520px;}
._6{width:27.029040px;}
._7{width:28.104000px;}
._15{width:29.162880px;}
._17{width:31.963680px;}
._18{width:33.295440px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(10,29,48);}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(10,47,65);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:33.120000px;}
.fs6{font-size:36.000000px;}
.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;}
.y47{bottom:3.240000px;}
.y91{bottom:3.420000px;}
.y86{bottom:3.600000px;}
.y3{bottom:3.636000px;}
.y4c{bottom:4.140000px;}
.y1a{bottom:5.220000px;}
.ye{bottom:9.540000px;}
.y4a{bottom:10.800000px;}
.y89{bottom:11.880000px;}
.y1c{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y4{bottom:17.496000px;}
.y2{bottom:20.196000px;}
.y46{bottom:20.520000px;}
.y4b{bottom:22.500000px;}
.y49{bottom:25.380000px;}
.yb{bottom:30.240000px;}
.y19{bottom:30.420000px;}
.y45{bottom:37.800000px;}
.y18{bottom:45.900000px;}
.y5{bottom:46.080000px;}
.ya{bottom:46.620000px;}
.y44{bottom:55.125000px;}
.y17{bottom:62.505000px;}
.y1{bottom:66.960000px;}
.y43{bottom:72.405000px;}
.y9{bottom:73.440000px;}
.y16{bottom:78.885000px;}
.y42{bottom:89.505000px;}
.y8{bottom:93.090000px;}
.y15{bottom:94.725000px;}
.y14{bottom:105.345000px;}
.y41{bottom:106.785000px;}
.y7{bottom:111.450000px;}
.ye9{bottom:117.576000px;}
.y54{bottom:119.376000px;}
.y8f{bottom:121.176000px;}
.y13{bottom:123.525000px;}
.y40{bottom:124.065000px;}
.ye8{bottom:134.676000px;}
.y53{bottom:136.656000px;}
.y3f{bottom:141.345000px;}
.y12{bottom:142.425000px;}
.y8e{bottom:144.396000px;}
.ye7{bottom:151.950000px;}
.y52{bottom:153.930000px;}
.y3e{bottom:158.625000px;}
.y8d{bottom:167.610000px;}
.y11{bottom:168.165000px;}
.ye6{bottom:169.230000px;}
.y51{bottom:171.210000px;}
.y3d{bottom:175.905000px;}
.ye5{bottom:186.510000px;}
.y50{bottom:188.490000px;}
.y8c{bottom:190.830000px;}
.y10{bottom:192.645000px;}
.y3c{bottom:193.005000px;}
.ye4{bottom:203.790000px;}
.y4f{bottom:205.590000px;}
.y3b{bottom:210.285000px;}
.y8b{bottom:214.230000px;}
.ye3{bottom:220.890000px;}
.y4e{bottom:222.870000px;}
.y3a{bottom:227.565000px;}
.y8a{bottom:237.450000px;}
.ye2{bottom:238.170000px;}
.y4d{bottom:240.150000px;}
.y39{bottom:244.845000px;}
.y48{bottom:254.190000px;}
.ye1{bottom:255.450000px;}
.y88{bottom:260.670000px;}
.y38{bottom:262.125000px;}
.yee{bottom:264.090000px;}
.ybc{bottom:264.450000px;}
.y2a{bottom:268.965000px;}
.ye0{bottom:272.730000px;}
.y37{bottom:279.405000px;}
.yed{bottom:281.370000px;}
.ybb{bottom:281.730000px;}
.y29{bottom:284.265000px;}
.ydf{bottom:290.010000px;}
.y1d{bottom:290.730000px;}
.y36{bottom:296.505000px;}
.yec{bottom:298.470000px;}
.yba{bottom:299.010000px;}
.y87{bottom:301.170000px;}
.y28{bottom:301.725000px;}
.yde{bottom:307.290000px;}
.y35{bottom:313.815000px;}
.yeb{bottom:315.750000px;}
.yb9{bottom:316.290000px;}
.y27{bottom:318.855000px;}
.y85{bottom:324.390000px;}
.y34{bottom:331.095000px;}
.yea{bottom:333.030000px;}
.yb8{bottom:333.390000px;}
.y26{bottom:336.135000px;}
.ydd{bottom:341.715000px;}
.y33{bottom:348.375000px;}
.y84{bottom:350.355000px;}
.yb7{bottom:352.335000px;}
.y25{bottom:354.135000px;}
.ydc{bottom:358.995000px;}
.y32{bottom:365.655000px;}
.y83{bottom:367.635000px;}
.y24{bottom:371.595000px;}
.yb6{bottom:375.735000px;}
.ydb{bottom:376.275000px;}
.y31{bottom:382.755000px;}
.y82{bottom:384.915000px;}
.y23{bottom:388.875000px;}
.yda{bottom:393.555000px;}
.yb5{bottom:398.955000px;}
.y30{bottom:400.035000px;}
.y81{bottom:402.015000px;}
.y22{bottom:406.335000px;}
.yd9{bottom:410.835000px;}
.y2f{bottom:417.315000px;}
.y80{bottom:419.295000px;}
.yb4{bottom:422.175000px;}
.y21{bottom:423.795000px;}
.yd8{bottom:427.935000px;}
.y2e{bottom:434.595000px;}
.y7f{bottom:436.575000px;}
.y20{bottom:443.955000px;}
.yd7{bottom:445.215000px;}
.yb3{bottom:445.395000px;}
.y2d{bottom:451.875000px;}
.y7e{bottom:453.855000px;}
.yd6{bottom:462.495000px;}
.yb2{bottom:468.615000px;}
.y2c{bottom:469.155000px;}
.y7d{bottom:471.135000px;}
.y1f{bottom:471.495000px;}
.yd5{bottom:479.775000px;}
.y2b{bottom:486.255000px;}
.y7c{bottom:488.235000px;}
.y1e{bottom:488.955000px;}
.yb1{bottom:491.835000px;}
.yd4{bottom:497.055000px;}
.y7b{bottom:505.515000px;}
.yd3{bottom:514.335000px;}
.yb0{bottom:515.235000px;}
.y7a{bottom:522.795000px;}
.yd2{bottom:531.435000px;}
.y79{bottom:540.075000px;}
.yaf{bottom:540.435000px;}
.yd1{bottom:548.715000px;}
.y78{bottom:557.355000px;}
.yae{bottom:557.715000px;}
.yd0{bottom:565.995000px;}
.y77{bottom:574.635000px;}
.yad{bottom:574.995000px;}
.ycf{bottom:583.275000px;}
.y76{bottom:591.735000px;}
.yac{bottom:592.275000px;}
.yce{bottom:600.555000px;}
.y75{bottom:609.045000px;}
.yab{bottom:609.585000px;}
.ycd{bottom:617.685000px;}
.y74{bottom:626.325000px;}
.yaa{bottom:626.865000px;}
.ycc{bottom:634.965000px;}
.y73{bottom:643.605000px;}
.ya9{bottom:643.965000px;}
.ycb{bottom:652.245000px;}
.y72{bottom:660.885000px;}
.ya8{bottom:661.245000px;}
.yca{bottom:669.525000px;}
.y71{bottom:678.165000px;}
.ya7{bottom:678.525000px;}
.yc9{bottom:686.805000px;}
.y70{bottom:695.265000px;}
.ya6{bottom:695.805000px;}
.yc8{bottom:704.085000px;}
.y6f{bottom:712.545000px;}
.ya5{bottom:714.705000px;}
.yc7{bottom:721.185000px;}
.y6e{bottom:729.825000px;}
.ya4{bottom:737.925000px;}
.yc6{bottom:738.465000px;}
.y6d{bottom:747.105000px;}
.yc5{bottom:755.745000px;}
.ya3{bottom:761.145000px;}
.y6c{bottom:764.385000px;}
.yc4{bottom:773.025000px;}
.y6b{bottom:781.665000px;}
.yc3{bottom:790.305000px;}
.y1b{bottom:791.025000px;}
.y6a{bottom:798.765000px;}
.ya2{bottom:801.645000px;}
.yc2{bottom:807.585000px;}
.y69{bottom:816.045000px;}
.yf{bottom:820.545000px;}
.yc1{bottom:824.685000px;}
.ya1{bottom:824.865000px;}
.y68{bottom:833.325000px;}
.yc0{bottom:841.965000px;}
.ya0{bottom:848.085000px;}
.y67{bottom:850.605000px;}
.ybf{bottom:859.245000px;}
.y66{bottom:867.885000px;}
.y9f{bottom:871.530000px;}
.ybe{bottom:876.570000px;}
.y65{bottom:885.030000px;}
.ybd{bottom:890.610000px;}
.y9e{bottom:894.750000px;}
.y64{bottom:902.310000px;}
.y63{bottom:919.590000px;}
.y62{bottom:936.870000px;}
.y9d{bottom:937.230000px;}
.y61{bottom:954.150000px;}
.y9c{bottom:954.510000px;}
.y60{bottom:971.430000px;}
.y9b{bottom:971.790000px;}
.y5f{bottom:988.530000px;}
.y9a{bottom:989.070000px;}
.y5e{bottom:1005.810000px;}
.y99{bottom:1006.350000px;}
.y5d{bottom:1023.090000px;}
.y98{bottom:1023.630000px;}
.yd{bottom:1028.310000px;}
.y5c{bottom:1040.370000px;}
.y97{bottom:1040.730000px;}
.y6{bottom:1053.510000px;}
.y5b{bottom:1057.650000px;}
.y96{bottom:1058.010000px;}
.y5a{bottom:1074.930000px;}
.y95{bottom:1075.290000px;}
.y59{bottom:1092.030000px;}
.y94{bottom:1092.570000px;}
.y58{bottom:1109.310000px;}
.y93{bottom:1109.850000px;}
.y57{bottom:1126.590000px;}
.y92{bottom:1128.750000px;}
.y56{bottom:1143.900000px;}
.y90{bottom:1152.540000px;}
.y55{bottom:1161.180000px;}
.h28{height:17.100000px;}
.h26{height:17.280000px;}
.h29{height:17.640000px;}
.h2a{height:17.676000px;}
.h25{height:17.856000px;}
.hd{height:24.840000px;}
.h15{height:28.494844px;}
.h14{height:28.968750px;}
.h16{height:29.520000px;}
.h2{height:32.976000px;}
.h2b{height:34.380000px;}
.h27{height:34.560000px;}
.h13{height:35.806641px;}
.h9{height:36.180000px;}
.h23{height:36.540000px;}
.h20{height:41.503359px;}
.h22{height:41.726953px;}
.h21{height:42.164648px;}
.h4{height:43.453125px;}
.h2c{height:43.506914px;}
.hf{height:44.002969px;}
.hb{height:44.820000px;}
.h1a{height:47.980898px;}
.h1c{height:48.075820px;}
.h1d{height:48.936797px;}
.h1e{height:49.255313px;}
.h1f{height:50.510039px;}
.h24{height:51.414609px;}
.h1b{height:51.881484px;}
.h12{height:52.133906px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h6{height:55.987031px;}
.h11{height:59.439023px;}
.h8{height:60.855469px;}
.h17{height:62.507812px;}
.h10{height:63.180000px;}
.h5{height:67.824844px;}
.hc{height:71.613281px;}
.h18{height:73.722656px;}
.h7{height:121.536000px;}
.he{height:207.750000px;}
.h19{height:500.295000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:73.080000px;}
.w11{width:96.300000px;}
.wf{width:102.636000px;}
.w16{width:103.140000px;}
.w14{width:103.176000px;}
.w12{width:109.116000px;}
.w5{width:151.950000px;}
.wd{width:152.850000px;}
.wc{width:157.170000px;}
.w10{width:175.890000px;}
.we{width:178.590000px;}
.w15{width:191.910000px;}
.w13{width:201.810000px;}
.w8{width:216.075000px;}
.wb{width:263.370000px;}
.wa{width:290.955000px;}
.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;}
.x2e{left:1.080000px;}
.x41{left:3.780000px;}
.x3f{left:6.480000px;}
.x2{left:8.676000px;}
.x49{left:11.196000px;}
.x14{left:12.600000px;}
.x32{left:15.120000px;}
.x3b{left:16.236000px;}
.x37{left:17.640000px;}
.x3a{left:21.780000px;}
.x48{left:23.220000px;}
.x39{left:25.020000px;}
.x44{left:27.180000px;}
.x1b{left:28.845000px;}
.x47{left:30.780000px;}
.x35{left:33.300000px;}
.x30{left:34.740000px;}
.x33{left:37.260000px;}
.x4b{left:39.996000px;}
.x4a{left:44.100000px;}
.x1d{left:47.520000px;}
.x2b{left:52.416000px;}
.x23{left:55.080000px;}
.x22{left:59.796000px;}
.x3c{left:60.876000px;}
.xb{left:62.496000px;}
.x24{left:63.576000px;}
.x21{left:65.205000px;}
.x28{left:69.165000px;}
.x1e{left:74.745000px;}
.x1{left:81.000000px;}
.x46{left:82.620000px;}
.x16{left:84.420000px;}
.x38{left:85.545000px;}
.x45{left:87.705000px;}
.x2c{left:89.310000px;}
.x19{left:94.170000px;}
.x4{left:98.130000px;}
.x20{left:100.650000px;}
.x2a{left:104.970000px;}
.x29{left:106.590000px;}
.x26{left:107.670000px;}
.x1c{left:108.930000px;}
.xd{left:113.070000px;}
.x17{left:118.110000px;}
.x25{left:124.230000px;}
.x27{left:127.830000px;}
.x1f{left:134.130000px;}
.xf{left:143.130000px;}
.x11{left:151.950000px;}
.x2d{left:155.909987px;}
.xe{left:172.830000px;}
.x10{left:179.670000px;}
.x3e{left:197.310000px;}
.x12{left:215.175000px;}
.x5{left:232.950000px;}
.x2f{left:240.870000px;}
.x15{left:243.929987px;}
.x3d{left:261.029987px;}
.x8{left:272.235000px;}
.x4d{left:285.734987px;}
.x13{left:297.075000px;}
.xc{left:301.215000px;}
.x6{left:331.995000px;}
.x7{left:351.255000px;}
.xa{left:365.475000px;}
.x18{left:379.155000px;}
.x40{left:402.915000px;}
.x31{left:423.075000px;}
.x4c{left:432.794987px;}
.x9{left:439.500000px;}
.x42{left:509.865000px;}
.x34{left:529.485000px;}
.x1a{left:646.305000px;}
.x43{left:705.570000px;}
.x36{left:709.170000px;}
.x3{left:739.050000px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.183467pt;}
.lse{letter-spacing:-0.117333pt;}
.lsb{letter-spacing:-0.113067pt;}
.lsa{letter-spacing:-0.016000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls11{letter-spacing:0.047360pt;}
.ls8{letter-spacing:0.096640pt;}
.ls7{letter-spacing:0.114560pt;}
.ls1{letter-spacing:0.117867pt;}
.lsd{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.183467pt;}
.ls4{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.231040pt;}
.lsf{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.279040pt;}
.ls6{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.698880pt;}
.ls15{letter-spacing:14.672640pt;}
.ls14{letter-spacing:40.912640pt;}
.ls13{letter-spacing:1176.106667pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws5{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.545600pt;}
.wsb{word-spacing:-13.463467pt;}
.ws6{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.096533pt;}
.ws7{word-spacing:-12.960000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws8{word-spacing:-10.783360pt;}
.ws4{word-spacing:-10.263680pt;}
.ws3{word-spacing:-7.232000pt;}
.ws9{word-spacing:0.000000pt;}
._19{margin-left:-7.590400pt;}
._d{margin-left:-6.210560pt;}
._8{margin-left:-4.521600pt;}
._3{margin-left:-3.514667pt;}
._2{margin-left:-2.367147pt;}
._0{margin-left:-1.077333pt;}
._1{width:1.418667pt;}
._9{width:2.907093pt;}
._a{width:3.893333pt;}
._14{width:4.821760pt;}
._e{width:5.714347pt;}
._11{width:7.399253pt;}
._4{width:8.610560pt;}
._5{width:9.508480pt;}
._c{width:10.853333pt;}
._b{width:12.180053pt;}
._10{width:14.251733pt;}
._f{width:15.351680pt;}
._13{width:17.902720pt;}
._12{width:18.857600pt;}
._16{width:20.122240pt;}
._6{width:24.025813pt;}
._7{width:24.981333pt;}
._15{width:25.922560pt;}
._17{width:28.412160pt;}
._18{width:29.595947pt;}
.fs7{font-size:29.440000pt;}
.fs6{font-size:32.000000pt;}
.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;}
.y47{bottom:2.880000pt;}
.y91{bottom:3.040000pt;}
.y86{bottom:3.200000pt;}
.y3{bottom:3.232000pt;}
.y4c{bottom:3.680000pt;}
.y1a{bottom:4.640000pt;}
.ye{bottom:8.480000pt;}
.y4a{bottom:9.600000pt;}
.y89{bottom:10.560000pt;}
.y1c{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y4{bottom:15.552000pt;}
.y2{bottom:17.952000pt;}
.y46{bottom:18.240000pt;}
.y4b{bottom:20.000000pt;}
.y49{bottom:22.560000pt;}
.yb{bottom:26.880000pt;}
.y19{bottom:27.040000pt;}
.y45{bottom:33.600000pt;}
.y18{bottom:40.800000pt;}
.y5{bottom:40.960000pt;}
.ya{bottom:41.440000pt;}
.y44{bottom:49.000000pt;}
.y17{bottom:55.560000pt;}
.y1{bottom:59.520000pt;}
.y43{bottom:64.360000pt;}
.y9{bottom:65.280000pt;}
.y16{bottom:70.120000pt;}
.y42{bottom:79.560000pt;}
.y8{bottom:82.746667pt;}
.y15{bottom:84.200000pt;}
.y14{bottom:93.640000pt;}
.y41{bottom:94.920000pt;}
.y7{bottom:99.066667pt;}
.ye9{bottom:104.512000pt;}
.y54{bottom:106.112000pt;}
.y8f{bottom:107.712000pt;}
.y13{bottom:109.800000pt;}
.y40{bottom:110.280000pt;}
.ye8{bottom:119.712000pt;}
.y53{bottom:121.472000pt;}
.y3f{bottom:125.640000pt;}
.y12{bottom:126.600000pt;}
.y8e{bottom:128.352000pt;}
.ye7{bottom:135.066667pt;}
.y52{bottom:136.826667pt;}
.y3e{bottom:141.000000pt;}
.y8d{bottom:148.986667pt;}
.y11{bottom:149.480000pt;}
.ye6{bottom:150.426667pt;}
.y51{bottom:152.186667pt;}
.y3d{bottom:156.360000pt;}
.ye5{bottom:165.786667pt;}
.y50{bottom:167.546667pt;}
.y8c{bottom:169.626667pt;}
.y10{bottom:171.240000pt;}
.y3c{bottom:171.560000pt;}
.ye4{bottom:181.146667pt;}
.y4f{bottom:182.746667pt;}
.y3b{bottom:186.920000pt;}
.y8b{bottom:190.426667pt;}
.ye3{bottom:196.346667pt;}
.y4e{bottom:198.106667pt;}
.y3a{bottom:202.280000pt;}
.y8a{bottom:211.066667pt;}
.ye2{bottom:211.706667pt;}
.y4d{bottom:213.466667pt;}
.y39{bottom:217.640000pt;}
.y48{bottom:225.946667pt;}
.ye1{bottom:227.066667pt;}
.y88{bottom:231.706667pt;}
.y38{bottom:233.000000pt;}
.yee{bottom:234.746667pt;}
.ybc{bottom:235.066667pt;}
.y2a{bottom:239.080000pt;}
.ye0{bottom:242.426667pt;}
.y37{bottom:248.360000pt;}
.yed{bottom:250.106667pt;}
.ybb{bottom:250.426667pt;}
.y29{bottom:252.680000pt;}
.ydf{bottom:257.786667pt;}
.y1d{bottom:258.426667pt;}
.y36{bottom:263.560000pt;}
.yec{bottom:265.306667pt;}
.yba{bottom:265.786667pt;}
.y87{bottom:267.706667pt;}
.y28{bottom:268.200000pt;}
.yde{bottom:273.146667pt;}
.y35{bottom:278.946667pt;}
.yeb{bottom:280.666667pt;}
.yb9{bottom:281.146667pt;}
.y27{bottom:283.426667pt;}
.y85{bottom:288.346667pt;}
.y34{bottom:294.306667pt;}
.yea{bottom:296.026667pt;}
.yb8{bottom:296.346667pt;}
.y26{bottom:298.786667pt;}
.ydd{bottom:303.746667pt;}
.y33{bottom:309.666667pt;}
.y84{bottom:311.426667pt;}
.yb7{bottom:313.186667pt;}
.y25{bottom:314.786667pt;}
.ydc{bottom:319.106667pt;}
.y32{bottom:325.026667pt;}
.y83{bottom:326.786667pt;}
.y24{bottom:330.306667pt;}
.yb6{bottom:333.986667pt;}
.ydb{bottom:334.466667pt;}
.y31{bottom:340.226667pt;}
.y82{bottom:342.146667pt;}
.y23{bottom:345.666667pt;}
.yda{bottom:349.826667pt;}
.yb5{bottom:354.626667pt;}
.y30{bottom:355.586667pt;}
.y81{bottom:357.346667pt;}
.y22{bottom:361.186667pt;}
.yd9{bottom:365.186667pt;}
.y2f{bottom:370.946667pt;}
.y80{bottom:372.706667pt;}
.yb4{bottom:375.266667pt;}
.y21{bottom:376.706667pt;}
.yd8{bottom:380.386667pt;}
.y2e{bottom:386.306667pt;}
.y7f{bottom:388.066667pt;}
.y20{bottom:394.626667pt;}
.yd7{bottom:395.746667pt;}
.yb3{bottom:395.906667pt;}
.y2d{bottom:401.666667pt;}
.y7e{bottom:403.426667pt;}
.yd6{bottom:411.106667pt;}
.yb2{bottom:416.546667pt;}
.y2c{bottom:417.026667pt;}
.y7d{bottom:418.786667pt;}
.y1f{bottom:419.106667pt;}
.yd5{bottom:426.466667pt;}
.y2b{bottom:432.226667pt;}
.y7c{bottom:433.986667pt;}
.y1e{bottom:434.626667pt;}
.yb1{bottom:437.186667pt;}
.yd4{bottom:441.826667pt;}
.y7b{bottom:449.346667pt;}
.yd3{bottom:457.186667pt;}
.yb0{bottom:457.986667pt;}
.y7a{bottom:464.706667pt;}
.yd2{bottom:472.386667pt;}
.y79{bottom:480.066667pt;}
.yaf{bottom:480.386667pt;}
.yd1{bottom:487.746667pt;}
.y78{bottom:495.426667pt;}
.yae{bottom:495.746667pt;}
.yd0{bottom:503.106667pt;}
.y77{bottom:510.786667pt;}
.yad{bottom:511.106667pt;}
.ycf{bottom:518.466667pt;}
.y76{bottom:525.986667pt;}
.yac{bottom:526.466667pt;}
.yce{bottom:533.826667pt;}
.y75{bottom:541.373333pt;}
.yab{bottom:541.853333pt;}
.ycd{bottom:549.053333pt;}
.y74{bottom:556.733333pt;}
.yaa{bottom:557.213333pt;}
.ycc{bottom:564.413333pt;}
.y73{bottom:572.093333pt;}
.ya9{bottom:572.413333pt;}
.ycb{bottom:579.773333pt;}
.y72{bottom:587.453333pt;}
.ya8{bottom:587.773333pt;}
.yca{bottom:595.133333pt;}
.y71{bottom:602.813333pt;}
.ya7{bottom:603.133333pt;}
.yc9{bottom:610.493333pt;}
.y70{bottom:618.013333pt;}
.ya6{bottom:618.493333pt;}
.yc8{bottom:625.853333pt;}
.y6f{bottom:633.373333pt;}
.ya5{bottom:635.293333pt;}
.yc7{bottom:641.053333pt;}
.y6e{bottom:648.733333pt;}
.ya4{bottom:655.933333pt;}
.yc6{bottom:656.413333pt;}
.y6d{bottom:664.093333pt;}
.yc5{bottom:671.773333pt;}
.ya3{bottom:676.573333pt;}
.y6c{bottom:679.453333pt;}
.yc4{bottom:687.133333pt;}
.y6b{bottom:694.813333pt;}
.yc3{bottom:702.493333pt;}
.y1b{bottom:703.133333pt;}
.y6a{bottom:710.013333pt;}
.ya2{bottom:712.573333pt;}
.yc2{bottom:717.853333pt;}
.y69{bottom:725.373333pt;}
.yf{bottom:729.373333pt;}
.yc1{bottom:733.053333pt;}
.ya1{bottom:733.213333pt;}
.y68{bottom:740.733333pt;}
.yc0{bottom:748.413333pt;}
.ya0{bottom:753.853333pt;}
.y67{bottom:756.093333pt;}
.ybf{bottom:763.773333pt;}
.y66{bottom:771.453333pt;}
.y9f{bottom:774.693333pt;}
.ybe{bottom:779.173333pt;}
.y65{bottom:786.693333pt;}
.ybd{bottom:791.653333pt;}
.y9e{bottom:795.333333pt;}
.y64{bottom:802.053333pt;}
.y63{bottom:817.413333pt;}
.y62{bottom:832.773333pt;}
.y9d{bottom:833.093333pt;}
.y61{bottom:848.133333pt;}
.y9c{bottom:848.453333pt;}
.y60{bottom:863.493333pt;}
.y9b{bottom:863.813333pt;}
.y5f{bottom:878.693333pt;}
.y9a{bottom:879.173333pt;}
.y5e{bottom:894.053333pt;}
.y99{bottom:894.533333pt;}
.y5d{bottom:909.413333pt;}
.y98{bottom:909.893333pt;}
.yd{bottom:914.053333pt;}
.y5c{bottom:924.773333pt;}
.y97{bottom:925.093333pt;}
.y6{bottom:936.453333pt;}
.y5b{bottom:940.133333pt;}
.y96{bottom:940.453333pt;}
.y5a{bottom:955.493333pt;}
.y95{bottom:955.813333pt;}
.y59{bottom:970.693333pt;}
.y94{bottom:971.173333pt;}
.y58{bottom:986.053333pt;}
.y93{bottom:986.533333pt;}
.y57{bottom:1001.413333pt;}
.y92{bottom:1003.333333pt;}
.y56{bottom:1016.800000pt;}
.y90{bottom:1024.480000pt;}
.y55{bottom:1032.160000pt;}
.h28{height:15.200000pt;}
.h26{height:15.360000pt;}
.h29{height:15.680000pt;}
.h2a{height:15.712000pt;}
.h25{height:15.872000pt;}
.hd{height:22.080000pt;}
.h15{height:25.328750pt;}
.h14{height:25.750000pt;}
.h16{height:26.240000pt;}
.h2{height:29.312000pt;}
.h2b{height:30.560000pt;}
.h27{height:30.720000pt;}
.h13{height:31.828125pt;}
.h9{height:32.160000pt;}
.h23{height:32.480000pt;}
.h20{height:36.891875pt;}
.h22{height:37.090625pt;}
.h21{height:37.479688pt;}
.h4{height:38.625000pt;}
.h2c{height:38.672812pt;}
.hf{height:39.113750pt;}
.hb{height:39.840000pt;}
.h1a{height:42.649687pt;}
.h1c{height:42.734063pt;}
.h1d{height:43.499375pt;}
.h1e{height:43.782500pt;}
.h1f{height:44.897813pt;}
.h24{height:45.701875pt;}
.h1b{height:46.116875pt;}
.h12{height:46.341250pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h6{height:49.766250pt;}
.h11{height:52.834688pt;}
.h8{height:54.093750pt;}
.h17{height:55.562500pt;}
.h10{height:56.160000pt;}
.h5{height:60.288750pt;}
.hc{height:63.656250pt;}
.h18{height:65.531250pt;}
.h7{height:108.032000pt;}
.he{height:184.666667pt;}
.h19{height:444.706667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:64.960000pt;}
.w11{width:85.600000pt;}
.wf{width:91.232000pt;}
.w16{width:91.680000pt;}
.w14{width:91.712000pt;}
.w12{width:96.992000pt;}
.w5{width:135.066667pt;}
.wd{width:135.866667pt;}
.wc{width:139.706667pt;}
.w10{width:156.346667pt;}
.we{width:158.746667pt;}
.w15{width:170.586667pt;}
.w13{width:179.386667pt;}
.w8{width:192.066667pt;}
.wb{width:234.106667pt;}
.wa{width:258.626667pt;}
.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;}
.x2e{left:0.960000pt;}
.x41{left:3.360000pt;}
.x3f{left:5.760000pt;}
.x2{left:7.712000pt;}
.x49{left:9.952000pt;}
.x14{left:11.200000pt;}
.x32{left:13.440000pt;}
.x3b{left:14.432000pt;}
.x37{left:15.680000pt;}
.x3a{left:19.360000pt;}
.x48{left:20.640000pt;}
.x39{left:22.240000pt;}
.x44{left:24.160000pt;}
.x1b{left:25.640000pt;}
.x47{left:27.360000pt;}
.x35{left:29.600000pt;}
.x30{left:30.880000pt;}
.x33{left:33.120000pt;}
.x4b{left:35.552000pt;}
.x4a{left:39.200000pt;}
.x1d{left:42.240000pt;}
.x2b{left:46.592000pt;}
.x23{left:48.960000pt;}
.x22{left:53.152000pt;}
.x3c{left:54.112000pt;}
.xb{left:55.552000pt;}
.x24{left:56.512000pt;}
.x21{left:57.960000pt;}
.x28{left:61.480000pt;}
.x1e{left:66.440000pt;}
.x1{left:72.000000pt;}
.x46{left:73.440000pt;}
.x16{left:75.040000pt;}
.x38{left:76.040000pt;}
.x45{left:77.960000pt;}
.x2c{left:79.386667pt;}
.x19{left:83.706667pt;}
.x4{left:87.226667pt;}
.x20{left:89.466667pt;}
.x2a{left:93.306667pt;}
.x29{left:94.746667pt;}
.x26{left:95.706667pt;}
.x1c{left:96.826667pt;}
.xd{left:100.506667pt;}
.x17{left:104.986667pt;}
.x25{left:110.426667pt;}
.x27{left:113.626667pt;}
.x1f{left:119.226667pt;}
.xf{left:127.226667pt;}
.x11{left:135.066667pt;}
.x2d{left:138.586655pt;}
.xe{left:153.626667pt;}
.x10{left:159.706667pt;}
.x3e{left:175.386667pt;}
.x12{left:191.266667pt;}
.x5{left:207.066667pt;}
.x2f{left:214.106667pt;}
.x15{left:216.826655pt;}
.x3d{left:232.026655pt;}
.x8{left:241.986667pt;}
.x4d{left:253.986655pt;}
.x13{left:264.066667pt;}
.xc{left:267.746667pt;}
.x6{left:295.106667pt;}
.x7{left:312.226667pt;}
.xa{left:324.866667pt;}
.x18{left:337.026667pt;}
.x40{left:358.146667pt;}
.x31{left:376.066667pt;}
.x4c{left:384.706655pt;}
.x9{left:390.666667pt;}
.x42{left:453.213333pt;}
.x34{left:470.653333pt;}
.x1a{left:574.493333pt;}
.x43{left:627.173333pt;}
.x36{left:630.373333pt;}
.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; }
  